OSDN Git Service

2003-02-24 Jeffrey D. Oldham <oldham@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2003-02-24  Jeffrey D. Oldham  <oldham@codesourcery.com>
2
3         PR c++/9778
4         * pt.c (tsubst_copy_and_build): For a templated function inside a
5         scope, process template arguments.
6
7 2003-02-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8
9         PR c++/9602
10         * typeck2.c (abstract_virtuals_error): Don't check when
11         TYPE is still template parameter dependent.
12
13 2003-02-23  Mark Mitchell  <mark@codesourcery.com>
14
15         PR c++/5333
16         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE): New macro.
17         * parser.c (cp_parser_diagnose_invalid_type_name): Use it.
18         * pt.c (instantiate_class_template): Don't try to instantiate
19         dependent types.
20         (resolve_typename_type): Use CLASSTYPE_PRIMARY_TEMPLATE.
21         
22 2003-02-21  Mark Mitchell  <mark@codesourcery.com>
23
24         PR c++/9749
25         * decl.c (grokdeclarator): Do not allow parameters with variably
26         modified types.
27
28 2003-02-21  Nathan Sidwell  <nathan@codesourcery.com>
29
30         * search.c (bfs_walk_grow): Remove. Fold into ...
31         (bfs_walk): ... here, fix fencepost error. Fix merge lossage
32         in previous patch.
33
34 2003-02-20  Mark Mitchell  <mark@codesourcery.com>
35
36         PR c++/9729
37         * mangle.c (mangle_conv_op_name_for_type): Issue an error message
38         when the G++ 3.2 ABI prevents correct compilation.
39
40 2003-02-20  Nathan Sidwell  <nathan@codesourcery.com>
41
42         Change base class access representation. Share virtual base
43         binfos.
44         * cp/call.c (build_special_member_call): Remove binfo_for_vbase
45         call.
46         * cp/class.c (build_base_path): Likewise.
47         (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
48         (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
49         (make_new_vtable): Adjust.
50         (force_canonical_binfo_r): Delete.
51         (force_canonical_binfo): Delete.
52         (mark_primary_virtual_base): Delete.
53         (dfs_unshared_virtual_bases): Delete.
54         (mark_primary_bases): Adjust.
55         (maybe_warn_about_overly_private_class): Adjust.
56         (dfs_base_derived_from): Delete.
57         (base_derived_from): Follow the inheritance chain.
58         (struct find_final_overrider_data): Add vpath member.
59         (dfs_find_final_overrider): Adjust.
60         (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
61         (find_final_overrider): Adjust.
62         (update_vtable_entry_for_fn): Adjust.
63         (modify_all_vtables): Adjust.
64         (walk_subobject_offsets): Adjust.
65         (layout_nonempty_base_or_field): Adjust.
66         (layout_empty_base): Remove last parameter. Adjust.
67         (build_base_field): Adjust.
68         (build_base_fields): Adjust.
69         (propagate_binfo_offsets): Remove last parameter. Adjust.
70         (dfs_set_offset_for_unshared_vbases): Delete.
71         (layout_virtual_bases): Adjust.
72         (finish_struct_1): Adjust.
73         (init_class_processing): Don't init access nodes.
74         (dfs_get_primary_binfo): Delete.
75         (get_primary_binfo): Adjust.
76         (dump_class_hierarchy_r): Remove most derived arg, add IGO
77         parameter. Adjust.
78         (dump_class_hierarchy): Adjust.
79         (finish_vtbls): Adjust.
80         (get_original_base): Delete.
81         (build_vtt_inits): Adjust.
82         (dfs_build_secondary_vptr_vtt_inits): Adjust.
83         (dfs_ctor_vtable_bases_queue_p): Adjust.
84         (build_ctor_vtbl_group): Adjust.
85         (dfs_accumulate_vtbl_inits): Adjust.
86         (build_vtbl_initializer): Adjust.
87         (build_vbase_offset_vtbl_entries): Adjust.
88         (add_vcall_offset_vtbl_entries_1): Adjust.
89         * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
90         (access_*_node): Remove.
91         (CANONICAL_BINFO): Delete.
92         (BINFO_UNSHARED_MARKED): Remove.
93         (BINFO_MARKED): Set LANG_FLAG_0 directly.
94         (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
95         (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
96         (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
97         Delete.
98         (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
99         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
100         (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
101         Delete.
102         (BINFO_DEPENDENT_BASE_P): New.
103         (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
104         index.
105         (markedp, unmarkedp): Adjust.
106         (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
107         dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
108         find_vbase_instance, binfo_for_vbase): Delete.
109         (copied_binfo, original_binfo): Declare.
110         (finish_base_specifier): Add virtual_p arg.
111         (unshare_base_binfos): Delete.
112         (copy_base_binfos): Declare.
113         (reverse_path): Delete.
114         * cp/decl.c (xref_basetypes): Access and virtuality passed
115         differently. Don't copy direct base binfos here. Call
116         copy_base_binfos.
117         * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
118         (initialize_vtbl_ptrs): Adjust.
119         (expand_member_init): Adjust.
120         * cp/parser.c (cp_parser_base_specifier): Adjust.
121         * cp/pt.c (instantiate_class_template): Adjust.
122         (get_template_base_recursive): Adjust.
123         * cp/rtti.c (get_pseudo_ti_init): Adjust.
124         (get_pseudo_ti_desc): Adjust.
125         * cp/tree.c (unshare_base_binfos): Rename to ...
126         (copy_base_binfos): ... here, reimplement.
127         (make_binfo): Set BINFO_DEPENDENT_BASE_P.
128         (reverse_path): Remove.
129         * cp/typeck.c (get_delta_difference): Adjust error messages.
130         * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
131         * cp/search.c (lookup_base_r): Adjust.
132         (dynamic_cast_base_recurse): Adjust.
133         (canonical_binfo): Remove.
134         (dfs_canonical_queue): Remove.
135         (dfs_assert_unmarked_p): Remove.
136         (assert_canonical_unmarked): Remove.
137         (shared_marked_p, shared_unmarked_p): Remove.
138         (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
139         (dfs_access_in_type): Adjust.
140         (access_in_type): Adjust.
141         (dfs_accessible_queue_p): Adjust.
142         (dfs_accessible_p): Adjust.
143         (is_subobject_of_p_1, is_subobject_of_p): Remove.
144         (struct lookup_field_info): Remove from_dep_base_p field.
145         (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
146         (lookup_field_r): Remove dependent base code.
147         (lookup_member): Likewise.
148         (dfs_walk, dfs_walk_real): Add access arg to queue fn.
149         (dfs_unmarked_real_bases_queue_p): Remove.
150         (dfs_marked_real_bases_queue_p): Remove.
151         (dfs_skip_vbases): Remove.
152         (dfs_get_pure_virtuals): Adjust.
153         (markedp, unmarkedp): Adjust.
154         (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
155         (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
156         (dfs_unmark): Adjust.
157         (dfs_get_vbase_types):Remove.
158         (dfs_build_inheritance_graph_order): Remove.
159         (get_vbase_types): Remove
160         (dfs_find_vbase_instance): Remove.
161         (find_vbase_instance): Remove.
162         (dfs_debug_unmarkedp): Adjust.
163         (dependent_base_p): Remove.
164         (dfs_push_type_decls): Adjust.
165         (dfs_push_decls): Adjust.
166         (dfs_no_overlap_yet): Adjust.
167         (copied_binfo): New function.
168         (original_binfo): New function.
169         (binfo_for_vbase): Remove.
170
171 2003-02-18  Zack Weinberg  <zack@codesourcery.com>
172
173         * cp/search.c (grow_bfs_bases): New subroutine of bfs_walk.
174         (bfs_walk): Rewritten using circular queue of BINFO_BASETYPES
175         vectors, for speed.
176
177 2003-02-18  Mark Mitchell  <mark@codesourcery.com>
178
179         PR c++/9704
180         * class.c (layout_class_type): In the 3.2 ABI, take into account
181         trailing bit fields when computing CLASSTYPE_SIZE_UNIT.
182
183 2003-02-18  Matt Austern <austern@apple.com>
184         
185         * cp/cp-lang.c: Change lang hooks so that final_write_globals does
186         nothing for C++.
187         * cp/decl.c (wrapup_globals_for_namespace): Remove special
188         handling of global namespace.
189         
190 2003-02-18  Geoffrey Keating  <geoffk@apple.com>
191
192         * cp-tree.h (rid_to_yy): Delete.
193         (C_RID_YYCODE): Delete.
194         (finish_file): Delete redundant declaration.
195
196 2003-02-18  Jason Merrill  <jason@redhat.com>
197
198         PR c++/9623
199         * decl.c (reshape_init): Don't mess with initializer labels.
200
201 2003-02-18  Ben Elliston  <bje@redhat.com>
202
203         PR other/7350
204         * decl.c (duplicate_decls): Fix typo in comment.
205
206 2003-02-17  Michael Elizabeth Chastain <mec@shout.net>
207
208         PR debug/9717
209         * class.c (build_base_field): Mark fields for base classes with
210         DECL_IGNORED_P.
211
212 2003-02-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
213
214         PR c++/9457
215         * pt.c (tsubst_copy_and_build) [CONSTRUCTOR]: Substitute
216         CONSTRUCTOR_ELTS only once.
217
218 2003-02-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
219
220         PR c++/9459
221         * error.c (dump_type_prefix): Handle TYPEOF_TYPE.
222         (dump_type_suffix): Likewise.
223
224 2003-02-14  Nathan Sidwell  <nathan@codesourcery.com>
225
226         * search.c: ANSIfy function declarations and definitions.
227         * cp-tree.h (lookup_field, lookup_member): Last parameter is a bool.
228         * call.c (build_method_call, resolve_scoped_fn_name,
229         build_java_interface_fn_ref): Adjust lookup_field, lookup_member
230         calls.
231         * class.c (handle_using_decl): Likewise.
232         * decl.c (make_typename_type, make_unmound_class_template,
233         start_decl, compute_array_index_type): Likewise.
234         * decl2.c (build_expr_from_tree, build_call_from_tree): Likewise.
235         * init.c (expand_member_init, build_member_call): Likewise.
236         * pt.c (tsubst_copy, tsubst_copy_and_build, do_decl_instantiation,
237         resolve_typename_type): Likewise.
238         * typeck.c (lookup_destructor, finish_class_member_access_exprm
239         build_prememfunc_access_expr): Likewise.
240
241 2003-02-13  Gabriel Dos Reis <gdr@integrable-solutions.net>
242
243         * decl2.c: Include "timevar.h".
244         (namespace_ancestor): Time name lookup.
245         (add_using_namespace): Likewise.
246         (lookup_using_namespace): Likewise.
247         (qualified_lookup_using_namespace): Likewise.
248         (decl_namespace): Likewise.
249         (lookup_arg_dependent): Likewise.
250         * lex.c (do_identifier): Likewise.
251         (do_scoped_id): Likewise.
252         * pt.c (lookup_template_class): Likewise.
253
254 2003-02-14   Andrew Pinski <pinskia@physics.uc.edu>
255
256         * decl.c: (define_label): Fix warning for return 0 instead of NULL.
257         
258 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
259
260         * decl.c: Include "timevar.h".
261         (poplevel): Time name lookup.
262         (find_binding): Likewise.
263         (push_namespace): Likewise.
264         (pop_nested_namespace): Likewise.
265         (store_bindings): Likewise.
266         (maybe_push_to_top_level): Likewise.
267         (pop_from_top_level): Likewise.
268         (push_local_name): Likewise.
269         (pushtag): Likewise.
270         (pushdecl): Likewise.
271         (pushdecl_with_scope): Likewise.
272         (pushdecl_namespace_level): Likewise.
273         (pushdecl_top_level): Likewise.
274         (pushdecl_class_level): Likewise.
275         (push_class_level_binding): Likewise.
276         (push_using_decl): Likewise.
277         (push_using_directive): Likewise.
278         (push_overloaded_decl): Likewise.
279         (lookup_label): Likewise.
280         (define_label): Likewise.
281         (lookup_tag): Likewise.
282         (lookup_tag_reverse): Likewise.
283         (lookup_namespace_name): Likewise.
284         (select_decl): Likewise.
285         (unqualified_namespace_lookup): Likewise.
286         (lookup_name_real): Likewise.
287         (lookup_name_current_level): Likewise.
288         (lookup_type_current_level): Likewise.
289         (maybe_inject_for_scope_var): Likewise.
290         (xref_tag): Likewise.
291
292         * Make-lang.in (cp/decl.o): Add dependency on timevar.h
293         
294 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
295
296         * decl.c (build_enumerator):  Remove unneeded test.
297
298 2003-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
299
300         * cp-tree.h (struct lang_type_header): Make all fields unsigned
301         char.
302
303 2003-02-03  Mark Mitchell  <mark@codesourcery.com>
304
305         PR c++/7129
306         * call.c (z_candidate): Add args.
307         (convert_class_to_reference): Set it.
308         (implicit_conversion): Tidy.
309         (add_candidate): Add args parameter.
310         (add_function_candidate): Adjust call to add_candidate.
311         (add_conv_candidate): Likewise.
312         (build_builtin_candidate): Likewise.
313         (build_user_type_conversion_1): Eliminate wasteful tree_cons
314         usage.
315         (build_new_function_call): Likewise.
316         (build_object_call): Likewise.
317         (add_candidates): New function.
318         (build_new_op): Use it.
319         (covert_like_real): Adjust call to build_over_call.
320         (build_over_call): Remove args parameter.
321         * operators.def: Add <?= and >?=.
322
323 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
324
325         * typeck.c (build_indirect_ref): Don't check flag_volatile.
326
327 2003-01-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
328
329         PR c++/8849
330         * pt.c (resolve_overloaded_unification): Handle FUNCTION_DECL.
331
332 2003-01-31  Nathan Sidwell  <nathan@codesourcery.com>
333
334         * cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
335         BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
336         (BINFO_LANG_ELTS): New #define.
337         * tree.c (make_binfo): Use BINFO_LANG_ELTS.
338
339 2003-01-30  Geoffrey Keating  <geoffk@apple.com>
340
341         * cp/Make-lang.in: Remove -Wno-error from cp/decl.o.
342
343 2003-01-30  Mark Mitchell  <mark@codesourcery.com>
344
345         * class.c (check_field_decls): Only check C_TYPE_FIELDS_READONLY
346         for class types.
347         * cp-tree.h (C_TYPE_FIELDS_READONLY): Use a lang-specific bit
348         rather than TYPE_LANG_FLAG_0.
349         (TYPE_BUILT_IN): Remove.
350         (TYPE_DEPENDENT_P): New macro.
351         (TYPE_DEPENDENT_P_VALID): Likewise.
352         (lang_type_class): Add fields_readonly.
353         * decl.c (record_builtin_type): Don't set TYPE_BUILT_IN.
354         * pt.c (dependent_type_p_r): New function, split out from ...
355         (dependent_type_p): ... here.  Memoize results.
356         * search.c (dependent_base_p): Use dependent_type_p, not
357         uses_template_parms.
358         * typeck.c (build_modify_expr): Only check C_TYPE_FIELDS_READONLY
359         for class types.
360
361 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
362
363         * call.c (build_field_call): Use build_new_op, not build_opfncall.
364         (prep_operand): New function.
365         (build_new_op): Use it.  Remove dead code.
366         * class.c (pushclass): Change "modify" parameter type from int to
367         bool.
368         (currently_open_class): Use same_type_p, not pointer equality.
369         (push_nested_class): Adjust calls to pushclass, remove modify
370         parameter.
371         * cp-tree.h (INTEGRAL_OR_ENUMERATION_TYPE_P): New macro.
372         (pushclass): Change prototype.
373         (push_nested_class): Likewise.
374         (grokoptypename): Remove.
375         (build_opfncall): Remove.
376         (value_dependent_expression_p): Declare.
377         (resolve_typename_type): Likewise.
378         (resolve_typename_type_in_current_instantiation): Likewise.
379         (enter_scope_of): Remove.
380         (tsubst): Remove.
381         (tsubst_expr): Likewise.
382         (tsubst_copy): Likewise.
383         (tsubst_copy_and_build): Likewise.
384         * decl.c (warn_about_implicit_typename_lookup): Remove.
385         (finish_case_label): Return error_mark_node for erroneous labels.
386         (start_decl): Adjust calls to push_nested_class.
387         (grokfndecl): Call push_scope/pop_scope around call to
388         duplicate_decls.
389         (grokdeclarator): Do not call tsubst.
390         (start_function): Adjust calls to push_nested_class.
391         * decl2.c (grok_array_decl): Use build_new_op, not build_opfncall.
392         (check_classfn): Use push_scope/pop_scope around type comparisions.
393         (grokoptypename): Remove.
394         (push_sscope): Adjust call to push_nested_class.
395         * error.c (dump_type): Show cv-qualification of typename types.
396         * init.c (build_member_call): Use build_new_op, not
397         build_opfncall.
398         * method.c (build_opfncall): Remove.
399         * parser.c (cp_parser): Add allow_non_constant_expression_p and
400         non_constant_expression_p.
401         (cp_parser_constant_expression): Adjust prototype.
402         (cp_parser_resolve_typename_type): Remove.
403         (cp_parser_non_constant_expression): New function.
404         (cp_parser_non_constant_id_expression): Likewise.
405         (cp_parser_new): Set allow_non_constant_expression_p and
406         non_constant_expression_p.
407         (cp_parser_primary_expression): Reject `this' and `va_arg' in
408         constant-expressions.  Note that dependent names aren't really
409         constant.
410         (cp_parser_postfix_expression): Reject conversions to non-integral
411         types in constant-expressions.  Neither are increments or
412         decrements.
413         (cp_parser_unary_expression): Reject increments and decrements in
414         constant-expressions.
415         (cp_parser_direct_new_declarator): Adjust call to
416         cp_parser_constant_expression.
417         (cp_parser_cast_expression): Reject conversions to non-integral
418         types in constant-expressions.
419         (cp_parser_assignment_expression): Rejects assignments in
420         constant-expressions.
421         (cp_parser_expression): Reject commas in constant-expressions.
422         (cp_parser_labeled_statement): Adjust call to
423         cp_parser_constant_expression.
424         (cp_parser_direct_declarator): Simplify array bounds, even in
425         templates, when they are non-dependent.  Use
426         resolve_typename_type, not cp_parser_resolve_typename_type.
427         (cp_parser_class_head): Use resolve_typename_type, not
428         cp_parser_resolve_typename_type.
429         (cp_parser_member_declaration): Adjust call to
430         cp_parser_constant_expression.
431         (cp_parser_constant_initializer): Likewise.
432         (cp_parser_constructor_declarator): Use resolve_typename_type, not
433         cp_parser_resolve_typename_type.
434         (cp_parser_late_parsing_default_args): Adjust call to
435         push_nested_class.
436         * pt.c (tsubst): Give it internal linkage.
437         (tsubst_expr): Likewise.
438         (tsubst_copy): Likewise.
439         (tsubst_copy_and_build): Likewise.
440         (push_access_scope_real): Likewise.
441         (tsubst_friend_class): Likewise.
442         (instantiate_class_template): Adjust call to pushclass.
443         (value_dependent_expression_p): Give it external linkage.
444         Robustify.
445         (resolve_typename_type): New function.
446         * semantics.c (finish_call_expr): Use build_new_op, not
447         build_opfncall.
448         (begin_constructor_declarator): Remove.
449         (begin_class_definition): Adjust call to pushclass.
450         (enter_scope_of): Remove.
451         * typeck.c (comptypes): Resolve typename types as appropriate.
452         (build_x_indirect_ref): Use build_new_op, not build_opfncall.
453         (build_x_compound_expr): Likewise.
454         (build_modify_expr): Likewise.
455         (build_x_modify_expr): Likewise.
456         * typeck2.c (build_x_arrow): Likewise.
457         
458 2003-01-29  Fariborz Jahanian  <fjahanian@apple.com>
459
460         * pt.c (last_pending_template) Declare GTY().
461
462 2003-01-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
463
464         PR c++/8591
465         * parser.c (cp_parser_elaborated_type_specifier): Convert
466         TEMPLATE_DECL to TYPE_DECL only when processing template friends.
467         (cp_parser_maybe_treat_template_as_class): Remove redundant tests.
468
469 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
470
471         PR c++/9437
472         * pt.c (unify): Don't unify '*T' with 'U C::*'.
473
474         PR c++/3902
475         * parser.c (cp_parser_decl_specifier_seq): Cannot have constructor
476         inside a declarator.
477
478 2003-01-27  Nathan Sidwell  <nathan@codesourcery.com>
479
480         * class.c (update_vtable_entry_for_fn): Add index parameter.
481         Generate vcall thunk for covariant overriding from a virtual
482         primary base.
483         (dfs_modify_vtables): Adjust.
484
485 2003-01-25  Nathan Sidwell  <nathan@codesourcery.com>
486
487         PR c++/9403
488         * parser.c (cp_parser_class_or_namespace_name): Reject duplicate
489         template keyword.
490         (cp_parser_base_specifier): Look for and consume a
491         TEMPLATE keyword. Replace switch with array index.
492
493         PR c++/795
494         * semantics.c (finish_non_static_data_member): Remember the
495         field's type even in a template.
496
497         PR c++/9415
498         * pt.c (tsubst_copy_and_build, CALL_EXPR): BASELINK exprs are
499         already scoped.
500         
501         PR c++/8545
502         * parser.c (cp_parser_cast_expression): Be more tentative.
503
504 2003-01-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
505
506         * cp-tree.h (flagged_type_tree_s): Remove.
507         (check_for_new_type): Likewise.
508         * typeck2.c (check_for_new_type): Likewise.
509
510 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
511
512         * dump.c: ANSIfy function declarations and definitions.
513
514         * cp-tree.h, decl.h: Get rid of PARAMS.  Again.
515
516 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
517
518         PR c++/9354
519         * init.c (build_new): Set the type of the new-expression, even
520         when processing_templte_decl.
521
522         PR c++/9216
523         * parser.c (cp_parser_primary_expression): Improve error message
524         for templates used in an expression context.
525
526         PR c++/8696
527         * parser.c (cp_parser_decl_specifier_seq): Commit to tentative
528         parse when encountering "typedef".
529
530 2003-01-22  Nathanael Nerode  <neroden@gcc.gnu.org>
531
532         * class.c, parser.c: ANSIfy function definitions and declarations.
533
534 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
535
536         PR c++/9328
537         * error.c (dump_decl): For an OVERLOAD, just print the name of the
538         function; it doesn't make sense to try to print its type.
539         * semantics.c (finish_typeof): Issue errors about invalid uses.
540
541         PR c++/9298
542         * parser.c (cp_parser_consume_semicolon_at_end_of_statement): New
543         function.
544         (cp_parser_expression_statement): Use it.
545         (cp_parser_explicit_instantiation): Likewise.
546         * pt.c (do_decl_instantiation): Improve error handling logic.
547         
548 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
549
550         PR c++/9384
551         * parser.c (cp_parser_using_declaration): Issue error messages
552         about name resolution failures here.
553
554         PR c++/9388
555         * class.c (currently_open_derived_class): Use dependent_type_p.
556         * cp-tree.h (dependent_type_p): New function.
557         (dependent_template_arg_p): Likewise.
558         (dependent_template_p): Likewise.
559         (type_dependent_expression_p): Likewise.
560         * parser.c (cp_parser_dependent_type_p): Remove.
561         (cp_parser_value_dependent_type_p): Likewise.
562         (cp_parser_type_dependent_expression_p): Likewise.
563         (cp_parser_dependent_template_arg_p): Likewise.
564         (cp_parser_dependent_template_id_p): Likewise.
565         (cp_parser_dependent_template_p): Likewise.
566         (cp_parser_diagnose_invalid_type_name): Replace
567         cp_parser_dependent_type_p with dependent_type_p, etc.
568         (cp_parser_primary_expresion): Likewise.
569         (cp_parser_nested_name_specifier_opt): Likewise.
570         (cp_parser_postfix_expression): Likewise.
571         (cp_parser_unary_expression): Likewise.
572         (cp_parser_template_name): Likewise.
573         (cp_parser_class_name): Likewise.
574         (cp_parser_lookup_name): Likewise.
575         * pt.c (dependent_type_p): New function.
576         (value_dependent_expression_p): Likewise.
577         (type_dependent_expression_p): Likewise.
578         (dependent_template_arg_p): Likewise.
579         (dependent_template_id_p): Likewise.
580         (dependent_template_p): Likewise.
581         
582         PR c++/9285
583         PR c++/9294
584         * parser.c (cp_parser_simple_declaration): Return quickly when
585         encountering errors.
586
587 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
588
589         Make-lang.in (cp/decl.o-warn): Add -Wno-error.
590
591 2003-01-17  Jason Merrill  <jason@redhat.com>
592
593         PR c++/9167, c++/9358
594         * decl.c (require_complete_types_for_parms): Also update DECL_ARG_TYPE.
595
596 2003-01-17  Jason Merrill  <jason@redhat.com>
597
598         PR c++/9342
599         * call.c (build_conditional_expr): Always do lvalue-rvalue
600         conversion.
601
602 2003-01-17  Mark Mitchell  <mark@codesourcery.com>
603
604         PR c++/9294
605         * cp-tree.def (BASELINK): Make it class 'x', not class 'e'.
606         * cp-tree.h (BASELINK_BINFO): Adjust.
607         (BASELINK_FUNCTIONS): Likewise.
608         (BASELINK_ACCESS_BINFO): Likewise.
609         (tree_baselink): New structure.
610         (cp_tree_node_structure_enum): Add TS_CP_BASELINK.
611         (lang_tree_node): Add baselink.
612         * decl.c (cp_tree_node_structure): Add BASELINK case.
613         * search.c (build_baselink): Adjust.
614         * tree.c (cp_walk_subtrees): Add BASELINK case.  Remove BASELINK_P
615         test from TREE_LIST case.
616
617         PR c++/9272
618         * parser.c (cp_parser_constructor_declarator_p): Do not assume
619         that a constructor cannot be declared outside of its own class.
620         
621         * parser.c (cp_parser_resolve_typename_type): If the scope cannot
622         be resolved, neither can the qualified name.
623
624         * rtti.c (get_pseudo_ti_desc): Fix thinko.
625
626 2003-01-16  Jason Merrill  <jason@redhat.com>
627
628         PR c++/8564
629         * init.c (build_vec_init): Re-add maxindex parm.
630         (perform_member_init, build_aggr_init): Pass it.
631         (build_new_1): Pass it. Use an incomplete array type for full_type.
632         * typeck.c (build_modify_expr): Pass it.
633         * cp-tree.h: Adjust.
634
635 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
636
637         * cp-tree.h (tsubst_copy_and_build): New declaration.
638         * pt.c (tsubst_copy): Remove 'build_expr_from_tree' from comment.
639         (tsubst_expr): Use 'tsubst_copy_and_build'.  Update initial comment.
640         (tsubst_copy_and_build): New function.
641
642 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
643
644         * cp-tree.h (lang_type_class): Remove is_partial_instantiation.
645         (PARTIAL_INSTANTIATION_P): Remove.
646         (IMPLICIT_TYPENAME_P): Likewise.
647         (IMPLICIT_TYPENAME_TYPE_DECL_P): Likewise.
648         (build_typename_type): Remove declaration.
649         (parmlist_is_exprlist): Likewise.
650         * decl.c (build_typename_type): Make it static, remove third
651         parameter.
652         (push_class_binding): Don't do implicit typename stuff.
653         (make_typename_type): Likewise.
654         (lookup_name_real): Likewise.
655         (grokdeclarator): Don't try to convert declarations into
656         initializations.  Don't do implicit typename stuff.
657         (parmlist_is_exprlist): Remove.
658         (xref_basetypes): Simplify.
659         * decl2.c (grokfield): Don't try to convert declarations into
660         initializations.
661         (build_anon_union_vars): Do this while processing templates, too.
662         (finish_anon_union): Likewise.
663         * error.c (dump_type): Remove implicit typename handling.
664         * parser.c (cp_parser_diagnose_invalid_type_name): New method.
665         (cp_parser_primary_expression): Correct handling of names not
666         found by unqualified name lookup in templates.
667         (cp_parser_nested_name_specifier_opt): Avoid checking dependency
668         of types when possible.
669         (cp_parser_simple_declaration): Complain intelligently about some
670         invalid declarations.
671         (cp_parser_member_declaration): Likewise.
672         (cp_parser_constructor_declarator_p): Don't check when we're in a
673         function scope.
674         * pt.c (instantiate_class_template): Remove
675         PARTIAL_INSTANTIATION_P gunk.
676         * search.c (lookup_field_r): Don't build implicit typenames.
677         (marked_pushdecls_p): Don't enter dependent base types.
678         (unmarked_pushdecls_p): Likewise.
679         * semantics.c (begin_class_definition): Remove implicit typename
680         stuff.
681
682 2003-01-16  Nathan Sidwell  <nathan@codesourcery.com>
683
684         PR c++/9212
685         * parser.c (cp_parser_direct_declarator): If accepting either
686         abstract or named, the name must be an unqualified-id.
687
688 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
689
690         * class.c (layout_virtual_bases): Avoid signed/unsigned warning.
691
692 2003-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
693
694         * decl2.c (check_classfn): Fix uninitialized warning.
695         (build_anon_union_vars): Likewise.
696         * pt.c (tsubst_copy): Likewise.
697
698 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
699
700         Further conform g++'s __vmi_class_type_info to the C++ ABI
701         specification.
702         * rtti.c (dfs_class_hint_mark): Do not set hints not specified by
703         the specification.
704         (class_hint_flags): Likewise.
705
706 2003-01-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
707
708         * config-lang.in: Add semantics.c to gtfiles.
709         * cp-tree.h (flagged_type_tree_s): Remove lookups field.
710         (saved_scope): Likewise.
711         (type_lookups): Remove.
712         (deferred_access): New structure.
713         (type_access_control): Remove.
714         (save_type_access_control): Likewise.
715         (reset_type_access_control): Likewise.
716         (decl_type_access_control): Likewise.
717         (push_deferring_access_checks): Declare.
718         (resume_deferring_access_checks): Likewise.
719         (stop_deferring_access_checks): Likewise.
720         (pop_deferring_access_checks): Likewise.
721         (get_deferred_access_checks): Likewise.
722         (pop_to_parent_deferring_access_checks): Likewise.
723         (perform_deferred_access_checks): Likewise.
724         (perform_or_defer_access_check): Likewise.
725         * decl.c (make_typename_type): Use perform_or_defer_access_check.
726         (make_unbound_class_template): Likewise.
727         (grokdeclarator): Don't call decl_type_access_control.
728         * parser.c (cp_parser_context): Remove deferred_access_checks
729         and deferring_access_checks_p fields.
730         (cp_parser_context_new): Adjust.
731         (cp_parser): Remove access_checks_lists.
732         (cp_parser_defer_access_check): Remove.
733         (cp_parser_start_deferring_access_checks): Remove.
734         (cp_parser_stop_deferring_access_checks): Remove.
735         (cp_parser_perform_deferred_access_checks): Remove.
736         (cp_parser_nested_name_specifier_opt): Use new deferred access
737         functions.
738         (cp_parser_simple_declaration): Likewise.
739         (cp_parser_template_id): Likewise.
740         (cp_parser_function_definition): Likewise.
741         (cp_parser_class_specifier): Likewise.
742         (cp_parser_lookup_name): Likewise.
743         (cp_parser_single_declaration): Likewise.
744         (cp_parser_pre_parsed_nested_name_specifier): Likewise.
745         (cp_parser_parse_tentatively): Likewise.
746         (cp_parser_parse_definitely): Likewise.
747         (yyparse): Likewise.
748         (cp_parser_init_declarator): Remove access_checks parameter.
749         Use new deferred access functions.
750         (cp_parser_function_definition_from_specifiers_and_declarator):
751         Likewise.
752         (cp_parser_class_head): Remove deferring_access_checks_p and
753         saved_access_checks parameters.  Use new deferred access functions.
754         (cp_parser_member_specification_opt): Don't call
755         reset_type_access_control.
756         * search.c (type_access_control): Remove.
757         * semantics.c: Include "gt-cp-semantics.h".
758         (deferred_type_access_control): Remove.
759         (deferred_access_stack): New variable.
760         (deferred_access_free_list): Likewise.
761         (push_deferring_access_checks): New function.
762         (resume_deferring_access_checks): Likewise.
763         (stop_deferring_access_checks): Likewise.
764         (pop_deferring_access_checks): Likewise.
765         (get_deferred_access_checks): Likewise.
766         (pop_to_parent_deferring_access_checks): Likewise.
767         (perform_deferred_access_checks): New function, adapted from
768         cp_parser_perform_deferred_access_checks.
769         (perform_or_defer_access_check): New function, adapted from
770         cp_parser_defer_access_check.
771         (current_type_lookups): Remove.
772         (deferred_type_access_control): Likewise.
773         (decl_type_access_control): Likewise.
774         (save_type_access_control): Likewise.
775         (reset_type_access_control): Likewise.
776         (begin_function_definition): Adjust.
777         (begin_class_definiton): Likewise.
778
779 2003-01-13  Jason Merrill  <jason@redhat.com>
780
781         PR c++/8748
782         * class.c (build_base_path): Take the address before calling save_expr.
783
784         * call.c (build_user_type_conversion_1): Do set ICS_BAD_FLAG if
785         all the ambiguous conversions are bad.
786
787         * class.c (maybe_warn_about_overly_private_class): Don't stop
788         searching when we find a nonprivate method.
789
790         * typeck.c (build_class_member_access_expr): Use unary_complex_lvalue.
791
792 2003-01-12  Mark Mitchell  <mark@codesourcery.com>
793
794         * cp-tree.h (get_arglist_len_in_bytes): Remove.
795
796         PR c++/9264
797         * parser.c (cp_parser_elaborated_type_specifier): Handle erroneous
798         typeame types more robustly.
799
800 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
801
802         * parser.c:  Fix comment typos.
803
804 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
805
806         PR c++/9099
807         * parser.c (cp_parser_scope_through_which_access_occurs): Handle
808         an object_type which is not a class type.
809
810 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
811
812         * parser.c (cp_parser_late_parsing_for_member): Don't cast to void.
813         (cp_parser_late_parsing_default_args): Likewise.
814
815 2003-01-10  Nathanael Nerode  <neroden@gcc.gnu.org>
816
817         * cfns.gperf: ANSIfy function declarations.
818         * cfns.h: Regenerate.
819         * cp-tree.h: ANSIfy function declarations.
820
821 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
822
823         * cp-tree.h (reparse_absdcl_as_expr): Remove.
824         (reparse_absdcl_as_casts): Likewise.
825         (reparse_decl_as_expr): Likewise.
826         (finish_decl_parsing): Likewise.
827         * decl2.c (reparse_absdcl_as_expr): Remove.
828         (reparse_absdcl_as_casts): Likewise.
829         (repase_decl_as_expr): Likewise.
830         (finish_decl_parsing): Likewise.
831
832         PR c++/9128
833         PR c++/9153
834         PR c++/9171
835         * parser.c (cp_parser_pre_parsed_nested_name_specifier): New
836         function.
837         (cp_parser_nested_name_specifier_opt): Correct the
838         check_dependency_p false.
839         (cp_parser_postfix_expression): Fix formatting.
840         (cp_parser_decl_specifier_seq): Avoid looking for constructor
841         declarators when possible.
842         (cp_parser_template_id): Avoid performing name-lookup when
843         possible.
844         (cp_parser_class_head): Do not count specializations when counting
845         levels of templates.
846         (cp_parser_constructor_declarator_p): Return immediately if
847         there's no chance that the tokens form a constructor declarator.
848         * rtti.c (throw_bad_typeid): Add comment.  Do not return an
849         expression with reference type.
850         (get_tinfo_decl_dynamic): Do not return an expression with
851         reference type.
852         (build_typeid): Add comment.  Do not return an expression with
853         reference type.
854         * typeck.c (build_class_member_access_expr): Improve handling of
855         conditionals and comma-expressions as objects.
856
857 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
858
859         * cfns.gperf: ANSIfy function declarations.
860         * cfns.h: Regenerate.
861         * cp-tree.h: ANSIfy function declarations.
862         * parser.c: ANSIfy function declarations & definitions.
863
864         * decl.c (bad_specifiers): Fix parameter order error I introduced.
865
866 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
867
868         Merge from pch-branch:
869
870         2003-01-09  Geoffrey Keating  <geoffk@apple.com>
871
872         Merge to tag pch-merge-20030102:
873         
874         * semantics.c (finish_translation_unit): Don't call finish_file.
875         * parser.c: Don't include ggc.h.
876         (cp_lexer_new_main): Rename from cp_lexer_new, only create main lexer,
877         read first token here.  Don't allow PCH files after the first
878         token is read.
879         (cp_lexer_new_from_tokens): Duplicate functionality from cp_lexer_new.
880         (cp_lexer_get_preprocessor_token): Allow LEXER to be NULL.
881         (cp_parser_new): Call cp_lexer_new_main before allocating GCed memory.
882         (cp_parser_late_parsing_for_member): Don't duplicate call to
883         cp_lexer_set_source_position_from_token.
884         (cp_parser_late_parsing_default_args): Likewise.
885         (yyparse): Call finish_file after clearing the_parser.
886
887         2002-12-11  Geoffrey Keating  <geoffk@apple.com>
888
889         * Make-lang.in: Remove $(GGC_H) from all dependencies.
890         (CXX_TREE_H): Add $(GGC_H).
891         * class.c: Don't include ggc.h. 
892         (field_decl_cmp): Make parameters be 'const void *' to match qsort.
893         (method_name_cmp): Likewise.
894         (resort_data): New variable.
895         (resort_field_decl_cmp): New.
896         (resort_method_name_cmp): New.
897         (resort_sorted_fields): New.
898         (resort_type_method_vec): New.
899         (finish_struct_methods): Delete cast.
900         (finish_struct_1): Delete cast.
901         * cp-tree.h: Include ggc.h.
902         (struct lang_type_class): Add reorder attribute to field `methods'.
903         (union lang_decl_u3): Add reorder attribute to field `sorted_fields'.
904         (resort_sorted_fields): New prototype.
905         (resort_type_method_vec): New prototype.
906         * call.c: Don't include ggc.h.
907         * decl.c: Likewise.
908         * decl2.c: Likewise.
909         * init.c: Likewise.
910         * lex.c: Likewise.
911         * method.c: Likewise.
912         * optimize.c: Likewise.
913         * parse.y: Likewise.
914         * pt.c: Likewise.
915         * repo.c: Likewise.
916         * search.c: Likewise.
917         * semantics.c: Likewise.
918         * spew.c: Likewise.
919         * tree.c: Likewise.
920
921         * lang-specs.h: Remove comment.
922
923         2002-12-03  Geoffrey Keating  <geoffk@apple.com>
924
925         * cp-tree.h (struct operator_name_info_t): Mark for GTY machinery.
926         (operator_name_info): Mark to be saved for PCH, specify size.
927         (assignment_operator_name_info): Likewise.
928
929         2002-11-19  Geoffrey Keating  <geoffk@apple.com>
930
931         * decl.c (anon_cnt): Mark to be saved for PCH.
932
933         2002-10-25  Geoffrey Keating  <geoffk@apple.com>
934
935         * lex.c  (init_reswords): Delete now-untrue comment.
936         Allocate ridpointers using GGC.
937
938         2002-10-04  Geoffrey Keating  <geoffk@apple.com>
939
940         * cp-tree.h (union lang_decl_u2): Add tags to all fields.
941
942         * g++spec.c (lang_specific_driver): Don't include standard
943         libraries in `added'.
944
945         2002-08-27  Geoffrey Keating  <geoffk@redhat.com>
946
947         * decl2.c (finish_file): Call c_common_write_pch.
948         * Make-lang.in (CXX_C_OBJS): Add c-pch.o.
949
950         2002-08-17  Geoffrey Keating  <geoffk@redhat.com>
951
952         * g++spec.c (lang_specific_driver): Treat .h files as C++ header
953         files when using g++.
954         * lang-specs.h: Handle compiling C++ header files.
955
956 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
957
958         * decl.c (start_decl): Only check DECL_THREAD_LOCAL for VAR_DECLs.
959
960 2003-01-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
961
962         * pt.c (push_access_scope_real): Call push_to_top_level for
963         function in namespace scope.
964         (pop_access_scope): Call pop_from_top_level for function in
965         namespace scope.
966
967 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
968
969         * decl.c (start_decl): Don't set DECL_COMMON for __thread variables.
970
971 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
972
973         * Make-lang.in (c++.install-common, c++.install-man,
974         c++.uninstall): Prepend $(DESTDIR) to destination paths in
975         all (un)installation commands.
976         (c++.install-common): Rewrite $(LN) commands to support
977         DESTDIR with "ln" as well as with "ln -s".
978
979 2003-01-08  Jason Merrill  <jason@redhat.com>
980
981         * parser.c (cp_parser_primary_expression): See through explicitly
982         scoped ALIAS_DECLs, too.
983
984 2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
985
986         * decl.c: Remove some #if 0 code.
987
988         * decl.c: ANSIfy function declarations.
989
990 2003-01-07  Mark Mitchell  <mark@codesourcery.com>
991
992         * parser.c (cp_parser_asm_definition): Correct handling of omitted
993         operands.
994
995 2003-01-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
996
997         PR c++/9030
998         * decl.c (make_typename_type): Check access only when tf_error.
999         (make_unbound_class_template): Likewise.
1000         * pt.c (saved_access_scope): New variable.
1001         (push_access_scope_real): New function.
1002         (push_access_scope): Likewise.
1003         (pop_access_scope): Likewise.
1004         (tsubst_default_argument): Use them.
1005         (instantiate_template): Likewise.
1006         (regenerate_decl_from_template): Likewise.
1007         (instantiate_decl): Likewise.
1008         (get_mostly_instantiated_function_type): Likewise.
1009
1010 2003-01-07  Nathanael Nerode <neroden@gcc.gnu.org>
1011
1012         * tree.c: Delete bogus #if 0 code.
1013
1014 2003-01-07  Andreas Schwab  <schwab@suse.de>
1015
1016         * class.c (layout_class_type): Don't use
1017         PCC_BITFIELD_TYPE_MATTERS if not defined.
1018
1019 2003-01-06  Mark Mitchell  <mark@codesourcery.com>
1020
1021         PR c++/9165
1022         * decl2.c (build_cleanup): Mark the object as used.
1023
1024         * pt.c (retrieve_local_specialization): Revert 2003-01-05 change.
1025         (hash_local_specialization): New function.
1026         (register_local_specialization): Revert 2003-01-05 change.
1027         (instantiate_decl): Use hash_local_specialization when creating
1028         the local_specializations table.
1029         
1030         * decl2.c (mark_used): Do not synthesize thunks.
1031
1032         * class.c (layout_class_type): Correct handling of unnamed
1033         bitfields wider than their types.
1034
1035         PR c++/9189
1036         * parser.c (cp_parser): Remove default_arg_types.  Update
1037         documentation for unparsed_functions_queues.
1038         (cp_parser_late_parsing_default_args): Take a FUNCTION_DECL as the
1039         parameter.
1040         (cp_parser_new): Don't set parser->default_arg_types.
1041         (cp_parser_function_definition): Adjust usage of
1042         unparsed_funtions_queues.
1043         (cp_parser_class_specifier): Don't mess with
1044         parser->default_arg_types.  Handle default argument processing in
1045         a separate phase from function body processing.
1046         (cp_parser_template_declaration_after_export): Adjust usage of
1047         unparsed_functions_queues.
1048         (cp_parser_late_parsing_for_member): Do not handle default
1049         arguments.
1050
1051 2003-01-06  Nathan Sidwell  <nathan@codesourcery.com>
1052
1053         PR c++/9109
1054         * parser.c (cp_parser_declarator_kind): New enum.
1055         (cp_parser_declarator): Adjust.
1056         (cp_parser_direct_declarator): Adjust. Allow for either named or
1057         abstract declarator. Prefer abstract, if possible. Allow
1058         parenthesized function name.
1059         (cp_parser_condition): Adjust cp_parser_declarator call.
1060         (cp_parser_explicit_instantiation): Likewise.
1061         (cp_parser_init_declarator): Likewise.
1062         (cp_parser_type_id): Likewise.
1063         (cp_parser_function_definition): Likewise.
1064         (cp_parser_member_declaration): Likewise.
1065         (cp_parser_parameter_declaration): Use cp_parser_declarator to do
1066         the tentative parsing.
1067         (cp_parser_exception_declaration): Likewise.
1068
1069 2003-01-05  Mark Mitchell  <mark@codesourcery.com>
1070
1071         * parser.c (cp_parser_template_parameter): Adjust call to
1072         cp_parser_parameter_declaration.
1073         (cp_parser_parameter_declaration_list): Likewise.
1074         (cp_parser_parameter_declaration): Replace
1075         greater_than_is_operator_p with template_parm_p parameter.  Do not
1076         cache tokens for template default arguments.
1077
1078         * pt.c (retrieve_local_specialization): Use htab_find, not
1079         htab_find_with_hash.
1080         (register_local_specialization): Use htab_find_slot, not
1081         htab_find_slot_with_hash.
1082         (instantiate_decl): Pass a hash function to htab_create.
1083         
1084 2003-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1085
1086         * parser.c (cp_parser_binary_expression,
1087         cp_parser_multiplicative_expression,
1088         cp_parser_additive_expression, cp_parser_shift_expression,
1089         cp_parser_relational_expression, cp_parser_equality_expression,
1090         cp_parser_and_expression, cp_parser_exclusive_or_expression,
1091         cp_parser_inclusive_or_expression,
1092         cp_parser_logical_and_expression, cp_parser_logical_or_expression,
1093         cp_parser_binary_expression): Const-ify.
1094
1095 2003-01-04  Mark Mitchell  <mark@codesourcery.com>
1096
1097         * method.c (use_thunk): Disable access control while building the
1098         body of the thunk.
1099
1100 2003-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
1101
1102         * cvt.c, decl.c, decl2.c: This is the C++ front end, not the C 
1103         front end.
1104
1105 2003-01-03  Matt Austern  <austern@apple.com>
1106
1107         * cp-tree.h (struct lang_type_class): add field for key method
1108         (cp_global_trees): rename dynamic_classes to keyed_classes
1109         (key_method): add definition
1110         * class.c (finish_struct_1): compute class's key method, and add
1111         the class to keyed_classes list if there is no key method.
1112         * decl.c (finish_function): add class to keyed_classes list if we
1113         see a definition of the class's key method.
1114         * pt.c (instantiate_class_template): add template specialization
1115         of a dynamic class to keyed_classes list.
1116         * decl2.c (key_method): remove
1117         (finish_file): iterate only through keyed_classes list when
1118         deciding whether to emit vtables, remove class from its list after
1119         we do the emission.
1120         
1121 2003-01-02  Jason Merrill  <jason@redhat.com>
1122
1123         * call.c (build_conditional_expr): Stabilize lvalues properly.
1124         * cvt.c (ocp_convert): Don't build NOP_EXPRs of class type.
1125         * tree.c (lvalue_p_1): Don't allow sloppy NOP_EXPRs as lvalues.
1126         Don't allow CALL_EXPR or VA_ARG_EXPR, either.
1127
1128         * call.c (convert_like_real): Call decl_constant_value for an
1129         IDENTITY_CONV even if there are no more conversions.
1130
1131         * cvt.c (build_up_reference): Don't push unnamed temps.
1132
1133         * decl2.c (do_namespace_alias): Namespace aliases are DECL_EXTERNAL.
1134
1135         * dump.c (cp_dump_tree): Don't try to dump class-specific fields
1136         for a backend struct.
1137
1138         * except.c (wrap_cleanups_r, build_throw): Make
1139         MUST_NOT_THROW_EXPRs void.
1140         * init.c (expand_default_init): Update to handle MUST_NOT_THROW_EXPR.
1141
1142         * init.c (build_vec_delete_1): Pre-evaluate the base address.
1143
1144         * init.c (get_temp_regvar): Simplify logic.
1145
1146         * tree.c (cp_copy_res_decl_for_inlining): Only do debug tweaks if
1147         our replacement is a decl.
1148
1149         * decl.c (cp_make_fname_decl): Push the decls inside the
1150         outermost scope.
1151
1152 2003-01-03  Nathan Sidwell  <nathan@codesourcery.com>
1153
1154         PR c++/45, c++/3784
1155         * tree.c (cp_tree_equal, TEMPLATE_PARM_INDEX): The types must be
1156         the same too.
1157
1158 2003-01-03  Graham Stott  <graham.stott@btinternet.com>
1159
1160         * parser.c (struct cp_parser): Add access_checks_lists field
1161         (cp_parser_simple_declaration): Use.
1162         (cp_parser_init_declarator): Likewise. 
1163
1164 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
1165
1166         * parser.c (cp_parser_declaration): Accept the __extension__
1167         keyword before the declaration.
1168
1169         PR c++/2843
1170         * parser.c (cp_parser_parameter_declaration): Allow attributes to
1171         appear after the declarator.
1172
1173         * call.c (build_new_method_call): Fix typo in message format
1174         string.
1175
1176 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
1177
1178         * parser.c (cp_lexer_next_token_is): Declare it inline.
1179         (cp_lexer_set_source_position_from_token): Likewise.
1180         (cp_lexer_debugging_p): Likewise.
1181         (cp_parser_parsing_tentatively): Likewise.
1182         (cp_parser_nested_name_specifier_opt): Reduce the number of calls
1183         to the cp_lexer_peek_token.
1184
1185         * parser.c (cp_parser_sizeof_operand): Do not evaluate the
1186         expression.
1187
1188 2003-01-02  Steven Bosscher <s.bosscher@student.tudelft.nl>
1189
1190         * cp/except.c, cp/expr.c, cp/friend.c, cp/g++spec.c,
1191         cp/lang-options.h, cp/lang-specs.h, cp/lex.h, cp/ptree.c,
1192         cp/repo.c: Fix copyright years.
1193
1194 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
1195
1196         * lex.c: Remove superfluous include of cpplib.h.
1197         (CONSTRAINT): Define without conditions.
1198         (init_cp_pragma): Use c_register_pragma.
1199
1200 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
1201
1202         * .cvsignore: Remove.
1203
1204 2002-12-31  Steven Bosscher  <s.bosscher@student.tudelft.nl>
1205
1206         * call.c, class.c, cp-lang.c, cp-tree.h, cvt.c, dump.c, error.c,
1207           except.c, expr.c friend.c, g++spec.c, init.c, lang-options.h,
1208           lang-specs.h, lex.c, mangle.c, method.c, optimize.c, parser.c,
1209           pt.c, ptree.c, repo.c, rtti.c, search.c, semantics.c, tree.c,
1210           typeck.c, typeck2.c: Replace "GNU CC" with "GCC" in the
1211           copyright header.
1212         * lex.h: parse.y is dead, so don't mention it.  Also replace the
1213           copyright header with the default GNU copyright header.
1214
1215 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
1216
1217         * cp-tree.h (LOOKUP_TEMPLATES_EXPECTED): Remove.
1218         (lookup_name_namespace_only): Likewise.
1219         (begin_only_namespace_names): Likewise.
1220         (end_only_namespace_names): Likewise.
1221         * decl.c (only_namespace_names): Remove.
1222         (qualify_lookup): Do not check LOOKUP_TEMPLATES_EXPECTED.
1223         (lookup_name_real): Do not check only_namespace_names.
1224         (lookup_name_namespace_only): Remove.
1225         (begin_only_namespace_names): Likewise.
1226         (end_only_namespace_names): Likewise.
1227         * parser.c (cp_parser_nested_name_specifier_opt): Handle erroneous
1228         nested-name-specifiers more gracefully.
1229         (cp_parser_class_or_namespace_name): Avoid looking up namespace
1230         names when they cannot possibly appear.
1231         (cp_parser_template_name): Adjust call to cp_parser_lookup_name.
1232         (cp_parser_elaborated_type_specifier): Likewise.
1233         (cp_parser_namespace_name): Only look for namespace names.
1234         (cp_parser_lookup_name): Add is_namespace parameter.
1235         (cp_parser_lookup_name_simple): Adjust call to
1236         cp_parser_lookup_name.
1237
1238         * parser.c (cp_parser_dependent_type_p): Fix thinko.
1239
1240 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
1241
1242         * .cvsignore: Update.
1243
1244 2002-12-31  Nathan Sidwell  <nathan@codesourcery.com>
1245
1246         * class.c (modify_vtable_entry): Remove unused variable.
1247         (get_vcall_index): Always expect a non-thunk.
1248         (update_vtable_entry_for_fn): Combine covariant adjustments, when
1249         overriding a thunk. Pass get_vcall_index a non-thunk.
1250
1251         * decl2.c (finish_file): Mark undefined inlines as extern.
1252
1253 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
1254
1255         * cp-tree.def (RETURN_INIT): Remove.
1256         * cp-tree.h (DECL_IN_MEMORY_P): Remove.
1257         (scope_kind): Add sk_block, sk_try, sk_catch, sk_for.
1258         (note_level_for_for): Remove.
1259         (note_level_for_try): Likewise.
1260         (note_level_for_catch): Likewise.
1261         (finish_named_return_value): Likewise.
1262         (do_pushlevel): Change prototype.
1263         (pending_lang_change): Remove.
1264         * decl.c (begin_scope): Handle sk_block, sk_try, sk_catch,
1265         sk_for.
1266         (note_level_for_for): Remove.
1267         (note_level_for_try): Likewise.
1268         (note_level_for_catch): Likewise.
1269         (maybe_inject_for_scope_var): Remove use of DECL_IN_MEMORY_P.
1270         * parser.c (cp_parser_context_free_list): Make it "deletable".
1271         (cp_parser_template_argument): Remove misleading comment.
1272         * pt.c (tsubst_expr): Remove RETURN_INIT code.
1273         * semantics.c (genrtl_named_return_value): Remove.
1274         (do_pushlevel): Take a scope kind as an argument.
1275         (begin_if_stmt): Adjust.
1276         (begin_while_stmt): Likewise.
1277         (begin_for_stmt): Likewise.
1278         (finish_for_init_stmt): Likewise.
1279         (begin_switch_stmt): Likewise.
1280         (begin_handler): Likewise.
1281         (begin_compound_stmt): Likewise.
1282         (finish_named_return_value): Remove.
1283         (cp_expand_stmt): Remove RETURN_INIT case.
1284         * tree.c (cp_statement_code_p): Remove RETURN_INIT case.
1285
1286 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
1287
1288         PR c++/9112
1289         * parser.c (cp_parser_direct_declarator): Handle erroneous
1290         parenthesized declarators correctly.
1291
1292 2002-12-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1293
1294         * cp-tree.h (pending_lang_change): Declare.
1295
1296 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
1297
1298         * parser.c (cp_parser_context_free_list): New variable.
1299         (cp_parser_context_new): Use it.
1300         (cp_parser_error): Check return code from
1301         cp_parser_simulate_error.
1302         (cp_parser_simulate_error): Return a value.
1303         (cp_parser_id_expression): Optimize common case.
1304         (cp_parser_class_name): Likewise.
1305         (cp_parser_class_specifier): Adjust call to
1306         cp_parser_late_parsing_default_args.
1307         (cp_parser_lookup_name): Optimize common case.
1308         (cp_parser_late_parsing_for_member): Adjust call to
1309         cp_parser_late_parsing_default_args.
1310         (cp_parser_late_parsing_default_args): Add scope parameter.
1311         (cp_parser_require): Avoid creating the error message unless it's
1312         needed.
1313         (cp_parser_parse_definitely): Place free'd contexts on the free
1314         list.
1315
1316         * parser.c (cp_parser_declaration_seq_opt): Handle pending_lang_change.
1317
1318 2002-12-30  David Edelsohn  <edelsohn@gnu.org>
1319
1320         * parser.c (cp_parser_parameter_declaration_clause): Treat system
1321         header as extern "C" if NO_IMPLICIT_EXTERN_C undefined.
1322
1323 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
1324
1325         * config-lang.in, Make-lang.in, operators.def, cp-tree.def:
1326         GCC, not GNU CC.
1327
1328 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
1329
1330         * parse.y: Remove.
1331         * spew.c: Likewise.
1332         * Make-lang.in (gt-cp-spew.h): Remove.
1333         * cp-tree.h (do_pending_lang_change): Remove.
1334         (do_identifier): Change prototype.
1335         (finish_id_expr): Remove.
1336         * decl.c (lookup_name_real): Remove yylex variable.
1337         * decl2.c (build_expr_from_tree): Adjust call to do_identifier.
1338         * lex.c (init_cpp_parse): Remove.
1339         (reduce_cmp): Likewise.
1340         (token_cmp): Likewise.
1341         (yychar): Likewise.
1342         (lastiddecl): Likewise.
1343         (token_count): Likewise.
1344         (reduce_count): Likewise.
1345         (yyhook): Likewise.
1346         (print_parse_statistics): Likewise.
1347         (do_pending_lang_change): Likewise.
1348         (do_identifier): Remove parsing parameter.
1349         * lex.h (lastiddecl): Remove.
1350         (looking_for_typename): Remove.
1351         (looking_for_template): Likewise.
1352         (pending_lang_change): Likewise.
1353         (yylex): Likewise.
1354         * semantics.c (finish_id_expr): Remove.
1355
1356         * decl.c (grokdeclarator): Diagnost "extern thread" and "static
1357         thread" correctly.
1358
1359 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
1360
1361         * decl.c, decl2.c, decl.h:  GCC, not GNU CC.  This is the C++ front
1362         end, not the C front end.
1363
1364 2002-12-30  Nathan Sidwell  <nathan@codesourcery.com>
1365
1366         * cp-tree.h (THUNK_TARGET): New macro.
1367         (THUNK_VIRTUAL_OFFSET): For result thunks it is always a binfo.
1368         (finish_thunk): Remove offset parms.
1369         * class.c (find_final_overrider): Look through thunks.
1370         (get_vcall_index): Use THUNK_TARGET.
1371         (update_vtable_entry_for_fn): Look through thunks. Set covariant
1372         fixed offset here. Adjust finish_thunk call.
1373         (build_vtbl_initializer): Adjust finish_thunk calls.
1374         * mangle.c (mangle_call_offset): Remove superfluous if.
1375         (mangle_thunk): Adjust.
1376         * method.c (make_thunk): Adjust.
1377         (finish_thunk): Adjust.
1378         (thunk_adjust): Remove assert.
1379         (use_thunk): Use THUNK_TARGET
1380         * dump1.c (cp_dump_tree): Adjust thunk dumping.
1381
1382         PR c++/9054
1383         * class.c (layout_class_type): Set TYPE_CONTEXT of type for base.
1384         * dump.c (cp_dump_tree, RECORD_TYPE): Deal with type for base types.
1385
1386 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1387
1388         Remove traditional C constructs 4/n.
1389         * decl2.c (grok_method_quals, warn_if_unknown_interface,
1390         grok_x_components, cp_build_parm_decl, build_artificial_parm,
1391         maybe_retrofit_in_chrg, grokclassfn, grok_array_decl,
1392         delete_sanity, check_member_template, check_java_method,
1393         check_classfn, finish_static_data_member_decl, grokfield,
1394         grokbitfield, grokoptypename, grok_function_init,
1395         cplus_decl_attributes, constructor_name, defer_fn,
1396         build_anon_union_vars, finish_anon_union, coerce_new_type,
1397         coerce_delete_type, comdat_linkage, maybe_make_one_only,
1398         key_method, import_export_vtable, import_export_class,
1399         output_vtable_inherit, import_export_decl, import_export_tinfo,
1400         build_cleanup, get_guard, get_guard_bits, get_guard_cond,
1401         set_guard, start_objects, finish_objects,
1402         start_static_storage_duration_function,
1403         finish_static_storage_duration_function, get_priority_info,
1404         start_static_initialization_or_destruction,
1405         finish_static_initialization_or_destruction,
1406         do_static_initialization, do_static_destruction,
1407         prune_vars_needing_no_initialization, write_out_vars,
1408         reparse_decl_as_expr, finish_decl_parsing, namespace_ancestor,
1409         add_using_namespace, merge_functions, ambiguous_decl,
1410         lookup_using_namespace, lookup_using_namespace,
1411         qualified_lookup_using_namespace, set_decl_namespace,
1412         decl_namespace, current_decl_namespace, push_decl_namespace,
1413         pop_decl_namespace, push_scope, pop_scope, add_function,
1414         arg_assoc_namespace, arg_assoc_template_arg, arg_assoc,
1415         lookup_arg_dependent, do_namespace_alias,
1416         validate_nonmember_using_decl, do_nonmember_using_decl,
1417         do_toplevel_using_decl, do_local_using_decl,
1418         do_class_using_decl, do_using_directive, check_default_args,
1419         mark_used, handle_class_head): Use C90 prototypings.  Use booleans.
1420         * parser.c (cp_parser_class_head): Use booleanss.
1421         * decl.c (walk_globals, walk_vtables): Likewise.
1422         * cp-tree.h (walk_globals_pred, walk_globals_fn, walk_vtables,
1423         walk_globals): Change return type from 'int' to 'bool'.
1424         * rtti.c (init_rtti_processing, build_headof, throw_bad_cast
1425         throw_bad_typeid, get_tinfo_decl_dynamic, typeid_ok_p,
1426         build_typeid, tinfo_name, get_tinfo_decl, get_tinfo_ptr,
1427         get_typeid, ifnonnull, build_dynamic_cast_1, build_dynamic_cast,
1428         qualifier_flags, tinfo_base_init, generic_initializer,
1429         ptr_initializer, dfs_class_hint_mark, ptm_initializer,
1430         dfs_class_hint_unmark, class_hint_flags, class_initializer,
1431         typeinfo_in_lib_p, get_pseudo_ti_init, create_pseudo_type_info,
1432         get_pseudo_ti_desc, create_tinfo_types, emit_support_tinfos,
1433         unemitted_tinfo_decl_p, emit_tinfo_decl): Likewise.
1434         * repo.c (repo_compile_flags, repo_template_declared,
1435         repo_template_defined, repo_class_defined, repo_get_id,
1436         repo_template_used, repo_vtable_used, repo_inline_used,
1437         repo_tinfo_used, repo_template_instantiated, extract_string,
1438         open_repo_file, afgets, init_repo, reopen_repo_file_for_write,
1439         finish_repo): Likewise.
1440         * ptree.c (cxx_print_decl, cxx_print_type, cxx_print_identifier,
1441         cxx_print_xnode): Likewise..
1442         * cp-lang.c (ok_to_generate_alias_set_for_type, cxx_get_alias_set,
1443         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
1444         * cxxfilt.c (demangle_it, print_demangler_list, usage,
1445         standard_symbol_characters, hp_symbol_characters, main, fatal):
1446         Likewise.
1447         (strip_underscore):  Change type from 'int' to 'bool'.
1448         (main): Use boolean constants.
1449
1450 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1451
1452         Remove traditional C constructs 3/n.
1453         * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
1454         build_up_reference, warn_ref_binding, convert_to_reference,
1455         convert_from_reference, convert_lvalue, cp_convert, ocp_convert,
1456         convert_to_void, convert, convert_force, build_type_conversion,
1457         build_expr_type_conversion, type_promotes_to,
1458         perform_qualification_conversions): Use C90 prototyping style.
1459         * decl2.c (grok_array_decl): Use boolean constant.
1460         (delete_sanity): Likewise.
1461         * typeck.c (build_unary_op): Likewise.
1462         * semantics.c (finish_switch_cond): Likewise.
1463         * parser.c (cp_parser_direct_new_declarator): Likewise.
1464         * init.c (build_new): Likewise.
1465
1466 2002-12-27  Mark Mitchell  <mark@codesourcery.com>
1467
1468         * Make-lang.in (po-generated): Remove parse.c.
1469         (CXX_OBJS): Remove parse.o and spew.o.  Add parser.o.
1470         ($(srcdir)/cp/parse.h): Remove target.
1471         ($(srcdir)/cp/parse.c): Likewise.
1472         (gt-cp-parse.h): Likewise.
1473         (gt-cp-parser.h): New target.
1474         (c++.distclean): Do not remove parse.output.
1475         (c++.maintainer-clean): Do not remove parse.c or parse.h.
1476         (cp/spew.o): Remove target.
1477         (cp/lex.o): Adjust dependencies.
1478         (cp/pt.o): Likewise.
1479         (cp/parse.o): Likewise.
1480         (cp/TAGS): Do not mention parse.c.
1481         (cp/parser.o): New target.
1482         * NEWS: Mention the new parser.
1483         * call.c (build_scoped_method_call): Simplify.
1484         (build_method_call): Likewise.
1485         (build_new_function_call): Adjust calls to add_function_candidate
1486         and add_template_candidate.
1487         (build_new_op): Improve handling of erroroneous operands.
1488         (convert_default_arg): Remove circular argument processing.
1489         (name_as_c_string): New function.
1490         (build_new_method_call): Use it.
1491         (perform_implicit_conversion): Use error_operand_p.
1492         * class.c (finish_struct_anon): Use constructor_name_p.
1493         (check_field_decls): Likewise.
1494         (pop_nested_class): Use OVL_NEXT, not OVL_CHAIN.
1495         (resolve_address_of_overloaded_function): Likewise.
1496         (instantiate_type): Tweak pointer-to-member handling.
1497         (get_primary_binfo): Remove incorrect assertion.
1498         * config-lang.in (gtfiles): Add parser.c, remove parse.c.
1499         * cp-tree.h (DEFARG_TOKENS): New macro.
1500         (default_arg): New structure.
1501         (cp_tree_node_structure_enum): Add TS_CP_DEFAULT_ARG.
1502         (lang_tree_node): Add default_arg.
1503         (cp_tree_index): Add CPTI_TYPE_INFO_REF_TYPE.
1504         (type_info_ref_type): New macro.
1505         (saved_scope): Make processing_explicit_instantiation a boolean.
1506         (check_access): New field.
1507         (unparsed_text): Remove.
1508         (language_function): Remove unparsed_inlines.
1509         (error_operand_p): New macro.
1510         (lang_decl): Adjust pending_inline_info.
1511         (DEFARG_POINTER): Remove.
1512         (tag_types): Add typenames.
1513         (lookup_ualified_name): Declare.
1514         (lookup_name_real): Likewise.
1515         (shadow_tag): Adjust prototype.
1516         (get_scope_of_declarator): Declare it.
1517         (process_next_inline): Remove it.
1518         (check_for_missing_semicolon): Likewise.
1519         (maybe_get_template_decl_from_type_decl): Declare it.
1520         (finish_label_stmt): Adjust prototype.
1521         (finish_non_static_data_meber): Declare it.
1522         (finish_pseudo_destructor_call_expr): Rename to ...
1523         (finish_pseudo_destructor_expr): ... this.
1524         (finish_compound_literal): Declare it.
1525         (begin_inline_definitions): Remove it.
1526         (init_spew): Remove.
1527         (peekyylex): Likewise.
1528         (arbitrate_lookup): Likewise.
1529         (frob_opname): Likewise.
1530         (maybe_snarf_defarg): Likewise.
1531         (add_defarg_fn): Likewise.
1532         (do_pending_defargs): Likewise.
1533         (done_pending_defargs): Likewise.
1534         (unprocessed_defarg_fn): Likewise.
1535         (replace_defarg): Likewise.
1536         (end_input): Likewise.
1537         (get_overloaded_fn): Likewise.
1538         * cvt.c (convert_to_reference): Improve error handling.
1539         * decl.c (lookup_name_real): Do not declare it static.
1540         (maybe_push_to_top_level): Set check_access.
1541         (identifier_type_value): Adjust call to lookup_name_real.
1542         (lookup_qualified_name): New method.
1543         (lookup_name_real): Remove special-case parsing code.
1544         (lookup_name-nonclass): Adjust call to lookup_name_real.
1545         (lookup_name_namespace_only): Likewise.
1546         (lookup_name): Likewise.
1547         (check_tag_decl): Return the type declared.
1548         (shadow_tag): Likewise.
1549         (register_dtor_fn): Tweak check_access.
1550         (grokfndecl): Use constructor_name_p.
1551         (get_scope_of_declarator): New function.
1552         (grokdeclarator): Obscure tweaks for slightly different declarator
1553         representations.
1554         (start_method): Return error_mark_node to indicate failure.
1555         (cp_tree_node_structure_enum): Use TS_CP_DEFAULT_ARG for DEFAULT_ARGs.
1556         * decl2.c (constructor_name_full): Simplify.
1557         (constructor_name): Use it.
1558         (build_expr_from_tree): Adjust for changes to do new parser.
1559         (push_scope): Improve robustness.
1560         (validate_nonmember_using_decl): Process declarations, not names.
1561         (do_class_using_decl): Likewise.
1562         (handle_class_head): Do not mess with CLASSTYPE_DECLARED_CLASS
1563         here.
1564         * error.c (dump_expr): Handle IDENTIFIER_NODEs and BASELINKs.
1565         * expr.c (cxx_expand_expr): Handle BASELINKs.
1566         * init.c (member_init_ok_or_else): Issue more errors.
1567         (build_offset_ref): Tweak handling of FUNCTION_DECLs.
1568         * lex.c: Do not include parse.h.
1569         (yypring): Do not declare.
1570         (yylval): Likewise.
1571         (make_reference_declarator): Remove error-generating code.
1572         (rid_to_yy): Remove.
1573         (cxx_init): Do not call init_spew.
1574         (yypring): Remove.
1575         (check_for_missing_semicolon): Remove.
1576         * lex.h (got_scope): Remove.
1577         (got_object): Remove.
1578         * method.c (hack_identifier): Use finish_non_static_data_member.
1579         (implicitly_declare_fn): Adjust use of constructor_name.
1580         * parser.c: New file.
1581         * pt.c (parse.h): Do not include it.
1582         (maybe_get_template_decl_from_template): Do not declare it.
1583         (finish_member_template_decl): Tweak.
1584         (begin_explicit_instantiation): Adjust for
1585         processing_explicit_instantiation being boolean.
1586         (end_explicit_instantiation): Likewise.
1587         (maybe_process_partial_specialization): Tighten specialization
1588         test.
1589         (retrieve_local_specialization): Adjust ue of hash table.
1590         (eq_local_specializations): New function.
1591         (register_local_specialization): Likewise.
1592         (push_template_decl_real): Remove unnecessary test.
1593         (maybe_get_template_decl_from_type_decl): Don't make it static.
1594         (for_each_template_parm_r): Handle TYPEOF_TYPE.
1595         (tsubst_copy): Use retrieive_local_specialization to handle
1596         PARM_DECL.  Adjust handling of CONST_DECLs.  Handle BASELINKs.
1597         Handle COMPONENT_REFs with pseudo-destructor-expressions.
1598         Simplify handling of CALL_EXPR and METHOD_CALL_EXPR.
1599         (tsubst_expr): Pass decls, not names, to do_local_using_decl.
1600         (unify): Tweak handling of CONST_DECLs.
1601         (regenerate_decl_from_template): Use push_nested_class.
1602         (template_for_substitution): New funciton.
1603         (instantiate_decl): Use it.  Register parameters as local
1604         specializations.
1605         * rtti.c (init_rtti_processing): Set type_info_ref_type.
1606         (build_typeid): Use it.
1607         (get_typeid): Likeise.
1608         * search.c (accessible_p): Use check_access, not
1609         flag_access_control.
1610         (adjust_result_of_qualified_name_lookup): Pay attention to the
1611         context_class.
1612         * semantics.c (finish_asm_stmt): Adjust error handling.
1613         (finish_label_stmt): Return the statement.
1614         (finish_non_static_data_member): New function.
1615         (finish_class_expr): Handle BASELINKs.
1616         (finish_call_expr): Handle PSEUDO_DTOR_EXPR.
1617         (finish_object_call_expr): Simplify handling during templates.
1618         (finish_pseudo_destructor_call_expr): Rename to ...
1619         (finish_pseudo_dtor_expr): ... this.
1620         (finish_compound_literal): New function.
1621         (begin_inline_definitions): Remove.
1622         (finish_sizeof): Remove special template handling.
1623         * spew.c: Do not include parse.h.
1624         * tree.c (get_overloaded_fn): Remove.
1625         * typeck.c (build_class_member_access_expr): Handle
1626         PSEUDO_DTOR_EXPR.  Adjust handling of static member functions.
1627         (lookup_destructor): New function.
1628         (finish_class_member_access_expr): Use it.
1629         (convert_arguments): Simplify.
1630         (build_unary_op): Handle BASELINKs.
1631
1632 2002-12-26  Nathan Sidwell  <nathan@codesourcery.com>
1633
1634         PR c++/4803
1635         * decl2.c (mark_used): Defer inline functions.
1636         (finish_file): Merge deferred_fns loops. Check all used
1637         inline functions have a definition.
1638         * method.c (make_thunk): Thunks are not inline.
1639
1640         PR c++/5116, c++/764
1641         * call.c (build_new_op): Make sure template class operands are
1642         instantiated.
1643
1644 2002-12-24  Nathan Sidwell  <nathan@codesourcery.com>
1645
1646         PR C++/7964
1647         * cp-tree.h (resolve_scoped_fn_name): Prototype.
1648         * call.c (resolve_scoped_fn_name): New function. Deal with
1649         more template expansion. Broken out of ...
1650         * parse.y (parse_finish_call_expr): ... here. Call it.
1651         * decl2.c (build_expr_from_tree, CALL_EXPR): Use
1652         resolve_scoped_fn_name and build_call_from_tree.
1653
1654         PR c++/9053
1655         * decl.c (duplicate_decls): Templates may be disambiguated by
1656         return type.
1657
1658         PR c++/8702
1659         * decl2.c (check_classfn): Use lookup_fnfield_1. List all
1660         conversion operators on failure.
1661
1662 2002-12-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1663
1664         Remove traditional C constructs 2/n.
1665         * call.c (tourney, build_field_call, equal_functions, joust,
1666         compare_ics, build_over_call, build_java_interface_fn_ref,
1667         convert_like_real, op_error, build_object_call, resolve_args,
1668         build_vfield_ref, check_dtor_name, build_scoped_method_call,
1669         build_addr_func, build_call, build_method_call, null_ptr_cst_p,
1670         sufficient_parms_p, build_conv, non_reference, strip_top_quals,
1671         standard_conversion, reference_related_p,
1672         reference_compatible_p, convert_class_to_reference,
1673         direct_reference_binding, reference_binding,
1674         ,implicit_conversion, is_complete, promoted_arithmetic_type_p,
1675         add_template_conv_candidate, any_viable, any_strictly_viable,
1676         build_this, splice_viable, print_z_candidates,
1677         build_user_type_conversion, build_new_function_call,
1678         conditional_conversion, build_conditional_expr, build_new_op,
1679         build_op_delete_call, enforce_access, call_builtin_trap,
1680         convert_arg_to_ellipsis, build_x_va_arg, cxx_type_promotes_to,
1681         convert_default_arg, type_passed_as, convert_for_arg_passing,
1682         in_charge_arg_for_name, is_properly_derived_from,
1683         maybe_handle_implicit_object, maybe_handle_ref_bind,
1684         source_type, add_warning, can_convert, can_convert_arg,
1685         perform_implicit_conversion, can_convert_arg_bad,
1686         initialize_reference, add_conv_candidate,
1687         add_template_candidate_real, add_template_candidate): Ansify.
1688
1689 2002-12-22  Nathan Sidwell  <nathan@codesourcery.com>
1690
1691         PR c++/8572
1692         * cp-tree.h (grokoptypename): Add SCOPE parameter.
1693         * decl2.c (grokoptypename): Add SCOPE parameter. tsubst the type
1694         if in a template scope.
1695         * parse.y (unoperator): Return the scope.
1696         (operator_name): Adjust grokoptypename call.
1697
1698 2002-12-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1699
1700         * cp-tree.h (make_unbound_class_template): Use tsubst_flags_t.
1701         * decl.c (make_unbound_class_template): Adjust.  Check for tf_error.
1702         * pt.c (tsubst) [OFFSET_TYPE]: Check for tf_error.
1703
1704 2002-12-20  Kazu Hirata  <kazu@cs.umass.edu>
1705
1706         * ChangeLog: Fix a typo.
1707         * class.c: Fix comment typos.
1708         * cp-tree.h: Likewise.
1709
1710 2002-12-18  Jason Merrill  <jason@redhat.com>
1711
1712         Handle anonymous unions at the tree level.
1713         C++ ABI change: Mangle anonymous unions using the name of their
1714         first named field (by depth-first search).  Should not cause
1715         binary compatibility problems, though, as the compiler previously
1716         didn't emit anything for affected unions.
1717         * cp-tree.def (ALIAS_DECL): New tree code.
1718         * decl2.c (build_anon_union_vars): Build ALIAS_DECLs.  Return the
1719         first field, not the largest.
1720         (finish_anon_union): Don't mess with RTL.  Do set DECL_ASSEMBLER_NAME,
1721         push the decl, and write it out at namespace scope.
1722         * decl.c (lookup_name_real): See through an ALIAS_DECL.
1723         (pushdecl): Add namespace bindings for ALIAS_DECLs.
1724         * rtti.c (unemitted_tinfo_decl_p): Don't try to look at the name
1725         of a decl which doesn't have one.
1726         * typeck.c (build_class_member_access_expr): Don't recurse if
1727         we already have the type we want.
1728
1729 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1730
1731         PR c++/8099
1732         * friend.c (make_friend_class): Allow partial specialization
1733         when declaration is not a template friend.
1734
1735 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1736
1737         PR c++/3663
1738         * pt.c (lookup_template_class): Copy TREE_PRIVATE and
1739         TREE_PROTECTED to created decl nodes.
1740
1741 2002-12-18  Mark Mitchell  <mark@codesourcery.com>
1742
1743         * class.c (build_base_field): Do not set DECL_PACKED on the
1744         FIELD_DECL.
1745
1746 2002-12-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1747
1748         * cp-tree.h (struct tree_srcloc): Use location_t.
1749         (SOURCE_LOCUS): New.
1750         (SRCLOC_FILE, SRCLOC_LINE): Adjust.
1751
1752 2002-12-17  Jason Merrill  <jason@redhat.com>
1753
1754         * decl.c (finish_function): Also complain about no return in
1755         templates.
1756         * semantics.c (finish_return_stmt): Also call check_return_expr in
1757         templates.
1758         * typeck.c (check_return_expr): In a template, just remember that we
1759         saw a return.
1760
1761 2002-12-16  Jason Merrill  <jason@redhat.com>
1762
1763         * semantics.c (simplify_aggr_init_exprs_r): Don't change the type
1764         of the CALL_EXPR.
1765
1766         * semantics.c (do_pushlevel): Call pushlevel after adding the
1767         SCOPE_STMT.
1768         (do_poplevel): Call poplevel before adding the SCOPE_STMT.
1769         * parse.y (function_body): Go back to using compstmt.
1770         * decl.c (pushdecl): Skip another level to get to the parms level.
1771
1772         * call.c (build_new_method_call): Use is_dummy_object to determine
1773         whether or not to evaluate the object parameter to a static member
1774         function.
1775
1776 2002-12-14  Jason Merrill  <jason@redhat.com>
1777
1778         * semantics.c (simplify_aggr_init_exprs_r): Also prepend the
1779         return slot for normal functions.  Set CALL_EXPR_HAS_RETURN_SLOT_ADDR.
1780         * tree.c (build_cplus_new): If the type isn't TREE_ADDRESSABLE,
1781         don't bother with an AGGR_INIT_EXPR.
1782         (cp_copy_res_decl_for_inlining): If the type isn't TREE_ADDRESSABLE,
1783         just generate a new decl normally.  Take return slot parm.
1784         * cp-tree.h: Adjust prototype.
1785
1786 2002-12-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1787
1788         PR C++/8031
1789         * cvt.c (convert_to_pointer_force): Don't try comparing against
1790         erronous type.
1791
1792 2002-12-13  Geoffrey Keating  <geoffk@apple.com>
1793
1794         * cp-tree.h: Have the multiple-include guards around
1795         the entire file.
1796
1797 2002-12-10  David Edelsohn  <edelsohn@gnu.org>
1798
1799         * cp/spew.c (feed_input): Change limit to last_pos and pos to cur_pos
1800         for SPEW_DEBUG.
1801         (snarf_method): Same.
1802         (snarf_defarg): Same.
1803
1804 2002-12-10  Mark Mitchell  <mark@codesourcery.com>
1805
1806         PR c++/8372
1807         * pt.c (tsubst_copy): Handle destructor names more correctly.
1808
1809 2002-12-10  Matt Austern   <austern@apple.com>
1810
1811         * cp-tree.h: get rid of needs_virtual_reinit bit.
1812
1813 2002-12-09  Mark Mitchell  <mark@codesourcery.com>
1814
1815         * NEWS: Document removal of in-class initialization extension for
1816         static data members of non-arithmetic, non-enumeration type.
1817         * decl.c (check_static_variable_definition): Do not allow that
1818         extension.
1819         * decl2.c (grokfield): Do not call digest_init when processing
1820         templates.
1821
1822 2002-12-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1823
1824         * error.c (dump_expr): Fix format specifier warning.
1825
1826 2002-12-04  Geoffrey Keating  <geoffk@apple.com>
1827
1828         * class.c (finish_struct_1): Correct comment.
1829         * cp-tree.c (DECL_SORTED_FIELDS): Likewise.
1830
1831 2002-12-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1832
1833         PR C++/8799
1834         * error.c (dump_expr): Don't ever try to dump a non-existent
1835         expression.
1836
1837 2002-12-03  Nathan Sidwell  <nathan@codesourcery.com>
1838
1839         Implement covariant returns.
1840         * cp-tree.h (IS_AGGR_TYPE_2): Remove.
1841         (struct lang_decl_flags): Add this_thunk_p flag.
1842         Rename vcall_offset to virtual_offset.
1843         (struct lang_decl): Rename delta to fixed_offset.
1844         (DECL_THIS_THUNK_P, DECL_RESULT_THUNK_P): New #defines.
1845         (SET_DECL_THUNK_P): Add THIS_ADJUSTING arg.
1846         (THUNK_DELTA, THUNK_VCALL_OFFSET): Rename to ...
1847         (THUNK_FIXED_OFFSET, THUNK_VIRTUAL_OFFSET): ... here.
1848         (make_thunk): Add this_adjusting arg.
1849         (finish_thunk): Declare.
1850         (mangle_thunk): Add this_adjusting arg.
1851         * class.c (get_vcall_index): Use base function for lookup.
1852         (update_vtable_entry_for_fn): Generate covariant thunk.
1853         (finish_struct_1): Set DECL_VINDEX to NULL for thunks.
1854         (build_vtbl_initializer): Use base function for lookup.
1855         Finish covariant thunk here. Adjust thunk generation.
1856         * dump.c (cp_dump_tree): Simplify DECL_GLOBAL_[CD]TOR_P handling.
1857         Adjust thunk dumping.
1858         * mangle.c (mangle_call_offset): New function.
1859         (mangle_thunk): Adjust for covariant thunks.
1860         * method.c (make_thunk): Adjust. Do not set name here.
1861         (finish_thunk): New function. Set name here.
1862         (use_thunk): Generate covariant thunks too.
1863         (thunk_adjust): New function.
1864         * search.c (covariant_return_p): Remove. Fold into ...
1865         (check_final_overrider): ... here. Simplify.
1866         * semantics.c (emit_associated_thunks): Walk covariant thunk lists.
1867
1868 2002-12-03  Jason Merrill  <jason@redhat.com>
1869
1870         PR c++/8674
1871         * call.c (build_over_call): Check specifically for TARGET_EXPR
1872         when eliding.
1873
1874         PR c++/8461, c++/8625
1875         * call.c (convert_for_arg_passing): Don't mess with error_mark_node.
1876         (cp_convert_parm_for_inlining): Remove.
1877         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
1878         Remove.
1879         * cp-tree.h (ADDR_IS_INVISIREF): Remove.
1880         * except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
1881
1882         * call.c (build_user_type_conversion_1): Don't set ICS_BAD_FLAG on
1883         an ambiguous conversion.
1884
1885 2002-12-03  Mark Mitchell  <mark@codesourcery.com>
1886
1887         PR c++/8688
1888         * decl.c (reshape_init): Handle erroneous initializers.
1889
1890 2002-12-02  Mark Mitchell  <mark@codesourcery.com>
1891
1892         PR c++/8720
1893         * spew.c (remove_last_token): Make sure that last_chunk is set
1894         correctly.
1895
1896         PR c++/8615
1897         * error.c (dump_expr): Handle character constants with
1898         TREE_OVERFLOW set.
1899
1900 2002-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1901
1902         DR 180
1903         * decl.c (grokdeclarator): Require class-key for all friend class.
1904         Output the correct type and context in the error message.
1905
1906 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
1907
1908         PR c++/5919
1909         * pt.c (unify): Use variably_modified_type_p to test validity of
1910         template argument types.
1911
1912         PR c++/8727
1913         * cp-tree.h (lang_type_class): Add typeinfo_var.
1914         (CLASSTYPE_TYPEINFO_VAR): New macro.
1915         * rtti.c (get_tinfo_decl): Use it.
1916
1917         PR c++/8663
1918         * init.c (expand_member_init): Always get the main variant of a
1919         base class.
1920
1921 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
1922
1923         PR c++/8332
1924         PR c++/8493
1925         * decl.c (cxx_init_decl_processing): Use size_type_node, not
1926         c_size_type_node.
1927         * decl2.c (coerce_new_type): Likewise.
1928         * except.c (do_allocate_exception): Likewise.
1929
1930 2002-11-30  Zack Weinberg  <zack@codesourcery.com>
1931
1932         * call.c, class.c, cp-lang.c, cvt.c, cxxfilt.c, decl.c, decl2.c,
1933         dump.c, error.c, except.c, expr.c, friend.c, g++spec.c, init.c,
1934         lex.c, mangle.c, method.c, optimize.c, parse.y, pt.c, ptree.c,
1935         repo.c, rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
1936         typeck2.c: Include coretypes.h and tm.h.
1937         * Make-lang.in: Update dependencies.
1938
1939 2002-11-30  Mark Mitchell  <mark@codesourcery.com>
1940
1941         PR c++/8227
1942         * decl.c (layout_var_decl): Deal gracefully with erroneous types.
1943         (check_initializer): Validate the type of the initialized
1944         variable, even if the initializer is absent.
1945         * typeck.c (cp_type_quals): Deal gracefully with erroneous types.
1946
1947         PR c++/8214
1948         * typeck.c (convert_for_assignment): Do not use
1949         decl_constant_value on the operand.
1950
1951         PR c++/8511
1952         * pt.c (instantiate_decl): Handle template friends defined outside
1953         of the class correctly.
1954
1955 2002-11-29  Joe Buck <jbuck@synopsys.com>
1956
1957         * parse.y (class_head_defn): Set CLASSTYPE_DECLARED_CLASS for
1958         anonymous structs.
1959
1960 2002-11-29  Mark Mitchell  <mark@codesourcery.com>
1961
1962         * class.c (walk_subobject_offsets): Recur on binfos as well as on
1963         types.
1964         (layout_nonempty_base_or_field): Pass it a binfo when processing a
1965         base class.
1966         (layout_empty_base): Likewise.
1967         (build_base_field): Likewise.
1968
1969 2002-11-27  Mark Mitchell  <mark@codesourcery.com>
1970
1971         * class.c (build_base_field): Make sure we get the canonical base
1972         when descending through primary bases.
1973
1974 2002-11-26  Geoffrey Keating  <geoffk@apple.com>
1975
1976         * decl.c (check_initializer): Don't error on initialisation of
1977         a scalar with a brace-enclosed expression.
1978
1979 2002-11-26  Nathan Sidwell  <nathan@codesourcery.com>
1980
1981         * cp-tree.h (DECL_LANG_FLAG_4): Document more uses.
1982         (template_parms_equal): Remove prototype.
1983         * typeck.c (buuld_indirect_ref): Reformat.
1984
1985 2002-11-25  Jason Merrill  <jason@redhat.com>
1986
1987         * init.c (build_vec_init): Use a FOR_STMT instead of an IF_STMT
1988         and a DO_STMT.
1989
1990 2002-11-25  Mark Mitchell  <mark@codesourcery.com>
1991
1992         * tree.c (cp_build_qualified_type_real): Correct handling of
1993         array types.
1994         * class.c (walk_subobject_offsets): Fix thinko.
1995         (build_base_field): Record offsets of empty bases in primary
1996         virtual bases.
1997         (layout_class_type): Record offsets of empty bases in fields.
1998
1999         * search.c (is_subobject_of_p_1): Fix thinko.
2000         (lookup_field_queue_p): Likewise.
2001
2002 2002-11-24  Mark Mitchell  <mark@codesourcery.com>
2003
2004         * class.c (layout_class_type): Reuse tail padding when laying out
2005         virtual bases.
2006
2007 2002-11-22  Mark Mitchell  <mark@codesourcery.com>
2008
2009         * rtti.c (qualifier_flags): Fix thinko.
2010
2011 2002-11-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2012
2013         Remove traditional C constructs 1/n.
2014         * cp-tree.h (init_method, set_mangled_name_for_decl,
2015         build_opfncall, hack_identifier, make_thunk, use_thunk,
2016         synthesize_method, implicitly_declare_fn,
2017         skip_artificial_parms_for, optimize_function, calls_setjmp_p,
2018         maybe_clone_body): Remove use of PARAMS.
2019
2020         * method.c (do_build_assign_ref, do_build_copy_constructor,
2021         synthesize_exception_spec, locate_dtor, locate_ctor, locate_copy):
2022         Likewise.
2023         (synthesize_method): Use 'bool' type and constants instead of
2024         'int'.
2025         (locate_copy): Likewise.
2026         (implicitly_declare_fn): Likewise.
2027
2028         * optimize.c (calls_setjmp_r, update_cloned_parm, dump_function):
2029         Remove old-style declaration.
2030         (maybe_clone_body): Use 'bool' type and constants.
2031
2032 2002-11-21  Glen Nakamura  <glen@imodulo.com>
2033
2034         PR c++/8342
2035         * typeck.c (get_member_function_from_ptrfunc): Make sure that a
2036         SAVE_EXPR for instance_ptr doesn't get evaluated first inside one
2037         of the branches of a COND_EXPR.
2038
2039 2002-11-19  Mark Mitchell  <mark@codesourcery.com>
2040
2041         * pt.c (for_each_template_parm): Free allocated memory.
2042         * search.c (is_subobject_of_p_1): New function.
2043         (is_subobject_of_p): Avoid walking virtual bases multiple times.
2044
2045 2002-11-19  Jason Thorpe  <thorpej@wasabisystems.com>
2046
2047         * g++spec.c (lang_specific_spec_functions): New.
2048
2049 2002-11-15  Kazu Hirata  <kazu@cs.umass.edu>
2050
2051         * ChangeLog: Follow spelling conventions.
2052         * class.c: Likewise.
2053         * decl2.c: Likewise.
2054
2055 2002-11-14  Zack Weinberg  <zack@codesourcery.com>
2056
2057         * search.c (dfs_push_decls): Do not try to reorder elements
2058         3..n of method_vec if method_vec has only two elements.
2059         Reverse order of two tests to avoid accessing unallocated
2060         memory.
2061
2062 2002-11-14  Mark Mitchell  <mark@codesourcery.com>
2063
2064         * class.c (dfs_find_final_overrider): Adjust so that the most
2065         derived object is a binfo, rather than a class type.
2066         (find_final_overrider): Likewise.
2067         (add_vcall_offset_vtbl_entries_1): Simplify accordingly.
2068         (add_vcall_offset): Likewise.
2069
2070 2002-11-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2071
2072         PR c++/8389
2073         * pt.c (instantiate_template): Push class scope for member
2074         functions.
2075         (get_mostly_instantiated_function_type): Likewise.  Don't call
2076         tsubst on context.  Remove CONTEXTP and TPARMSP parameters.
2077         * cp-tree.h (get_mostly_instantiated_function_type): Adjust.
2078         * mangle.c (write_encoding, write_unqualified_name): Adjust.
2079
2080 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
2081
2082         * class.c (add_vcall_offset_vtbl_entries_1): Correct ordering of
2083         vcall offfsets.  Split out ...
2084         (add_vcall_offset): ... new function.
2085
2086         PR c++/8338
2087         * pt.c (for_each_template_parm): Add htab parameter.
2088         (process_partial_specialization): Adjust call.
2089         (push_template_decl_real): Likewise.
2090         (pair_fn_data): Add visited.
2091         (for_each_template_parm_r): Avoid walking duplicates more than
2092         once.
2093         (uses_template_parms): Adjust call to for_each_template_parm.
2094
2095 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
2096
2097         * class.c (add_implicitly_declared_members): Put implicitly
2098         declared functions at the end of TYPE_METHODs when -fabi-version
2099         is at least 2.
2100
2101 2002-11-05  Geoffrey Keating  <geoffk@apple.com>
2102
2103         * decl2.c (finish_file): Correct spelling.
2104
2105 2002-11-03  Mark Mitchell  <mark@codesourcery.com>
2106
2107         * call.c (build_special_member_call): Do not try to lookup VTTs by
2108         name.
2109         * class.c (vtbl_init_data): Add generate_vcall_entries.
2110         (get_vtable_decl): Do not look up virtual tables by name.
2111         (copy_virtuals): Do not use BV_USE_VCALL_INDEX_P.
2112         (set_primary_base): Do not set CLASSTYPE_RTTI.
2113         (determine_primary_base): Likewise.
2114         (get_matching_virtual): Remove.
2115         (get_vcall_index): New function.
2116         (update_vtable_entry_for_fn): Do not try to use virtual thunks
2117         when they are not required.  Assign vcall indices at this point.
2118         (finish_struct_1): Do not set CLASSTYPE_NEEDS_VIRTUAL_REINIT.
2119         Do update dynamic_classes.
2120         (build_vtt): Do not add VTTs to the symbol table.
2121         (build_ctor_vtbl_group): Likewise.
2122         (build_vtbl_initializer): Simplify handling of vcall indices.
2123         (build_vcall_offset_vtbl_entries): Pretend to build vcall offsets
2124         for the most derived class.
2125         (add_vcall_offset_vtbl_entries_1): But do not actually add them to
2126         the vtable.
2127         * cp-tree.h (dynamic_classes): New macro.
2128         (lang_type_class): Remove rtti.  Add vtables.  Add vcall_indices.
2129         (CLASSTYPE_RTTI): Remove.
2130         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Remove.
2131         (CLASSTYPE_VCALL_INDICES): New macro.
2132         (CLASSTYPE_VTABLES): Likewise.
2133         (BV_USE_VCALL_INDEX_P): Remove.
2134         (build_vtable_path): Remove.
2135         * decl2.c (finish_vtable_vardecl): Remove.
2136         (key_method): Remove #if 0'd code.
2137         (finish_vtable_vardecl): Rename to ...
2138         (maybe_emit_vtables): ... this.
2139         (finish_file): Use it.
2140         * search.c (look_for_overrides_here): Update comment.
2141
2142 2002-11-01  Zack Weinberg  <zack@codesourcery.com>
2143
2144         PR c/7353 redux
2145         * decl2.c (grokfield): Reject TYPE_DECLs with initializers.
2146
2147 2002-10-30  Jason Merrill  <jason@redhat.com>
2148
2149         PR c++/8186
2150         * cp-tree.h (ADDR_IS_INVISIREF): New macro.
2151         * call.c (convert_for_arg_passing): Set it.
2152         * except.c (stabilize_throw_expr): Recurse for such an arg.
2153
2154 2002-10-31  Mark Mitchell  <mark@codesourcery.com>
2155
2156         * cp-tree.h (lang_decl_flags): Remove init_priority.
2157         (lang_decl): Add delta.
2158         (GLOBAL_INIT_PRIORITY): Remove.
2159         (THUNK_DELTA): Revise definition.
2160         * decl2.c (start_objects): Don't set GLOBAL_INIT_PRIORITY.
2161         * dump.c (cp_dump_tree): Don't dump it.
2162
2163 2002-10-30  Mark Mitchell  <mark@codesourcery.com>
2164
2165         PR c++/8160
2166         * typeck2.c (process_init_constructor): Call complete_array_type.
2167
2168         PR c++/8149
2169         * decl.c (make_typename_type): Issue errors about invalid results.
2170
2171 2002-10-30  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2172
2173         Core issue 287, PR c++/7639
2174         * cp-tree.h (lang_type_class): Add decl_list field.
2175         (CLASSTYPE_DECL_LIST): New macro.
2176         (maybe_add_class_template_decl_list): Add declaration.
2177         * class.c (duplicate_tag_error): Initialize CLASSTYPE_DECL_LIST.
2178         (unreverse_member_declarations): Reverse CLASSTYPE_DECL_LIST.
2179         (maybe_add_class_template_decl_list): New function.
2180         (add_implicitly_declared_members): Use it.
2181         * decl.c (maybe_process_template_type_declaration): Likewise.
2182         (pushtag): Likewise.
2183         * friend.c (add_friend): Likewise.
2184         (make_friend_class): Likewise.
2185         * semantics.c (finish_member_declaration): Likewise.
2186         (begin_class_definition): Initialize CLASSTYPE_DECL_LIST.
2187         * pt.c (instantiate_class_template): Use CLASSTYPE_DECL_LIST
2188         to process members and friends in the order of declaration.
2189
2190 2002-10-29  Mark Mitchell  <mark@codesourcery.com>
2191
2192         PR c++/8287
2193         * decl.c (finish_destructor_body): Create the label to jump to
2194         when returning from a destructor here.
2195         (finish_function_body): Rather than here.
2196
2197 2002-10-25  Zack Weinberg  <zack@codesourcery.com>
2198
2199         PR c++/7266
2200         * decl.c (grokdeclarator): Check that TREE_OPERAND 0 of a
2201         SCOPE_REF is not null before dereferencing it.
2202
2203 2002-10-25  Mark Mitchell  <mark@codesourcery.com>
2204
2205         * call.c (build_over_call): Use DECL_CONTEXT, not
2206         DECL_VIRTUAL_CONTEXT.
2207         * class.c (modify_vtable_entry): Don't mess with
2208         DECL_VIRTUAL_CONTEXT.
2209         (set_vindex): Remove.
2210         (set_primary_base): Remove vfuns_p parameter.
2211         (determine_primary_base): Likewise.
2212         (modify_all_vtables): Likewise.
2213         (layout_class_type): Likewise.  Adjust calls to other functions
2214         accordingly.
2215         (finish_struct_1): Adjust calls to modified functions.  Set
2216         DECL_VINDEX here.
2217         * cp-tree.h (lang_type_class): Remove vsize.
2218         (CLASSTYPE_VSIZE): Remove.
2219         (lang_decl): Remove thunks.
2220         (DECL_THUNKS): Adjust.
2221         (DECL_VIRTUAL_CONTEXT): Remove.
2222         (duplicate_decls): Don't copy it.
2223         * pt.c (build_template_decl): Don't set it.
2224         (tsubst_decl): Likewise.
2225         * typeck.c (expand_ptrmemfunc_cst): Don't use it.
2226
2227         * class.c (build_vtbl_initializer): Don't use build_vtable_entry.
2228         (build_vtable_entry): Remove.
2229         * cp-tree.h (BINFO_VIRTUALS): Expand documentation.
2230         (lang_decl): Add thunks.
2231         (DECL_THUNKS): New macro.
2232         * decl.c (duplicate_decls): Copy it.
2233         * method.c (make_thunk): Simplify, and add thunks to DECL_THUNKS.
2234         * semantics.c (emit_associated_thunks): Simplify.
2235
2236 2002-10-24  David Edelsohn  <edelsohn@gnu.org>
2237
2238         PR c++/7228
2239         * cp-tree.h (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Check that
2240         lang_type structure exists before accessing field.
2241         (SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT): New macro.
2242         (CLASSTYPE_REF_FIELDS_NEED_INIT): Similar.
2243         (SET_CLASSTYPE_REF_FIELDS_NEED_INIT): New macro.
2244         * class.c (check_field_decls): Use new macros.
2245         * typeck2.c (process_init_constructor): Remove redundant check for
2246         existence of lang_type structure.
2247
2248 2002-10-24  Mark Mitchell  <mark@codesourcery.com>
2249
2250         * class.c (end_of_base): New method.
2251         (end_of_class): Use it.  Check indirect virtual bases.
2252
2253         * class.c (check_field_decls): Fix typo.
2254
2255 2002-10-23  Mark Mitchell  <mark@codesourcery.com>
2256
2257         PR c++/8067
2258         * decl.c (maybe_inject_for_scope_var): Ignore __FUNCTION__ and
2259         related variables.
2260
2261         PR c++/7679
2262         * spew.c (next_token): Do not return an endless stream of
2263         END_OF_SAVED_INPUT tokens.
2264         (snarf_method): Add three END_OF_SAVED_INPUT tokens to the end of
2265         the cached token stream.
2266         (snarf_defarg): Likewise.
2267
2268 2002-10-23  Zack Weinberg  <zack@codesourcery.com>
2269
2270         * cp-lang.c (cp_var_mod_type_p): New: C++ hook for
2271         variably_modified_type_p.
2272         * cp-tree.h: Remove prototype of variably_modified_type_p.
2273         * tree.c (variably_modified_type_p): Remove; now implemented
2274         in language-independent code.
2275
2276 2002-10-22  Mark Mitchell  <mark@codesourcery.com>
2277
2278         PR c++/6579
2279         * spew.c (snarf_parenthesized_expression): New function.
2280         (snarf_block): Use it.
2281
2282 2002-10-22  Richard Henderson  <rth@redhat.com>
2283
2284         * method.c (use_thunk): Always compute vcall_value; assert that
2285         it is not zero.  Use can_output_mi_thunk; use output_mi_thunk
2286         for vcall thunks as well.
2287
2288 2002-10-21  Mark Mitchell  <mark@codesourcery.com>
2289
2290         * class.c (empty_base_at_nonzero_offset_p): New function.
2291         (layout_nonempty_base_or_field): Do not check for conflicts when
2292         laying out a virtual base using the GCC 3.2 ABI.
2293         (build_base_field): Correct checking for presence of empty classes
2294         at nonzero offsets when clearing CLASSTYPE_NEARLY_EMPTY_P.
2295
2296         * class.c (include_empty_classes): Use normalize_rli.
2297         (layout_class_type): Likewise.
2298
2299         * decl.c (reshape_init): Tweak handling of character arrays.
2300
2301         PR c++/8218
2302         * cp-tree.h (lang_type_class): Add contains_empty_class_p.
2303         (CLASSTYPE_CONTAINS_EMPTY_CLASS_P): New macro.
2304         * class.c (check_bases): Update CLASSTYPE_CONTAINS_EMPTY_CLASS_P.
2305         (check_field_decls): Likewise.
2306         (layout_class_type): Likewise.
2307         (finish_struct_1): Initialize it.
2308         (walk_subobject_offsets): Use it to prune searches.
2309
2310 2002-10-20  Mark Mitchell  <mark@codesourcery.com>
2311
2312         * method.c (use_thunk): Compute the vcall index as a HOST_WIDE_INT.
2313         * optimize.c (optimize_function): Replace ASM_OUTPUT_MI_THUNK with
2314         TARGET_ASM_OUTPUT_MI_THUNK in comments.
2315
2316 2002-10-18  Zack Weinberg  <zack@codesourcery.com>
2317
2318         * decl.c (start_decl): Point users of the old initialized-
2319         typedef extension at __typeof__.
2320
2321 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
2322
2323         * Make-lang.in (method.o): Depend on TARGET_H.
2324         * method.c (target.h): Include it.
2325         (use_thunk): Use target hooks.  Use vcall thunks, if available.
2326
2327 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
2328
2329         * class.c (base_derived_from): Make sure return value is a bool.
2330
2331 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
2332
2333         * class.c (find_final_overrider_data_s): Remove overriding_fn and
2334         overriding_base.
2335         (dfs_base_derived_from): New function.
2336         (base_derived_from): Likewise.
2337         (dfs_find_final_overrider): Use base_derived_from.
2338         (find_final_overrider): Adjust.
2339
2340 2002-10-18  Jason Merrill  <jason@redhat.com>
2341
2342         PR c++/8080
2343         * semantics.c (finish_for_cond, finish_while_cond): Don't mess
2344         with condition decls in a template.
2345
2346 2002-10-17  Nathan Sidwell  <nathan@codesourcery.com>
2347
2348         * class.c (add_method): Compare template parms too.
2349
2350 2002-10-17  Mark Mitchell  <mark@codesourcery.com>
2351
2352         PR c++/7584
2353         * class.c (handle_using_decl): Allow the declaration used to be
2354         from an ambiguous base.
2355
2356         * pt.c (convert_template_argument): Revert this change:
2357                 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
2358                 * pt.c (convert_template_argument): Do not fold non-type
2359                 template rguments when inside a template.
2360
2361         * init.c (expand_default_init): Handle brace-enclosed initializers
2362         correctly.
2363
2364 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
2365
2366         * mangle.c (write_expression): Correct handling of enumeration
2367         constants.
2368         (write_template_arg): Likewise.
2369         * pt.c (convert_template_argument): Do not fold non-type template
2370         arguments when inside a template.
2371
2372         PR c++/7478
2373         * cvt.c (convert_to_reference): Allow references as the incoming
2374         type.
2375
2376 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
2377
2378         PR c++/7524
2379         * method.c (do_build_assign_ref): Use cp_build_qualified_type, not
2380         build_qualified_type.
2381
2382 2002-10-15  Richard Henderson  <rth@redhat.com>
2383
2384         * error.c (dump_expr): Use real_to_decimal directly, and with
2385         the new arguments.
2386
2387 2002-10-15  Mark Mitchell  <mark@codesourcery.com>
2388
2389         * decl.c (reshape_init): Fix typo.
2390
2391         * cp-tree.h (operator_name_info_t): Add arity.
2392         * lex.c (init_operators): Initialize it.
2393         * mangle.c (write_conversion_operator_name): New function.
2394         (write_unqualified_name): Use it.
2395         (write_template_args): Accept template arguments as a TREE_LIST.
2396         (write_expression): Adjust handling of qualified names to match
2397         specification.
2398
2399 2002-10-15  Jason Merrill  <jason@redhat.com>
2400
2401         * call.c (call_builtin_trap): New fn.
2402         (convert_arg_to_ellipsis): Use it.  Downgrade error to warning.
2403         (build_call): Don't set current_function_returns_abnormally outside
2404         a function.
2405
2406 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
2407
2408         * class.c (check_field_decls): Remove empty_p parameter.  Instead,
2409         clear CLASSTYPE_EMPTY_P.
2410         (build_base_field): Likewise.
2411         (build_base_fields): Likewise.
2412         (check_bases_and_members): Likewise.
2413         (create_vtbl_ptr): Likewise.
2414         (layout_class_type): Likewise.  Ensure that empty classes have
2415         size zero when used as base classes in the 3.2 ABI.
2416         (finish_struct_1): Initialize CLASSTYPE_EMPTY_P and
2417         CLASSTYPE_NEARLY_EMPTY_P.  Adjust calls to avoid passing empty_p
2418         parameter.
2419         (is_empty_class): Correct definition when using post-3.2 ABI.
2420         * cp-tree.h (lang_type_class): Add empty_p.
2421         (CLASSTYPE_EMPTY_P): New macro.
2422
2423 2002-10-12  Nathan Sidwell  <nathan@codesourcery.com>
2424
2425         * init.c (build_delete): Do not apply save_expr for arrays.
2426         (build_vec_delete): Likewise.
2427
2428 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
2429
2430         * decl.c (layout_var_decl): Call layout_decl even for variables
2431         whose type is an array with unspecified bounds.
2432
2433         PR c++/7176
2434         * lex.c (do_identifier): Add another option for the parsing
2435         parameter.
2436         * parse.y (do_id): Use it.
2437
2438 2002-10-11  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2439
2440         PRs C++/6803, C++/7721 and C++/7803
2441         * decl.c (grokdeclarator): Gracefully handle template-name as
2442         decl-specifier.
2443
2444 2002-10-11  Jason Molenda  <jmolenda@apple.com>
2445
2446         * init.c (build_field_list): Provide uses_unions_p with a default
2447         value.
2448
2449 2002-10-11  Mark Mitchell  <mark@codesourcery.com>
2450
2451         PR c++/5661
2452         * cp-tree.h (variably_modified_type_p): New function.
2453         (grokdeclarator) Tighten check for variably modified types as
2454         fields.
2455         * pt.c (convert_template_argument): Do not allow variably modified
2456         types as template arguments.
2457         * tree.c (variably_modified_type_p): New function.
2458
2459         * NEWS: Document removal of "new X = ..." extension.
2460         * class.c (initialize_array): Set TREE_HAS_CONSTRUCTOR on
2461         brace-enclosed initializers.
2462         * cp-tree.h (CP_AGGREGATE_TYPE_P): New macro.
2463         (initialize_local_var): Remove declaration.
2464         (expand_static_init): Likewise.
2465         * decl.c (next_initializable_field): New function.
2466         (reshape_init): Likewise.
2467         (check_initializer): Use them.  Build dynamic initializer for
2468         aggregates here too.
2469         (initialize_local_var): Simplify, and incorporate cleanup
2470         insertion code as well.
2471         (destroy_local_var): Remove.
2472         (cp_finish_decl): Tidy.
2473         (expand_static_init): Fold checks for whether or not a variable
2474         needs initialization into this function.  Simplify.
2475         * decl2.c (do_static_initialization): Simplify.
2476         * init.c (build_init): Do not set TREE_SIDE_EFFECTS when it will
2477         be done for us automatically.
2478         (expand_default_init): Handle brace-enclosed initializers
2479         correctly.
2480         (expand_aggr_init_1): Remove RTL-generation code.
2481         (build_vec_init): Remove "new X = ..." support.
2482         * parse.y (new_initializer): Likewise.
2483         * rtti.c (get_pseudo_ti_init): Set TREE_HAS_CONSTRUCTOR on
2484         brace-enclosed initializer.
2485         (create_pseudo_type_info): Likewise.
2486         * typeck2.c (store_init_value): Don't try to handle digest_init
2487         being called more than once.
2488         (digest_init): Tidy handling of brace-enclosed initializers.
2489
2490 2002-10-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2491
2492         * decl.c (typename_hash): Use htab_hash_pointer.
2493
2494 2002-10-10  Jim Wilson  <wilson@redhat.com>
2495
2496         * decl.c (duplicate_decls): Don't call decl_attributes.
2497
2498 2002-10-09  Zack Weinberg  <zack@codesourcery.com>
2499
2500         PR c/7353
2501         * decl.c (start_decl): Unconditionally issue error for
2502         'typedef foo = bar'.
2503         (cp_finish_decl): Remove special case for TYPE_DECL with initializer.
2504         (grokdeclarator): Remove redundant error for 'typedef foo = bar'.
2505
2506 2002-10-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2507
2508         * decl2.c (prune_vtable_vardecl): Delete unused function.
2509
2510 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
2511
2512         PR c++/7754
2513         * decl2.c (finish_anon_union): Do not expand anonymous unions when
2514         procesing template functions.
2515         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
2516         type. Call layout_decl.
2517         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
2518
2519 2002-10-07  Richard Henderson  <rth@redhat.com>
2520
2521         * decl2.c, pt.c: Revert c++/7754 fix.
2522
2523 2002-10-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2524
2525         PR c++/7804
2526         * error.c (dump_expr) [REAL_CST]: Output in decimal format.
2527
2528 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
2529
2530         PR c++/7931
2531         * pt.c (for_each_template_parm_r): Handle BASELINKs.
2532
2533         PR c++/7754
2534         * decl2.c (finish_anon_union): Do not expand anonymous unions when
2535         procesing template functions.
2536         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
2537         type. Call layout_decl.
2538         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
2539
2540 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
2541
2542         PR c++/8006
2543         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Handle instances of template
2544         template parameters.
2545         (globals): Add entity and need_abi_warning.
2546         (decl_is_template_id): Use TYPE_TEMPLATE_INFO, not
2547         CLASSTYPE_TEMPLATE_INFO.
2548         (is_std_substitution): Use CLASSTYPE_TI_TEMPLATE, not
2549         TYPE_TI_TEMPLATE.
2550         (write_prefix): Handle typename types correctly.
2551         (write_template_prefix): Handle template template parameters
2552         correctly.
2553         (start_mangling): Add entity parameter.
2554         (finish_mangling): Warn about names whose mangling will change.
2555         (mangle_decl_string): Adjust.
2556         (mangle_type_string): Likewise.
2557         (mangle_special_for_type): Likewise.
2558         (mangle_ctor_vtbl_for_type): Likewise.
2559         (mangle_thunk): Likewise.
2560         (mangle_guard_variable): Likewise.
2561         (mangle_ref_init_variable): Likewise.
2562
2563 2002-10-02  Mark Mitchell  <mark@codesourcery.com>
2564
2565         PR c++/7188.
2566         * cp-tree.def (CTOR_INITIALIZER): Use one slot, not two.
2567         * cp-tree.h (emit_base_init): Rename to ....
2568         (emit_mem_initializers): ... this.
2569         (expand_member_init): Change prototype.
2570         * init.c (perform_member_init): Compute explicit, rather than
2571         requiring it as a parameter.
2572         (sort_member_init): Rename to ...
2573         (sort_mem_initializers): ... this.  Process bases and data members
2574         together.
2575         (sort_base_init): Remove.
2576         (emit_base_init): Rename to ...
2577         (emit_mem_initializers): ... this.
2578         (expand_aggr_vbase_init_1): Remove.
2579         (construct_virtual_bases): Rename to ...
2580         (construct_virtual_base): ... this.
2581         (expand_member_init): Rework handling of base initializers.
2582         * method.c (do_build_copy_constructor): Use
2583         finish_mem_initializers.
2584         * parse.y (member_init): Adjust calls to expand_member_init.
2585         * pt.c (tsubst_expr): Simplify CTOR_INITIALIZER case.
2586         (tsubst_initializer_list): Use expand_member_init.
2587         * semantics.c (finish_mem_intiailizers): Simplify.
2588
2589 2002-10-02  Matt Austern  <austern@apple.com>
2590         * decl.c (walk_vtables_r): Fixed typo that caused result to
2591         never get a nonzero value.
2592
2593 2002-10-02  Roger Sayle  <roger@eyesopen.com>
2594
2595         PR optimization/6627
2596         * cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
2597         from here, and move it to tree.h.
2598         * decl.c (cxx_init_decl_processing): If storing the vbit
2599         in function pointers, ensure that force_align_functions_log
2600         is atleast one.
2601
2602 2002-10-02  Matt Austern  <austern@apple.com>
2603
2604         * class.c (check_field_decls): Changed warning about const member
2605         variables so that it doesn't get issued for a class aggregate.
2606
2607 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
2608
2609         * decl.c (cp_finish_decl): Make sure array types are laid out,
2610         even if the array bounds are unknown.
2611
2612 2002-10-01  Steve Ellcey  <sje@cup.hp.com>
2613
2614         * class.c (build_vtbl_initializer): Change build_c_cast
2615         to build1.
2616
2617 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
2618
2619         * decl.c (cp_finish_decl): Make sure array types are laid out,
2620         even if the array bounds are unknown.
2621
2622         * decl.c (cp_finish_decl): Correct check for dynamic
2623         initialization of thread-local storage.
2624
2625 2002-09-30  Nathan Sidwell  <nathan@codesourcery.com>
2626
2627         * tree.c (really_overloaded_fn): TEMPLATE_ID_EXPRs are also
2628         overloaded.
2629
2630 2002-09-30  Steve Ellcey  <sje@cup.hp.com>
2631
2632         * class.c (build_vtbl_initializer): Add cast.
2633         (add_vcall_offset_vtbl_entries_1):
2634         Use TARGET_VTABLE_DATA_ENTRY_DISTANCE for offset.
2635
2636 2002-09-30  Mark Mitchell  <mark@codesourcery.com>
2637
2638         * class.c (walk_subobject_offsets): Correct the calculation of
2639         offsets for virtual bases.  Correct the counting of array
2640         elements.
2641         (layout_nonempty_base_or_field): Simplify.  Correct the
2642         calculation of offsets to be propagated through the binfo
2643         hierarchy.
2644         (build_base_field): Avoid creating a FIELD_DECL for empty bases.
2645         Add the FIELD_DECL to TYPE_FIELDS.
2646         (build_base_fields): Adjust accordingly.
2647         (layout_virtual_bases): Use build_base_field.
2648         (end_of_class): Return a tree, not an integer.
2649         (warn_about_ambiguous_direct_bases): Rename to ...
2650         (warn_about_ambiguous_bases): ... this.
2651         (include_empty_classes): New function.
2652         (layout_class_type): Create an alternative version of the type to
2653         be used when as a base class type.  Do not call
2654         finish_record_layout until we are done laying out the class.
2655         * cp-tree.h (lang_type_class): Remove size, size_unit.  Add
2656         as_base.
2657         (CLASSTYPE_SIZE): Reimplement.
2658         (CLASSTYPE_SIZE_UNIT): Likewise.
2659         (CLASSTYPE_ALIGN): Likweise.
2660         (CLASSTYPE_USER_ALIGN): Likewise.
2661         (CLASSTYPE_AS_BASE): New macro.
2662         (DECL_INITIALIZED_P): Likewise.
2663         (extract_init): Remove prototype.
2664         (build_forced_zero_init): Rename to ...
2665         (build_zero_init): ... this.
2666         (force_store_init_value): Remove.
2667         * decl.c (obscure_complex_init): Remove.
2668         (duplicate_decls): Copy DECL_INITIALIZED_P.
2669         (check_initializer): Do not leave junk in DECL_INITIAL.
2670         (cp_finish_decl): Handle zero-initialization of entities with
2671         static storage duration.
2672         * expr.c (extract_init): Remove.
2673         * init.c (build_forced_zero_init): Remove.
2674         (build_zero_init): New function.
2675         (build_default_init): Use it.
2676         (build_field_list): Skip FIELD_DECLs for base subobjects.
2677         (push_base_cleanups): Likewise.
2678         * method.c (do_build_assign_ref): Likewise.
2679         (synthesize_exception_spec): Likewise.
2680         * pt.c (tsubst_decl): Clear DECL_INITIALIZED_P.
2681         (regenerate_decl_from_template): To not set DECL_INITIAL for a
2682         static data member whose initialization took place in its class.
2683         (instantiate_decl): Do not pass an initializer to cp_finish_decl
2684         in that situation.
2685         * search.c (dfs_push_decls): Skip FIELD_DECLs for base subobjects.
2686         (dfs_unuse_fields): Likewise.
2687         * tree.c (pod_type_p): Handle error_mark_node.
2688         (zero_init_p): Likewise.
2689         * typeck.c (lookup_anon_field): Skip FIELD_DECLs for base
2690         subobjects.
2691         * typeck2.c (store_init_value): Remove #if 0'd code.
2692         (force_store_init_value): Remove.
2693         (process_init_constructor): Use build_zero_init.
2694
2695 2002-09-29  Nathan Sidwell  <nathan@codesourcery.com>
2696
2697         PR c++/7788
2698         * rtti.c (unemitted_tinfo_decl_p): Check it has a field.
2699
2700 2002-09-29  Kazu Hirata  <kazu@cs.umass.edu>
2701
2702         * cp-tree.h: Fix comment typos.
2703         * decl.c: Likewise.
2704         * pt.c: Likewise.
2705
2706 2002-09-25  Mark Mitchell  <mark@codesourcery.com>
2707
2708         * cp/class.c (contains_empty_class_p): New method.
2709         (walk_subobject_offsets): Correct computation of field offset.
2710         (layout_empty_base): Correct placement of emtpy base classes.
2711         (layout_class_type): Warn about ABI changes.
2712
2713 2002-09-23  Mark Mitchell  <mark@codesourcery.com>
2714
2715         * cp/class.c (layout_virtual_bases): Do not round the size of the
2716         type to a multiple of the alignment before laying out virtual bases.
2717         (layout_class_type): Correct handling of bit-fields that are wider
2718         than their type inside unions.  Round the size of the type to a
2719         even number of bytes when computing the size without virtual
2720         bases.
2721         * cp/cp-tree.h (abi_version_at_least): New macro.
2722
2723 2002-09-21  Kazu Hirata  <kazu@cs.umass.edu>
2724
2725         * ChangeLog: Follow spelling conventions.
2726         * ChangeLog.2: Likewise.
2727         * call.c: Likewise.
2728         * class.c: Likewise.
2729         * cp-tree.h: Likewise.
2730         * cvt.c: Likewise.
2731         * decl.c: Likewise.
2732         * decl2.c: Likewise.
2733         * except.c: Likewise.
2734         * friend.c: Likewise.
2735         * g++spec.c: Likewise.
2736         * init.c: Likewise.
2737         * lex.c: Likewise.
2738         * mangle.c: Likewise.
2739         * method.c: Likewise.
2740         * operators.def: Likewise.
2741         * optimize.c: Likewise.
2742         * pt.c: Likewise.
2743         * rtti.c: Likewise.
2744         * search.c: Likewise.
2745         * semantics.c: Likewise.
2746         * spew.c: Likewise.
2747         * tree.c: Likewise.
2748         * typeck.c: Likewise.
2749
2750 2002-09-18  Devang Patel  <dpatel@apple.com>
2751
2752         * cp/cp-tree.h: New prototype for walk_vtabls().
2753         * cp/decl.c (walk_vtables_r): New function.
2754         (struct cp_binding_level): Add new members, namespaces,
2755         names_size and vtables.
2756         (add_decl_to_level): Add decl in namespaces or vtables
2757         chain, if conditions match.
2758         (walk_vtables): New function.
2759         (walk_namespaces_r): Travers separate namespace chain
2760         for namespace decls.
2761         (wrapup_globals_for_namespace): Use names_size instead
2762         of list_length().
2763         * cp/decl2.c (finish_file): Use walk_vtables() instead of
2764         walk_globals() to walk vtable decls.
2765
2766 2002-09-18  Nathan Sidwell  <nathan@codesourcery.com>
2767
2768         * decl.c (grokdeclarator): Use assert, not internal_error. Don't
2769         ICE with invalid pointers & references.
2770
2771 2002-09-17  Zack Weinberg  <zack@codesourcery.com>
2772
2773         * Make-lang.in: Remove all references to the demangler.
2774         * cxxfilt.c: Moved to binutils.
2775
2776 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2777
2778         PR c++/7718
2779         * pt.c (tsubst_decl): Remove assert.
2780
2781         Remove DR 295 implementation.
2782         * pt.c (check_cv_quals_for_unify): Disable function & method cases.
2783         * tree.c (cp_build_qualified_type_real): Likewise. Don't warn
2784         about ignoring volatile qualifiers.
2785
2786         * search.c (lookup_member): Correct documentation.
2787
2788 2002-09-16  Geoffrey Keating  <geoffk@apple.com>
2789
2790         * cp-tree.h (union lang_tree_node): Add chain_next option.
2791
2792 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2793
2794         * parse.y (parse_finish_call_expr): Check lookup_member result.
2795
2796         PR c++/7015
2797         * semantic.c (finish_asm_stmt): Fix operand/output_operands
2798         thinko.
2799         * typeck.c (c_expand_asm_operands): Protect from error_mark_node.
2800
2801 2002-09-15  Nathan Sidwell  <nathan@codesourcery.com>
2802
2803         PR c++/7919
2804         * call.c (build_over_call): Convert this pointer for fns found by
2805         using decls.
2806
2807 2002-09-15  Kazu Hirata  <kazu@cs.umass.edu>
2808
2809         * ChangeLog: Follow spelling conventions.
2810         * ChangeLog.1: Likewise.
2811
2812 2002-09-14  Nathan Sidwell  <nathan@codesourcery.com>
2813
2814         PR c++/7768
2815         * pt.c (build_template_decl): Copy DECL_DESTRUCTOR_P.
2816
2817 2002-09-14  Kazu Hirata  <kazu@cs.umass.edu>
2818
2819         * error.c: Fix comment formatting.
2820         * except.c: Likewise.
2821         * expr.c: Likewise.
2822         * friend.c: Likewise.
2823         * g++spec.c: Likewise.
2824         * init.c: Likewise.
2825         * lex.c: Likewise.
2826         * mangle.c: Likewise.
2827         * method.c: Likewise.
2828         * optimize.c: Likewise.
2829         * pt.c: Likewise.
2830         * rtti.c: Likewise.
2831         * search.c: Likewise.
2832         * semantics.c: Likewise.
2833         * spew.c: Likewise.
2834         * tree.c: Likewise.
2835         * typeck.c: Likewise.
2836         * typeck2.c: Likewise.
2837
2838 2002-09-13  Matt Austern  <austern@apple.com>
2839
2840         PR C++/7828
2841         * cp/cp-tree.h, cp/tree.c: New function non_cast_lvalue_p.
2842         * cp/call.c: Change call-by-const-reference mechanism to use
2843         non_cast_lvalue_p when deciding whether the create a temporary.
2844         We need a temporary when passing, e.g. (long) x by const ref.
2845
2846 2002-09-13  Nathan Sidwell  <nathan@codesourcery.com>
2847
2848         * pt.c (unify, ARRAY_TYPE): Element type can be more qualified.
2849
2850 2002-09-13  Kazu Hirata  <kazu@cs.umass.edu>
2851
2852         * decl.c: Fix comment formatting.
2853         * decl2.c: Likewise.
2854
2855 2002-09-12  Kazu Hirata  <kazu@cs.umass.edu>
2856
2857         * call.c: Fix comment formatting.
2858         * class.c: Likewise.
2859         * cp-lang.c: Likewise.
2860         * cp-tree.h: Likewise.
2861         * cvt.c: Likewise.
2862
2863 2002-09-11  Zack Weinberg  <zack@codesourcery.com>
2864
2865         * Make-lang.in: Build cp/cxxfilt.o from $(srcdir)/cp/cxxfilt.c,
2866         and c++filt from cxxfilt.o + version.o + $(LIBDEPS).
2867         * cxxfilt.c: New file: split from libiberty/cplus-dem.c, with
2868         minor adjustments (use version_string, eliminate yet another
2869         duplicate of xmalloc)
2870
2871 2002-09-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2872
2873         * cp-tree.h (require_complete_eh_spec_types): Add prototype.
2874
2875 2002-09-05  Jason Merrill  <jason@redhat.com>
2876
2877         * typeck2.c (add_exception_specifier): Only pedwarn for an
2878         incomplete type.
2879         (require_complete_eh_spec_types): New fn.
2880         (cxx_incomplete_type_diagnostic): Also support pedwarning.
2881         * typeck.c (complete_type_or_diagnostic): Likewise.
2882         * call.c (build_call): Call require_complete_eh_spec_types.
2883         * rtti.c (get_pseudo_ti_desc): Give an error rather than aborting
2884         on an incomplete type.
2885
2886 2002-09-04  Jakub Jelinek  <jakub@redhat.com>
2887
2888         * decl.c (start_cleanup_fn): Clear interface_only before
2889         start_function, restore it afterwards.
2890
2891 2002-09-02  Nathan Sidwell  <nathan@codesourcery.com>
2892
2893         * cp-tree.h (finish_builtin_type): Remove.
2894         * decl2.c (finish_builtin_type): Move to common code.
2895         * decl.c (build_ptrmemfunc_type): Adjust.
2896         * rtti.c (create_pseudo_type_info): Adjust.
2897         (create_tinfo_types): Adjust.
2898
2899 2002-08-31  Jason Merrill  <jason@redhat.com>
2900
2901         * cp-lang.c (cp_expr_size): Allow initialization from a
2902         CONSTRUCTOR.
2903
2904 2002-08-30  Richard Henderson  <rth@redhat.com>
2905
2906         PR opt/7515
2907         * tree.c: Include target.h.
2908         (cp_cannot_inline_tree_fn): Don't auto-inline functions that
2909         don't bind locally.
2910         * Makefile.in (tree.o): Update.
2911
2912 2002-08-27  Mark Mitchell  <mark@codesourcery.com>
2913
2914         * class.c (layout_virtual_bases): Warn about bugs in G++ that
2915         result in incorrect object layouts.
2916         (layout_class_type): Likewise.
2917
2918 2002-08-24  Matt Austern  <austern@apple.com>
2919
2920         * tree.c (lvalue_p_1): Add argument for whether casts of lvalues
2921         are allowable.
2922         (real_lvalue_p): Update caller.
2923         (lvalue_p): Ditto.
2924         (non_cast_lvalue_or_else): New.
2925         * tree.h: Declare it.
2926         * typeck.c (build_unary_op): Use non_cast_lvalue_or_else.
2927
2928 2002-08-22  Mark Mitchell  <mark@codesourcery.com>
2929
2930         * typeck.c (build_class_member_access_expr): Handle COMPOUND_EXPR
2931         and COND_EXPR specially; fix error message output.
2932
2933 2002-08-22  Jason Merrill  <jason@redhat.com>
2934
2935         * pt.c (tsubst_expr): RETURN_EXPR is now RETURN_STMT_EXPR.
2936         * semantics.c (nullify_returns_r): Likewise.
2937
2938 2002-08-17  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2939
2940         Fix PR/7621
2941         * typeck.c (finish_class_member_access_expr): Diagnose cases where
2942         name lookup finds nothing.
2943
2944 2002-08-15  Jason Merrill  <jason@redhat.com>
2945
2946         * semantics.c (finish_then_clause): Remove redundant assignment.
2947         (finish_if_stmt, begin_switch_stmt, finish_switch_stmt): Move the
2948         extra binding level outside the if/switch statement.
2949         (finish_while_cond, finish_for_cond): Rewrite complex condition
2950         into the loop body.
2951
2952 2002-08-15  Alexandre Oliva  <aoliva@redhat.com>
2953
2954         * parse.y (sizeof, alignof, typeof): New non-terminals to
2955         increment skip_evaluation.  Replace terminals with them and
2956         decrement skip_evaluation at the end of rules using them.
2957         * decl2.c (mark_used): Don't assemble_external if
2958         skipping evaluation.
2959
2960 2002-08-15  Gabriel Dos Reis  <gdr@nerim.net>
2961
2962         Fix PR/7504
2963         * parse.y (parse_finish_call_expr): Handle incomplete
2964         type used to name a scope.
2965
2966 2002-08-15  Nathan Sidwell  <nathan@codesourcery.com>
2967
2968         PR c++/7598
2969         * typeck.c (build_unary_op): Fold offsetof idiom. Fixes
2970         regression caused by my 2002-08-08 patch.
2971
2972 2002-08-13  Mark Mitchell  <mark@codesourcery.com>
2973
2974         * decl.c (pushdecl_class_level): Honor requests to bind names to
2975         OVERLOADs.
2976
2977 2002-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2978
2979         * decl2.c (build_call_from_tree): Fix uninitialized variable.
2980         * parse.y (parse_finish_call_expr): Likewise.
2981         * repo.c (old_args, old_dir, old_main): Const-ify.
2982
2983 2002-08-11  Gabriel Dos Reis  <gdr@nerim.net>
2984
2985         * decl.c (duplicate_decls): Replace DECL_SOURCE_FILE +
2986         DECL_SOURCE_LINE with DECL_SOURCE_LOCATION.
2987         * optimize.c (maybe_clone_body): Likewise.
2988         * pt.c (tsubst_enum): Likewise.
2989         (lookup_template_class): Likewise.
2990         * tree.c (cp_copy_res_decl_for_inlining): Likewise.
2991
2992 2002-08-10  Neil Booth  <neil@daikokuya.co.uk>
2993
2994         * lang-specs.h: Remove -ansi.
2995
2996 2002-08-10  Nathan Sidwell  <nathan@codesourcery.com>
2997
2998         * tree.c (maybe_dummy_object): Replace // with /* */
2999
3000 2002-08-09  Mark Mitchell  <mark@codesourcery.com>
3001
3002         * call.c (standard_conversion): Use build_ptrmem_type.
3003         * cp-tree.h (build_ptrmem_type): New function.
3004         (adjust_result_of_qualified_name_lookup): Likewise.
3005         * decl.c (grokvardecl): Do not look for OFFSET_TYPEs to indicate
3006         static data members.
3007         (build_ptrmem_type): New function.
3008         (grokdeclarator): Do not use build_offset_type when encountering a
3009         qualified name.
3010         * parse.y (parse_finish_call_expr): Use
3011         adjust_result_of_qualified_name_lookup.
3012         * search.c (adjust_result_of_qualified_name_lookup): New function.
3013         * typeck.c (qualify_type_recursive): Use TYPE_PTRMEM_* rather than
3014         accessing OFFSET_TYPEs directly.
3015
3016 2002-08-08  Mike Stump  <mrs@apple.com>
3017
3018         * call.c (add_builtin_candidate): legal -> valid, illegal -> invalid.
3019         (type_decays_to): Likewise.
3020         * class.c (find_final_overrider): Likewise.
3021         (maybe_note_name_used_in_class): Likewise.
3022         * decl.c (current_tmpl_spec_kind): Likewise.
3023         (add_binding): Likewise.
3024         (push_class_binding): Likewise.
3025         (duplicate_decls): Likewise.
3026         (layout_var_decl): Likewise.
3027         (grokfndecl): Likewise.
3028         (grokdeclarator): Likewise.
3029         (check_default_argument): Likewise.
3030         * decl2.c (handle_class_head): Likewise.
3031         * error.c (dump_template_decl): Likewise.
3032         * init.c (build_offset_ref): Likewise.
3033         * pt.c (check_specialization_scope): Likewise.
3034         (determine_specialization): Likewise.
3035         (check_explicit_specialization): Likewise.
3036         (maybe_check_template_type): Likewise.
3037         (process_partial_specialization): Likewise.
3038         (check_default_tmpl_args): Likewise.
3039         (push_template_decl_real): Likewise.
3040         (convert_template_argument): Likewise.
3041         (try_class_unification): Likewise.
3042         (get_bindings_real): Likewise.
3043         (do_decl_instantiation): Likewise.
3044         * semantics.c (begin_function_definition): Likewise.
3045         (finish_member_declaration): Likewise.
3046         (check_multiple_declarators): Likewise.
3047         * typeck.c (comp_array_types): Likewise.
3048         (comptypes): Likewise.
3049         (expr_sizeof): Likewise.
3050         (build_binary_op): Likewise.
3051         (dubious_conversion_warnings): Likewise.
3052         (check_return_expr): Likewise.
3053
3054 2002-08-08  Mark Mitchell  <mark@codesourcery.com>
3055
3056         * typeck.c (build_class_member_access_expr): Do not return
3057         error_mark_node when no error has occurred.
3058
3059 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
3060
3061         * typeck.c (build_component_addr): Remove.
3062         (build_unary_op): Just check it's not a bitfield, and then build
3063         an ADDR_EXPR.
3064
3065 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
3066
3067         * class.c (convert_to_base): Correct check for error_mark_node.
3068         (create_vtable_ptr): Remove unused VFUNS_P parm.
3069
3070 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
3071
3072         * cp/Make-lang.in (c++.mostlyclean): Remove coverage files.
3073
3074 2002-08-07  Mark Mitchell  <mark@codesourcery.com>
3075
3076         Rework build_component_ref.
3077         * call.c (build_vfield_ref): Do not go through build_component_ref.
3078         (build_field_call): Use build_class_member_access_expr.
3079         (build_user_type_conversion_1): Use BASELINK_FUNCTIONS.
3080         (build_object_call): Likewise.
3081         * class.c (convert_to_base): New function.
3082         (type_requires_array_cookie): Use BASELINK_FUNCTIONS.
3083         (instantiate_type): Handle BASELINKs.
3084         * cp-tree.def (BASELINK): New tree code.
3085         * cp-tree.h (BASELINK_P): Reimplement.
3086         (SET_BASELINK_P): Remove.
3087         (BASELINK_BINFO): Reimplement.
3088         (BASELINK_FUNCTIONS): Likewise.
3089         (BASELINK_ACCESS_BINFO): Likewise.
3090         (BASELINK_OPTYPE): Likewise.
3091         (convert_to_base): New function.
3092         (name_p): Likewise.
3093         (build_object_ref): Remove.
3094         (build_component_ref_1): Likewise.
3095         (build_component_ref): Likewise.
3096         (build_x_component_ref): Likewise.
3097         (build_class_member_access_expr): New function.
3098         (finish_class_member_access_expr): Likewise.
3099         (build_ptrmemfunc_access_expr): Likewise.
3100         * decl.c (grokdeclarator): Handle BASELINKs.
3101         * decl2. (build_expr_from_tree): Handle COMPONENT_REFs by using
3102         finish_class_member_access_expr.
3103         (arg_assoc): Handle BASELINKs.
3104         (do_class_using_decl): Likewise.
3105         * error.c (dump_decl): Likewise.
3106         (dump_expr): Use build_ptrmemfunc_access_expr.
3107         * except.c (dtor_nothrow): Use CLASSTYPE_DESTRUCTORS to find
3108         destructors.
3109         (build_throw): Use BASELINK_FUNCTIONS.
3110         * init.c (perform_member_init): Use
3111         build_class_member_access_expr.
3112         (build_offset_ref): Handle BASELINKs.  Use
3113         build_class_member_access_expr.
3114         * method.c (hack_identifier): Likewise.
3115         * parse.y (do_id): Use BASELINK, not TREE_LIST.
3116         (primary): Remove uses of build_object_ref.
3117         * pt.c (lookup_template_function): Handle BASELINKs.
3118         (resolve_overloaded_unification): Likewise.
3119         * search.c (build_baselink): Build a BASELINK, not a TREE_LIST.
3120         (lookup_field): Use BASELINK, not TREE_LIST.
3121         (lookup_fnfiels): Likewise.
3122         (setup_class_bindings): Likewise.
3123         * semantics.c (finish_object_call_expr): Do not use
3124         build_method_call when we already know what function is being
3125         called.
3126         * spew.c (identifier_type): Use BASELINK, not TREE_LIST.
3127         * tree.c (really_overloaded_fn): Use OVL_CHAIN for OVERLOADs, not
3128         TREE_CHAIN.
3129         (name_p): New function.
3130         * typeck.c (build_object_ref): Remove.
3131         (build_component_ref_1): Likewise.
3132         (build_x_component_ref): Likewise.
3133         (build_class_member_access_expr): New function.
3134         (finish_class_member_access_expr): Likewise.
3135         (build_ptrmemfunc_access_expr): Likewise.
3136         (get_member_function_from_ptrfunc): Use
3137         build_ptrmemfunc_access_expr.
3138         (build_binary_op): Likewise.
3139         (build_unary_op): Likewise.
3140         (build_ptrmemfunc): Likewise.
3141         (pfn_from_ptrmemfunc): Likewise.
3142         * typeck2.c (build_m_component_ref): Adjust comment.
3143
3144 2002-08-07  Neil Booth  <neil@daikokuya.co.uk>
3145
3146         * Make-lang.in (CXX_C_OBJS): Update.
3147         * cp-lang.c (LANG_HOOKS_DECODE_OPTION): Use c_common_decode_option.
3148         * cp-tree.h (cxx_decode_option): Remove.
3149         * decl2.c (compare_options, lang_f_options, unsupported_options,
3150         cxx_decode_option): Remove.
3151
3152 2002-08-06  Gabriel Dos Reis  <gdr@nerim.net>
3153
3154         * typeck.c (build_x_unary_op): Handle pointer-to-member.
3155
3156 2002-08-05  Geoffrey Keating  <geoffk@redhat.com>
3157
3158         * class.c: Don't include obstack.h.
3159         (popclass):
3160         * decl2.c: Delete bogus comment.
3161         * error.c: Don't include obstack.h.
3162         * except.c: Likewise.
3163         (dump_type): Correct comment.
3164         * method.c: Don't include obstack.h.
3165         * tree.c: Likewise.
3166
3167 2002-08-04  Gabriel Dos Reis  <gdr@nerim.net>
3168
3169         Fix PR/2213
3170         * cvt.c (cp_convert_to_pointer): Reject conversions from integral
3171         expressions to pointer-to-data-member of pointer-to-member-functions.
3172
3173 2002-08-04  Geoffrey Keating  <geoffk@redhat.com>
3174
3175         * cvt.c (ocp_convert): Delete obsolete code.
3176         * parse.y (permanent_obstack): Delete declaration.
3177         * pt.c (permanent_obstack): Delete declaration.
3178         * repo.c (permanent_obstack): Delete declaration.
3179         (open_repo_file): Use xmalloc instead of permanent_obstack.
3180         (init_repo): Use xstrdup instead of permanent_obstack.
3181
3182 2002-08-04  Nathan Sidwell  <nathan@codesourcery.com>
3183
3184         * cp-tree.h (VF_DERIVED_VALUE): Remove.
3185         * class.c (finish_struct_1): Use VF_BINFO_VALUE not VF_DERIVED_VALUE.
3186
3187 2002-08-03  Nathan Sidwell  <nathan@codesourcery.com>
3188
3189         PR 7470.
3190         C++ ABI change - vfunc ordering.
3191         * class.c (add_virtual_function): Remove.
3192         (dfs_modify_all_vtables): Take list of all declared
3193         virtuals. Assign all that are not in primary base.
3194         (check_for_override): Adjust comments.
3195         (create_vtable_ptr): Take single list of virtuals. Build chain
3196         of declared virtuals here.
3197         (layout_class_type): Take single list of virtuals. Adjust.
3198         (finish_struct_1): Keep virtuals on single list. Adjust.
3199
3200 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
3201
3202         * init.c (build_member_call): Use build_new_method_call, not
3203         build_method_call.
3204
3205 2002-08-02  Krister Walfridsson  <cato@df.lth.se>
3206
3207         * Make-lang.in (spew.o, lex.o, pt.o): Add path to parse.h dependencies.
3208
3209 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
3210
3211         * call.c (build_method_call): Issue a more helpful error message
3212         about ambiguous method names.
3213
3214 2002-08-02  Nathan Sidwell  <nathan@codesourcery.com>
3215
3216         * tree.c (build_shared_int_cst): Make cache file scope, and
3217         GTY it.
3218
3219 2002-08-02  Jason Merrill  <jason@redhat.com>
3220
3221         * cp-lang.c (LANG_HOOKS_EXPR_SIZE): Define.
3222         (cp_expr_size): New fn.
3223         * call.c (build_over_call): Lose empty class hackery.
3224         (convert_arg_to_ellipsis): Promote non-POD warning to error.
3225         * typeck.c (build_modify_expr): Don't use save_expr on an lvalue.
3226
3227         * semantics.c (expand_body): Do tree optimization in the function
3228         context, too.
3229
3230 2002-08-01  Neil Booth  <neil@daikokuya.co.uk>
3231
3232         * cp-tree.h: Move all warning and flag declarations to c-common.h.
3233         * decl.c: Move all warning and flag variables to c-common.c.
3234         * decl2.c: Move all warning and flag variables to c-common.c.
3235         * lex.c (flag_digraphs): Remove.
3236         (warn_traditional): Now in c-common.c.
3237
3238 2002-07-31  Mark Mitchell  <mark@codesourcery.com>
3239
3240         * call.c (build_field_call): Do not look up the field by name.
3241         (build_method_call): Simplify.
3242         (struct z_candidate): Add access_path and conversion_path.  Remove
3243         basetype_path.
3244         (convert_class_to_reference): Adjust use of
3245         add_function_candidate.
3246         (add_candidate): Add conversion_path argument.
3247         (add_function_candidate): Use it.
3248         (add_conv_dndidate): Likewise.
3249         (build_builtin_candidate): Likewise.
3250         (add_template_candidate_real): Add conversion_path argument.
3251         (add_template_conv_candidate): Likewise.
3252         (add_template_candidate): Likewise.
3253         (build_user_type_conversion_1): Use it.
3254         (build_new_function_call): Remove name lookup code.  Adjust use of
3255         add_template_candidate and add_function_candidate.
3256         (build_new_op): Likewise.
3257         (convert_like_real): Use build_special_member_call.
3258         (build_over_call): Use cand->conversion_path.
3259         (build_special_member_call): New method.
3260         (build_new_method_call): Remove name lookup code.
3261         * cp-tree.def (OFFSET_REF): Update documentation.
3262         (TEMPLATE_ID_EXPR): Likewise.
3263         * cp-tree.h (BASELINK_ACCESS_BINFO): New macro.
3264         (BASELINK_OPTYPE): Likewise.
3265         (build_new_method_call): Adjust prototype.
3266         (build_special_member_call): New method.
3267         (build_baselink): New method.
3268         (build_offset_ref_call_from_tree): Likewise.
3269         (build_call_from_tree): Likewise.
3270         (finish_qualified_call_expr): Remove.
3271         (finish_call_expr): Adjust prototype.
3272         (build_x_function_call): Remove.
3273         * cvt.c (ocp_convert): Use build_special_member_call.
3274         * decl2.c (reparse_absdcl_as_expr): Use finish_call_expr.
3275         (build_expr_from_tree): Adjust handling for TEMPLATE_ID_EXPR and
3276         CALL_EXPR.
3277         (build_offset_ref_call_from_tree): New function.
3278         (build_call_from_tree): Likewise.
3279         * init.c (expand_cleanup): Use build_special_member_call.
3280         (expand_default_init): Likewise.
3281         (build_member_call): Use finish_call_expr.
3282         (build_new_1): Use build_special_member_call.
3283         (push_base_cleanups): Likewise.
3284         * method.c (do_build_assign_ref): Likewise.
3285         * parse.y (template_id): Do not pass a COMPONENT_REF to
3286         lookup_template_function.
3287         (primary): Use parse_finish_call_epxr, not finish_call_expr.
3288         (parse_finish_call_expr): New function.
3289         * pt.c (lookup_template_function): Add assertions.
3290         * search.c (lookup_base): Allow T to be a binfo.
3291         (build_baselink): New function.
3292         (lookup_member): Use it.
3293         * semantics.c (finish_call_expr): Do not do name lookup.
3294         (finish_object_call_expr): Remove #if 0'd code.
3295         (finish_qualified_call_expr): Remove.
3296         * typeck.c (build_x_function_call): Remove.
3297         (build_static_case): Use build_special_member_call.
3298         * typeck2.c (build_functional_cast): Likewise.
3299
3300 2002-07-30  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
3301
3302         * lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c.
3303
3304 2002-07-30  Gabriel Dos Reis  <gdr@nerim.net>
3305
3306         * cp-tree.h (VF_DERIVED_VALUE): Restore from previous deletion.
3307
3308 2002-07-30  Nathan Sidwell  <nathan@codesourcery.com>
3309
3310         * cp-tree.h (CLASSTYPE_VFIELDS, VF_*, BV_*): Add more
3311         documentation.
3312
3313 2002-07-29  Alan Modra  <amodra@bigpond.net.au>
3314
3315         * cp-tree.h: Comment typo fix.
3316
3317 2002-07-29  Richard Earnshaw  <rearnsha@arm.com>
3318
3319         * spew.c (space_for_token): Allocate zeroed memory for a new token
3320         chunk.
3321
3322 2002-07-27  Roger Sayle  <roger@eyesopen.com>
3323
3324         * decl.c (builtin_function_1): No need to explicitly mark
3325         BUILT_IN_RETURN and BUILT_IN_EH_RETURN as noreturn.
3326
3327 2002-07-27  Roger Sayle  <roger@eyesopen.com>
3328
3329         * decl2.c (cxx_decode_option): Support -fno-builtin-foo.
3330
3331 2002-07-26  Jason Merrill  <jason@redhat.com>
3332
3333         * call.c (build_over_call): Likewise.
3334         (cp_convert_parm_for_inlining): New fn.
3335         (convert_for_arg_passing): New fn.
3336         (convert_default_arg, build_over_call): Use it.
3337         (type_passed_as): New fn.
3338         * pt.c (tsubst_decl): Use it.
3339         * decl2.c (cp_build_parm_decl): New fn.
3340         (build_artificial_parm): Use it.
3341         (start_static_storage_duration_function): Likewise.
3342         * decl.c (start_cleanup_fn, grokdeclarater): Likewise.
3343         (grokparms): Don't mess with DECL_ARG_TYPE.
3344         * typeck.c (convert_arguments): Use convert_for_arg_passing.
3345         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
3346         Define.
3347         * cp-tree.h: Declare new fns.
3348
3349 2002-07-26  Neil Booth  <neil@daikokuya.co.uk>
3350
3351         * cp-tree.h (flag_operator_names): Remove.
3352         * decl2.c (flag_operator_names): Remove.
3353         (lang_f_options): Remove operator-names.
3354         * lex.c (D_OPNAME): Remove.
3355         (reswords): Remove operator names.
3356         (rid_to_yy): Remove operator names.
3357         (init_reswords): No need to handle D_OPNAME.
3358         * spew.c (read_process_identifier): There are no operator
3359         names.
3360
3361 2002-07-26  Jason Merrill  <jason@redhat.com>
3362
3363         * dump.c (cp_dump_tree): Call c_dump_tree.
3364         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
3365
3366 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
3367
3368         * error.c (print_whitespace): Remove.
3369         * g++spec.c (LIBUNWIND): Move.
3370         * mangle.c (mangled_position, write_signed_number): Remove.
3371
3372 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
3373
3374         * decl2.c (cxx_decode_option): Similarly.
3375
3376 2002-07-25  Gabriel Dos Reis  <gdr@nerim.net>
3377
3378         * cp-tree.h (cxx_sizeof_nowarn): Now a macro.
3379         (cxx_sizeof_or_alignof_type): Take a third argument.
3380         (cxx_sizeof): Adjust definition.
3381         (cxx_alignof): Likewise.
3382         * init.c (build_delete): Use cxx_sizeof_nowarn to reflect reality.
3383         * typeck.c (cxx_sizeof_or_alignof_type): Take a third argument for
3384         complaining.
3385         (c_sizeof_nowarn): Remove definition.
3386         (build_unary_op): Use cxx_sizeof_nowarn.
3387
3388 2002-07-24  Geoffrey Keating  <geoffk@redhat.com>
3389
3390         * tree.c (cp_build_qualified_type_real): When copying
3391         pointer-to-method types, unshare the record that holds
3392         the cached pointer-to-member-function type.
3393
3394 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
3395
3396         * cp-tree.h (FILE_FUNCTION_PREFIX_LEN): Remove.
3397
3398 2002-07-23  Gabriel Dos Reis  <gdr@nerim.net>
3399
3400         Fix PR/7363:
3401         * typeck.c (cxx_sizeof_or_alignof_type): New function.
3402         (c_sizeof): Remove definition.
3403         (expr_sizeof): Use cxx_sizeof.
3404         * decl2.c (build_expr_from_tree): Use cxx_sizeof_or_alignof_type.
3405         * decl.c (finish_destructor_body): Use cxx_sizeof.
3406         * semantics.c (finish_alignof): Likewise.
3407         (finish_alignof): Use cxx_alignof.
3408         * cp-tree.h (cxx_sizeof, cxx_alignof): New macros.
3409         (cxx_sizeof_or_alignof_type): Declare.
3410         (my_friendly_assert): Move to ../c-common.h.
3411
3412 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
3413
3414         * class.c, method.c, pt.c, search.c: Don't define obstack macros.
3415
3416 2002-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3417
3418         PR c++/7347, c++/7348
3419         * cp-tree.h (tsubst_flags_t): Add tf_parsing.
3420         * decl.c (make_typename_type): Use it.
3421         (make_unbound_class_template): Likewise.
3422         (lookup_name_real): Don't call type_access_control if scope is
3423         template parameter dependent.
3424         * parse.y (template_arg): Call make_unbound_class_template with
3425         tf_parsing set.
3426         (nest_name_specifier): Call make_typename_type with tf_parsing set.
3427         (typename_sub0): Likewise.
3428         (typename_sub1): Likewise.
3429         (instantiate_decl): Push class scope.
3430         * pt.c (regenerate_decl_from_template): Call pushclass and popclass
3431         for both static variable and member function template.
3432         (instantiate_decl) Call pushclass and popclass when tsubst'ing type
3433         and arguments.
3434         * search.c (type_access_control): Do type access for TEMPLATE_DECL
3435         too.
3436
3437 2002-07-20  Roger Sayle  <roger@eyesopen.com>
3438
3439         * decl2.c (cxx_decode_option): Simplify -fhandle-exceptions
3440         test by using positive_option.  Make whitespace consistent.
3441
3442 2002-07-20  Gabriel Dos Reis  <gdr@nerim.net>
3443
3444         * spew.c (struct unparsed_test): Replace 'filename' and 'lineno'
3445         members with 'locus'.  Adjust use throughout.
3446         (struct feed):  Likewise.
3447         (alloc_unparsed_test): Change prototype, take a 'const location_t *'.
3448         Adjust use.
3449         (snarf_defarg): Use error(), not error_with_file_and_line().
3450
3451 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
3452
3453         * lang-specs.h (@c++): Include "%2" (cc1plus_spec) wherever
3454         cpp_options is included.
3455
3456 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3457
3458         PR c++/2862, c++/2863
3459         * pt.c (determine_specialization): Compare the length of
3460         TYPE_ARG_TYPES.  Tidy.
3461
3462 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3463
3464         PR c++/3797
3465         * decl.c (duplicate_decls): Don't propagate inlining parameters from
3466         olddecl to newdecl when newdecl is a specialization of the
3467         instantiation olddecl.
3468
3469 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3470
3471         PR c++/4802, c++/5387
3472         * decl.c (make_typename_type): Use enforce_access.
3473
3474 2002-07-17  Scott Snyder <snyder@fnal.gov>
3475
3476         PR c++/7320
3477         * rtti.c (get_tinfo_decl): Set DECL_COMDAT.
3478
3479 2002-07-12  Mark Mitchell  <mark@codesourcery.com>
3480
3481         * class.c (add_method): Correct handling of conversion operators.
3482
3483 2002-07-11  Mark Mitchell  <mark@codesourcery.com>
3484
3485         PR c++/7224
3486         * class.c (add_method): Simplify.
3487
3488 2002-07-11  Jason Merrill  <jason@redhat.com>
3489
3490         PR c++/7279
3491         * tree.c (cp_copy_res_decl_for_inlining): Also copy
3492         TREE_ADDRESSABLE.
3493
3494 2002-07-10  Graham Stott  <graham.stott@btinternet.com>
3495
3496         * pt.c (template_parm_this_level_p, push_template_decl_real):
3497         Pass depth as int pointer.
3498
3499 2002-07-11  Tim Josling  <tej@melbpc.org.au>
3500
3501         Remove front end hard coding from gengtype.c.
3502
3503         * config-lang.in (gtfiles): Add files needed for this front end.
3504
3505 2002-07-10  Mark Mitchell  <mark@codesourcery.com>
3506
3507         * cp-tree.h (unqualified_name_lookup_error): Declare it.
3508         (begin_function_definition): Adjust prototype.
3509         * lex.c (unqualified_name_lookup_error): New function, split out
3510         from ...
3511         (do_identifier): ... here.
3512         * parse.y (parse_begin_function_definition): New function.
3513         (fn.def1): Use it.
3514         * semantics.c (begin_function_definition): Accept decl-specifiers
3515         and attributes as separate parameters.
3516
3517 2002-07-10  Jason Merrill  <jason@redhat.com>
3518
3519         PR c++/6255
3520         * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
3521         modifying the old one.
3522
3523 2002-07-09  Mark Mitchell  <mark@codesourcery.com>
3524
3525         * cp-tree.h (constructor_name_p): Declare it.
3526         (check_template_template_default_arg): Likewise.
3527         * class.c (handle_using_decl): Use constructor_name_p.
3528         * decl.c (grokdeclarator): Likewise.
3529         * decl2.c (constructor_name_p): Define it.
3530         * init.c (build_member_call): Use constructor_name_p.
3531         * parse.y (template_parm): Use check_template_template_default_arg.
3532         * pt.c (check_explicit_specialization): Use constructor_name_p.
3533         * semantics.c (check_template_template_default_arg): New function.
3534
3535 2002-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3536
3537         * pt.c (can_complete_type_without_circularity): Add static to
3538         function definition.
3539
3540 2002-07-08  Mark Mitchell  <mark@codesourcery.com>
3541
3542         * cp-tree.h (have_extern_spec): Declare it
3543         * decl.c (have_extern_spec): Define it.
3544         (start_decl): Eliminate use of used_extern_spec.
3545         (start_function): Likewise.
3546         * parse.y (have_extern_spec): Remove declaration.
3547         (used_extern_spec): Likewise.
3548         (frob_specs): Eliminate use of used_extern_spec.
3549         (.hush_warning): Likewise.
3550
3551 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
3552
3553         * Make-lang.in (cp/parse.o): Depend on decl.h.
3554         * cp-tree.h (do_decl_instantiation): Change prototype.
3555         * parse.y: Include decl.h.
3556         (parse_decl_instantiation): New function.
3557         (explicit_instantiation): Use it.
3558         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
3559         and DECLSPECS.
3560
3561 2002-07-07  Roger Sayle  <roger@eyesopen.com>
3562
3563         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
3564         constructor and destructor tests when passed a TEMPLATE_DECL.
3565
3566 2002-07-05  Jason Merrill  <jason@redhat.com>
3567
3568         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
3569         pointers.
3570
3571         PR optimization/7145
3572         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
3573
3574 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
3575
3576         Repair damage on weak-impared targets caused by my previous patch.
3577         * cp-tree.h (import_export_tinfo): Add parameter.
3578         * decl2.c (import_export_tinfo): Add parameter, post adjust
3579         DECL_COMDAT.
3580         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
3581         import_export_tinfo.
3582
3583 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3584
3585         PR c++/6944
3586         * init.c (build_aggr_init): Remove qualifiers of init before calling
3587         build_vec_init.
3588         (build_vec_init): Flatten multi-dimensional array during cleanup.
3589         (build_vec_delete_1): Abort if the type of each element is array.
3590
3591 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
3592
3593         * pt.c (instantiate_class_template): Fix typo.
3594
3595 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3596
3597         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
3598         by CVS conflict in my last patch.
3599
3600 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3601
3602         PR c++/6716
3603         * pt.c (can_complete_type_without_circularity): New function.
3604         (instantiate_class_template): Use it.
3605         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
3606         message due to incomplete fields.
3607
3608 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
3609
3610         PR c++/7112
3611         * mangle.c (write_expression): Add mangling for sizeof when
3612         applied to a type.
3613         * operators.def: Remove stale comment.
3614
3615 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
3616
3617         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
3618         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
3619         (tinfo_decl_type): Replace with ...
3620         (type_info_ptr_type): ... this.
3621         (import_export_tinfo): Declare.
3622         (tinfo_decl_p): Rename to ...
3623         (unemitted_tinfo_decl_p): ... this.
3624         * decl2.c (import_export_decl): Break out tinfo handling into ...
3625         (import_export_tinfo): ... here. New function.
3626         (finish_file): Adjust.
3627         * rtti.c (TINFO_REAL_NAME): New macro.
3628         (init_rtti_processing): Create the tinfo types.
3629         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
3630         (get_tinfo_decl): Adjust.
3631         (get_tinfo_ptr): New function.
3632         (get_type_id): Use it.
3633         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
3634         (ptr_initializer): Use get_tinfo_ptr.
3635         (ptm_initializer): Likewise.
3636         (synthesize_tinfo_var): Break into ...
3637         (get_pseudo_ti_init): ... this. Just create the initializer.
3638         (get_pseudo_ti_desc): .. and this.
3639         (create_real_tinfo_var): Remove.
3640         (create_pseudo_type_info): Don't create the vtable decl here.
3641         (get_vmi_pseudo_type_info): Remove.
3642         (create_tinfo_types): Adjust.
3643         (tinfo_decl_p): Rename to ...
3644         (unemitted_tinfo_decl_p): ... here. Adjust.
3645         (emit_tinfo_decl): Adjust. Create the initializer.
3646
3647 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
3648
3649         PR c++/6695
3650         * pt.c (tsubst_friend_class): Substitute into the context of the
3651         friend before using it.
3652
3653 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
3654
3655         * cp-tree.h (xref_tag): Change prototype.
3656         (handle_class_head): Likewise.
3657         (build_x_component_ref): Likewise.
3658         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
3659         (xref_tag): Take attributes as a separate parameter.
3660         (xref_tag_from_type): Adjust call to xref_tag.
3661         * decl2.c (build_expr_from_tree): Adjust call to
3662         build_x_component_ref.
3663         (handle_class_head): Take attributes as a separate parameter.
3664         * parse.y (parse_xref_tag): New function.
3665         (parse_handle_class_head): Likewise.
3666         (primary): Use parse_xref_tag.
3667         (class_head_decl): Use parse_handle_class_head.
3668         (class_head_defn): Likewise.
3669         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
3670         (build_dynamic_cast_1): Likewise.
3671         (create_pseudo_type_info): Likewise.
3672         (emit_support_tinfos): Likewise.
3673         * typeck.c (build_object_ref): Adjust call to
3674         build_x_component_ref.
3675         (build_x_component_ref): Remove protect parameter.
3676
3677 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
3678
3679         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
3680         * class.c (handle_using_decl): Likewise.
3681         (instantiate_type): Likewise.
3682         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
3683         (xref_basetypes): Change prototype.
3684         (begin_mem_initializers): New function.
3685         (get_overloaded_fn): Likewise.
3686         * decl.c (xref_basetypes): Simplify.
3687         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
3688         * init.c (build_offset_ref): Likewise.
3689         * parse.y (base_init): Use begin_mem_initializers().
3690         (structsp): Adjust call to xref_basetypes.
3691         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
3692         (instantiate_class_template): Adjust call to xref_basetypes.
3693         * semantics.c (begin_mem_initializers): New function.
3694         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
3695         (really_overlaoded_fn): Likewise.
3696         (get_overloaded_fn): New function.'
3697         (get_first_fn): USe BASELINK_FUNCTIONS.
3698
3699 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
3700
3701         * cp-tree.h (SCALAR_TYPE_P): New macro.
3702         (check_for_out_of_scope_variable): New function.
3703         (at_class_scope_p): Likewise.
3704         (finish_fname): Likewise.
3705         * class.c (finish_struct): Use at_function_scope_p.
3706         * decl.c (check_for_out_of_scope_variable): New function, split
3707         out from do_identifier.
3708         (finish_enum): Use at_function_scope_p.
3709         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
3710         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
3711         (primary): Use at_function_scope_p.
3712         * search.c (at_class_scope_p): New function.
3713         * semantics.c (finish_fname): Likewise.
3714         (check_multiple_declarators): Use at_function_scope_p.
3715
3716 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
3717
3718         * parse.y (parse_scoped_id): New function.
3719         (primary): Use it.
3720         * cp-tree.h (do_scoped_id): Adjust declaration.
3721         * lex.c (do_scoped_id): Remove call to yylex.
3722         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
3723         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
3724         expanding it inline.
3725
3726 2002-06-23  Matt Thomas  <matt@3am-software.com>
3727
3728         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
3729         "#if VMS_TARGET".
3730
3731 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3732
3733         * mangle.c (integer_type_codes): Const-ify.
3734
3735 2002-06-20  Richard Henderson  <rth@redhat.com>
3736
3737         PR c++/6747
3738         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
3739         Call put_var_into_stack.
3740
3741 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3742
3743         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
3744         array size calculation.
3745
3746 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3747
3748         PR c++/6892
3749         * pt.c (tsubst_expr): Handle FILE_STMT.
3750
3751 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3752
3753         PR c++/6723
3754         * pt.c (lookup_template_class): Don't build complete argument of
3755         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
3756         argument.
3757
3758 2002-06-19  Akim Demaille  <akim@epita.fr>
3759
3760         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
3761         decl.h's TYPENAME.
3762         * spew.c, lex.c: Adjust.
3763         * parse.y (explicit_instantiation): Add empty action to override
3764         the default $$ = $1 where it introduces a type clash.
3765
3766 2002-06-14  Jason Merrill  <jason@redhat.com>
3767
3768         * semantics.c (begin_for_stmt): Push the 'for' scope before
3769         adding the FOR_STMT.
3770
3771         C++ ABI changes.
3772         * class.c (build_base_field): Set DECL_PACKED.
3773         (layout_class_type): Don't use tail padding of PODs.
3774         * mangle.c (write_unqualified_name): Fix template conversion op
3775         mangling.
3776
3777 2002-06-16  Richard Henderson  <rth@redhat.com>
3778
3779         PR opt/6793
3780         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
3781         after template instantiation.
3782
3783 2002-06-16  Richard Henderson  <rth@redhat.com>
3784
3785         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
3786
3787 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
3788
3789         * cp-tree.h (compiler_error): Remove declaration.
3790         * lex.c (compiler_error): Remove definition.
3791
3792 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
3793
3794         * g++spec.c (LIBUNWIND): New.
3795         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
3796
3797 2002-06-13  Jessica Han  <jessica@cup.hp.com>
3798
3799         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
3800         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
3801         (build_vbase_offset_vtbl_entries): Likewise.
3802         * rtti.c (build_headof): Likewise.
3803         (get_tinfo_decl_dynamic): Likewise.
3804         (create_pseudo_type_info): Likewise.
3805
3806 2002-06-12  Stan Shebs  <shebs@apple.com>
3807
3808         * mpw-config.in: Remove file, no longer used.
3809         * mpw-make.sed: Ditto.
3810
3811 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
3812
3813         * decl2.c: Update call to cpp_handle_option.
3814
3815 2002-06-07  H.J. Lu  (hjl@gnu.org)
3816
3817         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
3818
3819 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
3820
3821         * error.c (cp_error_at): Fix typo.
3822
3823 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
3824
3825         * error.c (cp_diagnostic_starter): Adjust call.
3826         (maybe_print_instantiation_context): Change prototype to take a
3827         'diagnostic_info *'.
3828         (print_instantiation_full_context): Likewise.
3829         (print_instantiation_partial_context): Likewise.
3830         (cp_diagnostic_starter): Likewise.
3831         (cp_diagnostic_finalizer): Likewise.
3832         (cp_print_error_function): Likewise.
3833         (cp_printer): Take a secondary parameter as a 'text_info *'.
3834         Remove output_state savings.  Adjust calls.
3835
3836 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
3837
3838         * pt.c (inline_parm_levels): Mark for GC.
3839
3840         * mangle.c (start_mangling): Allocate G.substitutions here...
3841         (init_mangle): ... rather than here.
3842         (finish_mangling): Clear the varray pointer when done with it.
3843         * spew.c (yylexstring): Don't use VARRAY_FREE.
3844         * search.c (bfs_walk): Don't use VARRAY_FREE.
3845         * decl2.c (pending_statics): Use gengtype to mark.
3846         (deferred_fns): Likewise.
3847         (ssdf_decls): Likewise.
3848         (init_decl2): Delete.
3849         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
3850         (cxx_init_decl_processing): Don't call init_decl2.
3851         (cxx_pop_function_context): Don't use VARRAY_FREE.
3852         * cp-tree.h (struct saved_scope): No need for special marking
3853         of varrays.
3854         (struct language_function): Likewise.
3855         (local_classes): Use gengtype to mark.
3856         (init_decl2): Delete prototype.
3857         * class.c (init_class_processing): Don't use
3858         ggc_add_tree_varray_root.
3859         (build_vtbl_initializer): Don't use VARRAY_FREE.
3860
3861         * decl.c (typename_compare): Don't use same_type_p.
3862
3863         * decl.c: Include hashtab.h instead of hash.h.
3864         (typename_hash): Update to use htab_h.
3865         (typename_compare): Likewise.
3866         (typename_htab): Use gengtype to mark.
3867         (build_typename_type): Update to use htab_h.
3868         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
3869
3870         * Make-lang.in (gt-cp-tree.h): New rule.
3871         (cp/tree.o): Depend on gt-cp-tree.h.
3872         * config-lang.in (gtfiles): Add cp/tree.c.
3873         * tree.c: Include gt-cp-tree.h.
3874         (list_hash_table): Use gengtype to mark.
3875         (init_tree): Use gengtype to mark trees.
3876
3877         * Make-lang.in (cp/decl.o): Add debug.h dependency.
3878         * call.c (struct z_candidate): Use gengtype.
3879         (USER_CONV_CAND): Use WRAPPER_ZC.
3880         (convert_class_to_reference): Use build_zc_wrapper.
3881         (build_type_conversion_1): Likewise.
3882         (build_over_call): Use WRAPPER_ZC.
3883         (add_warning): Use build_zc_wrapper.
3884         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
3885         * cp-tree.h (struct lang_identifier): Use gengtype.
3886         (struct template_parm_index_s): Likewise.
3887         (struct ptrmem_cst): Likewise.
3888         (struct tree_binding): Likewise.
3889         (struct tree_overload): Likewise.
3890         (struct tree_srcloc): Likewise.
3891         (struct tree_wrapper): Likewise.  Also modify to have a pointer
3892         to struct z_candidate rather than void.
3893         (enum cp_tree_node_structure_enum): New.
3894         (union lang_tree_node): New.
3895         (cxx_mark_tree): Delete prototype.
3896         (cp_tree_node_structure): New prototype.
3897         (build_ptr_wrapper): Delete prototype.
3898         (build_int_wrapper): Delete prototype.
3899         (build_zc_wrapper): New prototype.
3900         * decl.c: Include debug.h
3901         (cxx_mark_tree): Delete.
3902         (cp_tree_node_structure): New.
3903         * tree.c (build_ptr_wrapper): Delete.
3904         (build_int_wrapper): Delete.
3905         (build_zc_wrapper): New.
3906
3907         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
3908         Correct typo.  Patch from k_fukui@highway.ne.jp.
3909
3910         * semantics.c (current_stmt_tree): Update for change to
3911         struct language_function.
3912         (finish_mem_initializers): Likewise.
3913         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
3914         * cp-tree.h (struct language_function): Rename from
3915         cp_language_function.  Change all uses.
3916         (cp_function_chain): Don't need to cast.
3917
3918         * class.c (duplicate_tag_error): Reset discriminator.
3919         (check_bases_and_members): Update for data structure changes.
3920         * cp-tree.h (struct lang_id2): Use gengtype.
3921         (flagged_type_tree): Likewise.
3922         (SET_LANG_ID): Use GGC on struct lang_id2.
3923         (struct cp_language_function): Use gengtype.  Remove field
3924         'x_vcalls_possible_p'.
3925         (current_vcalls_possible_p): Delete.
3926         (struct lang_type_header): New.
3927         (struct lang_type_class): Rename from struct lang_type.  Include
3928         struct lang_type_header.
3929         (struct lang_type_ptrmem): New.
3930         (struct lang_type): New.
3931         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
3932         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
3933         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
3934         (struct lang_decl_flags): Use gengtype.  Add discriminators.
3935         (struct lang_decl): Use gengtype.  Add and use discriminators.
3936         Update the macros that reference moved fields.
3937         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
3938         (SET_DECL_THUNK_P): Set discriminator too.
3939         (clear_inline_text_obstack): Delete prototype.
3940         (finish_inline_definitions): Delete prototype.
3941         (mark_pending_inlines): Delete prototype.
3942         (lang_check_failed): New prototype.
3943         * decl.c (struct named_label_use_list): Use gengtype.
3944         (struct named_label_list): Likewise.
3945         (mark_binding_level): Delete.
3946         (mark_named_label_lists): Delete.
3947         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
3948         (cxx_init_decl_processing): Use generated marker routine.
3949         (begin_destructor_body): Delete dead set to
3950         current_vcalls_possible_p.
3951         (mark_lang_function): Delete.
3952         (mark_cp_function_context): Delete.
3953         (lang_mark_tree): Use generated marker routines.
3954         * decl2.c (start_objects): Set discriminator when setting
3955         GLOBAL_INIT_PRIORITY.
3956         * lex.c (retrofit_lang_decl): Set discriminators.
3957         (copy_lang_type): Update for changes to lang_type structure.
3958         (cp_make_lang_type): Set discriminator.
3959         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
3960         * search.c: Include ggc.h.
3961         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
3962         (finish_inline_definitions): Delete.
3963         * spew.c (struct token): Use gengtype.
3964         (struct token_chunk): New.
3965         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
3966         (struct feed): Use gengtype.
3967         (feed_obstack): Delete.
3968         (feed): Mark as GC root.
3969         (pending_inlines): Mark as GC root.
3970         (pending_inlines_tail): Likewise.
3971         (processing_these_inlines): Likewise.
3972         (token_obstack): Make static.
3973         (first_token): Likewise.
3974         (init_spew): Don't initialize deleted things; use gengtype for roots.
3975         (clear_inline_text_obstack): Delete.
3976         (feed_input): Use GC for struct feed.  Update for changes to
3977         struct unparsed_text.
3978         (mark_pending_inlines): Delete.
3979         (next_token): Rename from add_token.  Change all callers.  Update
3980         for changes to struct unparsed_text.
3981         (space_for_token): New.
3982         (remove_last_token): New.
3983         (alloc_unparsed_text): New.
3984         (snarf_block): Take an unparsed_text.  Update for changes to struct
3985         unparsed_text.
3986         (snarf_method): Update for changes to struct unparsed_text.
3987         (snarf_defarg): Update for changes to struct unparsed_text.
3988         * tree.c (lang_check_failed): New.
3989
3990         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
3991         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
3992         (cp/spew.o): Add dependency on gt-<filename>.h.
3993         (cp/decl2.o): Add dependency on gt-<filename>.h.
3994         (cp/call.o): Add dependency on gt-<filename>.h.
3995         (cp/pt.o): Add dependency on gt-<filename>.h.
3996         (cp/repo.o): Add dependency on gt-<filename>.h.
3997         (cp/parse.o): Add dependency on gt-<filename>.h.
3998         * call.c: Use gengtype for roots.
3999         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
4000         decl2.c parse.y pt.c repo.c spew.c.
4001         * cp-tree.h: Use gengtype for roots.
4002         (struct saved_scope): Use GGC, gengtype.
4003         (cp_parse_init): Delete prototype.
4004         (init_pt): Delete prototype.
4005         * decl.c: Use gengtype for roots.
4006         (mark_saved_scope): Delete.
4007         (cxx_init_decl_processing): Don't call deleted initilisation
4008         routines.
4009         (signed_size_zero_node): Delete, unused.
4010         * decl.h: Use gengtype for roots.
4011         * decl2.c: Use gengtype for roots.
4012         * lex.h: Use gengtype for roots.
4013         * parse.y: Use gengtype for roots.
4014         (cp_parse_init): Delete.
4015         * pt.c: Use gengtype for roots.
4016         (init_pt): Delete.
4017         * repo.c: Use gengtype for roots.
4018         * spew.c: Use gengtype for roots.
4019
4020         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
4021         (cp/decl.o): Add dependency on gtype-cp.h.
4022         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
4023         Include gtype-cp.h.  Allow for filename changes.
4024
4025         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
4026         (cp/decl.o): Add cp/gt-decl.h dependency.
4027         * config-lang.in (gtfiles): New.
4028         * tree.h: Rename struct binding_level to struct cp_binding_level.
4029         * decl.c: Rename struct binding_level to struct cp_binding_level.
4030         Include cp/gt-decl.h.
4031         (struct cp_binding_level): Use gengtype.
4032         (make_binding_level): Use GGC on struct cp_binding_level.
4033         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
4034         (cxx_init_decl_processing): Mark free_binding_level as
4035         deletable.
4036
4037         * decl.c (mark_cp_function_context): Update calling sequence.
4038
4039         * decl.c (start_function): Don't free 'struct
4040         cp_language_function'.
4041         (pop_cp_function_context): Likewise.
4042         (save_function_data): Allocate it using GC.
4043         * semantics.c (genrtl_start_function): Don't free 'struct
4044         cp_language_function'.
4045
4046 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
4047
4048         * lang-specs.h: Use cpp_debug_options.
4049
4050 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
4051
4052         * mangle.c, tree.c: Include real.h.
4053         * Make-lang.in: Update dependency lists.
4054
4055 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
4056
4057         * lex.c: Don't include c-lex.h.
4058         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
4059
4060 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
4061
4062         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
4063
4064 2002-05-22  Richard Henderson  <rth@redhat.com>
4065
4066         * decl.c (obscure_complex_init): Check for VAR_DECL
4067         before using DECL_THREAD_LOCAL.
4068
4069 2002-05-22  Richard Henderson  <rth@redhat.com>
4070
4071         * decl.c (check_tag_decl): Handle RID_THREAD.
4072         (obscure_complex_init): Reject run-time init of tls.
4073         (grokvardecl, grokdeclarator): Handle RID_THREAD.
4074         * lex.c (reswords): Add __thread.
4075         (rid_to_yy): Map RID_THREAD to SCSPEC.
4076
4077 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
4078
4079         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
4080         * cp-tree.h (cxx_post_options): Kill.
4081         * cp-lex.c (cxx_post_options): Kill.
4082
4083 2002-05-21  Richard Henderson  <rth@redhat.com>
4084
4085         * lex.c (rid_to_yy): Add RID_THREAD.
4086
4087 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
4088
4089         * init.c (build_vec_init): Test for trivial copy-assignment when
4090         copy-assigning arrays.
4091
4092 2002-05-20  Andreas Jaeger  <aj@suse.de>
4093
4094         * init.c (build_default_init): Remove unused variable.
4095
4096 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
4097
4098         * call.c (any_strictly_viable): New.
4099         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
4100
4101 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4102
4103         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
4104
4105 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4106
4107         PR c++/186, DR 259
4108         * pt.c (do_decl_instantiation): Don't complain explicit
4109         instantiation after explicit specialization.
4110         (do_type_instantiation): Likewise.
4111
4112 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
4113
4114         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
4115         renamed from...
4116         (complete_type_or_else): ... this.  Redefined as macro.
4117         (cxx_incomplete_type_diagnostic): Declare.
4118         (cxx_incomplete_type_error): Define as macro.
4119         * init.c (build_delete): Warn about incomplete types other than
4120         void, and use the built-in operator delete for them.
4121         * typeck.c (complete_type_or_diagnostic): Renamed from
4122         complete_type_or_else.  Added warn_only argument, passed to...
4123         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
4124         warnings or errors depending on new warn_only argument.  Renamed
4125         from...
4126         (cxx_incomplete_type_error): ... this.  New implementation in
4127         terms of cxx_incomplete_type_diagnostic.
4128
4129 2002-05-18  Jason Merrill  <jason@redhat.com>
4130
4131         PR c++/6611
4132         * decl2.c (import_export_decl): If we clear
4133         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
4134
4135 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4136
4137         PR c++/6620
4138         * pt.c (verify_class_unification): Don't check if PARM is template
4139         parameter dependent.  Simplify.
4140         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
4141         parameter dependent expression.
4142
4143 2002-05-14  Jason Merrill  <jason@redhat.com>
4144
4145         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
4146         Do set DECL_COMDAT.
4147         (synthesize_tinfo_var): Take the public decl.
4148         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
4149         (emit_tinfo_decl): Adjust.  Call import_export_decl.
4150         * decl2.c (import_export_decl): Simplify tinfo decl handling.
4151
4152 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
4153
4154         * cp-tree.h (struct lang_type): Added non_zero_init.
4155         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
4156         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
4157         * class.c (check_field_decls): Test non_zero_init.
4158         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
4159         zero-to-NULL conversions.
4160         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
4161         type that needs zero-initialization without zeros.
4162         (check_initializer_decl): Compute zero-initializer for types
4163         that require a non-trivial one.
4164         * init.c (build_forced_zero_init): New function.
4165         (build_default_init): Use it.
4166         * tree.c (zero_init_p): New function.
4167         * typeck2.c (force_store_init_value): New function.
4168         (process_init_constructor): Create non-trivial zero-initializers
4169         for array members and class fields.
4170
4171 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
4172
4173         * lang-specs.h: Remove redundant -lang-c++.
4174
4175 2002-05-13  Jason Merrill  <jason@redhat.com>
4176
4177         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
4178         (fixed_type_or_null): See through reference vars.
4179         (build_base_path): Vtable contents are constant.
4180         * typeck.c (get_member_function_from_ptrfunc): Likewise.
4181
4182 2002-05-12  Jason Merrill  <jason@redhat.com>
4183
4184         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
4185         structs are safe.
4186
4187 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
4188
4189         * cp-tree.h (flag_ansi): Remove.
4190         * decl2.c (flag_ansi): Remove.
4191         (cxx_decode_option): Set flag_iso and flag_undef.
4192
4193 2002-05-09  Jason Merrill  <jason@redhat.com>
4194
4195         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
4196         Use subtraction rather than a bitmask to get the index.
4197         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
4198
4199         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
4200
4201 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
4202
4203         * Make-lang.in (decl2.o): Update.
4204         * cp-tree.h (warn_multichar): Remove.
4205         * decl2.c: Include c-common.h.
4206         (warn_multichar): Remove.
4207
4208 2002-05-03  Jason Merrill  <jason@redhat.com>
4209
4210         * tree.c (build_cplus_array_type): Only const and volatile get
4211         special handling.
4212
4213         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
4214
4215 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
4216
4217         ABI change, returning simple classes from functions.
4218         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
4219         TYPE_HAS_TRIVIAL_INIT_REF is false or
4220         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
4221
4222 2002-04-30  Jason Merrill  <jason@redhat.com>
4223
4224         PR debug/6436
4225         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
4226         anonymous class with a typedef if there are attributes.
4227
4228 2002-04-29  Paul Eggert  <eggert@twinsun.com>
4229
4230         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
4231
4232 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
4233
4234         PR c++/6477
4235         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
4236         non-NULL first.
4237
4238 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
4239
4240         PR c++/6492
4241         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
4242         enter that scope before name lookup.
4243
4244         PR c++/6486
4245         * method.c (do_build_copy_constructor): Avoid building
4246         cv-qualified reference types.
4247
4248 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
4249
4250         PR c++/5719
4251         * decl.c (grok_op_properties): Assignment ops don't have to return
4252         by value. operator% should.
4253
4254 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4255
4256         PR c/6343
4257         * decl.c (duplicate_decls): Call merge_weak.
4258
4259 2002-04-26  Richard Henderson  <rth@redhat.com>
4260
4261         * parse.y (malloced_yyss, malloced_yyvs): New.
4262         (yyoverflow): Re-add.  Set them.
4263         (free_parser_stacks): New.
4264
4265 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
4266
4267         PR c++/6497
4268         * method.c (do_build_assign_ref): Pass a derivation to
4269         build_method_call when calling base class assignment operators.
4270
4271 2002-04-26  Richard Henderson  <rth@redhat.com>
4272
4273         * parse.y (yyoverflow): Revert.
4274
4275 2002-04-26  Richard Henderson  <rth@redhat.com>
4276
4277         PR c/3581
4278         * parse.y (string): Remove.  Update all uses to use STRING
4279         instead, and not call combine_strings.
4280         * rtti.c (tinfo_name): Use fix_string_type.
4281         * semantics.c (finish_asm_stmt): Don't call combine_strings.
4282         * spew.c (yylexstring): New.
4283         (read_token): Use it.
4284
4285 2002-04-25  Richard Henderson  <rth@redhat.com>
4286
4287         PR c/2161
4288         * parse.y (yyoverflow): New.
4289
4290 2002-04-25  Jason Merrill  <jason@redhat.com>
4291
4292         PR c++/5607
4293         * search.c (check_final_overrider): No longer static.
4294         * class.c (update_vtable_entry_for_fn): Call it.
4295         * cp-tree.h: Adjust.
4296
4297 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
4298
4299         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
4300         * cp-tree.h (cxx_set_yydebug): Die.
4301         * lex.c (YYDEBUG): Get from c-lex.h.
4302         (cxx_set_yydebug): Remove.
4303         * parse.y: Include c-lex.h.
4304         (YYDEBUG): Get from c-lex.h.
4305
4306 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
4307
4308         PR c++/6438.
4309         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
4310         void.
4311
4312 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
4313
4314         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
4315         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
4316         Redefine.
4317         * cp-tree.h (cp_attribute_table): Rename.
4318         * decl.c (lang_attribute_table): Remove declaration.
4319         (cxx_init_decl_processing): Don't set it.
4320         * tree.c (cp_attribute_table): Rename.
4321
4322 2002-04-24  Jason Merrill  <jason@redhat.com>
4323
4324         PR c++/6331
4325         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
4326         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
4327         The pedwarn for array assignment is now unconditional.
4328         * tree.c (build_cplus_array_type_1): Still process simple array types
4329         normally in templates.
4330
4331         PR c++/6395
4332         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
4333         stuff for comdats.
4334
4335 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
4336
4337         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
4338         node with attributes.
4339
4340 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
4341
4342         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
4343         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
4344
4345 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
4346
4347         PR c++/6256:
4348         * pt.c (tsubst_friend_class): Handle templates with explicit
4349         nested names.
4350
4351         PR c++/6331:
4352         * typeck.c (merge_types): Remember the cv-qualification of pointer
4353         types when merging them.
4354
4355 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
4356
4357         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
4358         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
4359         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
4360         cxx_mark_function_context): New.
4361         * decl.c (push_cp_function_context, pop_cp_function_context,
4362         mark_cp_function_context): Rename for consistency.
4363         (cxx_init_decl_processing): Don't set old hooks.
4364
4365 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
4366
4367         * call.c (convert_type_from_ellipsis): Rename, update.
4368         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
4369         * cp-tree.h (convert_type_from_ellipsis): Rename.
4370         * decl.c (cxx_init_decl_processing): Don't set hook.
4371
4372 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
4373
4374         * call.c (build_new_method_call): Update.
4375         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
4376         * cp-tree.h (cxx_incomplete_type_error): New.
4377         * decl.c (grokdeclarator, grokparms): Update.
4378         * decl2.c (check_classfn): Update.
4379         * pt.c (tsubst): Update.
4380         * typeck.c (complete_type_or_else, expr_sizeof,
4381         decay_conversion): Update.
4382         * typeck2.c (incomplete_type_error): Rename.
4383         (add_exception_specifier): Update.
4384
4385 2002-04-18  Jason Merrill  <jason@redhat.com>
4386
4387         PR c++/5658
4388         * search.c (setup_class_bindings): A class template qualifies as a
4389         type binding.
4390
4391 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
4392
4393         PR c++/6316
4394         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
4395         before expanding.
4396
4397 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
4398
4399         * init.c (begin_init_stmts): Remove commented out code.
4400         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
4401         * semantics.c (begin_gobal_stmt_expr): Adjust call to
4402         expand_start_stmt_expr.
4403
4404 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
4405
4406         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
4407         dso_handle itself, to __cxa_atexit.
4408
4409 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
4410
4411         * error.c (cxx_print_error_function): Adjust call to macros.
4412
4413 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
4414
4415         * class.c (layout_virtual_bases): Do all dsize computation on trees.
4416
4417 2002-04-14  Jason Merrill  <jason@redhat.com>
4418
4419         * typeck.c (get_member_function_from_ptrfunc): Don't do
4420         gratuitious division and multiplication on
4421         ptrmemfunc_vbit_in_delta targets.
4422
4423 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
4424
4425         PR c++/5373.
4426         * semantics.c (finish_expr_stmt): Remember the type of the
4427         expression before any conversions are performed.
4428
4429 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
4430
4431         PR c++/5189.
4432         * call.c (add_template_candidate_real): Do not treat member
4433         templates as copy constructors.
4434
4435 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
4436
4437         * decl.c (duplicate_decls): Do not copy the RTL for a variable
4438         declaration if the old variable had an incomplete type and the new
4439         variable does not.
4440         (complete_vars): Do not call layout_decl for completed variables.
4441
4442 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
4443
4444         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
4445         with an explicit one.
4446         (follow_tag_typedef): New.
4447         (lookup_tag): Use it to extract the tag of an explicit typedef.
4448         (xref_tag): Likewise.
4449
4450 2002-04-11  Andrew Haley  <aph@redhat.com>
4451
4452         * typeck.c (type_after_usual_arithmetic_conversions):
4453         If two types have the same variant, return immediately.
4454         When two floating-point operands are the same precision:
4455           convert to float if one of the operands is float;
4456           if neither operand is one of the standard types, return the type
4457           of the first operand.
4458
4459 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
4460
4461         PR c++/5507
4462         * decl.c (make_typename_type): Remove implicit typenameness.
4463
4464 2002-04-09  Jason Merrill  <jason@redhat.com>
4465
4466         PR optimization/6189
4467         * semantics.c (genrtl_start_function): Don't free
4468         DECL_SAVED_FUNCTION_DATA for inline functions.
4469
4470         * init.c (build_member_call): For now, don't convert to
4471         intermediate base if it would cause an error.
4472
4473 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
4474
4475         * parse.y (namespace_qualifier, maybe_identifier,
4476         begin_explicit_instantiation, end_explicit_instantiation,
4477         apparent_template_type, .finish_template_type,
4478         do_id, maybe_init, defarg_again, component_decl_1):
4479         Add ending ';', in accordance with POSIX.
4480
4481 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
4482
4483         PR c++/5571
4484         * class.c (layout_class_type): Remember incomplete static
4485         variables.
4486         (finish_struct_1): Call complete_vars, not
4487         hack_incomplete_structures.
4488         * cp-tree.h (hack_incomplete_structures): Rename to ...
4489         (complete_vars): ... this.
4490         (struct saved_scope): Remove incomplete.
4491         (namespace_scope_incomplete): Remove.
4492         * decl.c (struct binding_level): Remove incomplete.
4493         (incomplete_vars): New variable.
4494         (mark_binding_level): Don't mark incomplete.
4495         (print_binding_level): Don't print it.
4496         (mark_saved_scope): Don't mark incomplete.
4497         (pushdecl): Use maybe_register_incopmlete_var.
4498         (cxx_init_decl_processing): Register incomplete_vars for GC.
4499         (start_decl_1): Clarify error message.
4500         (hack_incomplete_vars): Remove.
4501         (maybe_register_incomplete_var): New function.
4502         (complete_vars): Likewise.
4503
4504 2002-04-06  Jason Merrill  <jason@redhat.com>
4505
4506         PR c++/4934
4507         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
4508         set before checking it.
4509
4510         PR c++/525
4511         * init.c (build_member_call): Use build_scoped_ref.
4512         (resolve_offset_ref): Likewise.
4513         * call.c (build_scoped_method_call): Likewise.
4514         * tree.c (maybe_dummy_object): Kludge around current_class_type being
4515         wrong.
4516         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
4517         * cp-tree.h: Adjust.
4518
4519         * init.c (push_base_cleanups): Just use build_scoped_method_call.
4520
4521         PR c++/6179
4522         * method.c (implicitly_declare_fn): Pass unqualified type to
4523         synthesize_exception_spec.
4524
4525 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
4526
4527         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
4528         * cvt.c: Update comment.
4529         * init.c (expand_cleanup_for_base): Update.
4530         * semantics.c (finish_parenthesized_expr): Update.
4531         * typeck.c (cp_truthvalue_conversion): Update.
4532
4533 2002-04-04  Jason Merrill  <jason@redhat.com>
4534
4535         * semantics.c (finish_eh_cleanup): New fn.
4536         * cp-tree.h: Add prototype.
4537         * init.c (perform_member_init, expand_cleanup_for_base): Use
4538         finish_eh_cleanup.
4539         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
4540         * cp-tree.h: Remove references.
4541         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
4542         * dump.c (cp_dump_tree): Likewise.
4543         * pt.c (tsubst_expr): Likewise.
4544         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
4545         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
4546         * tree.c (cp_statement_code_p): Likewise.
4547
4548         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
4549
4550         PR c++/5636
4551         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
4552         cleanup for nrv.
4553
4554         PR c++/5104
4555         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
4556         specifiers.
4557         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
4558
4559 2002-04-03  Richard Henderson  <rth@redhat.com>
4560
4561         * cp-lang.c (cxx_warn_unused_global_decl): New.
4562         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
4563
4564 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
4565
4566         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
4567         * tree.c (init_tree): Don't set hook.
4568
4569 2002-04-03  Roger Sayle  <roger@eyesopen.com>
4570
4571         PR c++/5998:
4572         * decl.c (duplicate_decls): Don't mess with assembler names when
4573         redeclaring builtin functions as static.
4574
4575 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
4576
4577         * call.c (build_addr_func): Update.
4578         * class.c (resolve_address_of_overloaded_function): Update.
4579         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
4580         * cp-tree.h (cxx_mark_addressable): New.
4581         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
4582         * decl2.c (build_cleanup): Update.
4583         * except.c (build_throw): Update.
4584         * init.c (resolve_offset_ref): Update.
4585         * pt.c (convert_nontype_argument): Update.
4586         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
4587         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
4588         unary_complex_lvalue): Update.
4589         (mark_addressable): Rename.
4590
4591 2002-04-01  Roger Sayle  <roger@eyesopen.com>
4592
4593         PR c++/5998:
4594         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
4595         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
4596         but follow the SET_DECL_RTL idiom used elsewhere in the function.
4597
4598 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
4599
4600         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
4601         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
4602         * decl.c (grokdeclarator): Update.
4603         * mangle.c (write_integer_cst): Update.
4604         * typeck.c (build_binary_op): Update.
4605
4606 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
4607
4608         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
4609         * lex.c (cxx_init): Don't set hook.
4610
4611 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
4612
4613         * Make-lang.in (error.o): Update.
4614         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
4615         * cp-tree.h (struct diagnostic_context): Predeclare.
4616         (cxx_print_error_function): New.
4617         * error.c: Include langhooks-def.h.
4618         (lang_print_error_function): Rename.  Update.
4619         (init_error): Don't set hook.
4620
4621 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
4622
4623         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
4624         Redefine.
4625         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
4626         * decl.c (finish_enum): Similarly.
4627         * error.c (dump_type): Similarly.
4628         * lex.c (cxx_init): Similarly.
4629         * mangle.c (write_builtin_type): Similarly.
4630         * typeck.c (comptypes): Similarly.
4631
4632 2002-03-28  Roger Sayle  <roger@eyesopen.com>
4633
4634         PR c++/5998:
4635         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
4636         in the g++ front-end.
4637         (duplicate_decl): Allow redefinition of anticipated built-ins.
4638         Fix inlining problem by over-writing the old DECL_RTL.
4639         (lookup_namespace_name): Fail to find an identifier in the
4640         specified namespace if its still anticipated.
4641         (builtin_function_1): New function split out from builtin_function
4642         to create a builtin in the current namespace with given context.
4643         (builtin_function): Call builtin_function_1 to define the
4644         appropriate builtins in both the std and global namespaces.
4645         (select_decl): Don't test for anticipated decls here.
4646         (unqualified_namespace_lookup): Instead ignore them whilst
4647         searching through scopes and namespaces.
4648         * decl2.c (do_nonmember_using_decl): If a using declaration
4649         specifies an anticipated built-in function, mark it as no longer
4650         anticipated in that scope.
4651         (ambiguous_decl):  Avoid resolving to an anticipated decl.
4652         * lex.c (do_scoped_id): Fail to find an identifier in the global
4653         namespace if its still anticipated.
4654
4655 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
4656
4657         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
4658         * cp-tree.h (cp_make_lang_type): Rename.
4659         * lex.c (cp_make_lang_type): Rename.
4660         (make_aggr_type): Update.
4661         * tree.c (init_tree): Don't set make_lang_type_fn.
4662
4663 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
4664
4665         PR c++/6073
4666         * class.c (finish_struct_1): Update static field's DECL_MODE even
4667         if its type is a variant of t.
4668
4669 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
4670
4671         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
4672         * cp-tree.h (cxx_insert_default_attributes): New.
4673         * decl.c (insert_default_attributes): Rename.
4674
4675 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
4676
4677         PR c++/4884
4678         * call.c (build_op_delete_call): Allow for the fact the placement
4679         may be a COMPOUND_EXPR.
4680
4681 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
4682
4683         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
4684         * cp-tree.h (init_cplus_expand): Remove.
4685         (cxx_expand_expr): New.
4686         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
4687         fix prototype.
4688         (init_cplus_expand): Remove.
4689         * lex.c (cxx_init): Don't call init_cplus_expand.
4690
4691 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
4692
4693         PR c++/4884.
4694         * init.c (build_new_1): Allow for the fact the result of
4695         build_function_call may be a COMPOUND_EXPR.
4696
4697 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
4698
4699         PR c++/5682
4700         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
4701         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
4702         (dfs_skip_nonprimary_vbases_markedp): Remove.
4703         * search.c (get_shared_vbase_if_not_primary): Remove.
4704         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
4705         (dfs_skip_nonprimary_vbases_markedp): Remove.
4706         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
4707         (dfs_marked_real_bases_queue_p): Likewise.
4708
4709 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
4710
4711         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
4712         * cp-tree.h (cxx_mark_tree): New.
4713         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
4714
4715 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
4716
4717         * cp-tree.h (cxx_maybe_build_cleanup): New.
4718         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
4719         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
4720         * tree.c (build_target_expr): Update.
4721         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
4722
4723 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
4724
4725         * decl2.c (cxx_decode_option): Handle -E.
4726         * lang-specs.h (default_compilers): Preprocess with cc1plus.
4727         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
4728
4729 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
4730
4731         PR c++/6037
4732         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
4733
4734 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
4735
4736         * error.c (dump_type): Be careful about implicit typenames.
4737
4738 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
4739
4740         PR C++/3656
4741         * semantics.c (finish_base_specifier): Handle erronous base
4742         classes.
4743
4744 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
4745
4746         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
4747         REAL_IS_NOT_DOUBLE.
4748
4749 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
4750
4751         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
4752         an index into the vtable_entry array regardless of
4753         TARGET_PTRMEMFUNC_VBIT_LOCATION.
4754
4755 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
4756
4757         * tree.c (cp_cannot_inline_tree_fn): Same.
4758
4759 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
4760
4761         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
4762         insert_block, getdecls, global_bindings_p): New.
4763
4764 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
4765
4766         PR c++/4361
4767         * mangle.c (struct globals) Add internal_mangling_p member.
4768         (write_template_param): Do internal mangling, if needed.
4769         (mangle_conv_op_name_for_type): Request internal mangling.
4770
4771 2002-03-20  Jason Merrill  <jason@redhat.com>
4772
4773         PR c++/2136
4774         * init.c (build_delete): Check access for a member op delete here.
4775         * decl2.c (delete_sanity): Not here.
4776
4777 2002-03-19  Jason Merrill  <jason@redhat.com>
4778
4779         PR c++/5118
4780         * class.c (get_vfield_name): Use the constructor_name.
4781
4782 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
4783
4784         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
4785         * cp-tree.h (lang_printable_name): Rename.
4786         * error.c (lang_decl_name): Use new hook.
4787         * lex.c (cxx_init): Remove old hook.
4788         * pt.c (tsubst_decl): Use new hook.
4789         * tree.c (lang_printable_name): Rename.
4790
4791 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
4792
4793         PR c++/3882
4794         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
4795         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
4796         only after recording the declaration.
4797
4798 2002-03-18  Jason Merrill  <jason@redhat.com>
4799
4800         PR c++/2039
4801         * init.c (resolve_offset_ref): Hand off to build_component_ref.
4802
4803         PR c++/4222, c++/5995
4804         * call.c (build_over_call): Fix empty class logic.
4805
4806         PR c++/3870
4807         * cp-tree.h (struct saved_scope): Add last_parms field.
4808         * decl.c (maybe_push_to_top_level): Save last_function_parms.
4809         (pop_from_top_level): Restore it.
4810
4811         PR c++/4377
4812         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
4813         NON_LVALUE_EXPRs.
4814
4815         PR c++/4003
4816         * pt.c (tsubst_friend_function): Use decl_namespace_context.
4817
4818         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
4819         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
4820         type with a nontrivial destructor.
4821
4822 2002-03-17  Jason Merrill  <jason@redhat.com>
4823
4824         PR c++/4460
4825         * class.c (build_base_path): Virtual base layout is fixed in
4826         in-charge [cd]tors.
4827
4828 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
4829
4830         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
4831         * parse.y (yyparse): Remove macro.
4832
4833 2002-03-17  Jason Merrill  <jason@redhat.com>
4834
4835         PR c++/5757
4836         * init.c (build_new_1): Pass the right pointer to op delete.
4837
4838 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
4839
4840         PR c++/4361
4841         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
4842         conversion operators go.
4843         (struct lang_decl_flags): Add template_conv_p and unused
4844         bitfields.
4845         (DECL_TEMPLATE_CONV_FN_P): New macro.
4846         * call.c (build_user_type_conversion_1): Don't check second type
4847         conversion of overload set first.
4848         * class.c (add_method): Make sure templated conversion operators
4849         all end up on slot 2.
4850         * lex.c (do_identifier): A conversion operator token might be
4851         satisfied by a templated conversion operator.
4852         * pt.c (check_explicit_specialization): Use
4853         CLASSTYPE_FIRST_CONVERSION_SLOT.
4854         (template_parm_this_level_p): New function.
4855         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
4856         * search.c (lookup_fnfields_1): Template conversions will be on
4857         the first slot.
4858         * typeck.c (build_component_ref): Preserve the type of an
4859         conversion operator name on the overload type.
4860         (build_x_function_call): Retrieve the conversion operator name.
4861
4862 2002-03-15  Richard Henderson  <rth@redhat.com>
4863
4864         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
4865
4866 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
4867
4868         * cp-tree.h (CLEANUP_DECL): Remove.
4869         (CLEANUP_EXPR): Likewise.
4870         * decl.c (destroy_local_var): Simplify.
4871         (maybe_build_cleanup): Tidy.
4872         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
4873         * semantics.c (cp_expand_stmt): Likewise.
4874         * cp/tree.c (cp_statement_code_p): Likewise.
4875
4876 2002-03-15  Jason Merrill  <jason@redhat.com>
4877
4878         PR c++/5857
4879         * decl.c (duplicate_decls): Use merge_types instead of common_type.
4880         * typeck.c (common_type): Just hand off to
4881         type_after_usual_arithmetic_conversions and
4882         composite_pointer_type.
4883         (merge_types): New fn.
4884         (commonparms): Use it instead of common_type.
4885         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
4886         (composite_pointer_type): Also handle attributes.
4887         * cp-tree.h: Declare merge_types.
4888
4889         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
4890         variables.
4891         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
4892
4893 2002-03-14  Richard Henderson  <rth@redhat.com>
4894
4895         * decl.c: Include c-pragma.h.
4896         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
4897         * Make-lang.in: Update dependencies.
4898
4899 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
4900
4901         PR c++/5908
4902         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
4903         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
4904
4905 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
4906
4907         * mangle.c (write_builtin_type): Handle 128-bit integers even if
4908         they are not a standard integer type.
4909
4910 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
4911
4912         * cp-tree.h (init_init_processing): Remove declaration.
4913         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
4914         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
4915
4916 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4917
4918         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
4919         Define.
4920         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
4921         tree_code_length.
4922         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
4923         cplus_tree_code_name): Delete.
4924         (cxx_init): Don't call add_c_tree_codes, instead set
4925         lang_unsafe_for_reeval.  Don't try to copy into the various
4926         tree_code arrays.
4927
4928 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
4929
4930         PR c++/5659
4931         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
4932         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
4933         definitions.
4934
4935 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
4936
4937         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
4938         DR209 is now not a defect.
4939         * cp-tree.h (skip_type_access_control): Remove.
4940         * decl.c (grokdeclarator): Do type access control for friend
4941         declarations.
4942         * semantics.c (decl_type_access_control): Don't reset
4943         current_type_lookups.
4944         (save_type_access_control): Always save the lookups.
4945         (skip_type_access_control): Remove.
4946         (finish_class_definition): Don't change type_lookups.
4947
4948 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
4949
4950         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
4951         It is incorrect.
4952         * typeck.c (build_static_cast): Compare non-qualified types
4953         with pointer to member conversions.
4954
4955 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
4956             Daniel Berlin  <dan@dberlin.org>
4957
4958         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
4959         (cxx_get_alias_set): Use it.
4960
4961 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4962
4963         * cp-tree.h (stabilize_expr): Prototype.
4964
4965 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4966
4967         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
4968         conditional return void.
4969
4970 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
4971
4972         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
4973         * cp-tree.h (cxx_unsave): New.
4974         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
4975         (init_tree): Update.
4976
4977 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4978
4979         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
4980         explicit sizeof/sizeof.
4981         * decl2.c (cxx_decode_option): Likewise.
4982         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
4983
4984 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
4985
4986         PR c++/775
4987         * decl.c (lookup_tag): Only reject enum/class mismatch, not
4988         class/union mismatch.
4989         * parse.y (check_class_key): New function.
4990         (structsp): Call it.
4991
4992 2002-03-01  Michael Matz  <matz@suse.de>
4993
4994         * typeck.c (cp_pointer_int_sum): Complete inner type which is
4995         used later by size_in_bytes().
4996
4997 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
4998
4999         * cp-tree.h:  Require __GNUC__ to be #defined.
5000         (build_init):  Add missing prototype.
5001
5002 2002-03-01  Jason Merrill  <jason@redhat.com>
5003
5004         * except.c: Don't include decl.h or obstack.h.  Do include
5005         tree-inline.h.
5006         (build_throw): Destroy temporaries from the thrown
5007         expression before calling __cxa_throw.  Construct a thrown
5008         temporary directly into the exception object.
5009         (stabilize_throw_expr): New function.
5010         (wrap_cleanups_r): New function.
5011         * tree.c (stabilize_expr): New function.
5012         * init.c (build_init): New function.
5013         * Make-lang.in (cp/except.o): Adjust .h deps.
5014
5015 2002-02-28  Jason Merrill  <jason@redhat.com>
5016
5017         * search.c (lookup_base_r): Don't clear is_non_public just because
5018         we found a friendly scope.
5019
5020         * decl.c (finish_function): Only warn about missing return
5021         statement with -Wreturn-type.
5022
5023 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
5024
5025         * class.c (build_clone): Update.
5026         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
5027         * cp-tree.h (cxx_dup_lang_specific_decl): New.
5028         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
5029         (copy_decl): Update.
5030         * method.c (make_thunk): Update.
5031
5032 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
5033
5034         * decl2.c: Delete traditional-mode-related code copied from
5035         the C front end but not used, or used only to permit the
5036         compiler to link.
5037
5038 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
5039
5040         PR c++/4093
5041         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
5042         to void.
5043
5044 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
5045
5046         PR other/5746
5047         * semantics.c (finish_switch_cond): Don't call get_unwidened
5048         if error_mark_node.
5049
5050 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
5051
5052         PR c++/2645, DR 295
5053         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
5054         tf_keep_type_decl.
5055         (make_typename_type): Use tsubst_flags_t.
5056         * decl.c (make_typename_type): Adjust. Return non-artificial
5057         TYPE_DECLs, if required.
5058         (grokdeclarator): Simplify CVR qualification handling. Allow bad
5059         qualifiers on typedef types.
5060         * decl2.c (handle_class_head): Adjust make_typename_type call.
5061         * parse.y (nested_name_specifier): Likewise.
5062         (typename_sub0): Likewise.
5063         (typename_sub1): Likewise.
5064         * pt.c (convert_template_argument): Adjust make_typename_type
5065         return value.
5066         (tsubst): Adjust cp_build_qualified_type_real calls.
5067         (check_cv_quals_for_unify): Cope with allowing bad qualifications
5068         on template type parms.
5069         (instantiate_decl): Recheck substitutions to give warnings on bad
5070         qualifications.
5071         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
5072
5073 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
5074
5075         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
5076
5077         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
5078         unless DECL_ALWAYS_INLINE.
5079
5080 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
5081
5082         * typeck.c (cp_pointer_int_sum): Renamed from
5083         pointer_int_sum, call pointer_int_sum.
5084
5085 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
5086
5087         * decl.c (duplicate_decls): Return 0 if issued error about
5088         redeclaration.
5089
5090 2002-02-19  Jason Merrill  <jason@redhat.com>
5091
5092         ABI change: Mangle `void (A::*)() const' as
5093         M1AKFvvE, not MK1AFvvE.
5094         * mangle.c (write_function_type): Write cv-quals for member
5095         function type here.
5096         (write_pointer_to_member_type): Not here.
5097
5098 2002-02-18  Jason Merrill  <jason@redhat.com>
5099
5100         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
5101         (do_decl_instantiation): Likewise.
5102
5103 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5104
5105         PR c++/5685
5106         * decl.c (duplicate_decls): Make warning unconditional
5107         if duplicate default argument declarations are present.
5108
5109 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
5110
5111         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
5112         shortening.
5113
5114 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
5115
5116         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
5117         remove incorrect comment. Move #if 0'd code to common path. Use
5118         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
5119
5120 2002-02-13  Jason Merrill  <jason@redhat.com>
5121
5122         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
5123         (finish_function): Don't warn if current_function_returns_null.
5124
5125         * typeck2.c (digest_init): Do handle values of vector type.
5126
5127         * typeck2.c (digest_init, process_init_constructor): Treat vectors
5128         like arrays.
5129
5130 2002-02-11  Jason Merrill  <jason@redhat.com>
5131
5132         * parse.y (reserved_declspecs): Don't handle attributes.
5133         (reserved_typespecquals): Handle them here.
5134         * Make-lang.in (parse.c): Adjust expected conflicts.
5135
5136 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
5137
5138         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
5139         instead of compstmt.
5140         (compstmt_or_stmtexpr): Renamed from compstmt.
5141         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
5142
5143 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
5144
5145         Rename instantiate_type_flags to tsubst_flags_t & expand use.
5146         * cp-tree.h (instantiate_type_flags): Rename to ...
5147         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
5148         add tf_warning flag.
5149         (instantiate_type): Adjust prototype.
5150         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
5151         do_type_instantiation, cp_build_qualified_type_real): Likewise.
5152         cp_build_qualified_type: Adjust.
5153         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
5154         tf_*.
5155         * call.c (standard_conversion): Rename itf_* to tf_*.
5156         (reference_binding): Likewise.
5157         (convert_like_real): Likewise.
5158         * cvt.c (cp_convert_to_pointer): Likewise.
5159         (convert_to_reference): Likewise.
5160         * decl.c (lookup_namespace_name): Use tf_* flags.
5161         (make_typename_type): Likewise.
5162         (grokdeclarator): Likewise.
5163         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
5164         (coerce_template_template_parms, convert_template_argument,
5165         coerce_template_parms, maybe_get_template_decl_from_type_decl,
5166         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
5167         instantiate_class_template, tsubst_template_arg_vector,
5168         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
5169         tsubst_decl, tsubst_arg_types, tsubst_function_type,
5170         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
5171         instantiate_template, fn_type_unification,
5172         resolve_overloaded_unification, verify_class_unification,
5173         unify, get_bindings_real, do_type_instantiation,
5174         regenerate_decl_from_template, instantiate_decl,
5175         tsubst_initializer_list, tsubst_enum,
5176         get_mostly_instantiated_function_type,
5177         invalid_nontype_parm_type_p): Likewise.
5178         * tree.c (cp_build_qualified_type_real): Likewise.
5179         * typeck.c (build_binary_op): Rename itf_* to tf_*.
5180         (build_ptrmemfunc): Likewise.
5181         (convert_for_assignment): Likewise.
5182
5183 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
5184
5185         PR c++/109
5186         * decl.c (grokdeclarator): Allow friend declarations from
5187         dependent types.
5188         * decl2.c (handle_class_head): Don't push into template parm contexts.
5189         * pt.c (push_template_decl_real): Template parm contexts are never
5190         being defined.
5191
5192 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
5193
5194         * class.c: Include target.h.
5195         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
5196         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
5197         bit-field layout.
5198         * Make-lang.in: Adjust deps.
5199
5200 2002-02-05  Jason Merrill  <jason@redhat.com>
5201
5202         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
5203
5204 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
5205
5206         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
5207         (finish_switch_cond): Set SWITCH_TYPE.
5208
5209 2002-02-04  Richard Henderson  <rth@redhat.com>
5210
5211         * method.c (use_thunk): Always initialize the block tree.  Reindent.
5212         * semantics.c (expand_body): Emit thunks after function, not before.
5213
5214 2002-02-04  Jason Merrill  <jason@redhat.com>
5215
5216         * decl.c (start_function): Call cplus_decl_attributes immediately
5217         after grokdeclarator.
5218
5219         * decl.c (start_function): Combine DECL_RESULT handling code.
5220
5221 2002-02-03  Jason Merrill  <jason@redhat.com>
5222
5223         * xref.c: Remove.
5224         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
5225         (cp/xref.o): Remove dependencies.
5226         * class.c (finish_struct_1, check_methods): Don't call xref fns.
5227         (finish_struct_1): Likewise.
5228         * friend.c (make_friend_class): Likewise.
5229         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
5230         * spew.c (read_process_identifier): Likewise.
5231
5232 2002-02-01  Jason Merrill  <jason@redhat.com>
5233
5234         PR c++/4872
5235         * decl.c (finish_function): Warn about a non-void function with
5236         no return statement and no abnormal exit.
5237         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
5238         (current_function_returns_abnormally): New macro.
5239         * call.c (build_call): Set it.
5240
5241         * typeck.c (build_component_ref): Always complain about offsetof
5242         constructs on non-PODs.  Only make it an error for members of
5243         virtual bases.
5244
5245         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
5246         (dump_function_decl): Always dump parms.
5247
5248         * decl2.c (finish_static_data_member_decl): Complain about a local
5249         class with a static data member.
5250
5251         PR c++/4286
5252         * search.c (lookup_field_1): Don't xref a static data member
5253         just because we looked it up.
5254
5255 2002-01-31  Jason Merrill  <jason@redhat.com>
5256
5257         * Make-lang.in (parse.c): Handle .output file.
5258
5259         PR c++/3395
5260         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
5261         not TREE_TYPE.
5262         * semantics.c (finish_class_definition): Adjust.
5263
5264         Allow attributes in parms and casts.
5265         * parse.y (named_parm): Don't strip attrs.
5266         (declmods): Remove 'attributes' production.
5267         (nonempty_cv_qualifiers): Accept attributes.
5268         (ATTRIBUTE): Give precedence.
5269         * decl.c (groktypename): Handle attributes.
5270         (grokparms): Likewise.
5271
5272 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
5273
5274         * decl2.c (cxx_decode_option): Pass 0 as last argument to
5275         cpp_handle_option.
5276         * lang-specs.h: Use cpp_unique_options instead of cpp_options
5277         when used together with cc1_options.
5278
5279 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
5280
5281         PR c++/5132
5282         * typeck2.c (digest_init): Make sure non-array core type is
5283         instantiated.
5284         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
5285         constructor, rather than build a new one.
5286         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
5287         PURPOSE of constructor elts.
5288
5289 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
5290
5291         * Make-lang.in (parse.c): Adjust expected number of
5292         shift-reduce conflicts.
5293         (decl.o): Depend on diagnostic.h.
5294         * decl.c: Include diagnostic.h.
5295         (grokdeclarator): Check for null pointer.
5296         (finish_function): Don't abort when
5297         current_binding_level->parm_flag != 1, if errors have
5298         occurred; throw away the statement tree and extra binding
5299         levels, and continue.
5300         * lex.c (note_list_got_semicolon): Check for null pointer.
5301         * method.c (hack_identifier): Just return error_mark_node if
5302         value is error_mark_node.
5303         * parse.y (primary: TYPEID(type_id)): No need to use
5304         TYPE_MAIN_VARIANT here.
5305         (handler_seq): Accept an empty list of catch clauses and
5306         generate a fake handler block to avoid later crashes.
5307         (ansi_raise_identifier): Accept the error token too.
5308         * semantics.c (begin_class_definition,
5309         finish_class_definition): Check for error_mark_node.
5310
5311 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
5312
5313         * typeck2.c (friendly_abort): Delete definition.
5314         * cp-tree.h (friendly_abort): Don't prototype.
5315         (my_friendly_assert): Use fancy_abort.
5316
5317 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5318
5319         * cp-tree.h (my_friendly_abort): Remove.
5320
5321 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
5322
5323         * spew.c (pending_inlines, pending_inlines_tail,
5324         processing_these_inlines): Make static.
5325         (mark_pending_inlines): Remove static.
5326         (begin_parsing_inclass_inline): If in function, save pi
5327         for GC to cp_function_chain->unparsed_inlines instead.
5328         (process_next_inline): Likewise.
5329         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
5330         (mark_pending_inlines): Add prototype.
5331         * decl.c (spew_debug): Remove unused extern.
5332         (mark_lang_function): Call mark_pending_inlines.
5333
5334 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5335
5336         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
5337         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
5338         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
5339         Change my_fancy_abort() to abort().
5340
5341 2002-01-23  Jason Merrill  <jason@redhat.com>
5342
5343         PR c++/5453
5344         * class.c (fixed_type_or_null): Fix thinko.
5345
5346         PR c++/3331
5347         * init.c (resolve_offset_ref): Use build_indirect_ref.
5348
5349         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
5350
5351 2002-01-22  Jason Merrill  <jason@redhat.com>
5352
5353         * parse.y (function_body): Suppress the block for the outermost
5354         curly braces.
5355         * decl.c (pushdecl): Don't try to skip it.
5356         (begin_function_body): Keep the block we create, not the next one.
5357         * init.c (emit_base_init): Don't mess with keep_next_level.
5358
5359         * class.c (build_base_path): Tweak formatting.
5360
5361 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5362
5363         Fix regression introduced with patch for c++/775
5364         * parse.y (class_head_defn): Check for template specializations
5365         with a different class-key.
5366
5367 2002-01-17  Jason Merrill  <jason@redhat.com>
5368
5369         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
5370         (begin_function_body): Call them and keep_next_level.
5371         * init.c (emit_base_init): Call keep_next_level.
5372         * semantics.c (setup_vtbl_ptr): Lose.
5373         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
5374         (vtbls_set_up_p): Lose.
5375         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
5376         * method.c (do_build_copy_constructor): Likewise.
5377         (synthesize_method): Call finish_mem_initializers.
5378         * parse.y (nodecls): Likewise.
5379
5380         * error.c (dump_type_suffix): Print the exception specs before
5381         recursing.
5382         (dump_function_decl): Here, too.
5383
5384         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
5385
5386 2002-01-10  Ira Ruben   <ira@apple.com>
5387
5388         PR c++/907
5389         * decl.c (start_method): Handle attrlist.
5390
5391 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
5392
5393         * decl2.c (max_tinst_depth): Increase default limit to 500.
5394
5395 2002-01-10  Graham Stott  <grahams@redhat.com>
5396
5397         * spew.c (YYCHAR): Uppercase macro parameter and add
5398         parenthesis.
5399         (YYCODE): Likewise.
5400         (NAME): Uppercase macro parameter.
5401
5402 2002-01-09  Graham Stott  <grahams@redhat.com>
5403
5404         * decl.h (grokdeclarator): Wrap long line.
5405
5406         * semantics.c (FINISH_COND): Uppercase macro paramaters and
5407         add parenthesis.
5408
5409 2002-01-08  Graham Stott  <grahams@redhat.com>
5410
5411         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
5412         (PALLOC): Uppercase macro parameter and whitespace.
5413         (SALLOC): Uppercase macro parameter.
5414         (SFREE): Uppercase macros parameter, add parenthese and
5415         whitespace.
5416         (STREQL): Uppercase macro parameter and whitespace.
5417         (STRNEQ): Likewise.
5418         (STRLSS): Likewise.
5419         (STRLEQ): Likewise.
5420         (STRGTR): Likewise.
5421         (STRGEQ): Likewise.
5422
5423         * call.c (convert_like): Add parenthesis and wrap.
5424         (convert_like_with_context): Likewise.
5425         (ICS_RANK): Whitespace.
5426         (NEED_TEMPORARY_P): Remove parenthesis.
5427
5428         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
5429         whitespace.
5430         (VTT_MARKED_BINFO_P): Likewise.
5431
5432         * decl.c (BINDING_LEVEL): Add parenthesis.
5433         (DEF_OPERATOR): Likewise.
5434
5435         * mangle.c (MANGLE_TRACE): Add parenthesis.
5436         (MANGLE_TRACE_TREE): Likewise.
5437         (write_signed_number): Likewise.
5438         (write_unsigned_number): Likewise.
5439
5440         * pt.c (ccat): Uppercase macro parameter.
5441         (cat): Likewise
5442
5443         * search.c (SET_BINFO_ACCESS): Add parenthesis.
5444
5445 2002-01-07  Jason Merrill  <jason@redhat.com>
5446
5447         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
5448         to pedwarn.
5449
5450         PR c++/3536
5451         * method.c (make_thunk): If !flag_weak, give the thunk the
5452         function's linkage.
5453         (use_thunk): Here, too.
5454
5455 2002-01-07  Graham Stott  <grahams@redhat.com>
5456
5457         * error.c: Update copyright date.
5458         (print_scope_operator): Add parenthesis.
5459         (print_left_paren): Likewise.
5460         (print_right_paren): Likewise.
5461         (print_left_bracket): Likewise.
5462         (print_right_bracket): Likewise.
5463         (print_template_argument_list_start): Likewise.
5464         (print_template_argument_list_end): Likewise.
5465         (print_non_consecutive_character): Likewise.
5466         (print_tree_identifier): Likewise.
5467         (print_identifier): Likewise.
5468         (NEXT_CODE): Uppercase macro parameter.
5469         (ident_fndecl): Delete unused.
5470         (GLOBAL_THING): Likewise.
5471
5472 2002-01-06  Graham Stott  <grahams@redhat.com>
5473
5474         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
5475         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
5476         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
5477         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
5478         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
5479         (C_IS_RESERVED_WORD): Uppercase macro parameter.
5480         (C_RID_YYCODE) Likewise.
5481         (ptrmem_cst): Use rtx.
5482         (LOCAL_BINDING_P): Add whitespace.
5483         (INHERITED_VALUE_BINDING_P): Likewise.
5484         (BINDING_SCOPE): Wrap long line.
5485         (BINDING_HAS_LEVEL_P): Remove parenthesis.
5486         (BINDING_VALUE): Wrap long line.
5487         (BINDING_TYPE): Whitespace.
5488         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
5489         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
5490         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
5491         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
5492         (same_type_p): Uppercase macro parameters.
5493         (same_type_ignoring_top_level_qualifiers_p): Likewise.
5494         (OVL_FUNCTION): Wrap long line.
5495         (OVL_CHAIN): Whitespace.
5496         (OVL_CURRENT): Add parenthesis and whitespace.
5497         (OVL_NEXT): Whitespace.
5498         (OVL_USED): Likewise.
5499         (IDENTIFIER_TYPE_VALUE): Likewise.
5500         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
5501         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
5502         (LANG_ID_FIELD): Whitespace.
5503         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
5504         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
5505         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
5506         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
5507         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
5508         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
5509         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
5510         (IDENTIFIER_VIRTUAL_P): Likewise.
5511         (IDENTIFIER_OPNAME_P): Likewise.
5512         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
5513         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
5514         (C_SET_EXP_ORIGINAL_CODE): Likewise.
5515         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
5516         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
5517         (IS_AGGR_TYPE): Uppercase macro parameter.
5518         (CLASS_TYPE_P): Likewise.
5519         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
5520         (IS_AGGR_TYPE_2): Whitespace.
5521         (TAGGED_TYPE_P): Uppercase macro parameter.
5522         (TYPE_BUILT_IN): Whitespace.
5523         (TYPE_FOR_JAVA): Likewise.
5524         (FUNCTION_ARG_CHAIN): Remove parenthesis.
5525         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
5526         (FUNCTION_FIRST_USER_PARAM): Likewise.
5527         (PROMOTES_TO_AGGR_TYPE): Whitespace.
5528         (DERIVED_FROM_P): Add parenthesis and wrap.
5529         (UNIQUELY_DERIVED_FROM_P): Likewise.
5530         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
5531         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
5532         (CLASSTYPE_USE_TEMPLATE): Whitespace.
5533         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
5534         (TYPE_GETS_DELETE): Add parenthesis.
5535         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
5536         (TYPE_HAS_ASSIGN_REF): Likewise,
5537         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
5538         (TYPE_HAS_INIT_REF): Likewise.
5539         (TYPE_HAS_CONST_INIT_REF): Likewise.
5540         (TYPE_BEING_DEFINED): Likewise.
5541         (TYPE_LANG_SPECIFIC): Likewise.
5542         (CLASSTYPE_RTTI): Likewise.
5543         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
5544         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
5545         (TYPE_OVERLOADS_ARROW): Likewise.
5546         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
5547         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
5548         (CLASSTYPE_METHOD_VEC): Likewise.
5549         (CLASSTYPE_MARKED_N): Likewise.
5550         (CLASSTYPE_MARKED): Likewise.
5551         (CLASSTYPE_MARKED2): Likewise.
5552         (CLASSTYPE_MARKED3): Likewise.
5553         (CLASSTYPE_MARKED4): Likewise.
5554         (CLASSTYPE_MARKED5): Likewise.
5555         (CLASSTYPE_MARKED6): Likewise.
5556         (SET_CLASSTYPE_MARKED): Whitespace.
5557         (CLEAR_CLASSTYPE_MARKED): Likewise.
5558         (SET_CLASSTYPE_MARKED2): Likewise.
5559         (CLEAR_CLASSTYPE_MARKED2): Likewise.
5560         (SET_CLASSTYPE_MARKED3): Likewise.
5561         (CLEAR_CLASSTYPE_MARKED3): Likewise.
5562         (SET_CLASSTYPE_MARKED4): Likewise.
5563         (CLEAR_CLASSTYPE_MARKED4): Likewise.
5564         (SET_CLASSTYPE_MARKED5): Likewise.
5565         (CLEAR_CLASSTYPE_MARKED5): Likewise.
5566         (SET_CLASSTYPE_MARKED6): Likewise.
5567         (CLEAR_CLASSTYPE_MARKED6): Likewise.
5568         (CLASSTYPE_TAGS): Likewise.
5569         (CLASSTYPE_VSIZE): Likewise.
5570         (CLASSTYPE_VBASECLASSES): Likewise.
5571         (CANONICAL_BINFO): Add parenthesis.
5572         (CLASSTYPE_SIZE(NODE): Likewise.
5573         (CLASSTYPE_SIZE_UNIT): Likewise.
5574         (CLASSTYPE_ALIGN(NODE): Likewise.
5575         (CLASSTYPE_USER_ALIGN): Likewise.
5576         (TYPE_JAVA_INTERFACE): Likewise.
5577         (CLASSTYPE_PURE_VIRTUALS): Likewise.
5578         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
5579         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
5580         (CLASSTYPE_HAS_MUTABLE): Likewise.
5581         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
5582         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
5583         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
5584         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
5585         (CLASSTYPE_INTERFACE_ONLY): Likewise.
5586         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
5587         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
5588         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
5589         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
5590         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
5591         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
5592         (BINFO_UNSHARED_MARKED): Whitespace.
5593         (BINFO_MARKED): Whitespace and wrap.
5594         (SET_BINFO_MARKED): Likewise.
5595         (CLEAR_BINFO_MARKED): Likewise.
5596         (BINFO_VTABLE_PATH_MARKED): Likewise.
5597         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
5598         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
5599         (BINFO_SUBVTT_INDEX): Remove parenthesis.
5600         (BINFO_VPTR_INDEX): Likewise.
5601         (BINFO_PRIMARY_BASE_OF): Likewise,
5602         (CLASSTYPE_VFIELDS): Whitespace.
5603         (VF_DERIVED_VALUE): Wrap long line.
5604         (NAMESPACE_LEVEL): Whitespace.
5605         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
5606         (DEFARG_POINTER): Whitespace.
5607         (DECL_NEEDED_P): Remove parenthesis.
5608         (DECL_LANGUAGE): Whitespace.
5609         (SET_DECL_LANGUAGE): Add parenthesis.
5610         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
5611         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
5612         (DECL_IN_AGGR_P): Whitespace.
5613         (DECL_FRIEND_P): Likewise.
5614         (DECL_BEFRIENDING_CLASSES): Likewise.
5615         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
5616         (DECL_NONCONVERTING_P): Whitespace.
5617         (DECL_PURE_VIRTUAL_P): Likewise.
5618         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
5619         (DECL_PENDING_INLINE_INFO): Whitespace.
5620         (DECL_SORTED_FIELDS): Likewise.
5621         (DECL_DEFERRED_FN): Likewise.
5622         (DECL_TEMPLATE_INFO): Likewise.
5623         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
5624         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
5625         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
5626         (TMPL_ARGS_LEVEL): Likewise.
5627         (SET_TMPL_ARGS_LEVEL): Likewise.
5628         (INNERMOST_TEMPLATE_PARMS): Whitespace.
5629         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
5630         (INTEGRAL_CODE_P(CODE): Add parenthesis.
5631         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
5632         (TYPE_HAS_CONSTRUCTOR): Whitespace.
5633         (TREE_HAS_CONSTRUCTOR): Likewise.
5634         (TYPE_HAS_DESTRUCTOR): Likewise.
5635         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
5636         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
5637         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
5638         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
5639         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
5640         (TYPE_PTRMEMFUNC_P): Likewise.
5641         (TYPE_PTRMEMFUNC_FLAG): Likewise.
5642         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
5643         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
5644         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
5645         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
5646         (DECL_ACCESS): Whitespace.
5647         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
5648         (DECL_GLOBAL_DTOR_P): Likewise.
5649         (GLOBAL_INIT_PRIORITY): Likewise.
5650         (DECL_TEMPLATE_PARMS): Likewise.
5651         (DECL_TEMPLATE_RESULT): Likewise.
5652         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
5653         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
5654         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
5655         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
5656         (PRIMARY_TEMPLATE_P): Add parenthesis.
5657         (DECL_USE_TEMPLATE): Whitespace.
5658         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
5659         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
5660         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
5661         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
5662         (CALL_DECLARATOR_PARMS): Remove parenthesis.
5663         (CALL_DECLARATOR_QUALS): Likewise.
5664         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
5665         (TEMP_NAME_P): Wrap.
5666         (VFIELD_NAME_P): Likewise.
5667         (B_SET): Uppercase macro parameters and add parenthesis.
5668         (B_CLR): Likewise.
5669         (B_TST): Likewise.
5670         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
5671         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
5672         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
5673         (same_or_base_type_p): Likewise.
5674         (cp_deprecated): Likewise.
5675
5676 2002-01-05  Richard Henderson  <rth@redhat.com>
5677
5678         * semantics.c (expand_body): Revert last change.
5679
5680 2002-01-04  Jason Merrill  <jason@redhat.com>
5681
5682         PR c++/4122
5683         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
5684         lost primary.
5685
5686         * class.c (build_vtbl_initializer): Check for a lost primary
5687         before calculating the vtable entry to throw away.
5688
5689 2002-01-02  Jason Merrill  <jason@redhat.com>
5690
5691         * semantics.c (expand_body): Call outlining_inline_function when
5692         emitting an inline function out of line.
5693
5694 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5695
5696         PR c++/5116, c++/764 reversion
5697         * call.c (build_new_op): Revert the instantiations. They are
5698         incorrect.
5699
5700 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5701
5702         PR c++/5089
5703         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
5704
5705 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5706
5707         PR c++/3716
5708         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
5709         (tsubst, case POINTER_TYPE): Handle pmfs here.
5710         (tsubst, case OFFSET_TYPE): Check it is not an offset to
5711         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
5712
5713 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5714
5715         PR c++/35
5716         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
5717         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
5718         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
5719         PARM_DECL.
5720         (tsubst_template_parms): Break up loop statements.
5721         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
5722         parm PARM_DECLs don't get promoted.
5723
5724 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5725
5726         PR c++/5123
5727         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
5728         (build_x_function_call): Cope with a COMPONENT_REF containing a
5729         TEMPLATE_ID_EXPR.
5730
5731 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5732
5733         PR c++/5213
5734         * pt.c (convert_template_argument): Be more careful determining
5735         when RECORD_TYPE templates are or are not templates.
5736
5737 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5738
5739         PR c++/775
5740         * cp-tree.h (handle_class_head): Adjust prototype.
5741         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
5742         parameters. Use for all class heads.
5743         * parse.y (named_class_head_sans_basetype, named_class_head,
5744         named_complex_class_head_sans_basetype,
5745         named_class_head_sans_basetype_defn,
5746         unnamed_class_head): Remove.
5747         (class_head, class_head_apparent_template): Recognize class heads
5748         (class_head_decl, class_head_defn): New reductions. Process class
5749         heads.
5750         (structsp): Adjust class definition and class declaration
5751         reductions.
5752         (maybe_base_class_list): Give diagnostic on empty list.
5753
5754 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5755
5756         PR c++/4379
5757         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
5758         single non-static member.
5759         (unary_complex_lvalue): If it cannot be a pointer to member, don't
5760         make it so. Check it is not pointer to reference.
5761
5762 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5763
5764         PR c++/5132
5765         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
5766         are processing a template decl.
5767
5768 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
5769
5770         PR c++/5116, c++/764
5771         * call.c (build_new_op): Make sure template class operands are
5772         instantiated. Simplify arglist construction.
5773
5774 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
5775
5776         * call.c (build_user_type_conversion_1): Use my_friendly_assert
5777         rather than if ... abort.
5778         * cvt.c (convert_to_reference): Likewise.
5779         * semantics.c (setup_vtbl_ptr): Likewise.
5780         * pt.c (lookup_template_class): Comment typo.
5781
5782 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
5783
5784         PR c++/5125
5785         * pt.c (push_template_decl_real): Make sure DECL has
5786         DECL_LANG_SPECIFIC.
5787
5788 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
5789
5790         PR c++/335
5791         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
5792         for non-reference fields.
5793         * typeck.c (require_complete_type): Use resolve_offset_ref).
5794
5795 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
5796
5797         PR c++/196
5798         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
5799
5800 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
5801
5802         PR c++/160
5803         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
5804         up. Don't stabilize_references when initializing a reference.
5805
5806 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5807
5808         * decl2.c (lang_f_options): Const-ify.
5809
5810 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
5811
5812         * config-lang.in (diff_excludes): Remove.
5813
5814 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
5815
5816         PR c++/90
5817         * typeck.c (build_function_call_real): Use original function
5818         expression for errors.
5819
5820 2001-12-18  Jason Merrill  <jason@redhat.com>
5821
5822         PR c++/3242
5823         * class.c (add_method): Do compare 'this' quals when trying to match a
5824         used function.  Don't defer to another used function.
5825
5826 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
5827
5828         * pt.c (instantiate_clone): Remove, fold into ...
5829         (instantiate_template): ... here. Simplify by removing mutual
5830         recursion.
5831         * typeck2.c (build_m_component_ref): Don't cv qualify the function
5832         pointed to by a pointer to function.
5833         * class.c (delete_duplicate_fields_1): Typo.
5834
5835 2001-12-18  Jason Merrill  <jason@redhat.com>
5836
5837         C++ ABI change: destroy value arguments in caller.
5838         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
5839         create an extra binding level for the parameters.
5840         * decl.c (store_parm_decls): Don't do parameter cleanups.
5841
5842 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
5843
5844         * call.c (build_new_method_call): Use '%#V'.
5845         * error.c (cv_to_string): Use V parameter to determine padding.
5846
5847 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
5848
5849         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
5850         spellings in messages.
5851
5852 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
5853
5854         * cp-tree.h: Delete #defines for cp_error, cp_warning,
5855         cp_pedwarn, and cp_compiler_error.
5856         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
5857         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
5858         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
5859         typeck2.c: Change calls to the above macros to use their
5860         language-independent equivalents: error, warning, pedwarn, and
5861         internal_error respectively.
5862
5863 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
5864
5865         * decl2.c (finish_file): Remove back_end_hook.
5866
5867 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
5868
5869         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
5870         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
5871         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
5872
5873 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
5874
5875         * lang-options.h: Use American spelling in messages.
5876
5877 2001-12-13  Jason Merrill  <jason@redhat.com>
5878
5879         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
5880
5881         Use cleanups to run base and member destructors.
5882         * init.c (push_base_cleanups): New function, split out from...
5883         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
5884         * decl.c (finish_destructor_body): Move vbase destruction code to
5885         push_base_cleanups.
5886         (begin_function_body, finish_function_body): New fns.
5887         (finish_function): Move [cd]tor handling and call_poplevel to
5888         finish_function_body.
5889         (pushdecl): Skip the new level.
5890         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
5891         (setup_vtbl_ptr): Call push_base_cleanups.
5892         * method.c (synthesize_method): Call {begin,end}_function_body.
5893         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
5894         * cp-tree.h: Declare new fns.
5895         * parse.y (function_body, .begin_function_body): New nonterminals.
5896         (fndef, pending_inline, function_try_block): Use function_body.
5897         (ctor_initializer_opt, function_try_block): No longer has a value.
5898         (base_init): Remove .set_base_init token.
5899         (.set_base_init, compstmt_or_error): Remove.
5900         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
5901
5902         * optimize.c (maybe_clone_body): Fix parameter updating.
5903
5904 2001-12-12  Jason Merrill  <jason@redhat.com>
5905
5906         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
5907         * semantics.c (genrtl_start_function): Don't pass
5908         parms_have_cleanups or push an extra binding level.
5909         (genrtl_finish_function): Lose cleanup_label cruft.
5910
5911         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
5912         (ctor_label): Remove.
5913         * semantics.c (finish_return_stmt): Lose ctor_label support.
5914         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
5915         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
5916         dtor_label.
5917
5918         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
5919         check for [cd]tors.
5920         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
5921
5922         * decl.c (finish_function): Check VMS_TARGET, not VMS.
5923
5924         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
5925         (end_cleanup_fn): And poplevel.
5926
5927         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
5928         if we're in a template.
5929
5930 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
5931
5932         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
5933         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
5934         THIS_NAME_P): Delete.
5935         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
5936         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
5937         with internal naming scheme.
5938         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
5939
5940 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5941
5942         * decl.c (grokdeclarator): Deprecated implicit typename use.
5943
5944 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
5945
5946         PR g++/51
5947         * parse.y (frob_specs): Indicate it is a language linkage which
5948         contained the extern.
5949         * decl.c (grokdeclarator): Allow extern language linkage with
5950         other specifiers.
5951
5952 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
5953
5954         PR g++/72
5955         * decl.c (add_binding): Don't reject duplicate typedefs involving
5956         template parameters.
5957
5958 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5959
5960         * parse.y, semantics.c: Similarly.
5961
5962 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
5963
5964         PR g++/87
5965         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
5966         (copy_args_p): Rename to ...
5967         (copy_fn_p): ... here.
5968         (grok_special_member_properties): New function.
5969         (grok_op_properties): Lose VIRTUALP parameter.
5970         (copy_assignment_arg_p): Remove.
5971         * call.c (build_over_call): Use copy_fn_p.
5972         * decl.c (grokfndecl): Reformat. Adjust call to
5973         grok_op_properties.
5974         (copy_args_p): Rename to ...
5975         (copy_fn_p): ... here. Reject template functions. Check for pass
5976         by value.
5977         (grok_special_member_properties): Remember special functions.
5978         (grok_ctor_properties): Don't remember them here, just check.
5979         (grok_op_properties): Likewise.
5980         (start_method): Call grok_special_member_properties.
5981         * decl2.c (grokfield): Likewise.
5982         (copy_assignment_arg_p): Remove.
5983         (grok_function_init): Don't remember abstract assignment here.
5984         * pt.c (instantiate_class_template): Call
5985         grok_special_member_properties.
5986         (tsubst_decl): Adjust grok_op_properties call.
5987
5988 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
5989
5990         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
5991         RID_TYPES_COMPATIBLE_P.
5992
5993 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5994
5995         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
5996         call to build_aggr_init.
5997         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
5998
5999 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
6000
6001         * parse.y: Replace uses of the string non-terminal with STRING.
6002         Don't perform string concatentaion here.
6003         (string): Remove non-terminal.
6004         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
6005
6006 2001-12-05  Jason Merrill  <jason@redhat.com>
6007
6008         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
6009         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
6010         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
6011         * pt.c (push_tinst_level): No longer static.
6012         * cp-tree.h: Declare them.
6013
6014         * init.c (resolve_offset_ref): Don't check access for the base
6015         conversion to access a FIELD_DECL.
6016
6017         * cp-tree.h (TYPE_REFFN_P): New macro.
6018         * decl.c (bad_specifiers): Check it, too.
6019
6020         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
6021         on the __*_type_info type if we haven't seen a definition.
6022
6023 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
6024
6025         * decl.c: Include c-common.h.
6026         (shadow_warning): Move to c-common.c.
6027
6028 Wed Dec  5 17:00:49 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6029
6030         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
6031
6032 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
6033
6034         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
6035
6036 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
6037
6038         PR g++/164
6039         * init.c (sort_base_init): Allow binfos to be directly specified.
6040         * method.c (do_build_copy_constructor): Explicitly convert to the
6041         base instance.
6042         (do_build_assign_ref): Likewise.
6043
6044 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
6045
6046         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
6047         declaration and initialization.
6048
6049 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
6050
6051         * typeck2.c: Remove leading capital from diagnostic messages, as
6052         per GNU coding standards.
6053
6054 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
6055
6056         PR c++/3394
6057         * decl.c (xref_basetypes): Handle attributes between
6058         'class' and name.
6059
6060 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
6061
6062         PR g++/3381
6063         * parse.y (named_complex_class_head_sans_basetype): Add new
6064         reduction.
6065         * Make-lang.in (parse.c): Adjust expected conflict count.
6066
6067 2001-12-03  Jason Merrill  <jason@redhat.com>
6068
6069         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
6070         immediate binfos for our virtual bases.
6071
6072 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
6073
6074         * call.c (build_java_interface_fn_ref): Similarly.
6075         * except.c (is_admissible_throw_operand): Similarly.
6076         * init.c (build_java_class_ref): Similarly.
6077         * xref.c (open_xref_file): Similarly.
6078
6079 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
6080
6081         * class.c (finish_struct): Remove trailing periods from messages.
6082         * decl.c (check_tag_decl): Similarly.
6083         * lex.c (cxx_set_yydebug): Similarly.
6084         * typeck2.c (friendly_abort): Similarly.
6085
6086 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
6087
6088         PR c++/3048
6089         * cp-tree.h (ovl_member): Remove.
6090         * decl2.c (merge_functions): Handle extern "C" functions
6091         specially.
6092         * tree.c (ovl_member): Remove.
6093
6094 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
6095
6096         PR c++/4842
6097         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
6098         FUNCTION_DECL, as input.
6099         (mark_overriders): Remove.
6100         (warn_hidden): Rework for the new ABI.
6101
6102 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
6103
6104         PR c++/3471
6105         * call.c (convert_like_real): Do not build additional temporaries
6106         for rvalues of class type.
6107
6108 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6109
6110         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
6111         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
6112         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
6113         (DERIVED_FROM_P): Likewise.
6114         (enum base_access): Renumber, add ba_quiet bit mask.
6115         (get_binfo): Remove.
6116         (get_base_distance): Remove.
6117         (binfo_value): Remove.
6118         (ACCESSIBLY_DERIVED_FROM_P): Remove.
6119         * call.c (standard_conversion): Use lookup_base.
6120         * class.c (strictly_overrides): Likewise.
6121         (layout_virtual_bases): Likewise.
6122         (warn_about_ambiguous_direct_bases): Likewise.
6123         (is_base_of_enclosing_class): Likewise.
6124         (add_vcall_offset_vtbl_entries_1): Likewise.
6125         * cvt.c (build_up_reference): Adjust comment.
6126         * init.c (build_member_call): Reformat.
6127         * search.c (get_binfo): Remove.
6128         (get_base_distance_recursive): Remove.
6129         (get_base_distance): Remove.
6130         (lookup_base_r): Tweak.
6131         (lookup_base): Add ba_quiet control. Complete the types here.
6132         (covariant_return_p): Use lookup_base.
6133         * tree.c (binfo_value): Remove.
6134         (maybe_dummy_object): Use lookup_base.
6135         * typeck.c (build_static_cast): Use lookup_base.
6136         (get_delta_difference): Likewise.
6137         * typeck2.c (binfo_or_else): Use lookup_base.
6138         (build_scoped_ref): Add back error_mark_check.
6139         (build_m_component_ref): Use lookup_base.
6140
6141 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
6142
6143         * Make-lang.in (c++.generated-manpages): New dummy target.
6144
6145 Tue Nov 27 09:03:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6146
6147         * Make-lang.in (cp-lang.o): Depends on c-common.h.
6148         * cp-lang.c (c-common.h): Include.
6149         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
6150         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
6151         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
6152
6153 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
6154
6155         * decl2.c (c_language): Move to c-common.c.
6156         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
6157         functions.
6158         (cxx_init): Update.
6159
6160 2001-11-26  Jason Merrill  <jason@redhat.com>
6161
6162         * call.c (joust): Remove COND_EXPR hack.
6163
6164 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
6165
6166         * search.c (lookup_base_r): Declare bk in variable declaration
6167         space.
6168
6169 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
6170
6171         PR g++/3145
6172         * class.c (build_vbase_pointer): Remove.
6173         (build_vbase_path): Remove.
6174         (build_base_path): New function.
6175         * cp-tree.h (base_access, base_kind): New enumerations.
6176         (build_base_path): Declare.
6177         (convert_pointer_to_real): Remove.
6178         (convert_pointer_to): Remove.
6179         (lookup_base): Declare.
6180         (convert_pointer_to_vbase): Remove.
6181         * call.c (build_scoped_method_call): Use lookup_base &
6182         build_base_path instead of convert_pointer_to_real,
6183         get_base_distance & get_binfo.
6184         (build_over_call): Likewise.
6185         * cvt.c (cp_convert_to_pointer): Likewise.
6186         (convert_to_pointer_force): Likewise.
6187         (build_up_reference): Likewise.
6188         (convert_pointer_to_real): Remove.
6189         (convert_pointer_to): Remove.
6190         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
6191         instead of convert_pointer_to_vbase & build_vbase_path.
6192         (emit_base_init): Use build_base_path instead of
6193         convert_pointer_to_real.
6194         (expand_virtual_init): Lose unrequired conversions.
6195         (resolve_offset_ref): Use lookup_base and build_base_path
6196         instead of convert_pointer_to.
6197         * rtti.c (build_dynamic_cast_1): Use lookup_base &
6198         build_base_path instead of get_base_distance & build_vbase_path.
6199         * search.c (get_vbase_1): Remove.
6200         (get_vbase): Remove.
6201         (convert_pointer_to_vbase): Remove.
6202         (lookup_base_r): New function.
6203         (lookup_base): New function.
6204         * typeck.c (require_complete_type): Use lookup_base &
6205         build_base_path instead of convert_pointer_to.
6206         (build_component_ref): Likewise.
6207         (build_x_function_call): Likewise.
6208         (get_member_function_from_ptrfunc): Likewise.
6209         (build_component_addr): Likewise.
6210         * typeck2.c (build_scoped_ref): Likewise.
6211
6212 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
6213
6214         * cp-tree.h (CP_TYPE_QUALS): Removed.
6215         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
6216         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
6217         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
6218         * dump.c (cp_dump_tree): Use void* dump_info argument to match
6219         lang-hooks prototype.
6220         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
6221         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
6222         CP_TYPE_QUALS changed to cp_type_quals.
6223         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
6224         (CXX_C_OBJS): Remove c-dump.o.
6225
6226 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
6227
6228         PR c++/3637
6229         * pt.c (lookup_template_class): Ensure that all specializations
6230         are registered on the list corresponding to the most general
6231         template.
6232
6233 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
6234
6235         * call.c (non_reference): Add documentation.
6236         (convert_class_to_reference): Do not strip reference types
6237         from conversion operators.
6238         (maybe_handle_ref_bind): Simplify.
6239         (compare_ics): Correct handling of references.
6240
6241 2001-11-19  John Wilkinson <johnw@research.att.com>
6242
6243         * dump.c (dump_op): New function.
6244         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
6245         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
6246         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
6247
6248 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
6249
6250         PR4629
6251         * semantics.c (finish_sizeof): Make sure that expression created
6252         while processing a template do not have a type.
6253         (finish_alignof): Likewise.
6254         * typeck.c (c_sizeof): Likewise.
6255         (expr_sizeof): Likewise.
6256
6257 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
6258
6259         * lex.c (cxx_finish): Call c_common_finish.
6260         (finish_parse): Remove.
6261
6262 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6263
6264         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
6265         when displaying error message about missing array bounds.
6266
6267 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6268
6269         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
6270         CONST_CAST_EXPR.
6271         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
6272
6273 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
6274
6275         * cp-tree.h (print_class_statistics): Restore.
6276
6277 2001-11-15  Jason Merrill  <jason@redhat.com>
6278
6279         * method.c (use_thunk): Don't emit debugging information for thunks.
6280
6281         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
6282         * decl.c (make_typename_type): Handle getting a class template.
6283         * search.c (lookup_field_r): A class template is good enough for
6284         want_type.
6285
6286         * call.c (convert_like_real): Only use cp_convert for the bad part.
6287         (standard_conversion): Also allow bad int->enum.
6288         * typeck.c (ptr_reasonably_similar): Also allow functions to
6289         interconvert.  Pointers to same-size integers are reasonably
6290         similar.
6291
6292         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
6293         give it void type.
6294
6295 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
6296
6297         PR g++/3154
6298         * init.c (sort_base_init): Remove unreachable code.
6299         (expand_member_init): Adjust comment to reflect reality. Simplify
6300         and remove unreachable code.
6301
6302 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
6303
6304         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
6305         (cxx_init): Update prototype.
6306         * decl.c (init_decl_processing): Rename.  Move null node init
6307         to its creation time.
6308         * lex.c (cxx_init_options): Update.
6309         (cxx_init): Combine with old init_parse; also call
6310         cxx_init_decl_processing.
6311
6312 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
6313
6314         * decl.c (check_initializer): Try to complete the type of an
6315         array element before checking whether it's complete.  Don't
6316         complain about arrays with complete element types but an
6317         unknown size.
6318         (cp_finish_decl): Build the hierarchical constructor before
6319         calling maybe_deduce_size_from_array_init.
6320
6321 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
6322
6323         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
6324
6325 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
6326
6327         PR g++/4206
6328         * parse.y (already_scoped_stmt): Remove.
6329         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
6330
6331 2001-11-12  H.J. Lu <hjl@gnu.org>
6332
6333         * cvt.c (ocp_convert): Don't warn the address of a weak
6334         function is always `true'.
6335
6336 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
6337
6338         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
6339         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
6340         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
6341         * cp-tree.h (print_class_statistics): Remove.
6342         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
6343         cxx_print_identifier, cxx_set_yydebug): New.
6344         * lex.c (set_yydebug): Rename c_set_yydebug.
6345         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
6346         lang_print_xnode): Rename.
6347         * tree.c (print_lang_statistics): Rename.
6348
6349 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6350
6351         * class.c (dump_array): Fix format specifier warning.
6352
6353 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
6354
6355         * cp-lang.c (LANG_HOOKS_NAME): Override.
6356         (struct lang_hooks): Constify.
6357         * lex.c (cxx_init_options): Update.
6358         (lang_identify): Remove.
6359         * parse.y (language_string): Remove.
6360
6361 2001-11-08  Andreas Franck  <afranck@gmx.de>
6362
6363         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
6364         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
6365         suggested by autoconf.
6366         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
6367         (c++.install-common): Use the transformed target alias names.
6368
6369 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
6370
6371         * Make-lang.in: Update.
6372         * cp-lang.c: Include langhooks-def.h.
6373
6374 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6375
6376         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
6377
6378 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6379
6380         * lex.c (copy_lang_type): Add static prototype.
6381
6382 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6383
6384         * pt.c (unify): Handle SCOPE_REF.
6385
6386 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
6387
6388         * tree.c (cp_copy_res_decl_for_inlining): Adjust
6389         DECL_ABSTRACT_ORIGIN for the return variable.
6390
6391 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
6392
6393         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
6394
6395 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
6396
6397         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
6398         semantics.c, spew.c: Fix spelling errors.
6399
6400 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6401
6402         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
6403
6404 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
6405
6406         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
6407         pop_everything.
6408
6409 Tue Oct 23 14:00:20 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6410
6411         * cp-lang.c (cxx_get_alias_set): New function.
6412         Point LANG_HOOKS_GET_ALIAS_SET to it.
6413
6414 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6415
6416         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
6417         * cp-tree.h (make_unbound_class_template): Prototype new function.
6418         * decl.c (make_unbound_class_template): New function.
6419         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
6420         * error.c (dump_type): Likewise.
6421         * mangle.c (write_type): Likewise.
6422         * parse.y (template_parm): Likewise.
6423         (template_argument): Use make_unbound_class_template.
6424         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
6425         (tsubst): Likewise.
6426         (tsubst_copy): Likewise.
6427         (unify): Likewise.
6428         * tree.c (walk_tree): Likewise.
6429         * typeck.c (comptypes): Likewise.
6430
6431 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6432
6433         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
6434         extra calls into fewer ones.
6435
6436 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
6437
6438         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
6439         Warn when merging inline with attribute noinline.
6440         (start_decl, start_function): Warn if inline and attribute
6441         noinline appear in the same declaration.
6442
6443 2001-10-16  H.J. Lu <hjl@gnu.org>
6444
6445         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
6446         for tree checking disabled.
6447
6448 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
6449
6450         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
6451         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
6452
6453 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
6454
6455         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
6456         (unify): Only handle MINUS_EXPR specially if the above flag is set
6457         and the subtracted constant is 1.  Clear the flag on recursive calls.
6458         Set it when unifying the maximum value in an INTEGER_TYPE's range.
6459
6460 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
6461
6462         * decl.c (bad_specifiers): Don't allow exception specifications
6463         on any typedefs.
6464
6465 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
6466
6467         * cp/lex.c (init_cp_pragma): Similarly.
6468
6469 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6470
6471         * pt.c (lookup_template_class): Build complete template arguments
6472         for BOUND_TEMPLATE_TEMPLATE_PARM.
6473
6474 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6475
6476         * cp-tree.h (TYPE_BINFO): Update comment.
6477         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
6478         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
6479         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
6480         (copy_type): Prototype new function.
6481         * lex.c (copy_lang_decl): Gather tree node statistics.
6482         (copy_lang_type): New function.
6483         (copy_type): Likewise.
6484         (cp_make_lang_type): Create lang_type for
6485         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
6486         and BOUND_TEMPLATE_TEMPLATE_PARM.
6487         * pt.c (tsubst): Use copy_type instead of copy_node.
6488         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
6489
6490 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6491
6492         * pt.c (determine_specialization): Ignore functions without
6493         DECL_TEMPLATE_INFO.
6494
6495 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
6496
6497         PR g++/4476
6498         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
6499
6500 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
6501
6502         * typeck2.c (store_init_value): Don't re-digest a bracketed
6503         initializer.
6504
6505         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
6506         ANON_AGGR_TYPE_P.
6507
6508 2001-10-11  Richard Henderson  <rth@redhat.com>
6509
6510         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
6511         of an asm statement.
6512         (build_vtbl_ref_1): Split out from build_vtbl_ref.
6513         (build_vfn_ref): Use it to handle vtable descriptors before
6514         calling build_vtable_entry_ref.
6515         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
6516
6517 2001-10-10  Richard Henderson  <rth@redhat.com>
6518
6519         * parse.y (asm_operand): Allow named operands.
6520         * semantics.c (finish_asm_stmt): Tweek for changed location
6521         of the operand constraint.
6522
6523 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
6524
6525         * call.c (standard_conversion): Add bad conversion between
6526         integers and pointers.
6527         (convert_like_real): Don't use convert_for_initialization for bad
6528         conversions; complain here and use cp_convert.
6529         (build_over_call): Don't handle bad conversions specially.
6530         (perform_implicit_conversion): Allow bad conversions.
6531         (can_convert_arg_bad): New fn.
6532         * cp-tree.h: Declare it.
6533         * typeck.c (convert_for_assignment): Use it.
6534         (ptr_reasonably_similar): Any target type is similar to void.
6535
6536 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
6537
6538         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
6539         (cp/cp-lang.o): New rule.
6540         * cp-tree.h: Declare hooks.
6541         * tree.c: Make hooks non-static.
6542         (init_tree): Don't initialize hooks here.
6543         * lex.c: Likewise.  Move definition of lang_hooks to...
6544         * cp-lang.c: ... new file.
6545
6546 2001-10-08  Richard Henderson  <rth@redhat.com>
6547
6548         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
6549         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
6550
6551 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6552
6553         * class.c (build_vtable_entry_ref): Const-ify.
6554         * decl.c (predefined_identifier,
6555         initialize_predefined_identifiers): Likewise.
6556         * init.c (build_new_1): Likewise.
6557         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
6558         Likewise.
6559
6560 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
6561
6562         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
6563         (INSNS_PER_STMT): Likewise.
6564         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
6565         (copy_body, initialize_inlined_parameters): Likewise.
6566         (declare_return_variable, inlinable_function_p): Likewise.
6567         (expand_call_inline, expand_calls_inline): Likewise.
6568         (optimize_inline_calls, clone_body): Likewise.
6569         * tree.c (walk_tree): Moved to ../tree-inline.c.
6570         (walk_tree_without_duplicates): Likewise.
6571         (copy_tree_r, remap_save_expr): Likewise.
6572
6573 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
6574
6575         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
6576         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
6577         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
6578         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
6579         (flag_inline_trees): Moved declaration to ../tree-inline.h.
6580         (walk_tree): Moved declaration to ../tree-inline.h.
6581         (walk_tree_without_duplicates, copy_tree_r): Likewise.
6582         (remap_save_expr): Likewise.
6583         * decl.c: Include tree-inline.h.
6584         (lang_mark_tree): Don't mark inlined_fns.
6585         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
6586         * optimize.c: Include tree-inline.h.
6587         (optimize_inline_calls): Move declaration to ../tree.h, as
6588         non-static.
6589         (remap_decl): Use language-independent constructs and hooks.
6590         (remap_block, copy_body_r, declare_return_variable): Likewise.
6591         (inlinable_function_p): Likewise.  Don't test for
6592         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
6593         no longer language-specific.
6594         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
6595         call of dump_function to...
6596         (optimize_function): Here...
6597         (clone_body): New function, extracted from...
6598         (maybe_clone_body): ... here.  Build decl_map locally and pass
6599         it on to clone_body.
6600         * pt.c, semantics.c: Include tree-inline.h.
6601         * tree.c: Likewise.
6602         (cp_walk_subtrees): New language-specific hook for tree inlining.
6603         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
6604         cp_is_overload_p, cp_auto_var_in_fn_p,
6605         cp_copy_res_decl_for_inlining): Likewise.
6606         (walk_tree): Move language-specific constructs into...
6607         (cp_walk_subtrees): this new function.
6608         (copy_tree_r): Use language-independent constructs and hooks.
6609         (init_tree): Initialize tree inlining hooks.
6610         (remap_save_expr): Adjust prototype so that the declaration
6611         does not require the definition of splay_tree.
6612
6613 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6614
6615         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
6616         to build the declaration instead of the declaration itself.
6617
6618 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
6619
6620         * decl2.c (cxx_decode_option): Add 'else'.
6621
6622         * spew.c (end_input): No longer static.
6623         * cp-tree.h: Declare it.
6624         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
6625
6626 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6627
6628         * call.c (build_over_call), typeck.c (build_function_call_real):
6629         Pass type attributes to check_function_format rather than name or
6630         assembler name.  Don't require there to be a name or assembler
6631         name to check formats.
6632
6633 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6634
6635         * decl.c (init_decl_processing): Don't call
6636         init_function_format_info.  Initialize lang_attribute_table
6637         earlier.
6638         (builtin_function): Call decl_attributes.
6639         (insert_default_attributes): New.
6640
6641 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
6642
6643         * decl.c (grokdeclarator): Copy array typedef handling from C
6644         frontend.
6645
6646         * decl.c (grokdeclarator): Copy too-large array handling from C
6647         frontend.
6648
6649 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
6650
6651         * config-lang.in (target_libs): Added target-gperf, so that we
6652         don't try to build it if C++ is disabled.
6653
6654 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
6655
6656         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
6657         (cp/errfn.o): Delete rule.
6658         (cp/error.o): Depend on flags.h.
6659         * errfn.c: Delete file.
6660         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
6661         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
6662         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
6663         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
6664         internal_error respectively.  Make cp_deprecated into a macro.
6665         Don't define cp_printer typedef or declare cp_printers.
6666         * error.c: Include flags.h.
6667         Delete: struct tree_formatting_info, print_function_argument_list,
6668         print_declaration, print_expression, print_function_declaration,
6669         print_function_parameter, print_type_id, print_cv_qualifier_seq,
6670         print_type_specifier_seq, print_simple_type_specifier,
6671         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
6672         print_parameter_declaration_clause, print_exception_specification,
6673         print_nested_name_specifier, and definition of cp_printers.
6674         (locate_error): New function.
6675         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
6676         rewritten in terms of locate_error and diagnostic.c.
6677         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
6678         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
6679         (init_error): Adjust to match.
6680
6681 Sat Sep 22 09:15:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6682
6683         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
6684
6685 2001-09-21  Richard Henderson  <rth@redhat.com>
6686
6687         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
6688         (build_vtbl_initializer): Likewise.
6689         (build_vfn_ref): New.
6690         * cp-tree.h: Declare it.
6691         * call.c (build_over_call): Use it.
6692         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
6693         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
6694
6695 Fri Sep 21 08:16:19 2001  J"orn Rennecke <amylaar@redhat.com>
6696
6697         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
6698
6699 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
6700
6701         Table-driven attributes.
6702         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
6703         * decl2.c (cplus_decl_attributes): Only take one attributes
6704         parameter.
6705         * cp-tree.c (cplus_decl_attributes): Update prototype.
6706         * class.c (finish_struct), decl.c (start_decl, start_function),
6707         decl2.c (grokfield), friend.c (do_friend), parse.y
6708         (parse_bitfield): Update calls to cplus_decl_attributes.
6709         * decl.c (grokdeclarator): Take a pointer to a single ordinary
6710         attribute list.
6711         * decl.h (grokdeclarator): Update prototype.
6712         * decl2.c (grokfield): Take a single ordinary attribute list.
6713         * friend.c (do_friend): Likewise.
6714         * decl.c (shadow_tag, groktypename, start_decl,
6715         start_handler_parms, grokdeclarator, grokparms, start_function,
6716         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
6717         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
6718         (process_template_parm, do_decl_instantiation): Pass single
6719         ordinary attribute lists around.
6720         * decl.c (grokdeclarator): Correct handling of nested attributes.
6721         Revert the patch
6722         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
6723                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
6724                 not the left.
6725         .
6726         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
6727         (cp_attribute_table): Declare.
6728         * decl.c (valid_lang_attribute): Don't define.
6729         (lang_attribute_table): Define.
6730         (init_decl_processing): Initialize lang_attribute_table instead of
6731         valid_lang_attribute.
6732         * tree.c (cp_valid_lang_attribute): Remove.
6733         (handle_java_interface_attribute, handle_com_interface_attribute,
6734         handle_init_priority_attribute): New functions.
6735         (cp_attribute_table): New array.
6736         * decl2.c (import_export_class): Don't use
6737         targetm.valid_type_attribute.
6738
6739 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
6740
6741         * Make-lang.in (cp/error.o): Depend on real.h
6742         * error.c: #include "real.h"
6743
6744 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6745
6746         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
6747         xmalloc/strcpy/strcat.
6748
6749 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6750
6751         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
6752         Const-ification.
6753         * pt.c (tsubst_decl): Likewise.
6754
6755 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6756
6757         * decl2.c (lang_f_options): Const-ification.
6758         * lex.c (cplus_tree_code_name): Likewise.
6759         * spew.c (yyerror): Likewise.
6760
6761 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
6762
6763         PR c++/3986
6764         * class.c (force_canonical_binfo_r): Check & move an indirect
6765         primary base first.
6766         (force_canonical_binfo): Check that it's not already
6767         canonical.
6768         (mark_primary_virtual_base): Remove BINFO parameter.
6769         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
6770
6771 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
6772
6773         Remove TYPE_NONCOPIED_PARTS.
6774         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
6775         CLASSTYPE_PURE_VIRTUALS.
6776         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
6777         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
6778         (layout_class_type): Don't call fixup_inline_methods here ...
6779         (finish_struct_1): ... call it here.
6780
6781 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
6782
6783         * decl.c (duplicate_decls): Remove code deadling with
6784         DECL_SAVED_INSNS.
6785         * decl2.c (finish_file): Likewise.
6786         * pt.c (instantiate_decl): Likewise.
6787         * semantics.c (expand_body): Don't defer local functions if
6788         they wouldn't be deferred for some other reason.  Don't
6789         generate RTL for functions that will not be emitted.
6790         (genrtl_start_function): Remove code deadling with
6791         DECL_SAVED_INSNS.
6792         (genrtl_finish_function): Likewise.
6793
6794 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
6795
6796         PR c++/4203
6797         * call.c (build_over_call): Do not optimize any empty base
6798         construction.
6799
6800 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6801
6802         * error.c (dump_template_decl): Output template parameters
6803         together with their specifiers.
6804         Output `class' prefix for template template parameter.
6805         (dump_decl): Fix formatting.
6806
6807 2001-08-30  Kurt Garloff  <garloff@suse.de>
6808
6809         * optimize.c (inlinable_function_p): Allow only smaller single
6810         functions. Halve inline limit after reaching recursive limit.
6811
6812 2001-08-30  Joern Rennecke <amylaar@redhat.com>
6813             Jason Merrill  <jason_merrill@redhat.com>
6814
6815         * class.c (build_vtable_entry_ref): Subtract in char*, not
6816         ptrdiff_t.
6817
6818 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
6819
6820         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
6821         (build_cplus_array_type): Use cp_build_qualified_type, not
6822         TYPE_MAIN_VARIANT, to get an unqualified version.
6823
6824         * decl2.c (grok_alignof): Lose.
6825         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
6826         * typeck.c (c_alignof): Lose.
6827         * semantics.c (finish_sizeof, finish_alignof): New.
6828         * parse.y: Use them.
6829         * cp-tree.h: Declare them.
6830
6831 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
6832
6833         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
6834         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
6835         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
6836
6837 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
6838
6839         * typeck2.c (add_exception_specifier): Only require complete type if
6840         not in processing template declaration.
6841
6842 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6843
6844         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
6845         GNU_xref_start_scope and GNU_xref_end_scope.
6846
6847         * tree.c (TYPE_HASH): Moved to ../tree.h.
6848
6849 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
6850
6851         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
6852         on COMPOUND_EXPRs.
6853
6854 2001-08-14  Richard Henderson  <rth@redhat.com>
6855
6856         * class.c, cp-tree.h (build_vfn_ref): Remove.
6857         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
6858
6859 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
6860
6861         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
6862         empty class assignment as having side-effects to avoid
6863         spurious warnings.
6864
6865 2001-08-13  Zack Weinberg  <zackw@panix.com>
6866
6867         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
6868         * except.c: Include libfuncs.h.
6869
6870 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
6871
6872         * decl.c (grokdeclarator): Clarify diagnostic message.
6873
6874 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6875
6876         * decl2.c (do_nonmember_using_decl): Replace using directive
6877         with using declaration in the error message.
6878
6879 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6880
6881         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
6882         criterion to avoid rebuilding expression tree instead of
6883         processing_template_decl.
6884
6885 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
6886
6887         Support named return value optimization for inlines, too.
6888         * decl.c (finish_function): Nullify returns here.
6889         * semantics.c (genrtl_start_function): Not here.
6890         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
6891         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
6892         Also nullify the CLEANUP_STMT for the nrv.
6893         * cp-tree.h: Declare it.
6894         * optimize.c (declare_return_variable): Replace the nrv with the
6895         return variable.
6896         * typeck.c (check_return_expr): Be more flexible on alignment check.
6897         Ignore cv-quals when checking for a matching type.
6898
6899 2001-08-09  Richard Henderson  <rth@redhat.com>
6900
6901         * decl2.c (finish_objects): Use target hooks instead of
6902         assemble_constructor and assemble_destructor.
6903
6904 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6905
6906         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
6907
6908 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
6909
6910         PR c++/3820
6911         Stop using TYPE_NONCOPIED_PARTS.
6912         * call.c (build_over_call): Be careful when copy constructing
6913         or assigning to an empty class.
6914         * class.c (check_bases_and_members): It has a
6915         COMPLEX_ASSIGN_REF if it has a vptr.
6916         (layout_class_type): Don't add empty class padding to
6917         TYPE_NONCOPIED_PARTS.
6918         (finish_struct_1): Don't add the VFIELD either.
6919         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
6920         initialization.
6921
6922 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
6923
6924         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
6925
6926 2001-08-06  Richard Henderson  <rth@redhat.com>
6927
6928         * decl2.c (finish_objects): Pass a symbol_ref and priority to
6929         assemble_{constructor,destructor}.  Remove priority handling.
6930
6931 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
6932
6933         Don't allow template-id in using-declaration.
6934         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
6935         (do_class_using_decl): Likewise.
6936
6937 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
6938
6939         * cp/spew.c (read_token): No need to pop buffers.
6940
6941 2001-08-02  Stan Shebs  <shebs@apple.com>
6942
6943         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
6944         (fnaddr_from_vtable_entry): Remove decl.
6945         * method.c (use_thunk): Update comment.
6946
6947 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
6948
6949         * repo.c (get_base_filename): Change return value to const char
6950         pointer.
6951
6952 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
6953
6954         Kill -fhonor-std.
6955         * NEWS: Document.
6956         * cp-tree.h (flag_honor_std): Remove.
6957         (CPTI_FAKE_STD): Remove.
6958         (std_node): Remove comment about it being NULL.
6959         (fake_std_node): Remove.
6960         * decl.c (in_fake_std): Remove.
6961         (walk_namespaces_r): Remove fake_std_node check.
6962         (push_namespace): Remove in_fake_std code.
6963         (pop_namespace): Likewise.
6964         (lookup_name_real): Remove fake_std_node check.
6965         (init_decl_processing): Always create std_node. Always add
6966         std:: things there.
6967         (builtin_function): Always put non '_' fns in std.
6968         * decl2.c (flag_honor_std): Remove.
6969         (lang_f_options): Remove honor-std.
6970         (unsupported_options): Add honor-std.
6971         (set_decl_namespace): Remove fake_std_node check.
6972         (validate_nonmember_using_decl): Likewise.
6973         (do_using_directive): Likewise.
6974         (handle_class_head): Likewise.
6975         * dump.c (cp_dump_tree): Likewise.
6976         * except.c (init_exception_processing): Adjust.
6977         * init.c (build_member_call): Remove fake_std_node check.
6978         (build_offset_ref): Likewise.
6979         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
6980         * rtti.c (init_rtti_processing): Adjust.
6981
6982 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
6983
6984         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
6985         operand while calling cp_tree_equal.
6986
6987 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
6988
6989         The 3.0 ABI no longer has vbase pointer fields.
6990         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
6991         FORMAT_VBASE_NAME): Remove.
6992         * method.c (do_build_copy_constructor): Adjust.
6993         (do_build_assign_ref): Adjust.
6994         * search.c (lookup_field_r): Adjust.
6995         * typeck.c (build_component_ref): Adjust.
6996
6997         The 3.0 ABI always has a vtable pointer at the start of every
6998         polymorphic class.
6999         * rtti.c (build_headof_sub): Remove.
7000         (build_headof): Adjust.
7001         (get_tinfo_decl_dynamic): No need to check flag_rtti
7002         here. Adjust.
7003         (create_real_tinfo_var): Explain why we need a hidden name.
7004
7005 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
7006
7007         PR c++/3631
7008         * class.c (update_vtable_entry_for_fn): The fixed adjustment
7009         of a virtual thunk should be from declaring base.
7010
7011 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
7012
7013         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
7014         the shared virtual base, so preserving inheritance graph order.
7015
7016 2001-07-30  Andreas Jaeger  <aj@suse.de>
7017
7018         * decl2.c: Remove unused var global_temp_name_counter.
7019
7020 2001-07-28  Richard Henderson  <rth@redhat.com>
7021
7022         * method.c (pending_inlines): Remove.
7023
7024 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
7025
7026         * class.c (mark_primary_virtual_base): Don't adjust base
7027         offsets here.
7028         (dfs_unshared_virtual_bases): Adjust them here.
7029         (mark_primary_bases): Explain why we adjust at the end.
7030
7031 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
7032
7033         * class.c (finish_struct_1): When copying the primary base's
7034         VFIELD, make sure we find it is at offset zero.
7035
7036 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7037
7038         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
7039         tsubst_expr for default template arguments.
7040
7041 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
7042
7043         PR c++/3621
7044         * spew.c (yylex): Only copy the token's lineno, if it is
7045         nonzero.
7046
7047 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
7048
7049         PR c++/3624
7050         * call.c (resolve_args): Simplify, call
7051         convert_from_reference.
7052         (build_new_op): Resolve and convert from reference ARG1
7053         earlier. Adjust ARG2 & ARG3 resolve and conversion.
7054
7055 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
7056
7057         * decl.c (last_function_parm_tags): Remove.
7058         (current_function_parm_tags): Remove.
7059         (init_decl_processing): Adjust.
7060         (start_function): Adjust.
7061         (store_parm_decls): Adjust.
7062
7063         PR c++/3152
7064         * decl.c (grokdeclarator): Detect when a function typedef is
7065         declaring a function, and create last_function_parms correctly.
7066
7067 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
7068
7069         * call.c (joust): Only prefer a non-builtin candidate to a builtin
7070         one if they have the same signature.
7071
7072         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
7073         it rather than toplevel_bindings_p.  Give it a mangled name if static.
7074         (convert_to_reference): Adjust.
7075         * decl2.c (get_temp_name): Lose.
7076         * mangle.c (mangle_ref_init_variable): New fn.
7077         (mangle_guard_variable): Strip the ref-init header.
7078         * cp-tree.h: Adjust.
7079         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
7080         initializer.
7081         (grok_reference_init): Always use DECL_INITIAL.
7082
7083 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
7084
7085         PR c++/3416
7086         * call.c (build_conditional_expr): Recheck args after
7087         conversions.
7088         * cp-tree.h (build_conditional_expr): Move to correct file.
7089         * typeck.c (decay_conversion): Diagnose any unknown types
7090         reaching here.
7091         (build_binary_op): Don't do initial decay or default
7092         conversions on overloaded functions.
7093         (build_static_cast): Don't do a decay conversion here.
7094
7095 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
7096
7097         PR c++/3543
7098         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
7099         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
7100
7101 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
7102
7103         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
7104         (create_vtbl_ptr): ... here.
7105
7106 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
7107
7108         * class.c (build_vbase_offset_vbtl_entries): Look for
7109         non-primary base of which we are a sub vtable.
7110
7111 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
7112
7113         * semantics.c (finish_this_expr):  Remove unused code.
7114
7115 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
7116
7117         Simplify rtti, now we've only one ABI.
7118         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
7119         CPTI_TINFO_VAR_ID.
7120         (tinfo_decl_id, tinfo_var_id): Remove.
7121         (get_typeid_1): Remove.
7122         * rtti.c
7123         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
7124         (typeid_ok_p): New function.
7125         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
7126         (get_tinfo_decl): Remove old abi documentation.
7127         (tinfo_from_decl): Remove.
7128         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
7129         (get_typeid_1): Remove.
7130         (get_base_offset): Remove.
7131         (synthesize_tinfo_var): Absorb get_base_offset.
7132         (create_real_tinfo_var): Don't use tinfo_decl_id.
7133
7134 2001-07-23  Graham Stott  <grahams@redhat.com>
7135
7136         * cp/class.c (type_requires_array_cookie): Fix use of uninitialized
7137         variable has_two_argument_delete_p.
7138
7139 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
7140
7141         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
7142         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
7143         (CPTI_INDEX_IDENTIFIER): Remove.
7144         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
7145         (delta2_identifier): Remove.
7146         (index_identifier): Remove.
7147         (pfn_or_delta2_identifier): Remove.
7148         (flag_vtable_thunks): Remove.
7149         (VTABLE_DELTA2_NAME): Remove.
7150         (VTABLE_INDEX_NAME): Remove.
7151         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
7152         (vfunc_ptr_type_node): Adjust.
7153         (VTABLE_NAME_PREFIX): Adjust.
7154         (build_vfn_ref): Lose first parameter.
7155         (fixup_all_virtual_upcast_offsets): Remove.
7156         * decl.c (initialize_predefined_identifiers): Remove
7157         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
7158         (init_decl_processing): Remove no-vtable-thunk code.
7159         * decl2.c (flag_vtable_thunks): Remove.
7160         (mark_vtable_entries): Remove no-vtable-thunk code.
7161         * error.c (dump_decl): Remove no-vtable-thunk code.
7162         (dump_expr): Adjust ptr to member function code.
7163         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
7164         code.
7165         * rtti.c (build_headof): Remove no-vtable-thunk code.
7166         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
7167         * search.c (get_base_distance): Remove expand_upcast_fixups case.
7168         (virtual_context) Remove.
7169         (expand_upcast_fixups): Remove.
7170         (fixup_virtual_upcast_offsets): Remove.
7171         (fixup_all_virtual_upcast_offsets): Remove.
7172         * typeck.c (get_member_function_from_ptrfunc): Remove
7173         no-vtable-thunk code.
7174         * call.c (build_over_call): Adjust call to build_vfn_ref.
7175         * class.c (build_vfn_ref): Lose first parameter. Remove
7176         no-vtable-thunk code.
7177         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
7178         (build_vtable_entry): Remove no-vtable-thunk code.
7179
7180 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
7181
7182         Remove old-abi remnants. Remove comments about old abi
7183         behavior. Remove references to 'new-abi' in comments.
7184         * cp-tree.h: Adjust comments.
7185         (vbase_offsets_in_vtable_p): Delete.
7186         (vcall_offsets_in_vtable_p): Delete.
7187         (vptrs_present_everywhere_p): Delete.
7188         (all_overridden_vfuns_in_vtables_p): Delete.
7189         (merge_primary_and_secondary_vtables_p): Delete.
7190         (TYPE_CONTAINS_VPTR_P): Adjust.
7191         (VTT_NAME_PREFIX): Remove.
7192         (CTOR_VTBL_NAME_PREFIX): Remove.
7193         (init_vbase_pointers): Remove.
7194         * class.c: Adjust coments.
7195         (build_vbase_pointer_fields): Delete.
7196         (build_vbase_pointer): Remove old-abi code.
7197         (build_secondary_vtable): Likewise.
7198         (modify_all_vtables): Likewise.
7199         (create_vtable_ptr): Likewise.
7200         (layout_class_type): Likewise.
7201         (finish_struct_1): Likewise.
7202         (finish_vtbls): Likewise.
7203         (dfs_finish_vtbls): Delete.
7204         (build_vbase_offset_vtbl_entries): Remove old-abi code.
7205         * cvt.c: Adjust comments.
7206         * decl.c: Adjust comments.
7207         * decl2.c: Adjust comments.
7208         * init.c: Adjust comments.
7209         (construct_virtual_bases): Remove old-abi code.
7210         * lang-specs.h: Remove -fno-new-abi.
7211         * mangle.c: Adjust comments.
7212         * rtti.c: Adjust comments.
7213         (get_base_offset): Remove old-abi-code.
7214         * search.c: Adjust comments.
7215         (dfs_init_vbase_pointers): Remove.
7216         (dfs_vtable_path_unmark): Remove.
7217         (init_vbase_pointers): Remove.
7218         * semantics.c: Adjust comments.
7219         (emit_associated_thunks): Remove old-abi code.
7220         * typeck.c: Adjust comments.
7221
7222 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
7223
7224         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
7225         params.h.
7226
7227 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
7228
7229         * class.c (finish_struct_anon): Forbid nested classes.
7230
7231 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
7232
7233         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
7234         * optimize.c: Include debug.h.
7235         (maybe_clone_body): Use debug hook.
7236         * semantics.c: Include debug.h.
7237         (expand_body): Use debug hook.
7238
7239 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
7240
7241         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
7242
7243 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
7244
7245         * class.c (type_requires_array_cookie): New function.
7246         (check_methods): Don't try to figure out whether the type needs a
7247         cookie here.
7248         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
7249         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
7250         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
7251         * pt.c (instantiate_class_template): Don't set
7252         TYPE_VEC_DELETE_TAKES_SIZE.
7253         * NEWS: Document ABI changes from GCC 3.0.
7254
7255 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
7256             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7257
7258         * NEWS (Changes in GCC 3.0): Fix typo.
7259
7260 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
7261
7262         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
7263         which attributes are to be attached, and a flags argument.  Update
7264         call to decl_attributes.
7265         (grokfield): Update call to decl_attributes.
7266         * class.c (finish_struct): Update call to cplus_decl_attributes.
7267         * cp-tree.h (cplus_decl_attributes): Update prototype.
7268         * decl.c (start_decl, grokdeclarator, start_function): Update
7269         calls to decl_attributes and cplus_decl_attributes.
7270         * friend.c (do_friend): Update call to cplus_decl_attributes.
7271         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
7272
7273 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
7274
7275         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
7276         for `register' variables with an asm-specification.
7277
7278 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
7279
7280         * semantics.c (finish_asm_stmt): Mark the output operands
7281         to an asm addressable, if necessary.
7282
7283 2001-07-11  Ben Elliston  <bje@redhat.com>
7284
7285         * Revert this change -- there is a subtle bug.
7286
7287         PR c++/80
7288         * decl.c (finish_enum): New "attributes" argument; pass it to
7289         cplus_decl_attributes.  Use a narrower type if the enum is packed.
7290         * cp-tree.h (finish_enum): Adjust prototype.
7291         * parse.y (enum_head): New non-terminal.
7292         (structsp): Use it. Enums now may be preceded or followed by
7293         optional attributes -- pass their chained tree to finish_enum().
7294         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
7295
7296 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
7297
7298         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
7299         variables.
7300
7301 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
7302
7303         * semantics.c (cp_expand_stmt): Fix for null
7304         current_function_return_value.
7305
7306 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
7307
7308         * call.c (build_op_delete_call): Initialize fn.
7309         (convert_like_real): Delete conditional.
7310         (joust): Initialize *w and *l.
7311         * class.c: Add prototype for binfo_ctor_vtable.
7312         (get_primary_binfo): Initialize result.
7313         * init.c (build_java_class_ref): Initialize name.
7314
7315 2001-07-09  Erik Rozendaal  <dlr@acm.org>
7316
7317         * typeck.c (unary_complex_lvalue): Do not duplicate the
7318         argument to modify, pre-, or post-increment when used as an
7319         lvalue and when the argument has side-effects.
7320
7321 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
7322
7323         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
7324         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
7325         cplus_decl_attributes even if attrs is NULL.
7326         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
7327
7328 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
7329
7330         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
7331         calls to decl_attributes.
7332
7333 2001-07-06  Ira Ruben   <ira@apple.com>
7334
7335         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
7336         be DECL_TEMPLATE_RESULT.
7337
7338 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7339
7340         * cp-tree.h (copy_template_template_parm): Rename to ...
7341         (bind_template_template_parm): ... here.
7342         * tree.c (copy_template_template_parm): Rename to ...
7343         (bind_template_template_parm): ... here.  Remove the case when
7344         NEWARGS is NULL_TREE.
7345         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
7346         BOUND_TEMPLATE_TEMPLATE_PARM.
7347         * pt.c (lookup_template_class): Adjust.
7348
7349 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
7350
7351         * cvt.c (convert_lvalue): New fn.
7352         * cp-tree.h: Declare it.
7353         * method.c (do_build_assign_ref): Use it.
7354         (do_build_copy_constructor): Convert parm to base types
7355         before calling base constructors.
7356
7357         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
7358         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
7359         optimize.
7360         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
7361
7362 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
7363
7364         * optimize.c (optimize_inline_calls): New function, broken out
7365         of ...
7366         (optimize_function): ... here. Call it. Don't inline if it is
7367         a thunk.
7368         (dump_function): Print name of dump flag causing this dump.
7369         * semantics.c (expand_body): Move thunk inline check to
7370         optimize_function.
7371
7372 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
7373
7374         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
7375         (comptypes): Use target.comp_type_attributes.
7376
7377 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
7378
7379         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
7380
7381 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
7382
7383         * error.c (lang_print_error_function): Add a `diagnostic_context *'
7384         parameter. Tweak.
7385
7386 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
7387
7388         * decl2.c (import_export_class): Update.
7389
7390 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
7391
7392         * error.c (init_error): Adjust settings.
7393
7394 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
7395
7396         * error.c (init_error): Adjust settings.
7397
7398 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
7399
7400         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
7401         return pointers to data members by reference rather than by value.
7402
7403 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
7404
7405         Implement the Named Return Value optimization.
7406         * cp-tree.h (struct cp_language_function): Add x_return_value.
7407         (current_function_return_value): Now a macro.
7408         * decl.c: Don't define it.
7409         (define_label, finish_case_label): Don't clear it.
7410         (init_decl_processing): Don't register it with GC.
7411         * semantics.c (genrtl_finish_function): Don't check it for
7412         no_return_label.  Copy the RTL from the return value to
7413         current_function_return_value and walk, calling...
7414         (nullify_returns_r): ...this new fn.
7415         * typeck.c (check_return_expr): Set current_function_return_value.
7416
7417 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
7418
7419         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
7420         sharing a ctor vtable with.  Merge code for cases 1 and 2.
7421         (binfo_ctor_vtable): New fn.
7422         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
7423
7424 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
7425
7426         * class.c (dfs_find_final_overrider): Fix logic.
7427
7428         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
7429         virtual thunk instead of non-virtual.
7430         (get_matching_virtual): Uncomment.
7431
7432         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
7433         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
7434         PARM, not ARG.
7435
7436 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
7437
7438         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
7439         we've not emerged from the hierarchy of RTTI_BINFO on reaching
7440         a non-virtual base.
7441
7442 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
7443
7444         * NEWS: Update release number.
7445
7446 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
7447
7448         PR c++/3130, c++/3131, c++/3132
7449         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
7450         * class.c (force_canonical_binfo_r): Move
7451         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
7452         virtual bases unless they're primary and what they're primary
7453         too has been moved.
7454         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
7455         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
7456         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
7457         derived binfo.
7458         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
7459         (layout_nonempty_base_or_field): Add most derived type
7460         parameter. Adjust.
7461         (layout_empty_base): Likewise.
7462         (build_base_field): Likewise.
7463         (build_base_fields): Likewise.
7464         (propagate_binfo_offsets): Add most derived type
7465         parameter. Skip non canonical virtual bases too.
7466         (dfs_set_offset_for_unshared_vbases): Don't skip primary
7467         bases. Do skip canonical bases.
7468         (layout_virtual_bases): Adjust.
7469         (layout_class_type): Adjust.
7470         (dfs_get_primary_binfo): Build list of virtual primary base
7471         candidates.
7472         (get_primary_binfo): Check that the shared virtual primary
7473         base candidate was found first.
7474         (accumulate_vtbl_inits): Don't do anything for non-vptr
7475         containing binfos. For case 1 primary virtual bases, keep
7476         checking that we've not emerged from the hierarchy of RTTI_BINFO.
7477
7478 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
7479
7480         PR c++/3089
7481         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
7482         hierarchy looking for primary bases for a ctor
7483         vtable. Recursively call oneself, if we meet our primary via
7484         this route and haven't met it yet via inheritance graph order.
7485
7486 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
7487
7488         * lang-options.h: Emit documentation for -fno-honor-std, not
7489         -fhonor-std.
7490
7491 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
7492
7493         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
7494         Don't clobber delta.
7495         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
7496
7497 2001-06-10  Mark Mitchell <mark@codesourcery.com>
7498             Gabriel Dos Reis  <gdr@codesourcery.com>
7499
7500         * Make-lang.in (cp/call.o): Depend on diagnostic.h
7501         (cp/typeck.o): Depend on diagnostic.h
7502         (cp/typeck2.o): Depend on diagnostic.h
7503         (cp/repo.o): Depend on dignostic.h
7504         * typeck.c: #include diagnostic.h
7505         (convert_for_initialization): Remove extern declaration for
7506         warningcount and errorcount.
7507
7508         * call.c: #include diagnostic.h
7509         (convert_like_real): Remove extern declaration for warnincount and
7510         errorcount.
7511
7512         * repo.c: #include diagnostic.h
7513         * typeck2.c: #include diagnostic.h
7514
7515 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
7516
7517         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
7518         in previous change.
7519
7520 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
7521
7522         PR c++/2929
7523         * friend.c (do_friend): Use push_decl_namespace for classes at
7524         namespace scope.
7525
7526 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
7527             Jason Merrill <jason_merrill@redhat.com>
7528
7529         PR c++/3061
7530         * class.c (build_secondary_vtable): Use assert, rather than an error
7531         message.
7532         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
7533         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
7534         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
7535         Don't set BINFO_VTABLE for a primary virtual base.
7536
7537 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
7538
7539         * decl.c (duplicate_decls): Update source position information
7540         when a template function is defined.
7541
7542 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
7543
7544         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
7545
7546 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
7547
7548         PR c++/2914
7549         * decl.c (pushtag): Don't push into a complete type's scope.
7550
7551 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
7552
7553         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
7554         (struct lang_decl_flags): Lose generate_with_vtable_p.
7555         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
7556         * class.c (copy_virtuals): Adjust.
7557         * decl2.c (mark_vtable_entries): Adjust.
7558         * method.c (make_thunk, build_vtable_entry): Adjust.
7559         * class.c (update_vtable_entry_for_fn): Only look as far as the
7560         first defining class.
7561         (build_vtbl_initializer): Put nothing in the slot for a function only
7562         defined in a lost primary virtual base.
7563         (add_vcall_offset_vtbl_entries_1): Use the same code for
7564         the lost primary case and the normal case.
7565         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
7566         (get_vfield_offset, get_derived_offset): Lose.
7567         (dfs_find_final_overrider): Use look_for_overrides_here.
7568         (get_matching_virtual): New fn.
7569         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
7570         not BV_VCALL_INDEX.
7571         * search.c (look_for_overrides_here): Split out from...
7572         (look_for_overrides_r): Here.
7573
7574         * class.c (find_final_overrider): Return error_mark_node on error.
7575
7576         * decl2.c (key_method): #if 0 accidental change.
7577
7578 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
7579
7580         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
7581         (build_over_call): Likewise.
7582         * decl.c (grokparms): Likewise.
7583         * pt.c (tsubst_decl): Likewise.
7584         * typeck.c (convert_arguments): Likewise.
7585
7586 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
7587
7588         * semantics.c (begin_class_definition): Robustify.
7589
7590         * pt.c (instantiate_decl): Tell the repository code about the
7591         clones, not the cloned functions.
7592         * repo.c (repo_template_used): Explicitly instantiate the cloned
7593         function, not the clones.
7594
7595 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
7596
7597         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
7598         ICS_BAD_FLAG on created conversion.
7599         (compare_ics): Break out rank.
7600
7601 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
7602
7603         * decl.c (xref_tag): Remove extraneous %s on dependent name
7604         lookup warning.
7605
7606 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
7607
7608         * class.c (layout_vtable_decl): Fix off by one error on
7609         build_index_type.
7610         (build_vtt): Likewise.
7611         (build_ctor_vtbl_group): Likewise.
7612
7613 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
7614
7615         * class.c (maybe_indent_hierarchy): New function.
7616         (dump_class_hierarchy_r): Add flags. Dump extra binfo
7617         information, if enabled. Use maybe_indent_hierarchy. Adjust
7618         output format.
7619         (dump_class_hierarchy): Adjust prototype. Adjust output format.
7620         (dump_array, dump_vtable, dump_vtt): New functions.
7621         (finish_struct_1): Adjust hierarchy dumping.
7622         (initialize_vtable): Call dump_vtable.
7623         (build_vtt): Call dump_vtt.
7624         (build_ctor_vtbl_group): Call dump_vtable.
7625         * decl2.c (flag_dump_class_layout): Remove.
7626         (cxx_decode_option): Remove dump translation unit
7627         and dump class hierarchy check. Call dump_switch_p.
7628         (finish_file): Adjust dumping.
7629         (dump.c): Only dump base classes if not TDF_SLIM.
7630         Only dump namespace members if not TDF_SLIM.
7631         * optimize.c (dump_function): New function.
7632         (optimize_function): Call dump_function.
7633         * semantics.c (expand_body): Use dump_enabled_p.
7634
7635 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
7636
7637         PR g++/2936
7638         Part missed from first commit
7639         * decl2.c (finish_anon_union): Copy context.
7640
7641 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
7642
7643         PR g++/2936
7644         * optimize.c (remap_decl): Remap anonymous aggregate members too.
7645
7646 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
7647
7648         PR g++/2823
7649         * semantics.c (expand_body): Don't optimize thunks.
7650
7651 2001-05-25  Sam TH  <sam@uchicago.edu>
7652
7653         * cp-tree.h lex.h: Fix header include guards.
7654
7655 2001-05-25  Mark Mitchell <mark@codesourcery.com>
7656
7657         * decl.c (init_decl_processing): Tweak.
7658
7659 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
7660
7661         * decl.c (duplicate_decls): Tidy.
7662         (init_decl_processing): Always set flag_no_builtin.
7663
7664 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
7665
7666         PR c++/2184
7667         * decl2.c (do_local_using_decl): Push the decls, even in a
7668         template.
7669
7670 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
7671
7672         * optimize.c (initialize_inlined_parameters): Don't set
7673         TREE_READONLY for a VAR_DECL taking the place of an inlined
7674         PARM_DECL.
7675
7676 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
7677
7678         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
7679         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
7680         attribute.
7681
7682 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
7683
7684         * parse.y: Refer to compound literals as such, not as
7685         constructor-expressions.
7686
7687 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
7688
7689         * call.c (build_op_delete_call): Ignore exception-specifications
7690         when looking for matching delete operators.
7691         * init.c (build_new_1): Compute whether or not the allocation
7692         function used is a placement allocation function or not, and
7693         communicate this information to build_op_delete_call.
7694
7695 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
7696
7697         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
7698         (build_vtbl_ref): Adjust.
7699         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
7700         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
7701         Re-add vtable-gc.
7702         (unsupported_options): Correspondingly.
7703
7704         * decl2.c (maybe_make_one_only): Check flag_weak, not
7705         supports_one_only().
7706
7707         * cp-tree.def (START_CATCH_STMT): Lose.
7708         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
7709         * tree.c (cp_statement_code_p): Don't case it.
7710         * semantics.c (cp_expand_stmt): Likewise.
7711         * cp-tree.h (START_CATCH_TYPE): Lose.
7712         (HANDLER_TYPE): New.
7713         * except.c (expand_start_catch_block): Don't start any blocks.
7714         Return the type.
7715         (expand_end_catch_block): Don't end any blocks.
7716         * parse.y (handler): Don't pass anything from finish_handler_parms
7717         to finish_handler.
7718         * pt.c (tsubst_expr): Likewise.
7719         * semantics.c (begin_handler): Call note_level_for_catch here.
7720         (finish_handler_parms): Don't return anything.
7721         (genrtl_catch_block, begin_catch_block): Lose.
7722         (genrtl_handler): Call expand_start_catch here.
7723
7724 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
7725
7726         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
7727         (get_vtable_decl, build_vtt): Not here.
7728
7729 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
7730
7731         PR c++/2781
7732         * optimize.c (update_cloned_parm): Copy addressability and other
7733         flags.
7734
7735 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7736
7737         * pt.c (determine_specialization): Ignore artificial functions.
7738
7739 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
7740
7741         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
7742         (C_RID_CODE): Remove.
7743         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
7744         (init_parse): Don't do it here.
7745
7746 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
7747
7748         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
7749         function declaration to avoid stripping the symbol's attributes.
7750
7751 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
7752
7753         * decl.c (pushdecl): Adjust error string.
7754         (xref_tag): Adjust friend class injection warning. Remove the
7755         inherited name from the class shadowed scope.
7756
7757 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
7758
7759         * except.c (cp_protect_cleanup_actions): New function.
7760         (init_exception_processing): Don't set protect_cleanup_actions
7761         here.  Do set lang_protect_cleanup_actions.
7762
7763 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
7764
7765         * spew.c (read_token): Call yyerror on all unexpected tokens.
7766
7767 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
7768
7769         * init.c (member_init_ok_or_else): Take a tree rather than
7770         string for name.
7771         (expand_member_init): Adjust.
7772
7773 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
7774
7775         * decl.c (duplicate_decls): Suppress warning about duplicate
7776         decls if the first decl is a friend.
7777
7778 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
7779
7780         * except.c (choose_personality_routine): Export.  Add
7781         explanatory comment.  Take an enum languages, not a boolean.
7782         (initialize_handler_parm): Adjust to match.
7783         * cp-tree.h: Prototype choose_personality_routine.
7784         * lex.c (handle_pragma_java_exceptions): New function.
7785         (init_cp_pragma): Register #pragma GCC java_exceptions.
7786
7787 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
7788
7789         * method.c (build_mangled_C99_name): Remove unused prototype.
7790
7791 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
7792
7793         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
7794         * typeck.c (get_member_function_from_ptrfunc,
7795         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
7796         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
7797
7798         Reverted Geoff Keating's 2001-05-03's patch.
7799
7800 2001-05-11  Ira Ruben   <ira@apple.com>
7801
7802         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
7803
7804 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
7805
7806         * cp-tree.h (finish_label_expr, lookup_label): Delete.
7807         * parse.y: Update for '&&'; don't issue warning here.
7808         * semantics.c (finish_label_expr): Delete.
7809
7810 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
7811
7812         * splay-tree.h (splay_tree_max): New function.
7813         (splay_tree_min): Likewise.
7814
7815 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
7816
7817         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
7818         (pfn_vflag_identifier): Define.
7819         Update comment about layout of pointer functions.
7820         (build_ptrmemfunc1): Update prototype.
7821         (expand_ptrmemfunc_cst): Update prototype.
7822         * decl.c (initialize_predefined_identifiers): Initialize
7823         pfn_vflag_identifier.
7824         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
7825         an extra field to the type.
7826         * expr.c (cplus_expand_constant): Pass 'flag' between
7827         expand_ptrmemfunc_cst and build_ptrmemfunc1.
7828         * typeck.c (get_member_function_from_ptrfunc): When
7829         FUNCTION_BOUNDARY < 16, look at additional field to determine
7830         if a pointer-to-member is a real pointer or a vtable offset.
7831         (build_ptrmemfunc1): Add new parameter to contain extra field.
7832         (build_ptrmemfunc): Pass the extra field around.
7833         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
7834         (pfn_from_ptrmemfunc): Ignore the extra field.
7835
7836 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
7837
7838         * cp-tree.h (flag_inline_trees): Update documentation.
7839         * decl.c (init_decl_processing): Adjust handling of
7840         flag_inline_functions and flag_inline_trees to support -O3.
7841         (grokfndecl): Set DECL_INLINE on all functions if that's what
7842         the user requested.
7843         (save_function_data): Clear DECL_INLINE in
7844         current_function_cannot_inline is non-NULL.
7845         * decl2.c (flag_inline_trees): Update documentation.
7846
7847 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
7848
7849         * dump.c (cp_dump_tree, USING_STMT case): New case.
7850         * tree.c (cp_statement_code_p): Add USING_STMT.
7851         * decl2.c (do_using_directive): Add the using directive statement.
7852
7853         * tree.c (walk_tree): Reformat an if block.
7854
7855 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
7856
7857         * decl.c (compute_array_index_type): Don't try to do anything with
7858         the indices when processing a template.
7859
7860 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7861
7862         * call.c: NULL_PTR -> NULL.
7863         * class.c: Likewise.
7864         * cvt.c: Likewise.
7865         * decl.c: Likewise.
7866         * decl2.c: Likewise.
7867         * except.c: Likewise.
7868         * init.c: Likewise.
7869         * rtti.c: Likewise.
7870         * search.c: Likewise.
7871         * tree.c: Likewise.
7872         * typeck.c: Likewise.
7873         * typeck2.c: Likewise.
7874
7875 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
7876
7877         * decl2.c (do_using_directive): Revert previous patch.
7878
7879 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
7880
7881         * cp-tree.def (USING_STMT): New statement node.
7882         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
7883         * decl2.c (do_using_directive): Add USING_STMT to statement
7884         tree. Don't emit errors when processing template decl.
7885         * pt.c (tsubst_expr, USING_STMT case): New case.
7886         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
7887
7888 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
7889
7890         * call.c (build_new_op): Convert args from reference here.
7891         (build_conditional_expr): Don't convert here.
7892
7893 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
7894
7895         * spew.c (last_token_id): New static variable.
7896         (read_token): Set it here.
7897         (yyerror): Use it here.
7898
7899 2001-04-30  Richard Henderson  <rth@redhat.com>
7900
7901         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
7902         * decl.c: Likewise.
7903
7904 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
7905
7906         * gxxint.texi: Remove.
7907         * Make-lang.in: Remove all traces of gxxint.texi.
7908
7909 Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
7910
7911         * decl2.c (start_static_initialization_or_destruction): Correct
7912         logic to handle the -fno-use-cxa-atexit case.
7913
7914 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
7915
7916         * optimize.c (update_cloned_parm): New function.
7917         (maybe_clone_body): Use it.  Update the `this' parameter too.
7918
7919 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
7920
7921         * decl2.c (unsupported_options): Add new-abi.
7922         * lang-options.h: Remove no longer supported options.
7923
7924 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
7925
7926         * except.c (can_convert_eh): Don't check template parms,
7927         typename types etc.
7928
7929 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
7930
7931         * optimize.c (maybe_clone_body): Copy parameter names and locations.
7932
7933 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
7934
7935         * cp-tree.h (adjust_clone_args): Prototype new function.
7936         * class.c (adjust_clone_args): New function.
7937         * decl.c (start_function): Call it for in charge ctors.
7938
7939 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
7940
7941         * method.c (use_thunk): Make sure that thunks really are emitted
7942         when requested.
7943
7944 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
7945
7946         * mangle.c (write_chars): New macro.
7947         (hwint_to_ascii): New function
7948         (write_number): Use it.
7949         (write_integer_cst): Deal with really big numbers.
7950
7951 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
7952
7953         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
7954         the clone.
7955
7956 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
7957
7958         * decl.c (grokdeclarator): Set context of namespace scope
7959         TYPE_DECLS.
7960
7961 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
7962
7963         * cp/optimize.c: Include hashtab.h.
7964         (struct inline_data): Add tree_pruner.
7965         (expand_call_inline, expand_calls_inline): Use it when calling
7966         walk_tree.
7967         (optimize_function): Initialize and free tree_pruner.
7968
7969 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
7970
7971         Lazy __FUNCTION__ generation.
7972         * cp-tree.def (FUNCTION_NAME): Remove.
7973         * cp-tree.h (function_name_declared_p): Remove.
7974         (cp_fname_init): Prototype.
7975         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
7976         don't call declare_function_name. Call start_fname_decls.
7977         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
7978         clobber the line number.
7979         (cp_fname_init): New function.
7980         (start_function): Call start_fname_decls.
7981         (finish_function): Call finish_fname_decls.
7982         * lex.c (reswords): Add slots for __FUNCTION__ et al.
7983         (rid_to_yy): Add mappings for __FUNCTION__ et al.
7984         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
7985         * parse.y (VAR_FUNC_NAME): New token.
7986         (primary): Add VAR_FUNC_NAME.
7987         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
7988         generation.
7989         (tsubst, FUNCTION_NAME case): Remove.
7990         (tsubst_copy, FUNCTION_NAME case): Remove.
7991         (tsubst_expr, DECL_STMT case): Be careful with a
7992         DECL_PRETTY_FUNCTION_P.
7993         (instantiate_decl): Remove function_name_declared_p.
7994         * semantics.c (begin_compound_statement): Don't call
7995         declare_function_name here.
7996         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
7997         (finish_translation_unit): Call finish_fname_decls.
7998         (expand_body): Remove function_name_declared_p.
7999         * typeck2.c (digest_init): Allow any ERROR_MARK.
8000
8001 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
8002
8003         * pt.c (tsubst_decl): Use VOID_TYPE_P.
8004         * semantics.c: Fix some typos.
8005
8006 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
8007
8008         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
8009
8010 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8011
8012         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
8013
8014 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
8015
8016         * except.c (build_throw): Wrap the initialization of the exception
8017         object in a MUST_NOT_THROW_EXPR.
8018         (do_free_exception): #if 0.
8019
8020 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
8021
8022         * cp-tree.h (finish_enum): Change prototype.
8023         * decl.c (finish_enum): Reorganize.
8024         * parse.y (structsp): Adjust calls to finish_enum.
8025
8026 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
8027
8028         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
8029         't' case.
8030
8031 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
8032
8033         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
8034         (layout_empty_base): Return at end flag.
8035         (build_base_field): Likewise.
8036         (build_base_fields): Likewise.
8037         (layout_virtual_bases): Don't add 1 to eoc value.
8038         (end_of_class): Use full size for empty bases.
8039         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
8040         empty bases. Don't add 1 to eoc value. Only add trailing padding
8041         if we're an empty class with no empty bases.
8042         (dump_class_hierarchy): Dump size and alignment.
8043
8044 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
8045
8046         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
8047         ICS_BAD_FLAG.
8048
8049 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
8050
8051         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
8052         is found, look first if name does not match the structure name.
8053
8054 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
8055
8056         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
8057         set.
8058         (SET_DECL_LANGUAGE): New macro.
8059         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
8060         (pushdecl): Likewise.
8061         (build_library_fn_1): Likewise.
8062         (build_cp_library_fn): Likewise.
8063         (grokfndecl): Likewise.
8064         (grokvardecl): Mark `extern "C"' variables as having C linkage.
8065         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
8066         * lex.c (retrofit_lang_decl): Likewise.
8067         * mangle.c (mangle_decl_string): Don't mangle the names of
8068         variables declared with C language linkage.
8069         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
8070
8071 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8072
8073         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
8074         flag_access_control from uninitialized storage.
8075
8076 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
8077
8078         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
8079         * mangle.c (write_pointer_to_member_type): Fix mangling of
8080         pointers to cv-qualified member function types.
8081
8082         * init.c (build_delete): Create a SAVE_EXPR for the address if
8083         we're going to use it more than once.
8084
8085 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
8086
8087         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
8088         (expand_ptremfunc_cst): Change prototype.
8089         (delta2_from_ptrmemfunc): Remove.
8090         * expr.c (cplus_expand_constant): Adjust call to
8091         expand_ptrmemfunc_cst.
8092         * typeck.c (build_ptrmemfunc1): Simplify.
8093         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
8094         results in a constant.
8095         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
8096         (delta2_from_ptrmemfunc): Remove.
8097         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
8098
8099 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
8100
8101         * cp-tree.h (decl_namespace_list): New macro.
8102         (struct saved_scope): Add decl_ns_list.
8103         * decl.c (mark_saved_scope): Mark it.
8104         * decl2.c: Lose static decl_namespace_list.
8105         (init_decl2): Don't save it.
8106
8107 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8108
8109         * cp-tree.h (warn_return_type, yylex): Delete redundant
8110         declarations.
8111
8112         * decl.c (current_class_depth, global_namespace): Likewise.
8113
8114         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
8115
8116         * repo.c (flag_use_repository): Likewise.
8117
8118 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8119
8120         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
8121         set_block, pushdecl, getdecls, gettags, init_decl_processing,
8122         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
8123         lvalue_or_else, print_lang_statistics, comp_target_types,
8124         unsigned_type, signed_type, signed_or_unsigned_type,
8125         build_function_call, mark_addressable, incomplete_type_error):
8126         Delete redundant declarations.
8127
8128 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
8129
8130         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
8131         (TYPE_ANONYMOUS_P): New macro.
8132         (TAGGED_TYPE_P): New macro.
8133         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
8134         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
8135         * tree.c (no_linkage_helper): Likewise.
8136         * semantics.c (begin_class_definition): Likewise.
8137         * pt.c (convert_template_argument): Likewise.
8138         * lex.c (check_for_missing_semicolon): Likewise.
8139
8140 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
8141
8142         * class.c (dfs_unshared_virtual_bases): New function.
8143         (mark_primary_bases): Call it.
8144         (check_bases): Ignore virtual bases when determining
8145         nearly-emptiness.
8146
8147 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
8148
8149         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
8150
8151 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
8152
8153         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
8154         cloned function to the clone.
8155
8156 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8157
8158         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
8159
8160         * semantics.c: Include expr.h.
8161
8162 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
8163
8164         * method.c (implicitly_declare_fn): Commonize code for copy ctor
8165         and assignment op. Set TREE_USED for parameter.
8166
8167 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
8168
8169         * class.c (find_final_overrider_data): Add `candidates'.
8170         (dfs_find_final_overrider): Don't issue error messages
8171         prematurely.
8172         (find_final_overrider): Issue error messages here.
8173         (build_base_field): Don't warn about amgibuous direct bases here.
8174         (warn_about_ambiguous_direct_bases): New function.
8175         (layout_class_type): Use it.
8176
8177 2001-04-10  Richard Henderson  <rth@redhat.com>
8178
8179         * typeck.c (build_array_ref): Push the array reference inside
8180         COMPOUND_EXPR and COND_EXPR.
8181
8182 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
8183
8184         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
8185         * decl.c (duplicate_decls): Adjust accordingly.
8186         (maybe_commonize_var): Likewise.
8187         (grokfndecl): Likewise.
8188         (start_function): Likewise.
8189         (start_method): Likewise.
8190         * decl2.c (key_method): Likewise.
8191         (import_export_decl): Likewise.
8192         * method.c (implicitly_declare_fn): Likewise.
8193         * optimize.c (maybe_clone_body): Likewise.
8194
8195 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
8196
8197         * lang-specs.h: Add __DEPRECATED.
8198
8199 Thu Apr  5 16:54:29 2001  J"orn Rennecke <amylaar@redhat.com>
8200
8201         * search.c (get_dynamic_cast_base_type): When building a new
8202         constant, set its type to ssizetype.
8203
8204 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
8205
8206         * optimize.c (expand_call_inline): Only add newly inlined statements
8207         into inlined_stmts.
8208
8209 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
8210
8211         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
8212         (OPERATOR_FORMAT): Likewise.
8213         (OPERATOR_TYPENAME_FORMAT): Likewise.
8214         * operators.def: Remove old name-mangling information.
8215         * decl.c (grok_op_properties): Adjust accordingly.
8216         * lex.c (init_operators): Likewise.
8217         * rtti.c (get_tinfo_decl): Issue error messages about types that
8218         have variable size.
8219
8220 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
8221
8222         * decl2.c (import_export_decl): Don't call import_export_class
8223         when processing an inline member function.
8224         * semantics.c (expand_body): Call import_export_decl before
8225         emitting inline functions.
8226
8227 2001-03-28  Richard Henderson  <rth@redhat.com>
8228
8229         IA-64 ABI Exception Handling:
8230         * cp-tree.def (EH_SPEC_BLOCK): New.
8231         (MUST_NOT_THROW_EXPR): New.
8232         * cp-tree.h: Update changed function declarations.
8233         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
8234         (CPTI_CALL_UNEXPECTED): New.
8235         (struct cp_language_function): Rename x_eh_spec_try_block
8236         to x_eh_spec_block.
8237         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
8238         * decl.c (current_binding_level): If no current function
8239         bindings, revert to scope_chain.
8240         (initialize_predefined_identifiers): Remove __cp_push_exception.
8241         (store_parm_decls): Use begin_eh_spec_block.
8242         (finish_function): Use finish_eh_spec_block.
8243         (mark_lang_function): Update for name changes.
8244         * decl2.c (finish_file): No mark_all_runtime_matches.
8245         * dump.c (cp_dump_tree): Handle new tree codes.
8246         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
8247         * except.c (catch_language_init, catch_language): Remove.
8248         (init_exception_processing): Don't set language code.
8249         Initialize call_unexpected_node, protect_cleanup_actions,
8250         eh_personality_libfunc, lang_eh_runtime_type.
8251         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
8252         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
8253         (prepare_eh_type): Split out type canonicalizations ...
8254         (build_eh_type_type): ... from here.
8255         (build_eh_type_type_ref): Remove.
8256         (mark_all_runtime_matches): Remove.
8257         (build_exc_ptr): New.
8258         (do_begin_catch, do_end_catch): New.
8259         (do_pop_exception): Remove.
8260         (build_terminate_handler): Remove.
8261         (choose_personality_routine): Split out language choice from ...
8262         (initialize_handler_parm): ... here.
8263         Use MUST_NOT_THROW_EXPR.
8264         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
8265         exception object handling.
8266         (expand_start_eh_spec, expand_end_eh_spec): Remove.
8267         (expand_exception_blocks, alloc_eh_object): Remove.
8268         (begin_eh_spec_block, finish_eh_spec_block): New.
8269         (do_allocate_exception, do_free_exception): New.
8270         (expand_throw): Merge into ...
8271         (build_throw): ... here.  Update for abi.
8272         * expr.c (cplus_expand_expr): No expand_internal_throw.
8273         Handle MUST_NOT_THROW_EXPR.
8274         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
8275         * semantics.c (*) Update for except.h name changes.
8276         (genrtl_try_block): No protect_with_terminate.
8277         (genrtl_eh_spec_block): New.
8278         (genrtl_handler): Don't emit the goto here.
8279         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
8280         (genrtl_finish_function): Don't expand_exception_blocks.
8281         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
8282
8283 2001-03-28  Richard Henderson  <rth@redhat.com>
8284
8285         * decl.c (struct named_label_list): Rename eh_region to
8286         in_try_scope, add in_catch_scope.
8287         (struct binding_level): Rename eh_region to is_try_scope,
8288         add is_catch_scope.
8289         (note_level_for_try): Rename from note_level_for_eh.
8290         (note_level_for_catch): New.
8291         (poplevel): Copy both is_try_scope and is_catch_scope to
8292         the named_label_list struct.
8293         (check_previous_goto_1): Don't check for catch block via
8294         DECL_ARTIFICIAL; use in_try_scope instead.
8295         (check_goto): Likewise.
8296         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
8297         * except.c (expand_start_catch_block): Call note_level_for_catch.
8298         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
8299
8300 2001-03-27  Richard Henderson  <rth@redhat.com>
8301
8302         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
8303         exceptions_via_longjmp.
8304
8305 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
8306
8307         * pt.c (check_default_tmpl_args):  Make error messages clearer.
8308
8309 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
8310
8311         * error.c:  Also undefine 'A' macro used for cp_printers definition.
8312
8313 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8314
8315         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
8316
8317 2001-03-26  Mike Yang <yang@research.att.com>
8318             Mark Mitchell  <mark@codesourcery.com>
8319
8320         * dump.c (dump_access): New function.
8321         (cp_dump_tree): Use it.  Dump basetype information for class
8322         types.
8323
8324 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
8325
8326         * Makefile.in (optimize.o): Depend on params.h.
8327         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
8328         (init_decl_processing): Set flag_no_inline when doing
8329         inlining-on-trees.
8330         * optimize.c: Include params.h.
8331         (struct inline_data): Improve documentation of FNS.  Add
8332         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
8333         (INSNS_PER_STMT): New macro.
8334         (remap_block): Use CLONING_P.
8335         (inlinable_function_p): Don't inline big functions.
8336         (expand_call_inline): Keep track of how much inlining we've done.
8337         (optimize_function): Set FIRST_INLINED_FN.
8338         (maybe_clone_body): Set CLONING_P.
8339         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
8340         tree nodes.
8341         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
8342         rest_of_compilation.  Clear DECL_RTL for local variables
8343         afterwards.
8344         (clear_decl_rtl): New function.
8345
8346 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
8347
8348         Implement DR 209
8349         * cp-tree.h (skip_type_access_control,
8350         reset_type_access_control): Prototype.
8351         * decl.c (grokdeclarator): Access of friends is not checked.
8352         * parse.y (component_decl_list): Reset type access control.
8353         * semantics.c (decl_type_access_control): Clear
8354         current_type_lookups.
8355         (save_type_access_control): Don't save if not deferring.
8356         (skip_type_access_control, reset_type_access_control): New
8357         functions.
8358         (begin_class_definition): Do type access control for basetypes.
8359         Start deferred access control.
8360         (finish_class_definition): Resume immediate access control if
8361         this is a local class.
8362
8363 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8364
8365         * class.c (add_method): Use memcpy/memmove, not bcopy.
8366
8367         * decl.c (duplicate_decls): Likewise.
8368
8369 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
8370
8371         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
8372         not `_'.
8373
8374 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
8375
8376         * decl.c (local_names): Define.
8377         (push_local_name): New.
8378         (grok_reference_init): Return init if initializing static reference
8379         variable with non-constant instead of emitting it.
8380         Move expand_static_init call to cp_finish_decl.
8381         (layout_var_decl): Call push_local_name.
8382         (maybe_commonize_var): Allow inlining functions even if they have
8383         static local variables, use comdat_linkage for them if flag_weak.
8384         (check_initializer): Call obscure_complex_init if
8385         grok_reference_init returned nonzero.
8386         (save_function_data): Clear x_local_names.
8387         (pop_cp_function_context): Free x_local_names.
8388         (mark_inlined_fns): Remove.
8389         (mark_lang_function): Mark x_local_names.
8390         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
8391         Mark inlined_fns as tree, remove call to mark_inlined_fns.
8392         * class.c (alter_access): Ensure DECL_ACCESS is never set if
8393         DECL_DISCRIMINATOR_P.
8394         * cp-tree.h (cp_language_function): Add x_local_names.
8395         (lang_decl_flags): Add discriminator into u2.
8396         (lang_decl_inlined_fns): Remove.
8397         (lang_decl): inlined_fns is now a TREE_VEC.
8398         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
8399         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
8400         TREE_VEC, not a custom structure.
8401         (optimize_function): Likewise.
8402         * mangle.c (discriminator_for_local_entity): Discriminate among
8403         VAR_DECL local entities.
8404         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
8405         is not valid.
8406
8407 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
8408
8409         Add support for Java interface method calls.
8410         * cp-tree.h (struct lang_type): Add java_interface flag.
8411         (TYPE_JAVA_INTERFACE): New macro.
8412         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
8413         by setting TYPE_JAVA_INTERFACE.
8414         * call.c (java_iface_lookup_fn): New static.
8415         (build_over_call): If calling a method declared in a
8416         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
8417         expression which resolves the function address.
8418         (build_java_interface_fn_ref): New function.
8419
8420 2001-03-22  Richard Henderson  <rth@redhat.com>
8421
8422         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
8423         * except.c: Don't include it.
8424
8425 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8426             based on an idea from Joe Buck <jbuck@synopsys.com>
8427
8428         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
8429         New nonterminals.
8430         (data_def, component_decl): Add reductions to bad_decl.
8431
8432 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
8433
8434         * method.c (do_build_assign_ref): Don't use build_modify_expr for
8435         anonymous aggregates, since they don't have assignment operator
8436         method.
8437         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
8438         assignment operators for anonymous structure fields.
8439
8440 2001-03-21  Jason Merrill  <jason@redhat.com>
8441
8442         * pt.c (instantiate_decl): Abort if we see a member constant
8443         instantiation that doesn't already have its initializer.
8444         Downgrade explicit instantiation without definition to pedwarn.
8445
8446         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
8447         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
8448         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
8449
8450         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
8451         (pending_vtables): Remove.
8452         * decl2.c (pending_vtables): Remove.
8453         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
8454         CLASSTYPE_VTABLE_NEEDS_WRITING.
8455         (import_export_class): Likewise.
8456         (init_decl2): Don't mark pending_vtables.
8457         * lex.c (handle_pragma_vtable): Just sorry.
8458         * pt.c (instantiate_class_template): Don't mess with
8459         CLASSTYPE_VTABLE_NEEDS_WRITING.
8460         (mark_class_instantiated): Likewise.
8461         * ptree.c (print_lang_type): Don't print it.
8462         * semantics.c (begin_class_definition): Don't set it.
8463
8464         * pt.c (template_tail): Replace with last_pending_template.
8465         (maybe_templates, maybe_template_tail): Remove.
8466         (add_pending_template): Adjust.
8467         (instantiate_pending_templates): Adjust.
8468
8469         * cp-tree.h (struct saved_scope): Remove lang_stack field.
8470         (current_lang_stack): Remove.
8471         * decl.c (maybe_push_to_top_level): Don't initialize it.
8472         (duplicate_decls): Use current_lang_depth.
8473         (xref_basetypes): Likewise.
8474         * class.c (current_lang_depth): New fn.
8475         (push_lang_context): Use more varray functionality.
8476         (pop_lang_context): Likewise.
8477
8478         * error.c (GLOBAL_THING): Always use '__'.
8479
8480 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
8481
8482         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
8483
8484         * mangle.c (mangle_decl_string): Mangle the names of overloaded
8485         operators, even when they have `extern "C"' linkage.
8486
8487 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
8488
8489         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
8490         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
8491         where it's not necessary.
8492         (add_method): Remove optimization involving comparison of
8493         DECL_ASSEMBLER_NAME.
8494         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
8495         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
8496         where it's not necessary.
8497         (check_methods): Likewise.
8498         (build_clone): Likewise.
8499         (built_vtt): Likewise.
8500         * cp-tree.h (DECL_NEEDED_P): Likewise.
8501         * decl.c (pushtag): Likewise.
8502         (duplicate_decls): Likewise.
8503         (pushdecl): Likewise.
8504         (builtin_function): Likewise.
8505         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
8506         (build_cp_library_fn): Likewise.
8507         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
8508         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
8509         where it's not necessary.
8510         (make_rtl_for_nonlocal_decl): Likewise.
8511         (cp_finish_decl): Likewise.
8512         (grokfndecl): Likewise.
8513         (grokvardecl): Likewise.
8514         (grokdeclarator): Likewise.
8515         (start_function): Likewise.
8516         (cp_missing_return_ok_p): Likewise.
8517         * decl2.c (grokclassfn): Likewise.
8518         (check_classfn): Likewise.
8519         (finish_static_data_member_decl): Likewise.
8520         (grokfield): Likewise.
8521         * error.c (GLOBAL_IORD_P): Remove.
8522         (dump_global_iord): Improve output.
8523         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
8524         * except.c (nothrow_libfn_p): Summarily reject any function not in
8525         namespace-scope.
8526         * init.c (build_java_class_ref): Don't explicitly set
8527         DECL_ASSEMBLER_NAME after calling mangle_decl.
8528         * mangle.c (mangle_decl_string): Handle extern "C" functions.
8529         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
8530         * method.c (set_mangled_name_for_decl): Don't explicitly set
8531         DECL_ASSEMBLER_NAME after calling mangle_decl.
8532         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
8533         IDENTIFIER_GLOBAL_VALUE for the thunk.
8534         * pt.c (set_mangled_name_for_template_decl): Remove.
8535         (check_explicit_specialization): Don't use it.
8536         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
8537         (tsubst_friend_function): Likewise.
8538         (tsubst_decl): Likewise.
8539         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
8540         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
8541         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
8542         where it's not necessary.
8543         (tinfo_base_init): Likewise.
8544         (create_real_tinfo_var): Likewise.
8545         * search.c (looup_field_1): Likewise.
8546         * semantics.c (finish_named_return_value): Likewise.
8547         * tree.c (init_tree): Set lang_set_decl_assembler_name.
8548
8549 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
8550
8551         Correct semantics restrictions checking in throw-expression.
8552         * except.c (is_admissible_throw_operand): New function.
8553         (build_throw): Use it.
8554
8555 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
8556
8557         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
8558         and its ilk.
8559
8560 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
8561
8562         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
8563         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
8564         * decl.c (duplicate_decls): Likewise.
8565         (builtin_function): Likewise.
8566         (build_library_fn): Likewise.
8567         (build_cp_library_fn): Likewise.
8568         (check_initializer): Likewise.
8569         (cp_finish_decl): Likewise.
8570         * decl2.c (grokfield): Likewise.
8571         (grok_function_init): Remove #if 0'd code.
8572         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
8573         * friend.c (do_friend): Likewise.
8574         * init.c (get_temp_regvar): Likewise.
8575         * method.c (make_thunk): Likewise.
8576         * pt.c (tsubst_friend_function): Likewise.
8577         (tsubst_decl): Likewise.
8578         (regenerate_decl_from_template): Likewise.
8579         * semantics.c (genrtl_named_return_value): Likewise.
8580         (expand_body): Likewise.
8581         (genrtl_finish_function): Likewise.
8582         * tree.c (cp_tree_equal): Likewise.
8583
8584 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
8585
8586         * call.c (convert_like_real): Add extra semantics to INNER
8587         parameter. Don't convert to temporary if a user conversion
8588         gives us an lvalue that we're about to bind to a reference.
8589         Set INNER to indicate pending reference binding on recursive
8590         calls.
8591
8592 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
8593
8594         * cp/lex.c: Delete duplicate pending_lang_change.
8595
8596 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
8597
8598         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
8599         Similarly.
8600         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
8601         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
8602
8603 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
8604
8605         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
8606
8607 2001-03-08  Stan Shebs  <shebs@apple.com>
8608
8609         * cp-tree.h (set_identifier_local_value): Remove unused decl.
8610
8611 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
8612
8613         * spew.c: Remove references to CPP_OSTRING.
8614
8615 2001-03-06  Andrew Haley  <aph@redhat.com>
8616
8617         * typeck.c (convert_arguments): Check that we have an fndecl.
8618
8619 2001-03-05  Andrew Haley  <aph@redhat.com>
8620
8621         * typeck.c (convert_arguments): Don't do ellipsis conversion for
8622         __built_in_constant_p.
8623
8624 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
8625
8626         * typeck.c (build_static_cast): Allow enum to enum conversions
8627         as per DR 128.
8628
8629 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
8630
8631         * class.c (check_field_decls): Pointers to member do not a
8632         non-pod struct make, as per DR 148.
8633
8634 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
8635
8636         * call.c (joust): cp_pedwarn when using gnu extension concerning
8637         worst conversion sequences.
8638
8639 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
8640
8641         * decl.c: Replace all uses of 'boolean' with 'bool'.
8642
8643 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
8644
8645         * lang-specs.h: Add zero initializer for cpp_spec field to
8646         all array elements that need one.  Don't put an #ifdef inside
8647         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
8648         use it.
8649
8650 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
8651
8652         Implement using decls inside template functions.
8653         * decl2.c (validate_nonmember_using_decl): Don't special case
8654         fake_std_node in the global namespace. Don't reject early when
8655         processing a template.
8656         (do_local_using_decl): Add to statement tree. Don't do further
8657         processing when building a template.
8658         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
8659
8660 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
8661
8662         * decl2.c (do_nonmember_using_decl): Don't complain if we find
8663         same function. Do complain about ambiguating extern "C"
8664         declarations.
8665
8666 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
8667
8668         Remove floating point and complex type template constant parms.
8669         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
8670         COMPLEX_TYPE extensions.
8671         (invalid_nontype_parm_type_p): Likewise.
8672
8673 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
8674
8675         * except.c (call_eh_info): Revert "match_function"'s type.
8676
8677 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
8678
8679         Fix ctor vtable vcall offsets.
8680         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
8681         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
8682         (get_matching_base): Remove.
8683         (get_original_base): New function.
8684         (build_vtbl_initializer): Initialize vid.rtti_binfo.
8685         Use a virtual thunk for a ctor vtable with an index
8686         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
8687         primary base within a constructor vtable. Only set
8688         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
8689         when primary base has been lost.
8690         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
8691
8692 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
8693
8694         * call.c (joust): Ensure more_specialized()'s argument length
8695         parameter has correct value for constructors.
8696
8697 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
8698
8699         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
8700
8701         * decl.c (mark_inlined_fns): Prototype.
8702
8703 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
8704
8705         * spew.c (yylex): Correct handling of friends.
8706
8707 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
8708
8709         * mangle.c (write_encoding): Pass write_function_type the
8710         FUNCTION_DECL for the function being encoded.
8711         (write_function_type): Pass it along to write_bare_function_type.
8712         (write_bare_function_type): Pass it along to write_method_parms.
8713         (write_method_parms): Don't mangle the compiler-generated
8714         parameters to a constructor or destructor.
8715
8716 2001-02-22  Andreas Jaeger  <aj@suse.de>
8717
8718         * optimize.c: Include toplev.h for
8719         note_deferral_of_defined_inline_function prototype.
8720
8721 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
8722
8723         * cp-tree.h (struct lang_decl_inlined_fns): New.
8724         (struct lang_decls): Add inlined_fns.
8725         (DECL_INLINED_FNS): New macro.
8726         * optimize.c (struct inline_data): Add inlined_fns.
8727         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
8728         (inlinable_function_p): Likewise, fix typo in comment,
8729         function is not inlinable if it already inlined function currently
8730         being optimized.
8731         (expand_call_inline): Add fn to inlined_fns if necessary.
8732         (optimize_function): Initialize inlined_fns.
8733         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
8734         * decl.c (mark_inlined_fns): New function.
8735         (lang_mark_tree): Call it.
8736
8737 2001-02-21  Jason Merrill  <jason@redhat.com>
8738
8739         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
8740         (DECL_UNINLINABLE): Move to middle-end.
8741
8742         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
8743         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
8744         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
8745         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
8746         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
8747
8748         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
8749         second parm of op=.
8750
8751 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
8752
8753         * decl2.c (set_decl_namespace): Allow explicit instantiations in
8754         any namespace.
8755
8756 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8757
8758         * optimize.c (expand_call_inline): Don't walk subtrees of type
8759         nodes.
8760
8761 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
8762
8763         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
8764         for a destructor.
8765
8766 2001-02-18  Jason Merrill  <jason@redhat.com>
8767
8768         Do put the VTT parameter in DECL_ARGUMENTS.
8769         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
8770         (current_vtt_parm): New macro.
8771         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
8772         (DECL_HAS_VTT_PARM_P): New macro.
8773         (DECL_VTT_PARM): Remove.
8774         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
8775         * decl.c (duplicate_decls): Only copy the operator code if
8776         appropriate.
8777         (start_function): Set current_vtt_parm.
8778         (lang_mark_tree): Don't mark vtt_parm.
8779         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
8780         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
8781         * class.c (build_clone): Maybe remove the VTT parm.
8782         * optimize.c (maybe_clone_body): Set up the VTT parm.
8783         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
8784         * call.c (build_over_call): Just allow the VTT arg.
8785         * method.c (make_thunk): Don't set DECL_VTT_PARM.
8786         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
8787         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
8788         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
8789         * error.c (dump_function_decl): Likewise.
8790         * call.c (build_user_type_conversion_1, convert_like_real): Abort
8791         if we try to call a constructor with in-charge or VTT parms.
8792         * method.c (skip_artificial_parms_for): New fn.
8793         * call.c (add_function_candidate, build_over_call): Call it.
8794         * call.c (build_new_method_call): Use current_vtt_parm.
8795         * init.c (expand_virtual_init): Likewise.
8796         * class.c (same_signature_p): No longer static.
8797         * cp-tree.h: Declare it.
8798         * search.c (look_for_overrides_r): Use it.
8799
8800 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
8801
8802         * cp-tree.h (new_abi_rtti_p): Remove.
8803         (name_mangling_version): Likewise.
8804         (flag_do_squangling): Likewise.
8805         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
8806         * decl.c (grokfndecl): Likewise.
8807         * decl2.c (name_mangling_version): Remove.
8808         (flag_do_squangling): Likewise.
8809         (lang_f_options): Remove `squangle'.
8810         (unsupported_options): Add `squangle'.
8811         (cxx_decode_option): Issue a warning about uses of
8812         -fname-mangling-version.
8813         (finish_file): Remove old ABI support.
8814         * pt.c (check_explicit_specialization): Likewise.
8815         (tsubst_decl): Likewise.
8816         * rtti.c (init_rtti_processing): Likewise.
8817         (build_headof): Likewise.
8818         (get_tinfo_decl_dynamic): Likewise.
8819         (tinfo_from_decl): Likewise.
8820         (build_dynamic_cast_1): Likewise.
8821         (synthesize_tinfo_var): Likewise.
8822         * init.c (build_new): Allow enumeration types for the array-bounds
8823         in a direct-new-declarator.
8824
8825         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
8826
8827         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
8828         TREE_PROTECTED from the template being specialized.
8829
8830 2001-02-17  Jason Merrill  <jason@redhat.com>
8831
8832         * decl2.c (build_artificial_parm): Set TREE_READONLY.
8833
8834         * decl.c (bad_specifiers): Allow throw specs on things with
8835         pointer-to-function or -member-function type.
8836         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
8837         a pmf.
8838
8839 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
8840
8841         * call.c (check_dtor_name): Handle template names correctly.
8842
8843 2001-02-16  Jason Merrill  <jason@redhat.com>
8844
8845         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
8846         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
8847         * optimize.c (maybe_clone_body): Don't substitute it.
8848         * call.c (build_new_method_call): Check in_chrg instead.
8849         * init.c (expand_virtual_init): Likewise.
8850
8851 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
8852
8853         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
8854         class-type introduces at least a type-name.
8855
8856 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
8857
8858         * call.c (convert_like_real): Create a temporary for non-lvalue.
8859
8860 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
8861
8862         * cp-tree.h: Fix typos in comments.
8863
8864 2001-02-16  Jason Merrill  <jason@redhat.com>
8865
8866         * optimize.c (remap_block): If we're compiling a clone, pass the
8867         new block to insert_block.
8868
8869 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
8870
8871         * semantics.c (finish_asm_stmt): Robustify.
8872
8873 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
8874
8875         * pt.c (push_template_decl_real): Don't remangle the name of a
8876         class template.
8877
8878 2001-02-15  Jim Meyering  <meyering@lucent.com>
8879
8880         * Make-lang.in (c++.install-common): Depend on installdirs.
8881         (c++.install-info): Likewise.
8882         (c++.install-man): Likewise.
8883
8884 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
8885
8886         * typeck2.c (build_m_component_ref): Robustify.
8887
8888 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
8889
8890         * friend.c (do_friend): Don't take the nested [template] class
8891         into account when deciding whether to warn about the friend
8892         function not referring to a template function.
8893
8894 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
8895
8896         * typeck.c (build_unary_op): Clarify error message.
8897
8898 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
8899
8900         * parse.y (component_constructor_declarator): allow optional
8901         parentheses around constructor class name.
8902
8903 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
8904
8905         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
8906         section.
8907         * init.c (emit_base_init): Remove incorrect comment about
8908         virtual bases.
8909         * method.c (make_thunk): Fix comment alignment.
8910
8911 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
8912
8913         Kill remnants of this is variable.
8914         * cp-tree.h (flag_this_is_variable): Remove.
8915         * decl2.c (flag_this_is_variable): Remove.
8916         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
8917         (build_vbase_path): The path is non-static, even in a cdtor.
8918         (resolves_to_fixed_type_p): Add additional return value.
8919         * search.c (init_vbase_pointers): Adjust.
8920         * tree.c (lvalue_p_1): Adjust.
8921         * typeck.c (mark_addressable): Adjust.
8922
8923 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
8924
8925         * pt.c (unify): Don't check cv quals of array types.
8926
8927 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
8928
8929         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
8930         check whether we already have the type.
8931
8932 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
8933
8934         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
8935         * call.c (build_op_delete_call): Simplify to remove duplicate
8936         code.
8937         * class.c (clone_function_decl): Don't build the deleting variant
8938         of a non-virtual destructor.
8939         * decl.c (finish_destructor_body): Don't call delete if this is a
8940         non-virtual destructor.
8941         * init.c (build_delete): Explicitly call `operator delete' when
8942         deleting an object with a non-virtual destructor.
8943
8944 2001-02-13  Jason Merrill  <jason@redhat.com>
8945
8946         * lang-specs.h: Add more __EXCEPTIONS.
8947
8948 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
8949
8950         * typeck2.c (process_init_constructor): Check
8951         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
8952
8953 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
8954
8955         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
8956         Remove spurious information in comment. Allow further
8957         adjustments of REFERENCE_TYPE args.
8958
8959 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
8960
8961         * errfn.c (cp_deprecated): Tweak diagnostic text.
8962         * parse.y (new_initializer): Deprecate initializer lists
8963         extension.
8964
8965 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
8966
8967         Remove old ABI support.
8968
8969 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
8970
8971         * decl2.c (flag_vtable_thunks): Always set it to 1.
8972         (flag_new_abi): Likewise.
8973         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
8974
8975         * Makefile.in (g++spec.o): Fix typo.
8976
8977 2001-02-09  Jason Merrill  <jason@redhat.com>
8978
8979         * lang-specs.h: Restore definition of __EXCEPTIONS.
8980
8981 2001-02-08  Jason Merrill  <jason@redhat.com>
8982
8983         * search.c (shared_member_p): New function.
8984         (lookup_field_r): Use it.
8985         * cp-tree.h (SHARED_MEMBER_P): Remove.
8986
8987         * method.c (process_overload_item): Handle template-dependent array
8988         bounds.
8989         * pt.c (type_unification_real): If we end up with undeduced nontype
8990         parms, try again.
8991
8992         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
8993         types.
8994
8995         * typeck2.c (friendly_abort): Don't say anything if we have
8996         earlier errors or sorries.
8997
8998         * decl.c (check_tag_decl): Notice attempts to redefine bool and
8999         wchar_t.  Ignore if in_system_header.
9000
9001         * decl.c (maybe_push_cleanup_level): New fn...
9002         (start_decl_1): ...split out from here.
9003         * cvt.c (build_up_reference): Use it.
9004         * cp-tree.h: Declare it.
9005
9006 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
9007
9008         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
9009         spec.
9010
9011 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
9012
9013         * pt.c (lookup_template_class): Make sure it's a primary
9014         template or template_template_parm when called from the parser.
9015         (instantiate_template_class): Add assertion.
9016
9017 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
9018
9019         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
9020         from error_mark_node.
9021
9022 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
9023
9024         Fix specification and implementation bugs in V3 ABI
9025         construction vtables.
9026         * cp-tree.h (flag_dump_class_layout): New flag.
9027         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
9028         (BINFO_LOST_PRIMARY_P): New flag.
9029         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
9030         (BINFO_PRIMARY_MARKED_P): Rename to ...
9031         (BINFO_PRIMARY_P): ... here.
9032         (binfo_via_virtual): New prototype.
9033         * decl2.c (flag_dump_class_layout): New flag.
9034         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
9035         use `=' as a file name separator.
9036         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
9037         bases.
9038         (build_vtbl_address): If this is a virtual primary base, then
9039         get the vtbl of what it is ultimately primary for.
9040         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
9041         for BINFO_PRIMARY_P.
9042         (dfs_skip_nonprimary_vbases_markedp): Likewise.
9043         (get_shared_vbase_if_not_primary): Likewise.
9044         (dfs_get_pure_virtuals): Likewise.
9045         (expand_upcast_fixups): Likewise.
9046         (fixup_virtual_upcast_offsets): Likewise.
9047         (dfs_find_vbase_instance): Likewise.
9048         (find_vbase_instance): Likewise.
9049         (binfo_from_vbase): Adjust comment to reflect reality.
9050         (binfo_via_virtual): New function.
9051         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
9052         for binfo walking during VTT construction.
9053         (dfs_mark_primary_bases): Remove.
9054         (force_canonical_binfo_r): New function.
9055         (force_canonical_binfo): New function.
9056         (mark_primary_virtual_base): New function.
9057         (mark_primary_bases): Walk in inheritance graph order, use
9058         mark_primary_virtual_base.
9059         (determine_primary_base): Use some more intermediate variables.
9060         (dfs_find_final_overrider): Don't check for overriding along a
9061         virtual path.
9062         (dfs_modify_vtables): Walk into primary virtual bases too.
9063         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
9064         (build_base_fields): Likewise.
9065         (dfs_set_offset_for_unshared_vbases): Likewise.
9066         (layout_virtual_bases): Likewise.
9067         (end_of_class): Likewise.
9068         (finish_struct_1): Call dump_class_hierarchy, if requested.
9069         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
9070         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
9071         (dump_class_hierarchy): Add file parameter. Append to file, if
9072         required.
9073         (finish_vtbls): Adjust accumulate_vtbl_inits call.
9074         Use canonical base for virtual bases.
9075         (build_vtt): Add more comments. Adjust build_vtt_inits call.
9076         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
9077         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
9078         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
9079         virtual VTTs.
9080         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
9081         from DATA.  We want virtual primary bases and all bases via virtual.
9082         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
9083         virtual base when not a construction vtable.
9084         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
9085         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
9086         Use canonical bases when processing virtual bases.
9087         (accumulate_vtbl_inits): We're interested in any base via a
9088         virtual path.
9089         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
9090         within a construction vtable, determine what is being overridden.
9091         (build_vtbl_initializer): Add more comments
9092         (add_vcall_offset_vtbl_entries_1): Adjust comment.
9093         (build_rtti_vtbl_entries): Check if the base has lost its
9094         primary.
9095
9096 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
9097
9098         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
9099
9100 Sun Feb  4 15:52:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9101
9102         * decl.c (pushdecl): Call abort instead of fatal.
9103         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
9104         * init.c (build_new_1): Likewise.
9105         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
9106         * decl.c (build_typename_type): hash_table_init now returns void.
9107         decl.c (init_decl_processing): Make an error non-fatal.
9108
9109 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
9110
9111         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
9112         Document.
9113         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
9114         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
9115         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
9116         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
9117         * decl.c (maybe_commonize_var): Use the new name-mangling where
9118         appropriate.
9119         * decl2.c (comdat_linkage): Enhance comments.  Make all
9120         compiler-generated things static, if COMDAT is not available.
9121         (get_tinfo_decl): Do not make typeinfo objects that belong in the
9122         library COMDAT.
9123         (tinfo_base_init): Use the correct mangled name for typeinfo
9124         strings, and push them into the global scope.
9125         (typeinfo_in_lib_p): New function.
9126         (synthesize_tinfo_var): Use it.
9127         (create_real_tinfo_var): Likewise.
9128
9129 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
9130
9131         * decl.c (push_class_binding): Use context_for_name_lookup instead
9132         of CP_DECL_CONTEXT.
9133         * search.c (context_for_name_lookup): Remove static.  Check for NULL
9134         context in the loop.
9135         * cp-tree.h (context_for_name_lookup): Add prototype.
9136
9137 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
9138
9139         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
9140         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
9141         Remove.
9142         * call.c (convert_class_to_reference, build_user_type_conversion_1,
9143         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
9144
9145 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
9146
9147         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
9148         of macros used when compiling g++spec.c.
9149         * g++spec.c (lang_specific_driver): Link with the shared
9150         libgcc by default.
9151
9152 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
9153
9154         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
9155         make_reference_declarator, make_call_declarator), method.c
9156         (implicitly_declare_fn), parse.y (namespace_using_decl,
9157         notype_unqualified_id, expr_or_declarator, new_type_id,
9158         after_type_declarator, direct_after_type_declarator,
9159         notype_declarator, complex_notype_declarator,
9160         complex_direct_notype_declarator, qualified_id,
9161         notype_qualified_id, overqualified_id, direct_new_declarator,
9162         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
9163         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
9164         instead of build_parse_node.
9165
9166 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9167
9168         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
9169         (minus_one_node): Moved to top level gcc directory.  Renamed
9170         to integer_minus_one_node.
9171
9172         * init.c (init_init_processing): Don't set minus_one_node.
9173         (build_vec_init): Use integer_minus_one_node.
9174
9175         * rtti.c (get_tinfo_decl_dynamic): Likewise.
9176
9177 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
9178
9179         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
9180         identical and they would be replaced with constant, remove
9181         MODIFY_EXPR from the tree.
9182
9183 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9184
9185         * Make-lang.in: Remove all dependencies on defaults.h.
9186         * call.c: Don't include defaults.h.
9187         * decl.c: Likewise.
9188         * decl2.c: Likewise.
9189         * except.c: Likewise.
9190         * pt.c: Likewise.
9191         * rtti.c: Likewise.
9192         * tree.c: Likewise.
9193         * typeck.c: Likewise.
9194
9195 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
9196
9197         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
9198         operators even in "C" linkage.
9199         * method.c (set_mangled_name_for_decl): Likewise.
9200         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
9201         overloaded operators in "C" linkage.
9202
9203 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
9204
9205         * pt.c (tsubst_decl): Remove IN_DECL parameter.
9206         (tsubst_arg_types): Check parameter is not void.
9207         (tsubst): Adjust tsubst_decl call.
9208
9209 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
9210
9211         * call.c (add_builtin_candidate): Quote std properly, from
9212         previous change.
9213
9214 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9215
9216         * pt.c (check_explicit_specialization): Clone constructors and
9217         destructors.
9218
9219 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
9220
9221         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
9222         indicates anything special about template depth. Make sure we
9223         only count the user visible template classes.
9224
9225 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
9226
9227         * call.c (build_conv): Typo in comment.
9228         (add_builtin_candidate): Add more explanation.
9229         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
9230         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
9231         when we have enumeral types.
9232         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
9233         candidates for relops and eqops.
9234         (joust): Simplify control flow. Allow a non-template user
9235         function to hide a builtin.
9236
9237 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
9238
9239         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
9240         (more_specialized): Add deduction parameter.
9241         * call.c (joust): Adjust more_specialized call.
9242         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
9243         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
9244         (get_bindings_order): Remove.
9245         (get_bindings_real): Add DEDUCE parameter.
9246         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
9247         REFERENCE_TYPE jig for DEDUCE_ORDER.
9248         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
9249         maybe_adjust_types_for_deduction.
9250         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
9251         directly.
9252         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
9253         (check_cv_quals_for_unify): Use new unify qualifier flags.
9254         (unify): Clear new unify qualifier flags.
9255         (get_bindings_real): Add DEDUCE parameter.
9256         (get_bindings): Adjust call to get_bindings_real.
9257         (get_bindings_overload): Likewise.
9258         (most_specialized_instantiation): Adjust call to
9259         more_specialized.
9260
9261 2001-01-19  Jason Merrill  <jason@redhat.com>
9262
9263         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
9264
9265         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
9266         -fnew-abi.
9267
9268 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
9269
9270         * decl2.c (arg_assoc_class): Fix double iteration logic.
9271
9272 2001-01-19  Jason Merrill  <jason@redhat.com>
9273
9274         * init.c (build_delete): Always call convert_force to strip cv-quals.
9275
9276         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
9277         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
9278         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
9279
9280 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
9281
9282         * search.c (get_vbase_1): Count only virtual bases.
9283
9284 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
9285
9286         * class.c (duplicate_tag_error): Robustify flag clearing.
9287
9288 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
9289
9290         * cp-tree.h (lookup_template_class): Add complain parm.
9291         * decl.c (lookup_namespace_name): Adjust call to
9292         lookup_template_class.
9293         (make_typename_type): Likewise.
9294         * semantics.c (finish_template_type): Likewise.
9295         * pt.c (lookup_template_class): Add complain parm. Adjust.
9296         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
9297         (tsubst): Likewise.
9298
9299 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
9300
9301         * pt.c (copy_default_args_to_explicit_spec): Preserve
9302         object's CV quals. Reorganize.
9303
9304 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
9305
9306         * typeck.c (build_modify_expr): Say `initialization' for
9307         INIT_EXPRs.
9308         * init.c (build_default_init): Convert to enumeral type, if
9309         needed.
9310
9311 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
9312
9313         * parse.y (nomods_initdcl0): Properly set things up for
9314         initdcl0_innards.
9315
9316 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
9317
9318         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
9319         (type_unification_real): Set it.
9320         (unify): Use it.
9321
9322 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
9323
9324         * decl.c (finish_destructor_body): Convert to vbase pointer here.
9325
9326 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
9327
9328         * semantics.c (begin_class_definition): Check we're not inside a
9329         template parm list.
9330
9331 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
9332
9333         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
9334         BASELINK_P.
9335
9336 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9337
9338         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
9339         * call.c (build_over_call): Add comment.
9340
9341 2001-01-16 Daniel Berlin <dberlin@redhat.com>
9342
9343         * cvt.c (ocp_convert): Handle vector type conversion
9344         * typeck2.c (digest_init): Handle vector type initializations
9345
9346 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
9347
9348         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
9349           was given.
9350
9351 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
9352
9353         * pt.c (check_nontype_parm): Rename to ...
9354         (invalid_nontype_parm_type_p): ... here.
9355         (process_template_parm): Adjust.
9356         (convert_template_argument): Adjust.
9357
9358 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
9359
9360         * pt.c (check_nontype_parm): New function.
9361         (process_template_parm): Use it.
9362         (convert_template_argument): Use it.
9363         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
9364         member.
9365
9366 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
9367
9368         * tree.c: Add defaults.h
9369         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
9370         * Make-lang.in (cp/tree.o): Add defaults.h.
9371
9372 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9373
9374         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
9375
9376 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9377
9378         * g++.1: Change to be ".so man1/gcc.1".
9379
9380 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9381
9382         * Make-lang.in (c++.info, c++.install-info): Build and install g++
9383         internals info.
9384         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
9385         ($(srcdir)/cp/g++int.info): New target.
9386         * gxxint.texi: Add info directory entry.  Use @@ in email address.
9387         * .cvsignore: Update.
9388
9389 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
9390
9391         * typeck.c (build_c_cast): Do template processing earlier.
9392         Always pedwarn on array casts.
9393
9394 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
9395
9396         * friend.c (make_friend_class): Make sure a templated class is
9397         actually a template.
9398
9399 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
9400
9401         * decl2.c (get_guard): Set linkage from guarded decl.
9402
9403 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
9404
9405         * call.c (convert_default_arg): Check for unprocessed
9406         DEFAULT_ARG.
9407         * cp-tree.h (replace_defarg): Move to spew.c.
9408         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
9409         spew.c, which is where they really are.
9410         (done_pending_defargs): Declare.
9411         (unprocessed_defarg_fn): Declare.
9412         * decl.c (replace_defarg): Move to spew.c
9413         * parse.y (structsp): Call done_pending_defargs.
9414         * spew.c (defarg_fns): Rearrange list structure.
9415         (defarg_fnsdone): New static variable.
9416         (defarg_depfns): New static variable.
9417         (init_spew): Adjust.
9418         (add_defarg_fn): Store the type in TREE_TYPE.
9419         (do_pending_defargs): Detect and deal with ordering constraints
9420         and circularity.
9421         (done_pending_defargs): New function.
9422         (unprocessed_defarg_fn): New function.
9423         (replace_defarg): Moved from decl.c. Robustify. Don't save
9424         if circularity detected.
9425
9426 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
9427
9428         * pt.c (unify): Check array has a domain, before checking
9429         whether it is variable sized.
9430
9431 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
9432
9433         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
9434         parameters with pointers to arrays of unknown bound.
9435
9436 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
9437
9438         * parse.y (template_parm_header, template_spec_header): New
9439         reductions. Split out from ...
9440         (template_header): ... here. Use them.
9441         (template_template_parm): Use template_parm_header.
9442         * semantics.c (finish_template_template_parm): Add assert.
9443
9444 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
9445
9446         * mangle.c (write_builtin_type): Fix thinko.
9447
9448         * pt.c (copy_default_args_to_explicit_spec_1): New function.
9449         (copy_default_args_to_explicit_spec): Likewise.
9450         (check_explicit_specialization): Use it.
9451
9452         * class.c (finish_struct_1):  Remove last argument in call to
9453         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
9454         * decl.c (builtin_function): Likewise.
9455         (build_cp_library_fn): Likewise.
9456         (check_initializer): Likewise.
9457         (make_rtl_for_nonlocal_decl): Likewise.
9458         (cp_finish_decl): Likewise.
9459         (start_function): Likewise.
9460         * decl2.c (finish_anon_union): Likewise.
9461         * friend.c (do_friend): Likewise.
9462         * init.c (build_java_class_ref): Likewise.
9463         * method.c (make_thunk): Likewise.
9464         * pt.c (tsubst_friend_function): Likewise.
9465         * semantics.c (expand_body): Likewise.
9466
9467 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
9468
9469         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
9470         looking at DECL_CLONED_FUNCTION for non-functions.
9471
9472 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
9473
9474         * error.c (dump_template_parameter): Use parm to determine how
9475         to print default value.
9476
9477 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
9478
9479         * class.c (duplicate_tag_error): Clear more flags.
9480
9481 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
9482
9483         * call.c (build_new_method_call): Use binfo_for_vbase.
9484
9485 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
9486
9487         * cp-tree.h (flag_cond_mismatch): Don't declare.
9488         * decl2.c (flag_cond_mismatch): Don't define.
9489         (lang_f_options): Remove cond-mismatch.
9490         (unsupported_options): Add cond-mismatch.
9491
9492 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
9493
9494         * class.c (handle_using_decl): Reject using of constructor name
9495         of sourcing class. Allow injecting of a method with same name as
9496         nested class. Fixup error messages.
9497
9498 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
9499
9500         * decl2.c (lang_decode_option): Handle -Wformat=2.
9501
9502 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
9503
9504         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
9505         initialized_in_class.
9506         (DECL_DEFINED_IN_CLASS_P): Rename to ...
9507         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
9508         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
9509         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
9510         * pt.c (check_default_tmpl_args): Adjust for
9511         DECL_INITIALIZED_IN_CLASS_P.
9512         (instantiate_class_template): Likewise.
9513         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
9514
9515         * class.c (finish_struct): Constify saved_filename.
9516
9517 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
9518
9519         * class.c (duplicate_tag_error): Adjust diagnostic.
9520         (finish_struct): Locally set location to start of struct.
9521         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
9522
9523 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
9524
9525         * decl.c (struct binding_level): Adjust class_shadowed comments
9526         to reflect reality.
9527         (push_class_level_binding): Adjust comments to reflect reality.
9528         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
9529         Don't set TREE_VALUE on the class_shadowed list.
9530
9531 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9532
9533         * decl2.c (acceptable_java_type): Allow references too.
9534         * init.c (build_java_class_ref): When using the new ABI, search
9535         `class$' and have it mangled with `mangle_decl.'
9536         * mangle.c (write_java_integer_type_codes): New function.
9537         (write_builtin_type): Detect and mangle Java integer and real
9538         types.
9539
9540 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
9541
9542         * decl2.c (grokfield): Don't accept `asm' specifiers for
9543         non-static data members.
9544
9545 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9546
9547         * expr.c (cplus_expand_expr): Don't reset `target'.
9548
9549 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
9550
9551         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
9552
9553 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
9554
9555         * parse.y (template_datadef): Check for error_mark_node.
9556
9557 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
9558
9559         * cp-tree.def (DEFAULT_ARG): Make `x' class.
9560
9561 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
9562
9563         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
9564         (record_builtin_type): Make non-static.
9565         (flag_short_double): Don't declare.
9566         (init_decl_processing): Remove the creation of many tree nodes now
9567         in c_common_nodes_and_builtins.
9568         (build_void_list_node): New function.
9569         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
9570         * cp-tree.h (flag_short_wchar): Don't declare.
9571
9572 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
9573
9574         * call.c (build_conv): Don't use build1 for USER_CONV.
9575         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
9576
9577 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
9578
9579         * lex.c (lang_init): Call c_common_lang_init.
9580
9581 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
9582
9583         * search.c (lookup_fnfields_here): Remove.
9584         (look_for_overrides_r): Use lookup_fnfields_1.
9585         Ignore functions from using declarations.
9586
9587 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
9588
9589         Implement exceptions specifiers for implicit member functions.
9590         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
9591         * method.c (synthesize_exception_spec): New function.
9592         (locate_dtor, locate_ctor, locate_copy): New functions.
9593         (implicitly_declare_fn): Generate the exception spec too.
9594         * search.c (check_final_overrider): Check artificial functions
9595         too.
9596         * typeck2.c (merge_exception_specifiers): New function.
9597
9598 2001-01-03  Jason Merrill  <jason@redhat.com>
9599
9600         * init.c (build_default_init): New fn.
9601         (perform_member_init): Split out from here.
9602         (build_new_1): Use it.  Simplify initialization logic.
9603         (build_vec_init): Take an array, rather than a pointer and maxindex.
9604         Speed up simple initializations.  Don't clean up if we're assigning.
9605         * cp-tree.h: Adjust.
9606         * decl2.c (do_static_initialization): Remove TREE_VEC case.
9607         * parse.y (new_initializer): Return void_zero_node for ().
9608         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
9609         * typeck2.c (digest_init): Only complain about user-written
9610         CONSTRUCTORs.
9611
9612 2000-12-22  Mike Stump  <mrs@wrs.com>
9613
9614         * decl2.c: (max_tinst_depth): Increase to 50.
9615
9616 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
9617
9618         * class.c (invalidate_class_lookup_cache): Zero the
9619         previous_class_values.
9620         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
9621         TREE_INT_CST_HIGH.
9622         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
9623         * decl.c (free_bindings): New variable.
9624         (push_binding): Don't create a new binding if we have one on the
9625         free list.
9626         (pop_binding): Put old bindings on the free list.
9627         (init_decl_processing): Use size_int, not build_int_2.
9628         Register free_bindings as a GC root.
9629         (cp_make_fname_decl): Use size_int, not build_int_2.
9630         (push_inline_template_parms_recursive): Likewise.
9631         (end_template_parm_list): Likewise.
9632         (for_each_template_parm): Do not use walk_tree_without_duplicates.
9633         (tsubst_template_parms): Use size_int, not build_int_2.
9634         (tsubst): Likewise.
9635         * rtti.c (get_vmi_pseudo_type_info): Likewise.
9636
9637 2001-01-02  Richard Henderson  <rth@redhat.com>
9638
9639         * parse.y (asm): Set ASM_INPUT_P.
9640
9641 2001-01-02  Jason Merrill  <jason@redhat.com>
9642
9643         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
9644         for v3 ABI.
9645
9646         * typeck.c (cp_truthvalue_conversion): New fn.
9647         * cvt.c (ocp_convert): Use it.
9648
9649         * cp-tree.h: Lose c-common.c decls.
9650
9651         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
9652         * cvt.c (convert_to_void): Use type_unknown_p.
9653
9654         * typeck.c (strip_all_pointer_quals): Also strip quals from
9655         pointer-to-member types.
9656
9657         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
9658         parse.y as C.
9659
9660         * call.c (build_new_method_call): Do evaluate the object parameter
9661         when accessing a static member.
9662         * typeck.c (build_component_ref): Likewise.
9663
9664 2001-01-02  Andreas Jaeger  <aj@suse.de>
9665
9666         * decl.c (cp_missing_noreturn_ok_p): New.
9667         (init_decl_processing): Set lang_missing_noreturn_ok_p.
9668
9669 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
9670
9671         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
9672
9673 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
9674
9675         * class.c (pushclass): Remove #if 0'd code.
9676         * cp-tree.h (overload_template_name): Remove.
9677         * decl.c (store_bindings): Simplify.
9678         (pop_from_top_level): Likewise.
9679         * pt.c (overload_template_name): Remove.
9680         (instantiate_decl): Don't call push_to_top_level if it's not
9681         needed.
9682
9683 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
9684
9685         * pt.c (register_local_specialization): Don't return a value.
9686         (lookup_template_class): Use move-to-front heuristic when looking
9687         up template instantiations.
9688         (instantiate_decl): Only push_to_top_level when we're actually
9689         going to instantiate the template.
9690
9691 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
9692
9693         * search.c (binfo_for_vtable): Return least derived class, not
9694         most.  Handle secondary vtables.
9695
9696 2000-12-22  Jason Merrill  <jason@redhat.com>
9697
9698         * pt.c (more_specialized): Don't optimize len==0.
9699         (fn_type_unification): If we're adding the return type, increase len.
9700
9701         * typeck.c (build_binary_op): Fix pmf comparison logic.
9702
9703         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
9704         DECL_STATIC_FUNCTION_P.
9705
9706         * semantics.c (genrtl_finish_function): Don't try to jump to
9707         return_label unless it exists.
9708
9709         In partial ordering for a call, ignore parms for which we don't have
9710         a real argument.
9711         * call.c (joust): Pass len to more_specialized.
9712         (add_template_candidate_real): Strip 'this', pass len.
9713         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
9714         (get_bindings_order): New fn.  Pass len down.
9715         (get_bindings_real): Strip 'this', pass len.
9716         (fn_type_unification): Likewise.
9717         (type_unification_real): Succeed after checking 'len' args.
9718         (most_specialized_instantiation): Lose explicit_args parm.
9719         * class.c (resolve_address_of_overloaded_function): Strip 'this',
9720         pass len.
9721
9722 2000-12-21  Jason Merrill  <jason@redhat.com>
9723
9724         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
9725         DECL_TEMPLATE_RESULT.
9726
9727         * search.c (lookup_field_r): Call lookup_fnfields_1, not
9728         lookup_fnfields_here.
9729
9730         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
9731
9732         * call.c (build_object_call): Also allow conversions that return
9733         reference to pointer to function.
9734         (add_conv_candidate): Handle totype being ref to ptr to fn.
9735         (build_field_call): Also allow members of type reference to function.
9736         Lose support for calling pointer to METHOD_TYPE fields.
9737
9738         * error.c (dump_expr): Handle *_CAST_EXPR.
9739
9740         * typeck2.c (build_scoped_ref): Always convert to the naming class.
9741
9742         * tree.c (break_out_cleanups): Lose.
9743         * cp-tree.h: Remove prototype.
9744         * typeck.c (build_component_ref): Don't break_out_cleanups.
9745         (build_compound_expr): Likewise.
9746         * semantics.c (finish_expr_stmt): Likewise.
9747
9748 2000-12-20  Richard Henderson  <rth@redhat.com>
9749
9750         * cp-tree.h: Update declarations.
9751         * decl.c (finish_case_label): Return the new stmt node.
9752         * semantics.c (finish_goto_stmt): Likewise.
9753         (finish_expr_stmt, finish_return_stmt): Likewise.
9754         (finish_break_stmt, finish_continue_stmt): Likewise.
9755         (finish_asm_stmt): Likewise.
9756         * parse.y (already_scoped_stmt): Set STMT_LINENO.
9757         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
9758         (simple_if, simple_stmt): Return the new stmt node.
9759         (save_lineno): New.
9760
9761 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
9762
9763         * cp-tree.h: Don't declare warn_long_long.
9764
9765 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9766
9767         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
9768         IS_AGGR_TYPE.
9769
9770 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9771
9772         * pt.c (unify): Handle when both ARG and PARM are
9773         BOUND_TEMPLATE_TEMPLATE_PARM.
9774
9775 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9776
9777         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
9778         DECL_TEMPLATE_PARM_P.
9779
9780 2000-12-15  Jason Merrill  <jason@redhat.com>
9781
9782         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
9783
9784         * init.c (build_new_1): Don't strip quals from type.
9785
9786         * decl.c (pushdecl): Don't check for linkage on a non-decl.
9787
9788         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
9789
9790         * call.c (build_new_function_call): Lose space before paren in
9791         error message.
9792         (build_new_method_call): Likewise.
9793
9794         * typeck2.c (build_m_component_ref): Propagate quals from datum.
9795
9796 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9797
9798         * pt.c (check_explicit_specialization): Propagate default
9799         function arguments to explicit specializations.
9800
9801 2000-12-13  DJ Delorie  <dj@redhat.com>
9802
9803         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
9804         and <? operators.
9805
9806 2000-12-08  Jason Merrill  <jason@redhat.com>
9807
9808         * error.c (dump_function_name): Don't let the user see __comp_ctor.
9809
9810         Clean up copy-initialization in overloading code.
9811         * call.c (build_user_type_conversion_1): Die if we are asked to
9812         convert to the same or a base type.
9813         (implicit_conversion): Avoid doing so.  Lose reference binding code.
9814         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
9815         direct-initialization.  Also do direct-init part of copy-init.
9816         (build_user_type_conversion): Don't provide context to convert_like.
9817         * cvt.c (ocp_convert): build_user_type_conversion will now provide
9818         the constructor call for copy-init.
9819
9820         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
9821         instantiation of a member template.
9822         (do_decl_instantiation): Not here.
9823
9824 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
9825
9826         * class.c (check_field_decls): Don't special case anonymous
9827         fields in error messages.
9828         (note_name_declared_in_class): Use %D on diagnostic.
9829
9830         * tree.c (pod_type_p): Use strip_array_types.
9831         (cp_valid_lang_attribute): Likewise.
9832         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
9833         multiple evaluations.
9834         (cp_has_mutable_p): Use strip_array_types.
9835
9836 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
9837
9838         * cp-tree.h (sufficient_parms_p): Declare new function.
9839         * call.c (sufficient_parms_p): New function, broken out of ...
9840         (add_function_candidate): ... here. Use it.
9841         (add_conv_candidate): Use it.
9842         * decl.c (grok_ctor_properties): Use it.
9843
9844 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
9845
9846         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
9847
9848 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
9849
9850         * decl2.c (lang_decode_option): Handle -Wformat-security.
9851
9852 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9853
9854         * pt.c (verify_class_unification): New function.
9855         (get_class_bindings): Use it.
9856         (try_class_unification): Tidy.
9857         (unify): Handle when argument of a template-id is not
9858         template parameter dependent.
9859         (template_args_equal): Handle when TREE_CODE's do not match.
9860
9861 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
9862
9863         * lang-specs.h (c++): When invoking the stand-alone preprocessor
9864         for -save-temps, pass all relevant -Defines to it, and then don't
9865         pass them to cc1plus.
9866
9867 2000-12-05  Will Cohen  <wcohen@redhat.com>
9868
9869         * decl.c (finish_case_label): Cleared
9870         more_cleanups_ok in surrounding function scopes.
9871         (define_label): Likewise.
9872
9873 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
9874
9875         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
9876         (get_matching_virtual): Remove.
9877         (look_for_overrides): Declare new function.
9878         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
9879         DECL_VINDEX here.
9880         * class.c (check_for_override): Move base class iteration code
9881         to look_for_overrides.
9882         * search.c (next_baselink): Remove.
9883         (get_virtuals_named_this): Remove.
9884         (get_virtual_destructor): Remove.
9885         (tree_has_any_destructors_p): Remove.
9886         (struct gvnt_info): Remove.
9887         (check_final_overrider): Remove `virtual' from error messages.
9888         (get_matching_virtuals): Remove. Move functionality to ...
9889         (look_for_overrides): ... here, and ...
9890         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
9891         to be overriding.
9892
9893 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
9894
9895         * typeck.c (get_delta_difference): If via a virtual base,
9896         return zero.
9897         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
9898         adjustment.
9899
9900 2000-12-04  Richard Henderson  <rth@redhat.com>
9901
9902         * error.c (dump_tree): Use output_add_string not OB_PUTS.
9903
9904 2000-12-04  Jason Merrill  <jason@redhat.com>
9905
9906         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
9907         (write_builtin_type): Pass intSI_type_node and the like through
9908         type_for_mode.
9909         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
9910         Pass intSI_type_node and the like through type_for_mode.
9911         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
9912         * pt.c (tsubst, unify): Likewise.
9913         * tree.c (walk_tree): Likewise.
9914         * error.c (dump_type): Likewise.
9915         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
9916
9917         * Make-lang.in: Tweak top comment for emacs.
9918         (cp/TAGS): Restore.
9919
9920         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
9921
9922         * class.c (clone_function_decl): Robustify.
9923
9924 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
9925
9926         * decl.c (store_bindings): Only search in the non modified
9927         old_bindings for duplicates.
9928
9929 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
9930
9931         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
9932         TYPE_POLYMORPHIC_P.
9933
9934         * typeck.c (build_static_cast): Remove unused variable.
9935
9936 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9937
9938         * pt.c: Fix typo in comment.
9939
9940 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
9941
9942         * decl2.c (warn_format): Remove definition.
9943         (lang_decode_option): Handle -Wformat-nonliteral,
9944         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
9945
9946 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
9947
9948         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
9949         (init_decl_processing): Don't create string_type_node,
9950         const_string_type_node, wint_type_node, intmax_type_node,
9951         uintmax_type_node, default_function_type, ptrdiff_type_node and
9952         unsigned_ptrdiff_type_node.  Adjust position of call to
9953         c_common_nodes_and_builtins.
9954         (identifier_global_value): New function.
9955
9956 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
9957
9958         * call.c (standard_conversion): Reject pointer to member
9959         conversions from ambiguous, inaccessible or virtual bases.
9960         * typeck.c (build_static_cast): Don't check pointers to members
9961         specially.
9962
9963 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
9964
9965         * method.c (do_build_copy_constructor): Preserve cv
9966         qualifications when accessing source object members.
9967         (do_build_assign_ref): Likewise. Remove separate diagnostics for
9968         unnamed fields.
9969
9970 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
9971
9972         * method.c (do_build_assign_ref): Construct appropriately
9973         CV-qualified base reference. Don't allow const casts in base
9974         conversion.
9975
9976 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
9977
9978         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
9979         incomplete return type.
9980
9981 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
9982
9983         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
9984         * semantics.c (finish_base_specifier): Accept a _TYPE not a
9985         _DECL.
9986
9987 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
9988
9989         * spew.c (yyerror): Cope if yylval.ttype is NULL.
9990
9991 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
9992
9993         * decl.c (grokdeclarator): Diagnose undefined template contexts.
9994
9995 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
9996
9997         * decl.c (grokdeclarator): Do type access control on friend
9998         class.
9999
10000 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
10001
10002         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
10003         bison parser ickiness.
10004         * pt.c (tsubst_friend_function): Enter namespace scope when
10005         tsubsting the function name.
10006         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
10007
10008 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
10009
10010         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
10011         * cvt.c (cp_convert_to_pointer): Add force parameter.
10012         Allow conversions via virtual base if forced.
10013         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
10014         (ocp_convert): Likewise.
10015         * search.c (binfo_from_vbase): Return the virtual base's binfo.
10016         * typeck.c (get_delta_difference): Adjust handling of virtual
10017         bases.
10018
10019 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
10020
10021         * tree.c (struct list_hash): Remove.
10022         (list_hash_table): Make it be an htab.
10023         (struct list_proxy): New type.
10024         (list_hash_eq): New function.
10025         (list_hash_pieces): Renamed from ...
10026         (list_hash): ... this.
10027         (list_hash_lookup): Remove.
10028         (list_hash_add): Remove.
10029         (hash_tree_cons): Use the generic hashtable.
10030         (mark_list_hash): Remove.
10031         (init_tree): Create the hashtable.
10032
10033 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
10034
10035         * method.c (build_mangled_C9x_name): Rename to
10036         build_mangled_C99_name.  Change C9X references in comments to
10037         refer to C99.
10038
10039 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
10040
10041         * parse.y (unary_expr): Move VA_ARG from here ...
10042         (primary): ... to here.
10043
10044 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
10045
10046         * semantics.c (finish_id_expr): If type is error_mark, return
10047         error_mark.
10048
10049 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
10050
10051         * pt.c (lookup_template_class): Simplify loop exit constructs.
10052         Cope when there is no partial instantiation of a template
10053         template member.
10054
10055 Thu Nov 23 02:16:47 2000  J"orn Rennecke <amylaar@redhat.com>
10056
10057         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
10058
10059 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
10060
10061         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
10062         prefix.
10063
10064         * pt.c (do_decl_instantiate): Explicitly clone constructors and
10065         destructors that haven't already been cloned.
10066
10067 2000-11-20  Richard Henderson  <rth@redhat.com>
10068
10069         * parse.y (yyparse_1): Rename the parser entry point.
10070
10071 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
10072
10073         * mangle.c (write_name): Use <unscoped-name> for names directly in
10074         function scope.
10075         (write_unscoped_name): Accept names directly in function scope.
10076
10077 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
10078
10079         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
10080         * parse.y (extdef): Add EXPORT reduction.
10081         * spew.c (yylex): Don't skip export here.
10082
10083 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
10084
10085         * decl.c (init_decl_processing): Correct name of pure virtual
10086         function under the new ABI.
10087         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
10088         (throw_bad_typeid): Likewise for bad typeid function.
10089
10090 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
10091
10092         * decl.c (grokparms): Don't even function types of `void' type,
10093         either.
10094         * mangle.c (write_type): Don't crash when confronted with the
10095         error_mark_node.
10096
10097         * decl.c (grokparms): Don't create parameters of `void' type.
10098
10099 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
10100
10101         * lex.c (mark_impl_file_chain): Delete.
10102         (init_parse): Remove call to ggc_add_string_root.  No need to
10103         ggc_strdup a string constant.  Do not add impl_file_chain to GC
10104         roots.
10105         (handle_pragma_implementation): No need to ggc_strdup main_filename.
10106
10107 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
10108
10109         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
10110
10111 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
10112
10113         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
10114         * decl.c (grokdeclarator): Don't reject void parms here.
10115         (require_complete_types_for_parms): Simplify, use
10116         complete_type_or_else.
10117         (grokparms): Remove bitrot. Remove funcdef parm.
10118         Deal with ellipsis parm lists here.
10119         * semantics.c (finish_parmlist): Don't append void_list_node
10120         here. Set PARMLIST_ELLIPSIS_P.
10121
10122 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
10123
10124         * typeck2.c (incomplete_type_error): Reorganize to avoid
10125         excessive diagnostics.
10126
10127 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
10128
10129         * lex.c (struct impl_files, internal_filename): Constify a char *.
10130
10131 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
10132
10133         * mangle.c (write_special_name_constructor): Don't generate
10134         assembler junk when confronted with an old-style constructor.
10135         (write_special_name_destructor): Likewise.
10136         (mangle_decl_string): Do it here instead.
10137
10138 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
10139
10140         * call.c (op_error): Make error messages clearer.
10141
10142 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
10143
10144         * decl.c (wrapup_globals_for_namespace): Don't mark things
10145         TREE_ASM_WRITTEN when they're not.
10146
10147 2000-11-15  Jason Merrill  <jason@redhat.com>
10148
10149         * typeck2.c (friendly_abort): Uncount the error before handing
10150         off to fancy_abort.
10151
10152 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
10153
10154         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
10155
10156 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
10157
10158         * class.c (build_vtbl_initializer): Fix typo in comment.
10159         * typeck.c (expr_sizeof): Don't crash on errors.
10160
10161 2000-11-14  Jim Wilson  <wilson@redhat.com>
10162
10163         * lang-specs.h: Add %2 after %(cc1_options).
10164
10165 2000-11-14  Richard Henderson  <rth@redhat.com>
10166
10167         * typeck.c (c_sizeof): Be strict about casting result value
10168         back to c_size_type_node.
10169         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
10170
10171 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
10172
10173         * typeck.c (build_unary_op): Use boolean_increment from
10174         c-common.c, moving the relevant code there.
10175
10176 2000-11-11  Jason Merrill  <jason@redhat.com>
10177
10178         * typeck.c (mark_addressable): Don't call put_var_into_stack.
10179
10180         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
10181         in inlines.
10182
10183 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10184
10185         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
10186         * lex.c (copy_lang_decl): Likewise.
10187
10188 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
10189
10190         * dump.c (cp_dump_tree): Don't dump function bodies here.
10191
10192         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
10193         (dump.o): Update dependency list.
10194         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
10195         (flag_dump_translation_unit): Likewise.
10196         (CP_TYPE_QUALS): Adjust definition.
10197         (DECL_C_BIT_FIELD): Remove.
10198         (SET_DECL_C_BIT_FIELD): Likewise.
10199         (CLEAR_DECL_C_BIT_FIELD): Likewise.
10200         (add_maybe_template): Likewise.
10201         (strip_array_types): Likewise.
10202         (dump_node_to_file): Likewise.
10203         (cp_dump_tree): New function.
10204         * decl.c (init_decl_processing): Set lang_dump_tree.
10205         * decl2.c (flag_dump_translation_unit): Remove.
10206         * dump.c: Move most of it to ../c-dump.c.
10207         (cp_dump_tree): New function.
10208         * pt.c (add_maybe_template): Remove.
10209         * typeck.c (strip_array_types): Likewise.
10210
10211 2000-11-07  Eric Christopher  <echristo@redhat.com>
10212
10213         * decl.c (init_decl_processing): Change definition of
10214         __wchar_t to wchar_t.  Remove artificial declaration of
10215         wchar_t.
10216         * lex.c: Change instances of __wchar_t to wchar_t.
10217
10218 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
10219
10220         * lex.c (do_identifier): Don't lookup_name for operators.
10221         * parse.y (operator): Save looking_for_typename.
10222         (unoperator): Restore it.
10223         * spew.c (frob_opname): Use nth_token for lookahead.
10224
10225 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
10226
10227         * decl.c (grok_op_properties): Always use coerce_new_type and
10228         coerce_delete_type.
10229         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
10230         exception specification. Tidy up.
10231         (coerce_delete_type): Preserve exception specification. Tidy up.
10232
10233 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
10234
10235         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
10236         (push_binding_level), error.c (cp_tree_printer), pt.c
10237         (process_partial_specialization, tsubst_template_arg_vector),
10238         search.c (lookup_member): Use memset () instead of bzero ().
10239
10240 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
10241
10242         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
10243
10244 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
10245
10246         * Make-lang.in (c++.distdir): Remove.
10247
10248 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
10249
10250         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
10251         declarations from different namespaces to be combined.
10252
10253 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
10254
10255         * decl.c: Include tm_p.h.
10256
10257 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
10258
10259         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
10260
10261 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
10262
10263         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
10264         (build_overload_value), repo.c (open_repo_file), xref.c
10265         (open_xref_file): Use strchr () and strrchr () instead of index ()
10266         and rindex ().
10267
10268 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
10269
10270         * call.c (build_over_call): Call fold on the CALL_EXPR.
10271
10272 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
10273
10274         * error.c (dump_template_decl): Separate template hearders with
10275         space not comma.
10276
10277 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
10278
10279         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
10280         TS_* flags with corresponding TFF_*.  Adjust prototypes of
10281         functions (which used to take a tree_string_flags) to take an int.
10282
10283         * cp-tree.h (enum tree_string_flags): Remove
10284         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
10285         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
10286         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
10287         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
10288         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
10289         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
10290         (type_as_string, decl_as_string, expr_as_string,
10291         context_as_string): Adjust prototype.
10292
10293         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
10294         instead of TS_PLAIN.
10295
10296         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
10297         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
10298         plain `0'.
10299
10300 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
10301
10302         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
10303         (linkage_kind): New enumeration.
10304         (decl_linkage): New function.
10305         * decl2.c (comdat_linkage): Extend comment.
10306         * error.c (dump_function_decl): Print the arguments used to
10307         instantiate a template, even when not printing the type of the
10308         function.
10309         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
10310         not TREE_PUBLIC, to test for external linkage.
10311         * tree.c (decl_linkage): New function.
10312
10313 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
10314
10315         * pt.c (instantiate_decl): Always instantiate static data members
10316         initialized in-class.
10317
10318 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
10319
10320         * Make-lang.in: Move all build rules here from Makefile.in,
10321         adapt to new context.  Wrap all rules that change the current
10322         directory in parentheses.  Expunge all references to $(P).
10323         When one command depends on another and they're run all at
10324         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
10325         all object-file generation rules.  Delete obsolete variables.
10326
10327         * Makefile.in: Delete.
10328         * config-lang.in: Delete outputs= line.
10329
10330 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
10331
10332         * error.c (dump_function_decl): Print no space between
10333         `ptr-operator' the `type-specifier' of the return type.
10334         (dump_type_prefix): Make sure we put space at the appropriate
10335         place.
10336
10337 2000-10-23  Jason Merrill  <jason@redhat.com>
10338
10339         * call.c (equal_functions): Also call decls_match for extern "C" fns.
10340
10341 2000-10-22  Jason Merrill  <jason@redhat.com>
10342
10343         * call.c (build_conditional_expr): Use ocp_convert to force
10344         rvalue conversion.
10345
10346 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
10347
10348         * call.c (standard_conversion): Use RVALUE_CONVs for all
10349         expressions that satisfy lvalue_p, not just those that satisfy
10350         real_lvalue_p.
10351
10352         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
10353
10354         * typeck.c (c_sizeof): Return an expression of `size_t' type,
10355         not one with TYPE_IS_SIZETYPE set.
10356         (dubious_conversion_warnings): Remove special-case code.
10357
10358 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
10359
10360         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
10361         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
10362         (dump_type_prefix): Print vector-of-int as 'int vector'.
10363         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
10364         * tree.c (walk_tree): Handle VECTOR_TYPE.
10365
10366         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
10367
10368 2000-10-21  Jason Merrill  <jason@redhat.com>
10369
10370         * parse.y (operator): Set got_object from got_scope.
10371         Set looking_for_typename.
10372         * decl.c (lookup_name_real): Clear val after setting from_obj.
10373         Reorganize diagnostic.
10374
10375 2000-10-20  Jason Merrill  <jason@redhat.com>
10376
10377         * tree.c (walk_tree): Don't walk into default args.
10378
10379         * error.c (dump_expr): Use host_integerp.
10380
10381 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
10382
10383         * typeck2.c (abstract_virtuals_error): Use "because" instead of
10384         "since" in error message.
10385
10386 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10387
10388         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
10389
10390 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
10391
10392         * decl.c (revert_static_member_fn): Fixed typo.
10393
10394 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
10395
10396         * class.c (subobject_offset_fn): New type.
10397         (dfs_record_base_offsets): Remove.
10398         (record_base_offsets): Likewise.
10399         (dfs_search_base_offsets): Likewise.
10400         (record_subobject_offset): New function.
10401         (check_subobject_offset): Likewise.
10402         (walk_subobject_offsets): Likewise.
10403         (record_subobject_offsets): Likewise.
10404         (layout_conflict_p): Reimplement.
10405         (layout_nonempty_base_or_field): Correct handling of type
10406         conflicts during layout.
10407         (layout_empty_base): Likewise.
10408         (build_base_field): Adjust to handle new representation of empty
10409         base offset table.
10410         (build_base_fields): Likewise.
10411         (layout_virtual_bases): Likewise.
10412         (splay_tree_compare_integer_csts): New function.
10413         (layout_class_type): Use a splay_tree, rather than a varray, to
10414         represent the offsets of empty bases.
10415
10416         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
10417         * decl.c (select_decl): Don't return declarations that are
10418         DECL_ANTICIPATED.
10419
10420 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
10421
10422         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
10423         (fake_std_node): New macro.
10424         * decl.c (in_std): Rename to ...
10425         (in_fake_std): ... this.
10426         (flag_no_builtin): Remove.
10427         (flag_no_nonansi_builtin): Likewise.
10428         (walk_namespaces_r): Use fake_std_node.
10429         (push_namespace): Use std_identifier.
10430         (pop_namespace): Use in_fake_std.
10431         (lookup_name_real): Use fake_std_node.
10432         (init_decl_processing): When -fhonor-std, create the `std'
10433         namespace.  Don't create a dummy fake_std_node in that case.
10434         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
10435         (builtin_function): Put builtins whose names don't begin
10436         with `_' in the std namespace.
10437         * decl2.c (flag_no_builtin): Remove.
10438         (flag_no_nonansi_builtin): Likewise.
10439         (set_decl_namespace): Use fake_std_node.
10440         (validate_nonmember_using_decl): Likewise.
10441         (do_using_directive): Likewise.
10442         (handle_class_head): Likewise.
10443         * dump.c (dequeue_and_dump): Likewise.
10444         * except.c (init_exception_processing): Use std_identifier.
10445         * init.c (build_member_call): Use fake_std_node.
10446         * rtti.c (init_rtti_processing): Use std_identifier.
10447
10448 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
10449
10450         * cp-tree.h (back_end_hook): Remove declaration.
10451         * decl2.c (back_end_hook): Remove definition.
10452
10453         * dump.c (dequeue_and_dump): Dump TREE_USED.
10454
10455 Tue Oct 17 20:19:06 2000  Brad Lucier <lucier@math.purdue.edu>
10456
10457         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
10458
10459 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
10460
10461         * decl.c (WINT_TYPE): Define.
10462         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
10463         c_size_type_node, signed_size_type_node and wint_type_node.
10464
10465 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
10466
10467         * decl2.c (warn_missing_format_attribute): New variable.
10468         (lang_decode_option): Decode -Wmissing-format-attribute.
10469
10470 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
10471
10472         * typeck.c (qualify_type): Remove.
10473         (composite_pointer_type): Fix handling of conversions to `cv void*'.
10474
10475 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10476
10477         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
10478
10479 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10480
10481         * Makefile.in (parse.c, parse.h): Create atomically.
10482
10483 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
10484
10485         * class.c (current_obstack): Remove.
10486         * decl.c (ggc_p): Remove.
10487         (start_decl): Don't use decl_tree_cons.
10488         (grokdeclarator): Don't use build_decl_list.
10489         (start_function): Don't use decl_tree_cons.
10490         (finish_function): Don't mess with obstacks.
10491         * decl2.c (grok_x_components): Don't use build_decl_list.
10492         * lex.c (make_call_declarator): Don't call decl_tree_cons.
10493         (implicitly_declare_fn): Don't call build_decl_list.
10494         * parse.y (frob_specs): Don't call build_decl_list or
10495         decl_tree_cons.
10496         (expr_or_declarator_intern): Don't call decl_tree_cons.
10497         (primary): Don't call build_decl_list.
10498         (fcast_or_absdcl): Likewise.
10499         (typed_declspecs): Don't call decl_tree_cons.
10500         (reserved_declspecs): Don't call build_decl_list.
10501         (declmods): Likewise.
10502         (reserved_typespecquals): Likewise.
10503         (aggr): Likewise.
10504         (new_type_id): Likewise.
10505         (cv_qualifiers): Likewise.
10506         (after_type_declarator_intern): Likewise.
10507         (notype_declarator_intern): Likewise.
10508         (absdcl_intern): Likewise.
10509         (named_parm): Likewise.
10510         * pt.c (most_specialized_class): Likewise.
10511         * repo.c (temporary_obstack): Make it a structure, not a pointer.
10512         (init_repo): Initialize it.
10513         * search.c (current_obstack): Remove.
10514         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
10515
10516 2000-10-09  Richard Henderson  <rth@cygnus.com>
10517
10518         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
10519         (c++ language support bits for libgcc): Remove.
10520         (c++.clean): Remove cplib2.txt cleanup.
10521         * config-lang.in (headers, lib2funcs): Remove.
10522
10523         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
10524         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
10525         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
10526         * inc/new.h, inc/typeinfo: Remove files.
10527
10528 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
10529
10530         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
10531         defined.
10532         (init_decl_processing): Initialize intmax_type_node and
10533         uintmax_type_node.
10534
10535 2000-10-06  Richard Henderson  <rth@cygnus.com>
10536
10537         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
10538         (original_result_rtx): Remove.
10539         * decl.c (save_function_data): Don't clear x_result_rtx.
10540         (mark_lang_function): Don't mark it either.
10541         * expr.c (fixup_result_decl): Remove.
10542         * semantics.c (genrtl_named_return_value): Frob the return decl
10543         before calling emit_local_var.
10544         (genrtl_finish_function): Don't call fixup_result_decl.
10545         Always emit the jump to return_label.
10546
10547 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
10548
10549         * pt.c (lookup_template_class): Set current access for enum.
10550         (tsubst_enum): Set file & line for enum decl.
10551
10552         * spew.c (yylex): Remove unused variable.
10553
10554 2000-10-05  Richard Henderson  <rth@cygnus.com>
10555
10556         * semantics.c (genrtl_finish_function): Don't init or check
10557         can_reach_end; remove noreturn and return value checks.
10558
10559 2000-10-05  Tom Tromey  <tromey@cygnus.com>
10560
10561         * init.c (build_java_class_ref): Use `build_static_name' with a
10562         suffix, not a prefix, to build the class object's name.
10563
10564 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
10565
10566         * cp-tree.h (access_kind): Fix comment typo.
10567         * decl2.c (grokfield): Fix diagnostic typo.
10568         * semantics.c (finish_template_type): Fix comment typo.
10569         (finish_qualified_object_call_expr): Likewise.
10570
10571 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
10572
10573         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
10574         tsubsting fails.
10575
10576 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
10577
10578         * spew.c (frob_id): New static function.
10579         (frob_opname): Use it.
10580         (yylex): Use it.
10581
10582 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
10583
10584         * decl.c (lang_mark_false_label_stack): Remove.
10585         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
10586
10587 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
10588
10589         * gxxint.texi: Use @email for formatting email addresses.
10590
10591 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
10592
10593         * error.c: Remove direct obstack manipulation.  Replace with
10594         output_buffer-based formatting.  Adjust calls to removed macros.
10595         (obstack_chunk_alloc, obstack_chunk_free): Remove.
10596         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
10597         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
10598
10599 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
10600
10601         * ir.texi: Move to ../c-tree.texi.
10602
10603 2000-09-20  Jason Merrill  <jason@redhat.com>
10604
10605         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
10606
10607 2000-09-21  Andreas Jaeger  <aj@suse.de>
10608
10609         * errfn.c: Move declaration of cp_printer and cp_printers to ...
10610         * cp-tree.h: ... here.
10611
10612         * error.c: Remove declaration of cp_printer.
10613
10614 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
10615
10616         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
10617
10618 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
10619
10620         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
10621         users.
10622
10623 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
10624
10625         * decl.c (start_function): Robustify.
10626
10627 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10628
10629         * cp-tree.h (check_function_format): Accept a `status' parameter.
10630
10631         * call.c, typeck.c: Updates calls to `check_function_format'.
10632
10633 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
10634
10635         * decl2.c (handle_class_head): Always push some scope even
10636         in the error case.
10637
10638 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
10639
10640         * cp-tree.h (struct cp_language_function): Remove
10641         x_scope_stmt_stack and name_declared.
10642         (current_scope_stmt_stack): Remove.
10643         (function_name_declared_p): New macro.
10644         (struct lang_decl_flags): Use c_lang_decl as a base class.
10645         (context): Remove.
10646         (struct lang_decl): Replace saved_tree with context.
10647         (DECL_FRIEND_CONTEXT): Adjust accordingly.
10648         (SET_DECL_FRIEND_CONTEXT): Likewise.
10649         (DECL_VIRTUAL_CONTEXT): Likewise.
10650         (DECL_SAVED_TREE): Remove.
10651         (C_DECLARED_LABEL_FLAG): Likewise.
10652         (cplus_expand_expr_stmt): Don't declare.
10653         (add_decl_stmt): Likewise.
10654         (add_scope_stmt): Likewise.
10655         * decl.c (mark_stmt_tree): Remove.
10656         (case_compare): Likewise.
10657         (finish_case_label): Use c_add_case_label.
10658         (init_decl_processing): Set more language-specific hooks.
10659         (build_enumerator): Fix typo in comment.
10660         (cplus_expand_expr_stmt): Remove.
10661         (mark_lang_function): Use mark_c_language_function.
10662         (lang_mark_tree): Use c_mark_lang_decl.
10663         * decl2.c: Change order of inclusion.
10664         * except.c: Likewise.
10665         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
10666         back on c_expand_expr.
10667         * friend.c: Include expr.h.
10668         * init.c: Change order of inclusion.
10669         * Makefile.in: Update dependencies.
10670         * lex.h (free_lang_decl_chain): Remove.
10671         * optimize.c (maybe_clone_body): Use function_name_declared_p.
10672         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
10673         it doesn't exist.
10674         (instantiate_decl): Use function_name_declared_p.
10675         * semantics.c (lang_expand_expr_stmt): Remove.
10676         (set_current_function_name_declared): Likewise.
10677         (current_function_name_declared): Likewise.
10678         (begin_compound_stmt): Use function_name_declared_p.
10679         (add_decl_stmt): Remove.
10680         (setup_vtbl_ptr): Use function_name_declared_p.
10681         (add_scope_stmt): Remove.
10682         (current_scope_stmt_stack): New function.
10683         (cp_expand_stmt): Don't handle SCOPE_STMTs.
10684         (expand_body): Use function_name_declared_p.
10685         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
10686         * typeck.c: Change order of includes.
10687         (convert_sequence): Remove.
10688
10689 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
10690
10691         * lex.c (reswords): Add _Complex.
10692
10693 Thu Sep 14 12:10:45 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10694
10695         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
10696
10697 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
10698
10699         * init.c (begin_init_stmts): Don't use // comments.
10700
10701 2000-09-12  Jason Merrill  <jason@redhat.com>
10702
10703         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
10704         all non-extern arrays.
10705
10706         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
10707         typenames, too.  Downgrade complaint to pedwarn.
10708         (xref_tag): Warn about surprising behavior of 'friend struct T'.
10709         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
10710         'class This::Inherited'.
10711
10712 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
10713
10714         * decl.c (finish_case_label): Given the LABEL_DECL a
10715         DECL_CONTEXT.
10716
10717 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
10718
10719         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
10720         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
10721         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
10722         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
10723         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
10724         New macros.
10725         (sorry_for_unsupported_tree, print_scope_operator,
10726         print_left_paren, print_right_paren, print_left_bracket,
10727         print_right_bracket, print_whitespace): Likewise.
10728         (aggr_variety): Rename to class_key_or_enum.
10729         (print_type): Rename to print_type_id.
10730         (print_type_specifier_seq, print_simple_type_specifier,
10731         print_elaborated_type_specifier,
10732         print_rest_of_abstract_declarator,
10733         print_parameter_declaration_clause, print_exception_specification,
10734         print_nested_name_specifier, print_template_id,
10735         typedef_original_name,  print_template_argument_list_start,
10736         print_template_argument_list_end): New functions.
10737
10738 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
10739
10740         * ir.texi: Add more documentation.
10741
10742 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
10743
10744         * cp-tree.h (struct saved_scope): Remove x_function_parms.
10745         (current_function_parms): Don't define.
10746         (struct cp_language_function): Remove parms_stored.
10747         (current_function_just_assigned_this): Don't define.
10748         (current_function_parms_stored): Likewise.
10749         (static_ctors): Declare.
10750         (static_dtors): Likewise.
10751         (SF_EXPAND): Don't define.
10752         (expand_start_early_try_stmts): Remove declaration.
10753         (store_parm_decls): Likewise.
10754         * decl.c (static_ctors): Don't declare.
10755         (static_dtors): Likewise.
10756         (struct binding_level): Remove this_block.
10757         (poplevel): Remove dead code.
10758         (set_block): Likewise.
10759         (mark_binding_level): Don't mark this_block.
10760         (mark_saved_scope): Don't mark x_function_parms.
10761         (init_decl_processing): Don't add current_function_parms as a GC
10762         root.
10763         (check_function_type): Change prototype.
10764         (start_function): Remove RTL-generation code.
10765         (expand_start_early_try_stmts): Remove.
10766         (store_parm_decls): Give it internal linkage.  Remove
10767         RTL-generation code.
10768         (finish_function): Remove RTL-generation code.
10769         * decl2.c (static_ctors): Fix formatting.
10770         (static_dtors): Likewise.
10771         * method.c (use_thunk): Don't call store_parm_decls.
10772         (synthesize_method): Likewise.
10773         * optimize.c (maybe_clone_body): Likewise.
10774         * parse.y (fn.def2): Likewise.
10775         (.set_base_init): Likewise.
10776         (nodecls): Likewise.
10777         * pt.c (instantiate_decl): Likewise.
10778         * rtti.c (synthesize_tinfo_fn): Likewise.
10779         * semantics.c (genrtl_try_block): Simplify.
10780         (expand_body): Use genrtl_start_function and
10781         genrtl_finish_function.
10782         (genrtl_start_function): New function.
10783         (genrtl_finish_function): Likewise.
10784
10785 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
10786
10787         * error.c (cp_tree_printer, case 'P'): Append break.
10788
10789 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
10790
10791         * cp-tree.h (frob_opname): Declare.
10792         * parse.y (saved_scopes): New static variable.
10793         (cp_parse_init): Adjust.
10794         (do_id): If lastiddecl is NULL, do do_identifier.
10795         (operator): Save scope information.
10796         (unoperator): New reduction. Restore scope information.
10797         (operator_name): Append unoperator. Call frob_opname.
10798         * spew.c (frob_opname): Define.
10799
10800 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
10801
10802         * decl.c, rtti.c: Include defaults.h if not already included.
10803         Don't define the *_TYPE_SIZE macros.
10804
10805 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
10806
10807         * cp-tree.h (push_switch): Change prototype.
10808         (check_cp_case_value): Remove declaration.
10809         (decl_constant_value): Likewise.
10810         * decl.c (struct cp_switch): Add switch_stmt and cases.
10811         (case_compare): New function.
10812         (push_switch): Set switch_stmt.  Initialize cases.
10813         (pop_switch): Clean up cases.
10814         (define_case_label): Rename to ...
10815         (finish_case_label): ... this.  Do semantic analysis for case
10816         labels here.
10817         (start_function): Correct comment.
10818         * decl2.c (check_cp_case_value): Remove.
10819         * expr.c (do_case): Remove.
10820         * pt.c (tsubst_expr): Adjust call to finish_case_label.
10821         * semantics.c (genrtl_do_poplevel): Remove declaration.
10822         (RECHAIN_STMTS): Remove.
10823         (finish_break_stmt): Use build_break_stmt.
10824         (finish_continue_stmt): Use build_continue_stmt.
10825         (finish_switch_cond): Adjust condition here, rater than in
10826         c_expand_start_case.
10827         (finish_case_label): Remove.
10828         * typeck.c (c_expand_return): Remove.
10829         (c_expand_start_case): Likewise.
10830
10831 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
10832
10833         * ir.texi: Document type nodes.
10834
10835 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
10836
10837         * cp-tree.h (init_cp_semantics): Declare.
10838         (genrtl_try_block): Don't declare.
10839         (genrtl_handler): Likewise.
10840         (genrtl_catch_block): Likewise.
10841         (genrtl_ctor_stmt): Likewise.
10842         (genrtl_subobject): Likewise.
10843         (genrtl_do_poplevel): Likewise.
10844         (genrtl_named_return_value): Likewise.
10845         * lex.c (init_parse): Call init_cp_semantics.
10846         * semantics.c (genrtl_try_block): Give it internal linkage.
10847         (genrtl_handler): Likewise.
10848         (genrtl_catch_block): Likewise.
10849         (genrtl_ctor_stmt): Likewise.
10850         (genrtl_subobject): Likewise.
10851         (genrtl_do_poplevel): Likewise.
10852         (genrtl_named_return_value): Likewise.
10853         (lang_expand_stmt): Rename to ...
10854         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
10855         (init_cp_semantics): Define.
10856
10857         * decl.c (initialize_local_var): Remove RTL-generating code.
10858         * semantics.c (genrtl_try_block): Fix formatting.
10859
10860         Move statement-tree facilities from C++ to C front-end.
10861         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
10862         (void_zero_node): Remove.
10863         (stmt_tree): Likewise.
10864         (scope_chain): Adjust.
10865         (language_function): Rename to cp_language_function.
10866         (cp_function_chain): Adjust.
10867         (current_stmt_tree): Remove.
10868         (last_tree): Likewise.
10869         (last_expr_type): Likewise.
10870         (struct lang_decl): Adjust.
10871         (STMT_IS_FULL_EXPR_P): Remove.
10872         (add_tree): Remove.
10873         (begin_stmt_tree): Likewise.
10874         (finish_stmt_tree): Likewise.
10875         (walk_tree_fn): Likewise.
10876         (walk_stmt_tree): Likewise.
10877         * class.c (finish_struct): Replace use of add_tree with add_stmt.
10878         * decl.c (mark_stmt_tree): Adjust type.
10879         (init_decl_processing): Don't build void_zero_node.
10880         (initialize_local_var): Adjust usage of current_stmt_tree.
10881         (finish_enum): Use add_stmt, not add_tree.
10882         (save_function_data): Adjust use of language_function.
10883         (finish_constructor_body): Use add_stmt, not add_tree.
10884         (finish_destructor_body): Likewise.
10885         (push_cp_function_context): Adjust use of language_function.
10886         (pop_cp_function_context): Likewise.
10887         (mark_lang_function): Likewise.
10888         (mark_cp_function_context): Likewise.
10889         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
10890         (build_vec_init): Likewise.
10891         * semantics.c (SET_LAST_STMT): Remove.
10892         (RECHAIN_STMTS): Don't use it.
10893         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
10894         (current_stmt_tree): Define.
10895         (add_tree): Remove.
10896         (finish_goto_stmt): Use add_stmt, not add_tree.
10897         (finish_expr_stmt): Likewise.
10898         (begin_if_stmt): Likewise.
10899         (finish_then_clause): Likewise.
10900         (begin_while_stmt): Likewise.
10901         (begin_do_stmt): Likewise.
10902         (finish_return_stmt): Likewise.
10903         (begin_for_stmt): Likewise.
10904         (finish_break_stmt): Likewise.
10905         (finish_continue_stmt): Likewise.
10906         (begin_switch_stmt): Likewise.
10907         (finish_case_label): Likewise.
10908         (begin_try_block): Likewise.
10909         (begin_function_try_block): Likewise.
10910         (begin_handler): Likewise.
10911         (begin_catch_block): Likewise.
10912         (begin_compound_stmt): Likewise.
10913         (begin_asm_stmt): Likewise.
10914         (finish_asm_stmt): Likewise.
10915         (finish_label_stmt): Likewise.
10916         (add_decl_stmt): Likewise.
10917         (finish_subobject): Likewise.
10918         (finish_decl_cleanup): Likewise.
10919         (finish_named_return_value): Likewise.
10920         (setup_vtbl_ptr): Likewise.
10921         (add_scope_stmt): Likewise.
10922         (finish_stmt_expr): Likewise.
10923         (prune_unused_decls): Remove.
10924         (begin_stmt_tree): Likewise.
10925         (finish_stmt_tree): Likewise.
10926         (prep_stmt): Adjust use of current_stmt_tree.
10927         (lang_expand_stmt): Likewise.
10928         * tree.c (statement_code_p): Remove.
10929         (cp_statement_code_p): New function.
10930         (walk_stmt_tree): Remove.
10931         (init_tree): Set lang_statement_code_p.
10932
10933 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
10934
10935         Integrated preprocessor.
10936
10937         * Make-lang.in, Makefile.in: Remove all references to input.c,
10938         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
10939         * gxx.gperf, hash.h, input.c: Delete.
10940         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
10941         initialized properly.
10942
10943         * class.c (fixup_pending_inline): Take a tree, not a
10944         struct pending_inline *.  All callers changed.
10945         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
10946         RID_PROTECTED entries in ridpointers[] array here.
10947         * decl.c (duplicate_decls): Do not refer to struct
10948         pending_inline.
10949         (record_builtin_type, init_decl_processing): Use RID_MAX not
10950         CP_RID_MAX.
10951         (grokdeclarator): Use C_IS_RESERVED_WORD.
10952         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
10953         cpplib.
10954         (grok_x_components): Do not inspect pending_inlines chain.
10955
10956         * cp-tree.h (struct lang_identifier): Add rid_code entry.
10957         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
10958         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
10959         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
10960         TIME_IDENTIFIER_FILEINFO): Kill.
10961         Update prototypes.
10962         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
10963         single 32-bit word.
10964         * parse.y: Call do_pending_inlines unconditionally.
10965         reinit_parse_for_method is now snarf_method.  fn.defpen is no
10966         longer necessary.  Remove unnecessary <itype> annotation on
10967         SCOPE.  Do not refer to end_of_file or struct pending_inline.
10968         * semantics.c (begin_inline_definitions): Call
10969         do_pending_inlines unconditionally.
10970
10971         * lex.c: Remove all code now shared with C front end.
10972         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
10973         into the get_identifier table.  Rewrite pragma handling to
10974         work with the registry.  Move code to save tokens for later
10975         processing to spew.c.
10976
10977         * spew.c: Rewrite everything in terms of token streams instead
10978         of text.  Move routines here from lex.c / input.c as
10979         appropriate.  GC-mark trees hanging off the pending inlines
10980         chain.
10981
10982 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
10983
10984         * NEWS: Mention that the named return value extension has been
10985         deprecated.
10986         * cp-tree.h (original_result_rtx): Define.
10987         (TREE_REFERENCE_EXPR): Remove.
10988         (DECL_VPARENT): Likewise.
10989         (pushdecl_nonclass_level): Likewise.
10990         (store_return_init): Likewise.
10991         (reinit_lang_specific): Likewise.
10992         (genrtl_named_return_value): Change prototype.
10993         * decl.c (original_result_rtx): Remove.
10994         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
10995         Do not generate RTL for local variables here.
10996         (store_return_init): Remove.
10997         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
10998         store_return_init.
10999         (finish_named_return_value): Adjust accordingly.  Warn that this
11000         extension is deprecated.
11001         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
11002
11003 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
11004
11005         * pt.c (type_unification_real): Replace switch with if.
11006         (unify): Tsubst non-type parms before comparing.
11007
11008 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
11009
11010         * error.c (dump_typename): New function, broken out of ...
11011         (dump_type): ... here. Use it.
11012         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
11013
11014 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
11015
11016         * init.c (build_offset_ref): Deal with namespace scoped
11017         TEMPLATE_ID_EXPRs.
11018
11019 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
11020
11021         * class.c (resolve_address_of_overloaded_function): Add
11022         explanation message.
11023         * decl.c (define_case_label): Reformat explanation.
11024         * decl2.c (finish_static_data_member_decl): Likewise.
11025         (grokfield): Likewise.
11026         * friend.c (do_friend): Likewise.
11027
11028 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
11029
11030         * tree.c (walk_tree): Expose tail recursion.
11031         (walk_stmt_tree): New function.
11032         * cp-tree.h: Prototype walk_stmt_tree.
11033         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
11034         the BLOCKs directly.  If a BLOCK has no variables after
11035         pruning, discard it.
11036         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
11037         restore the line number.
11038
11039 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
11040
11041         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
11042         (pt.o): Remove dependency on HTAB_H.
11043         * cp-tree.h: Include hashtab.h.
11044         (walk_tree): Change prototype.
11045         (walk_tree_without_duplicates): New function.
11046         * decl.c (check_default_argument): Use it.
11047         * optimize.c (remap_decl): Adjust calls to walk_tree.
11048         (copy_body): Likewise.
11049         (expand_calls_inline): Likewise.
11050         (calls_setjmp_p): Use walk_tree_without_duplicates.
11051         * pt.c: Don't include hashtab.h.
11052         (for_each_template_parm): Use walk_tree_without_duplicates.
11053         * semantics.c (finish-stmt_tree): Likewise.
11054         (expand_body): Likewise.
11055         * tree.c (walk_tree): Add additional parameter.
11056         (walk_tree_without_duplicates): New function.
11057         (count_trees): Use it.
11058         (verify_stmt_tree): Adjust call to walk_tree.
11059         (find_tree): Use walk_tree_without_duplicates.
11060         (no_linkage_check): Likewise.
11061         (break_out_target_exprs): Adjust call to walk_tree.
11062         (cp_unsave): Likewise.
11063
11064 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11065
11066         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
11067         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
11068         * cp-tree.h (TYPE_BINFO): Adjust comment.
11069         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
11070         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
11071         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
11072         (TYPE_TEMPLATE_INFO): Likewise.
11073         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
11074         * class.c (push_nested_class): Likewise.
11075         * decl.c (lookup_name_real): Likewise.
11076         (grokdeclarator): Likewise.
11077         (grok_op_properties): Likewise.
11078         (xref_tag): Likewise.
11079         (xref_basetypes): Likewise.
11080         * decl2.c (constructor_name_full): Likewise.
11081         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
11082         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
11083         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
11084         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11085         (dump_type_suffix): Likewise.
11086         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
11087         instead.
11088         (get_aggr_from_typedef): Likewise.
11089         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
11090         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11091         (write_template_parm): Likewise.
11092         (write_template_template_parm): Check tree code instead of
11093         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
11094         * method.c (build_overload_nested_name): Add
11095         BOUND_TEMPLATE_TEMPLATE_PARM.
11096         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
11097         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11098         * pt.c (convert_template_argument): Check tree code instead of
11099         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
11100         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
11101         (for_each_template_parm): Adjust comment.
11102         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
11103         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11104         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
11105         template_args_equal to compare template template parameter cases.
11106         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11107         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
11108         instead.
11109         * tree.c (copy_template_template_parm): Decide whether to create
11110         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
11111         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
11112         (copy_tree_r): Likewise.
11113         * typeck.c (comptypes): Likewise.  Check tree code instead of
11114         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
11115
11116 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
11117
11118         * decl.c (finish_function): Move the code for handling functions
11119         marked with the constructor and destructor attributes inside the
11120         expand_p block.
11121
11122 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
11123
11124         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
11125
11126 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
11127
11128         * pt.c (lookup_template_class): Remove abort.
11129         * tree.c (get_type_decl): Allow error_mark_node.
11130
11131 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
11132
11133         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
11134         TEMPLATE_ID_EXPRs.
11135
11136 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
11137
11138         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
11139         new ABI mangling.
11140
11141 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
11142
11143         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
11144         union tag mismatch error reporting.
11145
11146 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
11147
11148         * call.c (build_scoped_method_call): Check it is not a namespace.
11149
11150 2000-08-30  Jason Merrill  <jason@redhat.com>
11151
11152         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
11153
11154         * tree.c (bot_manip): Check TREE_CONSTANT rather than
11155         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
11156         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
11157
11158         * decl.c (start_function): Always call make_function_rtl.
11159
11160 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
11161
11162         * semantics.c (prune_unused_decls): New function.
11163         (finish_stmt_tree): Call it via walk_tree.
11164
11165 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
11166
11167         * class.c (build_secondary_vtable): Constify a char *.
11168         * decl.c (init_decl_processing): Initialize function_id_node,
11169         pretty_function_id_node, and func_id_node.
11170         * input.c (struct input_source): Constify 'str'.
11171         (feed_input): Constify first argument.
11172         * mangle.c (write_identifier): Constify argument.
11173         * pt.c (mangle_class_name_for_template): Constify argument.
11174
11175 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
11176
11177         * typeck.c (mark_addressable): Remove code that pokes around in
11178         RTL.
11179
11180 2000-08-28  Jason Merrill  <jason@redhat.com>
11181
11182         * lex.c (file_name_nondirectory): Move to toplev.c.
11183
11184         * cp-tree.h (LOCAL_CLASS_P): New macro.
11185         * class.c (finish_struct_1): Use it.
11186
11187 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
11188
11189         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
11190         (write_encoding): Pass another argument to write_name.
11191         (write_name): Add ignore_local_scope parameter.  Fix handling of
11192         local names.
11193         (write_nested_name): Use write_unqualified_name.
11194         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
11195         (write_template_prefix): Use write_unqualified_name.
11196         (write_component): Remove.
11197         (write_local_name): Add parameter.  Use direct local entity to
11198         discriminator calculation.
11199         (write_class_enum_type): Pass another argument to write_name.
11200         (write_template_template_arg): Likewise.
11201         (make_guard_variable): Likewise.
11202
11203 2000-08-27  Jason Merrill  <jason@redhat.com>
11204
11205         * decl.c (pushdecl): Matching decls for local externs are found in
11206         the current level.  Propagate linkage information from previous
11207         declarations.
11208
11209 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
11210
11211         * ir.texi (Expressions): Fix typo.
11212
11213 2000-08-25  Greg McGary  <greg@mcgary.org>
11214
11215         * tree.c (init_tree): Use ARRAY_SIZE.
11216
11217 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
11218
11219         * error.c (cp_tree_printer): Rework.
11220
11221 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
11222
11223         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
11224         dyn-string.o.
11225         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
11226         (cp-demangle.o): Remove target.
11227         (dyn-string.o): Likewise.
11228
11229         * decl.c (grokfndecl): Require that `main' return an `int'.
11230         * mangle.c (write_encoding): Don't mangle return types for
11231         conversion functions.
11232
11233 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
11234
11235         * error.c (tree_formatting_info): New data type.
11236         (tree_being_formatted): New macro.
11237         (tree_formatting_flags): Likewise.
11238         (put_whitespace): Likewise.
11239         (print_tree_identifier): Likewise.
11240         (print_identifier): Likewise.
11241         (cp_tree_printer, print_function_argument_list, print_declaration,
11242         print_expression, print_function_declaration,
11243         print_function_parameter, print_type, print_cv_qualifier): New
11244         functions.
11245         (init_error): Initialize lang_printer.
11246
11247 2000-08-24  Jason Merrill  <jason@redhat.com>
11248
11249         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
11250         adjustment necessary.
11251
11252 2000-08-24  Greg McGary  <greg@mcgary.org>
11253
11254         * cp-tree.h (MAIN_NAME_P): Remove macro.
11255
11256 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
11257
11258         * error.c (print_instantiation_context): Don't forget to flush the
11259         buffer.
11260
11261 2000-08-23  Jason Merrill  <jason@redhat.com>
11262
11263         * typeck.c (build_ptrmemfunc): Save the input pmf.
11264
11265         * method.c (process_modifiers): Use same_type_p.
11266
11267 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
11268
11269         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
11270         * mangle.c (write_function_type): Change prototype.
11271         (write_encoding): Don't mangle return types for
11272         constructors or destructors.
11273         (write_type): Adjust call to write_function_type.
11274         * pt.c (instantiate_template): Instantiate alternate entry points
11275         when instantiating the main function.
11276
11277 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
11278
11279         * error.c (cp_print_error_function): Don't use embedded '\n' in
11280         output_printf.
11281
11282 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
11283
11284         * decl.c (init_decl_processing): Remove bogus initialization.
11285         * error.c (lang_print_error_function): Restore here.
11286         (init_error): Initialize print_error_function.
11287
11288 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
11289
11290         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
11291
11292 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
11293
11294         * Makefile.in (error.o): Depends on diagnostic.h
11295
11296         * cp-tree.h (problematic_instantiation_changed,
11297         record_last_problematic_instantiation, current_instantiation,
11298         print_instantiation_context): Declare.
11299         (maybe_print_template_context): Remove.
11300
11301         * decl.c (init_decl_processing): Set print_error_function to NULL.
11302         (lang_print_error_function): Remove, since we're using a new
11303         machinery.
11304
11305         * error.c: #include diagnostic.h
11306         (function_category): New function.
11307         (cp_diagnostic_starter): Likewise.
11308         (cp_diagnostic_finalizer): Likewise.
11309         (cp_print_error_function): Likewise.
11310         (maybe_print_instantiation_context): Likewise.
11311         (print_instantiation_full_context): Likewise.
11312         (print_instantiation_partial_context): Likewise.
11313         (print_instantiation_context): Define.
11314         (init_error): Initialize diagnostic pager and finalizer.
11315
11316         * pt.c (problematic_instantiation_changed): Define.
11317         (record_last_problematic_instantiation): Likewise.
11318         (current_instantiation): Likewise.
11319         (maybe_print_template_context): Remove.
11320         (print_template_context): Likewise.
11321         (current_tinst_level): Make static to reflect Brendan Kehoe's
11322         change of 1995-04-13.
11323         (push_tinst_level): Call print_instantiation_context.
11324
11325 2000-08-21  Nix  <nix@esperi.demon.co.uk>
11326
11327         * lang-specs.h: Do not process -o or run the assembler if
11328         -fsyntax-only.
11329
11330 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
11331
11332         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
11333         variables.
11334         * decl2.c (lang_decode_option): Disable gettext attributes for
11335         -ansi.
11336
11337 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
11338
11339         * lex.c (lang_init_options): Default diagnostic message maximum
11340         length to 80, when line-wrapping.
11341
11342 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
11343
11344         * class.c (build_vtbl_initializer): Clear the entire
11345         vtbl_init_data.  Start keeping track of the functions for which we
11346         have created vcall offsets here.
11347         (dfs_build_vcall_offset_vtbl_entries): Remove.
11348         (build_vcall_offset_vtbl_entries): Reimplement.
11349         (add_vcall_offset_vtbl_entries_r): New function.
11350         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
11351         computing when vcall offsets are necessary.
11352
11353 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
11354
11355         * decl.c (member_function_or_else): Use cp_error ... %T.
11356         (grokdeclarator): Likewise.
11357         (start_method): Likewise.
11358         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
11359
11360 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
11361
11362         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
11363         TYPE_DECLs.
11364
11365 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
11366
11367         * cp-tree.h (PTRMEM_OK_P): New macro.
11368         (itf_ptrmem_ok): New enumeration value.
11369         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
11370         argument. Diagnose implicit pointer to member.
11371         (instantiate_type): Don't diagnose implicit pointer to member
11372         here. Pass itf_ptrmem_ok if ok. Adjust calls to
11373         resolve_address_of_overloaded_function.
11374         * init.c (build_offset_ref): Set PTRMEM_OK_P.
11375         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
11376         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
11377         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
11378         (build_unary_op): Deal with single non-static member in
11379         microsoft-land.
11380
11381 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
11382
11383         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
11384
11385 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
11386
11387         * cp-tree.h (enum_name_string): Remove prototype.
11388         (report_case_error): Remove prototype.
11389         * cp/typeck2.c (enum_name_string): Remove.
11390         (report_case_error): Remove.
11391         * error.c (dump_expr): Deal with enum values directly.
11392         Correctly negate integer constant.
11393
11394 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
11395
11396         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
11397         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
11398         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
11399         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
11400         (__cxa_vec_new): Use __cxa_vec_new2.
11401         (__cxa_vec_delete): Use __cxa_vec_delete2.
11402
11403 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
11404
11405         * vec.cc (__cxa_vec_new): Set "C" linkage.
11406         (__cxa_vec_ctor): Likewise.
11407         (__cxa_vec_cctor): Likewise.
11408         (__cxa_vec_dtor): Likewise.
11409         (__cxa_vec_delete): Likewise.
11410         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
11411         (__cxa_vec_ctor): Likewise.
11412         (__cxa_vec_cctor): Likewise.
11413         (__cxa_vec_dtor): Likewise.
11414         (__cxa_vec_delete): Likewise.
11415
11416 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
11417
11418         * class.c (instantiate_type): Reinstate local variable
11419         deleted in previous change.
11420
11421         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
11422         itf_no_attributes.
11423
11424 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
11425
11426         * cp-tree.h (instantiate_type_flags): New enumeration.
11427         (instantiate_type): Change parameter.
11428         * class.c (instantiate_type): Adjust prototype. Adjust.
11429         * call.c (standard_conversion): Adjust instantiate_type call.
11430         (reference_binding): Likewise.
11431         (build_op_delete_call): Likewise.
11432         (convert_like_real): Likewise.
11433         * cvt.c (cp_convert_to_pointer): Likewise.
11434         (convert_to_reference): Likewise.
11435         * pt.c (convert_nontype_argument): Likewise.
11436         * typeck.c (build_binary_op): Likewise.
11437         (build_ptrmemfunc): Likewise.
11438         (convert_for_assignment): Likewise.
11439
11440 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
11441
11442         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
11443         (current_aggr): Define.
11444         * decl.c (grokdeclarator): Make sure a friend class is an
11445         elaborated type specifier.
11446         * parse.y (current_aggr): Remove static definition.
11447         (cp_parse_init): Adjust.
11448         (structsp): Clear and restore current_aggr.
11449         (component_decl_list): Clear current_aggr.
11450
11451         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
11452         aggregate tag on the typename's context.
11453
11454         * pt.c (tsubst_friend_class): Return error_mark_node, if
11455         parms becomes NULL.
11456         (instantiate_class_template): Ignore error_mark_node friend types.
11457
11458 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
11459
11460         * cvt.c (warn_ref_binding): New static function, broken out of ...
11461         (convert_to_reference): ... here. Use it.
11462
11463 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
11464
11465         * parse.y (template_arg): Add rule for template qualified with
11466         global scope.
11467
11468 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11469
11470         * decl2.c (add_function): Reorganize.
11471         (arg_assoc): Do not consider function template decls.
11472
11473 2000-08-11  Jason Merrill  <jason@redhat.com>
11474
11475         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
11476         looking inside.
11477
11478 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
11479
11480         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
11481         (lookup_nested_tag): Likewise.
11482
11483         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
11484         can be produced.
11485
11486 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
11487
11488         * parse.y (named_complex_class_head_sans_basetype): Remove
11489         always true if.
11490
11491 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
11492
11493         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
11494         explicit TEMPLATE_ID_EXPR args.
11495         (build_expr_from_tree, case CALL_EXPR): Likewise.
11496
11497 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
11498
11499         * decl.c (check_tag_decl): Diagnose typename's which don't
11500         declare anything.
11501
11502 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
11503
11504         * init.c (build_aggr_init): Reject bogus array initializers
11505         early.
11506
11507 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
11508
11509         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
11510         runtime.
11511         * cp/tinfo.cc (__dynamic_cast): Likewise.
11512         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
11513
11514 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
11515
11516         * cvt.c (convert_to_pointer_force): Fix error message when
11517         attempting to cast from ambiguous base.
11518
11519 2000-08-08  Jason Merrill  <jason@redhat.com>
11520
11521         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
11522         (tsubst_template_arg_vector): Likewise.
11523
11524         * decl2.c (build_anon_union_vars): Choose the largest field; don't
11525         assume that one will be as large as the union.
11526
11527 2000-08-07  Kazu Hirata  <kazu@hxi.com>
11528
11529         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
11530         * decl.c (pop_labels): Likewise.
11531
11532 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
11533
11534         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
11535         specifications.
11536         (__pointer_to_member_type_info): Likewise.
11537         (__base_class_info): Likewise.
11538         (__class_type_info): Likewise.
11539         (__si_class_type_info): Likewise.
11540         (__vmi_class_type_info): Likewise.
11541         * tinfo.cc (__si_class_type_info::__do_find_public_src):
11542         Changed member names to match specifications.
11543         (__vmi_class_type_info::__do_find_public_src): Likewise.
11544         (__si_class_type_info::__do_dyncast): Likewise.
11545         (__vmi_class_type_info::__do_dyncast): Likewise.
11546         (__si_class_type_info::__do_upcast): Likewise.
11547         (__vmi_class_type_info::__do_upcast): Likewise.
11548         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
11549         (__pbase_type_info::__pointer_catch): Likewise.
11550         (__pointer_type_info::__pointer_catch): Likewise.
11551         (__pointer_to_member_type_info::__pointer_catch): Likewise.
11552
11553 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
11554
11555         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
11556         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
11557         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
11558
11559 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
11560
11561         * cp-tree.h (add_method): Change prototype.
11562         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
11563         Don't double the size of the method vector in the error case.
11564         (handle_using_decl): Adjust call to add_method.
11565         (add_implicitly_declared_members): Likewise.
11566         (clone_function_decl): Likewise.
11567         * decl2.c (check_classfn): Likewise.
11568         * semantics.c (finish_member_declaration): Likewise.
11569
11570 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
11571
11572         * decl.c (flag_isoc94): New variable.
11573
11574 2000-08-02  Jason Merrill  <jason@redhat.com>
11575
11576         * pt.c (do_type_instantiation): Add complain parm; don't complain
11577         if called recursively.
11578         * cp-tree.h, parse.y: Adjust.
11579
11580 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
11581
11582         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
11583         -Wno-strict-prototypes.
11584
11585         * g++spec.c: Adjust type of second argument to
11586         lang_specific_driver, and update code as necessary.
11587
11588         * cp-tree.h: Don't prototype min_precision here.
11589         (my_friendly_assert): Cast expression to void.
11590         * semantics.c (do_poplevel): Initialize scope_stmts.
11591
11592 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
11593
11594         * cp-tree.h (DECL_NEEDED_P): Tweak.
11595
11596 2000-07-28  Jason Merrill  <jason@redhat.com>
11597
11598         * lang-specs.h: Use %i in rule for .ii files.
11599
11600 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
11601
11602         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
11603
11604 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
11605
11606         Allow indirect primary bases.
11607         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
11608         primary_base.
11609         (CLASSTYPE_VFIELD_PARENT): Remove.
11610         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
11611         (BINFO_PRIMARY_BINFO): Remove.
11612         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
11613         (BINFO_VBASE_PRIMARY_P): Likewise.
11614         (BINFO_PRIMARY_BASE_OF): New macro.
11615         (BINFO_INDIRECT_PRIMARY_P): Likewise.
11616         (get_primary_binfo): New function.
11617         * decl.c (lang_mark_tree): Make lang_type::primary_base.
11618         * class.c (vcall_offset_data_s): Rename to ...
11619         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
11620         and add ctor_vtbl_p.
11621         (get_derived_offset): Use get_primary_binfo.
11622         (dfs_mark_primary_bases): Adjust handling of virtual primary
11623         bases.
11624         (mark_primary_bases): Likewise.
11625         (set_primary_base): Take a binfo, not an integer, as a
11626         representation of the primary base.
11627         (indirect_primary_base_p): Remove.
11628         (determine_primary_base): Adjust for indirect primary bases.
11629         (dfs_find_final_overrider): Fix typo in coment.
11630         (update_vtable_entry_for_fn): Use get_primary_binfo.
11631         (layout_nonempty_base_or_field): Tweak.
11632         (build_base_fields): Adjust for new primary base semantics.
11633         (dfs_propagate_binfo_offsets): Remove.
11634         (propagate_binfo_offsets): Rewrite.
11635         (dfs_set_offset_for_shared_vbases): Remove.
11636         (layout_virtual_bases): Don't use it.
11637         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
11638         ABI.
11639         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
11640         CLASSTYPE_VFIELD_PARENT.
11641         (dfs_get_primary_binfo): New function.
11642         (get_primary_binfo): Likewise.
11643         (dump_class_hierarchy_r): Tweak printing of primary bases.
11644         (build_vtbl_initializer): Fix typo in comments.  Use
11645         vtbl_init_data.
11646         (build_vcall_and_vbase_vtbl_entries): Likewise.
11647         (build_vbaes_offset_vtbl_entries): Likewise.
11648         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
11649         BV_VCALL_INDEX to handle indirect primary bases.
11650         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
11651         (build_rtti_vtbl_entries): Likewise.
11652         * search.c (get_shared_vbase_if_not_primary): Tweak.
11653         (find_vbase_instance): Likewise.
11654         (binfo_for_vtable): Simplify.
11655         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
11656         (make_binfo): Make it have 11 entries.
11657
11658 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
11659
11660         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
11661         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
11662         ascertaining primaryness.
11663         (G): Remove template_args.
11664         (decl_is_template_id): New function.
11665         (write_encoding): Use decl_is_template_id.
11666         (write_name): Likewise.  Handle type_decls.  Get main variant of
11667         type decls.
11668         (write_nested_name): Likewise.
11669         (write_prefix): Likewise.
11670         (write_template_prefix): Likewise.
11671         (write_special_name_constructor): Remove defunct production from
11672         comment.
11673         (write_bare_function_type): Remove comment about absent parameter.
11674         (write_template_template_arg): Add missing grammar production to
11675         comment.
11676
11677 2000-07-27  Jason Merrill  <jason@redhat.com>
11678
11679         * decl.c (duplicate_decls): If common_type produces a non-typedef
11680         type for a typedef, just use the old type.
11681
11682 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
11683
11684         * cp-tree.h (function_depth): Declare.
11685         (verify_stmt_tree): Likewise.
11686         (find_tree): Likewise.
11687         * decl.c (function_depth): Give it external linkage.
11688         * optimize.c (optimize_function): Increment and decrement it.
11689         * tree.c (verify_stmt_tree_r): New function.
11690         (verify_stmt_tree): Likewise.
11691         (find_tree_r): Likewise.
11692         (find_tree): Likewise.
11693
11694 2000-07-27  Jason Merrill  <jason@redhat.com>
11695
11696         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
11697         TYPE_PTRMEMFUNC_P.
11698         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
11699
11700 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
11701
11702         * decl.c (start_cleanup_fn): Mark the function as `inline'.
11703         * decl2.c (get_guard): Call cp_finish_decl, not
11704         rest_of_decl_compilation, for local guards.
11705         * lex.c (do_identifier): Remove unused variable.
11706
11707 Wed Jul 26 15:05:51 CEST 2000   Marc Espie <espie@cvs.openbsd.org>
11708
11709         * parse.y:  Add missing ';'.
11710
11711 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
11712
11713         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
11714         of `extern "C++"'.
11715
11716 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11717
11718         Kill strict_prototype. Backwards compatibility only for
11719         non NO_IMPLICIT_EXTERN_C systems.
11720         * cp-tree.h (flag_strict_prototype): Remove.
11721         (strict_prototype): Remove.
11722         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
11723         * decl.c (maybe_push_to_top_level): Adjust.
11724         (pop_from_top_level): Adjust.
11725         (decls_match): Only allow sloppy parm matching for ancient
11726         system headers.
11727         (init_decl_processing): Adjust.
11728         (grokdeclarator): Adjust.
11729         * decl2.c (flag_strict_prototype): Remove.
11730         (strict_prototype): Remove.
11731         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
11732         (lang_f_options): Remove "strict-prototype".
11733         (unsupported-options): Add "strict-prototype".
11734         * lex.c (do_identifier): Adjust.
11735         (do_scoped_id): Adjust.
11736         * parse.y (empty_parms): Adjust.
11737         * class.c (push_lang_context): Adjust.
11738         (pop_lang_context): Adjust.
11739         * typeck.c (comp_target_parms): Adjust.
11740
11741 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11742
11743         * decl.c (poplevel): Deal with anonymous variables at for scope.
11744         (maybe_inject_for_scope_var): Likewise.
11745
11746 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
11747
11748         * decl.c: Remove all signal handling code, now done in toplev.c.
11749
11750 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
11751
11752         * decl.c (make_rtl_for_nonlocal_decl): Rework.
11753
11754         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
11755         correctly.
11756
11757 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
11758
11759         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
11760         Define my_friendly_assert and my_friendly_abort as macros
11761         which may call friendly_abort.  Prototype friendly abort, not
11762         my_friendly_abort or my_friendly_assert.
11763         * decl.c (signal_catch): Report the signal caught in the error
11764         message.  Call fatal directly.
11765         * typeck2.c (ack, my_friendly_assert): Delete.
11766         (my_friendly_abort): Rename to friendly_abort.  Expect file,
11767         line, and function parameters.  Report the abort code, then
11768         call fancy_abort.  Do not mask an abort if errors have
11769         already occurred.
11770
11771 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
11772
11773         * typeck.c (comp_target_parms): Remove obsolete parameter.
11774         (comp_target_types): Adjust.
11775
11776 2000-07-17  Jason Merrill  <jason@redhat.com>
11777
11778         * typeck.c (mark_addressable): Never set TREE_USED.
11779         * call.c (build_call): Don't abort on calls to library functions
11780         that have been declared normally.
11781
11782         * typeck.c (build_binary_op): Fix grammar in warning.
11783
11784         * exception.cc (__eh_free): Fix prototype.
11785
11786         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
11787
11788         * decl.c (pushdecl): Handle seeing an OVERLOAD in
11789         IDENTIFIER_NAMESPACE_VALUE.
11790
11791 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
11792
11793         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
11794         * method.c (use_thunk): Correct handling of vcall offsets.
11795
11796 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
11797
11798         * .cvsignore: parse.h and parse.c have no cp- prefix.
11799
11800 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
11801
11802         * .cvsignore: New file.
11803
11804 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
11805
11806         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
11807
11808 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
11809
11810         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
11811         * parse.c: Remove.
11812         * parse.h: Likewise.
11813
11814 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
11815
11816         * class.c (layout_class_type): Add pointers to virtual bases after
11817         base classes under the old ABI.
11818
11819 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
11820
11821         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
11822         (finish_continue_stmt): Likewise.
11823         (begin_for_stmt): Remove call to note_level_for_for.
11824         (finish_goto_stmt): Change call from build_min_nt
11825         to build_stmt.
11826         (finish_expr_stmt): Likewise.
11827         (begin_if_stmt): Likewise.
11828         (begin_while_stmt): Likewise.
11829         (finish_while_stmt): Likewise.
11830         (finish_return_stmt): Likewise.
11831         (begin_for_stmt): Likewise.
11832         (finish_for_stmt): Likewise.
11833         (finish_break_stmt): Likewise.
11834         (begin_switch_stmt): Likewise.
11835         (finish_case_label): Likewise.
11836         (genrtl_try_block): Likewise.
11837         (begin_try_block): Likewise.
11838         (begin_handler): Likewise.
11839         (begin_compound_stmt): Likewise.
11840         (finish_asm_stmt): Likewise.
11841         (finish_label_stmt): Likewise.
11842         (add_decl_stmt): Likewise.
11843         (finish_subobject): Likewise.
11844         (finish_decl_cleanup): Likewise.
11845         (finish_named_return_value): Likewise.
11846         (setup_vtbl_ptr): Likewise.
11847         (add_scope_stmt): Likewise.
11848         * decl.c (finish_constructor_body): Likewise.
11849         (finish_destructor_body): Likewise.
11850         * optimize.c (copy_body_r): Likewise.
11851         (initialize_inlined_parameters): Likewise.
11852         (declare_return_variable): Likewise.
11853         (expand_call_inline): Likewise.
11854
11855 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
11856
11857         * semantics.c (expand_body): Sync interface information
11858         at the end of function body expansion.
11859
11860 2000-07-09  Jason Merrill  <jason@redhat.com>
11861
11862         * init.c (build_new_1): Bail early if the call to new fails.
11863
11864         * decl.c (compute_array_index_type): Check specifically for
11865         an INTEGER_CST, not just TREE_CONSTANT.
11866
11867         * decl.c (duplicate_decls): Don't call duplicate_decls on
11868         the DECL_TEMPLATE_RESULT.
11869         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
11870         codes.
11871
11872         * error.c (dump_template_bindings): Don't crash if we had an
11873         invalid argument list.
11874
11875         * typeck.c (c_expand_start_case): Do narrowing here.
11876         * semantics.c (finish_switch_cond): Not here.
11877
11878 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
11879
11880         * parse.y (asm_clobbers): Do string concatenation.
11881
11882 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
11883
11884         * decl.c (pushtag): Don't put local classes in template functions
11885         on the local_classes list.
11886
11887 2000-07-04  Scott Snyder  <snyder@fnal.gov>
11888
11889         * decl2.c (get_guard): Add missing return for old ABI local
11890         variable case.
11891
11892 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
11893
11894         * cp-tree.h (char_type_p): New function.
11895         * decl.c (init_decl_processing): Don't initialize
11896         signed_wchar_type_node or unsigned_wchar_type_node.
11897         (complete_array_type): Handle brace-enclosed string-constants.
11898         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
11899         * tree.c (char_type_p): New function.
11900         * typeck2.c (digest_init): Use char_type_p.
11901
11902 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
11903
11904         * pt.c (tsubst): Don't layout type, if it's error_mark.
11905
11906 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
11907
11908         * pt.c (instantiate_pending_templates): Reset template level.
11909
11910 2000-07-05  Jason Merrill  <jason@redhat.com>
11911
11912         * call.c (joust): Don't complain about `operator char *()' beating
11913         `operator const char *() const'.
11914
11915 2000-07-04  scott snyder  <snyder@fnal.gov>
11916             Jason Merrill  <jason@redhat.com>
11917
11918         * repo.c (repo_get_id): Handle the case where a class with virtual
11919         bases has a null TYPE_BINFO_VTABLE.
11920
11921 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
11922             Jason Merrill  <jason@redhat.com>
11923
11924         * parse.y (member_init): Just pass in the type.
11925         * init.c (expand_member_init): Handle getting a type.
11926
11927 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11928             Jason Merrill  <jason@redhat.com>
11929
11930         * decl.c (finish_function): Warn if a function has no return
11931         statement.
11932         Suggested by Andrew Koenig.
11933         * typeck.c (check_return_expr): Do set current_function_returns_value
11934         if we got an error_mark_node.
11935
11936 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
11937
11938         * decl2.c (push_decl_namespace): Push the original namespace.
11939
11940 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
11941
11942         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
11943         * semantics.c (begin_class_definition): Clear it.
11944
11945 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
11946
11947         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
11948         (genrtl_expr_stmt): Likewise.
11949         (genrtl_decl_stmt): Likewise.
11950         (genrtl_if_stmt): Likewise.
11951         (genrtl_while_stmt): Likewise.
11952         (genrtl_do_stmt): Likewise.
11953         (genrtl_return_stmt): Likewise.
11954         (genrtl_for_stmt): Likewise.
11955         (genrtl_break_stmt): Likewise.
11956         (genrtl_continue_stmt): Likewise.
11957         (genrtl_scope_stmt): Likewise.
11958         (genrtl_switch_stmt): Likewise.
11959         (genrtl_case_label): Likewise.
11960         (genrtl_begin_compound_stmt): Likewise.
11961         (genrtl_finish_compound_stmt): Likewise.
11962         (genrtl_compound_stmt): Likewise.
11963         (genrtl_asm_stmt): Likewise.
11964
11965         * init.c (begin_init_stmts): Remove call to
11966         genrtl_begin_compound_stmt.
11967         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
11968
11969         * semantics.c (lang_expand_stmt): Changed call to
11970         genrtl_compound_stmt to ignore return value.
11971
11972 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
11973
11974         * mangle.c (canonicalize_for_substitution): Return the canonical
11975         variant of a type.
11976
11977         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
11978         TYPE_DECL.
11979         * typeck.c (commonparms): Remove obstack manipulations.
11980
11981 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
11982
11983         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
11984
11985         * Makefile.in (OBJS): Added ../c-semantics.o.
11986         (OBJDEPS): Likewise.
11987
11988         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
11989         ../c-common.h.
11990         (struct stmt_tree): Added comment.
11991         (current_function_name_declared): Removed.
11992         (stmts_are_full_exprs_p): Likewise.
11993         (genrtl_do_pushlevel): Likewise.
11994         (genrtl_clear_out_block): Likewise.
11995         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
11996         (DECL_ANON_UNION_ELEMS): Likewise.
11997         (emit_local_var): Likewise.
11998         (make_rtl_for_local_static): Likewise.
11999         (do_case): Likewise.
12000         (expand_stmt): Likewise.
12001         (genrtl_decl_cleanup): Likewise.
12002         (c_expand_asm_operands): Likewise.
12003         (c_expand_return): Likewise.
12004         (c_expand_start_case): Likewise.
12005
12006         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
12007         (emit_local_var): Likewise.
12008         (initialize_local_var): Change reference to
12009         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
12010         Change reference to stmts_are_full_exprs_p to
12011         current_stmt_tree->stmts_are_full_exprs_p.
12012         (push_cp_function_context): Likewise.
12013
12014         * expect.c (expand_throw): Change reference to
12015         stmts_are_full_exprs_p.
12016
12017         * init.c (build_aggr_init): Change reference to
12018         stmts_are_full_exprs_p.
12019         (build_vec_init): Likewise.
12020
12021         * optimize.c (maybe_clone_body): Change reference to
12022         current_function_name_declared to
12023         cp_function_chain->name_declared.
12024
12025         * pt.c (instantiate_decl): Change reference to
12026         current_function_name_declared to
12027         cp_function_chain->name_declared.
12028
12029         * semantics.c (expand_cond): Moved declaration to c-common.h.
12030         (genrtl_do_pushlevel): Moved to c-semantics.c.
12031         (genrtl_clear_out_block): Likewise.
12032         (genrtl_goto_stmt): Likewise.
12033         (genrtl_expr_stmt): Likewise.
12034         (genrtl_decl_stmt): Likewise.
12035         (gerntl_if_stmt): Likewise.
12036         (genrtl_while_stmt): Likewise.
12037         (genrtl_do_stmt): Likewise.
12038         (genrtl_return_stmt): Likewise.
12039         (genrtl_for_stmt): Likewise.
12040         (genrtl_break_stmt): Likewise.
12041         (genrtl_continue_stmt): Likewise.
12042         (genrtl_scope_stmt): Likewise.
12043         (genrtl_switch_stmt): Likewise.
12044         (genrtl_case_label): Likewise.
12045         (genrtl_begin_compound_stmt): Likewise.
12046         (genrtl_finish_compound_stmt): Likewise.
12047         (genrtl_compound_stmt): Likewise.
12048         (genrtl_asm_stmt): Likewise.
12049         (genrtl_decl_cleanup): Likewise.
12050         (expand_cond): Likewise.
12051         (expand_stmt): Renamed to ...
12052         (lang_expand_stmt): ... this.
12053         (lang_expand_expr_stmt): Initialize.
12054         (set_current_function_name_declared): Likewise.
12055         (stmts_are_full_exprs_p): Likewise.
12056         (current_function_name_declared): Likewise.
12057         (anon_aggr_type_p): Likewise.
12058         (do_poplevel): Change reference to
12059         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
12060         Change reference to stmts_are_full_exprs_p to
12061         current_stmt_tree->stmts_are_full_exprs_p.
12062         (add_tree): Likewise.
12063         (finish_expr_stmt): Likewise.
12064         (prep_stmt): Likewise.
12065         (lang_expand_stmt): Likewise.
12066         (begin_compound_stmt): Change reference to
12067         current_function_name_declared to
12068         cp_function_chain->name_declared and call to
12069         current_function_name_declared().
12070         (setup_vtbl_ptr): Likewise.
12071         (genrtl_do_poplevel): Removed.
12072
12073 2000-06-30  Jason Merrill  <jason@redhat.com>
12074
12075         * init.c (init_init_processing): Go back to aligning like
12076         double_type_node for old ABI.
12077         (get_cookie_size): Make cookie larger if we get a type that needs
12078         more alignment.
12079         (build_vec_delete): Call it.
12080
12081         * typeck.c (qualify_type_recursive): New fn.
12082         (composite_pointer_type): Use it.
12083         (build_binary_op): Use composite_pointer_type.
12084
12085 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
12086             Jason Merrill  <jason@redhat.com>
12087
12088         * typeck.c (check_return_expr): Don't complain about returning
12089         NULL from operator new if -fcheck-new.
12090         * cp-tree.h: Declare flag_check_new here.
12091         * init.c: Not here.
12092
12093 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
12094
12095         * mangle.c (find_substitution): Use same_type_p.
12096         (write_encoding): Don't check for substitutions.
12097
12098 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
12099
12100         * parse.y (expr_no_comma_rangle): New non-terminal.
12101         (template_parm): Use it for default parameter case.
12102         (template_arg): Use it.
12103         (expr_no_commas): Remove commented out undefined extensions.
12104         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
12105         * parse.h, parse.c: Rebuilt.
12106
12107 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
12108
12109         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
12110         (finish_asm_stmt): Do it here, instead.
12111
12112         * cp-tree.h (ridpointers): Don't declare.
12113         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
12114         (record_builtin_java_type): Likewise.
12115         (init_decl_processing): Likewise.
12116         * lex.c: Move inclusion of lex.h.
12117         (ridpointers): Don't define.
12118         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
12119         RID_MAX.
12120         * lex.h (enum rid): Rename to ...
12121         (enum cp_rid): ... this.
12122         (ridpointers): Don't declare.
12123         * parse.y: Move inclusion of lex.h.
12124         * parse.c: Regenerated.
12125         * spew.c: Move inclusion of lex.h.
12126
12127         * cp-tree.h (struct language_function): Remove temp_name_counter.
12128         (temp_name_counter): Remove.
12129         (get_temp_name): Change prototype.
12130         (get_guard): New function.
12131         (get_guard_cond): Likewise.
12132         (set_guard): Likewise.
12133         * cvt.c (build_up_reference): Adjust call to get_temp_name.
12134         * decl.c (expand_static_init): Use get_guard and friends to
12135         implement guard variables.
12136         * decl2.c (get_temp_name): Assume that the variables created are
12137         always static.
12138         (get_sentry): Rename to ...
12139         (get_guard): ... this.  Implement new ABI guard variables.
12140         (get_guard_bits): New function.
12141         (get_guard_cond): Likewise.
12142         (set_guard): Likewise.
12143         (start_static_initialization_or_destruction): Use them.
12144         (do_static_initialization): Replace sentry with guard throughout.
12145         (do_static_destruction): Likewise.
12146         * init.c (create_temporary_var): Add comment.
12147
12148 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
12149
12150         * mangle.c (find_substitution): Use same_type_p.
12151         (write_encoding): Don't check for substitutions.
12152
12153 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
12154
12155         * parse.y (expr_no_comma_rangle): New non-terminal.
12156         (template_parm): Use it for default parameter case.
12157         (template_arg): Use it.
12158         (expr_no_commas): Remove commented out undefined extensions.
12159         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
12160         * parse.h, parse.c: Rebuilt.
12161
12162 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
12163
12164         * cp-tree.h (flag_const_strings): Remove.
12165         (warn_parentheses): Likewise.
12166         (warn_format): Likewise.
12167         (common_type): Likewise.
12168         (default_conversion): Likewise.
12169         (build_binary_op): Likewise.
12170         (cp_build_binary_op): New macro.
12171         * call.c (build_new_op): Use cp_build_binary_op instead of
12172         build_binary_op.
12173         * class.c (build_vtable_entry_ref): Likewise.
12174         * decl.c (expand_static_init): Likewise.
12175         (compute_array_index_type): Likewise.
12176         (build_enumerator): Likewise.
12177         * decl2.c (delete_sanity): Likewise.
12178         (start_static_initialization_or_destruction): Likewise.
12179         * error.c (dump_type_suffix): Likewise.
12180         * init.c (resolve_offset_ref): Likewise.
12181         (build_new): Likewise.
12182         (build_new_1): Likewise.
12183         (build_vec_delete_1): Likewise.
12184         (build_vec_init): Likewise.
12185         (build_delete): Likewise.
12186         * rtti.c (synthesize_tinfo_fn): Likewise.
12187         (synthesize_tinfo_var): Likewise.
12188         * search.c (expand_upcast_fixups): Likewise.
12189         (fixup_all_virtual_upcast_offsets): Likewise.
12190         * typeck.c (build_array_ref): Likewise.
12191         (get_member_function_from_ptrfunc): Likewise.
12192         (build_binary_op): Add parameter.
12193         (pointer_int_sum): Use cp_build_binary_op.
12194         (pointer_diff): Likewise.
12195         (build_modify_expr): Likewise.
12196         (get_delta_difference): Likewise.
12197         (build_ptrmemfunc): Likewise.
12198
12199 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
12200
12201         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
12202         * decl.c (create_implicit_typedef): Adjust.
12203         * decl2.c (build_artificial_parm): Adjust.
12204         * method.c (implicitly_declare_fn): Adjust.
12205         * pt.c (push_inline_template_parms_recursive): Adjust.
12206         (process_template_parm): Adjust.
12207         (overloaded_template_name): Adjust.
12208         * semantics.c (finish_template_template_parm): Adjust.
12209
12210 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
12211
12212         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
12213         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
12214         where to emit thunks.
12215         (build_vtt): Adjust call to build_vtt_inits.
12216         (build_vtt_inits): Add parameter to indicate whether or not
12217         sub-VTTs for virtual bases should be included.  Adjust handling of
12218         construction vtables.
12219         (get_matching_base): New function.
12220         (dfs_build_vtt_inits): Rename to ...
12221         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
12222         construction vtables.
12223         (dfs_fixup_binfo_vtbls): Likewise.
12224         (build_ctor_vtbl_groups): Build construction vtables for virtual
12225         bases, too.
12226         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
12227         to build construction vtbls.
12228         (dfs_accumulate_vtbl_inits): Adjust handling of
12229         construction vtables.
12230
12231         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
12232         types correctly.
12233
12234 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
12235
12236         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
12237
12238 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
12239
12240         * search.c (hides): Remove.
12241         (is_subobject_of_p): Add most_derived parameter. Use
12242         CANONICAL_BINFO.
12243         (lookup_field_queue_p): Adjust.
12244         (lookup_field_r): Adjust.
12245
12246 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
12247
12248         * decl2.c (handle_class_head): Bash typedefs to the type's main
12249         decl.
12250
12251 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
12252
12253         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
12254         (begin_global_stmt_expr): ... this.
12255         (genrtl_finish_stmt_expr): Rename to ...
12256         (finish_global_stmt_expr): ... this.
12257         * init.c (begin_init_stmts): Adjust calls.
12258         (finish_init_stmts): Likewise.
12259         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
12260         (begin_global_stmt_expr): ... this.
12261         (genrtl_finish_stmt_expr): Rename to ...
12262         (finish_global_stmt_expr): ... this.
12263
12264 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
12265
12266         * search.c (lookup_member): Fix typo in comment.
12267
12268 2000-06-24  Jason Merrill  <jason@redhat.com>
12269
12270         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
12271         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
12272
12273 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12274
12275         * parse.y (complex_direct_notype_declarator): Support global_scope.
12276         * Makefile.in: Adjust conflict count.
12277
12278 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
12279
12280         * parse.y (template_arg): Convert TEMPLATE_DECL
12281         that is a template template parameter to
12282         TEMPLATE_TEMPLATE_PARM here.
12283
12284         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
12285         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
12286         (copy_template_template_parm): Adjust prototype.
12287         * decl.c (grokdeclarator): Remove dead code.
12288         * pt.c (process_template_parm): Tidy.
12289         (lookup_template_class): Construct nodes in
12290         copy_template_template_parm.
12291         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
12292         lookup_template_class.  Use TYPE_TI_TEMPLATE.
12293         * tree.c (copy_template_template_parm): Add NEWARGS
12294         parameter.
12295         (mapcar): Adjust call to copy_template_template_parm.
12296         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
12297         * method.c (build_template_template_parm_names): Change error
12298         code to avoid compilation warning.
12299
12300         * gxxint.texi: Document template template parameter
12301         name mangling.
12302
12303 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
12304
12305         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
12306         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
12307         (cp-demangle.o): New rule.
12308         (dyn-string.o): Likewise.
12309         * inc/cxxabi.h (__cxa_demangle): New declaration.
12310
12311 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
12312
12313         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
12314         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
12315         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
12316         a tree, not an int.
12317         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
12318         (make_thunk): Change prototype.
12319         (emit_thunk): Rename to use_thunk.
12320         (mangle_thunk): Change prototype.
12321         * class.c (get_derived_offset): Simplify.
12322         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
12323         BV_GENERATE_THUNK_WITH_VTABLE_P.
12324         (build_primary_vtable): Simplify.
12325         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
12326         (dfs_find_base): Remove.
12327         (update_vtable_entry_for_fn): Correct bug in finding the base
12328         where a virtual function was first declared.  Figure out whether
12329         or not to emit a vcall-thunk with the vtables in which it appears.
12330         Correct logic for deciding whether to use an ordinary thunk, or a
12331         vcall thunk.
12332         (finish_struct_1): Remove unnecssary code.
12333         (build_vtbl_initializer): Use ssize_int for the running counter of
12334         negative indices.
12335         (build_vtbl_initializer): Only use vcall thunks where necessary.
12336         Mark thunks as needing to be emitted with their vtables, or not.
12337         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
12338         indices.  Use size_binop.
12339         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
12340         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
12341         size_binop.
12342         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
12343         (build_vtable_entry): Mark thunks as needing to be emitted with
12344         their vtables, or not.
12345         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
12346         * decl2.c (mark_vtable_entries): Use use_thunk instead of
12347         emit_thunk.
12348         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
12349         information.
12350         * error.c (dump_expr): Use BV_FN.
12351         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
12352         not an int.
12353         * method.c (make_thunk): Likewise.
12354         (emit_thunk): Rename to use_thunk.  Allow callers to decide
12355         whether or not to actually emit the thunk.  Adjust for changes in
12356         representation of vcall offsets.
12357         * search.c (dfs_get_pure_virtuals): Use BV_FN.
12358         * semantics.c (emit_associated_thunks): New function.
12359         (expand_body): Use it.
12360         * ir.texi: Adjust decriptions of thunks.
12361
12362 2000-06-22  Jason Merrill  <jason@redhat.com>
12363
12364         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
12365         (tsubst_friend_function): Copy it here.
12366
12367         * decl.c (grok_op_properties): Fix typo.
12368
12369         * decl2.c (delete_sanity): Clarify warning, avoid failure on
12370         deleting void*.
12371
12372         * pt.c (check_explicit_specialization): Clarify error.
12373
12374         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
12375         an old OVERLOAD when we're declaring a non-function.
12376         (pushdecl, destroy_local_var): Check for error_mark_node.
12377         (warn_extern_redeclared_static): Also bail early if
12378         we're a CONST_DECL.
12379         (push_overloaded_decl): Ignore an old error_mark_node.
12380
12381 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
12382
12383         * call.c (build_x_va_arg): Check if in a template decl.
12384         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
12385
12386 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
12387
12388         * class.c (push_lang_context): TYPE_NAME gets you to the Java
12389         types DECLs.
12390         * decl.c (check_goto): Computed gotos assumed OK.
12391
12392 2000-06-20  Jason Merrill  <jason@redhat.com>
12393
12394         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
12395         for which we don't need to look for instantiations.
12396
12397 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
12398
12399         * parse.y (program): Always call finish_translation_unit.
12400         * parse.c, parse.h: Rebuilt.
12401
12402 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
12403
12404         * method.c: Don't include hard-reg-set.h.
12405
12406 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
12407
12408         * rtti.c (get_base_offset): Cope when vbase field is in a base.
12409
12410 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
12411
12412         * call.c (build_conditional_expr): Use VOID_TYPE_P.
12413         * cvt.c (cp_convert_to_pointer): Likewise.
12414         (convert_to_void): Likewise.
12415         * error.c (dump_expr): Likewise.
12416         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
12417         * init.c (build_delete): Likewise.
12418         * method.c (emit_thunk): Likewise.
12419         * optmize.c (declare_return_variable): Likewise.
12420         * rtti.c (get_tinfo_decl_dynamic): Likewise.
12421         (get_typeid): Likewise.
12422         (build_dynamic_cast_1): Likewise.
12423         * typeck.c (composite_pointer_type): Likewise.
12424         (common_type): Likewise.
12425         (build_indirect_ref): Likewise.
12426         (build_binary_op): Likewise.
12427         (build_x_compound_expr): Likewise.
12428         (check_return_expr): Likewise.
12429         * typeck2.c (add_exception_specifier): Likewise.
12430
12431         * mangle.c (write_method_parms): Use direct comparison for end
12432         of parmlist.
12433
12434 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
12435
12436         * cp-tree.h (genrtl_try_block): Declare function.
12437         (genrtl_handler): Likewise.
12438         (genrtl_catch_block): Likewise.
12439         (genrtl_ctor_stmt): Likewise.
12440         (genrtl_subobject): Likewise.
12441         (genrtl_decl_cleanup): Likewise.
12442         (genrtl_do_poplevel): Likewise.
12443         (genrtl_do_pushlevel): Likewise.
12444         (genrtl_clear_out_block): Likewise.
12445         (genrtl_goto_stmt): Likewise.
12446         (genrtl_expr_stmt): Likewise.
12447         (genrtl_decl_stmt): Likewise.
12448         (genrtl_if_stmt): Likewise.
12449         (genrtl_while_stmt): Likewise.
12450         (genrtl_do_stmt): Likewise.
12451         (genrtl_return_stmt): Likewise.
12452         (genrtl_for_stmt): Likewise.
12453         (genrtl_break_stmt): Likewise.
12454         (genrtl_continue_stmt): Likewise.
12455         (genrtl_scope_stmt): Likewise.
12456         (genrtl_switch_stmt): Likewise.
12457         (genrtl_case_label): Likewise.
12458         (genrtl_begin_compound_stmt): Likewise.
12459         (genrtl_finish_compound_stmt): Likewise.
12460         (genrtl_compound_stmt): Likewise.
12461         (genrtl_asm_stmt): Likewise.
12462         (genrtl_named_return_value): Likewise.
12463         (genrtl_begin_stmt_expr): Likewise.
12464         (genrtl_finish_stmt_expr): Likewise.
12465         (finish_for_stmt): Removed first argument.
12466         (finish_switch_stmt): Likewise.
12467
12468         * semantics.c (genrtl_try_block): Define function.
12469         (genrtl_handler): Likewise.
12470         (genrtl_catch_block): Likewise.
12471         (genrtl_ctor_stmt): Likewise.
12472         (genrtl_subobject): Likewise.
12473         (genrtl_decl_cleanup): Likewise.
12474         (genrtl_do_poplevel): Likewise.
12475         (genrtl_do_pushlevel): Likewise.
12476         (genrtl_clear_out_block): Likewise.
12477         (genrtl_goto_stmt): Likewise.
12478         (genrtl_expr_stmt): Likewise.
12479         (genrtl_decl_stmt): Likewise.
12480         (genrtl_if_stmt): Likewise.
12481         (genrtl_while_stmt): Likewise.
12482         (genrtl_do_stmt): Likewise.
12483         (genrtl_return_stmt): Likewise.
12484         (genrtl_for_stmt): Likewise.
12485         (genrtl_break_stmt): Likewise.
12486         (genrtl_continue_stmt): Likewise.
12487         (genrtl_scope_stmt): Likewise.
12488         (genrtl_switch_stmt): Likewise.
12489         (genrtl_case_label): Likewise.
12490         (genrtl_begin_compound_stmt): Likewise.
12491         (genrtl_finish_compound_stmt): Likewise.
12492         (genrtl_compound_stmt): Likewise.
12493         (genrtl_asm_stmt): Likewise.
12494         (genrtl_named_return_value): Likewise.
12495         (genrtl_begin_stmt_expr): Likewise.
12496         (genrtl_finish_stmt_expr): Likewise.
12497         (finish_for_stmt): Removed first argument and generate rtl
12498         specific code.
12499         (finish_switch_stmt): Likewise.
12500         (do_poplevel): Removed generate rtl specific code.
12501         (do_pushlevel): Likewise.
12502         (add_tree): Likewise.
12503         (finish_goto_stmt): Likewise.
12504         (finish_expr_stmt): Likewise.
12505         (begin_if_stmt): Likewise.
12506         (finish_if_stmt_cond): Likewise.
12507         (finish_then_clause): Likewise.
12508         (begin_else_clause): Likewise.
12509         (finish_else_clause): Likewise.
12510         (finish_if_stmt): Likewise.
12511         (clear_out_block): Likewise.
12512         (begin_while_stmt): Likewise.
12513         (finish_while_stmt_cond): Likewise.
12514         (finish_while_stmt): Likewise.
12515         (begin_do_stmt): Likewise.
12516         (finish_do_body): Likewise.
12517         (finish_do_stmt): Likewise.
12518         (finish_return_stmt): Likewise.
12519         (begin_for_stmt): Likewise.
12520         (finish_for_init_stmt): Likewise.
12521         (finish_for_cond): Likewise.
12522         (finish_for_expr): Likewise.
12523         (finish_break_stmt): Likewise.
12524         (finish_continue_stmt): Likewise.
12525         (begin_switch_stmt): Likewise.
12526         (finish_switch_cond): Likewise.
12527         (finish_case_label): Likewise.
12528         (begin_try_block): Likewise.
12529         (begin_function_try_block): Likewise.
12530         (finish_try_block): Likewise.
12531         (finish_cleanup_try_block): Likewise.
12532         (finish_cleanup): Likewise.
12533         (finish_function_try_block): Likewise.
12534         (finish_handler_sequence): Likewise.
12535         (finish_function_handler_sequence): Likewise.
12536         (begin_handler): Likewise.
12537         (finish_handler_parms): Likewise.
12538         (begin_catch_block): Likewise.
12539         (finish_handler): Likewise.
12540         (begin_compound_stmt): Likewise.
12541         (finish_compound_stmt): Likewise.
12542         (finish_asm_stmt): Likewise.
12543         (finish_label_stmt): Likewise.
12544         (finish_label_decl): Likewise.
12545         (finish_subobject): Likewise.
12546         (finish_decl_cleanup): Likewise.
12547         (finish_named_return_value): Likewise.
12548         (begin_stmt_expr): Likewise.
12549         (finish_stmt_expr): Likewise.
12550
12551         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
12552         to call genrtl_expr_stmt when appropriate.
12553
12554         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
12555         begin_compound_expr to call genrtl_begin_stmt_expr and
12556         genrtl_begin_compound_expr when appropriate.
12557         (finish_init_stmts): Changed calls to finish_compound_expr and
12558         finish_stmt_expr to call genrtl_finish_compound_expr and
12559         genrtl_finish_stmt_expr when appropriate.
12560         (expand_default_init): Changed call to finish_expr_stmt to call
12561         genrtl_expr_stmt when appropriate.
12562         (build_vec_init): Likewise.
12563
12564         * parse.y (simple_stmt): Removed first argument from call to
12565         finish_for_stmt. Removed first argument from call to
12566         finish_switch_stmt.
12567
12568         * parse.c: Regenerated.
12569
12570         * pt.c (tsubst_expr): Removed first argument from call to
12571         finish_for_stmt. Removed first argument from call to
12572         finish_switch_stmt.
12573
12574 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
12575
12576         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
12577         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
12578
12579         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
12580         (cplus_tree_code_length[]): Likewise.
12581         (cplus_tree_code_name[]): Likewise.
12582         (init_parse): Added call to add_c_tree_codes. Changed
12583         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
12584
12585 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
12586
12587         * cp-tree.h (finish_mem_initializers): Declare.
12588         (count_trees): Likewise.
12589         * parse.y (base_init): Use finish_mem_initializers.
12590         * semantics.c (finish_mem_initializers): New function.
12591
12592         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
12593         the number of trees.
12594         (n_trees): Remove.
12595         (count_trees): Don't use it.
12596
12597 2000-06-15  Jason Merrill  <jason@redhat.com>
12598
12599         * tree.c (count_trees): New debugging function.
12600
12601         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
12602         * init.c (build_member_call): Pull out the name of a DECL.
12603
12604         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
12605         * semantics.c (expand_body): Push to TV_INTEGRATION here.
12606         * optimize.c (optimize_function): Not here.
12607         * pt.c (instantiate_decl): Push to TV_PARSE.
12608
12609 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
12610
12611         * cp-tree.h (struct language_function): Remove x_base_init_list
12612         and x_member_init_list.
12613         (current_base_init_list): Remove.
12614         (current_member_init_list): Likewise.
12615         (setup_vtbl_ptr): Change prototype.
12616         (emit_base_init): Likewise.
12617         (expand_member_init): Likewise.
12618         (reinit_parse_for_function): Remove.
12619         * decl.c (save_function_data): Don't clear x_base_init_list and
12620         x_member_init_list.
12621         (mark_language_function): Don't mark them.
12622         * init.c (perform_member_init): Tweak comment.
12623         (sort_member_init): Take the list of initializers as an argument.
12624         (sort_base_init): Likewise.
12625         (emit_base_init): Likewise.
12626         (expand_member_init): Return the initializer.  Don't use global
12627         variables.
12628         * lex.c (reinit_parse_for_function): Remove.
12629         * method.c (build_template_parm_names): Correct substitution.
12630         (do_build_copy_constructor): Don't use current_member_init_list
12631         and current_base_init_list.
12632         (synthesize_method): Likewise.
12633         * parse.y (base_init): Split mem-initializers into
12634         base-initializers and field-initializers.
12635         (member_init_list): Build up the list here.
12636         (member_init): Return the initializer.
12637         (fn.depfn): Don't use reinit_parse_for_function.
12638         * parse.c: Regenerated.
12639         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
12640         ERROR_MARK.
12641         (tsubst_expr): Don't use current_member_init_list
12642         and current_base_init_list.
12643         (tsubst_expr_values): Rename to ...
12644         (tsubst_initializer_list): ... this.  Use convert_from_reference.
12645         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
12646         and current_base_init_list.
12647         (begin_function_definition): Don't call reinit_parse_for_function.
12648
12649         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
12650
12651         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
12652         correctly.
12653
12654         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
12655
12656 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
12657
12658         * cp-tree.h (IF_COND): Move to c-common.h.
12659         (THEN_CLAUSE): Likewise.
12660         (ELSE_CLAUSE): Likewise.
12661         (WHILE_COND): Likewise.
12662         (WHILE_BODY): Likewise.
12663         (DO_COND): Likewise.
12664         (DO_BODY): Likewise.
12665         (RETURN_EXPR): Likewise.
12666         (EXPR_STMT_EXPR): Likewise.
12667         (FOR_INIT_STMT): Likewise.
12668         (FOR_COND): Likewise.
12669         (FOR_EXPR): Likewise.
12670         (FOR_BODY): Likewise.
12671         (SWITCH_COND): Likewise.
12672         (SWITCH_BODY): Likewise.
12673         (CASE_LOW): Likewise.
12674         (CASE_HIGH): Likewise.
12675         (GOTO_DESTINATION): Likewise.
12676         (COMPOUND_BODY): Likewise.
12677         (ASM_CV_QUAL): Likewise.
12678         (ASM_STRING): Likewise.
12679         (ASM_OUTPUTS): Likewise.
12680         (ASM_INPUTS): Likewise.
12681         (ASM_CLOBBERS): Likewise.
12682         (DECL_STMT_DECL): Likewise.
12683         (STMT_EXPR_STMT): Likewise.
12684         (LABEL_STMT_LABEL): Likewise.
12685         (SCOPE_BEGIN_P): Likewise.
12686         (SCOPE_END_P): Likewise.
12687         (SCOPE_STMT_BLOCK): Likewise.
12688         (SCOPE_NULLIFIED_P): Likewise.
12689         (SCOPE_NO_CLEANUPS_P): Likewise.
12690         (SCOPE_PARTIAL_P): Likewise.
12691         (ASM_VOLATILE_P): Likewise.
12692         (STMT_LINENO): Likewise.
12693         (STMT_LINENO_FOR_FN_P): Likewise.
12694
12695         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
12696         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
12697         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
12698         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
12699         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
12700
12701         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
12702
12703         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
12704         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
12705
12706         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
12707         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
12708         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
12709
12710 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
12711
12712         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
12713         * class.c (dfs_find_final_overrider): Set it appropriately.
12714         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
12715         avoid unneeded secondary vptrs.
12716
12717 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
12718
12719         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
12720         (check_bitfield_decl, check_field_decl): Likewise.
12721         (build_vtbl_or_vbase_field, build_base_field): Likewise.
12722         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
12723         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
12724         (xfer_tag, finish_enum): Likewise.
12725         * decl2.c (finish_builtin_type): Likewise.
12726         * init.c (init_init_processing): Likewise.
12727         * pt.c (instantiate_class_template): Likewise.
12728         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
12729         * cp-tree.h (struct lang_type): Add user_align member.
12730         (CLASSTYPE_USER_ALIGN): Define.
12731
12732 Tue Jun 13 15:48:03 2000  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
12733
12734         * Make-lang.in (c++.install-common): Install g++-cross in
12735         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
12736         $(target_alias)-g++ and $(target_alias)-c++.
12737
12738 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
12739
12740         * class.c (vcall_offset_data_s): Add last_init and fns.
12741         (overrides): Rename to same_signature_p.
12742         (dfs_find_final_overrider): Adjust accordingly.
12743         (mark_overriders): Likewise.
12744         (warn_hidden): Likewise.
12745         (build_vtbl_initializer): Reorganize machinery for building things
12746         at negative offsets.
12747         (build_vcall_and_vbase_vtbl_entries): Likewise.
12748         (build_vbase_offset_vtbl_entries): Likewise.
12749         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
12750         offset entries.  Do not create two entries for functions with the
12751         same signature.
12752         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
12753         (build_rtti_vtbl_entries): Reorganize machinery for building things
12754         at negative offsets.
12755
12756         * optimize.c (expand_call_inline): Don't recurse into the code
12757         used to initialize the parameters more than once.
12758
12759 2000-06-11  Mark Mitchell <mark@codesourcery.com>
12760
12761         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
12762         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
12763         (find_substitution): Only use the `Sa' substitution for
12764         std::allocator, not instantiations of it.
12765         (write_template_prefix): Move comment.  Only use a TREE_LIST to
12766         represent substitutions for a member template.
12767         (write_array_type): Mangle array dimensions correctly.
12768         * optimize.c (maybe_clone_body): Copy more information from the
12769         cloned function.
12770         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
12771         on the regenerated declaration.
12772
12773 2000-06-11  Chip Salzenberg  <chip@valinux.com>
12774             Mark Mitchell <mark@codesourcery.com>
12775
12776         * class.c (build_vtable): Clarify comment.
12777         (build_ctor_vtbl_group): Pass the most derived type to
12778         build_vtable.
12779
12780 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12781
12782         * decl2.c (compare_options): Don't needlessly cast away const-ness.
12783
12784 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
12785
12786         * decl.c (add_binding): Handle duplicate declarations of external
12787         variables.
12788
12789 2000-06-09  Chip Salzenberg  <chip@valinux.com>
12790             Mark Mitchell <mark@codesourcery.com>
12791
12792         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
12793         argument.
12794         (write_signed_number): New macro.
12795         (write_unsigned_number): Likewise.
12796         (write_source_name): Use them.
12797         (write_number): Handle signed and unsigned values.
12798         (write_integer_cst): Use tree_int_cst_sgn, and use
12799         write_unsigned_number or write_signed_number as appropriate.
12800         (write_discriminator): Use write_unsigned_number or
12801         write_signed_number as appropriate.
12802         (write_template_arg_literal): Likewise.
12803         (write_array_type): Use tree_low_cst.
12804         (write_template_parm):  Use write_unsigned_number or
12805         write_signed_number as appropriate.
12806         (write_substitution): Adjust call to write_number.
12807         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
12808         (write_expression): Handle non-type template arguments of
12809         reference type correctly.
12810         (mangle_thunk): Use write_signed_number.
12811
12812 2000-06-09  Chip Salzenberg  <chip@valinux.com>
12813
12814         * mangle.c (find_substition): Don't mangle objects with typename
12815         substitutions (e.g. "cin" as "Si").
12816
12817 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
12818
12819         * call.c (add_candidate): Use ggc_alloc_cleared.
12820         * decl.c (lookup_label): Likewise.
12821         * lex.c (retrofit_lang_decl): Likewise.
12822
12823 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
12824
12825         * semantics.c (expand_body): Push to TV_EXPAND.
12826         * optimize.c (optimize_function): Push to TV_INTEGRATION.
12827         * decl.c (start_function): Always call announce_function.
12828
12829         * tinfo2.cc: Just declare abort.
12830
12831 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
12832
12833         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
12834         whenever @ is a symbolic name.
12835
12836 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
12837
12838         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
12839
12840 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
12841
12842         * decl.c (pushdecl): Look up functions by DECL_NAME, not
12843         DECL_ASSEMBLER_NAME.
12844
12845 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
12846
12847         * decl2.c (c_language): Define.
12848
12849 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
12850
12851         * lex.c (lang_init_options): Tweak.
12852
12853         * decl2.c: Remove #inclusion of diagnostic.h
12854         (lang_decode_option): Move diagnostic formatting options to
12855         toplevel.
12856
12857         * lang-options.h: Remove documentation for diagnostic options.
12858
12859         * Makefile.in (lex.o): Depends upon diagnostic.h
12860
12861 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
12862
12863         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
12864         the same DECL_RESULT, it's not a redefinition.
12865         * pt.c (tsubst_decl): Remove code to handle illegal
12866         specializations.
12867
12868 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
12869
12870         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
12871
12872 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
12873
12874         * search.c (maybe_suppress_debug_info): Don't check
12875         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
12876
12877         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
12878         here if extern_p.
12879
12880         Remember instantiation context in deferred instantiations.
12881         * cp-tree.h (struct tinst_level): Remove.
12882         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
12883         * pt.c (current_tinst_level): Now a tree.
12884         (print_template_context, push_tinst_level, pop_tinst_level,
12885         tinst_for_decl): Adjust.
12886         (reopen_tinst_level): New fn.
12887         (init_pt): Register current_tinst_level as a root.
12888         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
12889         of the pending templates list.
12890         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
12891         * lex.c (extract_interface_info): Adjust.
12892         * decl2.c (warn_if_unknown_interface): Adjust.
12893
12894 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
12895
12896         * class.c (indirect_primary_base_p): New function.
12897         (determine_primary_base): Use it.
12898
12899 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
12900
12901         Update new-abi dynamic cast algorithm.
12902         * tinfo.cc (__class_type_info::__dyncast_result): Add
12903         whole_details. Adjust constructor.
12904         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
12905         Avoid unnecessary searching.
12906         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
12907
12908 Mon Jun  5 06:48:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12909
12910         * decl.c (init_decl_processing): Don't call record_component_aliases.
12911         * tree.c (build_cplus_array_type_1): Likewise.
12912
12913 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
12914
12915         * ir.texi: Correct typo.
12916         * mangle.c (write_expression): Handle non-type template arguments
12917         with reference type.
12918         * method.c (build_overload_value): Likewise.
12919         * pt.c (convert_nontype_argument): Explicitly represent conversion
12920         to a reference with an ADDR_EXPR.
12921         (unify): Always unify arguments in left-to-right order.
12922
12923 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
12924             Mark Mitchell  <mark@codesourcery.com>
12925
12926         * Make-lang.in (CXX_SRCS): Add mangle.c.
12927         * Makefile.in (CXX_OBJS): Add mangle.o.
12928         (mangle.o): New rule.
12929
12930         * class.c (local_classes): New variable.
12931         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
12932         (get_vtt_name): Use mangle_vtt_name for new ABI.
12933         (init_class_processing): Initialize local_classes.
12934         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
12935         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
12936         (std_identifier): New macro.
12937         (DECL_VOLATILE_MEMFUNC_P): New macro.
12938         (DECL_NAMESPACE_STD_P): Likewise.
12939         (local_classes): Declare.
12940         (get_mostly_instantiated_function_type): Declare.
12941         (init_mangle): Declare.
12942         (mangle_decl): Likewise.
12943         (mangle_type_string): Likewise.
12944         (mangle_type): Likewise.
12945         (mangle_typeinfo_for_type): Likewise.
12946         (mangle_typeinfo_string_for_type): Likewise.
12947         (mangle_vtbl_for_type): Likewise.
12948         (mangle_vtt_for_type): Likewise.
12949         (mangle_ctor_vtbl_for_type): Likewise.
12950         (mangle_thunk): Likewise.
12951         (mangle_conv_op_name_for_type): Likewise.
12952         (mangle_guard_variable): Likewise.
12953         * decl.c (pushtag): Keep track of local classes.
12954         (initialize_predefined_identifiers): Initialize std_identifier.
12955         (init_decl_processing): Use std_identifier.
12956         (start_decl): Don't treat instantiations as specializations.
12957         (grokdeclarator): Likewise.
12958         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
12959         name for fully-instantiated templates.
12960         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
12961         destructors with the new ABI.
12962         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
12963         (grokfield): Use mangle_type for new ABI.
12964         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
12965         (get_sentry): Use mangle_guard_variable for new ABI.
12966         (start_static_initialization_or_destruction): Likewise.
12967         * expr.c (extract_aggr_init): Remove.
12968         (extract_scalar_init): Likewise.
12969         (extract_init): Remove #if 0'd code.
12970         * mangle.c: New function.
12971         * method.c (build_mangled_name): Assert not flag_new_abi.
12972         (build_static_name): Likewise.
12973         (build_decl_overload_real): Likewise.
12974         (build_typename_overload): Likewise.
12975         (build_overload_with_type): Likewise.
12976         (build_overload_name): Likewise.
12977         (get_ctor_vtbl_name): Likewise.
12978         (start_squangling): Likewise.
12979         (get_id_2): Likewise.
12980         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
12981         (init_method): Call init_mangle for new ABI.
12982         (make_thunk): Call mangle_thunk for new ABI.
12983         * operators.def: Correct new ABI manglings for the `%' operator.
12984         Add `::' operator.
12985         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
12986         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
12987         (lookup_template_class): Call mangle_decl for new ABI.
12988         (get_mostly_instantiated_function_type): New function.
12989         (set_mangled_name_for_template_decl): Use it.
12990         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
12991         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
12992         conversion op names.
12993         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
12994         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
12995         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
12996         mangle_typeinfo_string_for_type.
12997
12998 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
12999
13000         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
13001         (INNERMOST_TEMPLATE_ARGS): New macro.
13002         (innermost_args): Remove.
13003         (get_innermost_template_args): New function.
13004         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
13005         * error.c (dump_function_decl): Be caution when using
13006         most_general_template.
13007         * method.c (build_template_parm_names):  Use
13008         INNERMOST_TEMPLATE_ARGS.
13009         * pt.c (add_to_template_args): Tidy comment
13010         (get_innermost_template_args): New function.
13011         (check_explicit_specialization): Clear DECL_INITIAL for a new
13012         specialization.
13013         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
13014         Tidy.
13015         (push_template_decl): Always register specializations of the most
13016         general template.
13017         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
13018         (coerce_template_parms): Likewise.
13019         (lookup_template_class): Likewise.
13020         (innermost_args): Remove.
13021         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
13022         (tsubst_decl): Handle tricky specializations.  Use
13023         get_innermost_template_args.
13024         (instantiate_template): Simplify handling of partial
13025         instantiations.
13026         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
13027         (most_general_template): Reimplement, in a more straightforward
13028         manner.
13029         (regenerate_decl_from_template): Tweak formatting.  Use
13030         TMPL_ARGS_DEPTH for clarity.
13031         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
13032
13033         * dump.c (dequeue_and_dump): Dump information about thunks.
13034
13035 2000-06-01  Richard Henderson  <rth@cygnus.com>
13036
13037         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
13038
13039 2000-06-01  Richard Henderson  <rth@cygnus.com>
13040
13041         * decl2.c (unsupported_options): Fix typo, make const.
13042         (lang_decode_option): Fix bsearch argument order.
13043
13044 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
13045
13046         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
13047         on FIELD_DECLs.
13048
13049 Wed May 31 14:09:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13050
13051         * cp-tree.h (c_get_alias_set): Deleted.
13052         * Makefile.in (decl.o): Include ../expr.h.
13053         * decl.c (expr.h): Include.
13054         (init_decl_processing): Call record_component_aliases for arrays.
13055         (grokdeclarator): Likewise.
13056         Set TREE_ADDRESSABLE for fields that aren't bitfields.
13057         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
13058
13059 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
13060
13061         Remove guiding declaration support.
13062         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
13063         (flag_guiding_decls): Remove.
13064         * call.c (build_user_type_conversion_1): Remove support for
13065         guiding decls.
13066         (build_new_function_call): Likewise.
13067         (build_new_op): Likewise.
13068         (build_new_method_call): Likewise.
13069         * decl.c (start_function): Likewise.
13070         * friend.c (is_friend): Likewise.
13071         (do_friend): Likewise.
13072         * decl2.c ((flag_dump_translation_unit): Make it const.
13073         (flag_guiding_decls): Remove.
13074         (unsupported_options): New variable
13075         (compare_options): New function.
13076         (lang_decode_option): Use them.
13077
13078         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
13079
13080         * method.c (mangle_expression): Adjust test for legal expression
13081         operators.
13082
13083         * pt.c (instantiate_decl): Save and restore the local
13084         specializations list.
13085
13086 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
13087
13088         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
13089
13090 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
13091
13092         * call.c (add_template_candidate_real): Handle member template
13093         constructors for classes with virtual bases.
13094         (build_user_type_conversion_1): Use in_charge_arg_for_name.
13095         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
13096
13097         * ir.texi: Update thunk documentation.
13098
13099         * call.c (joust): Fix handling of overloaded builtin operators.
13100
13101 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
13102
13103         * cp-tree.h (DECL_ANTICIPATED): New macro.
13104         Document new use of DECL_LANG_FLAG_7.
13105         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
13106         in the user namespace.
13107         * lex.c (do_identifier): If the identifier's declaration has
13108         DECL_ANTICIPATED on, it has not yet been declared.  But do not
13109         replace it with an ordinary implicit declaration.
13110
13111         * tinfo2.cc: Include stdlib.h.
13112
13113 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
13114
13115         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
13116         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
13117         CLASSTYPE_ALIGN.
13118
13119 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
13120
13121         * decl2.c (lang_decode_option): Use skip_leading_substring instead
13122         of plain strncmp.
13123
13124 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
13125
13126         * operators.def (<?): Duplicated, should have been...
13127         (>?): this.  Fixed.
13128
13129 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
13130             Mark Mitchell  <mark@codesourcery.com>
13131
13132         * cp-tree.h (ansi_opname): Make it a macro.
13133         (ansi_assopname): Likewise.
13134         (struct lang_decl_flags): Add assignment_operator_p.
13135         (struct lang_decl): Add operator_code.
13136         (DECL_VTT_PARM): Adjust.
13137         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
13138         overloaded operator.
13139         (SET_OVERLOADED_OPERATOR_CODE): New macro.
13140         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
13141         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
13142         (opname_tab): Remove.
13143         (assignop_tab): Likewise.
13144         (operator_name_info_t): New type.
13145         (operator_name_info): New variable.
13146         (assignment_operator_name_info): Likewise.
13147         (build_cp_library_fn): Remove declaration.
13148         (push_cp_library_fn): Likewise.
13149         (operator_name_string): Likewise.
13150         (build_decl_overload): Likewise.
13151         * call.c (print_z_candidates): Simplify.
13152         (build_object_call): Adjust usage of ansi_opname.  Use
13153         DECL_OVERLOADED_OPERATOR_P.
13154         (op_error): Adjust operator name lookup.
13155         (build_conditional_expr): Adjust usage of ansi_opname.
13156         (build_new_op): Likewise.
13157         (build_op_delete_call): Likewise.
13158         (build_over_call): Likewise.
13159         (joust): Use DECL_OVERLOADED_OPERATOR_P.
13160         * decl.c (duplicate_decls): Copy operator_code.
13161         (init_decl_processing): Adjust parameters to push_cp_library_fn.
13162         (builtin_function): Adjust parameters to build_library_fn_1.
13163         (build_library_fn_1): Accept an overloaded operator code.
13164         (build_library_fn): Pass ERROR_MARK.
13165         (build_cp_library_fn): Accept an overloaded operator code.
13166         (push_cp_library_fn): Likewise.
13167         (grokfndecl): Tweak.
13168         (grokdeclarator): Simplify code to compute names of overloaded
13169         operators.  Adjust use of ansi_opname.
13170         (ambi_op_p): Work on tree_codes, not identifiers.
13171         (unary_op_p): Likewise.
13172         (grok_op_properties): Likewise.
13173         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
13174         (lang_mark_tree): Don't try to mark the operator_code.
13175         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
13176         * error.c (dump_decl): Remove special handling for operator
13177         names.
13178         (dump_function_name): Likewise.
13179         (dump_expr): Adjust name lookup of operators.
13180         (op_to_string): Simplify.
13181         (assop_to_string): Likewise.
13182         * init.c (build_new_1): Adjust use of ansi_opname.
13183         * lex.c (opname_tab): Remove.
13184         (assignop_tab): Likewise.
13185         (ansi_opname): Likewise.
13186         (ansi_assopname): Likewise.
13187         (operator_name_string): Likewise.
13188         (reinit_lang_specific): Likewise.
13189         (operator_name_info): New variable.
13190         (assignment_operator_name_info): Likewise.
13191         (init_operators): New function.
13192         (init_parse): Use it.
13193         (do_identifier): Adjust use of ansi_opname.
13194         * method.c (mangle_expression): Don't use ansi_opname for
13195         mangling.
13196         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
13197         (build_decl_overload): Remove.
13198         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
13199         (do_build_assign_ref): Adjust use of ansi_opname.
13200         (synthesize_method): Likewise.
13201         (implicitly_declare_fn): Likewise.
13202         * operators.def: New file.
13203         * parse.y (operator): Adjust use of ansi_opname.
13204         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
13205         (set_mangled_name_for_template_decl): Don't play games with
13206         current_namespace.
13207         (special_function_p): Adjust use of ansi_opname.
13208         * typeck.c (check_return_expr): Likewise.
13209         * Make-lang.in (cc1plus): Depend on operators.def.
13210         * Makefile.in (lex.o): Likewise.
13211         (decl.o): Likewise.
13212
13213 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
13214
13215         * Make-lang.in (cplib2.ready): Eradicate.
13216
13217 Sat May 27 11:25:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13218
13219         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
13220         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
13221         (built_min, cp_tree_equal): Likewise.
13222
13223 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
13224
13225         * class.c (layout_nonempty_base_or_field): Replace
13226         `record_layout_info' with `record_layout_info_s'.
13227
13228 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
13229
13230         Fix goto checking.
13231         * cp-tree.h (struct language_function): x_named_labels is now
13232         a struct named_label_list*.
13233         * decl.c (struct named_label_use_list): Renamed from...
13234         (struct named_label_list): ...this.  New struct.
13235         (push_binding_level): Don't set eh_region.
13236         (note_level_for_eh): New fn.
13237         (pop_label): Take label and old value directly.
13238         (pop_labels): Adjust for new named_labels format.
13239         (lookup_label): Likewise.
13240         (poplevel): Note characteristics of a binding level containing a
13241         named label.  Mess with named label lists earlier.
13242         (mark_named_label_lists): New fn.
13243         (mark_lang_function): Call it.
13244         (use_label): New fn, split out from...
13245         (make_label_decl): ...here.  Don't call it.
13246         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
13247         check_previous_gotos): New fns, split out from...
13248         (define_label): ...here.
13249         (check_switch_goto): New fn.
13250         (define_case_label): Call it.
13251         (check_goto): New fn.
13252         * semantics.c (finish_goto_stmt): Call it and use_label.
13253         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
13254         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
13255
13256 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
13257
13258         * class.c (build_vtable_entry_ref): Correct usage of
13259         get_vtbl_decl_for_binfo.
13260
13261         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
13262         * method.c (implicitly_declare_fn): Not here.
13263
13264 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
13265
13266         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
13267         (CPTI_PTMD_DESC_TYPE): ... here.
13268         (ptmd_desc_type_node): Rename to ...
13269         (ptm_desc_type_node): ... here.
13270         * decl.c: Likewise.
13271         * rtti.c (ptmd_initializer): Rename to ...
13272         (ptm_initializer): ... here.
13273         (sythesize_tinfo_var): Adjust. Deal with pointer to member
13274         function.
13275         (create_tinfo_types): Adjust.
13276
13277 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
13278
13279         Finish implementation of VTTs.
13280         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
13281         CPTI_VTT_PARM_IDENTIFIER.
13282         (vtt_parm_identifier): New macro.
13283         (vtt_parm_type): Likewise.
13284         (BINFO_SUBVTT_INDEX): Likewise.
13285         (BINFO_VPTR_INDEX): Likewise.
13286         (struct lang_decl): Add vtt_parm.
13287         (DECL_VTT_PARM): New macro.
13288         (DECL_USE_VTT_PARM): Likewise.
13289         (DECL_NEEDS_VTT_PARM_P): Likewise.
13290         (get_vtt_name): Declare.
13291         (build_artificial_parm): Likewise.
13292         (fixup_all_virtual_upcast_offsets): Likewise.
13293         (expand_indirect_vtbls_init): Remove.
13294         * call.c (build_new_method_call): Pass the vtt to subobject
13295         constructors and destructors.
13296         * class.c (get_vtt_name): Give it external linkage.
13297         (build_clone): Handle the magic VTT parameters for clones.
13298         (clone_function_decl): Fix typo in comment.
13299         (build_vtt): Keep track of the indices in the VTTs where various
13300         entities are stored.
13301         (build_vtt_inits): Likewise.
13302         (dfs_build_vtt_inits): Likewise.
13303         (build_ctor_vtbl_group): Tweak type of construction vtables.
13304         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
13305         primary bases, when building construction vtables.
13306         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
13307         (initialize_predefined_identifiers): Add vtt_parm_identifier.
13308         (init_decl_processing): Initialize vtt_parm_type.
13309         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
13310         (lang_mark_tree): Make vtt_parm.
13311         * decl2.c (build_artificial_parm): New function.
13312         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
13313         (grokclassfn): Use build_artificial_parm.
13314         * init.c (initialize_vtbl_ptrs): Call
13315         fixup_all_virtual_upcast_offsets directly.
13316         (perform_member_init): Use the complete subobject destructor for
13317         member cleanups.
13318         (build_vtbl_address): New function.
13319         (expand_virtual_init): Handle VTTs.
13320         * optimize (maybe_clone_body): Likewise.
13321         * search.c (fixup_all_virtual_upcast_offsets): Give it external
13322         linkage.
13323         (expand_indirect_vtbls_init): Remove.
13324         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
13325         * tree.c (make_binfo): Make them bigger.
13326
13327 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
13328
13329         * inc/cxxabi.h (__pbase_type_info): Define, based on
13330         __pointer_type_info.
13331         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
13332         (__pointer_to_member_type_info): Likewise.
13333         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
13334         (__pointer_to_member_type_info::__is_pointer_p): Remove.
13335         (__pointer_type_info::__do_catch): Rename to ...
13336         (__pbase_type_info::__do_catch): ... here. Adjust.
13337         (__pbase_type_info::__pointer_catch): Implement.
13338         (__pointer_type_info::__pointer_catch): Adjust.
13339         (__pointer_to_member_type_info::__pointer_catch): Adjust.
13340
13341 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
13342
13343         * tinfo.h (__user_type_info::contained_virtual_p): New
13344         predicate.
13345         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
13346         shaped hierarchy.
13347         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
13348         diamond shaped hierarchy. Add early out for mixed diamond and
13349         duplicate shaped hierarchy.
13350
13351 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
13352
13353         * cp-tree.h (build_delete): Change prototype.
13354         (build_vec_delete): Likewise.
13355         * call.c (build_scoped_method_call): Use special_function_kind
13356         values to indicate the kind of destruction to be done.
13357         (build_method_call): Likewise.
13358         * decl.c (finish_destructor_body): Likewise.
13359         (maybe_build_cleanup_1): Likewise.  Rename to ...
13360         (maybe_build_cleanup): ... this.
13361         * decl2.c (delete_sanity): Use special_function_kind
13362         values to indicate the kind of destruction to be done.
13363         (build_cleanup): Likewise.
13364         * init.c (perform_member_init): Likewise.
13365         (build_vec_delete_1): Likewise.
13366         (build_dtor_call): Simplify.
13367         (build_delete): Use special_function_kind
13368         values to indicate the kind of destruction to be done.
13369         (build_vbase_delete): Likewise.
13370         (build_vec_delete): Likewise.
13371
13372         * init.c (sort_member_init): Fix typo in error message generation
13373         code.
13374
13375 Mon May 15 11:46:29 2000  Donald Lindsay  <dlindsay@cygnus.com>
13376
13377         * semantics.c (begin_class_definition): make the packed
13378         attribute be sensitive to the "-fpack-struct" command line flag
13379
13380 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
13381
13382         Update new-abi upcast algorithm.
13383         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
13384         prototype and meaning of return value.
13385         (__si_class_type_info::__do_upcast): Likewise.
13386         (__vmi_class_type_info::__do_upcast): Likewise.
13387         * tinfo.cc (__class_type_info::__upcast_result): Replace
13388         whole2dst with part2dst. Adjust ctor.
13389         (__class_type_info::__do_upcast): Adjust call of worker function.
13390         (__class_type_info::__do_upcast): Adjust.
13391         (__si_class_type_info::__do_upcast): Adjust. Use parent's
13392         __do_upcast.
13393         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
13394         virtual base in diamond hierarchy bug.
13395
13396 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
13397
13398         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
13399         and bitfield to tinfo_fn_p.
13400         (DECL_TINFO_FN_P): Adjust.
13401         (SET_DECL_TINFO_FN_P): Likewise.
13402         (DECL_MUTABLE_P): Likewise.
13403         (DECL_C_BIT_FIELD): Likewise.
13404         (SET_DECL_C_BIT_FIELD): Likewise.
13405         (CLEAR_DECL_C_BIT_FIELD): Likewise.
13406         (DECL_UNINLINABLE): Likewise.
13407         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
13408         (handle_using_decl): Remove assertion.
13409         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
13410         to build FIELD_DECLs.
13411         (build_base_field): Likewise.
13412         (layout_class_type): Likewise.
13413         * decl.c (init_decl_processing): Likewise.
13414         (build_ptrmemfunc_type): Likewise.
13415         (grokdeclarator): Likewise.
13416         * decl2.c (grok_x_components): Likewise.
13417         * except.c (call_eh_info): Likewise.
13418         * init.c (init_init_processing): Likewise.
13419         * rtti.c (expand_class_desc): Likewise.
13420         (create_pseudo_type_info): Likewise.
13421         (get_vmi_pseudo_type_info): Likewise.
13422         (create_tinfo_types): Likewise.
13423         * ptree.c (print_lang_decl): Adjust.
13424         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
13425         before checking DECL_MUTABLE_P.
13426
13427         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
13428         parameters for template functions.
13429         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
13430         destructors as well as constructors.
13431
13432 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
13433
13434         * class.c (build_ctor_vtbl_group): Set inits.
13435         * optimize.c (maybe_clone_body): Set DECL_INLINE and
13436         DECL_THIS_INLINE appropriately for clones.
13437
13438         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
13439         (DECL_CONV_FN_P): Simplify.
13440         (DECL_OPERATOR): Remove.
13441         (language_to_string): Declare.
13442         * decl.c (duplicate_decls): Fix typo in comment.
13443         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
13444         (grok_op_properties): Use DECL_CONV_FN_P instead of
13445         IDENTIFIER_TYPENAME_P.
13446         * dump.c (dequeue_and_dump): Dump the language linkage of
13447         declarations.
13448         * error.c (language_to_string): Give it external linkage.
13449         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
13450         (implicitly_declare_fn): Set DECL_LANGUAGE.
13451         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
13452         IDENTIFIER_TYPENAME_P.
13453         (tsubst_decl): Likewise.
13454         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
13455         * semantics.c (finish_member_declaration): Don't mark members of
13456         classes declared in an extern "C" region as extern "C".
13457
13458 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13459
13460         * decl2.c (qualified_lookup_using_namespace): Look through
13461         namespace aliases.
13462
13463         * decl.c (push_using_decl): Return the old decl on namespace level.
13464
13465 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
13466
13467         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
13468         (VTT_NAME_PREFIX): New macro.
13469         (CTOR_VTBL_NAME_PREFIX): Likewise.
13470         (get_ctor_vtbl_name): New function.
13471         * class.c (get_vtable_name): Simplify.
13472         (get_vtt_name): New function.
13473         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
13474         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
13475         when a virtual base becomes primary.
13476         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
13477         VTTs.
13478         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
13479         additional parameters.
13480         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
13481         (initialize_array): New function.
13482         (build_vtt): Likewise.
13483         (build_vtt_inits): Likewise.
13484         (dfs_build_vtt_inits): Likewise.
13485         (dfs_fixup_binfo_vtbls): Likewise.
13486         (build_ctor_vtbl_group): Likewise.
13487         (initialize_vtable): Use initialize_array.
13488         (accumulate_vtbl_inits): Reimplement to handle construction
13489         vtables.
13490         (dfs_accumulate_vtbl_inits): Likewise.
13491         (bulid_vtbl_initializer): Adjust parameter name.
13492         * method.c (build_typename_overload): Remove #if 0'd code.
13493         (get_ctor_vtbl_name): New function.
13494         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
13495         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
13496
13497         * cp-tree.h (struct lang_type): Remove search_slot.
13498         (CLASSTYPE_SEARCH_SLOT): Remove.
13499         (emit_base_init): Change prototype.
13500         (initialize_vtbl_ptrs): Likewise.
13501         (expand_indirect_vtbls_init): Likewise.
13502         (clear_search_slots): Remove.
13503         * decl.c (lang_mark_tree): Don't mark search_slot.
13504         * init.c (initialize_vtbl_ptrs): Simplify.
13505         (emit_base_init): Likewise.
13506         * search.c (struct vbase_info): Document decl_ptr.
13507         (convert_pointer_to_single_level): Remove.
13508         (dfs_find_vbases): Remove.
13509         (dfs_init_base_pointers): Simplify.
13510         (dfs_clear_vbase_slots): Remove.
13511         (dfs_vtable_path_unmark): New function.
13512         (init_vbase_pointers): Simplify.
13513         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
13514         (expand_indirect_vtbls_init): Simplify.  Don't call
13515         mark_all_temps_used.
13516         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
13517         initialize_vtbl_ptrs.
13518
13519 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
13520
13521         * except.c: Add static prototypes.
13522
13523 2000-05-20  H.J. Lu  <hjl@gnu.org>
13524
13525         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
13526
13527 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
13528
13529         Don't create a separate copy of virtual bases for the
13530         CLASSTYPE_VBASECLASSES list.
13531         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
13532         (BINFO_FOR_VBASE): Remove.
13533         (CANONICAL_BINFO): Adjust.
13534         (binfo_for_vbase): New function.
13535         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
13536         instead of BINFO_FOR_VBASE.
13537         (build_vbase_pointer): Likewise.
13538         (build_secondary_vtable): Likewise.
13539         (dfs_mark_primary_bases): Likewise.
13540         (mark_primary_bases): Likewise.
13541         (layout_nonempty_base_or_field): Likewise.
13542         (dfs_set_offset_for_shared_vbases): Likewise.
13543         (dfs_set_offset_for_unshared_vbases): Likewise.
13544         (layout_virtual_bases): Likewise.  Adjust for changes to the
13545         CLASSTYPE_VBASECLASSES list.
13546         (dump_class_hierarchy_r): Use binfo_for_vbase
13547         instead of BINFO_FOR_VBASE.
13548         (dump_class_hierarchy): Likewise.
13549         (finish_vtbls): Likewise.
13550         (build_vtbl_initializer): Adjust for changes to the
13551         CLASSTYPE_VBASECLASSES list.
13552         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
13553         * decl.c (finish_destructor_body): Adjust for changes to the
13554         CLASSTYPE_VBASECLASSES list.
13555         * init.c (sort_base_init): Use binfo_for_vbase.
13556         (construct_virtual_bases): Adjust for changes to the
13557         CLASSTYPE_VBASECLASSES list.
13558         (expand_member_init): Use binfo_for_vbase.
13559         (build_vbase_delete):  Adjust for changes to the
13560         CLASSTYPE_VBASECLASSES list.
13561         * method.c (do_build_copy_constructor): Likewise.
13562         * rtti.c (get_base_offset): Use binfo_for_vbase.
13563         (expand_class_desc): Remove #if 0'd code.
13564         * search.c (struct vbase_info): Remove vbase_types.
13565         (get_base_distance):  Use binfo_for_vbase.
13566         (lookup_field_queue_p): Use CANONICAL_BINFO.
13567         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
13568         (get_pure_virtuals): Adjust for changes to the
13569         CLASSTYPE_VBASECLASSES list.
13570         (dfs_find_vbases): Use binfo_for_vbase.
13571         (dfs_init_vbase_pointers): Likewise.
13572         (init_vbase_pointers): Don't initialize vi.vbase_types.
13573         (virtual_context): Use binfo_for_vbase.
13574         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
13575         CLASSTYPE_VBASECLASSES list.
13576         (expand_indirect_vtbls_init): Simplify.
13577         (dfs_get_vbase_types): Don't replicate virtual bases.
13578         (find_vbase_instance): Use binfo_for_vbase.
13579         (binfo_for_vbase): New function.
13580         * typeck.c (get_delta_difference): Use binfo_for_vbase.
13581
13582 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
13583
13584         * decl2.c (finish_anon_union): Generalize error messages to handle
13585         anonymous structures.
13586         * init.c (perform_member_init): Remove `name' parameter.
13587         (build_field_list): New function.
13588         (sort_member_init): Handle anonymous union initialization order
13589         correctly.  Check for multiple initializations of the same union.
13590         (emit_base_init): Don't look up fields by name here.
13591         (expand_member_init): Record the result of name lookup for future
13592         reference.
13593         * typeck.c (build_component_ref): Fix formatting.
13594
13595 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
13596
13597         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
13598         * typeck.c (build_x_compound_expr): Replace warn_unused with
13599         warn_unused_value.
13600
13601         * decl2.c (lang_decode_option): Update -Wall unused flags by
13602         calling set_Wunused.
13603
13604 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
13605
13606         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
13607         * init.c (dfs_vtable_path_unmark): Remove.
13608         * search.c (marked_new_vtable_p): Likewise.
13609         (unmarked_new_vtable_p): Likewise.
13610         (dfs_search_slot_nonempty_p): Likewise.
13611         (dfs_mark): Likewise.
13612         (dfs_vtable_path_unmark): Likewise.
13613         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
13614         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
13615         (dfs_init_vbase_pointers): Remove special-case new ABI code.
13616         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
13617         (init_vbase_pointers): Simplify.
13618         (expand_indirect_vtbls_init): Likewise.
13619
13620         * class.c (copy_virtuals): New function.
13621         (build_primary_table): Use it.
13622         (build_secondary_vtable): Likewise.
13623         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
13624         indicate that no vcall offset is required.
13625         (add_virtual_function): Likewise.
13626         (modify_all_vtables): Likewise.
13627         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
13628         (dfs_accumulate_vtbl_inits): Likewise.
13629         (build_vtbl_initializer): Make changes to handle construction
13630         vtables.
13631         (dfs_build_vcall_offset_vtbl_entries): Likewise.
13632         (build_rtti_vtbl_entries): Likewise.
13633         (build_vtable_entries): Handle a NULL vcall_index.
13634
13635 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
13636
13637         * decl2.c (lang_decode_option): Fix thinko.
13638
13639 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
13640
13641         * except.c (check_handlers): New fn.
13642         * cp-tree.h: Declare it.
13643         * semantics.c (finish_handler_sequence): Call it.
13644         (finish_function_handler_sequence): Likewise.
13645         (finish_handler_parms): Set TREE_TYPE on the handler.
13646         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
13647         * search.c (get_base_distance_recursive): If protect>1, ignore
13648         special access.
13649         (get_base_distance): Don't reduce watch_access.
13650
13651 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
13652
13653         * lex.c: #include diagnostic.h.
13654         (lang_init_options): Set default prefixing rules.
13655
13656         * lang-options.h: Add -fdiagnostics-show-location=.
13657
13658         * decl2.c: #include diagnostic.h.
13659         (lang_decode_option): Handle -fdiagnostics-show-location=.
13660
13661 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
13662
13663         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
13664         * vec.cc: Revert my 2000-05-07 change.
13665
13666 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
13667
13668         * class.c (check_field_decls): Complain about non-static data
13669         members with same name as class in class with constructor.
13670
13671 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
13672
13673         * decl.c (grokdeclarator): Allow non-static data members with
13674         same name as class.
13675
13676 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
13677
13678         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
13679         and pending_inline.filename.  Update prototypes.
13680         * decl.c (define_label): Constify filename parameter.
13681         * decl2.c (warn_if_unknown_interface): Constify local char *.
13682         * input.c Constify input_source.filename. Don't declare
13683         input_filename or lineno.  Constify filename parameter to feed_input.
13684         * lex.c (init_parse): Constify parameter and return value.
13685         (cp_pragma_interface, cp_pragma_implementation): Constify
13686         filename argument.
13687         (reinit_parse_for_method, reinit_parse_for_block,
13688         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
13689         Constify local char *.
13690         * pt.c: Don't declare lineno or input_filename.
13691         (print_template_context, tsubst_friend_function, tsubst_decl,
13692         tsubst, instantiate_decl): Constify local char *.
13693         * semantics.c (expand_body): Constify local char *.
13694         * tree.c (build_srcloc): Constify filename parameter.
13695         * typeck.c (c_expand_asm_operands): Constify filename
13696         parameter.
13697
13698 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
13699
13700         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
13701         offsetof expansion.
13702
13703 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
13704
13705         * inc/cxxabi.h:  Fix typos in comment.
13706         (__base_class_info::__offset): Use a static_cast.
13707
13708 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
13709
13710         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
13711         of std::size_t and std::ptrdiff_t respectively.
13712         * tinfo.cc: Likewise.
13713         * vec.cc: Likewise.
13714
13715 2000-05-06  Richard Henderson  <rth@cygnus.com>
13716
13717         * typeck.c (build_c_cast): Don't warn integer->pointer size
13718         mismatch for constants.
13719
13720 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
13721
13722         * rtti.c (ptmd_initializer): Set non-public, if class is
13723         incomplete.
13724
13725         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
13726         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
13727         __cxa_vec_delete): Likewise.
13728         * tinfo.cc (__dynamic_cast): Likewise.
13729         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
13730         __cxa_vec_delete): Likewise.
13731
13732 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
13733
13734         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
13735         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
13736         (lang_decl_flags): Add vcall_offset.
13737         (THUNK_VCALL_OFFSET): Use it.
13738         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
13739         * method.c (make_thunk): Create the lang_decl here, not in
13740         emit_thunk.
13741         (emit_thunk): Make generic thunks into ordinary functions once
13742         they have been fed to expand_body.
13743         * semantics.c (expand_body): Set current_function_is_thunk here.
13744
13745 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13746
13747         * class.c (update_vtable_entry_for_fn): Prototype.
13748
13749         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
13750         and `tmpl'.
13751
13752         * search.c (dfs_build_inheritance_graph_order): Prototype.
13753
13754 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
13755
13756         * cp-tree.h (special_function_kind): Add various kinds of
13757         destructors.
13758         (special_function_p): New function.
13759         * class.c (overrides): Don't let one kind of destructor override
13760         another.
13761         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
13762         whether or not to instantiate a template.
13763         * tree.c (special_function_p): Define.
13764
13765 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
13766
13767         * cp-tree.def (THUNK_DECL): Remove.
13768         * cp-tree.h (DECL_THUNK_P): New macro.
13769         (DECL_NON_THUNK_FUNCTION_P): Likewise.
13770         (DECL_EXTERN_C_FUNCTION_P): Likewise.
13771         (SET_DECL_THUNK_P): Likewise.
13772         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
13773         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
13774         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
13775         * decl.c (decls_match): Use DECL_EXTERN_C_P.
13776         (duplicate_decls): Likewise.
13777         (pushdecl): Likewise.  Adjust thunk handling.
13778         (grokfndecl): Use DECL_EXTERN_C_P.
13779         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
13780         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
13781         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
13782         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
13783         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
13784         DECL_NO_STATIC_CHAIN.
13785         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
13786         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
13787         * search.c (covariant_return_p): Remove THUNK_DECL handling.
13788         * ir.texi: Update.
13789
13790 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
13791
13792         * tree.c (walk_tree): Set lineno.
13793
13794 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
13795
13796         * exception.cc: Update license notice.
13797         * new.cc: Likewise.
13798         * new1.cc: Likewise.
13799         * new2.cc: Likewise.
13800         * tinfo.cc: Likewise.
13801         * tinfo2.cc: Likewise.
13802         * vec.cc: Likewise.
13803         * inc/cxxabi.h: Likewise.
13804         * inc/exception: Likewise.
13805         * inc/new: Likewise.
13806         * inc/new.h: Likewise.
13807         * inc/typeinfo: Likewise.
13808
13809 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
13810
13811         * tree.c (build_target_expr_with_type): If we already have a
13812         TARGET_EXPR, just return it.
13813
13814         * optimize.c (initialize_inlined_parameters): Don't generate an
13815         EXPR_STMT if we can just use DECL_INITIAL.
13816         * decl.c (emit_local_var): Only make the initialization a
13817         full-expression if stmts_are_full_exprs_p.
13818
13819 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
13820
13821         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
13822         macro.
13823         * call.c (standard_conversion): Use it.
13824         (direct_reference_binding): Likewise.
13825         (build_over_call): Likewise.
13826         (is_properly_derived_from): Likewise.
13827         (compare_ics): Likewise.
13828         * class.c (resolves_to_fixed_type_p): Likewise.
13829         * optimize.c (declare_return_variable): Likewise.
13830         * pt.c (is_specialization_of): Likewise.
13831         (unify): Likewise.
13832         * typeck.c (comp_target_parms): Likeiwse.
13833         (build_static_cast): Likewise.
13834         (build_reinterpret_cast): Likewise.
13835         (build_const_cast): Likewise.
13836         (comp_ptr_ttypes_real): Likewise.
13837         (comp_ptr_ttypes_const): Likewise.
13838         * typeck2.c (process_init_constructor): Likewise.
13839
13840 2000-04-30  Scott Snyder <snyder@fnal.gov>
13841
13842         * decl.c (finish_destructor_body): Use the base destructor when
13843         destroying virtual bases.
13844
13845 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
13846
13847         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
13848         STMT_EXPRs.
13849         * optimize.c (struct inline_data): Add target_exprs field.
13850         (declare_return_variable): When a function returns an aggregate,
13851         use the variable declared in the TARGET_EXPR as the remapped
13852         DECL_RESULT.
13853         (expand_call_inline): Update the pending target_exprs stack.
13854         (optimize_function): Initialize the stack.
13855
13856         * decl2.c (finish_file): Fix typo in comment.
13857
13858         * method.c (emit_thunk): Don't try to return a `void' value.
13859
13860         * optimize.c (initialize_inlined_parameters): If the parameter is
13861         addressable, we need to make a new VAR_DECL, even if the
13862         initializer is constant.
13863
13864 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
13865
13866         * decl.c (grok_op_properties): Add an extra check of argtypes.
13867
13868 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
13869
13870         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
13871         variables.
13872         (initialize_inlined_parameters): Try to avoid creating new
13873         VAR_DECLs.
13874
13875 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
13876
13877         * lex.c (my_get_run_time): Remove.
13878         (init_filename_times): Use get_run_time instead of my_get_run_time.
13879         (check_newline): Likewise.
13880         (dump_time_statistics): Likewise.
13881         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
13882         of computing elapsed time explicitly.
13883
13884 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
13885
13886         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
13887         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
13888         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
13889         before calling decl_constant_value.
13890         * class.c (check_bitfield_decl): Likewise.
13891         * cvt.c (ocp_convert): Likewise.
13892         (convert): Likewise.
13893         * decl.c (compute_array_index_type): Likewise.
13894         (build_enumerator): Likewise.
13895         * decl2.c (check_cp_case_value): Likewise.
13896         * pt.c (convert_nontype_argument): Likewise.
13897         (tsubst): Likewise.
13898         * typeck.c (decay_conversion): Likewise.
13899         (build_compound_expr): Likewise.
13900         (build_reinterpret_cast): Likewise.
13901         (build_c_cast): Likewise.
13902         (convert_for_assignment): Likewise.
13903
13904 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
13905
13906         * decl.c (finish_function): Don't play games with DECL_INLINE.
13907
13908 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
13909
13910         * ir.texi: Correct typo.
13911
13912 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13913
13914         * decl.c (grokdeclarator): Reject VLAs as members.
13915
13916 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
13917
13918         * call.c (standard_conversion): Accept conversion between
13919         COMPLEX_TYPEs.
13920
13921         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
13922
13923 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
13924
13925         * decl2.c (finish_file): Remove double setup for accounting
13926         compile time.
13927
13928 2000-04-24  Robert Lipe <robertlipe@usa.net>
13929
13930         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
13931
13932 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
13933
13934         * new.cc (set_new_handler): Needs to be in std::.
13935
13936 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
13937
13938         * cp-tree.h (lang_decl): Remove pretty_function_p.
13939         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
13940         language-specific node.
13941         * decl.c (cp_make_fname_decl): Use build_decl, not
13942         build_lang_decl, to build the variables.
13943         (grokvardecl): Don't call build_lang_decl for local variables in
13944         templates.
13945         (grokdeclarator): Don't call build_lang_decl for local type
13946         declarations in templates.
13947         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
13948         zero'd memory, rather than calling memset.
13949         * pt.c: Include hashtab.h.
13950         (local_specializations): New variable.
13951         (retrieve_local_specialization): Use it.
13952         (register_local_specialization): Likewise.
13953         (tsubst_decl): Don't assume local variables have
13954         DECL_LANG_SPECIFIC.
13955         (instantiate_decl): Set up local_specializations.
13956         * Makefile.in (HTAB_H): New variable.
13957
13958 2000-04-23  Richard Henderson  <rth@cygnus.com>
13959
13960         * typeck.c (c_expand_asm_operands): Restore the original
13961         contents of the output list.
13962
13963 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
13964
13965         * ir.texi:  Document complex number representation.
13966
13967 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
13968
13969         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
13970         (target_incomplete_p): New function.
13971         (tinfo_base_init): Create comdat NTBS name variable.
13972         (ptr_initializer): Add non_public parameter. Calculate it.
13973         (ptmd_initializer): Likewise.
13974         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
13975         (create_real_tinfo_var): Add non_public parameter. Use it.
13976         Push proxy into global namespace.
13977         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
13978         New enumeration.
13979         * inc/typeinfo (type_info::before, type_info::operator==):
13980         Compare __name addresses.
13981
13982         * tinfo2.cc: Remove new-abi builtins comment.
13983
13984 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
13985
13986         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
13987
13988         * call.c (joust): Exit early if we get the same function, too.
13989
13990         * decl2.c (key_method): Return NULL_TREE for template classes.
13991         (import_export_class): Don't need to check for template classes.
13992
13993 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
13994
13995         * lex.c: Remove references to cccp.c.
13996
13997 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
13998
13999         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
14000         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
14001         (DECL_DESTRUCTOR_P): Use destructor_attr.
14002         (DECL_CONST_MEMFUNC_P): Reimplement.
14003         (DECL_VOLATILE_MEMFUNC_P): Remove.
14004         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
14005         (overrides): Use DECL_DESTRUCTOR_P.
14006         (check_for_override): Likewise.
14007         * decl.c (start_function): Likewise.
14008         * decl2.c (grokfclassfn): Likewise.
14009         (check_classfn): Likewise.
14010         (grok_function_init): Likewise.
14011
14012 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
14013
14014         * decl2.c (grokfield): Issue error on illegal data member
14015         declaration.
14016
14017 Mon Apr 17 17:11:16 2000  Mark P Mitchell  <mark@codesourcery.com>
14018
14019         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
14020
14021 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
14022
14023         * class.c (build_vtable_entry): Don't build thunks for type-info
14024         functions.
14025
14026 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
14027
14028         * decl.c (decls_match): Allow a redeclaration of a builtin to
14029         specify args while the builtin did not.
14030
14031 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
14032
14033         * cp-tree.def (THUNK_DECL): Add to documentation.
14034         * cp-tree.h (flag_huge_objects): Declare.
14035         * class.c (modify_vtable_entry): Tidy.
14036         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
14037         Calculate delta appropriately for the new ABI.
14038         (dfs_modify_vtables): Use it.
14039         (modify_all_vtables): Fix thinko in code to add overriding copies
14040         of functions to primary vtables.
14041         (build_clone): Fix typo in comment.
14042         (clone_function_decl): Correct order of destructors in vtable.
14043         (build_vbase_offset_vtbl_entries): Adjust comment.
14044         (dfs_vcall_offset_queue_p): Remove.
14045         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
14046         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
14047         (build_vtable_entry): Correct check for pure virtual functions.
14048         Don't declare flag_huge_objects.
14049         * decl.c (flag_huge_objects): Remove declaration.
14050         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
14051         Use int_size_in_bytes.
14052         (emit_thunk): Handle vcall offset thunks.
14053
14054 Sat Apr 15 16:00:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14055
14056         * decl2.c (parse_time, varconst_time): Delete declarations.
14057         (finish_file): Delete LINENO declaration.
14058         START_TIME and THIS_TIME now long.
14059
14060 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
14061
14062         * class.c (build_base_field): Reformat comment.
14063
14064         * inc/cxxabi.h (stddef.h): Comment inclusion.
14065         (__base_class_info::__offset): Comment shift.
14066
14067 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
14068
14069         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
14070         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
14071         (cp_push_exception_identifier): New macro.
14072         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
14073         (DECL_BASE_DESTRUCTOR_P): Likewise.
14074         (DECL_DELETING_DESTRUCTOR_P): Likewise.
14075         (get_vtbl_decl_for_binfo): Fix formatting.
14076         (in_charge_arg_for_name): New macro.
14077         (maybe_build_cleanup_and_delete): Remove declaration.
14078         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
14079         (in_charge_arg_for_name): New function.
14080         (build_new_method_call): Use it.  Handle cloned destructors.
14081         (build_clone): Don't make the base constructor virtual.
14082         Automatically defer generated functions.
14083         (clone_function_decl): Handle destructors, too.
14084         (clone_constructors_and_destructors): Likewise.
14085         (create_vtable_ptr): Don't create a vtable entry for a cloned
14086         function.
14087         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
14088         (initialize_predefined_identifiers): Update appropriately.
14089         (finish_destructor_body): Simplify.
14090         (maybe_build_cleanup_and_delete): Remove.
14091         * except.c (expand_throw): Handle new-ABI destructors.
14092         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
14093         (build_dtor_call): New function.
14094         (build_delete): Use it.  Simplify.
14095         * optimize.c (maybe_clone_body): Handle destructors.
14096         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
14097
14098         * exception.cc (cleanup_fn): New typedef.
14099         (CALL_CLEANUP): New macro.
14100         (cp_eh_info): Use them.
14101         (__cp_push_exception): Likewise.
14102         (__cp_pop_exception): Likewise.
14103
14104 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
14105
14106         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
14107         (complete_dtor_identifier): New macro.
14108         (CLASSTYPE_FIRST_CONVERSION): Remove.
14109         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
14110         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
14111         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
14112         (CLASSTYPE_CONSTRUCTORS): Likewise.
14113         (CLASSTYPE_DESTRUCTORS): Likewise.
14114         (lang_decl): Add cloned_function.
14115         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
14116         (DECL_BASE_CONSTRUCTOR_P): Likewise.
14117         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
14118         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
14119         (DECL_CLONED_FUNCTION_P): Likewise.
14120         (DECL_CLONED_FUNCTION): Likewise.
14121         (clone_function_decl): Declare.
14122         (maybe_clone_body): Likewise.
14123         * call.c (build_user_type_conversion_1): Call complete object
14124         constructors in the new ABI.
14125         (build_new_method_call): Don't add in-charge parameters under the
14126         new ABI.
14127         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
14128         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
14129         CLASSTYPE_DESTRUCTOR_SLOT.
14130         (build_clone): New function.
14131         (clone_function_decl): Likewise.
14132         (clone_constructors_and_destructors): Likewise.
14133         (check_bases_and_members): Use it.
14134         * decl.c (iniitialize_predefined_identifiers): Initialize
14135         complete_dtor_identifier.
14136         (finish_function): Don't add extra code to a clone.
14137         (lang_mark_tree): Mark cloned_function.
14138         * decl2.c (mark_used): Don't bother trying to instantiate things
14139         we synthesized.
14140         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
14141         * method.c (set_mangled_name_for_decl): Don't treat clones as
14142         constructors.
14143         (synthesize_method): Sythesize cloned functions, not the clones.
14144         * optimize.c (inline_data): Update comment on ret_label.
14145         (remap_block): Don't assume DECL_INITIAL exists.
14146         (copy_body_r): Allow ret_label to be NULL.
14147         (maybe_clone_body): Define.
14148         * pt.c (tsubst_decl): Handle clones.
14149         (instantiate_clone): New function.
14150         (instantiate_template): Use it.
14151         (set_mangled_name_for_template_decl): Don't treat clones as
14152         constructors.
14153         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
14154         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
14155         * semantics.c (expand_body): Clone function bodies as necessary.
14156
14157         * optimize.c (remap_decl): Avoid sharing structure for arrays
14158         whose size is only known at run-time.
14159         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
14160
14161         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
14162         to has_in_charge_parm_p.
14163         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
14164         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
14165         (DECL_COPY_CONSTRUCTOR_P): New macro.
14166         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
14167         (build_user_type_conversion_1): Likewise.
14168         (convert_like_real): Likewise.
14169         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
14170         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
14171         (copy_args_p): Likewise.
14172         (grok_ctor_properties): Likewise.
14173         (start_function): Likewise.
14174         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
14175         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
14176         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
14177         * method.c (do_build_copy_constructor): Use
14178         DECL_HAS_IN_CHARGE_PARM_P.
14179         (synthesize_method): Likewise.
14180         * pt.c (instantiate_template): Remove goto.
14181         * tree.c (build_cplus_method_type): Remove mention of obstacks in
14182         comment.
14183
14184         * cp-tre.h (finish_function): Change prototype.
14185         * decl.c (end_cleanup_fn): Adjust caller.
14186         (finish_function): Take only one parameter.
14187         * decl2.c (finish_objects): Adjust caller.
14188         (finish_static_storage_duration_function): Likewise.
14189         * method.c (emit_thunk): Likewise.
14190         * parse.y: Likewise.
14191         * parse.c: Regenerated.
14192         * pt.c (instantiate_decl): Likewise.
14193         * rtti.c (synthesize_tinfo_fn): Likewise.
14194         * semantics.c (expand_body): Likewise.
14195
14196         * cp-tree.h (copy_decl): New function.
14197         * class.c (finish_struct_1): Use it.
14198         * lex.c (copy_decl): Define it.
14199         * pt.c (tsubst_decl): Likewise.
14200         * tree.c (copy_template_template_parm): Likewise.
14201
14202         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
14203         has_nonpublic_assign_ref.
14204         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
14205         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
14206         * class.c (finish_struct_methods): Don't set
14207         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
14208         (interface_only): Don't declare.
14209         (interface_unknown): Likewise.
14210
14211 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
14212
14213         * tree.h (HAVE_TEMPLATES): Remove definition.
14214         * lang-options.h (-fthis-is-variable): Remove documentation.
14215
14216 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
14217
14218         * class.c (instantiate_type): Handle object-relative template-id.
14219
14220         * semantics.c (finish_expr_stmt): Call convert_to_void here.
14221         * decl.c (cplus_expand_expr_stmt): Not here.
14222
14223         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
14224         Initialize exprtype earlier.
14225
14226         * parse.y (fn.def1): Check for defining types in return types.
14227
14228         * decl.c (check_tag_decl): Notice extra fundamental types.
14229         Diagnose empty decls in classes, too.
14230
14231         * decl.c (grokdeclarator): Don't override an anonymous name if no
14232         declarator was given.
14233
14234         * cvt.c (convert_to_void): Call resolve_offset_ref.
14235
14236         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
14237
14238         * decl2.c (decl_namespace): Handle getting a type.
14239
14240         * typeck.c (build_c_cast): Re-enable warning for cast between
14241         pointer and integer of different size.
14242
14243 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
14244
14245         * inc/cxxabi.h (__pointer_type_info): Add restrict and
14246         incomplete flags.
14247         (__pointer_type_info::__pointer_catch): New virtual function.
14248         (__pointer_to_member_type_info): Derive from
14249         __pointer_type_info. Adjust.
14250         (__pointer_to_member_type_info::__do_catch): Remove.
14251         (__pointer_to_member_type_info::__is_pointer_p): Declare.
14252         (__pointer_to_member_type_info::__pointer_catch): Declare.
14253         * rtti.c (qualifier_flags): Add restrict flag.
14254         (ptmd_initializer): Reorder members.
14255         (create_tinfo_types): Expand comments. Reorder
14256         ptmd_desc_type_node members.
14257         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
14258         Implement.
14259         (__pointer_type_info::__do_catch): Move specific code into
14260         __pointer_catch. Call it.
14261         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
14262         specific catch checking. Fix void conversion check.
14263         (__pointer_to_member_type_info::__do_catch): Remove.
14264         (__pointer_to_member_type_info::__pointer_catch): Implement.
14265
14266 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
14267
14268         * lex.c (init_parse): Remove traces of classof and headof.
14269         * decl2.c (flag_operator_names): Default to 1.
14270         (lang_decode_option): Do not set it for -ansi.
14271
14272 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
14273
14274         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
14275         (DECL_MAIN_VARIANT): Remove.
14276         * decl.c (duplicate_decls): Don't set it.
14277         (start_function): Likewise.
14278         (lang_mark_tree): Don't mark it.
14279         * decl2.c (defer_fn): Don't use it.
14280         * lex.c (retrofit_lang_decl): Don't set it.
14281         * pt.c (tsubst_decl): Likewise.
14282         * ptree.c (print_lang_decl): Don't print it.
14283         * typeck.c (mark_addressable): Don't use it.
14284
14285 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
14286
14287         * vec.cc: Include <new> and <exception>.
14288         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
14289         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
14290         terminate.
14291         (__cxa_vec_delete): Catch dtor exceptions.
14292
14293 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
14294
14295         Prepend __ to implementation defined names.
14296         * inc/typeinfo (type_info): Rename _name to __name.
14297         (type_info::type_info): Rename parameter.
14298         (type_info::operator==, type_info::operator!=,
14299         type_info::before): Likewise.
14300         (type_info::is_pointer_p, type_info::is_function_p,
14301         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
14302         parameters.
14303         * inc/cxxabi.h
14304         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
14305         (__pointer_type_info::__pointer_type_info): Likewise.
14306         (__pointer_type_info::is_pointer_p,
14307         __pointer_type_info::do_catch): Prepend __. Rename parameters.
14308         (__array_type_info::__array_type_info): Rename parameters.
14309         (__function_type_info::__function_type_info): Likewise.
14310         (__function_type_info::is_function_p): Prepend __.
14311         (__enum_type_info::__enum_type_info): Rename parameters.
14312         (__pointer_to_member_type_info::__pointer_to_member_type_info):
14313         Likewise.
14314         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
14315         parameters.
14316         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
14317         (__class_type_info::__class_type_info): Rename parameters.
14318         (__class_type_info::sub_kind): Prepend __. Adjust member names.
14319         (__class_type_info::upcast_result,
14320         __class_type_info::dyncast_result): Prepend __. Move definition
14321         into tinfo.cc.
14322         (__class_type_info::do_upcast, __class_type_info::do_catch,
14323         __class_type_info::find_public_src,
14324         __class_type_info::do_dyncast,
14325         __class_type_info::do_find_public_src): Prepend __. Rename
14326         parameters.
14327         (__si_class_type_info::__si_class_type_info): Rename parameters.
14328         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
14329         __si_class_type_info::do_find_public_src): Prepent __. Rename
14330         parameters.
14331         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
14332         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
14333         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
14334         parameters.
14335         (__dynamic_cast): Rename parameters.
14336         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
14337         type_info::do_catch, type_info::do_upcast): Prepend __.
14338         (contained_p, public_p, virtual_p, contained_public_p,
14339         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
14340         (__class_type_info::do_catch,
14341         __class_type_info::do_upcast): Prepend __. Adjust.
14342         (__class_type_info::__upcast_result,
14343         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
14344         Adjust.
14345         (__class_type_info::find_public_src): Prepend __. Adjust.
14346         (__class_type_info::do_find_public_src,
14347         __si_class_type_info::do_find_public_src,
14348         __vmi_class_type_info::do_find_public_src): Likewise.
14349         (__class_type_info::do_dyncast,
14350         __si_class_type_info::do_dyncast,
14351         __vmi_class_type_info::do_dyncast): Likewise.
14352         (__class_type_info::do_upcast,
14353         __si_class_type_info::do_upcast,
14354         __vmi_class_type_info::do_upcast): Likewise.
14355         (__dynamic_cast): Adjust.
14356         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
14357         (__function_type_info::is_function_p): Likewise.
14358         (__pointer_type_info::do_catch): Likewise. Adjust.
14359         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
14360         (__throw_type_match_rtti_2): Adjust.
14361         (__is_pointer): Adjust.
14362
14363 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
14364
14365         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
14366         (complete_ctor_identifier): New macro.
14367         (special_function_kind): Add sfk_copy_constructor and
14368         sfk_assignment_operator.
14369         (LOOKUP_HAS_IN_CHARGE): Remove.
14370         (cons_up_default_function): Rename to ...
14371         (implicitly_declare_fn): ... this.
14372         * call.c (build_new_method_call): Add in-charge parameters for
14373         constructors here.
14374         * class.c (add_implicitly_declared_members): Change parameter name
14375         from cant_have_assignment to cant_have_const_assignment.
14376         Replace calls to cons_up_default_function to implicitly_declare_fn.
14377         * cvt.c (ocp_convert): Use complete_ctor_identifier.
14378         * decl.c (initialize_predefined_identifiers): Initialize it.
14379         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
14380         complex expression.
14381         * init.c (expand_default_init): Don't calculate the in-charge
14382         parameter here.
14383         (build_new_1): Likewise.
14384         * lex.c (cons_up_default_function): Move to method.c.
14385         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
14386         (implicitly_declare_fn): New function.
14387         * typeck.c (build_static_cast): Use complete_ctor_identifier.
14388         (build_modify_expr): Likewise.
14389         * typeck2.c (build_functional_cast): Likewise.
14390
14391         Under the new ABI, constructors don't return `this'.
14392         * cp-tree.h (warn_reorder): Declare.
14393         (special_function_kind): New enum.
14394         (global_base_init_list): Remove declaration.
14395         (emit_base_init): Don't return a value.
14396         (check_base_init): Don't declare.
14397         (is_aggr_typedef): Likewise.
14398         * decl.c (check_special_function_return_type): New function.
14399         (return_types): Remove.
14400         (grokdeclarator): Use check_special_function_return_type.
14401         (start_function): Don't initialize ctor_label under the new ABI.
14402         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
14403         * init.c (begin_init_stmts): Move to top of file.
14404         (finish_init_stmts): Likewise.
14405         (warn_reorder): Don't declare.
14406         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
14407         value.
14408         (check_base_init): Remove.
14409         (is_aggr_typedef): Likewise.
14410         (build_new_1): Don't use the return value of a constructor.
14411         * semantics.c (setup_vtbl_ptr): Don't use the return value
14412         of emit_base_init.
14413         * typeck.c (check_return_expr): Don't magically convert return
14414         statements into `return this' in constructors under the new ABI.
14415
14416         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
14417         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
14418         (base_ctor_identifier): New macro.
14419         (base_dtor_identifier): Likewise.
14420         (deleting_dtor_identifier): Likewise.
14421         * decl.c: Don't include obstack.h.
14422         (obstack_chunk_alloc): Don't define.
14423         (obstack_chunk_free): Likewise.
14424         (struct predefined_identifier): New type.
14425         (initialize_predefined_identifiers): New function.
14426         (init_decl_processing): Use it.
14427         (debug_temp_inits): Remove.
14428         (start_method): Don't call preserve_data.
14429         (hack_incomplete_structures): Update comment.
14430         * init.c (init_init_processing): Don't initialize
14431         nelts_identifier.
14432         (build_offset_rf): Remove dead code.
14433         (build_delete): Use CLASSTYPE_N_BASECLASSES.
14434         * search.c (init_search_processing): Don't initialize
14435         vptr_identifier.
14436
14437 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14438
14439         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
14440         some sign_compare warnings.
14441
14442 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
14443
14444         Rename abi::__vmi_class_type_info members.
14445         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
14446         base_list, detail_masks members to vmi_flags, vmi_base_count,
14447         vmi_bases and vmi_flags_masks respectively.
14448         (__vmi_class_type_info::vmi_flags_masks): Rename
14449         details_unknown_mask to flags_unknown_mask.
14450         * tinfo.cc (__class_type_info::do_upcast): Adjust.
14451         (__vmi_class_type_info::do_find_public_src): Adjust.
14452         (__vmi_class_type_info::do_dyncast): Adjust.
14453         (__vmi_class_type_info::do_upcast): Adjust.
14454
14455 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
14456
14457         * tinfo.cc (convert_to_base): New function.
14458         (get_vbase_offset): Remove. Move into convert_to_base.
14459         (__vmi_class_type_info::do_find_public_src): Adjust.
14460         (__vmi_class_type_info::do_dyncast): Adjust.
14461         (__vmi_class_type_info::do_upcast): Adjust.
14462
14463 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
14464
14465         * tinfo.cc (operator=): Use __builtin_strcmp.
14466         * tinfo2.cc (before): Likewise.
14467
14468 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
14469
14470         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
14471         (DECL_SAVED_INLINE): Rename to ...
14472         (DECL_DEFERRED_FN): ... this.
14473         (in_function_p): Remove declaration.
14474         (mark_inline_for_output): Rename to ...
14475         (defer_fn): ... this.
14476         * decl.c (finish_function): Adjust call to mark_inline_for_output.
14477         (in_function_p): Remove definition.
14478         * decl2.c (saved_inlines): Rename to ...
14479         (deferred_fns): ... this.
14480         (saved_inlines_used): Rename to ...
14481         (deferred_fns_used): ... this.
14482         (mark_inline_for_output): Rename to ...
14483         (defer_fn): ... this.
14484         (finish_file): Adjust accordingly.
14485         (init_decl2): Likewise.
14486         * lex.c (cons_up_default_function): Likewise.
14487         * pt.c (mark_decl_instantiated): Likewise.
14488         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
14489         circumstances.
14490         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
14491         * semantics.c (expand_body): Defer more functions.
14492
14493 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
14494
14495         * vec.cc: New file.
14496         * Make-lang.in (CXX_LIB2FUNCS): Add it.
14497         (vec.o): Build it.
14498         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
14499         __cxa_vec_delete): Declare.
14500
14501 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
14502
14503         * rtti.c (dfs_class_hint_mark): New static function.
14504         (dfs_class_hint_unmark): New static function.
14505         (class_hint_flags): Use them.
14506
14507 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
14508
14509         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
14510
14511 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
14512
14513         * cp-tree.h (instantiate_decl): Change prototype.
14514         * decl2.c (mark_used): Adjust call.
14515         * optimize.c (inlinable_function_p): Adjust handling of templates.
14516         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
14517         (do_type_instantiation): Likewise.
14518         (instantiate_decl): Defer more templates.
14519         (instantiate_pending_templates): Adjust logic to handle inline
14520         friend functions.
14521
14522         * Makefile.in (GGC_H): New variable.  Use it throughout in place
14523         of ggc.h.
14524
14525         * call.c: Don't include obstack.h.  Include ggc.h.
14526         (obstack_chunk_alloc): Don't define.
14527         (obstack_chunk_free): Likewise.
14528         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
14529         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
14530         (pop_switch): Free it.
14531
14532         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
14533
14534         * dump.c (dequeue_and_dump): Don't try to print the bit_position
14535         if we don't have a DECL_FIELD_OFFSET.
14536
14537 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
14538
14539         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
14540         special_function_p.
14541
14542 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14543
14544         * cfns.gperf (hash, libc_name_p): Prototype.
14545
14546         * rtti.c (build_dynamic_cast_1): Constification.
14547
14548         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
14549
14550         * semantics.c (deferred_type_access_control): Prototype.
14551
14552 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
14553
14554         Correct many new ABI issues regarding vbase and vcall offset
14555         layout.
14556         * cp-tree.h (BINFO_VTABLE): Document.
14557         (struct lang_type): Tweak formatting.
14558         (BINFO_PRIMARY_BINFO): Add to documentation.
14559         (CLASSTYPE_VSIZE): Fix typo in comment.
14560         (CLASSTYPE_VBASECLASSES): Update documentation.
14561         (BINFO_VBASE_MARKED): Remove.
14562         (SET_BINFO_VBASE_MARKED): Likewise.
14563         (CLEAR_BINFO_VBASE_MARKED): Likewise.
14564         (BINFO_FIELDS_MARKED): Remove.
14565         (SET_BINFO_FIELDS_MARKED): Likewise.
14566         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
14567         (enum access_kind): New enumeration.
14568         (num_extra_vtbl_entries): Remove declaration.
14569         (size_extra_vtbl_entries): Likewise.
14570         (get_vtbl_decl_for_binfo): New function.
14571         (dfs_vbase_unmark): Remove declaration.
14572         (mark_primary_bases): Likewise.
14573         * class.c (SAME_FN): Remove.
14574         (struct vcall_offset_data_s): Move definition.
14575         (build_vbase_pointer): Use `build', not `build_binary_op', to
14576         access the vbase pointer under the new ABI.
14577         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
14578         (build_primary_vtable): Likewise.
14579         (dfs_mark_primary_bases): Move here from search.c.
14580         (mark_primary_bases): Likewise.
14581         (determine_primary_bases): Under the new ABI, don't make a base
14582         class a primary base just because we don't yet have any virtual
14583         functions.
14584         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
14585         (num_vfun_entries): Remove.
14586         (dfs_count_virtuals): Likewise.
14587         (num_extra_vtbl_entries): Likewise.
14588         (size_extra_vtbl_entries): Likewise.
14589         (layout_virtual_bases): Iterate in inheritance graph order under
14590         the new ABI.
14591         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
14592         indicate that a vfield is present.
14593         (init_class_processing): Initialize access_public_node, etc., from
14594         ak_public, etc.
14595         (get_vtbl_decl_for_binfo): New function.
14596         (dump_class_hierarchy_r): Likewise.
14597         (dump_class_hierarchy): Use it.
14598         (finish_vtbls): Build the vtbls in inheritance graph order.
14599         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
14600         (initialize_vtable): Use get_vtbl_decl_for_binfo.
14601         (accumulate_vtbl_inits): Add comments explaining why a pre-order
14602         walk is required.
14603         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
14604         where the vptr points, even for primary vtables.
14605         (build_vtbl_initializer): Adjust handling of vbase and vcall
14606         offsets.
14607         (build_vcall_and_vbase_vtable_entries): New function.
14608         (dfs_build_vbase_offset_vtbl_entries): Remove.
14609         (build_vbase_offset_vtbl_entries): Reimplement.
14610         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
14611         were already handled in a primary base class vtable.
14612         (build_vcall_offset_vtbl_entries): Adjust.
14613         (build_rtti_vtbl_entries): Adjust.
14614         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
14615         * init.c (expand_virtual_init): Simplify.
14616         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
14617         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
14618         * search.c (BINFO_ACCESS): New macro.
14619         (SET_BINFO_ACCESS): Likewise.
14620         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
14621         (access_in_type): Likewise.
14622         (dfs_accessible_p): Likewise.
14623         (protected_accessible_p): Likewise.
14624         (lookup_fnfields_1): Adjust documentation.
14625         (dfs_mark_primary_bases): Move to class.c
14626         (mark_primary_bases): Likewise.
14627         (dfs_vbase_unmark): Remove.
14628         (virtual_context): Use BINFO_FOR_VBASE.
14629         (dfs_get_vbase_types): Simplify.
14630         (dfs_build_inheritance_graph_order): New function.
14631         (get_vbase_types): Use it.
14632         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
14633
14634         * tinfo.cc (get_vbase_offset): New function.
14635         (__vmi_class_type_info::do_find_public_src): Use it.
14636         (__vmi_class_type_info::do_dyncast): Likewise.
14637         (__vmi_class_type_info::do_upcast): Likewise.
14638
14639 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
14640
14641         * lang-specs.h: Pass -fno-show-column to the preprocessor.
14642
14643 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
14644
14645         * rtti.c (class_hint_flags): Rename flags.
14646         (class_initializer): Remove flags.
14647         (synthesize_tinfo_var): Combine offset and flags. Add flags
14648         for __vmi_class_type_info.
14649         (create_tinfo_types): Remove flags from __class_type_info and
14650         __si_class_type_info. Merge flags and offset from
14651         base_class_type_info.
14652         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
14653         (__base_class_info::is_virtual_p): Adjust.
14654         (__base_class_info::is_public_p): Adjust.
14655         (__base_class_info::offset): New accessor.
14656         (__class_type_info::details): Remove member.
14657         (__class_type_info::__class_type_info): Lose details.
14658         (__class_type_info::detail_masks): Remove.
14659         (__si_class_type_info::__si_class_type_info): Lose details.
14660         (__vmi_class_type_info::details): New member.
14661         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
14662         (__vmi_class_type_info::detail_masks): New member.
14663         * tinfo.cc (__class_type_info::do_upcast): Initialize result
14664         with unknown_details_mask.
14665         (__vmi_class_type_info::do_find_public_src): Adjust
14666         (__vmi_class_type_info::do_dyncast): Adjust.
14667         (__vmi_class_type_info::do_upcast): Set result details, if
14668         needed. Adjust.
14669         (__dynamic_cast): Temporarily #if out optimization.
14670
14671 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
14672
14673         * rtti.c (get_tinfo_decl): Mark used.
14674         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
14675         mark as dealt with, if we output it.
14676
14677 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
14678
14679         * class.c: Reorganize to put virtual function table initialization
14680         machinery at the end of the file.
14681
14682 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
14683
14684         * class.c (finish_struct): Use bitsize_zero_node.
14685         * pt.c (instantiate_class_template): Likewise.
14686
14687 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
14688
14689         Put RTTI entries at negative offsets in new ABI.
14690         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
14691         vbase offset at index -3, not -1.
14692         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
14693         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
14694         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
14695         (build_rtti_vtbl_entries): New function.
14696         (set_rtti_entry): Remove.
14697         (build_primary_vtable): Don't use it.
14698         (build_secondary_vtable): Likewise.
14699         (start_vtable): Remove.
14700         (first_vfun_index): New function.
14701         (set_vindex): Likewise.
14702         (add_virtual_function): Don't call start_vtable.  Do call
14703         set_vindex.
14704         (set_primary_base): Rename parameter.
14705         (determine_primary_base): Likewise.
14706         (num_vfun_entries): Don't use skip_rtti_stuff.
14707         (num_extra_vtbl_entries): Include RTTI information.
14708         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
14709         (skip_rtti_stuff): Remove.
14710         (dfs_modify_vtables): Don't use it.
14711         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
14712         (layout_nonempty_base_or_field): Update size handling.
14713         (create_vtable_ptr): Tweak.
14714         (layout_class_type): Adjust parameter names.
14715         (finish_struct_1): Simplify.
14716         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
14717         (skip_rtti_stuff): Remove.
14718         (first_vfun_index): New function.
14719         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
14720         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
14721         (marked_vtable_pathp): Declare.
14722         (unmarked_vtable_pathp): Likewise.
14723         * error.c (dump_expr): Use first_vfun_index to calculate vtable
14724         offsets.
14725         * rtti.c (build_headof): Look for RTTI at negative offsets.
14726         (get_tinfo_decl_dynamic): Likewise.
14727         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
14728         here.
14729         (create_pseudo_type_info): Do it here instead.  Adjust so that
14730         vptr points at first virtual function.
14731         * search.c (marked_vtable_pathp): Make it global.
14732         (unmarked_vtable_pathp): Likewise.
14733         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
14734         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
14735         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
14736         (get_pure_virtuals): Likewise.
14737         (expand_upcast_fixups): Likewise.
14738         * tree.c (debug_binfo): Likewise.
14739         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
14740         negative offset.
14741
14742 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14743
14744         * class.c (check_field_decl): Fix typo.
14745         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
14746         (check_methods): Likewise.
14747         (check_field_decls): Likewise.
14748         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
14749         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
14750         Use DECL_RESULT_FLD, not DECL_RESULT.
14751         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
14752         * lex.c (identifier_type): Likewise.
14753         * pt.c (determine_specialization, lookup_template_class): Likewise.
14754         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
14755         (resolve_overloaded_unification, more_specialized): Likewise.
14756         * semantics.c (finish_member_declaration): Likewise.
14757         * typeck.c (build_x_function_call): Likewise.
14758
14759 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
14760
14761         * class.c (layout_empty_base): Handle empty bases with non-byte
14762         alignment.
14763         (build_base_field): Likewise.
14764         (layout_virtual_bases): Likewise.
14765
14766         * class.c (finish_struct_1): Fix typo in this change:
14767
14768         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14769
14770 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
14771
14772         * decl.c (grokdeclarator): Count partial specializations when
14773         keeping track of how many template classes have been seen.
14774
14775         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
14776
14777 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14778
14779         * class.c (build_vbase_pointer_fields): layout_field now place_field.
14780         (get_vfield_offset): Use byte_position.
14781         (set_rtti_entry): Set OFFSET to ssizetype zero.
14782         (get_binfo_offset_as_int): Deleted.
14783         (dfs_record_base_offsets): Use tree_low_cst.
14784         (dfs_search_base_offsets): Likewise.
14785         (layout_nonempty_base_or_field): Reflect changes in RLI format
14786         and call byte_position.
14787         (layout_empty_base): Convert offset to ssizetype.
14788         (build_base_field): use rli_size_unit_so_far.
14789         (dfs_propagate_binfo_offsets): Do computation in proper type.
14790         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
14791         (layout_class_type): Reflect changes in RLI names and fields.
14792         (finish_struct_1): Set DECL_FIELD_OFFSET.
14793         * dump.c (dequeue_and_dump): Call bit_position.
14794         * expr.c (cplus_expand_constant): Use byte_position.
14795         * rtti.c (expand_class_desc): Use bitsize_one_node.
14796         * typeck.c (build_component_addr): Use byte_position and don't
14797         special case for zero offset.
14798
14799 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
14800
14801         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
14802
14803         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
14804         tinfo object.
14805         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
14806         vtable.
14807
14808 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
14809
14810         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
14811         DECL_P macros.
14812         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
14813         make_typename_type, check_initializer, cp_finish_decl,
14814         xref_tag): Likewise.
14815         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
14816         decl_namespace, arg_assoc_template_arg, arg_assoc,
14817         validate_nonmember_using_decl, do_class_using_decl): Likewise.
14818         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
14819         args_to_string): Likewise.
14820         * friend.c (is_friend): Likewise.
14821         * lex.c (note_got_semicolon, note_list_got_semicolon,
14822         is_global): Likewise.
14823         * method.c (build_overload_nested_name, build_overload_value,
14824         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
14825         * parse.y (typename_sub, typename_sub1): Likewise.
14826         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
14827         process_partial_specialization, convert_template_argument,
14828         template_args_equal, add_pending_template, lookup_template_class,
14829         for_each_template_parm_r, maybe_fold_nontype_arg,
14830         tsubst, instantiate_template, type_unification_real, unify,
14831         instantiate_pending_templates, set_mangled_name_for_template_decl):
14832         Likewise.
14833         * repo.c (repo_get_id, repo_template_used): Likewise.
14834         * search.c (lookup_field_1): Likewise.
14835         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
14836         * xref.c (classname): Likewise.
14837
14838 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
14839
14840         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
14841         (CANONICAL_BINFO): New macro.
14842         (BINFO_NEW_VTABLE_MARKED): Use it.
14843         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
14844         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
14845         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
14846         not TREE_TYPE.
14847         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
14848         (build_secondary_vtable): Likewise.
14849         (dfs_finish_vtbls): Likewise.
14850         (dfs_accumulate_vtbl_inits): Likewise.
14851         (accumulate_vtbl_inits): New function.
14852         (finish_vtbls): Make sure that virtual bases come after
14853         non-virtual bases in the vtable group.
14854         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
14855         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
14856         * search.c (struct vbase_info): Move definition.
14857         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
14858         (unmarked_new_vtable_p): Likewise.
14859         (dfs_mark_vtable_path): Remove.
14860         (dfs_mark_new_vtable): Remove.
14861         (dfs_unmark_new_vtable): Likewise.
14862         (dfs_clear_search_slot): Likewise.
14863         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
14864         (dfs_clear_vbase_slots): Likewise.
14865         (init_vbase_pointers): LIkewise.
14866
14867 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
14868
14869         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
14870         SIZETYPE to a non-SIZETYPE.
14871
14872 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
14873
14874         * class.c (layout_virtual_bases): Adjust names in conditionally
14875         compiled code.
14876
14877         * class.c (record_base_offsets): New function.
14878         (layout_conflict_p): Likewise.
14879         (layout_nonempty_base_or_field): Use it.
14880         (layout_empty_base): New function.
14881         (build_base_field): Use it.
14882         (build_base_fields): Update comment.
14883         (layout_virtual_bases): Fold in a little code form
14884         layout_basetypes.  Use layout_empty_base.
14885         (layout_basetypes): Remove.
14886         (end_of_class): New function.
14887         (layout_class_type): Use it.  Adjust.
14888
14889         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
14890         (fntype_p): Remove.
14891         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
14892         comment.
14893         (dfs_skip_nonprimary_vbases_markedp): Likewise.
14894         * typeck.c (fntype_p): Remove.
14895
14896         * cp-tree.h (TI_SPEC_INFO): Remove.
14897         (CLASSTYPE_TI_SPEC_INFO): Likewise.
14898         * pt.c (process_partial_specialization): Likewise.
14899
14900         * class.c (build_base_field): Fix thinko in computation of binfo
14901         offsets.
14902
14903         * tree.c (mark_local_for_remap_p): Mark variables declared in
14904         TARGET_EXPRs as well.
14905
14906 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
14907
14908         * typeck.c (require_complete_type, complete_type,
14909         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
14910         build_array_ref, convert_arguments, pointer_diff,
14911         build_x_unary_op, build_unary_op, build_c_cast,
14912         build_modify_expr): Use COMPLETE_TYPE_P etc.
14913         * call.c (is_complete, convert_like_real,
14914         build_new_method_call): Likewise.
14915         * class.c (build_vbase_pointer_fields, check_bases,
14916         build_base_field, finish_struct_1, pushclass): Likewise.
14917         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
14918         * decl.c (maybe_process_template_type_declaration, pushtag,
14919         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
14920         layout_var_decl, check_initializer, cp_finish_decl,
14921         grokdeclarator, require_complete_types_for_parms,
14922         grok_op_properties, xref_tag, xref_basetypes,
14923         check_function_type): Likewise.
14924         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
14925         * friend.c (do_friend): Likewise.
14926         * init.c (build_offset_ref): Likewise.
14927         * parse.y (structsp): Likewise.
14928         * pt.c (maybe_process_partial_specialization,
14929         tsubst_friend_function, instantiate_class_template, tsubst,
14930         do_type_instantiation, instantiate_pending_templates): Likewise.
14931         * repo.c (repo_get_id): Likewise.
14932         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
14933         synthesize_tinfo_var, emit_support_tinfos): Likewise.
14934         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
14935         * semantics.c (begin_class_definition): Likewise.
14936         * tree.c (build_cplus_method_type): Likewise.
14937         * typeck2.c (digest_init, build_functional_cast,
14938         add_exception_specifier): Likewise.
14939         * parse.h, parse.c: Regenerated.
14940
14941 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
14942
14943         * inc/cxxabi.h: New header file. Define new-abi entry points.
14944         (__pointer_type_info::target): Rename member to ...
14945         (__pointer_type_info::type): ... here.
14946         (__base_class_info::type): Rename member to ...
14947         (__base_class_info::base): ... here.
14948         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
14949         * cp-tree.h (CPTI_ABI): New global tree enumeration.
14950         (abi_node): New global tree node.
14951         * decl.c (abi_node): Document.
14952         (init_decl_processing): Initialize abi_node.
14953         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
14954         (get_vmi_pseudo_type_info): Likewise.
14955         (create_tinfo_types): Likewise.
14956         (emit_support_tinfos): Likewise.
14957         * tinfo.h (cxxabi.h): Include for new-abi.
14958         Move rtti class definitions to new header file.
14959         * tinfo.cc (abi): Use the namespace.
14960         (std): Move new abi rtti classes from here ...
14961         (__cxxabiv1): ... to here.
14962         * tinfo2.cc (cxxabi.h): Include for new-abi.
14963         Move rtti class definitions to new header file.
14964         (std): Move new abi rtti classes from here ...
14965         (__cxxabiv1): ... to here.
14966         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
14967         namespace.
14968
14969 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
14970             Jason Merrill  <jason@casey.cygnus.com>
14971
14972         * method.c (build_overload_int): Use host_integerp.
14973
14974 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
14975
14976         * init.c (build_offset_ref): Handle the case of a templated member
14977         function.
14978
14979 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
14980
14981         * except.c (expand_exception_blocks): Clear catch_clauses_last.
14982
14983 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
14984
14985         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
14986         * class.c (check_bitfield_decl): Turn illegal bitfields into
14987         non-bitfields.
14988         (dfs_propagate_binfo_offsets): Adjust for new size_binop
14989         semantics.
14990         (dfs_offset_for_unshared_vbases): Likewise.
14991         * cvt.c (cp_convert_to_pointer): Convert NULL to a
14992         pointer-to-member correctly under the new ABI.
14993         * expr.c (cplus_expand_constant): Don't use cp_convert when
14994         turning an offset into a pointer-to-member.
14995         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
14996         when dereferencing them under the new ABI.
14997         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
14998         of pointers-to-members under the new ABI.
14999
15000         * class.c (check_bitfield_decl): Remove restriction on really long
15001         bitfields.
15002         (layout_class_type): Implement new ABI handling of bitfields
15003         longer than their types.
15004
15005 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
15006
15007         * parse.y (extdefs): Call ggc_collect.
15008         * parse.c: Regenerated.
15009
15010 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
15011
15012         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
15013         (note_name_declared_in_class): Use OVL_CURRENT to get at a
15014         potential overload.
15015
15016 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15017
15018         * class.c (build_vbase_path): Use integer_zerop.
15019         (build_vtable_entry): Use tree_low_cst.
15020         (get_vfield_offset): Use bit_position.
15021         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
15022         Use tree_low_cst.
15023         (check_bitfield_decl): Set DECL_SIZE using convert.
15024         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
15025         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
15026         Use tree_low_cst.
15027         (finish_struct_1): Use bit_position.
15028         (dump_class_hierarchy): Use tree_low_cst.
15029         * cp-tree.h (min_precision): Add declaration.
15030         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
15031         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
15032         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
15033         * expr.c (cplus_expand_constant): Use bit_position.
15034         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
15035         * rtti.c (get_base_offset): Use bit_position.
15036         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
15037         host_integerp, and tree_low_cst.
15038         (pointer_int_sum): Use integer_zerop.
15039         (build_component_addr): Use bit_position.
15040
15041 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
15042
15043         * typeck.c (require_complete_type): Don't assume size_zero_node.
15044         (complete_type_or_else): Likewise.
15045
15046 2000-03-16  Steven Grady <grady@digitaldeck.com>
15047             Jason Merrill  <jason@casey.cygnus.com>
15048
15049         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
15050
15051 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
15052
15053         * decl2.c (grokfield): Bail out if type is error_mark_node.
15054
15055 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
15056
15057         * tinfo2.cc (__ptr_to_member_data): Rename to ...
15058         (__pointer_to_member_data): ... here. Adjust.
15059         * rtti.c (create_tinfo_types): Adjust.
15060
15061 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
15062
15063         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
15064         * decl.c (ref_desc_type_node): Undocument.
15065         * rtti.c (ptr_ref_initializer): Rename to ...
15066         (ptr_initializer): ... here. Adjust comments.
15067         (ptmd_initializer): Fix comment thinko.
15068         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
15069         (create_tinfo_types): Remove ref_desc_type_node init.
15070         * tinfo2.cc (__reference_type_info): Remove.
15071
15072 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
15073
15074         * decl.c (cp_finish_decl): Remove obsolete comment.
15075
15076         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
15077
15078 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
15079
15080         * cp-tree.h: Tweak documentation.
15081         * class.c (build_vbase_pointer_fields): Layout the fields, too.
15082         (avoid_overlap): Remove.
15083         (get_binfo_offset_as_int): New function.
15084         (dfs_serach_base_offsets): Likewise.
15085         (layout_nonempty_base_or_field): Likewise.
15086         (build_base_field): Layout fields here.  Avoid placing two objects
15087         of the same type at the same address, under the new ABI.
15088         (build_base_fields): Adjust accordingly.
15089         (create_vtable_ptr): Return the new field, but don't attach it to
15090         TYPE_FIELDS.
15091         (remove_base_field): Remove.
15092         (remove_base_fields): Remove.
15093         (layout_basetypes): Adjust accordingly.
15094         (layout_class_type): Call layout_field for each field, rather than
15095         just making a wholesale call to layout_type.
15096
15097 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
15098
15099         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
15100
15101 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
15102
15103         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
15104
15105         * except.c (dtor_nothrow): New fn.
15106         (do_pop_exception): Use it.  Take type parm.
15107         (push_eh_cleanup): Take type parm.
15108         (expand_start_catch_block): Pass it.
15109         (build_eh_type_type_ref): Accept null type.
15110
15111 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
15112
15113         * cp-tree.h (revert_static_member_fn): Change prototype.
15114         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
15115         (grok_op_properties): Likewise.
15116         (start_function): Likewise.
15117         (revert_static_member_fn): Simplify.
15118         * pt.c (check_explicit_specialization): Adjust call to
15119         revert_static_member_fn.
15120
15121 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
15122
15123         * cp-tree.h (scope_kind): New type.
15124         (tmpl_spec_kind): Likewise.
15125         (declare_pseudo_global_level): Remove.
15126         (pseudo_global_level_p): Rename to template_parm_scope_p.
15127         (pushlevel): Remove declaration.
15128         (begin_scope): New function.
15129         (finish_scope): Likewise.
15130         (current_tmpl_spec_kind): Likewise.
15131         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
15132         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
15133         Add template_spec_p.
15134         (toplevel_bindings_p): Adjust.
15135         (declare_pseudo_global_level): Remove.
15136         (pseudo_global_level_p): Rename to template_parm_scope_p.
15137         (current_tmpl_spec_kind): New function.
15138         (begin_scope): Likewise.
15139         (finish_scope): Likewise.
15140         (maybe_push_to_top_level): Adjust.
15141         (maybe_process_template_type_declaration): Likewise.
15142         (pushtag): Likewise.
15143         (pushdecl_nonclass_level): Likewise.
15144         (lookup_tag): Likewise.
15145         (grokfndecl): Handle member template specializations.  Share
15146         constructor and non-constructor code.
15147         * decl2.c (check_classfn): Handle member template specializations.
15148         * pt.c (begin_template_parm_list): Use begin_scope.
15149         (begin_specialization): Likewise.
15150         (end_specialization): Likewise.
15151         (check_explicit_specialization): Use current_tmpl_spec_kind.
15152         Handle member template specializations.
15153         (end_template_decl): Use finish_scope.  Remove call to
15154         get_pending_sizes.
15155         (push_template_decl_real): Remove bogus error message.
15156         (tsubst_decl): Fix typo in code contained in comment.
15157         (instantiate_template): Handle member template specializations.
15158         (most_general_template): Likewise.
15159
15160 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
15161
15162         * lex.c (whitespace_cr): Compress consecutive calls to warning().
15163         (do_identifier): Ditto for error().
15164
15165         * pt.c (convert_nontype_argument): Ditto for cp_error().
15166         (convert_template_argument): Ditto for cp_pedwarn().
15167
15168 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
15169
15170         * exception.cc (__check_null_eh_spec): New fn.
15171         * except.c (expand_end_eh_spec): Call it if the spec is throw().
15172
15173 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
15174
15175         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
15176         * except.c (expand_end_eh_spec): Add the return type.
15177         * rtti.c (throw_bad_cast): Add the parmtypes.
15178         (throw_bad_typeid): Likewise.
15179
15180         * semantics.c (expand_stmt): Only leave out rtl for unused
15181         artificials, and set DECL_IGNORED_P on them as well.
15182         * decl.c (wrapup_globals_for_namespace): Likewise.
15183
15184 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
15185
15186         * decl.c (maybe_commonize_var): Skip all artificial decls.
15187         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
15188
15189 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
15190
15191         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
15192         * cp-tree.h: Declare flag_enforce_eh_specs.
15193         * decl.c (store_parm_decls, finish_function): Check it.
15194
15195         C library functions don't throw.
15196         * Makefile.in (cfns.h): New target.
15197         (except.o): Depend on it.
15198         * Make-lang.in (cc1plus): Depend on cfns.gperf.
15199         * cfns.gperf: New file.
15200         * cfns.h: Generated.
15201         * except.c: Include it.
15202         (nothrow_libfn_p): New fn.
15203         * decl.c (grokfndecl): Use it.
15204         * cp-tree.h: Declare it.
15205
15206         * decl.c (push_overloaded_decl_1, auto_function,
15207         define_function): Lose.
15208         (build_library_fn_1): New static fn.
15209         (builtin_function): Use it.
15210         (get_atexit_node): Use build_library_fn_ptr.
15211         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
15212         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
15213         push_void_library_fn, push_throw_library_fn): New fns.
15214         * cp-tree.h: Declare them.
15215         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
15216         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
15217         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
15218         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
15219         * rtti.c (build_runtime_decl): Lose.
15220         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
15221         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
15222         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
15223
15224         * call.c (build_call): Remove result_type parm.
15225         Call mark_used on unused artificial fns.
15226         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
15227
15228 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
15229
15230         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
15231         appropriate.
15232         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
15233         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
15234         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
15235         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
15236         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
15237         expand_generic_desc): Likewise.
15238
15239 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
15240
15241         * exception.cc (__cp_pop_exception): Cleanup the original object.
15242
15243 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
15244
15245         * decl.c (grok_op_properties): Merge conversion to void warning
15246         with other silly op warnings.
15247
15248 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
15249
15250         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
15251         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
15252
15253 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
15254
15255         * decl.c (cp_make_fname_decl): New function.
15256         (wrapup_globals_for_namespace): Don't emit unused static vars.
15257         (init_decl_processing): Remove comment about use of
15258         array_domain_type. Set make_fname_decl.
15259         (cp_finish_decl): Remove __FUNCTION__ nadgering.
15260         * semantics.c (begin_compound_stmt): Remove
15261         current_function_name_declared flagging.
15262         (expand_stmt): Don't emit unused local statics.
15263         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
15264         specially.
15265
15266 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
15267
15268         * typeck.c (convert_for_assignment): Don't look at array
15269         initializer.
15270         * call.c (convert_like_real): Likewise.
15271
15272 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
15273
15274         Add initial support for '\uNNNN' specifier.
15275         * lex.c (read_ucs): New fn.
15276         (readescape, skip_white_space): Call it.
15277         (is_extended_char, is_extended_char_1): New fns.
15278         (utf8_extend_token): New fn, #if 0'd out.
15279         (real_yylex): Treat extended chars like letters.
15280
15281         * search.c (note_debug_info_needed): Walk the bases even if we
15282         weren't deferring the type itself.
15283
15284 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15285
15286         * decl2.c (finish_objects): Constify a char*.
15287
15288         * method.c (emit_thunk): Likewise.
15289
15290 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
15291
15292         * typeck.c (dubious_conversion_warnings): Look through
15293         REFERENCE_TYPE.
15294
15295 Mon Mar  6 08:46:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15296
15297         * class.c (dfs_modify_vtables): I is now unsigned.
15298         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
15299         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
15300         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
15301         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
15302         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
15303         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
15304         Call integer_all_onesp.
15305         * typeck2.c (process_init_constructor): Use compare_tree_int.
15306
15307         * lang-specs.h (as): Don't call if -syntax-only.
15308
15309 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
15310
15311         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
15312         RTL_EXPR_HAS_NO_SCOPE after all.
15313
15314 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
15315
15316         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
15317         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
15318         RTL_EXPR_HAS_NO_SCOPE.
15319
15320         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
15321         later.
15322
15323         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
15324
15325 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
15326
15327         * call.c (convert_like): Macrofy.
15328         (convert_like_with_context): New macro.
15329         (convert_like_real): Renamed from convert_like.  Add calling
15330         context parameters, for diagnostics. Add recursive flag.  Call
15331         dubious_conversion_warnings for outer conversion.
15332         (build_user_type_conversion): Use convert_like_with_context.
15333         (build_over_call): Likewise. Don't warn about dubious
15334         conversions here. Adjust convert_default_arg calls.
15335         (convert_default_arg): Add context parameters for diagnostics.
15336         Pass through to convert_like_with_context.
15337         * cp-tree.h (convert_default_arg): Add context parameters.
15338         (dubious_conversion_warnings): Prototype new function.
15339         * typeck.c (convert_arguments): Adjust convert_default_arg call.
15340         (dubious_conversion_warnings): New function, broken
15341         out of convert_for_assignment.
15342         (convert_for_assignment): Adjust.
15343
15344 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
15345
15346         * decl2.c (key_method): Break out from...
15347         (import_export_vtable, import_export_class): ...here.
15348
15349         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
15350         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
15351
15352         * search.c (note_debug_info_needed, dfs_debug_mark,
15353         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
15354         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
15355
15356 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
15357
15358         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
15359         typos.
15360
15361 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
15362
15363         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
15364         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
15365         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
15366         (lang_type): Split gets_new into has_new and has_array_new.
15367         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15368         (TYPE_GETS_NEW): Split into ...
15369         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
15370         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
15371         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
15372         (build_op_new_call): Don't declare.
15373         (build_new_1): Likewise.
15374         * call.c (build_op_new_call): Remove.
15375         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
15376         instead of TYPE_NEEDS_DESTRUCTOR.
15377         (finish_struct_bits): Likewise.
15378         (add_implicitly_declared_members): Likewise.
15379         (check_field_decl): Likewise.
15380         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
15381         correctly under the new ABI.
15382         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
15383         instead of TYPE_NEEDS_DESTRUCTOR.
15384         (initialize_local_var): Likewise.
15385         (destroy_local_var): Likewise.
15386         (cp_finish_decl): Likewise.
15387         (register_dtor_fn): Likewise.
15388         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
15389         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
15390         TYPE_VEC_DELETE_TAKES_SIZE here.
15391         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
15392         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
15393         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15394         (finish_destructor_body): Likewise.
15395         (maybe_build_cleanup_1): Likewise.
15396         * decl2.c (do_static_destruction): Likewise.
15397         * init.c (build_new_1): Make it static.
15398         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15399         (expand_cleanup_for_base): Likewise.
15400         (get_cookie_size): New function.
15401         (build_new_1): Handle array-new cookies correctly under the new
15402         ABI.
15403         (build_vec_delete_1): Likewise.
15404         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15405         (build_delete): Likewise.
15406         (build_vec_delete): Handle array-new cookies correctly under the new
15407         ABI.
15408         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15409         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
15410         TYPE_HAS_ARRAY_NEW_OPERATOR.
15411         * ptree.c (print_lang_type): Check them.
15412         * search.c (context_for_name_lookup): Fix typo in comment.
15413         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
15414         * tree.c (break_out_cleanups): Likewise.
15415         (build_cplus_array_test_1): Likewise.
15416         (cp_build_qualified_type_real): Likewise.
15417         * typeck.c (complete_type): Likewise.
15418
15419         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
15420         the command-line, not the end.
15421
15422 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
15423
15424         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
15425
15426 2000-03-02  Tom Tromey  <tromey@cygnus.com>
15427
15428         * cp-tree.h (build_java_class_ref): Declare.
15429         * init.c (build_java_class_ref): No longer static.
15430         * except.c (expand_throw): Generate a Java-style `throw' if the
15431         thrown object is a "Java" object.
15432         (initialize_handler_parm): Generate a Java-style lookup of
15433         exception info if the caught object is a "Java" object.
15434         (catch_language, catch_language_init): New globals.
15435         (decl_is_java_type): New function.
15436         (expand_start_catch_block): Don't call push_eh_info() or
15437         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
15438         class reference to build_catch_block.
15439
15440 Thu Mar  2 13:32:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15441
15442         * typeck.c (comptypes): Treat sizetype like its language equivalent.
15443
15444 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
15445
15446         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
15447         to merge reference/pointer code and fix incorrect warnings.
15448
15449 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
15450
15451         * search.c (protected_accessible_p): Use context_for_name_lookup.
15452
15453         * init.c (construct_virtual_bases): Fix thinko.
15454         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
15455
15456 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
15457
15458         * decl.c (current_function_decl): Move to toplev.c.
15459
15460 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
15461
15462         * pt.c (fn_type_unification): Unify return type, whenever
15463         provided.
15464         (get_bindings_real): Only pass return type when necessary.
15465         Remove explicit return type check.
15466         * class.c (resolve_address_of_overloaded_function): Pass desired
15467         return type to fn_type_unification.
15468
15469 Mon Feb 28 08:15:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15470
15471         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
15472         DECL_FIELD_SIZE.
15473         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
15474         DECL_FIELD_SIZE.
15475         * rtti.c (expand_class_desc): Likewise.
15476         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
15477         (THUNK_VCALL_OFFSET): Likewise.
15478         (THUNK_DELTA): Reflect changes in ../tree.h.
15479
15480 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
15481
15482         * search.c (protected_accessible_p): Also allow the access if
15483         the member is public in DERIVED.  Lose TYPE parm.
15484         (friend_accessible_p): Lose TYPE parm.
15485         (accessible_p): Adjust.
15486
15487 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15488
15489         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
15490         on things that are not sizes; ssize_binop deleted.
15491         Call size_diffop when appropriate.
15492         (dfs_build_vcall_offset_vtbl_entries): Likewise.
15493         (build_primary_vtable, build_secondary_vtable): Likewise.
15494         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
15495         Variable I is HOST_WIDE_INT.
15496         (get_vfield_offset): Pass proper types to size_binop.
15497         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
15498         (finish_struct_1): Likewise.
15499         (skip_rtti_stuff): Arg N is now pointer to signed.
15500         (layout_class_type): Use size_zero_node.
15501         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
15502         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
15503         * decl.c (complete_arry_type): Pass proper types to size_binop.
15504         (xref_basetypes): BINFO_OFFSET is sizetype.
15505         * error.c (dump_expr): Don't use size_binop non-sizes.
15506         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
15507         * init.c (construct_virtual_bases): Fix type error.
15508         (build_vec_delete_1): Pass proper type to size_binop and don't
15509         fold result.
15510         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
15511         * rtti.c (get_base_offset): Pass proper type to size_binop.
15512         * search.c (dfs_find_vbases): Fix type error.
15513         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
15514         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
15515         * tree.c (debug_binfo): Variable N is signed.
15516         Use HOST_WIDE_INT_PRINT_DEC.
15517         * typeck.c (comptypes): sizetype is same as equivalent integer type.
15518         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
15519         size_one_node and size_zero_node.
15520         (c_alignof): Use size_one_node.
15521         (build_component_addr): Pass proper types to size_binop.
15522         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
15523
15524 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
15525
15526         Implement class scope using-declarations for functions.
15527         * class.c (handle_using_decl): Call add_method for used functions.
15528         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
15529         (add_method): Used functions are hidden by local functions.
15530         (check_bases_and_members): Handle using-decls before finalizing
15531         CLASSTYPE_METHOD_VEC.
15532         * call.c (add_function_candidate): Add ctype parm; if nonzero,
15533         override the type of 'this' accordingly.
15534         (add_template_candidate, add_template_candidate_real): Add ctype parm.
15535         (convert_class_to_reference, build_user_type_conversion_1,
15536         build_new_function_call, build_object_call, build_new_op,
15537         build_new_method_call): Pass ctype parm.
15538
15539         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
15540         the baselink.
15541         * call.c (convert_class_to_reference, build_user_type_conversion_1,
15542         build_new_function_call, build_object_call, build_new_op,
15543         build_new_method_call, build_op_delete_call): Don't get basetype_path
15544         from a baselink.
15545         * typeck.c (build_component_ref): Likewise.
15546         * init.c (build_offset_ref): Likewise.
15547         (resolve_offset_ref): Don't call enforce_access.
15548         Call build_scoped_ref.
15549         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
15550         would cause an error or if -pedantic.
15551         * class.c (alter_access): Lose binfo parm.
15552
15553 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
15554
15555         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
15556         types.
15557
15558 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
15559
15560         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
15561         pseudo_type_info creation into the std namespace
15562
15563 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
15564
15565         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
15566         (import_export_class): Remove declaration.
15567         * decl2.c (import_export_class): Make it static.
15568         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
15569         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
15570         EXPR_WITH_FILE_LOCATION.
15571         * lex.c (check_newline): Tweak filename/lineno setting.
15572         * semantics.c (begin_while_stmt): Fix typo in comment.
15573
15574 Sat Feb 26 19:50:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15575
15576         * lang-options.h (-fmessage-length=): Add missing option.
15577
15578         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
15579
15580 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
15581
15582         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
15583
15584 Fri Feb 25 14:52:33 2000  Jim Wilson  <wilson@cygnus.com>
15585
15586         * optimize.c (expand_call_inline): Emit the return label before
15587         evaluating the return value.
15588
15589 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
15590
15591         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
15592         than duplicating functionality here.
15593         * optimize.c: Include input.h.
15594         (expand_call_inline): Use push_srcloc and pop_srcloc.
15595         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
15596         * parse.c: Regenerated.
15597         * Makefile.in (lex.o): Depend on input.h.
15598         (optimize.o): Likewise.
15599
15600 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
15601
15602         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
15603         function type, rather than ICE.
15604
15605 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
15606
15607         * decl.c (grokdeclarator): Call decl_type_access_control.
15608         * parse.y (parse_end_decl): Don't call decl_type_access_control if
15609         decl is null.
15610
15611 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
15612
15613         * decl.c (decls_match): Remove obsolete static member nadgering.
15614
15615 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
15616
15617         * decl.c (grokdeclarator): Change ANSI to ISO.
15618         * lex.c (consume_string, readescape, do_identifier): Likewise.
15619         (parse_float, real_yylex): Likewise.
15620         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
15621         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
15622         new_type_id, maybe_label_decls, simple_stmt,
15623         for.init.statement): Likewise.
15624         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
15625         * semantics.c (finish_named_return_value): Likewise.
15626         * parse.c: Regenerate.
15627
15628 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
15629
15630         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
15631         (CPTI_CLASS_STAR_TYPE): Remove.
15632         (vtable_index_type): Likewise.
15633         (class_star_type_node): Remove.
15634         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
15635         (build_binary_op_nodefault): Remove.
15636         * call.c (build_new_op): Use build_binary_op instead of
15637         build_binary_op_nodefault.
15638         * decl.c (init_decl_processing): Remove class_star_type_node
15639         initialization.  Make delta_type_node ptrdiff_type_node under the
15640         new ABI.  Initialize vtable_index_type.
15641         (build_ptrmemfunc_type): Build different structures for the new
15642         ABI.
15643         (build_enumerator): Use build_binary_op instead of
15644         build_binary_op_nodefault.
15645         * method.c (build_overload_value): Mangle pointers-to-members
15646         appropriately under the new ABI.
15647         * typeck.c (build_array_ref): Use build_binary_op instead of
15648         build_binary_op_nodefault.
15649         (get_member_function_from_ptrfunc): Adjust for the new ABI.
15650         (build_binary_op_nodefault): Rename to ...
15651         (build_binary_op): ... this.  Remove old version.  Adjust for
15652         pointer-to-member comparisons under the new ABI.
15653         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
15654         (build_ptrmemfunc): Adjust for the new ABI.
15655         (expand_ptrmemfunc_cst): Likewise.
15656         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
15657         (pfn_from_ptrmemfunc): Adjust for the new ABI.
15658
15659 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
15660
15661         * call.c (build_object_call): Compress consecutive calls to
15662         cp_error.
15663         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
15664         (build_op_delete_call): Adjust message formatting.
15665
15666         * class.c (check_bases): Compress consecutive calls to
15667         cp_pedwarn.
15668         (finish_struct_anon): Say 'ISO C++'.
15669
15670         * decl.c (start_decl): Same here.
15671         (grok_reference_init): Likewise.
15672         (grokfndecl): Correct message formatting.
15673         (grokfndecl): Improve diagnostic.
15674         (check_static_variable_definition): Likewise. Say 'ISO C++'
15675         (compute_array_index_type): Say 'ISO C++'
15676         (create_array_type_for_decl): Compress consecutive calls to
15677         cp_error.
15678         (grokdeclarator): Say 'ISO C++'
15679         (grok_op_properties): Likewise.
15680
15681         * decl2.c (delete_sanity): Clairify diagnostic.
15682         (check_member_template): Same here.
15683         (grok_function_init): Use consistent terminology.
15684
15685         * expr.c (do_case): Say 'ISO C++'
15686
15687         * friend.c (do_friend): Compress consecutive calls to warning.
15688
15689 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
15690
15691         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
15692         * class.c (build_secondary_vtable): Reorganize.  Don't create a
15693         new vtable under the new ABI.
15694         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
15695         computing the size.
15696         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
15697         the initializing elements.
15698         (initialize_vtable): New function.
15699         (dfs_finish_vtbls): Use it.
15700         (dfs_accumulate_vtbl_inits): New function.
15701         (finish_vtbls): Merge primary and secondary vtables under the new
15702         ABI.
15703         (finish_struct_1): Remove redundant call to layout_vtable_decl.
15704         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
15705         aren't VAR_DECLs.
15706
15707         * class.c (build_vtable): New function, split out from ...
15708         (get_vtable_decl): ... here, and ...
15709         (build_secondary_vtable): ... here.
15710
15711         * pt.c (tsubst_decl): Fix formatting.
15712
15713 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15714
15715         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
15716         (avoid_overlap, build_base_field): Likewise.
15717         (build_base_field, build_base_fields, is_empty_class):
15718         Test DECL_SIZE with integer_zero.
15719         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
15720         * cp-tree.h (struct lang_type): New field size_unit.
15721         (CLASSTYPE_SIZE_UNIT): New macro.
15722         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
15723         (cp_finish_decl): Delete -Wlarger-than processing.
15724         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
15725         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
15726         * tree.c (make_binfo): binfo vector is one entry longer.
15727         (walk_tree): Walk DECL_SIZE_UNIT.
15728
15729 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
15730
15731         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
15732         comment.
15733         (build_vtable_entry): Don't assume all vtable entries are
15734         functions.
15735         (build_vtbl_initializer): Adjust accordingly.
15736         (get_vtable_decl): Fix formatting.
15737
15738 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
15739
15740         * semantics.c (deferred_type_access_control): Walk the entire
15741         type_lookups list.
15742         (save_type_access_control): Rename from
15743         initial_deferred_type_access_control.  Just remember the value.
15744         (decl_type_access_control): New fn.
15745         (begin_function_definition): Use deferred_type_access_control, after
15746         we've started the function.  Set type_lookups to error_mark_node.
15747         * parse.y (frob_specs, fn.def1): Adjust.
15748         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
15749         (parse_end_decl, parse_bitfield0, parse_method): New fns.
15750         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
15751         (after_type_component_declarator0): Likewise.
15752         (after_type_component_declarator): Likewise.
15753         (notype_component_declarator): Likewise.
15754         * cp-tree.h: Adjust.
15755
15756         * decl.c (redeclaration_error_message): Allow redeclaration of
15757         namespace-scope decls.
15758
15759 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
15760
15761         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
15762
15763 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
15764
15765         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
15766         * decl2.c (grokclassfn): Likewise.
15767
15768         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
15769
15770         * decl2.c (lang_decode_option): Don't set default message length
15771         here.
15772         * lex.c (lang_init_options): Set it here.
15773
15774 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
15775
15776         Make DECL_CONTEXT mean the class in which a member function was
15777         declared, even for a virtual function.
15778         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
15779         (DECL_FRIEND_CONTEXT): New macro.
15780         (DECL_REAL_CONTEXT): Remove.
15781         (SET_DECL_FRIEND_CONTEXT): Likewise.
15782         (DECL_VIRTUAL_CONTEXT): Adjust.
15783         (DECL_CLASS_SCOPE_P): Use TYPE_P.
15784         (add_friends): Remove.
15785         (hack_decl_function_context): Likewise.
15786         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
15787         CP_DECL_CONTEXT.
15788         (build_over_call): Fix indentation.  Use DECL_CONTEXT
15789         instead of DECL_CLASS_CONTEXT.
15790         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
15791         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
15792         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
15793         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
15794         (build_base_field): Likewise.
15795         (finish_struct_1): Likewise.
15796         (build_self_reference): Likewise.
15797         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
15798         DECL_REAL_CONTEXT.
15799         (pushtag): Use decl_function_context, not
15800         hack_decl_function_context.
15801         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
15802         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
15803         (pushdecl): Remove bogus code.
15804         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
15805         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
15806         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
15807         Use decl_function_context, nothack_decl_function_context.
15808         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
15809         (grokdeclarator): Likewise.  Use decl_function_context, not
15810         hack_decl_function_context.
15811         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
15812         (start_function): Use DECL_FRIEND_CONTEXT, not
15813         DECL_CLASS_CONTEXT.  Use decl_function_context, not
15814         hack_decl_function_context.
15815         (finish_function): Use decl_function_context, not
15816         hack_decl_function_context.
15817         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
15818         DECL_CLASS_CONTEXT.
15819         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
15820         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
15821         (grokfield): Likewise.
15822         (finish_builtin_type): Likewise.
15823         (finish_vtable_vardec): Use decl_function_context, not
15824         hack_decl_function_context.
15825         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
15826         (start_static_initialization_or_destruction): Likewise.
15827         (finish_static_initialization_or_destruction): Likewise.
15828         (mark_used): Adjust logic for deciding when to synthesize methods.
15829         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
15830         DECL_REAL_CONTEXT.
15831         * error.c (dump_function_decl): Use DECL_CONTEXT, not
15832         DECL_CLASS_CONTEXT.
15833         * friend.c (is_friend): Likewise.
15834         (add_friends): Remove.
15835         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
15836         * lex.c (begin_definition_of_inclass_inline): Use
15837         decl_function_context, not hack_decl_function_context.
15838         (process_next_inline): Likewise.
15839         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
15840         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
15841         DECL_CLASSS_CONTEXT.
15842         (hack_identifier): Likewise.
15843         (synthesize_method):  Use decl_function_context, not
15844         hack_decl_function_context.
15845         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
15846         DECL_REAL_CONTEXT.
15847         (is_member_template): Use decl_function_context, not
15848         hack_decl_function_context.  Use DECL_CONTEXT, not
15849         DECL_CLASS_CONTEXT.
15850         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
15851         DECL_CLASS_CONTEXT.
15852         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
15853         DECL_REAL_CONTEXT.
15854         (push_template_decl_real): Likewise.
15855         (instantiate_class_template): Don't call add_friends.
15856         (tsubst_default_argument): Use DECL_CONTEXT, not
15857         DECL_REAL_CONTEXT.
15858         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
15859         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
15860         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
15861         DECL_CLASS_CONTEXT.
15862         * repo.c (repo_inline_used): Likewise.
15863         * search.c (current_scope): Adjust for new _CONTEXT macros.
15864         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
15865         DECL_REAL_CONTEXT.
15866         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
15867         (lookup_fnfields_here):Likewise.
15868         (check_final_overrider): Likewise.
15869         (init_vbase_pointers): Likewise.
15870         (virtual_context): Likewise.
15871         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
15872         (expand_body): Use decl_function_context, not
15873         hack_decl_function_context.
15874         * tree.c (hack_decl_function_context): Remove.
15875         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
15876         DECL_CLASS_CONTEXT.
15877         * typeck2.c (error_not_base_type): Likewise.
15878
15879 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
15880
15881         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
15882
15883 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15884
15885         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
15886
15887 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
15888
15889         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
15890
15891 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
15892
15893         * decl2.c (lang_decode_option): Enable automatic line wrapping.
15894
15895 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
15896
15897         * parse.y (frob_specs): Split out...
15898         (parse_decl): From here.
15899         (fn.def2): Call initial_deferred_type_access_control.
15900         (after_type_component_declarator0): Call frob_specs.
15901         (notype_component_declarator0): Likewise.
15902         * search.c (friend_accessible_p): Nested classes are friends of their
15903         enclosing classes.
15904
15905 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
15906
15907         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
15908         used to create an implicit temporary.
15909
15910         * class.c (dfs_modify_vtables): Tweak calculation of functions to
15911         override.
15912
15913 2000-02-08  Nathan Sidwell  <nathan@acm.org>
15914
15915         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
15916         strip array element qualifiers too.
15917
15918 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
15919
15920         * decl.c (store_parm_decls): Don't build cleanups for parameters
15921         while processing_template_decl.
15922
15923 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
15924
15925         * cp-tree.h (struct saved_scope): Add incomplete field.
15926         (namespace_scope_incomplete): New macro.
15927         * decl.c (pushdecl): Use it.
15928         (hack_incomplete_structures): Use it.  See through artificial
15929         binding levels.
15930         (mark_saved_scope): Mark it.
15931
15932         Implement access control for nested types.
15933         * search.c (type_access_control): New fn.
15934         (accessible_p): Now we do perform access control for types.
15935         * semantics.c (deferred_type_access_control): New fn.
15936         (initial_deferred_type_access_control): New fn.
15937         (begin_function_definition): Call it.  Add lookups parm.
15938         * decl.c (struct binding_level): Add this_class field.
15939         (pushlevel_class): Set it.
15940         (mark_binding_level): Mark it.
15941         (lookup_name_real): Use it.  Call type_access_control.
15942         (mark_saved_scope): Mark lookups field.
15943         * cp-tree.h (flagged_type_tree): Add lookups field.
15944         (struct saved_scope): Add lookups field.
15945         (type_lookups): New macro.
15946         * parse.y (declmods): Now <ftype>.
15947         (parse_decl): Add lookups parm.  Call
15948         initial_deferred_type_access_control.
15949         (lang_extdef): Clear type_lookups.
15950         (typed_declspecs, declmods, typespec): Set lookups field.
15951         (initdcl): Call deferred_type_access_control.
15952         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
15953         component_decl_1, named_parm): Adjust.
15954         * friend.c (is_friend): Nested classes are friends of their
15955         enclosing classes.
15956
15957         * class.c (currently_open_derived_class): New fn.
15958         * method.c (hack_identifier): Use it.
15959
15960         * lex.c (do_identifier): Remove obsolete code.
15961
15962         * parse.y (typed_typespecs): Propagate new_type_flag properly.
15963
15964 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
15965
15966         * tinfo.h: Remove apostrophes from C++ comment (xgettext
15967         thinks this file is plain C).
15968
15969 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15970
15971         * Makefile.in (call.o): Depend on $(EXPR_H).
15972
15973         * call.c: Include "expr.h".
15974
15975         * class.c (dump_class_hierarchy): Add prototype.
15976
15977         * search.c (dfs_get_pure_virtuals): Likewise.
15978
15979 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
15980
15981         * parse.y (simple_stmt): Allow :: token in asm parameter list.
15982         * parse.c: Rebuilt.
15983
15984 Mon Jan 31 15:35:29 2000  Jim Wilson  <wilson@cygnus.com>
15985
15986         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
15987         Store it in DECL_FCONTEXT.
15988         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
15989
15990 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
15991
15992         * tinfo.h (old abi): #include "tconfig.h".
15993         * tinfo.cc (convert_to_base): Move into old abi section.
15994
15995 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
15996
15997         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
15998         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
15999         (BINFO_PRIMARY_BINFO): New macro.
16000         (BF_DELTA): Rename to ...
16001         (BV_DELTA): ... this.
16002         (BF_VCALL_INDEX): Rename to ...
16003         (BV_VCALL_INDEX): ... this.
16004         (BF_FN): Rename to ...
16005         (BV_FN): ... this.
16006         * class.c (build_vbase_path): Adjust for changes to reverse_path.
16007         (set_rtti_entry): Rename BF_ macros to BV_ variants.
16008         (modify_vtable_entry): Simplify.
16009         (add_virtual_function): Rename BF_ macros to BV_ variants.
16010         (build_vtable_initializer): Likewise.
16011         (get_class_offset_1): Remove.
16012         (dfs_get_class_offset): Likewise.
16013         (get_class_offset): Likewise.
16014         (dfs_find_final_overrider): New function.
16015         (find_final_overrider): Likewise.
16016         (modify_one_vtable): Remove.
16017         (dfs_find_base): New function.
16018         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
16019         find_final_overrider.
16020         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
16021         virtuals.
16022         (dfs_fixup_vtable_deltas): Remove.
16023         (override_one_vtable): Remove.
16024         (merge_overrides): Likewise.
16025         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
16026         unreal chilren of virtual bases.
16027         (finish_struct_1): Don't use merge_overrides.  Don't use
16028         dfs_fixup_vtable_deltas.
16029         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
16030         BINFOs.
16031
16032 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
16033             Jason Merrill  <jason@yorick.cygnus.com>
16034
16035         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
16036
16037 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
16038
16039         * exception.cc (__throw_bad_typeid): Add missing std::.
16040
16041 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16042
16043         * cp-tree.h (make_thunk): PROTO -> PARAMS.
16044
16045 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
16046
16047         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
16048
16049         Runtime support for new-abi rtti.
16050         * inc/typeinfo (type_info::operator!=): Define in class.
16051         (type_info::before, type_info::name, type_info::operator==,
16052         type_info::operator!=): Define new ABI implementations.
16053         (type_info::is_pointer_p, type_info::is_function_p): Declare
16054         new virtual functions.
16055         (type_info::do_catch, type_info::do_upcast): Likewise.
16056
16057         * tinfo.h (__base_class_info): Define new class.
16058         (__class_type_info): Likewise.
16059         (__si_class_type_info): Likewise.
16060         (__vmi_class_type_info): Likewise.
16061         (__dynamic_cast): Prototype.
16062
16063         * tinfo.cc: Conditionalize old and new rtti mechanisms.
16064         (type_info::is_pointer_p): Define new function.
16065         (type_info::is_function_p): Likewise.
16066         (type_info::do_catch): Likewise.
16067         (type_info::do_upcast): Likewise.
16068         (vtable_prefix): New structure for vtable access.
16069         (adjust_pointer): Define new template function.
16070         (contained_p, public_p, virtual_p, contained_public_p,
16071         contained_nonpublic_p, contained_nonvirtual_p): Define new
16072         functions.
16073         (nonvirtual_base_type): New local variable.
16074         (__class_type_info::~__class_type_info): Define.
16075         (__si_class_type_info::~__si_class_type_info): Likewise.
16076         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
16077         (__class_type_info::do_catch): Define new function.
16078         (__class_type_info::do_upcast): Likewise.
16079         (__class_type_info::find_public_src): Likewise.
16080         (__class_type_info::do_find_public_src): Likewise.
16081         (__si_class_type_info::do_find_public_src): Likewise.
16082         (__vmi_class_type_info::do_find_public_src): Likewise.
16083         (__class_type_info::do_dyncast): Likewise.
16084         (__si_class_type_info::do_dyncast): Likewise.
16085         (__vmi_class_type_info::do_dyncast): Likewise.
16086         (__class_type_info::do_upcast): Likewise.
16087         (__si_class_type_info::do_upcast): Likewise.
16088         (__vmi_class_type_info::do_upcast): Likewise.
16089         (__dynamic_cast): Likewise.
16090
16091         * tinfo2.cc (__fundamental_type_info): Define new class.
16092         (__pointer_type_info): Likewise.
16093         (__reference_type_info): Likewise.
16094         (__array_type_info): Likewise.
16095         (__function_type_info): Likewise.
16096         (__enum_type_info): Likewise.
16097         (__ptr_to_member_type_info): Likewise.
16098         (__fundamental_type_info::~__fundamental_type_info): Define.
16099         (__pointer_type_info::~__pointer_type_info): Likewise.
16100         (__reference_type_info::~__reference_type_info): Likewise.
16101         (__array_type_info::~__array_type_info): Likewise.
16102         (__function_type_info::~__function_type_info): Likewise.
16103         (__enum_type_info::~__enum_type_info): Likewise.
16104         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
16105         (__pointer_type_info::do_catch): Define new function.
16106         (__ptr_to_member_type_info::do_catch): Define new function.
16107
16108         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
16109         (__is_pointer): Likewise.
16110
16111         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
16112
16113 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
16114
16115         * cp/class.c (build_vtable): Rename to build_primary_vtable.
16116         (prepare_fresh_vtable): Rename to build_secondary_vtable.
16117         (make_new_vtable): New function.
16118         (modify_vtable_entry): Handle generation of new vtables correctly.
16119         (modify_one_vtable): Remove unused parameter.
16120         (dfs_fixup_vtable_deltas): Likewise.
16121         (override_one_vtable): Use build_secondary_vtable.
16122         (finish_struct_1): Use build_primary_vtable and
16123         build_secondary_vtable.
16124
16125 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
16126
16127         * cp/decl.c: Adjust variable names, comments, help strings.
16128
16129 2000-01-29  Nathan Sidwell  <nathan@acm.org>
16130
16131         * new2.cc (operator delete[]): Use operator delete, don't assume
16132         implementation.
16133
16134 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
16135
16136         * class.c (build_vtbl_initializer): Add argument to
16137         build_vtable_entry call.
16138
16139 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
16140
16141         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
16142         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
16143         (BF_DELTA): New macro.
16144         (BF_VCALL_INDEX): Likewise.
16145         (BF_FN): Likewise.
16146         (THUNK_VCALL_OFFSET): Likewise.
16147         (make_thunk): Change prototype.
16148         * class.c (build_vtable_entry): Integrate
16149         build_vtable_entry_for_fn.  Handle vcall indices.
16150         (build_vtable_entry_for_fn): Remove.
16151         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
16152         BF_VCALL_INDEX, BF_FN.
16153         (modify_vtable_entry): Integrate common code from
16154         modify_one_vtable and dfs_fixup_vtable_deltas.
16155         (add_virtual_function): Set BF_VCALL_INDEX.
16156         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
16157         and BF_FN.
16158         (modify_one_vtable): Simplify.
16159         (dfs_fixup_vtable_deltas): Likewise.
16160         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
16161         * method.c (make_thunk): Handle vcall indices.
16162
16163 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
16164
16165         Compiler side new abi rtti (not enabled).
16166         * cp-tree.h (new_abi_rtti_p): New macro.
16167         (emit_support_tinfos): Prototype new function.
16168         (tinfo_decl_p): Likewise.
16169         (emit_tinfo_decl): Likwise.
16170         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
16171         macros.
16172         (doing_runtime): New local static.
16173         (init_rtti_processing): Add new-abi initializer.
16174         (get_tinfo_decl): Add new-abi logic.
16175         (tinfo_from_decl): Likewise.
16176         (build_dynamic_cast_1): Likewise.
16177         (qualifier_flags): New static function.
16178         (tinfo_base_init): Likewise.
16179         (generic_initializer): Likewise.
16180         (ptr_ref_initializer): Likewise.
16181         (ptmd_initializer): Likewise.
16182         (class_hint_flags): Likewise.
16183         (class_initializer): Likewise.
16184         (synthesize_tinfo_var): Likewise.
16185         (create_real_tinfo_var): Likewise.
16186         (create_pseudo_type_info): Likewise.
16187         (get_vmi_pseudo_type_info): Likewise.
16188         (create_tinfo_types): Likewise.
16189         (emit_support_tinfos): New global function.
16190         (tinfo_decl_p): New global predicate.
16191         (emit_tinfo_decl): New global function.
16192         * class.c (set_rtti_entry): Generalize for old and new rtti.
16193         (build_vtbl_initializer): Likewise.
16194         * decl2.c (finish_file): Likewise.
16195
16196 Thu Jan 27 20:53:36 2000  Jim Wilson  <wilson@cygnus.com>
16197
16198         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
16199         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
16200
16201 Thu Jan 27 13:54:12 2000  Mike Stump  <mrs@wrs.com>
16202
16203         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
16204         for scopes.
16205
16206 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
16207
16208         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
16209
16210 Wed Jan 26 22:19:14 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16211
16212         * optimize.c (calls_setjmp_r): Supply new argument
16213         to special_function_p.
16214
16215 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16216
16217         * call.c: PROTO -> PARAMS.
16218         * class.c: Likewise.
16219         * cp-tree.h: Likewise.
16220         * cvt.c: Likewise.
16221         * decl.c: Likewise.
16222         * decl.h: Likewise.
16223         * decl2.c: Likewise.
16224         * dump.c: Likewise.
16225         * errfn.c: Likewise.
16226         * error.c: Likewise.
16227         * except.c: Likewise.
16228         * expr.c: Likewise.
16229         * init.c: Likewise.
16230         * input.c: Likewise.
16231         * lex.c: Likewise.
16232         * lex.h: Likewise.
16233         * method.c: Likewise.
16234         * optimize.c: Likewise.
16235         * parse.y: Likewise.
16236         * pt.c: Likewise.
16237         * repo.c: Likewise.
16238         * rtti.c: Likewise.
16239         * search.c: Likewise.
16240         * semantics.c: Likewise.
16241         * spew.c: Likewise.
16242         * tree.c: Likewise.
16243         * typeck.c: Likewise.
16244         * typeck2.c: Likewise.
16245         * xref.c: Likewise.
16246
16247 2000-01-25  Richard Henderson  <rth@cygnus.com>
16248
16249         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
16250
16251 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
16252
16253         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
16254         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
16255         (struct vcall_offset_data_s): New type.
16256         (dfs_vcall_offset_queue_p): New function.
16257         (dfs_build_vcall_offset_vtbl_entries): Likewise.
16258         (build_vcall_offset_vtbl_entries): Likewise.
16259         (layout_vtable_decl): Likewise.
16260         (num_vfun_entries): Likewise.
16261         (num_extra_vtbl_entries): Add the entries for vcall offsets.
16262         (build_vtbl_initializer): Likewise.
16263         (dfs_finish_vtabls): Use layout_vtable_decl.
16264         (modify_one_vtables): Always duplicate vtables under the new ABI.
16265         (finish_struct_1): Use layout_vtable_decl.
16266
16267 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16268
16269         * decl.c (member_function_or_else): Change third arg from a format
16270         specifier to an `enum overload_flags'.  Callers changed.
16271
16272 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
16273
16274         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
16275         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
16276         build_const_cast, get_delta_difference, check_return_expr): Avoid
16277         ANSI string concatenation usage.
16278
16279 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
16280
16281         * class.c (layout_class_type): Put the fields required to make a
16282         class non-empty at the end, not the beginning, of the TYPE_FIELDs
16283         list.
16284
16285 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
16286
16287         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
16288         template.
16289
16290         * decl2.c (mark_used): Do instantiate inlines that have been
16291         explicitly instantiated.
16292
16293 2000-01-24  Richard Henderson  <rth@cygnus.com>
16294
16295         * call.c (build_over_call): Use expand_tree_builtin.
16296         * typeck.c (build_function_call_real): Likewise.
16297         (build_binary_op_nodefault): Handle unordered compares.
16298
16299 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
16300
16301         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
16302         cp_tree_index values.
16303         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
16304         New global node #defines for them.
16305         * rtti.c (call_void_fn): Replace with ...
16306         (build_runtime_decl): ... new static function.
16307         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
16308         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
16309         (build_dynamic_cast_1): Always produce correctly typed result.
16310         Explicitly produce type_info addresses. Use dynamic_cast_node.
16311         * exception.cc (__throw_bad_cast): Return `void *'.
16312         (__throw_bad_typeid): Return `const type_info &'.
16313
16314 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
16315
16316         * cp-tree.h (get_vtable_decl): Prototype new function.
16317         * class.c (get_vtable_decl): New function. Broken out from ...
16318         (build_vtable): ... here. Use it.
16319         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
16320         by get_vtable_decl.
16321
16322 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
16323
16324         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
16325         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
16326         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
16327         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
16328         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
16329         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
16330         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
16331         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
16332         (CPTI_TINFO_VAR_ID): New enumeration.
16333         (__tp_desc_type_node, __access_mode_type_node,
16334         __bltn_desc_type_node, __user_desc_type_node,
16335         __class_desc_type_node, __ptr_desc_type_node,
16336         __attr_desc_type_node, __func_desc_type_node,
16337         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
16338         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
16339         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
16340         enum_desc_type_node, class_desc_type_node,
16341         si_class_desc_type_node, vmi_class_desc_type_node,
16342         ptmd_desc_type_node, base_desc_type_node): New #defines.
16343         (tinfo_fn_id, tinfo_fn_type): Rename to ...
16344         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
16345         (tinfo_var_id): New enumeration.
16346         (DECL_TINFO_FN_P): Augment comment.
16347         * decl.c (cp_global_trees): Adjust documentation.
16348         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
16349         tinfo_decl_type and tinfo_var_id.
16350         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
16351         (build_typeid): Remove unused variable.
16352         (get_tinfo_var): Use tinfo_var_id.
16353         (tinfo_name): New static function.
16354         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
16355         (tinfo_from_decl): Likewise.
16356         (get_base_offset): New static function, broken out of
16357         expand_class_desc.
16358         (expand_si_desc): Use tinfo_name.
16359         (expand_class_desc): Likewise. Lose local static variable.
16360         Use base_desc_type_node. Use get_base_offset.
16361         (expand_ptr_desc): Use tinfo_name.
16362         (expand_attr_desc): Likewise.
16363         (expand_generic_desc): Likewise.
16364
16365         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
16366         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
16367
16368 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
16369
16370         * cp-tree.h (__eprintf): Remove declaration.
16371         * tree.c (__eprintf): Remove definition.
16372
16373 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
16374             Mark Mitchell  <mark@codesourcery.com>
16375
16376         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
16377         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
16378
16379 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
16380
16381         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
16382
16383 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
16384
16385         * cp-tree.h (register_dtor_fn): New function.
16386         * decl.c (destroy_local_static): Rename to ...
16387         (register_dtor_fn): ... this.  Give it external linkage.
16388         (expand_static_init): Use it.
16389         * decl2.c (do_static_initialization): Likewise, if using
16390         __cxa_atexit.
16391         (do_static_destruction): Check that __cxa_atexit is not in use.
16392         (finish_file): Don't call do_static_destruction if using
16393         __cxa_atexit.
16394
16395         * typeck.c (convert_arguments): Restore two-message error
16396         reporting.
16397
16398 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
16399
16400         Remap dynamic cast hint values to be consistent across ABIs.
16401         * search.c (dynamic_cast_base_recurse): Remap generated value.
16402         (get_dynamic_cast_base_type): Adjust documentation.
16403         * tinfo.h (__user_type_info::dyncast): Likewise.
16404         (__user_type_info::find_public_subobj): Remap BOFF meaning.
16405         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
16406         (__class_type_info::do_dyncast): Likewise.
16407         (__class_type_info::do_find_public_subobj): Likewise.
16408         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
16409
16410 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
16411
16412         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
16413
16414         * typeck2.c (incomplete_type_error): Restore previous
16415         cp_error and cp_error_at call sequence.
16416
16417 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
16418
16419         * class.c (dump_class_hierarchy): Make format agree with argument;
16420         cast pointer to unsigned long and print with %lx.
16421
16422 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
16423
16424         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
16425
16426         * typeck.c (composite_pointer_type, common_type,
16427         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
16428         build_function_call_real, convert_arguments,
16429         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
16430         build_unary_op, mark_addressable, build_compound_expr,
16431         build_static_cast, build_reinterpret_cast, build_const_cast,
16432         build_c_cast, build_modify_expr, get_delta_difference,
16433         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
16434         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
16435         into a single one.
16436         * typeck2.c (readonly_error, abstract_virtuals_error,
16437         process_init_constructor, check_for_new_type): Likewise.
16438
16439 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
16440
16441         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
16442         VAR_DECLs.
16443
16444 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
16445
16446         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
16447         (build_x_typeid): Likewise.
16448         (get_tinfo_fn): Likewise.
16449         (get_tinfo_fn_unused): Rename to ...
16450         (get_tinfo_decl): ... here.
16451         * rtti.c (build_headof): Replace logic error with assertion.
16452         (get_tinfo_fn_dynamic): Rename to ...
16453         (get_tinfo_decl_dynamic): ... here. Make static. Use
16454         complete_type_or_else.
16455         (build_x_typeid): Move into ...
16456         (build_typeid): ... here. Adjust call to
16457         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
16458         throw_bad_typeid expression.
16459         (get_tinfo_fn_unused): Rename to ...
16460         (get_tinfo_decl): ... here. Adjust comment.
16461         (get_tinfo_fn): Delete.
16462         (tinfo_from_decl): New static function.
16463         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
16464         (get_typeid): Use complete_type_or_else.
16465         (build_dynamic_cast_1): Adjust calls to
16466         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
16467         * parse.y (primary): Adjust call to build_typeid.
16468         * except.c (build_eh_type_type_ref): Adjust call to
16469         get_tinfo_decl. Mark as used.
16470         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
16471         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
16472         * parse.c: Regenerated.
16473
16474 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
16475
16476         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
16477         calling convention.
16478         (resolves_to_fixed_type_p): Document calling convention.
16479         * rtti.c (build_x_typeid): Initialize NONNULL.
16480
16481         * cp-tree.h (build_shared_int_cst): New function.
16482         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
16483         * class.c (modify_vtable_entry): Likewise.
16484         (add_virtual_function): Split out code to generated shared
16485         INTEGER_CSTs to build_share_int_cst.
16486         (modify_all_vtables): Handle all the overridden functions here.
16487         Add overridden functions from non-primary virtual bases to the
16488         primary vtable.
16489         (finish_struct_1): Adjust call to modify_all_vtables.  Add
16490         overridden functions from non-primary bases to the vtable.
16491         * tree.c (build_shared_int_cst): New function.
16492
16493         * cp-tree.h (scratchalloc): Remove.
16494         (build_scratch_list): Likewise.
16495         * call.c (convert_class_to_reference): Replace build_scratch_list
16496         and build_expr_list with build_tree_list.
16497         (add_candidate): Replace scratchalloc with expralloc.  Note memory
16498         leak.
16499         (build_user_type_conversion_1):  Replace build_scratch_list
16500         and build_expr_list with build_tree_list.
16501         (build_new_op): Likewise.
16502         (build_op_delete_call): Likewise.
16503         (convert_like): Likewise.
16504         * cvt.c (ocp_convert): Likewise.
16505         * decl.c (start_decl): Likewise.
16506         (start_function): Likewise.
16507         (finish_destructor_body): Likewise.
16508         (maybe_build_cleanup_1): Likewise.
16509         * decl2.c (reparse_decl_as_expr): Likewise.
16510         * init.c (perform_member_init): Likewise.
16511         (expand_cleanup_for_base): Likewise.
16512         (build_builtin_delete_call): Likewise.
16513         (build_new_1): Likewise.
16514         (build_delete): Likewise.
16515         * method.c (do_build_assign_ref): Likewise.
16516         * parse.y (already_scoped_stmt): Likewise.
16517         (nontrivial_exprlist): Likewise.
16518         (net_initializer): Likewise.
16519         (initlist): Likewise.
16520         * parse.c: Regenerated.
16521         * rtti.c (build_x_typeid): Likewise.
16522         (build_dynamic_cast_1): Likewise.
16523         * typeck.c (build_x_compound_expr): Likewise.
16524         (build_static_cast): Likewise.
16525         (build_modify_expr): Likewise.
16526
16527         * cp-tree.h (DECL_VINDEX): Add documentation.
16528         * class.c (build_vtable_entry): Likewise.
16529         (start_vtable): Add comment.
16530         (add_virtual_function): Replace pending_hard_virtuals with
16531         overridden_virtuals and pending_virtuals with new_virtuals.
16532         Replace redundant assignments with assertions.
16533         (check_for_override): Add comment.
16534         (check_bases_and_members): Replace pending_hard_virtuals with
16535         overridden_virtuals and pending_virtuals with new_virtuals.
16536         (create_vtbl_ptr): Likewise.
16537         (layout_class_type): Likewise.
16538         (finish_struct_1): Likewise.  Add comments.
16539
16540 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
16541
16542         * class.c (finish_struct_1): Replace redundant code with
16543         assertions.
16544
16545         * cp-tree.h (flag_new_abi): Move.
16546         (flag_use_cxa_atexit): Likewise.
16547         (flag_honor_std): Likewise.
16548         (flag_rtti): Likewise.
16549         (vbase_offsets_in_vtable_p): Define.
16550         (vptrs_present_everywhere_p): Likewise.
16551         (TYPE_CONTAINS_VPTR_P): Likewise.
16552         (dfs_walk_real): Declare.
16553         * class.c (build_vbase_pointer_fields): Check
16554         vbase_offsets_in_vtable_p.
16555         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
16556         BINFO_VPTR_FIELD.
16557         (build_vbase_offset_vtbl_entries): Simplify.
16558         (build_vbase_offset_vtbl_entries): Adjust.
16559         (build_vbase_pointer): Add ability to look up vbase offsets in
16560         vtable.
16561         (start_vtable): New function.
16562         (add_virtual_function): Use it.
16563         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
16564         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
16565         (build_vtbl_initializer): Take the type of the complete object as
16566         input.  Use it to correctly calculate vbase offsets.
16567         (dfs_finish_vtbls): Pass the complete type to
16568         build_vtbl_initializer.
16569         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
16570         (create_vtable_ptr): Create a vtable even if there are no
16571         new virtual functions, under the new ABI.
16572         (finish_struct_1): Likewise.
16573         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
16574         * decl.c (exapnd_static_init): Remove call to
16575         preserve_initializer.
16576         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
16577         vtables.
16578         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
16579         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
16580         (construct_virtual_bases): Don't initialize virtual base pointers
16581         under the new ABI.
16582         (build_aggr_init): Clean up comment.
16583         (expand_aggr_init_1): Likewise.
16584         * rtti.c (expand_class_desc): Store the virtual function table
16585         index where the vbase offset lives in the offset field.
16586         * search.c (dfs_walk_real): Make it global.
16587         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
16588         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
16589
16590         * tinfo.h (USItype): Make it signed under the new ABI.
16591         * tinfo.cc (convert_to_base): New function.  Encapsulate base
16592         conversion logic here.
16593         (__class_type_info::do_upcast): Use it.
16594         (__class_type_info::do_dyncast): Likewise.
16595         (__class_type_info::do_find_public_subobj): Likewise.
16596
16597         * init.c (construct_virtual_bases): Don't look up the addresses of
16598         virtual bases at run-time.
16599
16600         * class.c (build_vbase_pointer): Relocate.
16601         (build_vbase_pointer_fields): Likewise.
16602         (dfs_build_vbase_offset_vtbl_entries): Likewise.
16603         (build_vbase_offset_vtbl_entries): Likewise.
16604
16605         * decl.c (init_decl_processing): Complain if -fnew-abi
16606         -fno-vtable-thunks is used.
16607
16608         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
16609         flag_new_abi.
16610
16611 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
16612
16613         * cp-tree.h (num_extra_vtbl_entries): New function.
16614         (size_extra_vtbl_entries): Likewise.
16615         (dfs_vtable_path_unmark): Likewise.
16616         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
16617         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
16618         * class.c (num_extra_vtbl_entries): New function.
16619         (size_extra_vtbl_entries): Likewise.
16620         (dfs_build_vbase_offset_vtbl_entries): New function.
16621         (build_vbase_offset_vtbl_entries): Likewise.
16622         (build_vtbl_initializer): Use it.
16623         (finish_struct_1): Adjust vtable sizes (using
16624         num_extra_vtbl_entries).
16625         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
16626         THUNK_DECL is non-NULL before expanding it.
16627         * init.c (expand_virtual_init): Adjust the vtable pointer by
16628         size_extra_vtbl_entries before storing it.
16629         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
16630         Handle TREE_LIST parameters here, not in the dfs_* functions.
16631         (dfs_unmarked_real_bases_queue_p): Adjust.
16632         (dfs_marked_real_bases_queue_p): Likewise.
16633         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
16634         (dfs_vtable_path_marked_real_bases_queue_p): New function.
16635         (dfs_vtable_path_unmark): Likewise.
16636
16637 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
16638
16639         * optimize.c (copy_body_r): Clear the operand three of a
16640         TARGET_EXPR when copying it.
16641
16642 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16643
16644         * method.c (build_decl_overload_real): Check whether we are in ::
16645         before returning __builtin_new/delete.
16646
16647 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
16648
16649         * pt.c (tsubst_friend_function): Improve comment.
16650         (instantiate_decl): Avoid crashing when a "nested" function is
16651         instantiated from the top level.
16652
16653         * dump.c (dqeueue_and_dump): Dump
16654         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
16655
16656 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16657
16658         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
16659
16660 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
16661
16662         * g++spec.c (lang_specific_driver): Add -fnew-abi if
16663         ENABLE_NEW_GXX_ABI defined.
16664         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
16665         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
16666         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
16667
16668 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
16669
16670         * decl.c (start_cleanup_fn): Call pushdecl.
16671
16672         * call.c (convert_class_to_reference): Fix typos.
16673         (build_conditional_expr): Handle errors gracefully.
16674         * class.c (push_nested_class): Likewise.
16675         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
16676         (DECL_THIS_EXTERN): Use it.
16677         (DECL_THIS_STATIC): Likewise.
16678         * cvt.c (convert_to_void): Handle errors gracefully.
16679         (build_expr_type_conversion): Likewise.
16680         * decl.c (maybe_push_decl): Likewise.
16681         (start_decl_1): Likewise.
16682         (require_complete_types_for_parms): Likewise.
16683         * parse.y (structsp): Likewise.
16684         (base_class): Likewise.
16685         * parse.c: Regenerated.
16686         * pt.c (finish_member_template_decl): Likewise.
16687         * typeck.c (decay_conversion): Likewise.
16688
16689         * cp-tree.h (dfs_skip_vbases): New function.
16690         (find_vbase_instance): Likewise.
16691         * class.c (determine_primary_base): Allow a nearly empty base to
16692         serve as a primary base class under the new ABI.
16693         (get_class_offset_1): Rename to ...
16694         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
16695         messages here.
16696         (get_class_offset): Use it.  Issue error messages here.
16697         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
16698         find the right copies of virtual bases.
16699         (fixup_vtable_deltas1): Rename to ...
16700         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
16701         bases as primary bases.
16702         (fixup_vtable_deltas): Remove.
16703         (override_one_vtable): Handle virtual bases as primary bases.
16704         (merge_overrides): Likewise.
16705         (finish_struct_1): Likewise.
16706         (dump_class_hierarchy): Dump primary-ness of bases as well.
16707         * search.c (mark_primary_bases): Use a pre-order traversal to
16708         handle primary virtual bases.
16709         (dfs_skip_vbases): New fiunction.
16710         (expand_upcast_fixups): Adjust to handle primary virtual bases.
16711         (fixup_virtual_upcast_offsets): Likewise.
16712         (fixup_all_virtual_upcast_offsets): Likewise.
16713         (dfs_find_vbase_instances): New function.
16714         (find_vbase_instance): Likewise.
16715
16716 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
16717
16718         * lex.c (DIR_SEPARATOR): Delete macro.
16719
16720 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
16721
16722        * decl2.c (lang_decode_option): Handle automatic line wrapping
16723        option.
16724
16725 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
16726
16727         * friend.c (do_friend): Don't resolve scopes when processing
16728         template declarations, even if the qualifying scope doesn't
16729         involve template parameters.
16730
16731 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
16732
16733         * class.c (dfs_modify_vtables_queue_p): Remove.
16734         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
16735         and dfs_marked_real_bases_queue_p instead of
16736         dfs_modify_vtables_queue_p.
16737
16738         * class.c (build_vbase_path): Simplify.
16739         (dfs_propagate_binfo_offsets): New function.
16740         (propagate_binfo_offsets): Use it.
16741         (remove_base_field): Simplify.
16742         (dfs_set_offset_for_vbases): Remove.
16743         (dfs_set_offset_for_shared_vbases): New function.
16744         (dfs_set_offset_for_unshared_vbases): Likewise.
16745         (layout_virtual_bases): Use them.
16746         (layout_basetypes): Don't call propagate_binfo_offsets.
16747         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
16748         for the vbases.
16749
16750         * class.c (build_base_field): New function, split out from ...
16751         (build_base_fields): ... here.  Use it.  Allocate primary bases
16752         first, under the new ABI.
16753         (get_vtable_entry): Remove.
16754         (remove_base_field): New function, split out from ...
16755         (remove_base_fields): ... here.  Adjust since primary bases come
16756         first under the new ABI.
16757
16758         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
16759         (initialize_vtbl_ptrs): New function.
16760         (expand_indirect_vtbls_init): Change prototype.
16761         (convert_pointer_to_vbase): Declare.
16762         * init.c (expand_direct_vtbls_init): Remove.
16763         (dfs_initialize_vtbl_ptrs): New function.
16764         (initialize_vtbl_ptrs): Likewise.
16765         (emit_base_init): Use initialize_vtbl_ptrs.
16766         * search.c (convert_pointer_to_vbase): Make it global.
16767         (expand_indirect_vtbls_init): Remove vtable initialization code.
16768         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
16769
16770         * class.c (dfs_finish_vtbls): New function.
16771         (finish_vtbls): Use it.
16772         (dump_class_hierarchy): New function.
16773
16774         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
16775         (BINFO_VBASE_PRIMARY_P): New macro.
16776         (BINFO_VIRTUALS): Add to documentation.
16777         (SET_BINFO_PRIMARY_MARKED_P): Remove.
16778         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
16779         (dfs_mark_primary_bases_queue_p): Likewise.
16780         (dfs_unmarked_real_bases_queue_p): New function.
16781         (dfs_marked_real_bases_queue_p): Likewise.
16782         * search.c (dfs_mark_primary_bases): Adjust.
16783         (mark_primary_bases): Likewise.
16784         (get_shared_vbase_if_not_primary): New function.
16785         (dfs_unmarked_real_bases_queue_p): Likewise.
16786         (dfs_marked_real_bases_queue_p): Likewise.
16787         (dfs_get_pure_virtuals): Simplify.
16788         (get_pure_virtuals): Likewise.
16789
16790 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16791
16792         * lex.c: Include tm_p.h.
16793
16794 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
16795
16796         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
16797
16798 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
16799
16800         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
16801         * pt.c (instantiate_decl): Defer comdat templates that might not be
16802         needed.
16803
16804         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
16805         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
16806         (finish_file): Likewise.
16807
16808         * decl2.c (import_export_class): Undo 12/14 change.
16809
16810         * error.c (dump_decl): operator new, not operatornew.
16811
16812         * class.c (field_decl_cmp): A nontype is "greater" than a type.
16813         * search.c (lookup_field_1): Look for the last field with the
16814         desired name.
16815
16816 2000-01-05  Nathan Sidwell  <nathan@acm.org>
16817
16818         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
16819         FUNCTION_DECL.
16820
16821 2000-01-05  Nathan Sidwell  <nathan@acm.org>
16822
16823         * typeck.c (build_static_cast): Don't strip target qualifiers
16824         when casting from a class.
16825
16826 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16827
16828         * class.c (warn_hidden): Initialize variable `fndecl'.
16829
16830 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
16831
16832         * decl.c (flag_isoc9x): New variable to be able to use code in
16833         c-common.c.  For now always zero.
16834
16835 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
16836
16837         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
16838         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
16839         or unshare_base_binfos for virtual bases here.
16840         * search.c (dfs_get_vbase_types): Do it here.
16841         (get_vbase_types): Adjust.
16842
16843 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
16844
16845         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
16846         (BINFO_PRIMARY_MARKED_P): Use flag 5.
16847         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
16848         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
16849         (unmark_primary_bases): Remove declaration.
16850         (unmarkedp): Declare.
16851         (dfs_vbase_unmark): Likewise.
16852         * class.c (determine_primary_base): Return immediately if there
16853         are no base classes.  Call mark_primary_bases here.
16854         (modify_all_direct_vtables): Remove.
16855         (modify_all_indirect_vtables): Remove.
16856         (dfs_modify_vtables_queue_p): New function.
16857         (dfs_modify_vtables): New function.
16858         (modify_all_vtables): Use them.
16859         (build_base_fields): Build FIELD_DECLs for primary virtual base
16860         classes.
16861         (create_vtable_ptr): Don't call determine_primary_base here.
16862         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
16863         (dfs_set_offset_for_vbases): ... this.
16864         (layout_virtual_bases): Use it.
16865         (layout_class_type): Call determine_primary_base here.
16866         * search.c (unmarkedp): Make it global.
16867         (shared_marked_p): Simplify.
16868         (shared_unmarked_p): Likewise.
16869         (dfs_primary_bases_queue_p): Remove.
16870         (dfs_unmark_primary_bases): Likewise.
16871         (unmark_primary_bases): Likewise.
16872         (mark_primary_bases): Simplify.
16873         (get_pure_virtuals): Don't call mark_primary_bases here.
16874         (dfs_vbase_unmark): New function.
16875         (get_vbase_types): Simplify.
16876
16877         * class.c (struct base_info): Remove.
16878         (determine_primary_base): Take has_virtual_p rather than a
16879         base_info as input.  Don't calculate max_has_virtual.
16880         (finish_struct_bits): Remove max_has_virtual argument.
16881         (create_vtable_ptr): Remove max_has_virtual_p argument.
16882         (layout_virtual_bases): Remove max argument.
16883         (layout_basetypes): Likewise.
16884         (layout_class_type): Remove max_has_virtual_p argument.
16885         (finish_struct_1): Remove max_has_virtual.
16886
16887         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
16888         (layout_basetypes): Remove.
16889         * class.c (propagate_binfo_offsets): Moved here from tree.c.
16890         Update to handle primary virtual bases.
16891         (remove_base_fields): New function, split out from
16892         layout_basetypes.
16893         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
16894         (layout_virtual_bases): New function, split out from
16895         layout_basetypes.  Update to handle primary virtual bases.
16896         (layout_basetypes): Moved here from tree.c.  Use
16897         remove_base_fields and layout_virtual_bases.
16898         * search.c (dfs_mark_primary_bases_queue_p): New function.
16899         (mark_primary_bases): Use it.
16900         * tree.c (CEIL): Remove.
16901         (propagate_binfo_offsets): Remove.
16902         (layout_basetypes): Remove.
16903
16904 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
16905
16906         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
16907         (BINFO_PRIMARY_MARKED_P): New macro.
16908         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
16909         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
16910         (mark_primary_bases): New function.
16911         (unmark_primary_bases): Likewise.
16912         * search.c (get_abstract_virtuals_1): Remove.
16913         (dfs_mark_primary_bases): New function.
16914         (mark_primary_bases): Likewise.
16915         (dfs_unmark_primary_bases): Likewise.
16916         (unmark_primary_bases): Likewise.
16917         (dfs_get_pure_virtuals): Likewise.
16918
16919 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
16920
16921         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
16922         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
16923         (modify_one_vtable): Adjust.
16924         (fixup_vtable_deltas1): Likewise.
16925         (override_one_vtable): Likewise.
16926         * search.c (get_abstract_virtuals_1): Likewise.
16927         (get_pure_virtuals): Likewise.
16928         (expand_upcast_fixups): Likewise.
16929         * tree.c (debug_binfo): Likewise.
16930
16931         * class.c (build_vtable): Don't return a value.  Don't rebuild
16932         vtables for bases that have already been handled.
16933         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
16934         already been handled.
16935         (modify_one_vtable): Adjust accordingly.
16936         (fixup_vtable_deltas1): Likewise.
16937         (finish_struct_1): Likewise.
16938
16939 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16940
16941         * call.c (build_new_method_call): Also check destructors.