OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
2
3         * typeck.c (build_component_addr): Remove.
4         (build_unary_op): Just check it's not a bitfield, and then build
5         an ADDR_EXPR.
6
7 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
8
9         * class.c (convert_to_base): Correct check for error_mark_node.
10         (create_vtable_ptr): Remove unused VFUNS_P parm.
11
12 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
13
14         * cp/Make-lang.in (c++.mostlyclean): Remove coverage files.
15
16 2002-08-07  Mark Mitchell  <mark@codesourcery.com>
17
18         Rework build_component_ref.
19         * call.c (build_vfield_ref): Do not go through build_component_ref.
20         (build_field_call): Use build_class_member_access_expr.
21         (build_user_type_conversion_1): Use BASELINK_FUNCTIONS.
22         (build_object_call): Likewise.
23         * class.c (convert_to_base): New function.
24         (type_requires_array_cookie): Use BASELINK_FUNCTIONS.
25         (instantiate_type): Handle BASELINKs.
26         * cp-tree.def (BASELINK): New tree code.
27         * cp-tree.h (BASELINK_P): Reimplement.
28         (SET_BASELINK_P): Remove.
29         (BASELINK_BINFO): Reimplement.
30         (BASELINK_FUNCTIONS): Likewise.
31         (BASELINK_ACCESS_BINFO): Likewise.
32         (BASELINK_OPTYPE): Likewise.
33         (convert_to_base): New function.
34         (name_p): Likewise.
35         (build_object_ref): Remove.
36         (build_component_ref_1): Likewise.
37         (build_component_ref): Likewise.
38         (build_x_component_ref): Likewise.
39         (build_class_member_access_expr): New function.
40         (finish_class_member_access_expr): Likewise.
41         (build_ptrmemfunc_access_expr): Likewise.
42         * decl.c (grokdeclarator): Handle BASELINKs.
43         * decl2. (build_expr_from_tree): Handle COMPONENT_REFs by using
44         finish_class_member_access_expr.
45         (arg_assoc): Handle BASELINKs.
46         (do_class_using_decl): Likewise.
47         * error.c (dump_decl): Likewise.
48         (dump_expr): Use build_ptrmemfunc_access_expr.
49         * except.c (dtor_nothrow): Use CLASSTYPE_DESTRUCTORS to find
50         destructors.
51         (build_throw): Use BASELINK_FUNCTIONS.
52         * init.c (perform_member_init): Use
53         build_class_member_access_expr.
54         (build_offset_ref): Handle BASELINKs.  Use
55         build_class_member_access_expr.
56         * method.c (hack_identifier): Likewise.
57         * parse.y (do_id): Use BASELINK, not TREE_LIST.
58         (primary): Remove uses of build_object_ref.
59         * pt.c (lookup_template_function): Handle BASELINKs.
60         (resolve_overloaded_unification): Likewise.
61         * search.c (build_baselink): Build a BASELINK, not a TREE_LIST.
62         (lookup_field): Use BASELINK, not TREE_LIST.
63         (lookup_fnfiels): Likewise.
64         (setup_class_bindings): Likewise.
65         * semantics.c (finish_object_call_expr): Do not use
66         build_method_call when we already know what function is being
67         called.
68         * spew.c (identifier_type): Use BASELINK, not TREE_LIST.
69         * tree.c (really_overloaded_fn): Use OVL_CHAIN for OVERLOADs, not
70         TREE_CHAIN.
71         (name_p): New function.
72         * typeck.c (build_object_ref): Remove.
73         (build_component_ref_1): Likewise.
74         (build_x_component_ref): Likewise.
75         (build_class_member_access_expr): New function.
76         (finish_class_member_access_expr): Likewise.
77         (build_ptrmemfunc_access_expr): Likewise.
78         (get_member_function_from_ptrfunc): Use
79         build_ptrmemfunc_access_expr.
80         (build_binary_op): Likewise.
81         (build_unary_op): Likewise.
82         (build_ptrmemfunc): Likewise.
83         (pfn_from_ptrmemfunc): Likewise.
84         * typeck2.c (build_m_component_ref): Adjust comment.
85         
86 2002-08-07  Neil Booth  <neil@daikokuya.co.uk>
87
88         * Make-lang.in (CXX_C_OBJS): Update.
89         * cp-lang.c (LANG_HOOKS_DECODE_OPTION): Use c_common_decode_option.
90         * cp-tree.h (cxx_decode_option): Remove.
91         * decl2.c (compare_options, lang_f_options, unsupported_options,
92         cxx_decode_option): Remove.
93
94 2002-08-06  Gabriel Dos Reis  <gdr@nerim.net>
95
96         * typeck.c (build_x_unary_op): Handle pointer-to-member.
97
98 2002-08-05  Geoffrey Keating  <geoffk@redhat.com>
99
100         * class.c: Don't include obstack.h.
101         (popclass): 
102         * decl2.c: Delete bogus comment.
103         * error.c: Don't include obstack.h.
104         * except.c: Likewise.
105         (dump_type): Correct comment.
106         * method.c: Don't include obstack.h.
107         * tree.c: Likewise.
108
109 2002-08-04  Gabriel Dos Reis  <gdr@nerim.net>
110
111         Fix PR/2213
112         * cvt.c (cp_convert_to_pointer): Reject conversions from integral
113         expressions to pointer-to-data-member of pointer-to-member-functions.
114
115 2002-08-04  Geoffrey Keating  <geoffk@redhat.com>
116
117         * cvt.c (ocp_convert): Delete obsolete code.
118         * parse.y (permanent_obstack): Delete declaration.
119         * pt.c (permanent_obstack): Delete declaration.
120         * repo.c (permanent_obstack): Delete declaration.
121         (open_repo_file): Use xmalloc instead of permanent_obstack.
122         (init_repo): Use xstrdup instead of permanent_obstack.
123
124 2002-08-04  Nathan Sidwell  <nathan@codesourcery.com>
125
126         * cp-tree.h (VF_DERIVED_VALUE): Remove.
127         * class.c (finish_struct_1): Use VF_BINFO_VALUE not VF_DERIVED_VALUE.
128
129 2002-08-03  Nathan Sidwell  <nathan@codesourcery.com>
130
131         PR 7470.
132         C++ ABI change - vfunc ordering.
133         * class.c (add_virtual_function): Remove.
134         (dfs_modify_all_vtables): Take list of all declared
135         virtuals. Assign all that are not in primary base.
136         (check_for_override): Adjust comments.
137         (create_vtable_ptr): Take single list of virtuals. Build chain
138         of declared virtuals here.
139         (layout_class_type): Take single list of virtuals. Adjust.
140         (finish_struct_1): Keep virtuals on single list. Adjust.
141
142 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
143
144         * init.c (build_member_call): Use build_new_method_call, not
145         build_method_call.
146
147 2002-08-02  Krister Walfridsson  <cato@df.lth.se>
148
149         * Make-lang.in (spew.o, lex.o, pt.o): Add path to parse.h dependencies.
150
151 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
152
153         * call.c (build_method_call): Issue a more helpful error message
154         about ambiguous method names.
155
156 2002-08-02  Nathan Sidwell  <nathan@codesourcery.com>
157
158         * tree.c (build_shared_int_cst): Make cache file scope, and
159         GTY it.
160
161 2002-08-02  Jason Merrill  <jason@redhat.com>
162
163         * cp-lang.c (LANG_HOOKS_EXPR_SIZE): Define.
164         (cp_expr_size): New fn.
165         * call.c (build_over_call): Lose empty class hackery.
166         (convert_arg_to_ellipsis): Promote non-POD warning to error.
167         * typeck.c (build_modify_expr): Don't use save_expr on an lvalue.
168
169         * semantics.c (expand_body): Do tree optimization in the function
170         context, too.
171
172 2002-08-01  Neil Booth  <neil@daikokuya.co.uk>
173
174         * cp-tree.h: Move all warning and flag declarations to c-common.h.
175         * decl.c: Move all warning and flag variables to c-common.c.
176         * decl2.c: Move all warning and flag variables to c-common.c.
177         * lex.c (flag_digraphs): Remove.
178         (warn_traditional): Now in c-common.c.
179
180 2002-07-31  Mark Mitchell  <mark@codesourcery.com>
181
182         * call.c (build_field_call): Do not look up the field by name.
183         (build_method_call): Simplify.
184         (struct z_candidate): Add access_path and conversion_path.  Remove
185         basetype_path.
186         (convert_class_to_reference): Adjust use of
187         add_function_candidate.
188         (add_candidate): Add conversion_path argument.
189         (add_function_candidate): Use it.
190         (add_conv_dndidate): Likewise.
191         (build_builtin_candidate): Likewise.
192         (add_template_candidate_real): Add conversion_path argument.
193         (add_template_conv_candidate): Likewise.
194         (add_template_candidate): Likewise.
195         (build_user_type_conversion_1): Use it.
196         (build_new_function_call): Remove name lookup code.  Adjust use of
197         add_template_candidate and add_function_candidate.
198         (build_new_op): Likewise.
199         (convert_like_real): Use build_special_member_call.
200         (build_over_call): Use cand->conversion_path.
201         (build_special_member_call): New method.
202         (build_new_method_call): Remove name lookup code.
203         * cp-tree.def (OFFSET_REF): Update documentation.
204         (TEMPLATE_ID_EXPR): Likewise.
205         * cp-tree.h (BASELINK_ACCESS_BINFO): New macro.
206         (BASELINK_OPTYPE): Likewise.
207         (build_new_method_call): Adjust prototype.
208         (build_special_member_call): New method.
209         (build_baselink): New method.
210         (build_offset_ref_call_from_tree): Likewise.
211         (build_call_from_tree): Likewise.
212         (finish_qualified_call_expr): Remove.
213         (finish_call_expr): Adjust prototype.
214         (build_x_function_call): Remove.
215         * cvt.c (ocp_convert): Use build_special_member_call.
216         * decl2.c (reparse_absdcl_as_expr): Use finish_call_expr.
217         (build_expr_from_tree): Adjust handling for TEMPLATE_ID_EXPR and
218         CALL_EXPR.
219         (build_offset_ref_call_from_tree): New function.
220         (build_call_from_tree): Likewise.
221         * init.c (expand_cleanup): Use build_special_member_call.
222         (expand_default_init): Likewise.
223         (build_member_call): Use finish_call_expr.
224         (build_new_1): Use build_special_member_call.
225         (push_base_cleanups): Likewise.
226         * method.c (do_build_assign_ref): Likewise.
227         * parse.y (template_id): Do not pass a COMPONENT_REF to
228         lookup_template_function.
229         (primary): Use parse_finish_call_epxr, not finish_call_expr.
230         (parse_finish_call_expr): New function.
231         * pt.c (lookup_template_function): Add assertions.
232         * search.c (lookup_base): Allow T to be a binfo.
233         (build_baselink): New function.
234         (lookup_member): Use it.
235         * semantics.c (finish_call_expr): Do not do name lookup.
236         (finish_object_call_expr): Remove #if 0'd code.
237         (finish_qualified_call_expr): Remove.
238         * typeck.c (build_x_function_call): Remove.
239         (build_static_case): Use build_special_member_call.
240         * typeck2.c (build_functional_cast): Likewise.
241         
242 2002-07-30  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
243
244         * lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c.
245
246 2002-07-30  Gabriel Dos Reis  <gdr@nerim.net>
247
248         * cp-tree.h (VF_DERIVED_VALUE): Restore from previous deletion.
249
250 2002-07-30  Nathan Sidwell  <nathan@codesourcery.com>
251
252         * cp-tree.h (CLASSTYPE_VFIELDS, VF_*, BV_*): Add more
253         documentation.
254
255 2002-07-29  Alan Modra  <amodra@bigpond.net.au>
256
257         * cp-tree.h: Comment typo fix.
258
259 2002-07-29  Richard Earnshaw  <rearnsha@arm.com>
260
261         * spew.c (space_for_token): Allocate zeroed memory for a new token
262         chunk.
263
264 2002-07-27  Roger Sayle  <roger@eyesopen.com>
265
266         * decl.c (builtin_function_1): No need to explicitly mark
267         BUILT_IN_RETURN and BUILT_IN_EH_RETURN as noreturn.
268
269 2002-07-27  Roger Sayle  <roger@eyesopen.com>
270
271         * decl2.c (cxx_decode_option): Support -fno-builtin-foo.
272
273 2002-07-26  Jason Merrill  <jason@redhat.com>
274
275         * call.c (build_over_call): Likewise.
276         (cp_convert_parm_for_inlining): New fn.
277         (convert_for_arg_passing): New fn.
278         (convert_default_arg, build_over_call): Use it.
279         (type_passed_as): New fn.
280         * pt.c (tsubst_decl): Use it.
281         * decl2.c (cp_build_parm_decl): New fn.
282         (build_artificial_parm): Use it.
283         (start_static_storage_duration_function): Likewise.
284         * decl.c (start_cleanup_fn, grokdeclarater): Likewise.
285         (grokparms): Don't mess with DECL_ARG_TYPE.
286         * typeck.c (convert_arguments): Use convert_for_arg_passing.
287         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
288         Define.
289         * cp-tree.h: Declare new fns.
290         
291 2002-07-26  Neil Booth  <neil@daikokuya.co.uk>
292
293         * cp-tree.h (flag_operator_names): Remove.
294         * decl2.c (flag_operator_names): Remove.
295         (lang_f_options): Remove operator-names.
296         * lex.c (D_OPNAME): Remove.
297         (reswords): Remove operator names.
298         (rid_to_yy): Remove operator names.
299         (init_reswords): No need to handle D_OPNAME.
300         * spew.c (read_process_identifier): There are no operator
301         names.
302
303 2002-07-26  Jason Merrill  <jason@redhat.com>
304
305         * dump.c (cp_dump_tree): Call c_dump_tree.
306         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
307
308 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
309
310         * error.c (print_whitespace): Remove.
311         * g++spec.c (LIBUNWIND): Move.
312         * mangle.c (mangled_position, write_signed_number): Remove.
313
314 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
315
316         * decl2.c (cxx_decode_option): Similarly.
317
318 2002-07-25  Gabriel Dos Reis  <gdr@nerim.net>
319
320         * cp-tree.h (cxx_sizeof_nowarn): Now a macro.
321         (cxx_sizeof_or_alignof_type): Take a third argument.
322         (cxx_sizeof): Adjust definition.
323         (cxx_alignof): Likewise.
324         * init.c (build_delete): Use cxx_sizeof_nowarn to reflect reality.
325         * typeck.c (cxx_sizeof_or_alignof_type): Take a third argument for
326         complaining.
327         (c_sizeof_nowarn): Remove definition.
328         (build_unary_op): Use cxx_sizeof_nowarn.
329
330 2002-07-24  Geoffrey Keating  <geoffk@redhat.com>
331
332         * tree.c (cp_build_qualified_type_real): When copying
333         pointer-to-method types, unshare the record that holds
334         the cached pointer-to-member-function type.
335
336 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
337
338         * cp-tree.h (FILE_FUNCTION_PREFIX_LEN): Remove.
339
340 2002-07-23  Gabriel Dos Reis  <gdr@nerim.net>
341
342         Fix PR/7363:
343         * typeck.c (cxx_sizeof_or_alignof_type): New function.
344         (c_sizeof): Remove definition.
345         (expr_sizeof): Use cxx_sizeof.
346         * decl2.c (build_expr_from_tree): Use cxx_sizeof_or_alignof_type.
347         * decl.c (finish_destructor_body): Use cxx_sizeof.
348         * semantics.c (finish_alignof): Likewise.
349         (finish_alignof): Use cxx_alignof.
350         * cp-tree.h (cxx_sizeof, cxx_alignof): New macros.
351         (cxx_sizeof_or_alignof_type): Declare.
352         (my_friendly_assert): Move to ../c-common.h.
353
354 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
355
356         * class.c, method.c, pt.c, search.c: Don't define obstack macros.
357
358 2002-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
359
360         PR c++/7347, c++/7348
361         * cp-tree.h (tsubst_flags_t): Add tf_parsing.
362         * decl.c (make_typename_type): Use it.
363         (make_unbound_class_template): Likewise.
364         (lookup_name_real): Don't call type_access_control if scope is
365         template parameter dependent.
366         * parse.y (template_arg): Call make_unbound_class_template with
367         tf_parsing set.
368         (nest_name_specifier): Call make_typename_type with tf_parsing set.
369         (typename_sub0): Likewise.
370         (typename_sub1): Likewise.
371         (instantiate_decl): Push class scope.
372         * pt.c (regenerate_decl_from_template): Call pushclass and popclass
373         for both static variable and member function template.
374         (instantiate_decl) Call pushclass and popclass when tsubst'ing type
375         and arguments.
376         * search.c (type_access_control): Do type access for TEMPLATE_DECL
377         too.
378
379 2002-07-20  Roger Sayle  <roger@eyesopen.com>
380
381         * decl2.c (cxx_decode_option): Simplify -fhandle-exceptions
382         test by using positive_option.  Make whitespace consistent.
383
384 2002-07-20  Gabriel Dos Reis  <gdr@nerim.net>
385
386         * spew.c (struct unparsed_test): Replace 'filename' and 'lineno'
387         members with 'locus'.  Adjust use throughout.
388         (struct feed):  Likewise.
389         (alloc_unparsed_test): Change prototype, take a 'const location_t *'.
390         Adjust use.
391         (snarf_defarg): Use error(), not error_with_file_and_line().
392
393 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
394
395         * lang-specs.h (@c++): Include "%2" (cc1plus_spec) wherever
396         cpp_options is included.
397
398 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
399
400         PR c++/2862, c++/2863
401         * pt.c (determine_specialization): Compare the length of
402         TYPE_ARG_TYPES.  Tidy.
403
404 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
405
406         PR c++/3797
407         * decl.c (duplicate_decls): Don't propagate inlining parameters from
408         olddecl to newdecl when newdecl is a specialization of the 
409         instantiation olddecl.
410
411 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
412
413         PR c++/4802, c++/5387
414         * decl.c (make_typename_type): Use enforce_access.
415
416 2002-07-17  Scott Snyder <snyder@fnal.gov>
417
418         PR c++/7320
419         * rtti.c (get_tinfo_decl): Set DECL_COMDAT.
420
421 2002-07-12  Mark Mitchell  <mark@codesourcery.com>
422
423         * class.c (add_method): Correct handling of conversion operators.
424
425 2002-07-11  Mark Mitchell  <mark@codesourcery.com>
426
427         PR c++/7224
428         * class.c (add_method): Simplify.
429
430 2002-07-11  Jason Merrill  <jason@redhat.com>
431
432         PR c++/7279
433         * tree.c (cp_copy_res_decl_for_inlining): Also copy
434         TREE_ADDRESSABLE.
435
436 2002-07-10  Graham Stott  <graham.stott@btinternet.com>
437
438         * pt.c (template_parm_this_level_p, push_template_decl_real):
439         Pass depth as int pointer. 
440
441 2002-07-11  Tim Josling  <tej@melbpc.org.au>
442
443         Remove front end hard coding from gengtype.c.  
444
445         * config-lang.in (gtfiles): Add files needed for this front end.
446
447 2002-07-10  Mark Mitchell  <mark@codesourcery.com>
448
449         * cp-tree.h (unqualified_name_lookup_error): Declare it.
450         (begin_function_definition): Adjust prototype.
451         * lex.c (unqualified_name_lookup_error): New function, split out
452         from ...
453         (do_identifier): ... here.
454         * parse.y (parse_begin_function_definition): New function.
455         (fn.def1): Use it.
456         * semantics.c (begin_function_definition): Accept decl-specifiers
457         and attributes as separate parameters.
458
459 2002-07-10  Jason Merrill  <jason@redhat.com>
460
461         PR c++/6255
462         * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
463         modifying the old one.
464
465 2002-07-09  Mark Mitchell  <mark@codesourcery.com>
466
467         * cp-tree.h (constructor_name_p): Declare it.
468         (check_template_template_default_arg): Likewise.
469         * class.c (handle_using_decl): Use constructor_name_p.
470         * decl.c (grokdeclarator): Likewise.
471         * decl2.c (constructor_name_p): Define it.
472         * init.c (build_member_call): Use constructor_name_p.
473         * parse.y (template_parm): Use check_template_template_default_arg.
474         * pt.c (check_explicit_specialization): Use constructor_name_p.
475         * semantics.c (check_template_template_default_arg): New function.
476         
477 2002-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
478
479         * pt.c (can_complete_type_without_circularity): Add static to
480         function definition.
481
482 2002-07-08  Mark Mitchell  <mark@codesourcery.com>
483
484         * cp-tree.h (have_extern_spec): Declare it
485         * decl.c (have_extern_spec): Define it.
486         (start_decl): Eliminate use of used_extern_spec.
487         (start_function): Likewise.
488         * parse.y (have_extern_spec): Remove declaration.
489         (used_extern_spec): Likewise.
490         (frob_specs): Eliminate use of used_extern_spec.
491         (.hush_warning): Likewise.
492
493 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
494
495         * Make-lang.in (cp/parse.o): Depend on decl.h.
496         * cp-tree.h (do_decl_instantiation): Change prototype.
497         * parse.y: Include decl.h.
498         (parse_decl_instantiation): New function.
499         (explicit_instantiation): Use it.
500         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
501         and DECLSPECS.
502         
503 2002-07-07  Roger Sayle  <roger@eyesopen.com>
504
505         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
506         constructor and destructor tests when passed a TEMPLATE_DECL.
507
508 2002-07-05  Jason Merrill  <jason@redhat.com>
509
510         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
511         pointers.
512
513         PR optimization/7145
514         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
515
516 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
517
518         Repair damage on weak-impared targets caused by my previous patch.
519         * cp-tree.h (import_export_tinfo): Add parameter.
520         * decl2.c (import_export_tinfo): Add parameter, post adjust
521         DECL_COMDAT.
522         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
523         import_export_tinfo.
524
525 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
526
527         PR c++/6944
528         * init.c (build_aggr_init): Remove qualifiers of init before calling
529         build_vec_init.
530         (build_vec_init): Flatten multi-dimensional array during cleanup.
531         (build_vec_delete_1): Abort if the type of each element is array.
532
533 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
534
535         * pt.c (instantiate_class_template): Fix typo.
536
537 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
538
539         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
540         by CVS conflict in my last patch.
541
542 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
543
544         PR c++/6716
545         * pt.c (can_complete_type_without_circularity): New function.
546         (instantiate_class_template): Use it.
547         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
548         message due to incomplete fields.
549
550 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
551
552         PR c++/7112
553         * mangle.c (write_expression): Add mangling for sizeof when
554         applied to a type.
555         * operators.def: Remove stale comment.
556
557 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
558
559         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
560         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
561         (tinfo_decl_type): Replace with ...
562         (type_info_ptr_type): ... this.
563         (import_export_tinfo): Declare.
564         (tinfo_decl_p): Rename to ...
565         (unemitted_tinfo_decl_p): ... this.
566         * decl2.c (import_export_decl): Break out tinfo handling into ...
567         (import_export_tinfo): ... here. New function.
568         (finish_file): Adjust.
569         * rtti.c (TINFO_REAL_NAME): New macro.
570         (init_rtti_processing): Create the tinfo types.
571         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
572         (get_tinfo_decl): Adjust.
573         (get_tinfo_ptr): New function.
574         (get_type_id): Use it.
575         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
576         (ptr_initializer): Use get_tinfo_ptr.
577         (ptm_initializer): Likewise.
578         (synthesize_tinfo_var): Break into ...
579         (get_pseudo_ti_init): ... this. Just create the initializer.
580         (get_pseudo_ti_desc): .. and this.
581         (create_real_tinfo_var): Remove.
582         (create_pseudo_type_info): Don't create the vtable decl here.
583         (get_vmi_pseudo_type_info): Remove.
584         (create_tinfo_types): Adjust.
585         (tinfo_decl_p): Rename to ...
586         (unemitted_tinfo_decl_p): ... here. Adjust.
587         (emit_tinfo_decl): Adjust. Create the initializer.
588
589 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
590
591         PR c++/6695
592         * pt.c (tsubst_friend_class): Substitute into the context of the
593         friend before using it.
594
595 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
596
597         * cp-tree.h (xref_tag): Change prototype.
598         (handle_class_head): Likewise.
599         (build_x_component_ref): Likewise.
600         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
601         (xref_tag): Take attributes as a separate parameter.
602         (xref_tag_from_type): Adjust call to xref_tag.
603         * decl2.c (build_expr_from_tree): Adjust call to
604         build_x_component_ref.
605         (handle_class_head): Take attributes as a separate parameter.
606         * parse.y (parse_xref_tag): New function.
607         (parse_handle_class_head): Likewise.
608         (primary): Use parse_xref_tag.
609         (class_head_decl): Use parse_handle_class_head.
610         (class_head_defn): Likewise.
611         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
612         (build_dynamic_cast_1): Likewise.
613         (create_pseudo_type_info): Likewise.
614         (emit_support_tinfos): Likewise.
615         * typeck.c (build_object_ref): Adjust call to
616         build_x_component_ref.
617         (build_x_component_ref): Remove protect parameter.
618         
619 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
620
621         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
622         * class.c (handle_using_decl): Likewise.
623         (instantiate_type): Likewise.
624         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
625         (xref_basetypes): Change prototype.
626         (begin_mem_initializers): New function.
627         (get_overloaded_fn): Likewise.
628         * decl.c (xref_basetypes): Simplify.
629         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
630         * init.c (build_offset_ref): Likewise.
631         * parse.y (base_init): Use begin_mem_initializers().
632         (structsp): Adjust call to xref_basetypes.
633         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
634         (instantiate_class_template): Adjust call to xref_basetypes.
635         * semantics.c (begin_mem_initializers): New function.
636         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
637         (really_overlaoded_fn): Likewise.
638         (get_overloaded_fn): New function.'
639         (get_first_fn): USe BASELINK_FUNCTIONS.
640         
641 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
642
643         * cp-tree.h (SCALAR_TYPE_P): New macro.
644         (check_for_out_of_scope_variable): New function.
645         (at_class_scope_p): Likewise.
646         (finish_fname): Likewise.
647         * class.c (finish_struct): Use at_function_scope_p.
648         * decl.c (check_for_out_of_scope_variable): New function, split
649         out from do_identifier.
650         (finish_enum): Use at_function_scope_p.
651         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
652         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
653         (primary): Use at_function_scope_p.
654         * search.c (at_class_scope_p): New function.
655         * semantics.c (finish_fname): Likewise.
656         (check_multiple_declarators): Use at_function_scope_p.
657         
658 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
659
660         * parse.y (parse_scoped_id): New function.
661         (primary): Use it.
662         * cp-tree.h (do_scoped_id): Adjust declaration.
663         * lex.c (do_scoped_id): Remove call to yylex.
664         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
665         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
666         expanding it inline.
667         
668 2002-06-23  Matt Thomas  <matt@3am-software.com>
669
670         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
671         "#if VMS_TARGET".
672
673 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
674
675         * mangle.c (integer_type_codes): Const-ify.
676
677 2002-06-20  Richard Henderson  <rth@redhat.com>
678
679         PR c++/6747
680         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
681         Call put_var_into_stack.
682
683 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
684
685         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
686         array size calculation.
687
688 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
689
690         PR c++/6892
691         * pt.c (tsubst_expr): Handle FILE_STMT.
692
693 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
694
695         PR c++/6723
696         * pt.c (lookup_template_class): Don't build complete argument of
697         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
698         argument.
699
700 2002-06-19  Akim Demaille  <akim@epita.fr>
701
702         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
703         decl.h's TYPENAME.
704         * spew.c, lex.c: Adjust.
705         * parse.y (explicit_instantiation): Add empty action to override
706         the default $$ = $1 where it introduces a type clash.
707
708 2002-06-14  Jason Merrill  <jason@redhat.com>
709
710         * semantics.c (begin_for_stmt): Push the 'for' scope before
711         adding the FOR_STMT.
712
713         C++ ABI changes.
714         * class.c (build_base_field): Set DECL_PACKED.
715         (layout_class_type): Don't use tail padding of PODs.
716         * mangle.c (write_unqualified_name): Fix template conversion op
717         mangling.
718
719 2002-06-16  Richard Henderson  <rth@redhat.com>
720
721         PR opt/6793
722         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
723         after template instantiation.
724
725 2002-06-16  Richard Henderson  <rth@redhat.com>
726
727         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
728
729 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
730
731         * cp-tree.h (compiler_error): Remove declaration.
732         * lex.c (compiler_error): Remove definition.
733
734 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
735
736         * g++spec.c (LIBUNWIND): New.
737         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
738
739 2002-06-13  Jessica Han  <jessica@cup.hp.com>
740
741         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
742         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
743         (build_vbase_offset_vtbl_entries): Likewise.
744         * rtti.c (build_headof): Likewise.
745         (get_tinfo_decl_dynamic): Likewise.
746         (create_pseudo_type_info): Likewise.
747
748 2002-06-12  Stan Shebs  <shebs@apple.com>
749
750         * mpw-config.in: Remove file, no longer used.
751         * mpw-make.sed: Ditto.
752
753 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
754
755         * decl2.c: Update call to cpp_handle_option.
756
757 2002-06-07  H.J. Lu  (hjl@gnu.org)
758
759         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
760
761 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
762
763         * error.c (cp_error_at): Fix typo.
764
765 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
766
767         * error.c (cp_diagnostic_starter): Adjust call.
768         (maybe_print_instantiation_context): Change prototype to take a
769         'diagnostic_info *'.
770         (print_instantiation_full_context): Likewise.
771         (print_instantiation_partial_context): Likewise.
772         (cp_diagnostic_starter): Likewise.
773         (cp_diagnostic_finalizer): Likewise.
774         (cp_print_error_function): Likewise.
775         (cp_printer): Take a secondary parameter as a 'text_info *'.
776         Remove output_state savings.  Adjust calls.
777
778 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
779
780         * pt.c (inline_parm_levels): Mark for GC.
781
782         * mangle.c (start_mangling): Allocate G.substitutions here...
783         (init_mangle): ... rather than here.
784         (finish_mangling): Clear the varray pointer when done with it.
785         * spew.c (yylexstring): Don't use VARRAY_FREE.
786         * search.c (bfs_walk): Don't use VARRAY_FREE.
787         * decl2.c (pending_statics): Use gengtype to mark.
788         (deferred_fns): Likewise.
789         (ssdf_decls): Likewise.
790         (init_decl2): Delete.
791         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
792         (cxx_init_decl_processing): Don't call init_decl2.
793         (cxx_pop_function_context): Don't use VARRAY_FREE.
794         * cp-tree.h (struct saved_scope): No need for special marking
795         of varrays.
796         (struct language_function): Likewise.
797         (local_classes): Use gengtype to mark.
798         (init_decl2): Delete prototype.
799         * class.c (init_class_processing): Don't use
800         ggc_add_tree_varray_root.
801         (build_vtbl_initializer): Don't use VARRAY_FREE.
802
803         * decl.c (typename_compare): Don't use same_type_p.
804
805         * decl.c: Include hashtab.h instead of hash.h.
806         (typename_hash): Update to use htab_h.
807         (typename_compare): Likewise.
808         (typename_htab): Use gengtype to mark.
809         (build_typename_type): Update to use htab_h.
810         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
811
812         * Make-lang.in (gt-cp-tree.h): New rule.
813         (cp/tree.o): Depend on gt-cp-tree.h.
814         * config-lang.in (gtfiles): Add cp/tree.c.
815         * tree.c: Include gt-cp-tree.h.
816         (list_hash_table): Use gengtype to mark.
817         (init_tree): Use gengtype to mark trees.
818
819         * Make-lang.in (cp/decl.o): Add debug.h dependency.
820         * call.c (struct z_candidate): Use gengtype.
821         (USER_CONV_CAND): Use WRAPPER_ZC.
822         (convert_class_to_reference): Use build_zc_wrapper.
823         (build_type_conversion_1): Likewise.
824         (build_over_call): Use WRAPPER_ZC.
825         (add_warning): Use build_zc_wrapper.
826         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
827         * cp-tree.h (struct lang_identifier): Use gengtype.
828         (struct template_parm_index_s): Likewise.
829         (struct ptrmem_cst): Likewise.
830         (struct tree_binding): Likewise.
831         (struct tree_overload): Likewise.
832         (struct tree_srcloc): Likewise.
833         (struct tree_wrapper): Likewise.  Also modify to have a pointer
834         to struct z_candidate rather than void.
835         (enum cp_tree_node_structure_enum): New.
836         (union lang_tree_node): New.
837         (cxx_mark_tree): Delete prototype.
838         (cp_tree_node_structure): New prototype.
839         (build_ptr_wrapper): Delete prototype.
840         (build_int_wrapper): Delete prototype.
841         (build_zc_wrapper): New prototype.
842         * decl.c: Include debug.h
843         (cxx_mark_tree): Delete.
844         (cp_tree_node_structure): New.
845         * tree.c (build_ptr_wrapper): Delete.
846         (build_int_wrapper): Delete.
847         (build_zc_wrapper): New.
848
849         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
850         Correct typo.  Patch from k_fukui@highway.ne.jp.
851
852         * semantics.c (current_stmt_tree): Update for change to
853         struct language_function.
854         (finish_mem_initializers): Likewise.
855         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
856         * cp-tree.h (struct language_function): Rename from
857         cp_language_function.  Change all uses.
858         (cp_function_chain): Don't need to cast.
859
860         * class.c (duplicate_tag_error): Reset discriminator.
861         (check_bases_and_members): Update for data structure changes.
862         * cp-tree.h (struct lang_id2): Use gengtype.
863         (flagged_type_tree): Likewise.
864         (SET_LANG_ID): Use GGC on struct lang_id2.
865         (struct cp_language_function): Use gengtype.  Remove field
866         'x_vcalls_possible_p'.
867         (current_vcalls_possible_p): Delete.
868         (struct lang_type_header): New.
869         (struct lang_type_class): Rename from struct lang_type.  Include
870         struct lang_type_header.
871         (struct lang_type_ptrmem): New.
872         (struct lang_type): New.
873         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
874         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
875         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
876         (struct lang_decl_flags): Use gengtype.  Add discriminators.
877         (struct lang_decl): Use gengtype.  Add and use discriminators.
878         Update the macros that reference moved fields.
879         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
880         (SET_DECL_THUNK_P): Set discriminator too.
881         (clear_inline_text_obstack): Delete prototype.
882         (finish_inline_definitions): Delete prototype.
883         (mark_pending_inlines): Delete prototype.
884         (lang_check_failed): New prototype.
885         * decl.c (struct named_label_use_list): Use gengtype.
886         (struct named_label_list): Likewise.
887         (mark_binding_level): Delete.
888         (mark_named_label_lists): Delete.
889         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
890         (cxx_init_decl_processing): Use generated marker routine.
891         (begin_destructor_body): Delete dead set to
892         current_vcalls_possible_p.
893         (mark_lang_function): Delete.
894         (mark_cp_function_context): Delete.
895         (lang_mark_tree): Use generated marker routines.
896         * decl2.c (start_objects): Set discriminator when setting
897         GLOBAL_INIT_PRIORITY.
898         * lex.c (retrofit_lang_decl): Set discriminators.
899         (copy_lang_type): Update for changes to lang_type structure.
900         (cp_make_lang_type): Set discriminator.
901         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
902         * search.c: Include ggc.h.
903         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
904         (finish_inline_definitions): Delete.
905         * spew.c (struct token): Use gengtype.
906         (struct token_chunk): New.
907         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
908         (struct feed): Use gengtype.
909         (feed_obstack): Delete.
910         (feed): Mark as GC root.
911         (pending_inlines): Mark as GC root.
912         (pending_inlines_tail): Likewise.
913         (processing_these_inlines): Likewise.
914         (token_obstack): Make static.
915         (first_token): Likewise.
916         (init_spew): Don't initialise deleted things; use gengtype for roots.
917         (clear_inline_text_obstack): Delete.
918         (feed_input): Use GC for struct feed.  Update for changes to
919         struct unparsed_text.
920         (mark_pending_inlines): Delete.
921         (next_token): Rename from add_token.  Change all callers.  Update
922         for changes to struct unparsed_text.
923         (space_for_token): New.
924         (remove_last_token): New.
925         (alloc_unparsed_text): New.
926         (snarf_block): Take an unparsed_text.  Update for changes to struct
927         unparsed_text.
928         (snarf_method): Update for changes to struct unparsed_text.
929         (snarf_defarg): Update for changes to struct unparsed_text.
930         * tree.c (lang_check_failed): New.
931
932         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
933         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
934         (cp/spew.o): Add dependency on gt-<filename>.h.
935         (cp/decl2.o): Add dependency on gt-<filename>.h.
936         (cp/call.o): Add dependency on gt-<filename>.h.
937         (cp/pt.o): Add dependency on gt-<filename>.h.
938         (cp/repo.o): Add dependency on gt-<filename>.h.
939         (cp/parse.o): Add dependency on gt-<filename>.h.
940         * call.c: Use gengtype for roots.
941         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
942         decl2.c parse.y pt.c repo.c spew.c.
943         * cp-tree.h: Use gengtype for roots.
944         (struct saved_scope): Use GGC, gengtype.
945         (cp_parse_init): Delete prototype.
946         (init_pt): Delete prototype.
947         * decl.c: Use gengtype for roots.
948         (mark_saved_scope): Delete.
949         (cxx_init_decl_processing): Don't call deleted initilisation
950         routines.
951         (signed_size_zero_node): Delete, unused.
952         * decl.h: Use gengtype for roots.
953         * decl2.c: Use gengtype for roots.
954         * lex.h: Use gengtype for roots.
955         * parse.y: Use gengtype for roots.
956         (cp_parse_init): Delete.
957         * pt.c: Use gengtype for roots.
958         (init_pt): Delete.
959         * repo.c: Use gengtype for roots.
960         * spew.c: Use gengtype for roots.
961
962         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
963         (cp/decl.o): Add dependency on gtype-cp.h.
964         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
965         Include gtype-cp.h.  Allow for filename changes.
966
967         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
968         (cp/decl.o): Add cp/gt-decl.h dependency.
969         * config-lang.in (gtfiles): New.
970         * tree.h: Rename struct binding_level to struct cp_binding_level.
971         * decl.c: Rename struct binding_level to struct cp_binding_level.
972         Include cp/gt-decl.h.
973         (struct cp_binding_level): Use gengtype.
974         (make_binding_level): Use GGC on struct cp_binding_level.
975         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
976         (cxx_init_decl_processing): Mark free_binding_level as
977         deletable.
978
979         * decl.c (mark_cp_function_context): Update calling sequence.
980
981         * decl.c (start_function): Don't free 'struct
982         cp_language_function'.
983         (pop_cp_function_context): Likewise.
984         (save_function_data): Allocate it using GC.
985         * semantics.c (genrtl_start_function): Don't free 'struct
986         cp_language_function'.
987
988 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
989
990         * lang-specs.h: Use cpp_debug_options.
991
992 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
993
994         * mangle.c, tree.c: Include real.h.
995         * Make-lang.in: Update dependency lists.
996
997 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
998
999         * lex.c: Don't include c-lex.h.
1000         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
1001
1002 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
1003
1004         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
1005
1006 2002-05-22  Richard Henderson  <rth@redhat.com>
1007
1008         * decl.c (obscure_complex_init): Check for VAR_DECL
1009         before using DECL_THREAD_LOCAL.
1010
1011 2002-05-22  Richard Henderson  <rth@redhat.com>
1012
1013         * decl.c (check_tag_decl): Handle RID_THREAD.
1014         (obscure_complex_init): Reject run-time init of tls.
1015         (grokvardecl, grokdeclarator): Handle RID_THREAD.
1016         * lex.c (reswords): Add __thread.
1017         (rid_to_yy): Map RID_THREAD to SCSPEC.
1018
1019 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
1020
1021         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
1022         * cp-tree.h (cxx_post_options): Kill.
1023         * cp-lex.c (cxx_post_options): Kill.
1024
1025 2002-05-21  Richard Henderson  <rth@redhat.com>
1026
1027         * lex.c (rid_to_yy): Add RID_THREAD.
1028
1029 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
1030
1031         * init.c (build_vec_init): Test for trivial copy-assignment when
1032         copy-assigning arrays.
1033
1034 2002-05-20  Andreas Jaeger  <aj@suse.de>
1035
1036         * init.c (build_default_init): Remove unused variable.
1037
1038 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
1039
1040         * call.c (any_strictly_viable): New.
1041         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
1042
1043 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1044
1045         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
1046
1047 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1048
1049         PR c++/186, DR 259
1050         * pt.c (do_decl_instantiation): Don't complain explicit
1051         instantiation after explicit specialization.
1052         (do_type_instantiation): Likewise.
1053
1054 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
1055
1056         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
1057         renamed from...
1058         (complete_type_or_else): ... this.  Redefined as macro.
1059         (cxx_incomplete_type_diagnostic): Declare.
1060         (cxx_incomplete_type_error): Define as macro.
1061         * init.c (build_delete): Warn about incomplete types other than
1062         void, and use the built-in operator delete for them.
1063         * typeck.c (complete_type_or_diagnostic): Renamed from
1064         complete_type_or_else.  Added warn_only argument, passed to...
1065         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
1066         warnings or errors depending on new warn_only argument.  Renamed
1067         from...
1068         (cxx_incomplete_type_error): ... this.  New implementation in
1069         terms of cxx_incomplete_type_diagnostic.
1070
1071 2002-05-18  Jason Merrill  <jason@redhat.com>
1072
1073         PR c++/6611
1074         * decl2.c (import_export_decl): If we clear
1075         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
1076
1077 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1078
1079         PR c++/6620
1080         * pt.c (verify_class_unification): Don't check if PARM is template
1081         parameter dependent.  Simplify.
1082         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
1083         parameter dependent expression.
1084
1085 2002-05-14  Jason Merrill  <jason@redhat.com>
1086
1087         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
1088         Do set DECL_COMDAT.
1089         (synthesize_tinfo_var): Take the public decl.
1090         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
1091         (emit_tinfo_decl): Adjust.  Call import_export_decl.
1092         * decl2.c (import_export_decl): Simplify tinfo decl handling.
1093
1094 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
1095
1096         * cp-tree.h (struct lang_type): Added non_zero_init.
1097         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
1098         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
1099         * class.c (check_field_decls): Test non_zero_init.
1100         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
1101         zero-to-NULL conversions.
1102         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
1103         type that needs zero-initialization without zeros.
1104         (check_initializer_decl): Compute zero-initializer for types
1105         that require a non-trivial one.
1106         * init.c (build_forced_zero_init): New function.
1107         (build_default_init): Use it.
1108         * tree.c (zero_init_p): New function.
1109         * typeck2.c (force_store_init_value): New function.
1110         (process_init_constructor): Create non-trivial zero-initializers
1111         for array members and class fields.
1112
1113 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
1114
1115         * lang-specs.h: Remove redundant -lang-c++.
1116
1117 2002-05-13  Jason Merrill  <jason@redhat.com>
1118
1119         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
1120         (fixed_type_or_null): See through reference vars.
1121         (build_base_path): Vtable contents are constant.
1122         * typeck.c (get_member_function_from_ptrfunc): Likewise.
1123
1124 2002-05-12  Jason Merrill  <jason@redhat.com>
1125
1126         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
1127         structs are safe.
1128
1129 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
1130
1131         * cp-tree.h (flag_ansi): Remove.
1132         * decl2.c (flag_ansi): Remove.
1133         (cxx_decode_option): Set flag_iso and flag_undef.
1134
1135 2002-05-09  Jason Merrill  <jason@redhat.com>
1136
1137         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
1138         Use subtraction rather than a bitmask to get the index.
1139         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
1140
1141         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
1142
1143 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
1144
1145         * Make-lang.in (decl2.o): Update.
1146         * cp-tree.h (warn_multichar): Remove.
1147         * decl2.c: Include c-common.h.
1148         (warn_multichar): Remove.
1149
1150 2002-05-03  Jason Merrill  <jason@redhat.com>
1151
1152         * tree.c (build_cplus_array_type): Only const and volatile get
1153         special handling.
1154
1155         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
1156
1157 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
1158
1159         ABI change, returning simple classes from functions.
1160         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
1161         TYPE_HAS_TRIVIAL_INIT_REF is false or
1162         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
1163
1164 2002-04-30  Jason Merrill  <jason@redhat.com>
1165
1166         PR debug/6436
1167         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
1168         anonymous class with a typedef if there are attributes.
1169
1170 2002-04-29  Paul Eggert  <eggert@twinsun.com>
1171
1172         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
1173
1174 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
1175
1176         PR c++/6477
1177         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
1178         non-NULL first.
1179
1180 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
1181
1182         PR c++/6492
1183         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
1184         enter that scope before name lookup.
1185
1186         PR c++/6486
1187         * method.c (do_build_copy_constructor): Avoid building
1188         cv-qualified reference types.
1189
1190 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
1191
1192         PR c++/5719
1193         * decl.c (grok_op_properties): Assignment ops don't have to return
1194         by value. operator% should.
1195
1196 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
1197
1198         PR c/6343
1199         * decl.c (duplicate_decls): Call merge_weak.
1200
1201 2002-04-26  Richard Henderson  <rth@redhat.com>
1202
1203         * parse.y (malloced_yyss, malloced_yyvs): New.
1204         (yyoverflow): Re-add.  Set them.
1205         (free_parser_stacks): New.
1206
1207 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
1208
1209         PR c++/6497
1210         * method.c (do_build_assign_ref): Pass a derivation to
1211         build_method_call when calling base class assignment operators.
1212
1213 2002-04-26  Richard Henderson  <rth@redhat.com>
1214
1215         * parse.y (yyoverflow): Revert.
1216
1217 2002-04-26  Richard Henderson  <rth@redhat.com>
1218
1219         PR c/3581
1220         * parse.y (string): Remove.  Update all uses to use STRING
1221         instead, and not call combine_strings.
1222         * rtti.c (tinfo_name): Use fix_string_type.
1223         * semantics.c (finish_asm_stmt): Don't call combine_strings.
1224         * spew.c (yylexstring): New.
1225         (read_token): Use it.
1226
1227 2002-04-25  Richard Henderson  <rth@redhat.com>
1228
1229         PR c/2161
1230         * parse.y (yyoverflow): New.
1231
1232 2002-04-25  Jason Merrill  <jason@redhat.com>
1233
1234         PR c++/5607
1235         * search.c (check_final_overrider): No longer static.
1236         * class.c (update_vtable_entry_for_fn): Call it.
1237         * cp-tree.h: Adjust.
1238
1239 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
1240
1241         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
1242         * cp-tree.h (cxx_set_yydebug): Die.
1243         * lex.c (YYDEBUG): Get from c-lex.h.
1244         (cxx_set_yydebug): Remove.
1245         * parse.y: Include c-lex.h.
1246         (YYDEBUG): Get from c-lex.h.
1247
1248 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
1249
1250         PR c++/6438.
1251         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
1252         void.
1253
1254 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
1255
1256         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
1257         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
1258         Redefine.
1259         * cp-tree.h (cp_attribute_table): Rename.
1260         * decl.c (lang_attribute_table): Remove declaration.
1261         (cxx_init_decl_processing): Don't set it.
1262         * tree.c (cp_attribute_table): Rename.
1263
1264 2002-04-24  Jason Merrill  <jason@redhat.com>
1265
1266         PR c++/6331
1267         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
1268         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
1269         The pedwarn for array assignment is now unconditional.
1270         * tree.c (build_cplus_array_type_1): Still process simple array types
1271         normally in templates.
1272
1273         PR c++/6395
1274         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
1275         stuff for comdats.
1276
1277 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
1278
1279         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
1280         node with attributes.
1281
1282 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
1283
1284         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
1285         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
1286
1287 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
1288
1289         PR c++/6256:
1290         * pt.c (tsubst_friend_class): Handle templates with explicit
1291         nested names.
1292
1293         PR c++/6331:
1294         * typeck.c (merge_types): Remember the cv-qualification of pointer
1295         types when merging them.
1296
1297 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
1298
1299         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
1300         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
1301         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
1302         cxx_mark_function_context): New.
1303         * decl.c (push_cp_function_context, pop_cp_function_context,
1304         mark_cp_function_context): Rename for consistency.
1305         (cxx_init_decl_processing): Don't set old hooks.
1306
1307 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
1308
1309         * call.c (convert_type_from_ellipsis): Rename, update.
1310         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
1311         * cp-tree.h (convert_type_from_ellipsis): Rename.
1312         * decl.c (cxx_init_decl_processing): Don't set hook.
1313
1314 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
1315
1316         * call.c (build_new_method_call): Update.
1317         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
1318         * cp-tree.h (cxx_incomplete_type_error): New.
1319         * decl.c (grokdeclarator, grokparms): Update.
1320         * decl2.c (check_classfn): Update.
1321         * pt.c (tsubst): Update.
1322         * typeck.c (complete_type_or_else, expr_sizeof,
1323         decay_conversion): Update.
1324         * typeck2.c (incomplete_type_error): Rename.
1325         (add_exception_specifier): Update.
1326
1327 2002-04-18  Jason Merrill  <jason@redhat.com>
1328
1329         PR c++/5658
1330         * search.c (setup_class_bindings): A class template qualifies as a
1331         type binding.
1332
1333 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
1334
1335         PR c++/6316
1336         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
1337         before expanding.
1338
1339 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
1340
1341         * init.c (begin_init_stmts): Remove commented out code.
1342         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
1343         * semantics.c (begin_gobal_stmt_expr): Adjust call to
1344         expand_start_stmt_expr.
1345
1346 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
1347
1348         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
1349         dso_handle itself, to __cxa_atexit.
1350
1351 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1352
1353         * error.c (cxx_print_error_function): Adjust call to macros.
1354
1355 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
1356
1357         * class.c (layout_virtual_bases): Do all dsize computation on trees.
1358
1359 2002-04-14  Jason Merrill  <jason@redhat.com>
1360
1361         * typeck.c (get_member_function_from_ptrfunc): Don't do
1362         gratuitious division and multiplication on
1363         ptrmemfunc_vbit_in_delta targets.
1364
1365 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
1366
1367         PR c++/5373.
1368         * semantics.c (finish_expr_stmt): Remember the type of the
1369         expression before any conversions are performed.
1370
1371 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
1372
1373         PR c++/5189.
1374         * call.c (add_template_candidate_real): Do not treat member
1375         templates as copy constructors.
1376
1377 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
1378
1379         * decl.c (duplicate_decls): Do not copy the RTL for a variable
1380         declaration if the old variable had an incomplete type and the new
1381         variable does not.
1382         (complete_vars): Do not call layout_decl for completed variables.
1383
1384 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
1385
1386         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
1387         with an explicit one.
1388         (follow_tag_typedef): New.
1389         (lookup_tag): Use it to extract the tag of an explicit typedef.
1390         (xref_tag): Likewise.
1391
1392 2002-04-11  Andrew Haley  <aph@redhat.com>
1393
1394         * typeck.c (type_after_usual_arithmetic_conversions):
1395         If two types have the same variant, return immediately.
1396         When two floating-point operands are the same precision:
1397           convert to float if one of the operands is float;
1398           if neither operand is one of the standard types, return the type
1399           of the first operand.
1400
1401 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
1402
1403         PR c++/5507
1404         * decl.c (make_typename_type): Remove implicit typenameness.
1405
1406 2002-04-09  Jason Merrill  <jason@redhat.com>
1407
1408         PR optimization/6189
1409         * semantics.c (genrtl_start_function): Don't free
1410         DECL_SAVED_FUNCTION_DATA for inline functions.
1411
1412         * init.c (build_member_call): For now, don't convert to
1413         intermediate base if it would cause an error.
1414
1415 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
1416
1417         * parse.y (namespace_qualifier, maybe_identifier,
1418         begin_explicit_instantiation, end_explicit_instantiation,
1419         apparent_template_type, .finish_template_type,
1420         do_id, maybe_init, defarg_again, component_decl_1):
1421         Add ending ';', in accordance with POSIX.
1422
1423 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
1424
1425         PR c++/5571
1426         * class.c (layout_class_type): Remember incomplete static
1427         variables.
1428         (finish_struct_1): Call complete_vars, not
1429         hack_incomplete_structures.
1430         * cp-tree.h (hack_incomplete_structures): Rename to ...
1431         (complete_vars): ... this.
1432         (struct saved_scope): Remove incomplete.
1433         (namespace_scope_incomplete): Remove.
1434         * decl.c (struct binding_level): Remove incomplete.
1435         (incomplete_vars): New variable.
1436         (mark_binding_level): Don't mark incomplete.
1437         (print_binding_level): Don't print it.
1438         (mark_saved_scope): Don't mark incomplete.
1439         (pushdecl): Use maybe_register_incopmlete_var.
1440         (cxx_init_decl_processing): Register incomplete_vars for GC.
1441         (start_decl_1): Clarify error message.
1442         (hack_incomplete_vars): Remove.
1443         (maybe_register_incomplete_var): New function.
1444         (complete_vars): Likewise.
1445
1446 2002-04-06  Jason Merrill  <jason@redhat.com>
1447
1448         PR c++/4934
1449         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
1450         set before checking it.
1451
1452         PR c++/525
1453         * init.c (build_member_call): Use build_scoped_ref.
1454         (resolve_offset_ref): Likewise.
1455         * call.c (build_scoped_method_call): Likewise.
1456         * tree.c (maybe_dummy_object): Kludge around current_class_type being
1457         wrong.
1458         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
1459         * cp-tree.h: Adjust.
1460
1461         * init.c (push_base_cleanups): Just use build_scoped_method_call.
1462
1463         PR c++/6179
1464         * method.c (implicitly_declare_fn): Pass unqualified type to
1465         synthesize_exception_spec.
1466
1467 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
1468
1469         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
1470         * cvt.c: Update comment.
1471         * init.c (expand_cleanup_for_base): Update.
1472         * semantics.c (finish_parenthesized_expr): Update.
1473         * typeck.c (cp_truthvalue_conversion): Update.
1474
1475 2002-04-04  Jason Merrill  <jason@redhat.com>
1476
1477         * semantics.c (finish_eh_cleanup): New fn.
1478         * cp-tree.h: Add prototype.
1479         * init.c (perform_member_init, expand_cleanup_for_base): Use
1480         finish_eh_cleanup.
1481         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
1482         * cp-tree.h: Remove references.
1483         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
1484         * dump.c (cp_dump_tree): Likewise.
1485         * pt.c (tsubst_expr): Likewise.
1486         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
1487         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
1488         * tree.c (cp_statement_code_p): Likewise.
1489
1490         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
1491
1492         PR c++/5636
1493         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
1494         cleanup for nrv.
1495
1496         PR c++/5104
1497         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
1498         specifiers.
1499         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
1500
1501 2002-04-03  Richard Henderson  <rth@redhat.com>
1502
1503         * cp-lang.c (cxx_warn_unused_global_decl): New.
1504         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
1505
1506 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1507
1508         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
1509         * tree.c (init_tree): Don't set hook.
1510
1511 2002-04-03  Roger Sayle  <roger@eyesopen.com>
1512
1513         PR c++/5998:
1514         * decl.c (duplicate_decls): Don't mess with assembler names when
1515         redeclaring builtin functions as static.
1516
1517 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1518
1519         * call.c (build_addr_func): Update.
1520         * class.c (resolve_address_of_overloaded_function): Update.
1521         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
1522         * cp-tree.h (cxx_mark_addressable): New.
1523         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
1524         * decl2.c (build_cleanup): Update.
1525         * except.c (build_throw): Update.
1526         * init.c (resolve_offset_ref): Update.
1527         * pt.c (convert_nontype_argument): Update.
1528         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
1529         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
1530         unary_complex_lvalue): Update.
1531         (mark_addressable): Rename.
1532
1533 2002-04-01  Roger Sayle  <roger@eyesopen.com>
1534
1535         PR c++/5998:
1536         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
1537         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
1538         but follow the SET_DECL_RTL idiom used elsewhere in the function.
1539
1540 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1541
1542         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
1543         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
1544         * decl.c (grokdeclarator): Update.
1545         * mangle.c (write_integer_cst): Update.
1546         * typeck.c (build_binary_op): Update.
1547
1548 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1549
1550         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
1551         * lex.c (cxx_init): Don't set hook.
1552
1553 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1554
1555         * Make-lang.in (error.o): Update.
1556         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
1557         * cp-tree.h (struct diagnostic_context): Predeclare.
1558         (cxx_print_error_function): New.
1559         * error.c: Include langhooks-def.h.
1560         (lang_print_error_function): Rename.  Update.
1561         (init_error): Don't set hook.
1562
1563 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1564
1565         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
1566         Redefine.
1567         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
1568         * decl.c (finish_enum): Similarly.
1569         * error.c (dump_type): Similarly.
1570         * lex.c (cxx_init): Similarly.
1571         * mangle.c (write_builtin_type): Similarly.
1572         * typeck.c (comptypes): Similarly.
1573
1574 2002-03-28  Roger Sayle  <roger@eyesopen.com>
1575
1576         PR c++/5998:
1577         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
1578         in the g++ front-end.
1579         (duplicate_decl): Allow redefinition of anticipated built-ins.
1580         Fix inlining problem by over-writing the old DECL_RTL.
1581         (lookup_namespace_name): Fail to find an identifier in the
1582         specified namespace if its still anticipated.
1583         (builtin_function_1): New function split out from builtin_function
1584         to create a builtin in the current namespace with given context.
1585         (builtin_function): Call builtin_function_1 to define the
1586         appropriate builtins in both the std and global namespaces.
1587         (select_decl): Don't test for anticipated decls here.
1588         (unqualified_namespace_lookup): Instead ignore them whilst
1589         searching through scopes and namespaces.
1590         * decl2.c (do_nonmember_using_decl): If a using declaration
1591         specifies an anticipated built-in function, mark it as no longer
1592         anticipated in that scope.
1593         (ambiguous_decl):  Avoid resolving to an anticipated decl.
1594         * lex.c (do_scoped_id): Fail to find an identifier in the global
1595         namespace if its still anticipated.
1596
1597 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1598
1599         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
1600         * cp-tree.h (cp_make_lang_type): Rename.
1601         * lex.c (cp_make_lang_type): Rename.
1602         (make_aggr_type): Update.
1603         * tree.c (init_tree): Don't set make_lang_type_fn.
1604
1605 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
1606
1607         PR c++/6073
1608         * class.c (finish_struct_1): Update static field's DECL_MODE even
1609         if its type is a variant of t.
1610
1611 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1612
1613         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
1614         * cp-tree.h (cxx_insert_default_attributes): New.
1615         * decl.c (insert_default_attributes): Rename.
1616
1617 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
1618
1619         PR c++/4884
1620         * call.c (build_op_delete_call): Allow for the fact the placement
1621         may be a COMPOUND_EXPR.
1622
1623 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1624
1625         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
1626         * cp-tree.h (init_cplus_expand): Remove.
1627         (cxx_expand_expr): New.
1628         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
1629         fix prototype.
1630         (init_cplus_expand): Remove.
1631         * lex.c (cxx_init): Don't call init_cplus_expand.
1632
1633 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
1634
1635         PR c++/4884.
1636         * init.c (build_new_1): Allow for the fact the result of
1637         build_function_call may be a COMPOUND_EXPR.
1638
1639 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
1640
1641         PR c++/5682
1642         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
1643         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1644         (dfs_skip_nonprimary_vbases_markedp): Remove.
1645         * search.c (get_shared_vbase_if_not_primary): Remove.
1646         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1647         (dfs_skip_nonprimary_vbases_markedp): Remove.
1648         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
1649         (dfs_marked_real_bases_queue_p): Likewise.
1650
1651 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
1652
1653         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
1654         * cp-tree.h (cxx_mark_tree): New.
1655         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
1656
1657 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
1658
1659         * cp-tree.h (cxx_maybe_build_cleanup): New.
1660         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
1661         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
1662         * tree.c (build_target_expr): Update.
1663         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
1664
1665 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
1666
1667         * decl2.c (cxx_decode_option): Handle -E.
1668         * lang-specs.h (default_compilers): Preprocess with cc1plus.
1669         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
1670
1671 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
1672
1673         PR c++/6037
1674         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
1675
1676 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1677
1678         * error.c (dump_type): Be careful about implicit typenames.
1679
1680 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1681
1682         PR C++/3656
1683         * semantics.c (finish_base_specifier): Handle erronous base
1684         classes.
1685
1686 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
1687
1688         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
1689         REAL_IS_NOT_DOUBLE.
1690
1691 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
1692
1693         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
1694         an index into the vtable_entry array regardless of
1695         TARGET_PTRMEMFUNC_VBIT_LOCATION.
1696
1697 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
1698
1699         * tree.c (cp_cannot_inline_tree_fn): Same.
1700
1701 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
1702
1703         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
1704         insert_block, getdecls, global_bindings_p): New.
1705
1706 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
1707
1708         PR c++/4361
1709         * mangle.c (struct globals) Add internal_mangling_p member.
1710         (write_template_param): Do internal mangling, if needed.
1711         (mangle_conv_op_name_for_type): Request internal mangling.
1712
1713 2002-03-20  Jason Merrill  <jason@redhat.com>
1714
1715         PR c++/2136
1716         * init.c (build_delete): Check access for a member op delete here.
1717         * decl2.c (delete_sanity): Not here.
1718
1719 2002-03-19  Jason Merrill  <jason@redhat.com>
1720
1721         PR c++/5118
1722         * class.c (get_vfield_name): Use the constructor_name.
1723
1724 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
1725
1726         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
1727         * cp-tree.h (lang_printable_name): Rename.
1728         * error.c (lang_decl_name): Use new hook.
1729         * lex.c (cxx_init): Remove old hook.
1730         * pt.c (tsubst_decl): Use new hook.
1731         * tree.c (lang_printable_name): Rename.
1732
1733 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
1734
1735         PR c++/3882
1736         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
1737         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
1738         only after recording the declaration.
1739
1740 2002-03-18  Jason Merrill  <jason@redhat.com>
1741
1742         PR c++/2039
1743         * init.c (resolve_offset_ref): Hand off to build_component_ref.
1744
1745         PR c++/4222, c++/5995
1746         * call.c (build_over_call): Fix empty class logic.
1747
1748         PR c++/3870
1749         * cp-tree.h (struct saved_scope): Add last_parms field.
1750         * decl.c (maybe_push_to_top_level): Save last_function_parms.
1751         (pop_from_top_level): Restore it.
1752
1753         PR c++/4377
1754         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
1755         NON_LVALUE_EXPRs.
1756
1757         PR c++/4003
1758         * pt.c (tsubst_friend_function): Use decl_namespace_context.
1759
1760         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
1761         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
1762         type with a nontrivial destructor.
1763
1764 2002-03-17  Jason Merrill  <jason@redhat.com>
1765
1766         PR c++/4460
1767         * class.c (build_base_path): Virtual base layout is fixed in
1768         in-charge [cd]tors.
1769
1770 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
1771
1772         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
1773         * parse.y (yyparse): Remove macro.
1774
1775 2002-03-17  Jason Merrill  <jason@redhat.com>
1776
1777         PR c++/5757
1778         * init.c (build_new_1): Pass the right pointer to op delete.
1779
1780 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
1781
1782         PR c++/4361
1783         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
1784         conversion operators go.
1785         (struct lang_decl_flags): Add template_conv_p and unused
1786         bitfields.
1787         (DECL_TEMPLATE_CONV_FN_P): New macro.
1788         * call.c (build_user_type_conversion_1): Don't check second type
1789         conversion of overload set first.
1790         * class.c (add_method): Make sure templated conversion operators
1791         all end up on slot 2.
1792         * lex.c (do_identifier): A conversion operator token might be
1793         satisfied by a templated conversion operator.
1794         * pt.c (check_explicit_specialization): Use
1795         CLASSTYPE_FIRST_CONVERSION_SLOT.
1796         (template_parm_this_level_p): New function.
1797         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
1798         * search.c (lookup_fnfields_1): Template conversions will be on
1799         the first slot.
1800         * typeck.c (build_component_ref): Preserve the type of an
1801         conversion operator name on the overload type.
1802         (build_x_function_call): Retrieve the conversion operator name.
1803
1804 2002-03-15  Richard Henderson  <rth@redhat.com>
1805
1806         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
1807
1808 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
1809
1810         * cp-tree.h (CLEANUP_DECL): Remove.
1811         (CLEANUP_EXPR): Likewise.
1812         * decl.c (destroy_local_var): Simplify.
1813         (maybe_build_cleanup): Tidy.
1814         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
1815         * semantics.c (cp_expand_stmt): Likewise.
1816         * cp/tree.c (cp_statement_code_p): Likewise.
1817
1818 2002-03-15  Jason Merrill  <jason@redhat.com>
1819
1820         PR c++/5857
1821         * decl.c (duplicate_decls): Use merge_types instead of common_type.
1822         * typeck.c (common_type): Just hand off to
1823         type_after_usual_arithmetic_conversions and
1824         composite_pointer_type.
1825         (merge_types): New fn.
1826         (commonparms): Use it instead of common_type.
1827         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
1828         (composite_pointer_type): Also handle attributes.
1829         * cp-tree.h: Declare merge_types.
1830
1831         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
1832         variables.
1833         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
1834
1835 2002-03-14  Richard Henderson  <rth@redhat.com>
1836
1837         * decl.c: Include c-pragma.h.
1838         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
1839         * Make-lang.in: Update dependencies.
1840
1841 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
1842
1843         PR c++/5908
1844         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
1845         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
1846
1847 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1848
1849         * mangle.c (write_builtin_type): Handle 128-bit integers even if
1850         they are not a standard integer type.
1851
1852 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1853
1854         * cp-tree.h (init_init_processing): Remove declaration.
1855         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
1856         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
1857
1858 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1859
1860         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
1861         Define.
1862         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
1863         tree_code_length.
1864         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
1865         cplus_tree_code_name): Delete.
1866         (cxx_init): Don't call add_c_tree_codes, instead set
1867         lang_unsafe_for_reeval.  Don't try to copy into the various
1868         tree_code arrays.
1869
1870 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
1871
1872         PR c++/5659
1873         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
1874         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
1875         definitions.
1876
1877 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1878
1879         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
1880         DR209 is now not a defect.
1881         * cp-tree.h (skip_type_access_control): Remove.
1882         * decl.c (grokdeclarator): Do type access control for friend
1883         declarations.
1884         * semantics.c (decl_type_access_control): Don't reset
1885         current_type_lookups.
1886         (save_type_access_control): Always save the lookups.
1887         (skip_type_access_control): Remove.
1888         (finish_class_definition): Don't change type_lookups.
1889
1890 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1891
1892         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
1893         It is incorrect.
1894         * typeck.c (build_static_cast): Compare non-qualified types
1895         with pointer to member conversions.
1896
1897 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
1898             Daniel Berlin  <dan@dberlin.org>
1899
1900         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
1901         (cxx_get_alias_set): Use it.
1902
1903 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1904
1905         * cp-tree.h (stabilize_expr): Prototype.
1906
1907 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1908
1909         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
1910         conditional return void.
1911
1912 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
1913
1914         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
1915         * cp-tree.h (cxx_unsave): New.
1916         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
1917         (init_tree): Update.
1918
1919 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1920
1921         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
1922         explicit sizeof/sizeof.
1923         * decl2.c (cxx_decode_option): Likewise.
1924         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
1925
1926 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
1927
1928         PR c++/775
1929         * decl.c (lookup_tag): Only reject enum/class mismatch, not
1930         class/union mismatch.
1931         * parse.y (check_class_key): New function.
1932         (structsp): Call it.
1933
1934 2002-03-01  Michael Matz  <matz@suse.de>
1935
1936         * typeck.c (cp_pointer_int_sum): Complete inner type which is
1937         used later by size_in_bytes().
1938
1939 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
1940
1941         * cp-tree.h:  Require __GNUC__ to be #defined.
1942         (build_init):  Add missing prototype.
1943
1944 2002-03-01  Jason Merrill  <jason@redhat.com>
1945
1946         * except.c: Don't include decl.h or obstack.h.  Do include
1947         tree-inline.h.
1948         (build_throw): Destroy temporaries from the thrown
1949         expression before calling __cxa_throw.  Construct a thrown
1950         temporary directly into the exception object.
1951         (stabilize_throw_expr): New function.
1952         (wrap_cleanups_r): New function.
1953         * tree.c (stabilize_expr): New function.
1954         * init.c (build_init): New function.
1955         * Make-lang.in (cp/except.o): Adjust .h deps.
1956
1957 2002-02-28  Jason Merrill  <jason@redhat.com>
1958
1959         * search.c (lookup_base_r): Don't clear is_non_public just because
1960         we found a friendly scope.
1961
1962         * decl.c (finish_function): Only warn about missing return
1963         statement with -Wreturn-type.
1964
1965 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
1966
1967         * class.c (build_clone): Update.
1968         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
1969         * cp-tree.h (cxx_dup_lang_specific_decl): New.
1970         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
1971         (copy_decl): Update.
1972         * method.c (make_thunk): Update.
1973
1974 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
1975
1976         * decl2.c: Delete traditional-mode-related code copied from
1977         the C front end but not used, or used only to permit the
1978         compiler to link.
1979
1980 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
1981
1982         PR c++/4093
1983         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
1984         to void.
1985
1986 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
1987
1988         PR other/5746
1989         * semantics.c (finish_switch_cond): Don't call get_unwidened
1990         if error_mark_node.
1991
1992 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
1993
1994         PR c++/2645, DR 295
1995         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
1996         tf_keep_type_decl.
1997         (make_typename_type): Use tsubst_flags_t.
1998         * decl.c (make_typename_type): Adjust. Return non-artificial
1999         TYPE_DECLs, if required.
2000         (grokdeclarator): Simplify CVR qualification handling. Allow bad
2001         qualifiers on typedef types.
2002         * decl2.c (handle_class_head): Adjust make_typename_type call.
2003         * parse.y (nested_name_specifier): Likewise.
2004         (typename_sub0): Likewise.
2005         (typename_sub1): Likewise.
2006         * pt.c (convert_template_argument): Adjust make_typename_type
2007         return value.
2008         (tsubst): Adjust cp_build_qualified_type_real calls.
2009         (check_cv_quals_for_unify): Cope with alowing bad qualifications
2010         on template type parms.
2011         (instantiate_decl): Recheck substitutions to give warnings on bad
2012         qualifications.
2013         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
2014
2015 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
2016
2017         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
2018
2019         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
2020         unless DECL_ALWAYS_INLINE.
2021
2022 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
2023
2024         * typeck.c (cp_pointer_int_sum): Renamed from
2025         pointer_int_sum, call pointer_int_sum.
2026
2027 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
2028
2029         * decl.c (duplicate_decls): Return 0 if issued error about
2030         redeclaration.
2031
2032 2002-02-19  Jason Merrill  <jason@redhat.com>
2033
2034         ABI change: Mangle `void (A::*)() const' as
2035         M1AKFvvE, not MK1AFvvE.
2036         * mangle.c (write_function_type): Write cv-quals for member
2037         function type here.
2038         (write_pointer_to_member_type): Not here.
2039
2040 2002-02-18  Jason Merrill  <jason@redhat.com>
2041
2042         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
2043         (do_decl_instantiation): Likewise.
2044
2045 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2046
2047         PR c++/5685
2048         * decl.c (duplicate_decls): Make warning unconditional
2049         if duplicate default argument declarations are present.
2050
2051 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
2052
2053         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
2054         shortening.
2055
2056 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
2057
2058         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
2059         remove incorrect comment. Move #if 0'd code to common path. Use
2060         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
2061
2062 2002-02-13  Jason Merrill  <jason@redhat.com>
2063
2064         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
2065         (finish_function): Don't warn if current_function_returns_null.
2066
2067         * typeck2.c (digest_init): Do handle values of vector type.
2068
2069         * typeck2.c (digest_init, process_init_constructor): Treat vectors
2070         like arrays.
2071
2072 2002-02-11  Jason Merrill  <jason@redhat.com>
2073
2074         * parse.y (reserved_declspecs): Don't handle attributes.
2075         (reserved_typespecquals): Handle them here.
2076         * Make-lang.in (parse.c): Adjust expected conflicts.
2077
2078 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
2079
2080         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
2081         instead of compstmt.
2082         (compstmt_or_stmtexpr): Renamed from compstmt.
2083         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
2084
2085 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
2086
2087         Rename instantiate_type_flags to tsubst_flags_t & expand use.
2088         * cp-tree.h (instantiate_type_flags): Rename to ...
2089         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
2090         add tf_warning flag.
2091         (instantiate_type): Adjust prototype.
2092         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
2093         do_type_instantiation, cp_build_qualified_type_real): Likewise.
2094         cp_build_qualified_type: Adjust.
2095         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
2096         tf_*.
2097         * call.c (standard_conversion): Rename itf_* to tf_*.
2098         (reference_binding): Likewise.
2099         (convert_like_real): Likewise.
2100         * cvt.c (cp_convert_to_pointer): Likewise.
2101         (convert_to_reference): Likewise.
2102         * decl.c (lookup_namespace_name): Use tf_* flags.
2103         (make_typename_type): Likewise.
2104         (grokdeclarator): Likewise.
2105         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
2106         (coerce_template_template_parms, convert_template_argument,
2107         coerce_template_parms, maybe_get_template_decl_from_type_decl,
2108         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
2109         instantiate_class_template, tsubst_template_arg_vector,
2110         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
2111         tsubst_decl, tsubst_arg_types, tsubst_function_type,
2112         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
2113         instantiate_template, fn_type_unification,
2114         resolve_overloaded_unification, verify_class_unification,
2115         unify, get_bindings_real, do_type_instantiation,
2116         regenerate_decl_from_template, instantiate_decl,
2117         tsubst_initializer_list, tsubst_enum,
2118         get_mostly_instantiated_function_type,
2119         invalid_nontype_parm_type_p): Likewise.
2120         * tree.c (cp_build_qualified_type_real): Likewise.
2121         * typeck.c (build_binary_op): Rename itf_* to tf_*.
2122         (build_ptrmemfunc): Likewise.
2123         (convert_for_assignment): Likewise.
2124
2125 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
2126
2127         PR c++/109
2128         * decl.c (grokdeclarator): Allow friend declarations from
2129         dependent types.
2130         * decl2.c (handle_class_head): Don't push into template parm contexts.
2131         * pt.c (push_template_decl_real): Template parm contexts are never
2132         being defined.
2133
2134 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
2135
2136         * class.c: Include target.h.
2137         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
2138         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
2139         bit-field layout.
2140         * Make-lang.in: Adjust deps.
2141
2142 2002-02-05  Jason Merrill  <jason@redhat.com>
2143
2144         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
2145
2146 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
2147
2148         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
2149         (finish_switch_cond): Set SWITCH_TYPE.
2150
2151 2002-02-04  Richard Henderson  <rth@redhat.com>
2152
2153         * method.c (use_thunk): Always initialize the block tree.  Reindent.
2154         * semantics.c (expand_body): Emit thunks after function, not before.
2155
2156 2002-02-04  Jason Merrill  <jason@redhat.com>
2157
2158         * decl.c (start_function): Call cplus_decl_attributes immediately
2159         after grokdeclarator.
2160
2161         * decl.c (start_function): Combine DECL_RESULT handling code.
2162
2163 2002-02-03  Jason Merrill  <jason@redhat.com>
2164
2165         * xref.c: Remove.
2166         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
2167         (cp/xref.o): Remove dependencies.
2168         * class.c (finish_struct_1, check_methods): Don't call xref fns.
2169         (finish_struct_1): Likewise.
2170         * friend.c (make_friend_class): Likewise.
2171         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
2172         * spew.c (read_process_identifier): Likewise.
2173
2174 2002-02-01  Jason Merrill  <jason@redhat.com>
2175
2176         PR c++/4872
2177         * decl.c (finish_function): Warn about a non-void function with
2178         no return statement and no abnormal exit.
2179         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
2180         (current_function_returns_abnormally): New macro.
2181         * call.c (build_call): Set it.
2182
2183         * typeck.c (build_component_ref): Always complain about offsetof
2184         constructs on non-PODs.  Only make it an error for members of
2185         virtual bases.
2186
2187         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
2188         (dump_function_decl): Always dump parms.
2189
2190         * decl2.c (finish_static_data_member_decl): Complain about a local
2191         class with a static data member.
2192
2193         PR c++/4286
2194         * search.c (lookup_field_1): Don't xref a static data member
2195         just because we looked it up.
2196
2197 2002-01-31  Jason Merrill  <jason@redhat.com>
2198
2199         * Make-lang.in (parse.c): Handle .output file.
2200
2201         PR c++/3395
2202         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
2203         not TREE_TYPE.
2204         * semantics.c (finish_class_definition): Adjust.
2205
2206         Allow attributes in parms and casts.
2207         * parse.y (named_parm): Don't strip attrs.
2208         (declmods): Remove 'attributes' production.
2209         (nonempty_cv_qualifiers): Accept attributes.
2210         (ATTRIBUTE): Give precedence.
2211         * decl.c (groktypename): Handle attributes.
2212         (grokparms): Likewise.
2213
2214 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
2215
2216         * decl2.c (cxx_decode_option): Pass 0 as last argument to
2217         cpp_handle_option.
2218         * lang-specs.h: Use cpp_unique_options instead of cpp_options
2219         when used together with cc1_options.
2220
2221 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
2222
2223         PR c++/5132
2224         * typeck2.c (digest_init): Make sure non-array core type is
2225         instantiated.
2226         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
2227         constructor, rather than build a new one.
2228         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
2229         PURPOSE of constructor elts.
2230
2231 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
2232
2233         * Make-lang.in (parse.c): Adjust expected number of
2234         shift-reduce conflicts.
2235         (decl.o): Depend on diagnostic.h.
2236         * decl.c: Include diagnostic.h.
2237         (grokdeclarator): Check for null pointer.
2238         (finish_function): Don't abort when
2239         current_binding_level->parm_flag != 1, if errors have
2240         occurred; throw away the statement tree and extra binding
2241         levels, and continue.
2242         * lex.c (note_list_got_semicolon): Check for null pointer.
2243         * method.c (hack_identifier): Just return error_mark_node if
2244         value is error_mark_node.
2245         * parse.y (primary: TYPEID(type_id)): No need to use
2246         TYPE_MAIN_VARIANT here.
2247         (handler_seq): Accept an empty list of catch clauses and
2248         generate a fake handler block to avoid later crashes.
2249         (ansi_raise_identifier): Accept the error token too.
2250         * semantics.c (begin_class_definition,
2251         finish_class_definition): Check for error_mark_node.
2252
2253 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
2254
2255         * typeck2.c (friendly_abort): Delete definition.
2256         * cp-tree.h (friendly_abort): Don't prototype.
2257         (my_friendly_assert): Use fancy_abort.
2258
2259 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2260
2261         * cp-tree.h (my_friendly_abort): Remove.
2262
2263 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
2264
2265         * spew.c (pending_inlines, pending_inlines_tail,
2266         processing_these_inlines): Make static.
2267         (mark_pending_inlines): Remove static.
2268         (begin_parsing_inclass_inline): If in function, save pi
2269         for GC to cp_function_chain->unparsed_inlines instead.
2270         (process_next_inline): Likewise.
2271         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
2272         (mark_pending_inlines): Add prototype.
2273         * decl.c (spew_debug): Remove unused extern.
2274         (mark_lang_function): Call mark_pending_inlines.
2275
2276 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2277
2278         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
2279         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
2280         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
2281         Change my_fancy_abort() to abort().
2282
2283 2002-01-23  Jason Merrill  <jason@redhat.com>
2284
2285         PR c++/5453
2286         * class.c (fixed_type_or_null): Fix thinko.
2287
2288         PR c++/3331
2289         * init.c (resolve_offset_ref): Use build_indirect_ref.
2290
2291         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
2292
2293 2002-01-22  Jason Merrill  <jason@redhat.com>
2294
2295         * parse.y (function_body): Suppress the block for the outermost
2296         curly braces.
2297         * decl.c (pushdecl): Don't try to skip it.
2298         (begin_function_body): Keep the block we create, not the next one.
2299         * init.c (emit_base_init): Don't mess with keep_next_level.
2300
2301         * class.c (build_base_path): Tweak formatting.
2302
2303 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
2304
2305         Fix regression introduced with patch for c++/775
2306         * parse.y (class_head_defn): Check for template specializations
2307         with a different class-key.
2308
2309 2002-01-17  Jason Merrill  <jason@redhat.com>
2310
2311         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
2312         (begin_function_body): Call them and keep_next_level.
2313         * init.c (emit_base_init): Call keep_next_level.
2314         * semantics.c (setup_vtbl_ptr): Lose.
2315         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
2316         (vtbls_set_up_p): Lose.
2317         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
2318         * method.c (do_build_copy_constructor): Likewise.
2319         (synthesize_method): Call finish_mem_initializers.
2320         * parse.y (nodecls): Likewise.
2321
2322         * error.c (dump_type_suffix): Print the exception specs before
2323         recursing.
2324         (dump_function_decl): Here, too.
2325
2326         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
2327
2328 2002-01-10  Ira Ruben   <ira@apple.com>
2329
2330         PR c++/907
2331         * decl.c (start_method): Handle attrlist.
2332
2333 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
2334
2335         * decl2.c (max_tinst_depth): Increase default limit to 500.
2336
2337 2002-01-10  Graham Stott  <grahams@redhat.com>
2338
2339         * spew.c (YYCHAR): Uppercase macro parameter and add
2340         parenthesis.
2341         (YYCODE): Likewise.
2342         (NAME): Uppercase macro parameter.
2343
2344 2002-01-09  Graham Stott  <grahams@redhat.com>
2345
2346         * decl.h (grokdeclarator): Wrap long line.
2347
2348         * semantics.c (FINISH_COND): Uppercase macro paramaters and
2349         add parenthesis.
2350
2351 2002-01-08  Graham Stott  <grahams@redhat.com>
2352
2353         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
2354         (PALLOC): Uppercase macro parameter and whitespace.
2355         (SALLOC): Uppercase macro parameter.
2356         (SFREE): Uppercase macros parameter, add parenthese and
2357         whitespace.
2358         (STREQL): Uppercase macro parameter and whitespace.
2359         (STRNEQ): Likewise.
2360         (STRLSS): Likewise.
2361         (STRLEQ): Likewise.
2362         (STRGTR): Likewise.
2363         (STRGEQ): Likewise.
2364
2365         * call.c (convert_like): Add parenthesis and wrap.
2366         (convert_like_with_context): Likewise.
2367         (ICS_RANK): Whitespace.
2368         (NEED_TEMPORARY_P): Remove parenthesis.
2369
2370         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
2371         whitespace.
2372         (VTT_MARKED_BINFO_P): Likewise.
2373
2374         * decl.c (BINDING_LEVEL): Add parenthesis.
2375         (DEF_OPERATOR): Likewise.
2376
2377         * mangle.c (MANGLE_TRACE): Add parenthesis.
2378         (MANGLE_TRACE_TREE): Likewise.
2379         (write_signed_number): Likewise.
2380         (write_unsigned_number): Likewise.
2381
2382         * pt.c (ccat): Uppercase macro parameter.
2383         (cat): Likewise
2384
2385         * search.c (SET_BINFO_ACCESS): Add parenthesis.
2386
2387 2002-01-07  Jason Merrill  <jason@redhat.com>
2388
2389         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
2390         to pedwarn.
2391
2392         PR c++/3536
2393         * method.c (make_thunk): If !flag_weak, give the thunk the
2394         function's linkage.
2395         (use_thunk): Here, too.
2396
2397 2002-01-07  Graham Stott  <grahams@redhat.com>
2398
2399         * error.c: Update copyright date.
2400         (print_scope_operator): Add parenthesis.
2401         (print_left_paren): Likewise.
2402         (print_right_paren): Likewise.
2403         (print_left_bracket): Likewise.
2404         (print_right_bracket): Likewise.
2405         (print_template_argument_list_start): Likewise.
2406         (print_template_argument_list_end): Likewise.
2407         (print_non_consecutive_character): Likewise.
2408         (print_tree_identifier): Likewise.
2409         (print_identifier): Likewise.
2410         (NEXT_CODE): Uppercase macro parameter.
2411         (ident_fndecl): Delete unused.
2412         (GLOBAL_THING): Likewise.
2413
2414 2002-01-06  Graham Stott  <grahams@redhat.com>
2415
2416         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
2417         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
2418         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
2419         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
2420         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
2421         (C_IS_RESERVED_WORD): Uppercase macro parameter.
2422         (C_RID_YYCODE) Likewise.
2423         (ptrmem_cst): Use rtx.
2424         (LOCAL_BINDING_P): Add whitespace.
2425         (INHERITED_VALUE_BINDING_P): Likewise.
2426         (BINDING_SCOPE): Wrap long line.
2427         (BINDING_HAS_LEVEL_P): Remove parenthesis.
2428         (BINDING_VALUE): Wrap long line.
2429         (BINDING_TYPE): Whitespace.
2430         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
2431         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
2432         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
2433         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
2434         (same_type_p): Uppercase macro parameters.
2435         (same_type_ignoring_top_level_qualifiers_p): Likewise.
2436         (OVL_FUNCTION): Wrap long line.
2437         (OVL_CHAIN): Whitespace.
2438         (OVL_CURRENT): Add parenthesis and whitespace.
2439         (OVL_NEXT): Whitespace.
2440         (OVL_USED): Likewise.
2441         (IDENTIFIER_TYPE_VALUE): Likewise.
2442         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
2443         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
2444         (LANG_ID_FIELD): Whitespace.
2445         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
2446         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
2447         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
2448         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
2449         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
2450         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
2451         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
2452         (IDENTIFIER_VIRTUAL_P): Likewise.
2453         (IDENTIFIER_OPNAME_P): Likewise.
2454         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
2455         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
2456         (C_SET_EXP_ORIGINAL_CODE): Likewise.
2457         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
2458         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
2459         (IS_AGGR_TYPE): Uppercase macro parameter.
2460         (CLASS_TYPE_P): Likewise.
2461         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
2462         (IS_AGGR_TYPE_2): Whitespace.
2463         (TAGGED_TYPE_P): Uppercase macro parameter.
2464         (TYPE_BUILT_IN): Whitespace.
2465         (TYPE_FOR_JAVA): Likewise.
2466         (FUNCTION_ARG_CHAIN): Remove parenthesis.
2467         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
2468         (FUNCTION_FIRST_USER_PARAM): Likewise.
2469         (PROMOTES_TO_AGGR_TYPE): Whitespace.
2470         (DERIVED_FROM_P): Add parenthesis and wrap.
2471         (UNIQUELY_DERIVED_FROM_P): Likewise.
2472         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
2473         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
2474         (CLASSTYPE_USE_TEMPLATE): Whitespace.
2475         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
2476         (TYPE_GETS_DELETE): Add parenthesis.
2477         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
2478         (TYPE_HAS_ASSIGN_REF): Likewise,
2479         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
2480         (TYPE_HAS_INIT_REF): Likewise.
2481         (TYPE_HAS_CONST_INIT_REF): Likewise.
2482         (TYPE_BEING_DEFINED): Likewise.
2483         (TYPE_LANG_SPECIFIC): Likewise.
2484         (CLASSTYPE_RTTI): Likewise.
2485         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
2486         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
2487         (TYPE_OVERLOADS_ARROW): Likewise.
2488         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
2489         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
2490         (CLASSTYPE_METHOD_VEC): Likewise.
2491         (CLASSTYPE_MARKED_N): Likewise.
2492         (CLASSTYPE_MARKED): Likewise.
2493         (CLASSTYPE_MARKED2): Likewise.
2494         (CLASSTYPE_MARKED3): Likewise.
2495         (CLASSTYPE_MARKED4): Likewise.
2496         (CLASSTYPE_MARKED5): Likewise.
2497         (CLASSTYPE_MARKED6): Likewise.
2498         (SET_CLASSTYPE_MARKED): Whitespace.
2499         (CLEAR_CLASSTYPE_MARKED): Likewise.
2500         (SET_CLASSTYPE_MARKED2): Likewise.
2501         (CLEAR_CLASSTYPE_MARKED2): Likewise.
2502         (SET_CLASSTYPE_MARKED3): Likewise.
2503         (CLEAR_CLASSTYPE_MARKED3): Likewise.
2504         (SET_CLASSTYPE_MARKED4): Likewise.
2505         (CLEAR_CLASSTYPE_MARKED4): Likewise.
2506         (SET_CLASSTYPE_MARKED5): Likewise.
2507         (CLEAR_CLASSTYPE_MARKED5): Likewise.
2508         (SET_CLASSTYPE_MARKED6): Likewise.
2509         (CLEAR_CLASSTYPE_MARKED6): Likewise.
2510         (CLASSTYPE_TAGS): Likewise.
2511         (CLASSTYPE_VSIZE): Likewise.
2512         (CLASSTYPE_VBASECLASSES): Likewise.
2513         (CANONICAL_BINFO): Add parenthesis.
2514         (CLASSTYPE_SIZE(NODE): Likewise.
2515         (CLASSTYPE_SIZE_UNIT): Likewise.
2516         (CLASSTYPE_ALIGN(NODE): Likewise.
2517         (CLASSTYPE_USER_ALIGN): Likewise.
2518         (TYPE_JAVA_INTERFACE): Likewise.
2519         (CLASSTYPE_PURE_VIRTUALS): Likewise.
2520         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
2521         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
2522         (CLASSTYPE_HAS_MUTABLE): Likewise.
2523         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
2524         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
2525         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
2526         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
2527         (CLASSTYPE_INTERFACE_ONLY): Likewise.
2528         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
2529         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2530         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
2531         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2532         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
2533         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
2534         (BINFO_UNSHARED_MARKED): Whitespace.
2535         (BINFO_MARKED): Whitespace and wrap.
2536         (SET_BINFO_MARKED): Likewise.
2537         (CLEAR_BINFO_MARKED): Likewise.
2538         (BINFO_VTABLE_PATH_MARKED): Likewise.
2539         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
2540         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
2541         (BINFO_SUBVTT_INDEX): Remove parenthesis.
2542         (BINFO_VPTR_INDEX): Likewise.
2543         (BINFO_PRIMARY_BASE_OF): Likewise,
2544         (CLASSTYPE_VFIELDS): Whitespace.
2545         (VF_DERIVED_VALUE): Wrap long line.
2546         (NAMESPACE_LEVEL): Whitespace.
2547         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
2548         (DEFARG_POINTER): Whitespace.
2549         (DECL_NEEDED_P): Remove parenthesis.
2550         (DECL_LANGUAGE): Whitespace.
2551         (SET_DECL_LANGUAGE): Add parenthesis.
2552         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
2553         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
2554         (DECL_IN_AGGR_P): Whitespace.
2555         (DECL_FRIEND_P): Likewise.
2556         (DECL_BEFRIENDING_CLASSES): Likewise.
2557         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
2558         (DECL_NONCONVERTING_P): Whitespace.
2559         (DECL_PURE_VIRTUAL_P): Likewise.
2560         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
2561         (DECL_PENDING_INLINE_INFO): Whitespace.
2562         (DECL_SORTED_FIELDS): Likewise.
2563         (DECL_DEFERRED_FN): Likewise.
2564         (DECL_TEMPLATE_INFO): Likewise.
2565         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
2566         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
2567         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
2568         (TMPL_ARGS_LEVEL): Likewise.
2569         (SET_TMPL_ARGS_LEVEL): Likewise.
2570         (INNERMOST_TEMPLATE_PARMS): Whitespace.
2571         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
2572         (INTEGRAL_CODE_P(CODE): Add parenthesis.
2573         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
2574         (TYPE_HAS_CONSTRUCTOR): Whitespace.
2575         (TREE_HAS_CONSTRUCTOR): Likewise.
2576         (TYPE_HAS_DESTRUCTOR): Likewise.
2577         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
2578         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
2579         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
2580         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
2581         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
2582         (TYPE_PTRMEMFUNC_P): Likewise.
2583         (TYPE_PTRMEMFUNC_FLAG): Likewise.
2584         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
2585         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
2586         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
2587         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
2588         (DECL_ACCESS): Whitespace.
2589         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
2590         (DECL_GLOBAL_DTOR_P): Likewise.
2591         (GLOBAL_INIT_PRIORITY): Likewise.
2592         (DECL_TEMPLATE_PARMS): Likewise.
2593         (DECL_TEMPLATE_RESULT): Likewise.
2594         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
2595         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
2596         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
2597         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
2598         (PRIMARY_TEMPLATE_P): Add parenthesis.
2599         (DECL_USE_TEMPLATE): Whitespace.
2600         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2601         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2602         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2603         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2604         (CALL_DECLARATOR_PARMS): Remove parenthesis.
2605         (CALL_DECLARATOR_QUALS): Likewise.
2606         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
2607         (TEMP_NAME_P): Wrap.
2608         (VFIELD_NAME_P): Likewise.
2609         (B_SET): Uppercase macro parameters and add parenthesis.
2610         (B_CLR): Likewise.
2611         (B_TST): Likewise.
2612         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
2613         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
2614         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
2615         (same_or_base_type_p): Likewise.
2616         (cp_deprecated): Likewise.
2617
2618 2002-01-05  Richard Henderson  <rth@redhat.com>
2619
2620         * semantics.c (expand_body): Revert last change.
2621
2622 2002-01-04  Jason Merrill  <jason@redhat.com>
2623
2624         PR c++/4122
2625         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
2626         lost primary.
2627
2628         * class.c (build_vtbl_initializer): Check for a lost primary
2629         before calculating the vtable entry to throw away.
2630
2631 2002-01-02  Jason Merrill  <jason@redhat.com>
2632
2633         * semantics.c (expand_body): Call outlining_inline_function when
2634         emitting an inline function out of line.
2635
2636 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2637
2638         PR c++/5116, c++/764 reversion
2639         * call.c (build_new_op): Revert the instantiations. They are
2640         incorrect.
2641
2642 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2643
2644         PR c++/5089
2645         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
2646
2647 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2648
2649         PR c++/3716
2650         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
2651         (tsubst, case POINTER_TYPE): Handle pmfs here.
2652         (tsubst, case OFFSET_TYPE): Check it is not an offset to
2653         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
2654
2655 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2656
2657         PR c++/35
2658         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
2659         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
2660         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
2661         PARM_DECL.
2662         (tsubst_template_parms): Break up loop statements.
2663         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
2664         parm PARM_DECLs don't get promoted.
2665
2666 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2667
2668         PR c++/5123
2669         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
2670         (build_x_function_call): Cope with a COMPONENT_REF containing a
2671         TEMPLATE_ID_EXPR.
2672
2673 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2674
2675         PR c++/5213
2676         * pt.c (convert_template_argument): Be more careful determining
2677         when RECORD_TYPE templates are or are not templates.
2678
2679 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2680
2681         PR c++/775
2682         * cp-tree.h (handle_class_head): Adjust prototype.
2683         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
2684         parameters. Use for all class heads.
2685         * parse.y (named_class_head_sans_basetype, named_class_head,
2686         named_complex_class_head_sans_basetype,
2687         named_class_head_sans_basetype_defn,
2688         unnamed_class_head): Remove.
2689         (class_head, class_head_apparent_template): Recognize class heads
2690         (class_head_decl, class_head_defn): New reductions. Process class
2691         heads.
2692         (structsp): Adjust class definition and class declaration
2693         reductions.
2694         (maybe_base_class_list): Give diagnostic on empty list.
2695
2696 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2697
2698         PR c++/4379
2699         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
2700         single non-static member.
2701         (unary_complex_lvalue): If it cannot be a pointer to member, don't
2702         make it so. Check it is not pointer to reference.
2703
2704 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2705
2706         PR c++/5132
2707         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
2708         are processing a template decl.
2709
2710 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2711
2712         PR c++/5116, c++/764
2713         * call.c (build_new_op): Make sure template class operands are
2714         instantiated. Simplify arglist construction.
2715
2716 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2717
2718         * call.c (build_user_type_conversion_1): Use my_friendly_assert
2719         rather than if ... abort.
2720         * cvt.c (convert_to_reference): Likewise.
2721         * semantics.c (setup_vtbl_ptr): Likewise.
2722         * pt.c (lookup_template_class): Comment typo.
2723
2724 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2725
2726         PR c++/5125
2727         * pt.c (push_template_decl_real): Make sure DECL has
2728         DECL_LANG_SPECIFIC.
2729
2730 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2731
2732         PR c++/335
2733         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
2734         for non-reference fields.
2735         * typeck.c (require_complete_type): Use resolve_offset_ref).
2736
2737 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
2738
2739         PR c++/196
2740         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
2741
2742 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
2743
2744         PR c++/160
2745         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
2746         up. Don't stabilize_references when initializing a reference.
2747
2748 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2749
2750         * decl2.c (lang_f_options): Const-ify.
2751
2752 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
2753
2754         * config-lang.in (diff_excludes): Remove.
2755
2756 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
2757
2758         PR c++/90
2759         * typeck.c (build_function_call_real): Use original function
2760         expression for errors.
2761
2762 2001-12-18  Jason Merrill  <jason@redhat.com>
2763
2764         PR c++/3242
2765         * class.c (add_method): Do compare 'this' quals when trying to match a
2766         used function.  Don't defer to another used function.
2767
2768 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2769
2770         * pt.c (instantiate_clone): Remove, fold into ...
2771         (instantiate_template): ... here. Simplify by removing mutual
2772         recursion.
2773         * typeck2.c (build_m_component_ref): Don't cv qualify the function
2774         pointed to by a pointer to function.
2775         * class.c (delete_duplicate_fields_1): Typo.
2776
2777 2001-12-18  Jason Merrill  <jason@redhat.com>
2778
2779         C++ ABI change: destroy value arguments in caller.
2780         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
2781         create an extra binding level for the parameters.
2782         * decl.c (store_parm_decls): Don't do parameter cleanups.
2783
2784 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2785
2786         * call.c (build_new_method_call): Use '%#V'.
2787         * error.c (cv_to_string): Use V parameter to determine padding.
2788
2789 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2790
2791         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
2792         spellings in messages.
2793
2794 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
2795
2796         * cp-tree.h: Delete #defines for cp_error, cp_warning,
2797         cp_pedwarn, and cp_compiler_error.
2798         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
2799         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
2800         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
2801         typeck2.c: Change calls to the above macros to use their
2802         language-independent equivalents: error, warning, pedwarn, and
2803         internal_error respectively.
2804
2805 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
2806
2807         * decl2.c (finish_file): Remove back_end_hook.
2808
2809 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
2810
2811         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
2812         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
2813         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
2814
2815 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
2816
2817         * lang-options.h: Use American spelling in messages.
2818
2819 2001-12-13  Jason Merrill  <jason@redhat.com>
2820
2821         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
2822
2823         Use cleanups to run base and member destructors.
2824         * init.c (push_base_cleanups): New function, split out from...
2825         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
2826         * decl.c (finish_destructor_body): Move vbase destruction code to
2827         push_base_cleanups.
2828         (begin_function_body, finish_function_body): New fns.
2829         (finish_function): Move [cd]tor handling and call_poplevel to
2830         finish_function_body.
2831         (pushdecl): Skip the new level.
2832         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
2833         (setup_vtbl_ptr): Call push_base_cleanups.
2834         * method.c (synthesize_method): Call {begin,end}_function_body.
2835         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
2836         * cp-tree.h: Declare new fns.
2837         * parse.y (function_body, .begin_function_body): New nonterminals.
2838         (fndef, pending_inline, function_try_block): Use function_body.
2839         (ctor_initializer_opt, function_try_block): No longer has a value.
2840         (base_init): Remove .set_base_init token.
2841         (.set_base_init, compstmt_or_error): Remove.
2842         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
2843
2844         * optimize.c (maybe_clone_body): Fix parameter updating.
2845
2846 2001-12-12  Jason Merrill  <jason@redhat.com>
2847
2848         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
2849         * semantics.c (genrtl_start_function): Don't pass
2850         parms_have_cleanups or push an extra binding level.
2851         (genrtl_finish_function): Lose cleanup_label cruft.
2852
2853         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
2854         (ctor_label): Remove.
2855         * semantics.c (finish_return_stmt): Lose ctor_label support.
2856         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
2857         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
2858         dtor_label.
2859
2860         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
2861         check for [cd]tors.
2862         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
2863
2864         * decl.c (finish_function): Check VMS_TARGET, not VMS.
2865
2866         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
2867         (end_cleanup_fn): And poplevel.
2868
2869         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
2870         if we're in a template.
2871
2872 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
2873
2874         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
2875         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
2876         THIS_NAME_P): Delete.
2877         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
2878         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
2879         with internal naming scheme.
2880         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
2881
2882 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
2883
2884         * decl.c (grokdeclarator): Deprecated implicit typename use.
2885
2886 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
2887
2888         PR g++/51
2889         * parse.y (frob_specs): Indicate it is a language linkage which
2890         contained the extern.
2891         * decl.c (grokdeclarator): Allow extern language linkage with
2892         other specifiers.
2893
2894 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
2895
2896         PR g++/72
2897         * decl.c (add_binding): Don't reject duplicate typedefs involving
2898         template parameters.
2899
2900 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
2901
2902         * parse.y, semantics.c: Similarly.
2903
2904 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
2905
2906         PR g++/87
2907         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
2908         (copy_args_p): Rename to ...
2909         (copy_fn_p): ... here.
2910         (grok_special_member_properties): New function.
2911         (grok_op_properties): Lose VIRTUALP parameter.
2912         (copy_assignment_arg_p): Remove.
2913         * call.c (build_over_call): Use copy_fn_p.
2914         * decl.c (grokfndecl): Reformat. Adjust call to
2915         grok_op_properties.
2916         (copy_args_p): Rename to ...
2917         (copy_fn_p): ... here. Reject template functions. Check for pass
2918         by value.
2919         (grok_special_member_properties): Remember special functions.
2920         (grok_ctor_properties): Don't remember them here, just check.
2921         (grok_op_properties): Likewise.
2922         (start_method): Call grok_special_member_properties.
2923         * decl2.c (grokfield): Likewise.
2924         (copy_assignment_arg_p): Remove.
2925         (grok_function_init): Don't remember abstract assignment here.
2926         * pt.c (instantiate_class_template): Call
2927         grok_special_member_properties.
2928         (tsubst_decl): Adjust grok_op_properties call.
2929
2930 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
2931
2932         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
2933         RID_TYPES_COMPATIBLE_P.
2934
2935 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2936
2937         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
2938         call to build_aggr_init.
2939         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
2940
2941 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
2942
2943         * parse.y: Replace uses of the string non-terminal with STRING.
2944         Don't perform string concatentaion here.
2945         (string): Remove non-terminal.
2946         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
2947
2948 2001-12-05  Jason Merrill  <jason@redhat.com>
2949
2950         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
2951         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
2952         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
2953         * pt.c (push_tinst_level): No longer static.
2954         * cp-tree.h: Declare them.
2955
2956         * init.c (resolve_offset_ref): Don't check access for the base
2957         conversion to access a FIELD_DECL.
2958
2959         * cp-tree.h (TYPE_REFFN_P): New macro.
2960         * decl.c (bad_specifiers): Check it, too.
2961
2962         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
2963         on the __*_type_info type if we haven't seen a definition.
2964
2965 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
2966
2967         * decl.c: Include c-common.h.
2968         (shadow_warning): Move to c-common.c.
2969
2970 Wed Dec  5 17:00:49 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2971
2972         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
2973
2974 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2975
2976         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
2977
2978 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2979
2980         PR g++/164
2981         * init.c (sort_base_init): Allow binfos to be directly specified.
2982         * method.c (do_build_copy_constructor): Explicitly convert to the
2983         base instance.
2984         (do_build_assign_ref): Likewise.
2985
2986 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
2987
2988         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
2989         declaration and initialization.
2990
2991 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
2992
2993         * typeck2.c: Remove leading capital from diagnostic messages, as
2994         per GNU coding standards.
2995
2996 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
2997
2998         PR c++/3394
2999         * decl.c (xref_basetypes): Handle attributes between
3000         'class' and name.
3001
3002 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
3003
3004         PR g++/3381
3005         * parse.y (named_complex_class_head_sans_basetype): Add new
3006         reduction.
3007         * Make-lang.in (parse.c): Adjust expected conflict count.
3008
3009 2001-12-03  Jason Merrill  <jason@redhat.com>
3010
3011         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
3012         immediate binfos for our virtual bases.
3013
3014 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
3015
3016         * call.c (build_java_interface_fn_ref): Similarly.
3017         * except.c (is_admissible_throw_operand): Similarly.
3018         * init.c (build_java_class_ref): Similarly.
3019         * xref.c (open_xref_file): Similarly.
3020
3021 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
3022
3023         * class.c (finish_struct): Remove trailing periods from messages.
3024         * decl.c (check_tag_decl): Similarly.
3025         * lex.c (cxx_set_yydebug): Similarly.
3026         * typeck2.c (friendly_abort): Similarly.
3027
3028 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
3029
3030         PR c++/3048
3031         * cp-tree.h (ovl_member): Remove.
3032         * decl2.c (merge_functions): Handle extern "C" functions
3033         specially.
3034         * tree.c (ovl_member): Remove.
3035
3036 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
3037
3038         PR c++/4842
3039         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
3040         FUNCTION_DECL, as input.
3041         (mark_overriders): Remove.
3042         (warn_hidden): Rework for the new ABI.
3043
3044 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
3045
3046         PR c++/3471
3047         * call.c (convert_like_real): Do not build additional temporaries
3048         for rvalues of class type.
3049
3050 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
3051
3052         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
3053         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
3054         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
3055         (DERIVED_FROM_P): Likewise.
3056         (enum base_access): Renumber, add ba_quiet bit mask.
3057         (get_binfo): Remove.
3058         (get_base_distance): Remove.
3059         (binfo_value): Remove.
3060         (ACCESSIBLY_DERIVED_FROM_P): Remove.
3061         * call.c (standard_conversion): Use lookup_base.
3062         * class.c (strictly_overrides): Likewise.
3063         (layout_virtual_bases): Likewise.
3064         (warn_about_ambiguous_direct_bases): Likewise.
3065         (is_base_of_enclosing_class): Likewise.
3066         (add_vcall_offset_vtbl_entries_1): Likewise.
3067         * cvt.c (build_up_reference): Adjust comment.
3068         * init.c (build_member_call): Reformat.
3069         * search.c (get_binfo): Remove.
3070         (get_base_distance_recursive): Remove.
3071         (get_base_distance): Remove.
3072         (lookup_base_r): Tweak.
3073         (lookup_base): Add ba_quiet control. Complete the types here.
3074         (covariant_return_p): Use lookup_base.
3075         * tree.c (binfo_value): Remove.
3076         (maybe_dummy_object): Use lookup_base.
3077         * typeck.c (build_static_cast): Use lookup_base.
3078         (get_delta_difference): Likewise.
3079         * typeck2.c (binfo_or_else): Use lookup_base.
3080         (build_scoped_ref): Add back error_mark_check.
3081         (build_m_component_ref): Use lookup_base.
3082
3083 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
3084
3085         * Make-lang.in (c++.generated-manpages): New dummy target.
3086
3087 Tue Nov 27 09:03:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3088
3089         * Make-lang.in (cp-lang.o): Depends on c-common.h.
3090         * cp-lang.c (c-common.h): Include.
3091         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
3092         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
3093         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
3094
3095 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
3096
3097         * decl2.c (c_language): Move to c-common.c.
3098         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
3099         functions.
3100         (cxx_init): Update.
3101
3102 2001-11-26  Jason Merrill  <jason@redhat.com>
3103
3104         * call.c (joust): Remove COND_EXPR hack.
3105
3106 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
3107
3108         * search.c (lookup_base_r): Declare bk in variable declaration
3109         space.
3110
3111 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
3112
3113         PR g++/3145
3114         * class.c (build_vbase_pointer): Remove.
3115         (build_vbase_path): Remove.
3116         (build_base_path): New function.
3117         * cp-tree.h (base_access, base_kind): New enumerations.
3118         (build_base_path): Declare.
3119         (convert_pointer_to_real): Remove.
3120         (convert_pointer_to): Remove.
3121         (lookup_base): Declare.
3122         (convert_pointer_to_vbase): Remove.
3123         * call.c (build_scoped_method_call): Use lookup_base &
3124         build_base_path instead of convert_pointer_to_real,
3125         get_base_distance & get_binfo.
3126         (build_over_call): Likewise.
3127         * cvt.c (cp_convert_to_pointer): Likewise.
3128         (convert_to_pointer_force): Likewise.
3129         (build_up_reference): Likewise.
3130         (convert_pointer_to_real): Remove.
3131         (convert_pointer_to): Remove.
3132         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
3133         instead of convert_pointer_to_vbase & build_vbase_path.
3134         (emit_base_init): Use build_base_path instead of
3135         convert_pointer_to_real.
3136         (expand_virtual_init): Lose unrequired conversions.
3137         (resolve_offset_ref): Use lookup_base and build_base_path
3138         instead of convert_pointer_to.
3139         * rtti.c (build_dynamic_cast_1): Use lookup_base &
3140         build_base_path instead of get_base_distance & build_vbase_path.
3141         * search.c (get_vbase_1): Remove.
3142         (get_vbase): Remove.
3143         (convert_pointer_to_vbase): Remove.
3144         (lookup_base_r): New function.
3145         (lookup_base): New function.
3146         * typeck.c (require_complete_type): Use lookup_base &
3147         build_base_path instead of convert_pointer_to.
3148         (build_component_ref): Likewise.
3149         (build_x_function_call): Likewise.
3150         (get_member_function_from_ptrfunc): Likewise.
3151         (build_component_addr): Likewise.
3152         * typeck2.c (build_scoped_ref): Likewise.
3153
3154 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
3155
3156         * cp-tree.h (CP_TYPE_QUALS): Removed.
3157         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
3158         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
3159         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
3160         * dump.c (cp_dump_tree): Use void* dump_info argument to match
3161         lang-hooks prototype.
3162         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
3163         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
3164         CP_TYPE_QUALS changed to cp_type_quals.
3165         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
3166         (CXX_C_OBJS): Remove c-dump.o.
3167
3168 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
3169
3170         PR c++/3637
3171         * pt.c (lookup_template_class): Ensure that all specializations
3172         are registered on the list corresponding to the most general
3173         template.
3174
3175 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
3176
3177         * call.c (non_reference): Add documentation.
3178         (convert_class_to_reference): Do not strip reference types
3179         from conversion operators.
3180         (maybe_handle_ref_bind): Simplify.
3181         (compare_ics): Correct handling of references.
3182
3183 2001-11-19  John Wilkinson <johnw@research.att.com>
3184
3185         * dump.c (dump_op): New function.
3186         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
3187         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
3188         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
3189
3190 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
3191
3192         PR4629
3193         * semantics.c (finish_sizeof): Make sure that expression created
3194         while processing a template do not have a type.
3195         (finish_alignof): Likewise.
3196         * typeck.c (c_sizeof): Likewise.
3197         (expr_sizeof): Likewise.
3198
3199 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
3200
3201         * lex.c (cxx_finish): Call c_common_finish.
3202         (finish_parse): Remove.
3203
3204 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3205
3206         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
3207         when displaying error message about missing array bounds.
3208
3209 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3210
3211         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
3212         CONST_CAST_EXPR.
3213         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
3214
3215 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
3216
3217         * cp-tree.h (print_class_statistics): Restore.
3218
3219 2001-11-15  Jason Merrill  <jason@redhat.com>
3220
3221         * method.c (use_thunk): Don't emit debugging information for thunks.
3222
3223         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
3224         * decl.c (make_typename_type): Handle getting a class template.
3225         * search.c (lookup_field_r): A class template is good enough for
3226         want_type.
3227
3228         * call.c (convert_like_real): Only use cp_convert for the bad part.
3229         (standard_conversion): Also allow bad int->enum.
3230         * typeck.c (ptr_reasonably_similar): Also allow functions to
3231         interconvert.  Pointers to same-size integers are reasonably
3232         similar.
3233
3234         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
3235         give it void type.
3236
3237 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
3238
3239         PR g++/3154
3240         * init.c (sort_base_init): Remove unreachable code.
3241         (expand_member_init): Adjust comment to reflect reality. Simplify
3242         and remove unreachable code.
3243
3244 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
3245
3246         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
3247         (cxx_init): Update prototype.
3248         * decl.c (init_decl_processing): Rename.  Move null node init
3249         to its creation time.
3250         * lex.c (cxx_init_options): Update.
3251         (cxx_init): Combine with old init_parse; also call
3252         cxx_init_decl_processing.
3253
3254 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
3255
3256         * decl.c (check_initializer): Try to complete the type of an
3257         array element before checking whether it's complete.  Don't
3258         complain about arrays with complete element types but an
3259         unknown size.
3260         (cp_finish_decl): Build the hierarchical constructor before
3261         calling maybe_deduce_size_from_array_init.
3262
3263 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
3264
3265         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
3266
3267 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
3268
3269         PR g++/4206
3270         * parse.y (already_scoped_stmt): Remove.
3271         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
3272
3273 2001-11-12  H.J. Lu <hjl@gnu.org>
3274
3275         * cvt.c (ocp_convert): Don't warn the address of a weak
3276         function is always `true'.
3277
3278 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
3279
3280         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
3281         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
3282         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
3283         * cp-tree.h (print_class_statistics): Remove.
3284         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
3285         cxx_print_identifier, cxx_set_yydebug): New.
3286         * lex.c (set_yydebug): Rename c_set_yydebug.
3287         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
3288         lang_print_xnode): Rename.
3289         * tree.c (print_lang_statistics): Rename.
3290
3291 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3292
3293         * class.c (dump_array): Fix format specifier warning.
3294
3295 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
3296
3297         * cp-lang.c (LANG_HOOKS_NAME): Override.
3298         (struct lang_hooks): Constify.
3299         * lex.c (cxx_init_options): Update.
3300         (lang_identify): Remove.
3301         * parse.y (language_string): Remove.
3302
3303 2001-11-08  Andreas Franck  <afranck@gmx.de>
3304
3305         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
3306         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
3307         suggested by autoconf.
3308         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
3309         (c++.install-common): Use the transformed target alias names.
3310
3311 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3312
3313         * Make-lang.in: Update.
3314         * cp-lang.c: Include langhooks-def.h.
3315
3316 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3317
3318         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
3319
3320 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3321
3322         * lex.c (copy_lang_type): Add static prototype.
3323
3324 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3325
3326         * pt.c (unify): Handle SCOPE_REF.
3327
3328 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
3329
3330         * tree.c (cp_copy_res_decl_for_inlining): Adjust
3331         DECL_ABSTRACT_ORIGIN for the return variable.
3332
3333 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
3334
3335         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
3336
3337 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
3338
3339         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
3340         semantics.c, spew.c: Fix spelling errors.
3341
3342 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3343
3344         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
3345
3346 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
3347
3348         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
3349         pop_everything.
3350
3351 Tue Oct 23 14:00:20 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3352
3353         * cp-lang.c (cxx_get_alias_set): New function.
3354         Point LANG_HOOKS_GET_ALIAS_SET to it.
3355
3356 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3357
3358         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
3359         * cp-tree.h (make_unbound_class_template): Prototype new function.
3360         * decl.c (make_unbound_class_template): New function.
3361         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
3362         * error.c (dump_type): Likewise.
3363         * mangle.c (write_type): Likewise.
3364         * parse.y (template_parm): Likewise.
3365         (template_argument): Use make_unbound_class_template.
3366         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
3367         (tsubst): Likewise.
3368         (tsubst_copy): Likewise.
3369         (unify): Likewise.
3370         * tree.c (walk_tree): Likewise.
3371         * typeck.c (comptypes): Likewise.
3372
3373 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3374
3375         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
3376         extra calls into fewer ones.
3377
3378 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
3379
3380         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
3381         Warn when merging inline with attribute noinline.
3382         (start_decl, start_function): Warn if inline and attribute
3383         noinline appear in the same declaration.
3384
3385 2001-10-16  H.J. Lu <hjl@gnu.org>
3386
3387         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
3388         for tree checking disabled.
3389
3390 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
3391
3392         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
3393         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
3394
3395 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
3396
3397         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
3398         (unify): Only handle MINUS_EXPR specially if the above flag is set
3399         and the subtracted constant is 1.  Clear the flag on recursive calls.
3400         Set it when unifying the maximum value in an INTEGER_TYPE's range.
3401
3402 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
3403
3404         * decl.c (bad_specifiers): Don't allow exception specifications
3405         on any typedefs.
3406
3407 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
3408
3409         * cp/lex.c (init_cp_pragma): Similarly.
3410
3411 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3412
3413         * pt.c (lookup_template_class): Build complete template arguments
3414         for BOUND_TEMPLATE_TEMPLATE_PARM.
3415
3416 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3417
3418         * cp-tree.h (TYPE_BINFO): Update comment.
3419         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
3420         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
3421         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
3422         (copy_type): Prototype new function.
3423         * lex.c (copy_lang_decl): Gather tree node statistics.
3424         (copy_lang_type): New function.
3425         (copy_type): Likewise.
3426         (cp_make_lang_type): Create lang_type for
3427         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
3428         and BOUND_TEMPLATE_TEMPLATE_PARM.
3429         * pt.c (tsubst): Use copy_type instead of copy_node.
3430         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
3431
3432 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3433
3434         * pt.c (determine_specialization): Ignore functions without
3435         DECL_TEMPLATE_INFO.
3436
3437 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
3438
3439         PR g++/4476
3440         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
3441
3442 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
3443
3444         * typeck2.c (store_init_value): Don't re-digest a bracketed
3445         initializer.
3446
3447         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
3448         ANON_AGGR_TYPE_P.
3449
3450 2001-10-11  Richard Henderson  <rth@redhat.com>
3451
3452         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
3453         of an asm statement.
3454         (build_vtbl_ref_1): Split out from build_vtbl_ref.
3455         (build_vfn_ref): Use it to handle vtable descriptors before
3456         calling build_vtable_entry_ref.
3457         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
3458
3459 2001-10-10  Richard Henderson  <rth@redhat.com>
3460
3461         * parse.y (asm_operand): Allow named operands.
3462         * semantics.c (finish_asm_stmt): Tweek for changed location
3463         of the operand constrant.
3464
3465 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
3466
3467         * call.c (standard_conversion): Add bad conversion between
3468         integers and pointers.
3469         (convert_like_real): Don't use convert_for_initialization for bad
3470         conversions; complain here and use cp_convert.
3471         (build_over_call): Don't handle bad conversions specially.
3472         (perform_implicit_conversion): Allow bad conversions.
3473         (can_convert_arg_bad): New fn.
3474         * cp-tree.h: Declare it.
3475         * typeck.c (convert_for_assignment): Use it.
3476         (ptr_reasonably_similar): Any target type is similar to void.
3477
3478 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
3479
3480         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
3481         (cp/cp-lang.o): New rule.
3482         * cp-tree.h: Declare hooks.
3483         * tree.c: Make hooks non-static.
3484         (init_tree): Don't initialize hooks here.
3485         * lex.c: Likewise.  Move definition of lang_hooks to...
3486         * cp-lang.c: ... new file.
3487
3488 2001-10-08  Richard Henderson  <rth@redhat.com>
3489
3490         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
3491         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
3492
3493 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3494
3495         * class.c (build_vtable_entry_ref): Const-ify.
3496         * decl.c (predefined_identifier,
3497         initialize_predefined_identifiers): Likewise.
3498         * init.c (build_new_1): Likewise.
3499         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
3500         Likewise.
3501
3502 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
3503
3504         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
3505         (INSNS_PER_STMT): Likewise.
3506         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
3507         (copy_body, initialize_inlined_parameters): Likewise.
3508         (declare_return_variable, inlinable_function_p): Likewise.
3509         (expand_call_inline, expand_calls_inline): Likewise.
3510         (optimize_inline_calls, clone_body): Likewise.
3511         * tree.c (walk_tree): Moved to ../tree-inline.c.
3512         (walk_tree_without_duplicates): Likewise.
3513         (copy_tree_r, remap_save_expr): Likewise.
3514
3515 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
3516
3517         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
3518         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
3519         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
3520         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
3521         (flag_inline_trees): Moved declaration to ../tree-inline.h.
3522         (walk_tree): Moved declaration to ../tree-inline.h.
3523         (walk_tree_without_duplicates, copy_tree_r): Likewise.
3524         (remap_save_expr): Likewise.
3525         * decl.c: Include tree-inline.h.
3526         (lang_mark_tree): Don't mark inlined_fns.
3527         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
3528         * optimize.c: Include tree-inline.h.
3529         (optimize_inline_calls): Move declaration to ../tree.h, as
3530         non-static.
3531         (remap_decl): Use language-independent constructs and hooks.
3532         (remap_block, copy_body_r, declare_return_variable): Likewise.
3533         (inlinable_function_p): Likewise.  Don't test for
3534         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
3535         no longer language-specific.
3536         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
3537         call of dump_function to...
3538         (optimize_function): Here...
3539         (clone_body): New function, extracted from...
3540         (maybe_clone_body): ... here.  Build decl_map locally and pass
3541         it on to clone_body.
3542         * pt.c, semantics.c: Include tree-inline.h.
3543         * tree.c: Likewise.
3544         (cp_walk_subtrees): New language-specific hook for tree inlining.
3545         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
3546         cp_is_overload_p, cp_auto_var_in_fn_p,
3547         cp_copy_res_decl_for_inlining): Likewise.
3548         (walk_tree): Move language-specific constructs into...
3549         (cp_walk_subtrees): this new function.
3550         (copy_tree_r): Use language-independent constructs and hooks.
3551         (init_tree): Initialize tree inlining hooks.
3552         (remap_save_expr): Adjust prototype so that the declaration
3553         does not require the definition of splay_tree.
3554
3555 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3556
3557         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
3558         to build the declaration instead of the declaration itself.
3559
3560 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
3561
3562         * decl2.c (cxx_decode_option): Add 'else'.
3563
3564         * spew.c (end_input): No longer static.
3565         * cp-tree.h: Declare it.
3566         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
3567
3568 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3569
3570         * call.c (build_over_call), typeck.c (build_function_call_real):
3571         Pass type attributes to check_function_format rather than name or
3572         assembler name.  Don't require there to be a name or assembler
3573         name to check formats.
3574
3575 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3576
3577         * decl.c (init_decl_processing): Don't call
3578         init_function_format_info.  Initialize lang_attribute_table
3579         earlier.
3580         (builtin_function): Call decl_attributes.
3581         (insert_default_attributes): New.
3582
3583 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
3584
3585         * decl.c (grokdeclarator): Copy array typedef handling from C
3586         frontend.
3587
3588         * decl.c (grokdeclarator): Copy too-large array handling from C
3589         frontend.
3590
3591 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
3592
3593         * config-lang.in (target_libs): Added target-gperf, so that we
3594         don't try to build it if C++ is disabled.
3595
3596 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
3597
3598         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
3599         (cp/errfn.o): Delete rule.
3600         (cp/error.o): Depend on flags.h.
3601         * errfn.c: Delete file.
3602         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
3603         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
3604         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
3605         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
3606         internal_error respectively.  Make cp_deprecated into a macro.
3607         Don't define cp_printer typedef or declare cp_printers.
3608         * error.c: Include flags.h.
3609         Delete: struct tree_formatting_info, print_function_argument_list,
3610         print_declaration, print_expression, print_function_declaration,
3611         print_function_parameter, print_type_id, print_cv_qualifier_seq,
3612         print_type_specifier_seq, print_simple_type_specifier,
3613         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
3614         print_parameter_declaration_clause, print_exception_specification,
3615         print_nested_name_specifier, and definition of cp_printers.
3616         (locate_error): New function.
3617         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
3618         rewritten in terms of locate_error and diagnostic.c.
3619         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
3620         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
3621         (init_error): Adjust to match.
3622
3623 Sat Sep 22 09:15:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3624
3625         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
3626
3627 2001-09-21  Richard Henderson  <rth@redhat.com>
3628
3629         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
3630         (build_vtbl_initializer): Likewise.
3631         (build_vfn_ref): New.
3632         * cp-tree.h: Declare it.
3633         * call.c (build_over_call): Use it.
3634         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
3635         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
3636
3637 Fri Sep 21 08:16:19 2001  J"orn Rennecke <amylaar@redhat.com>
3638
3639         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
3640
3641 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3642
3643         Table-driven attributes.
3644         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
3645         * decl2.c (cplus_decl_attributes): Only take one attributes
3646         parameter.
3647         * cp-tree.c (cplus_decl_attributes): Update prototype.
3648         * class.c (finish_struct), decl.c (start_decl, start_function),
3649         decl2.c (grokfield), friend.c (do_friend), parse.y
3650         (parse_bitfield): Update calls to cplus_decl_attributes.
3651         * decl.c (grokdeclarator): Take a pointer to a single ordinary
3652         attribute list.
3653         * decl.h (grokdeclarator): Update prototype.
3654         * decl2.c (grokfield): Take a single ordinary attribute list.
3655         * friend.c (do_friend): Likewise.
3656         * decl.c (shadow_tag, groktypename, start_decl,
3657         start_handler_parms, grokdeclarator, grokparms, start_function,
3658         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
3659         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
3660         (process_template_parm, do_decl_instantiation): Pass single
3661         ordinary attribute lists around.
3662         * decl.c (grokdeclarator): Correct handling of nested attributes.
3663         Revert the patch
3664         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
3665                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
3666                 not the left.
3667         .
3668         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
3669         (cp_attribute_table): Declare.
3670         * decl.c (valid_lang_attribute): Don't define.
3671         (lang_attribute_table): Define.
3672         (init_decl_processing): Initialize lang_attribute_table instead of
3673         valid_lang_attribute.
3674         * tree.c (cp_valid_lang_attribute): Remove.
3675         (handle_java_interface_attribute, handle_com_interface_attribute,
3676         handle_init_priority_attribute): New functions.
3677         (cp_attribute_table): New array.
3678         * decl2.c (import_export_class): Don't use
3679         targetm.valid_type_attribute.
3680
3681 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3682
3683         * Make-lang.in (cp/error.o): Depend on real.h
3684         * error.c: #include "real.h"
3685
3686 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3687
3688         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
3689         xmalloc/strcpy/strcat.
3690
3691 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3692
3693         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
3694         Const-ification.
3695         * pt.c (tsubst_decl): Likewise.
3696
3697 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3698
3699         * decl2.c (lang_f_options): Const-ification.
3700         * lex.c (cplus_tree_code_name): Likewise.
3701         * spew.c (yyerror): Likewise.
3702
3703 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3704
3705         PR c++/3986
3706         * class.c (force_canonical_binfo_r): Check & move an indirect
3707         primary base first.
3708         (force_canonical_binfo): Check that it's not already
3709         canonical.
3710         (mark_primary_virtual_base): Remove BINFO parameter.
3711         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
3712
3713 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3714
3715         Remove TYPE_NONCOPIED_PARTS.
3716         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
3717         CLASSTYPE_PURE_VIRTUALS.
3718         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
3719         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
3720         (layout_class_type): Don't call fixup_inline_methods here ...
3721         (finish_struct_1): ... call it here.
3722
3723 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
3724
3725         * decl.c (duplicate_decls): Remove code deadling with
3726         DECL_SAVED_INSNS.
3727         * decl2.c (finish_file): Likewise.
3728         * pt.c (instantiate_decl): Likewise.
3729         * semantics.c (expand_body): Don't defer local functions if
3730         they wouldn't be deferred for some other reason.  Don't
3731         generate RTL for functions that will not be emitted.
3732         (genrtl_start_function): Remove code deadling with
3733         DECL_SAVED_INSNS.
3734         (genrtl_finish_function): Likewise.
3735
3736 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3737
3738         PR c++/4203
3739         * call.c (build_over_call): Do not optimize any empty base
3740         construction.
3741
3742 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3743
3744         * error.c (dump_template_decl): Output template parameters
3745         together with their specifiers.
3746         Output `class' prefix for template template parameter.
3747         (dump_decl): Fix formatting.
3748
3749 2001-08-30  Kurt Garloff  <garloff@suse.de>
3750
3751         * optimize.c (inlinable_function_p): Allow only smaller single
3752         functions. Halve inline limit after reaching recursive limit.
3753
3754 2001-08-30  Joern Rennecke <amylaar@redhat.com>
3755             Jason Merrill  <jason_merrill@redhat.com>
3756
3757         * class.c (build_vtable_entry_ref): Subtract in char*, not
3758         ptrdiff_t.
3759
3760 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
3761
3762         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
3763         (build_cplus_array_type): Use cp_build_qualified_type, not
3764         TYPE_MAIN_VARIANT, to get an unqualified version.
3765
3766         * decl2.c (grok_alignof): Lose.
3767         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
3768         * typeck.c (c_alignof): Lose.
3769         * semantics.c (finish_sizeof, finish_alignof): New.
3770         * parse.y: Use them.
3771         * cp-tree.h: Declare them.
3772
3773 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
3774
3775         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
3776         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
3777         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
3778
3779 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
3780
3781         * typeck2.c (add_exception_specifier): Only require complete type if
3782         not in processing template declaration.
3783
3784 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3785
3786         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
3787         GNU_xref_start_scope and GNU_xref_end_scope.
3788
3789         * tree.c (TYPE_HASH): Moved to ../tree.h.
3790
3791 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
3792
3793         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
3794         on COMPOUND_EXPRs.
3795
3796 2001-08-14  Richard Henderson  <rth@redhat.com>
3797
3798         * class.c, cp-tree.h (build_vfn_ref): Remove.
3799         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
3800
3801 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
3802
3803         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
3804         empty class assignment as having side-effects to avoid
3805         spurious warnings.
3806
3807 2001-08-13  Zack Weinberg  <zackw@panix.com>
3808
3809         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
3810         * except.c: Include libfuncs.h.
3811
3812 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3813
3814         * decl.c (grokdeclarator): Clarify diagnostic message.
3815
3816 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3817
3818         * decl2.c (do_nonmember_using_decl): Replace using directive
3819         with using declaration in the error message.
3820
3821 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3822
3823         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
3824         criterion to avoid rebuilding expression tree instead of
3825         processing_template_decl.
3826
3827 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3828
3829         Support named return value optimization for inlines, too.
3830         * decl.c (finish_function): Nullify returns here.
3831         * semantics.c (genrtl_start_function): Not here.
3832         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
3833         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
3834         Also nullify the CLEANUP_STMT for the nrv.
3835         * cp-tree.h: Declare it.
3836         * optimize.c (declare_return_variable): Replace the nrv with the
3837         return variable.
3838         * typeck.c (check_return_expr): Be more flexible on alignment check.
3839         Ignore cv-quals when checking for a matching type.
3840
3841 2001-08-09  Richard Henderson  <rth@redhat.com>
3842
3843         * decl2.c (finish_objects): Use target hooks instead of
3844         assemble_constructor and assemble_destructor.
3845
3846 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3847
3848         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
3849
3850 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
3851
3852         PR c++/3820
3853         Stop using TYPE_NONCOPIED_PARTS.
3854         * call.c (build_over_call): Be careful when copy constructing
3855         or assigning to an empty class.
3856         * class.c (check_bases_and_members): It has a
3857         COMPLEX_ASSIGN_REF if it has a vptr.
3858         (layout_class_type): Don't add empty class padding to
3859         TYPE_NONCOPIED_PARTS.
3860         (finish_struct_1): Don't add the VFIELD either.
3861         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
3862         initialization.
3863
3864 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3865
3866         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
3867
3868 2001-08-06  Richard Henderson  <rth@redhat.com>
3869
3870         * decl2.c (finish_objects): Pass a symbol_ref and priority to
3871         assemble_{constructor,destructor}.  Remove priority handling.
3872
3873 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3874
3875         Don't allow template-id in using-declaration.
3876         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
3877         (do_class_using_decl): Likewise.
3878
3879 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3880
3881         * cp/spew.c (read_token): No need to pop buffers.
3882
3883 2001-08-02  Stan Shebs  <shebs@apple.com>
3884
3885         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
3886         (fnaddr_from_vtable_entry): Remove decl.
3887         * method.c (use_thunk): Update comment.
3888
3889 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
3890
3891         * repo.c (get_base_filename): Change return value to const char
3892         pointer.
3893
3894 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
3895
3896         Kill -fhonor-std.
3897         * NEWS: Document.
3898         * cp-tree.h (flag_honor_std): Remove.
3899         (CPTI_FAKE_STD): Remove.
3900         (std_node): Remove comment about it being NULL.
3901         (fake_std_node): Remove.
3902         * decl.c (in_fake_std): Remove.
3903         (walk_namespaces_r): Remove fake_std_node check.
3904         (push_namespace): Remove in_fake_std code.
3905         (pop_namespace): Likewise.
3906         (lookup_name_real): Remove fake_std_node check.
3907         (init_decl_processing): Always create std_node. Always add
3908         std:: things there.
3909         (builtin_function): Always put non '_' fns in std.
3910         * decl2.c (flag_honor_std): Remove.
3911         (lang_f_options): Remove honor-std.
3912         (unsupported_options): Add honor-std.
3913         (set_decl_namespace): Remove fake_std_node check.
3914         (validate_nonmember_using_decl): Likewise.
3915         (do_using_directive): Likewise.
3916         (handle_class_head): Likewise.
3917         * dump.c (cp_dump_tree): Likewise.
3918         * except.c (init_exception_processing): Adjust.
3919         * init.c (build_member_call): Remove fake_std_node check.
3920         (build_offset_ref): Likewise.
3921         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
3922         * rtti.c (init_rtti_processing): Adjust.
3923
3924 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
3925
3926         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
3927         operand while calling cp_tree_equal.
3928
3929 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3930
3931         The 3.0 ABI no longer has vbase pointer fields.
3932         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
3933         FORMAT_VBASE_NAME): Remove.
3934         * method.c (do_build_copy_constructor): Adjust.
3935         (do_build_assign_ref): Adjust.
3936         * search.c (lookup_field_r): Adjust.
3937         * typeck.c (build_component_ref): Adjust.
3938
3939         The 3.0 ABI always has a vtable pointer at the start of every
3940         polymorphic class.
3941         * rtti.c (build_headof_sub): Remove.
3942         (build_headof): Adjust.
3943         (get_tinfo_decl_dynamic): No need to check flag_rtti
3944         here. Adjust.
3945         (create_real_tinfo_var): Explain why we need a hidden name.
3946
3947 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3948
3949         PR c++/3631
3950         * class.c (update_vtable_entry_for_fn): The fixed adjustment
3951         of a virtual thunk should be from declaring base.
3952
3953 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3954
3955         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
3956         the shared virtual base, so preserving inheritance graph order.
3957
3958 2001-07-30  Andreas Jaeger  <aj@suse.de>
3959
3960         * decl2.c: Remove unused var global_temp_name_counter.
3961
3962 2001-07-28  Richard Henderson  <rth@redhat.com>
3963
3964         * method.c (pending_inlines): Remove.
3965
3966 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3967
3968         * class.c (mark_primary_virtual_base): Don't adjust base
3969         offsets here.
3970         (dfs_unshared_virtual_bases): Adjust them here.
3971         (mark_primary_bases): Explain why we adjust at the end.
3972
3973 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3974
3975         * class.c (finish_struct_1): When copying the primary base's
3976         VFIELD, make sure we find it is at offset zero.
3977
3978 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3979
3980         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
3981         tsubst_expr for default template arguments.
3982
3983 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3984
3985         PR c++/3621
3986         * spew.c (yylex): Only copy the token's lineno, if it is
3987         non-zero.
3988
3989 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3990
3991         PR c++/3624
3992         * call.c (resolve_args): Simplify, call
3993         convert_from_reference.
3994         (build_new_op): Resolve and convert from reference ARG1
3995         earlier. Adjust ARG2 & ARG3 resolve and conversion.
3996
3997 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3998
3999         * decl.c (last_function_parm_tags): Remove.
4000         (current_function_parm_tags): Remove.
4001         (init_decl_processing): Adjust.
4002         (start_function): Adjust.
4003         (store_parm_decls): Adjust.
4004
4005         PR c++/3152
4006         * decl.c (grokdeclarator): Detect when a function typedef is
4007         declaring a function, and create last_function_parms correctly.
4008
4009 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
4010
4011         * call.c (joust): Only prefer a non-builtin candidate to a builtin
4012         one if they have the same signature.
4013
4014         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
4015         it rather than toplevel_bindings_p.  Give it a mangled name if static.
4016         (convert_to_reference): Adjust.
4017         * decl2.c (get_temp_name): Lose.
4018         * mangle.c (mangle_ref_init_variable): New fn.
4019         (mangle_guard_variable): Strip the ref-init header.
4020         * cp-tree.h: Adjust.
4021         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
4022         initializer.
4023         (grok_reference_init): Always use DECL_INITIAL.
4024
4025 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
4026
4027         PR c++/3416
4028         * call.c (build_conditional_expr): Recheck args after
4029         conversions.
4030         * cp-tree.h (build_conditional_expr): Move to correct file.
4031         * typeck.c (decay_conversion): Diagnose any unknown types
4032         reaching here.
4033         (build_binary_op): Don't do initial decay or default
4034         conversions on overloaded functions.
4035         (build_static_cast): Don't do a decay conversion here.
4036
4037 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
4038
4039         PR c++/3543
4040         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
4041         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
4042
4043 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
4044
4045         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
4046         (create_vtbl_ptr): ... here.
4047
4048 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
4049
4050         * class.c (build_vbase_offset_vbtl_entries): Look for
4051         non-primary base of which we are a sub vtable.
4052
4053 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
4054
4055         * semantics.c (finish_this_expr):  Remove unused code.
4056
4057 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
4058
4059         Simplify rtti, now we've only one ABI.
4060         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
4061         CPTI_TINFO_VAR_ID.
4062         (tinfo_decl_id, tinfo_var_id): Remove.
4063         (get_typeid_1): Remove.
4064         * rtti.c
4065         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
4066         (typeid_ok_p): New function.
4067         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
4068         (get_tinfo_decl): Remove old abi documentation.
4069         (tinfo_from_decl): Remove.
4070         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
4071         (get_typeid_1): Remove.
4072         (get_base_offset): Remove.
4073         (synthesize_tinfo_var): Absorb get_base_offset.
4074         (create_real_tinfo_var): Don't use tinfo_decl_id.
4075
4076 2001-07-23  Graham Stott  <grahams@redhat.com>
4077
4078         * cp/class.c (type_requires_array_cookie): Fix use of uninitialised
4079         variable has_two_argument_delete_p.
4080
4081 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
4082
4083         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
4084         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
4085         (CPTI_INDEX_IDENTIFIER): Remove.
4086         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
4087         (delta2_identifier): Remove.
4088         (index_identifier): Remove.
4089         (pfn_or_delta2_identifier): Remove.
4090         (flag_vtable_thunks): Remove.
4091         (VTABLE_DELTA2_NAME): Remove.
4092         (VTABLE_INDEX_NAME): Remove.
4093         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
4094         (vfunc_ptr_type_node): Adjust.
4095         (VTABLE_NAME_PREFIX): Adjust.
4096         (build_vfn_ref): Lose first parameter.
4097         (fixup_all_virtual_upcast_offsets): Remove.
4098         * decl.c (initialize_predefined_identifiers): Remove
4099         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
4100         (init_decl_processing): Remove no-vtable-thunk code.
4101         * decl2.c (flag_vtable_thunks): Remove.
4102         (mark_vtable_entries): Remove no-vtable-thunk code.
4103         * error.c (dump_decl): Remove no-vtable-thunk code.
4104         (dump_expr): Adjust ptr to member function code.
4105         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
4106         code.
4107         * rtti.c (build_headof): Remove no-vtable-thunk code.
4108         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
4109         * search.c (get_base_distance): Remove expand_upcast_fixups case.
4110         (virtual_context) Remove.
4111         (expand_upcast_fixups): Remove.
4112         (fixup_virtual_upcast_offsets): Remove.
4113         (fixup_all_virtual_upcast_offsets): Remove.
4114         * typeck.c (get_member_function_from_ptrfunc): Remove
4115         no-vtable-thunk code.
4116         * call.c (build_over_call): Adjust call to build_vfn_ref.
4117         * class.c (build_vfn_ref): Lose first parameter. Remove
4118         no-vtable-thunk code.
4119         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
4120         (build_vtable_entry): Remove no-vtable-thunk code.
4121
4122 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
4123
4124         Remove old-abi remnants. Remove comments about old abi
4125         behaviour. Remove references to 'new-abi' in comments.
4126         * cp-tree.h: Adjust comments.
4127         (vbase_offsets_in_vtable_p): Delete.
4128         (vcall_offsets_in_vtable_p): Delete.
4129         (vptrs_present_everywhere_p): Delete.
4130         (all_overridden_vfuns_in_vtables_p): Delete.
4131         (merge_primary_and_secondary_vtables_p): Delete.
4132         (TYPE_CONTAINS_VPTR_P): Adjust.
4133         (VTT_NAME_PREFIX): Remove.
4134         (CTOR_VTBL_NAME_PREFIX): Remove.
4135         (init_vbase_pointers): Remove.
4136         * class.c: Adjust coments.
4137         (build_vbase_pointer_fields): Delete.
4138         (build_vbase_pointer): Remove old-abi code.
4139         (build_secondary_vtable): Likewise.
4140         (modify_all_vtables): Likewise.
4141         (create_vtable_ptr): Likewise.
4142         (layout_class_type): Likewise.
4143         (finish_struct_1): Likewise.
4144         (finish_vtbls): Likewise.
4145         (dfs_finish_vtbls): Delete.
4146         (build_vbase_offset_vtbl_entries): Remove old-abi code.
4147         * cvt.c: Adjust comments.
4148         * decl.c: Adjust comments.
4149         * decl2.c: Adjust comments.
4150         * init.c: Adjust comments.
4151         (construct_virtual_bases): Remove old-abi code.
4152         * lang-specs.h: Remove -fno-new-abi.
4153         * mangle.c: Adjust comments.
4154         * rtti.c: Adjust comments.
4155         (get_base_offset): Remove old-abi-code.
4156         * search.c: Adjust comments.
4157         (dfs_init_vbase_pointers): Remove.
4158         (dfs_vtable_path_unmark): Remove.
4159         (init_vbase_pointers): Remove.
4160         * semantics.c: Adjust comments.
4161         (emit_associated_thunks): Remove old-abi code.
4162         * typeck.c: Adjust comments.
4163
4164 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
4165
4166         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
4167         params.h.
4168
4169 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
4170
4171         * class.c (finish_struct_anon): Forbid nested classes.
4172
4173 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
4174
4175         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
4176         * optimize.c: Include debug.h.
4177         (maybe_clone_body): Use debug hook.
4178         * semantics.c: Include debug.h.
4179         (expand_body): Use debug hook.
4180
4181 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
4182
4183         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
4184
4185 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
4186
4187         * class.c (type_requires_array_cookie): New function.
4188         (check_methods): Don't try to figure out whether the type needs a
4189         cookie here.
4190         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
4191         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
4192         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
4193         * pt.c (instantiate_class_template): Don't set
4194         TYPE_VEC_DELETE_TAKES_SIZE.
4195         * NEWS: Document ABI changes from GCC 3.0.
4196
4197 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
4198             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4199
4200         * NEWS (Changes in GCC 3.0): Fix typo.
4201
4202 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
4203
4204         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
4205         which attributes are to be attached, and a flags argument.  Update
4206         call to decl_attributes.
4207         (grokfield): Update call to decl_attributes.
4208         * class.c (finish_struct): Update call to cplus_decl_attributes.
4209         * cp-tree.h (cplus_decl_attributes): Update prototype.
4210         * decl.c (start_decl, grokdeclarator, start_function): Update
4211         calls to decl_attributes and cplus_decl_attributes.
4212         * friend.c (do_friend): Update call to cplus_decl_attributes.
4213         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
4214
4215 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
4216
4217         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
4218         for `register' variables with an asm-specification.
4219
4220 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
4221
4222         * semantics.c (finish_asm_stmt): Mark the output operands
4223         to an asm addressable, if necessary.
4224
4225 2001-07-11  Ben Elliston  <bje@redhat.com>
4226
4227         * Revert this change -- there is a subtle bug.
4228
4229         PR c++/80
4230         * decl.c (finish_enum): New "attributes" argument; pass it to
4231         cplus_decl_attributes.  Use a narrower type if the enum is packed.
4232         * cp-tree.h (finish_enum): Adjust prototype.
4233         * parse.y (enum_head): New non-terminal.
4234         (structsp): Use it. Enums now may be preceded or followed by
4235         optional attributes -- pass their chained tree to finish_enum().
4236         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
4237
4238 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
4239
4240         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
4241         variables.
4242
4243 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
4244
4245         * semantics.c (cp_expand_stmt): Fix for null
4246         current_function_return_value.
4247
4248 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
4249
4250         * call.c (build_op_delete_call): Initialize fn.
4251         (convert_like_real): Delete conditional.
4252         (joust): Initialize *w and *l.
4253         * class.c: Add prototype for binfo_ctor_vtable.
4254         (get_primary_binfo): Initialize result.
4255         * init.c (build_java_class_ref): Initialize name.
4256
4257 2001-07-09  Erik Rozendaal  <dlr@acm.org>
4258
4259         * typeck.c (unary_complex_lvalue): Do not duplicate the
4260         argument to modify, pre-, or post-increment when used as an
4261         lvalue and when the argument has side-effects.
4262
4263 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
4264
4265         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
4266         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
4267         cplus_decl_attributes even if attrs is NULL.
4268         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
4269
4270 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
4271
4272         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
4273         calls to decl_attributes.
4274
4275 2001-07-06  Ira Ruben   <ira@apple.com>
4276
4277         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
4278         be DECL_TEMPLATE_RESULT.
4279
4280 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4281
4282         * cp-tree.h (copy_template_template_parm): Rename to ...
4283         (bind_template_template_parm): ... here.
4284         * tree.c (copy_template_template_parm): Rename to ...
4285         (bind_template_template_parm): ... here.  Remove the case when
4286         NEWARGS is NULL_TREE.
4287         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
4288         BOUND_TEMPLATE_TEMPLATE_PARM.
4289         * pt.c (lookup_template_class): Adjust.
4290
4291 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
4292
4293         * cvt.c (convert_lvalue): New fn.
4294         * cp-tree.h: Declare it.
4295         * method.c (do_build_assign_ref): Use it.
4296         (do_build_copy_constructor): Convert parm to base types
4297         before calling base constructors.
4298
4299         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
4300         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
4301         optimize.
4302         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
4303
4304 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
4305
4306         * optimize.c (optimize_inline_calls): New function, broken out
4307         of ...
4308         (optimize_function): ... here. Call it. Don't inline if it is
4309         a thunk.
4310         (dump_function): Print name of dump flag causing this dump.
4311         * semantics.c (expand_body): Move thunk inline check to
4312         optimize_function.
4313
4314 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
4315
4316         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
4317         (comptypes): Use target.comp_type_attributes.
4318
4319 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
4320
4321         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
4322
4323 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
4324
4325         * error.c (lang_print_error_function): Add a `diagnostic_context *'
4326         parameter. Tweak.
4327
4328 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4329
4330         * decl2.c (import_export_class): Update.
4331
4332 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
4333
4334         * error.c (init_error): Adjust settings.
4335
4336 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
4337
4338         * error.c (init_error): Adjust settings.
4339
4340 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
4341
4342         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
4343         return pointers to data members by reference rather than by value.
4344
4345 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
4346
4347         Implement the Named Return Value optimization.
4348         * cp-tree.h (struct cp_language_function): Add x_return_value.
4349         (current_function_return_value): Now a macro.
4350         * decl.c: Don't define it.
4351         (define_label, finish_case_label): Don't clear it.
4352         (init_decl_processing): Don't register it with GC.
4353         * semantics.c (genrtl_finish_function): Don't check it for
4354         no_return_label.  Copy the RTL from the return value to
4355         current_function_return_value and walk, calling...
4356         (nullify_returns_r): ...this new fn.
4357         * typeck.c (check_return_expr): Set current_function_return_value.
4358
4359 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
4360
4361         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
4362         sharing a ctor vtable with.  Merge code for cases 1 and 2.
4363         (binfo_ctor_vtable): New fn.
4364         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
4365
4366 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
4367
4368         * class.c (dfs_find_final_overrider): Fix logic.
4369
4370         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
4371         virtual thunk instead of non-virtual.
4372         (get_matching_virtual): Uncomment.
4373
4374         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
4375         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
4376         PARM, not ARG.
4377
4378 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
4379
4380         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
4381         we've not emerged from the hierarchy of RTTI_BINFO on reaching
4382         a non-virtual base.
4383
4384 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
4385
4386         * NEWS: Update release number.
4387
4388 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
4389
4390         PR c++/3130, c++/3131, c++/3132
4391         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
4392         * class.c (force_canonical_binfo_r): Move
4393         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
4394         virtual bases unless they're primary and what they're primary
4395         too has been moved.
4396         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
4397         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
4398         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
4399         derived binfo.
4400         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
4401         (layout_nonempty_base_or_field): Add most derived type
4402         parameter. Adjust.
4403         (layout_empty_base): Likewise.
4404         (build_base_field): Likewise.
4405         (build_base_fields): Likewise.
4406         (propagate_binfo_offsets): Add most derived type
4407         parameter. Skip non canonical virtual bases too.
4408         (dfs_set_offset_for_unshared_vbases): Don't skip primary
4409         bases. Do skip canonical bases.
4410         (layout_virtual_bases): Adjust.
4411         (layout_class_type): Adjust.
4412         (dfs_get_primary_binfo): Build list of virtual primary base
4413         candidates.
4414         (get_primary_binfo): Check that the shared virtual primary
4415         base candidate was found first.
4416         (accumulate_vtbl_inits): Don't do anything for non-vptr
4417         containing binfos. For case 1 primary virtual bases, keep
4418         checking that we've not emerged from the hierarchy of RTTI_BINFO.
4419
4420 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
4421
4422         PR c++/3089
4423         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
4424         hierarchy looking for primary bases for a ctor
4425         vtable. Recursively call oneself, if we meet our primary via
4426         this route and haven't met it yet via inheritance graph order.
4427
4428 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
4429
4430         * lang-options.h: Emit documentation for -fno-honor-std, not
4431         -fhonor-std.
4432
4433 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
4434
4435         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
4436         Don't clobber delta.
4437         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
4438
4439 2001-06-10  Mark Mitchell <mark@codesourcery.com>
4440             Gabriel Dos Reis  <gdr@codesourcery.com>
4441
4442         * Make-lang.in (cp/call.o): Depend on diagnostic.h
4443         (cp/typeck.o): Depend on diagnostic.h
4444         (cp/typeck2.o): Depend on diagnostic.h
4445         (cp/repo.o): Depend on dignostic.h
4446         * typeck.c: #include diagnostic.h
4447         (convert_for_initialization): Remove extern declaration for
4448         warningcount and errorcount.
4449
4450         * call.c: #include diagnostic.h
4451         (convert_like_real): Remove extern declaration for warnincount and
4452         errorcount.
4453
4454         * repo.c: #include diagnostic.h
4455         * typeck2.c: #include diagnostic.h
4456
4457 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4458
4459         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
4460         in previous change.
4461
4462 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4463
4464         PR c++/2929
4465         * friend.c (do_friend): Use push_decl_namespace for classes at
4466         namespace scope.
4467
4468 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4469             Jason Merrill <jason_merrill@redhat.com>
4470
4471         PR c++/3061
4472         * class.c (build_secondary_vtable): Use assert, rather than an error
4473         message.
4474         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
4475         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
4476         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
4477         Don't set BINFO_VTABLE for a primary virtual base.
4478
4479 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
4480
4481         * decl.c (duplicate_decls): Update source position information
4482         when a template function is defined.
4483
4484 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
4485
4486         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
4487
4488 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
4489
4490         PR c++/2914
4491         * decl.c (pushtag): Don't push into a complete type's scope.
4492
4493 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
4494
4495         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
4496         (struct lang_decl_flags): Lose generate_with_vtable_p.
4497         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
4498         * class.c (copy_virtuals): Adjust.
4499         * decl2.c (mark_vtable_entries): Adjust.
4500         * method.c (make_thunk, build_vtable_entry): Adjust.
4501         * class.c (update_vtable_entry_for_fn): Only look as far as the
4502         first defining class.
4503         (build_vtbl_initializer): Put nothing in the slot for a function only
4504         defined in a lost primary virtual base.
4505         (add_vcall_offset_vtbl_entries_1): Use the same code for
4506         the lost primary case and the normal case.
4507         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
4508         (get_vfield_offset, get_derived_offset): Lose.
4509         (dfs_find_final_overrider): Use look_for_overrides_here.
4510         (get_matching_virtual): New fn.
4511         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
4512         not BV_VCALL_INDEX.
4513         * search.c (look_for_overrides_here): Split out from...
4514         (look_for_overrides_r): Here.
4515
4516         * class.c (find_final_overrider): Return error_mark_node on error.
4517
4518         * decl2.c (key_method): #if 0 accidental change.
4519
4520 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4521
4522         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
4523         (build_over_call): Likewise.
4524         * decl.c (grokparms): Likewise.
4525         * pt.c (tsubst_decl): Likewise.
4526         * typeck.c (convert_arguments): Likewise.
4527
4528 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
4529
4530         * semantics.c (begin_class_definition): Robustify.
4531
4532         * pt.c (instantiate_decl): Tell the repository code about the
4533         clones, not the cloned functions.
4534         * repo.c (repo_template_used): Explicitly instantiate the cloned
4535         function, not the clones.
4536
4537 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4538
4539         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
4540         ICS_BAD_FLAG on created conversion.
4541         (compare_ics): Break out rank.
4542
4543 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4544
4545         * decl.c (xref_tag): Remove extraneous %s on dependent name
4546         lookup warning.
4547
4548 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4549
4550         * class.c (layout_vtable_decl): Fix off by one error on
4551         build_index_type.
4552         (build_vtt): Likewise.
4553         (build_ctor_vtbl_group): Likewise.
4554
4555 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4556
4557         * class.c (maybe_indent_hierarchy): New function.
4558         (dump_class_hierarchy_r): Add flags. Dump extra binfo
4559         information, if enabled. Use maybe_indent_hierarchy. Adjust
4560         output format.
4561         (dump_class_hierarchy): Adjust prototype. Adjust output format.
4562         (dump_array, dump_vtable, dump_vtt): New functions.
4563         (finish_struct_1): Adjust hierarchy dumping.
4564         (initialize_vtable): Call dump_vtable.
4565         (build_vtt): Call dump_vtt.
4566         (build_ctor_vtbl_group): Call dump_vtable.
4567         * decl2.c (flag_dump_class_layout): Remove.
4568         (cxx_decode_option): Remove dump translation unit
4569         and dump class hierarchy check. Call dump_switch_p.
4570         (finish_file): Adjust dumping.
4571         (dump.c): Only dump base classes if not TDF_SLIM.
4572         Only dump namespace members if not TDF_SLIM.
4573         * optimize.c (dump_function): New function.
4574         (optimize_function): Call dump_function.
4575         * semantics.c (expand_body): Use dump_enabled_p.
4576
4577 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
4578
4579         PR g++/2936
4580         Part missed from first commit
4581         * decl2.c (finish_anon_union): Copy context.
4582
4583 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
4584
4585         PR g++/2936
4586         * optimize.c (remap_decl): Remap anonymous aggregate members too.
4587
4588 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
4589
4590         PR g++/2823
4591         * semantics.c (expand_body): Don't optimize thunks.
4592
4593 2001-05-25  Sam TH  <sam@uchicago.edu>
4594
4595         * cp-tree.h lex.h: Fix header include guards.
4596
4597 2001-05-25  Mark Mitchell <mark@codesourcery.com>
4598
4599         * decl.c (init_decl_processing): Tweak.
4600
4601 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
4602
4603         * decl.c (duplicate_decls): Tidy.
4604         (init_decl_processing): Always set flag_no_builtin.
4605
4606 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
4607
4608         PR c++/2184
4609         * decl2.c (do_local_using_decl): Push the decls, even in a
4610         template.
4611
4612 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
4613
4614         * optimize.c (initialize_inlined_parameters): Don't set
4615         TREE_READONLY for a VAR_DECL taking the place of an inlined
4616         PARM_DECL.
4617
4618 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
4619
4620         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
4621         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
4622         attribute.
4623
4624 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
4625
4626         * parse.y: Refer to compound literals as such, not as
4627         constructor-expressions.
4628
4629 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
4630
4631         * call.c (build_op_delete_call): Ignore exception-specifications
4632         when looking for matching delete operators.
4633         * init.c (build_new_1): Compute whether or not the allocation
4634         function used is a placement allocation function or not, and
4635         communicate this information to build_op_delete_call.
4636
4637 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
4638
4639         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
4640         (build_vtbl_ref): Adjust.
4641         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
4642         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
4643         Re-add vtable-gc.
4644         (unsupported_options): Correspondingly.
4645
4646         * decl2.c (maybe_make_one_only): Check flag_weak, not
4647         supports_one_only().
4648
4649         * cp-tree.def (START_CATCH_STMT): Lose.
4650         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
4651         * tree.c (cp_statement_code_p): Don't case it.
4652         * semantics.c (cp_expand_stmt): Likewise.
4653         * cp-tree.h (START_CATCH_TYPE): Lose.
4654         (HANDLER_TYPE): New.
4655         * except.c (expand_start_catch_block): Don't start any blocks.
4656         Return the type.
4657         (expand_end_catch_block): Don't end any blocks.
4658         * parse.y (handler): Don't pass anything from finish_handler_parms
4659         to finish_handler.
4660         * pt.c (tsubst_expr): Likewise.
4661         * semantics.c (begin_handler): Call note_level_for_catch here.
4662         (finish_handler_parms): Don't return anything.
4663         (genrtl_catch_block, begin_catch_block): Lose.
4664         (genrtl_handler): Call expand_start_catch here.
4665
4666 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
4667
4668         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
4669         (get_vtable_decl, build_vtt): Not here.
4670
4671 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
4672
4673         PR c++/2781
4674         * optimize.c (update_cloned_parm): Copy addressability and other
4675         flags.
4676
4677 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4678
4679         * pt.c (determine_specialization): Ignore artificial functions.
4680
4681 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
4682
4683         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
4684         (C_RID_CODE): Remove.
4685         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
4686         (init_parse): Don't do it here.
4687
4688 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
4689
4690         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
4691         function declaration to avoid stripping the symbol's attributes.
4692
4693 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
4694
4695         * decl.c (pushdecl): Adjust error string.
4696         (xref_tag): Adjust friend class injection warning. Remove the
4697         inherited name from the class shadowed scope.
4698
4699 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
4700
4701         * except.c (cp_protect_cleanup_actions): New function.
4702         (init_exception_processing): Don't set protect_cleanup_actions
4703         here.  Do set lang_protect_cleanup_actions.
4704
4705 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4706
4707         * spew.c (read_token): Call yyerror on all unexpected tokens.
4708
4709 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4710
4711         * init.c (member_init_ok_or_else): Take a tree rather than
4712         string for name.
4713         (expand_member_init): Adjust.
4714
4715 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
4716
4717         * decl.c (duplicate_decls): Suppress warning about duplicate
4718         decls if the first decl is a friend.
4719
4720 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
4721
4722         * except.c (choose_personality_routine): Export.  Add
4723         explanatory comment.  Take an enum languages, not a boolean.
4724         (initialize_handler_parm): Adjust to match.
4725         * cp-tree.h: Prototype choose_personality_routine.
4726         * lex.c (handle_pragma_java_exceptions): New function.
4727         (init_cp_pragma): Register #pragma GCC java_exceptions.
4728
4729 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4730
4731         * method.c (build_mangled_C99_name): Remove unused prototype.
4732
4733 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
4734
4735         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
4736         * typeck.c (get_member_function_from_ptrfunc,
4737         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
4738         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
4739
4740         Reverted Geoff Keating's 2001-05-03's patch.
4741
4742 2001-05-11  Ira Ruben   <ira@apple.com>
4743
4744         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
4745
4746 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
4747
4748         * cp-tree.h (finish_label_expr, lookup_label): Delete.
4749         * parse.y: Update for '&&'; don't issue warning here.
4750         * semantics.c (finish_label_expr): Delete.
4751
4752 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
4753
4754         * splay-tree.h (splay_tree_max): New function.
4755         (splay_tree_min): Likewise.
4756
4757 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
4758
4759         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
4760         (pfn_vflag_identifier): Define.
4761         Update comment about layout of pointer functions.
4762         (build_ptrmemfunc1): Update prototype.
4763         (expand_ptrmemfunc_cst): Update prototype.
4764         * decl.c (initialize_predefined_identifiers): Initialize
4765         pfn_vflag_identifier.
4766         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
4767         an extra field to the type.
4768         * expr.c (cplus_expand_constant): Pass 'flag' between
4769         expand_ptrmemfunc_cst and build_ptrmemfunc1.
4770         * typeck.c (get_member_function_from_ptrfunc): When
4771         FUNCTION_BOUNDARY < 16, look at additional field to determine
4772         if a pointer-to-member is a real pointer or a vtable offset.
4773         (build_ptrmemfunc1): Add new parameter to contain extra field.
4774         (build_ptrmemfunc): Pass the extra field around.
4775         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
4776         (pfn_from_ptrmemfunc): Ignore the extra field.
4777
4778 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
4779
4780         * cp-tree.h (flag_inline_trees): Update documentation.
4781         * decl.c (init_decl_processing): Adjust handling of
4782         flag_inline_functions and flag_inline_trees to support -O3.
4783         (grokfndecl): Set DECL_INLINE on all functions if that's what
4784         the user requested.
4785         (save_function_data): Clear DECL_INLINE in
4786         current_function_cannot_inline is non-NULL.
4787         * decl2.c (flag_inline_trees): Update documentation.
4788
4789 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
4790
4791         * dump.c (cp_dump_tree, USING_STMT case): New case.
4792         * tree.c (cp_statement_code_p): Add USING_STMT.
4793         * decl2.c (do_using_directive): Add the using directive statement.
4794
4795         * tree.c (walk_tree): Reformat an if block.
4796
4797 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4798
4799         * decl.c (compute_array_index_type): Don't try to do anything with
4800         the indices when processing a template.
4801
4802 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4803
4804         * call.c: NULL_PTR -> NULL.
4805         * class.c: Likewise.
4806         * cvt.c: Likewise.
4807         * decl.c: Likewise.
4808         * decl2.c: Likewise.
4809         * except.c: Likewise.
4810         * init.c: Likewise.
4811         * rtti.c: Likewise.
4812         * search.c: Likewise.
4813         * tree.c: Likewise.
4814         * typeck.c: Likewise.
4815         * typeck2.c: Likewise.
4816
4817 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4818
4819         * decl2.c (do_using_directive): Revert previous patch.
4820
4821 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4822
4823         * cp-tree.def (USING_STMT): New statement node.
4824         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
4825         * decl2.c (do_using_directive): Add USING_STMT to statement
4826         tree. Don't emit errors when processing template decl.
4827         * pt.c (tsubst_expr, USING_STMT case): New case.
4828         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
4829
4830 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4831
4832         * call.c (build_new_op): Convert args from reference here.
4833         (build_conditional_expr): Don't convert here.
4834
4835 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4836
4837         * spew.c (last_token_id): New static variable.
4838         (read_token): Set it here.
4839         (yyerror): Use it here.
4840
4841 2001-04-30  Richard Henderson  <rth@redhat.com>
4842
4843         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
4844         * decl.c: Likewise.
4845
4846 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4847
4848         * gxxint.texi: Remove.
4849         * Make-lang.in: Remove all traces of gxxint.texi.
4850
4851 Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
4852
4853         * decl2.c (start_static_initialization_or_destruction): Correct
4854         logic to handle the -fno-use-cxa-atexit case.
4855
4856 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4857
4858         * optimize.c (update_cloned_parm): New function.
4859         (maybe_clone_body): Use it.  Update the `this' parameter too.
4860
4861 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
4862
4863         * decl2.c (unsupported_options): Add new-abi.
4864         * lang-options.h: Remove no longer supported options.
4865
4866 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4867
4868         * except.c (can_convert_eh): Don't check template parms,
4869         typename types etc.
4870
4871 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4872
4873         * optimize.c (maybe_clone_body): Copy parameter names and locations.
4874
4875 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4876
4877         * cp-tree.h (adjust_clone_args): Prototype new function.
4878         * class.c (adjust_clone_args): New function.
4879         * decl.c (start_function): Call it for in charge ctors.
4880
4881 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
4882
4883         * method.c (use_thunk): Make sure that thunks really are emitted
4884         when requested.
4885
4886 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
4887
4888         * mangle.c (write_chars): New macro.
4889         (hwint_to_ascii): New function
4890         (write_number): Use it.
4891         (write_integer_cst): Deal with really big numbers.
4892
4893 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
4894
4895         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
4896         the clone.
4897
4898 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
4899
4900         * decl.c (grokdeclarator): Set context of namespace scope
4901         TYPE_DECLS.
4902
4903 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
4904
4905         * cp/optimize.c: Include hashtab.h.
4906         (struct inline_data): Add tree_pruner.
4907         (expand_call_inline, expand_calls_inline): Use it when calling
4908         walk_tree.
4909         (optimize_function): Initialize and free tree_pruner.
4910
4911 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
4912
4913         Lazy __FUNCTION__ generation.
4914         * cp-tree.def (FUNCTION_NAME): Remove.
4915         * cp-tree.h (function_name_declared_p): Remove.
4916         (cp_fname_init): Prototype.
4917         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
4918         don't call declare_function_name. Call start_fname_decls.
4919         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
4920         clobber the line number.
4921         (cp_fname_init): New function.
4922         (start_function): Call start_fname_decls.
4923         (finish_function): Call finish_fname_decls.
4924         * lex.c (reswords): Add slots for __FUNCTION__ et al.
4925         (rid_to_yy): Add mappings for __FUNCTION__ et al.
4926         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
4927         * parse.y (VAR_FUNC_NAME): New token.
4928         (primary): Add VAR_FUNC_NAME.
4929         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
4930         generation.
4931         (tsubst, FUNCTION_NAME case): Remove.
4932         (tsubst_copy, FUNCTION_NAME case): Remove.
4933         (tsubst_expr, DECL_STMT case): Be careful with a
4934         DECL_PRETTY_FUNCTION_P.
4935         (instantiate_decl): Remove function_name_declared_p.
4936         * semantics.c (begin_compound_statement): Don't call
4937         declare_function_name here.
4938         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
4939         (finish_translation_unit): Call finish_fname_decls.
4940         (expand_body): Remove function_name_declared_p.
4941         * typeck2.c (digest_init): Allow any ERROR_MARK.
4942
4943 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
4944
4945         * pt.c (tsubst_decl): Use VOID_TYPE_P.
4946         * semantics.c: Fix some typos.
4947
4948 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
4949
4950         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
4951
4952 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4953
4954         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
4955
4956 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
4957
4958         * except.c (build_throw): Wrap the initialization of the exception
4959         object in a MUST_NOT_THROW_EXPR.
4960         (do_free_exception): #if 0.
4961
4962 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
4963
4964         * cp-tree.h (finish_enum): Change prototype.
4965         * decl.c (finish_enum): Reorganize.
4966         * parse.y (structsp): Adjust calls to finish_enum.
4967
4968 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4969
4970         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
4971         't' case.
4972
4973 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4974
4975         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
4976         (layout_empty_base): Return at end flag.
4977         (build_base_field): Likewise.
4978         (build_base_fields): Likewise.
4979         (layout_virtual_bases): Don't add 1 to eoc value.
4980         (end_of_class): Use full size for empty bases.
4981         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
4982         empty bases. Don't add 1 to eoc value. Only add trailing padding
4983         if we're an empty class with no empty bases.
4984         (dump_class_hierarchy): Dump size and alignment.
4985
4986 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4987
4988         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
4989         ICS_BAD_FLAG.
4990
4991 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4992
4993         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
4994         is found, look first if name does not match the structure name.
4995
4996 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
4997
4998         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
4999         set.
5000         (SET_DECL_LANGUAGE): New macro.
5001         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
5002         (pushdecl): Likewise.
5003         (build_library_fn_1): Likewise.
5004         (build_cp_library_fn): Likewise.
5005         (grokfndecl): Likewise.
5006         (grokvardecl): Mark `extern "C"' variables as having C linkage.
5007         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
5008         * lex.c (retrofit_lang_decl): Likewise.
5009         * mangle.c (mangle_decl_string): Don't mangle the names of
5010         variables declared with C language linkage.
5011         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
5012
5013 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5014
5015         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
5016         flag_access_control from uninitialized storage.
5017
5018 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
5019
5020         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
5021         * mangle.c (write_pointer_to_member_type): Fix mangling of
5022         pointers to cv-qualified member function types.
5023
5024         * init.c (build_delete): Create a SAVE_EXPR for the address if
5025         we're going to use it more than once.
5026
5027 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
5028
5029         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
5030         (expand_ptremfunc_cst): Change prototype.
5031         (delta2_from_ptrmemfunc): Remove.
5032         * expr.c (cplus_expand_constant): Adjust call to
5033         expand_ptrmemfunc_cst.
5034         * typeck.c (build_ptrmemfunc1): Simplify.
5035         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
5036         results in a constant.
5037         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
5038         (delta2_from_ptrmemfunc): Remove.
5039         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
5040
5041 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
5042
5043         * cp-tree.h (decl_namespace_list): New macro.
5044         (struct saved_scope): Add decl_ns_list.
5045         * decl.c (mark_saved_scope): Mark it.
5046         * decl2.c: Lose static decl_namespace_list.
5047         (init_decl2): Don't save it.
5048
5049 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5050
5051         * cp-tree.h (warn_return_type, yylex): Delete redundant
5052         declarations.
5053
5054         * decl.c (current_class_depth, global_namespace): Likewise.
5055
5056         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
5057
5058         * repo.c (flag_use_repository): Likewise.
5059
5060 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5061
5062         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
5063         set_block, pushdecl, getdecls, gettags, init_decl_processing,
5064         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
5065         lvalue_or_else, print_lang_statistics, comp_target_types,
5066         unsigned_type, signed_type, signed_or_unsigned_type,
5067         build_function_call, mark_addressable, incomplete_type_error):
5068         Delete redundant declarations.
5069
5070 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
5071
5072         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
5073         (TYPE_ANONYMOUS_P): New macro.
5074         (TAGGED_TYPE_P): New macro.
5075         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
5076         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
5077         * tree.c (no_linkage_helper): Likewise.
5078         * semantics.c (begin_class_definition): Likewise.
5079         * pt.c (convert_template_argument): Likewise.
5080         * lex.c (check_for_missing_semicolon): Likewise.
5081
5082 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
5083
5084         * class.c (dfs_unshared_virtual_bases): New function.
5085         (mark_primary_bases): Call it.
5086         (check_bases): Ignore virtual bases when determining
5087         nearly-emptiness.
5088
5089 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
5090
5091         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
5092
5093 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
5094
5095         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
5096         cloned function to the clone.
5097
5098 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5099
5100         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
5101
5102         * semantics.c: Include expr.h.
5103
5104 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
5105
5106         * method.c (implicitly_declare_fn): Commonize code for copy ctor
5107         and assignment op. Set TREE_USED for parameter.
5108
5109 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
5110
5111         * class.c (find_final_overrider_data): Add `candidates'.
5112         (dfs_find_final_overrider): Don't issue error messages
5113         prematurely.
5114         (find_final_overrider): Issue error messages here.
5115         (build_base_field): Don't warn about amgibuous direct bases here.
5116         (warn_about_ambiguous_direct_bases): New function.
5117         (layout_class_type): Use it.
5118
5119 2001-04-10  Richard Henderson  <rth@redhat.com>
5120
5121         * typeck.c (build_array_ref): Push the array reference inside
5122         COMPOUND_EXPR and COND_EXPR.
5123
5124 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
5125
5126         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
5127         * decl.c (duplicate_decls): Adjust accordingly.
5128         (maybe_commonize_var): Likewise.
5129         (grokfndecl): Likewise.
5130         (start_function): Likewise.
5131         (start_method): Likewise.
5132         * decl2.c (key_method): Likewise.
5133         (import_export_decl): Likewise.
5134         * method.c (implicitly_declare_fn): Likewise.
5135         * optimize.c (maybe_clone_body): Likewise.
5136
5137 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
5138
5139         * lang-specs.h: Add __DEPRECATED.
5140
5141 Thu Apr  5 16:54:29 2001  J"orn Rennecke <amylaar@redhat.com>
5142
5143         * search.c (get_dynamic_cast_base_type): When building a new
5144         constant, set its type to ssizetype.
5145
5146 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
5147
5148         * optimize.c (expand_call_inline): Only add newly inlined statements
5149         into inlined_stmts.
5150
5151 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
5152
5153         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
5154         (OPERATOR_FORMAT): Likewise.
5155         (OPERATOR_TYPENAME_FORMAT): Likewise.
5156         * operators.def: Remove old name-mangling information.
5157         * decl.c (grok_op_properties): Adjust accordingly.
5158         * lex.c (init_operators): Likewise.
5159         * rtti.c (get_tinfo_decl): Issue error messages about types that
5160         have variable size.
5161
5162 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
5163
5164         * decl2.c (import_export_decl): Don't call import_export_class
5165         when processing an inline member function.
5166         * semantics.c (expand_body): Call import_export_decl before
5167         emitting inline functions.
5168
5169 2001-03-28  Richard Henderson  <rth@redhat.com>
5170
5171         IA-64 ABI Exception Handling:
5172         * cp-tree.def (EH_SPEC_BLOCK): New.
5173         (MUST_NOT_THROW_EXPR): New.
5174         * cp-tree.h: Update changed function declarations.
5175         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
5176         (CPTI_CALL_UNEXPECTED): New.
5177         (struct cp_language_function): Rename x_eh_spec_try_block
5178         to x_eh_spec_block.
5179         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
5180         * decl.c (current_binding_level): If no current function
5181         bindings, revert to scope_chain.
5182         (initialize_predefined_identifiers): Remove __cp_push_exception.
5183         (store_parm_decls): Use begin_eh_spec_block.
5184         (finish_function): Use finish_eh_spec_block.
5185         (mark_lang_function): Update for name changes.
5186         * decl2.c (finish_file): No mark_all_runtime_matches.
5187         * dump.c (cp_dump_tree): Handle new tree codes.
5188         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
5189         * except.c (catch_language_init, catch_language): Remove.
5190         (init_exception_processing): Don't set language code.
5191         Initialize call_unexpected_node, protect_cleanup_actions,
5192         eh_personality_libfunc, lang_eh_runtime_type.
5193         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
5194         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
5195         (prepare_eh_type): Split out type canonicalizations ...
5196         (build_eh_type_type): ... from here.
5197         (build_eh_type_type_ref): Remove.
5198         (mark_all_runtime_matches): Remove.
5199         (build_exc_ptr): New.
5200         (do_begin_catch, do_end_catch): New.
5201         (do_pop_exception): Remove.
5202         (build_terminate_handler): Remove.
5203         (choose_personality_routine): Split out language choice from ...
5204         (initialize_handler_parm): ... here.
5205         Use MUST_NOT_THROW_EXPR.
5206         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
5207         exception object handling.
5208         (expand_start_eh_spec, expand_end_eh_spec): Remove.
5209         (expand_exception_blocks, alloc_eh_object): Remove.
5210         (begin_eh_spec_block, finish_eh_spec_block): New.
5211         (do_allocate_exception, do_free_exception): New.
5212         (expand_throw): Merge into ...
5213         (build_throw): ... here.  Update for abi.
5214         * expr.c (cplus_expand_expr): No expand_internal_throw.
5215         Handle MUST_NOT_THROW_EXPR.
5216         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
5217         * semantics.c (*) Update for except.h name changes.
5218         (genrtl_try_block): No protect_with_terminate.
5219         (genrtl_eh_spec_block): New.
5220         (genrtl_handler): Don't emit the goto here.
5221         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
5222         (genrtl_finish_function): Don't expand_exception_blocks.
5223         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
5224
5225 2001-03-28  Richard Henderson  <rth@redhat.com>
5226
5227         * decl.c (struct named_label_list): Rename eh_region to
5228         in_try_scope, add in_catch_scope.
5229         (struct binding_level): Rename eh_region to is_try_scope,
5230         add is_catch_scope.
5231         (note_level_for_try): Rename from note_level_for_eh.
5232         (note_level_for_catch): New.
5233         (poplevel): Copy both is_try_scope and is_catch_scope to
5234         the named_label_list struct.
5235         (check_previous_goto_1): Don't check for catch block via
5236         DECL_ARTIFICIAL; use in_try_scope instead.
5237         (check_goto): Likewise.
5238         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
5239         * except.c (expand_start_catch_block): Call note_level_for_catch.
5240         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
5241
5242 2001-03-27  Richard Henderson  <rth@redhat.com>
5243
5244         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
5245         exceptions_via_longjmp.
5246
5247 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
5248
5249         * pt.c (check_default_tmpl_args):  Make error messages clearer.
5250
5251 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
5252
5253         * error.c:  Also undefine 'A' macro used for cp_printers definition.
5254
5255 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5256
5257         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
5258
5259 2001-03-26  Mike Yang <yang@research.att.com>
5260             Mark Mitchell  <mark@codesourcery.com>
5261
5262         * dump.c (dump_access): New function.
5263         (cp_dump_tree): Use it.  Dump basetype information for class
5264         types.
5265
5266 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
5267
5268         * Makefile.in (optimize.o): Depend on params.h.
5269         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
5270         (init_decl_processing): Set flag_no_inline when doing
5271         inlining-on-trees.
5272         * optimize.c: Include params.h.
5273         (struct inline_data): Improve documentation of FNS.  Add
5274         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
5275         (INSNS_PER_STMT): New macro.
5276         (remap_block): Use CLONING_P.
5277         (inlinable_function_p): Don't inline big functions.
5278         (expand_call_inline): Keep track of how much inlining we've done.
5279         (optimize_function): Set FIRST_INLINED_FN.
5280         (maybe_clone_body): Set CLONING_P.
5281         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
5282         tree nodes.
5283         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
5284         rest_of_compilation.  Clear DECL_RTL for local variables
5285         afterwards.
5286         (clear_decl_rtl): New function.
5287
5288 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
5289
5290         Implement DR 209
5291         * cp-tree.h (skip_type_access_control,
5292         reset_type_access_control): Prototype.
5293         * decl.c (grokdeclarator): Access of friends is not checked.
5294         * parse.y (component_decl_list): Reset type access control.
5295         * semantics.c (decl_type_access_control): Clear
5296         current_type_lookups.
5297         (save_type_access_control): Don't save if not deferring.
5298         (skip_type_access_control, reset_type_access_control): New
5299         functions.
5300         (begin_class_definition): Do type access control for basetypes.
5301         Start deferred access control.
5302         (finish_class_definition): Resume immediate access control if
5303         this is a local class.
5304
5305 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5306
5307         * class.c (add_method): Use memcpy/memmove, not bcopy.
5308
5309         * decl.c (duplicate_decls): Likewise.
5310
5311 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
5312
5313         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
5314         not `_'.
5315
5316 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
5317
5318         * decl.c (local_names): Define.
5319         (push_local_name): New.
5320         (grok_reference_init): Return init if initializing static reference
5321         variable with non-constant instead of emitting it.
5322         Move expand_static_init call to cp_finish_decl.
5323         (layout_var_decl): Call push_local_name.
5324         (maybe_commonize_var): Allow inlining functions even if they have
5325         static local variables, use comdat_linkage for them if flag_weak.
5326         (check_initializer): Call obscure_complex_init if
5327         grok_reference_init returned non-zero.
5328         (save_function_data): Clear x_local_names.
5329         (pop_cp_function_context): Free x_local_names.
5330         (mark_inlined_fns): Remove.
5331         (mark_lang_function): Mark x_local_names.
5332         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
5333         Mark inlined_fns as tree, remove call to mark_inlined_fns.
5334         * class.c (alter_access): Ensure DECL_ACCESS is never set if
5335         DECL_DISCRIMINATOR_P.
5336         * cp-tree.h (cp_language_function): Add x_local_names.
5337         (lang_decl_flags): Add discriminator into u2.
5338         (lang_decl_inlined_fns): Remove.
5339         (lang_decl): inlined_fns is now a TREE_VEC.
5340         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
5341         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
5342         TREE_VEC, not a custom structure.
5343         (optimize_function): Likewise.
5344         * mangle.c (discriminator_for_local_entity): Discriminate among
5345         VAR_DECL local entities.
5346         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
5347         is not valid.
5348
5349 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
5350
5351         Add support for Java interface method calls.
5352         * cp-tree.h (struct lang_type): Add java_interface flag.
5353         (TYPE_JAVA_INTERFACE): New macro.
5354         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
5355         by setting TYPE_JAVA_INTERFACE.
5356         * call.c (java_iface_lookup_fn): New static.
5357         (build_over_call): If calling a method declared in a
5358         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
5359         expression which resolves the function address.
5360         (build_java_interface_fn_ref): New function.
5361
5362 2001-03-22  Richard Henderson  <rth@redhat.com>
5363
5364         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
5365         * except.c: Don't include it.
5366
5367 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5368             based on an idea from Joe Buck <jbuck@synopsys.com>
5369
5370         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
5371         New nonterminals.
5372         (data_def, component_decl): Add reductions to bad_decl.
5373
5374 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
5375
5376         * method.c (do_build_assign_ref): Don't use build_modify_expr for
5377         anonymous aggregates, since they don't have assignment operator
5378         method.
5379         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
5380         assignment operators for anonymous structure fields.
5381
5382 2001-03-21  Jason Merrill  <jason@redhat.com>
5383
5384         * pt.c (instantiate_decl): Abort if we see a member constant
5385         instantiation that doesn't already have its initializer.
5386         Downgrade explicit instantiation without definition to pedwarn.
5387
5388         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
5389         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
5390         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
5391
5392         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
5393         (pending_vtables): Remove.
5394         * decl2.c (pending_vtables): Remove.
5395         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
5396         CLASSTYPE_VTABLE_NEEDS_WRITING.
5397         (import_export_class): Likewise.
5398         (init_decl2): Don't mark pending_vtables.
5399         * lex.c (handle_pragma_vtable): Just sorry.
5400         * pt.c (instantiate_class_template): Don't mess with
5401         CLASSTYPE_VTABLE_NEEDS_WRITING.
5402         (mark_class_instantiated): Likewise.
5403         * ptree.c (print_lang_type): Don't print it.
5404         * semantics.c (begin_class_definition): Don't set it.
5405
5406         * pt.c (template_tail): Replace with last_pending_template.
5407         (maybe_templates, maybe_template_tail): Remove.
5408         (add_pending_template): Adjust.
5409         (instantiate_pending_templates): Adjust.
5410
5411         * cp-tree.h (struct saved_scope): Remove lang_stack field.
5412         (current_lang_stack): Remove.
5413         * decl.c (maybe_push_to_top_level): Don't initialize it.
5414         (duplicate_decls): Use current_lang_depth.
5415         (xref_basetypes): Likewise.
5416         * class.c (current_lang_depth): New fn.
5417         (push_lang_context): Use more varray functionality.
5418         (pop_lang_context): Likewise.
5419
5420         * error.c (GLOBAL_THING): Always use '__'.
5421
5422 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
5423
5424         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
5425
5426         * mangle.c (mangle_decl_string): Mangle the names of overloaded
5427         operators, even when they have `extern "C"' linkage.
5428
5429 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
5430
5431         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
5432         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5433         where it's not necessary.
5434         (add_method): Remove optimization involving comparison of
5435         DECL_ASSEMBLER_NAME.
5436         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
5437         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5438         where it's not necessary.
5439         (check_methods): Likewise.
5440         (build_clone): Likewise.
5441         (built_vtt): Likewise.
5442         * cp-tree.h (DECL_NEEDED_P): Likewise.
5443         * decl.c (pushtag): Likewise.
5444         (duplicate_decls): Likewise.
5445         (pushdecl): Likewise.
5446         (builtin_function): Likewise.
5447         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
5448         (build_cp_library_fn): Likewise.
5449         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
5450         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5451         where it's not necessary.
5452         (make_rtl_for_nonlocal_decl): Likewise.
5453         (cp_finish_decl): Likewise.
5454         (grokfndecl): Likewise.
5455         (grokvardecl): Likewise.
5456         (grokdeclarator): Likewise.
5457         (start_function): Likewise.
5458         (cp_missing_return_ok_p): Likewise.
5459         * decl2.c (grokclassfn): Likewise.
5460         (check_classfn): Likewise.
5461         (finish_static_data_member_decl): Likewise.
5462         (grokfield): Likewise.
5463         * error.c (GLOBAL_IORD_P): Remove.
5464         (dump_global_iord): Improve output.
5465         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
5466         * except.c (nothrow_libfn_p): Summarily reject any function not in
5467         namespace-scope.
5468         * init.c (build_java_class_ref): Don't explicitly set
5469         DECL_ASSEMBLER_NAME after calling mangle_decl.
5470         * mangle.c (mangle_decl_string): Handle extern "C" functions.
5471         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
5472         * method.c (set_mangled_name_for_decl): Don't explicitly set
5473         DECL_ASSEMBLER_NAME after calling mangle_decl.
5474         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
5475         IDENTIFIER_GLOBAL_VALUE for the thunk.
5476         * pt.c (set_mangled_name_for_template_decl): Remove.
5477         (check_explicit_specialization): Don't use it.
5478         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
5479         (tsubst_friend_function): Likewise.
5480         (tsubst_decl): Likewise.
5481         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
5482         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
5483         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5484         where it's not necessary.
5485         (tinfo_base_init): Likewise.
5486         (create_real_tinfo_var): Likewise.
5487         * search.c (looup_field_1): Likewise.
5488         * semantics.c (finish_named_return_value): Likewise.
5489         * tree.c (init_tree): Set lang_set_decl_assembler_name.
5490
5491 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
5492
5493         Correct semantics restrictions checking in throw-expression.
5494         * except.c (is_admissible_throw_operand): New function.
5495         (build_throw): Use it.
5496
5497 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5498
5499         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
5500         and its ilk.
5501
5502 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5503
5504         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5505         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
5506         * decl.c (duplicate_decls): Likewise.
5507         (builtin_function): Likewise.
5508         (build_library_fn): Likewise.
5509         (build_cp_library_fn): Likewise.
5510         (check_initializer): Likewise.
5511         (cp_finish_decl): Likewise.
5512         * decl2.c (grokfield): Likewise.
5513         (grok_function_init): Remove #if 0'd code.
5514         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5515         * friend.c (do_friend): Likewise.
5516         * init.c (get_temp_regvar): Likewise.
5517         * method.c (make_thunk): Likewise.
5518         * pt.c (tsubst_friend_function): Likewise.
5519         (tsubst_decl): Likewise.
5520         (regenerate_decl_from_template): Likewise.
5521         * semantics.c (genrtl_named_return_value): Likewise.
5522         (expand_body): Likewise.
5523         (genrtl_finish_function): Likewise.
5524         * tree.c (cp_tree_equal): Likewise.
5525
5526 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
5527
5528         * call.c (convert_like_real): Add extra semantics to INNER
5529         parameter. Don't convert to temporary if a user conversion
5530         gives us an lvalue that we're about to bind to a reference.
5531         Set INNER to indicate pending reference binding on recursive
5532         calls.
5533
5534 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5535
5536         * cp/lex.c: Delete duplicate pending_lang_change.
5537
5538 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5539
5540         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
5541         Similarly.
5542         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
5543         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
5544
5545 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
5546
5547         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
5548
5549 2001-03-08  Stan Shebs  <shebs@apple.com>
5550
5551         * cp-tree.h (set_identifier_local_value): Remove unused decl.
5552
5553 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
5554
5555         * spew.c: Remove references to CPP_OSTRING.
5556
5557 2001-03-06  Andrew Haley  <aph@redhat.com>
5558
5559         * typeck.c (convert_arguments): Check that we have an fndecl.
5560
5561 2001-03-05  Andrew Haley  <aph@redhat.com>
5562
5563         * typeck.c (convert_arguments): Don't do ellipsis conversion for
5564         __built_in_constant_p.
5565
5566 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5567
5568         * typeck.c (build_static_cast): Allow enum to enum conversions
5569         as per DR 128.
5570
5571 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5572
5573         * class.c (check_field_decls): Pointers to member do not a
5574         non-pod struct make, as per DR 148.
5575
5576 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5577
5578         * call.c (joust): cp_pedwarn when using gnu extension concerning
5579         worst conversion sequences.
5580
5581 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5582
5583         * decl.c: Replace all uses of 'boolean' with 'bool'.
5584
5585 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5586
5587         * lang-specs.h: Add zero initializer for cpp_spec field to
5588         all array elements that need one.  Don't put an #ifdef inside
5589         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
5590         use it.
5591
5592 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5593
5594         Implement using decls inside template functions.
5595         * decl2.c (validate_nonmember_using_decl): Don't special case
5596         fake_std_node in the global namespace. Don't reject early when
5597         processing a template.
5598         (do_local_using_decl): Add to statement tree. Don't do further
5599         processing when building a template.
5600         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
5601
5602 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5603
5604         * decl2.c (do_nonmember_using_decl): Don't complain if we find
5605         same function. Do complain about ambiguating extern "C"
5606         declarations.
5607
5608 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
5609
5610         Remove floating point and complex type template constant parms.
5611         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
5612         COMPLEX_TYPE extensions.
5613         (invalid_nontype_parm_type_p): Likewise.
5614
5615 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
5616
5617         * except.c (call_eh_info): Revert "match_function"'s type.
5618
5619 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
5620
5621         Fix ctor vtable vcall offsets.
5622         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
5623         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
5624         (get_matching_base): Remove.
5625         (get_original_base): New function.
5626         (build_vtbl_initializer): Initialize vid.rtti_binfo.
5627         Use a virtual thunk for a ctor vtable with an index
5628         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
5629         primary base within a constructor vtable. Only set
5630         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
5631         when primary base has been lost.
5632         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
5633
5634 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
5635
5636         * call.c (joust): Ensure more_specialized()'s argument length
5637         parameter has correct value for constructors.
5638
5639 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
5640
5641         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
5642
5643         * decl.c (mark_inlined_fns): Prototype.
5644
5645 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5646
5647         * spew.c (yylex): Correct handling of friends.
5648
5649 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5650
5651         * mangle.c (write_encoding): Pass write_function_type the
5652         FUNCTION_DECL for the function being encoded.
5653         (write_function_type): Pass it along to write_bare_function_type.
5654         (write_bare_function_type): Pass it along to write_method_parms.
5655         (write_method_parms): Don't mangle the compiler-generated
5656         parameters to a constructor or destructor.
5657
5658 2001-02-22  Andreas Jaeger  <aj@suse.de>
5659
5660         * optimize.c: Include toplev.h for
5661         note_deferral_of_defined_inline_function prototype.
5662
5663 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
5664
5665         * cp-tree.h (struct lang_decl_inlined_fns): New.
5666         (struct lang_decls): Add inlined_fns.
5667         (DECL_INLINED_FNS): New macro.
5668         * optimize.c (struct inline_data): Add inlined_fns.
5669         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
5670         (inlinable_function_p): Likewise, fix typo in comment,
5671         function is not inlinable if it already inlined function currently
5672         being optimized.
5673         (expand_call_inline): Add fn to inlined_fns if necessary.
5674         (optimize_function): Initialize inlined_fns.
5675         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
5676         * decl.c (mark_inlined_fns): New function.
5677         (lang_mark_tree): Call it.
5678
5679 2001-02-21  Jason Merrill  <jason@redhat.com>
5680
5681         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
5682         (DECL_UNINLINABLE): Move to middle-end.
5683
5684         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
5685         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
5686         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
5687         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
5688         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
5689
5690         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
5691         second parm of op=.
5692
5693 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
5694
5695         * decl2.c (set_decl_namespace): Allow explicit instantiations in
5696         any namespace.
5697
5698 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5699
5700         * optimize.c (expand_call_inline): Don't walk subtrees of type
5701         nodes.
5702
5703 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
5704
5705         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
5706         for a destructor.
5707
5708 2001-02-18  Jason Merrill  <jason@redhat.com>
5709
5710         Do put the VTT parameter in DECL_ARGUMENTS.
5711         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
5712         (current_vtt_parm): New macro.
5713         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
5714         (DECL_HAS_VTT_PARM_P): New macro.
5715         (DECL_VTT_PARM): Remove.
5716         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
5717         * decl.c (duplicate_decls): Only copy the operator code if
5718         appropriate.
5719         (start_function): Set current_vtt_parm.
5720         (lang_mark_tree): Don't mark vtt_parm.
5721         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
5722         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
5723         * class.c (build_clone): Maybe remove the VTT parm.
5724         * optimize.c (maybe_clone_body): Set up the VTT parm.
5725         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
5726         * call.c (build_over_call): Just allow the VTT arg.
5727         * method.c (make_thunk): Don't set DECL_VTT_PARM.
5728         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
5729         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
5730         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
5731         * error.c (dump_function_decl): Likewise.
5732         * call.c (build_user_type_conversion_1, convert_like_real): Abort
5733         if we try to call a constructor with in-charge or VTT parms.
5734         * method.c (skip_artificial_parms_for): New fn.
5735         * call.c (add_function_candidate, build_over_call): Call it.
5736         * call.c (build_new_method_call): Use current_vtt_parm.
5737         * init.c (expand_virtual_init): Likewise.
5738         * class.c (same_signature_p): No longer static.
5739         * cp-tree.h: Declare it.
5740         * search.c (look_for_overrides_r): Use it.
5741
5742 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5743
5744         * cp-tree.h (new_abi_rtti_p): Remove.
5745         (name_mangling_version): Likewise.
5746         (flag_do_squangling): Likewise.
5747         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
5748         * decl.c (grokfndecl): Likewise.
5749         * decl2.c (name_mangling_version): Remove.
5750         (flag_do_squangling): Likewise.
5751         (lang_f_options): Remove `squangle'.
5752         (unsupported_options): Add `squangle'.
5753         (cxx_decode_option): Issue a warning about uses of
5754         -fname-mangling-version.
5755         (finish_file): Remove old ABI support.
5756         * pt.c (check_explicit_specialization): Likewise.
5757         (tsubst_decl): Likewise.
5758         * rtti.c (init_rtti_processing): Likewise.
5759         (build_headof): Likewise.
5760         (get_tinfo_decl_dynamic): Likewise.
5761         (tinfo_from_decl): Likewise.
5762         (build_dynamic_cast_1): Likewise.
5763         (synthesize_tinfo_var): Likewise.
5764         * init.c (build_new): Allow enumeration types for the array-bounds
5765         in a direct-new-declarator.
5766
5767         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
5768
5769         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
5770         TREE_PROTECTED from the template being specialized.
5771
5772 2001-02-17  Jason Merrill  <jason@redhat.com>
5773
5774         * decl2.c (build_artificial_parm): Set TREE_READONLY.
5775
5776         * decl.c (bad_specifiers): Allow throw specs on things with
5777         pointer-to-function or -member-function type.
5778         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
5779         a pmf.
5780
5781 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5782
5783         * call.c (check_dtor_name): Handle template names correctly.
5784
5785 2001-02-16  Jason Merrill  <jason@redhat.com>
5786
5787         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
5788         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
5789         * optimize.c (maybe_clone_body): Don't substitute it.
5790         * call.c (build_new_method_call): Check in_chrg instead.
5791         * init.c (expand_virtual_init): Likewise.
5792
5793 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
5794
5795         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
5796         class-type introduces at least a type-name.
5797
5798 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
5799
5800         * call.c (convert_like_real): Create a temporary for non-lvalue.
5801
5802 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
5803
5804         * cp-tree.h: Fix typos in comments.
5805
5806 2001-02-16  Jason Merrill  <jason@redhat.com>
5807
5808         * optimize.c (remap_block): If we're compiling a clone, pass the
5809         new block to insert_block.
5810
5811 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
5812
5813         * semantics.c (finish_asm_stmt): Robustify.
5814
5815 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5816
5817         * pt.c (push_template_decl_real): Don't remangle the name of a
5818         class template.
5819
5820 2001-02-15  Jim Meyering  <meyering@lucent.com>
5821
5822         * Make-lang.in (c++.install-common): Depend on installdirs.
5823         (c++.install-info): Likewise.
5824         (c++.install-man): Likewise.
5825
5826 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5827
5828         * typeck2.c (build_m_component_ref): Robustify.
5829
5830 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
5831
5832         * friend.c (do_friend): Don't take the nested [template] class
5833         into account when deciding whether to warn about the friend
5834         function not referring to a template function.
5835
5836 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
5837
5838         * typeck.c (build_unary_op): Clarify error message.
5839
5840 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
5841
5842         * parse.y (component_constructor_declarator): allow optional
5843         parentheses around constructor class name.
5844
5845 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5846
5847         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
5848         section.
5849         * init.c (emit_base_init): Remove incorrect comment about
5850         virtual bases.
5851         * method.c (make_thunk): Fix comment alignment.
5852
5853 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5854
5855         Kill remnants of this is variable.
5856         * cp-tree.h (flag_this_is_variable): Remove.
5857         * decl2.c (flag_this_is_variable): Remove.
5858         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
5859         (build_vbase_path): The path is non-static, even in a cdtor.
5860         (resolves_to_fixed_type_p): Add additional return value.
5861         * search.c (init_vbase_pointers): Adjust.
5862         * tree.c (lvalue_p_1): Adjust.
5863         * typeck.c (mark_addressable): Adjust.
5864
5865 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5866
5867         * pt.c (unify): Don't check cv quals of array types.
5868
5869 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5870
5871         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
5872         check whether we already have the type.
5873
5874 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
5875
5876         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
5877         * call.c (build_op_delete_call): Simplify to remove duplicate
5878         code.
5879         * class.c (clone_function_decl): Don't build the deleting variant
5880         of a non-virtual destructor.
5881         * decl.c (finish_destructor_body): Don't call delete if this is a
5882         non-virtual destructor.
5883         * init.c (build_delete): Explicitly call `operator delete' when
5884         deleting an object with a non-virtual destructor.
5885
5886 2001-02-13  Jason Merrill  <jason@redhat.com>
5887
5888         * lang-specs.h: Add more __EXCEPTIONS.
5889
5890 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5891
5892         * typeck2.c (process_init_constructor): Check
5893         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
5894
5895 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5896
5897         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
5898         Remove spurious information in comment. Allow further
5899         adjustments of REFERENCE_TYPE args.
5900
5901 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5902
5903         * errfn.c (cp_deprecated): Tweak diagnostic text.
5904         * parse.y (new_initializer): Deprecate initializer lists
5905         extension.
5906
5907 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
5908
5909         Remove old ABI support.
5910
5911 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
5912
5913         * decl2.c (flag_vtable_thunks): Always set it to 1.
5914         (flag_new_abi): Likewise.
5915         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
5916
5917         * Makefile.in (g++spec.o): Fix typo.
5918
5919 2001-02-09  Jason Merrill  <jason@redhat.com>
5920
5921         * lang-specs.h: Restore definition of __EXCEPTIONS.
5922
5923 2001-02-08  Jason Merrill  <jason@redhat.com>
5924
5925         * search.c (shared_member_p): New function.
5926         (lookup_field_r): Use it.
5927         * cp-tree.h (SHARED_MEMBER_P): Remove.
5928
5929         * method.c (process_overload_item): Handle template-dependent array
5930         bounds.
5931         * pt.c (type_unification_real): If we end up with undeduced nontype
5932         parms, try again.
5933
5934         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
5935         types.
5936
5937         * typeck2.c (friendly_abort): Don't say anything if we have
5938         earlier errors or sorries.
5939
5940         * decl.c (check_tag_decl): Notice attempts to redefine bool and
5941         wchar_t.  Ignore if in_system_header.
5942
5943         * decl.c (maybe_push_cleanup_level): New fn...
5944         (start_decl_1): ...split out from here.
5945         * cvt.c (build_up_reference): Use it.
5946         * cp-tree.h: Declare it.
5947
5948 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
5949
5950         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
5951         spec.
5952
5953 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
5954
5955         * pt.c (lookup_template_class): Make sure it's a primary
5956         template or template_template_parm when called from the parser.
5957         (instantiate_template_class): Add assertion.
5958
5959 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
5960
5961         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
5962         from error_mark_node.
5963
5964 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
5965
5966         Fix specification and implementation bugs in V3 ABI
5967         construction vtables.
5968         * cp-tree.h (flag_dump_class_layout): New flag.
5969         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
5970         (BINFO_LOST_PRIMARY_P): New flag.
5971         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
5972         (BINFO_PRIMARY_MARKED_P): Rename to ...
5973         (BINFO_PRIMARY_P): ... here.
5974         (binfo_via_virtual): New prototype.
5975         * decl2.c (flag_dump_class_layout): New flag.
5976         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
5977         use `=' as a file name separator.
5978         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
5979         bases.
5980         (build_vtbl_address): If this is a virtual primary base, then
5981         get the vtbl of what it is ultimately primary for.
5982         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
5983         for BINFO_PRIMARY_P.
5984         (dfs_skip_nonprimary_vbases_markedp): Likewise.
5985         (get_shared_vbase_if_not_primary): Likewise.
5986         (dfs_get_pure_virtuals): Likewise.
5987         (expand_upcast_fixups): Likewise.
5988         (fixup_virtual_upcast_offsets): Likewise.
5989         (dfs_find_vbase_instance): Likewise.
5990         (find_vbase_instance): Likewise.
5991         (binfo_from_vbase): Adjust comment to reflect reality.
5992         (binfo_via_virtual): New function.
5993         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
5994         for binfo walking during VTT construction.
5995         (dfs_mark_primary_bases): Remove.
5996         (force_canonical_binfo_r): New function.
5997         (force_canonical_binfo): New function.
5998         (mark_primary_virtual_base): New function.
5999         (mark_primary_bases): Walk in inheritance graph order, use
6000         mark_primary_virtual_base.
6001         (determine_primary_base): Use some more intermediate variables.
6002         (dfs_find_final_overrider): Don't check for overriding along a
6003         virtual path.
6004         (dfs_modify_vtables): Walk into primary virtual bases too.
6005         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
6006         (build_base_fields): Likewise.
6007         (dfs_set_offset_for_unshared_vbases): Likewise.
6008         (layout_virtual_bases): Likewise.
6009         (end_of_class): Likewise.
6010         (finish_struct_1): Call dump_class_hierarchy, if requested.
6011         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
6012         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
6013         (dump_class_hierarchy): Add file parameter. Append to file, if
6014         required.
6015         (finish_vtbls): Adjust accumulate_vtbl_inits call.
6016         Use canonical base for virtual bases.
6017         (build_vtt): Add more comments. Adjust build_vtt_inits call.
6018         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
6019         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
6020         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
6021         virtual VTTs.
6022         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
6023         from DATA.  We want virtual primary bases and all bases via virtual.
6024         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
6025         virtual base when not a construction vtable.
6026         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
6027         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
6028         Use canonical bases when processing virtual bases.
6029         (accumulate_vtbl_inits): We're interested in any base via a
6030         virtual path.
6031         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
6032         within a construction vtable, determine what is being overridden.
6033         (build_vtbl_initializer): Add more comments
6034         (add_vcall_offset_vtbl_entries_1): Adjust comment.
6035         (build_rtti_vtbl_entries): Check if the base has lost its
6036         primary.
6037
6038 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
6039
6040         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
6041
6042 Sun Feb  4 15:52:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6043
6044         * decl.c (pushdecl): Call abort instead of fatal.
6045         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
6046         * init.c (build_new_1): Likewise.
6047         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
6048         * decl.c (build_typename_type): hash_table_init now returns void.
6049         decl.c (init_decl_processing): Make an error non-fatal.
6050
6051 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
6052
6053         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
6054         Document.
6055         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
6056         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
6057         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
6058         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
6059         * decl.c (maybe_commonize_var): Use the new name-mangling where
6060         appropriate.
6061         * decl2.c (comdat_linkage): Enhance comments.  Make all
6062         compiler-generated things static, if COMDAT is not available.
6063         (get_tinfo_decl): Do not make typeinfo objects that belong in the
6064         library COMDAT.
6065         (tinfo_base_init): Use the correct mangled name for typeinfo
6066         strings, and push them into the global scope.
6067         (typeinfo_in_lib_p): New function.
6068         (synthesize_tinfo_var): Use it.
6069         (create_real_tinfo_var): Likewise.
6070
6071 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
6072
6073         * decl.c (push_class_binding): Use context_for_name_lookup instead
6074         of CP_DECL_CONTEXT.
6075         * search.c (context_for_name_lookup): Remove static.  Check for NULL
6076         context in the loop.
6077         * cp-tree.h (context_for_name_lookup): Add prototype.
6078
6079 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
6080
6081         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
6082         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
6083         Remove.
6084         * call.c (convert_class_to_reference, build_user_type_conversion_1,
6085         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
6086
6087 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
6088
6089         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
6090         of macros used when compiling g++spec.c.
6091         * g++spec.c (lang_specific_driver): Link with the shared
6092         libgcc by default.
6093
6094 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
6095
6096         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
6097         make_reference_declarator, make_call_declarator), method.c
6098         (implicitly_declare_fn), parse.y (namespace_using_decl,
6099         notype_unqualified_id, expr_or_declarator, new_type_id,
6100         after_type_declarator, direct_after_type_declarator,
6101         notype_declarator, complex_notype_declarator,
6102         complex_direct_notype_declarator, qualified_id,
6103         notype_qualified_id, overqualified_id, direct_new_declarator,
6104         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
6105         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
6106         instead of build_parse_node.
6107
6108 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6109
6110         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
6111         (minus_one_node): Moved to top level gcc directory.  Renamed
6112         to integer_minus_one_node.
6113
6114         * init.c (init_init_processing): Don't set minus_one_node.
6115         (build_vec_init): Use integer_minus_one_node.
6116
6117         * rtti.c (get_tinfo_decl_dynamic): Likewise.
6118
6119 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
6120
6121         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
6122         identical and they would be replaced with constant, remove
6123         MODIFY_EXPR from the tree.
6124
6125 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6126
6127         * Make-lang.in: Remove all dependencies on defaults.h.
6128         * call.c: Don't include defaults.h.
6129         * decl.c: Likewise.
6130         * decl2.c: Likewise.
6131         * except.c: Likewise.
6132         * pt.c: Likewise.
6133         * rtti.c: Likewise.
6134         * tree.c: Likewise.
6135         * typeck.c: Likewise.
6136
6137 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
6138
6139         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
6140         operators even in "C" linkage.
6141         * method.c (set_mangled_name_for_decl): Likewise.
6142         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
6143         overloaded operators in "C" linkage.
6144
6145 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
6146
6147         * pt.c (tsubst_decl): Remove IN_DECL parameter.
6148         (tsubst_arg_types): Check parameter is not void.
6149         (tsubst): Adjust tsubst_decl call.
6150
6151 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
6152
6153         * call.c (add_builtin_candidate): Quote std properly, from
6154         previous change.
6155
6156 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6157
6158         * pt.c (check_explicit_specialization): Clone constructors and
6159         destructors.
6160
6161 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
6162
6163         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
6164         indicates anything special about template depth. Make sure we
6165         only count the user visible template classes.
6166
6167 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
6168
6169         * call.c (build_conv): Typo in comment.
6170         (add_builtin_candidate): Add more explanation.
6171         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
6172         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
6173         when we have enumeral types.
6174         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
6175         candidates for relops and eqops.
6176         (joust): Simplify control flow. Allow a non-template user
6177         function to hide a builtin.
6178
6179 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
6180
6181         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
6182         (more_specialized): Add deduction parameter.
6183         * call.c (joust): Adjust more_specialized call.
6184         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
6185         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
6186         (get_bindings_order): Remove.
6187         (get_bindings_real): Add DEDUCE parameter.
6188         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
6189         REFERENCE_TYPE jig for DEDUCE_ORDER.
6190         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
6191         maybe_adjust_types_for_deduction.
6192         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
6193         directly.
6194         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
6195         (check_cv_quals_for_unify): Use new unify qualifier flags.
6196         (unify): Clear new unify qualifier flags.
6197         (get_bindings_real): Add DEDUCE parameter.
6198         (get_bindings): Adjust call to get_bindings_real.
6199         (get_bindings_overload): Likewise.
6200         (most_specialized_instantiation): Adjust call to
6201         more_specialized.
6202
6203 2001-01-19  Jason Merrill  <jason@redhat.com>
6204
6205         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
6206
6207         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
6208         -fnew-abi.
6209
6210 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
6211
6212         * decl2.c (arg_assoc_class): Fix double iteration logic.
6213
6214 2001-01-19  Jason Merrill  <jason@redhat.com>
6215
6216         * init.c (build_delete): Always call convert_force to strip cv-quals.
6217
6218         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
6219         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
6220         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
6221
6222 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
6223
6224         * search.c (get_vbase_1): Count only virtual bases.
6225
6226 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
6227
6228         * class.c (duplicate_tag_error): Robustify flag clearing.
6229
6230 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
6231
6232         * cp-tree.h (lookup_template_class): Add complain parm.
6233         * decl.c (lookup_namespace_name): Adjust call to
6234         lookup_template_class.
6235         (make_typename_type): Likewise.
6236         * semantics.c (finish_template_type): Likewise.
6237         * pt.c (lookup_template_class): Add complain parm. Adjust.
6238         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
6239         (tsubst): Likewise.
6240
6241 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
6242
6243         * pt.c (copy_default_args_to_explicit_spec): Preserve
6244         object's CV quals. Reorganize.
6245
6246 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
6247
6248         * typeck.c (build_modify_expr): Say `initialization' for
6249         INIT_EXPRs.
6250         * init.c (build_default_init): Convert to enumeral type, if
6251         needed.
6252
6253 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
6254
6255         * parse.y (nomods_initdcl0): Properly set things up for
6256         initdcl0_innards.
6257
6258 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
6259
6260         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
6261         (type_unification_real): Set it.
6262         (unify): Use it.
6263
6264 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
6265
6266         * decl.c (finish_destructor_body): Convert to vbase pointer here.
6267
6268 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
6269
6270         * semantics.c (begin_class_definition): Check we're not inside a
6271         template parm list.
6272
6273 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
6274
6275         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
6276         BASELINK_P.
6277
6278 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6279
6280         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
6281         * call.c (build_over_call): Add comment.
6282
6283 2001-01-16 Daniel Berlin <dberlin@redhat.com>
6284
6285         * cvt.c (ocp_convert): Handle vector type conversion
6286         * typeck2.c (digest_init): Handle vector type initializations
6287
6288 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
6289
6290         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
6291           was given.
6292
6293 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
6294
6295         * pt.c (check_nontype_parm): Rename to ...
6296         (invalid_nontype_parm_type_p): ... here.
6297         (process_template_parm): Adjust.
6298         (convert_template_argument): Adjust.
6299
6300 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
6301
6302         * pt.c (check_nontype_parm): New function.
6303         (process_template_parm): Use it.
6304         (convert_template_argument): Use it.
6305         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
6306         member.
6307
6308 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
6309
6310         * tree.c: Add defaults.h
6311         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
6312         * Make-lang.in (cp/tree.o): Add defaults.h.
6313
6314 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
6315
6316         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
6317
6318 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
6319
6320         * g++.1: Change to be ".so man1/gcc.1".
6321
6322 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
6323
6324         * Make-lang.in (c++.info, c++.install-info): Build and install g++
6325         internals info.
6326         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
6327         ($(srcdir)/cp/g++int.info): New target.
6328         * gxxint.texi: Add info directory entry.  Use @@ in email address.
6329         * .cvsignore: Update.
6330
6331 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
6332
6333         * typeck.c (build_c_cast): Do template processing earlier.
6334         Always pedwarn on array casts.
6335
6336 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
6337
6338         * friend.c (make_friend_class): Make sure a templated class is
6339         actually a template.
6340
6341 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
6342
6343         * decl2.c (get_guard): Set linkage from guarded decl.
6344
6345 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
6346
6347         * call.c (convert_default_arg): Check for unprocessed
6348         DEFAULT_ARG.
6349         * cp-tree.h (replace_defarg): Move to spew.c.
6350         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
6351         spew.c, which is where they really are.
6352         (done_pending_defargs): Declare.
6353         (unprocessed_defarg_fn): Declare.
6354         * decl.c (replace_defarg): Move to spew.c
6355         * parse.y (structsp): Call done_pending_defargs.
6356         * spew.c (defarg_fns): Rearrange list structure.
6357         (defarg_fnsdone): New static variable.
6358         (defarg_depfns): New static variable.
6359         (init_spew): Adjust.
6360         (add_defarg_fn): Store the type in TREE_TYPE.
6361         (do_pending_defargs): Detect and deal with ordering constraints
6362         and circularity.
6363         (done_pending_defargs): New function.
6364         (unprocessed_defarg_fn): New function.
6365         (replace_defarg): Moved from decl.c. Robustify. Don't save
6366         if circularity detected.
6367
6368 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
6369
6370         * pt.c (unify): Check array has a domain, before checking
6371         whether it is variable sized.
6372
6373 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
6374
6375         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
6376         parameters with pointers to arrays of unknown bound.
6377
6378 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
6379
6380         * parse.y (template_parm_header, template_spec_header): New
6381         reductions. Split out from ...
6382         (template_header): ... here. Use them.
6383         (template_template_parm): Use template_parm_header.
6384         * semantics.c (finish_template_template_parm): Add assert.
6385
6386 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
6387
6388         * mangle.c (write_builtin_type): Fix thinko.
6389
6390         * pt.c (copy_default_args_to_explicit_spec_1): New function.
6391         (copy_default_args_to_explicit_spec): Likewise.
6392         (check_explicit_specialization): Use it.
6393
6394         * class.c (finish_struct_1):  Remove last argument in call to
6395         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
6396         * decl.c (builtin_function): Likewise.
6397         (build_cp_library_fn): Likewise.
6398         (check_initializer): Likewise.
6399         (make_rtl_for_nonlocal_decl): Likewise.
6400         (cp_finish_decl): Likewise.
6401         (start_function): Likewise.
6402         * decl2.c (finish_anon_union): Likewise.
6403         * friend.c (do_friend): Likewise.
6404         * init.c (build_java_class_ref): Likewise.
6405         * method.c (make_thunk): Likewise.
6406         * pt.c (tsubst_friend_function): Likewise.
6407         * semantics.c (expand_body): Likewise.
6408
6409 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
6410
6411         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
6412         looking at DECL_CLONED_FUNCTION for non-functions.
6413
6414 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
6415
6416         * error.c (dump_template_parameter): Use parm to determine how
6417         to print default value.
6418
6419 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
6420
6421         * class.c (duplicate_tag_error): Clear more flags.
6422
6423 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
6424
6425         * call.c (build_new_method_call): Use binfo_for_vbase.
6426
6427 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
6428
6429         * cp-tree.h (flag_cond_mismatch): Don't declare.
6430         * decl2.c (flag_cond_mismatch): Don't define.
6431         (lang_f_options): Remove cond-mismatch.
6432         (unsupported_options): Add cond-mismatch.
6433
6434 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
6435
6436         * class.c (handle_using_decl): Reject using of constructor name
6437         of sourcing class. Allow injecting of a method with same name as
6438         nested class. Fixup error messages.
6439
6440 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
6441
6442         * decl2.c (lang_decode_option): Handle -Wformat=2.
6443
6444 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6445
6446         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
6447         initialized_in_class.
6448         (DECL_DEFINED_IN_CLASS_P): Rename to ...
6449         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
6450         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
6451         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
6452         * pt.c (check_default_tmpl_args): Adjust for
6453         DECL_INITIALIZED_IN_CLASS_P.
6454         (instantiate_class_template): Likewise.
6455         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
6456
6457         * class.c (finish_struct): Constify saved_filename.
6458
6459 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6460
6461         * class.c (duplicate_tag_error): Adjust diagnostic.
6462         (finish_struct): Locally set location to start of struct.
6463         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
6464
6465 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6466
6467         * decl.c (struct binding_level): Adjust class_shadowed comments
6468         to reflect reality.
6469         (push_class_level_binding): Adjust comments to reflect reality.
6470         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
6471         Don't set TREE_VALUE on the class_shadowed list.
6472
6473 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
6474
6475         * decl2.c (acceptable_java_type): Allow references too.
6476         * init.c (build_java_class_ref): When using the new ABI, search
6477         `class$' and have it mangled with `mangle_decl.'
6478         * mangle.c (write_java_integer_type_codes): New function.
6479         (write_builtin_type): Detect and mangle Java integer and real
6480         types.
6481
6482 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
6483
6484         * decl2.c (grokfield): Don't accept `asm' specifiers for
6485         non-static data members.
6486
6487 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6488
6489         * expr.c (cplus_expand_expr): Don't reset `target'.
6490
6491 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
6492
6493         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
6494
6495 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6496
6497         * parse.y (template_datadef): Check for error_mark_node.
6498
6499 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6500
6501         * cp-tree.def (DEFAULT_ARG): Make `x' class.
6502
6503 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
6504
6505         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
6506         (record_builtin_type): Make non-static.
6507         (flag_short_double): Don't declare.
6508         (init_decl_processing): Remove the creation of many tree nodes now
6509         in c_common_nodes_and_builtins.
6510         (build_void_list_node): New function.
6511         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
6512         * cp-tree.h (flag_short_wchar): Don't declare.
6513
6514 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
6515
6516         * call.c (build_conv): Don't use build1 for USER_CONV.
6517         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
6518
6519 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6520
6521         * lex.c (lang_init): Call c_common_lang_init.
6522
6523 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6524
6525         * search.c (lookup_fnfields_here): Remove.
6526         (look_for_overrides_r): Use lookup_fnfields_1.
6527         Ignore functions from using declarations.
6528
6529 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6530
6531         Implement exceptions specifiers for implicit member functions.
6532         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
6533         * method.c (synthesize_exception_spec): New function.
6534         (locate_dtor, locate_ctor, locate_copy): New functions.
6535         (implicitly_declare_fn): Generate the exception spec too.
6536         * search.c (check_final_overrider): Check artificial functions
6537         too.
6538         * typeck2.c (merge_exception_specifiers): New function.
6539
6540 2001-01-03  Jason Merrill  <jason@redhat.com>
6541
6542         * init.c (build_default_init): New fn.
6543         (perform_member_init): Split out from here.
6544         (build_new_1): Use it.  Simplify initialization logic.
6545         (build_vec_init): Take an array, rather than a pointer and maxindex.
6546         Speed up simple initializations.  Don't clean up if we're assigning.
6547         * cp-tree.h: Adjust.
6548         * decl2.c (do_static_initialization): Remove TREE_VEC case.
6549         * parse.y (new_initializer): Return void_zero_node for ().
6550         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
6551         * typeck2.c (digest_init): Only complain about user-written
6552         CONSTRUCTORs.
6553
6554 2000-12-22  Mike Stump  <mrs@wrs.com>
6555
6556         * decl2.c: (max_tinst_depth): Increase to 50.
6557
6558 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
6559
6560         * class.c (invalidate_class_lookup_cache): Zero the
6561         previous_class_values.
6562         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
6563         TREE_INT_CST_HIGH.
6564         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
6565         * decl.c (free_bindings): New variable.
6566         (push_binding): Don't create a new binding if we have one on the
6567         free list.
6568         (pop_binding): Put old bindings on the free list.
6569         (init_decl_processing): Use size_int, not build_int_2.
6570         Register free_bindings as a GC root.
6571         (cp_make_fname_decl): Use size_int, not build_int_2.
6572         (push_inline_template_parms_recursive): Likewise.
6573         (end_template_parm_list): Likewise.
6574         (for_each_tempalte_parm): Do not use walk_tree_without_duplicates.
6575         (tsubst_template_parms): Use size_int, not build_int_2.
6576         (tsubst): Likewise.
6577         * rtti.c (get_vmi_pseudo_type_info): Likewise.
6578
6579 2001-01-02  Richard Henderson  <rth@redhat.com>
6580
6581         * parse.y (asm): Set ASM_INPUT_P.
6582
6583 2001-01-02  Jason Merrill  <jason@redhat.com>
6584
6585         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
6586         for v3 ABI.
6587
6588         * typeck.c (cp_truthvalue_conversion): New fn.
6589         * cvt.c (ocp_convert): Use it.
6590
6591         * cp-tree.h: Lose c-common.c decls.
6592
6593         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
6594         * cvt.c (convert_to_void): Use type_unknown_p.
6595
6596         * typeck.c (strip_all_pointer_quals): Also strip quals from
6597         pointer-to-member types.
6598
6599         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
6600         parse.y as C.
6601
6602         * call.c (build_new_method_call): Do evaluate the object parameter
6603         when accessing a static member.
6604         * typeck.c (build_component_ref): Likewise.
6605
6606 2001-01-02  Andreas Jaeger  <aj@suse.de>
6607
6608         * decl.c (cp_missing_noreturn_ok_p): New.
6609         (init_decl_processing): Set lang_missing_noreturn_ok_p.
6610
6611 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
6612
6613         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
6614
6615 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
6616
6617         * class.c (pushclass): Remove #if 0'd code.
6618         * cp-tree.h (overload_template_name): Remove.
6619         * decl.c (store_bindings): Simplify.
6620         (pop_from_top_level): Likewise.
6621         * pt.c (overload_template_name): Remove.
6622         (instantiate_decl): Don't call push_to_top_level if it's not
6623         needed.
6624
6625 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
6626
6627         * pt.c (register_local_specialization): Don't return a value.
6628         (lookup_template_class): Use move-to-front heuristic when looking
6629         up template instantiations.
6630         (instantiate_decl): Only push_to_top_level when we're actually
6631         going to instantiate the template.
6632
6633 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
6634
6635         * search.c (binfo_for_vtable): Return least derived class, not
6636         most.  Handle secondary vtables.
6637
6638 2000-12-22  Jason Merrill  <jason@redhat.com>
6639
6640         * pt.c (more_specialized): Don't optimize len==0.
6641         (fn_type_unification): If we're adding the return type, increase len.
6642
6643         * typeck.c (build_binary_op): Fix pmf comparison logic.
6644
6645         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
6646         DECL_STATIC_FUNCTION_P.
6647
6648         * semantics.c (genrtl_finish_function): Don't try to jump to
6649         return_label unless it exists.
6650
6651         In partial ordering for a call, ignore parms for which we don't have
6652         a real argument.
6653         * call.c (joust): Pass len to more_specialized.
6654         (add_template_candidate_real): Strip 'this', pass len.
6655         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
6656         (get_bindings_order): New fn.  Pass len down.
6657         (get_bindings_real): Strip 'this', pass len.
6658         (fn_type_unification): Likewise.
6659         (type_unification_real): Succeed after checking 'len' args.
6660         (most_specialized_instantiation): Lose explicit_args parm.
6661         * class.c (resolve_address_of_overloaded_function): Strip 'this',
6662         pass len.
6663
6664 2000-12-21  Jason Merrill  <jason@redhat.com>
6665
6666         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
6667         DECL_TEMPLATE_RESULT.
6668
6669         * search.c (lookup_field_r): Call lookup_fnfields_1, not
6670         lookup_fnfields_here.
6671
6672         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
6673
6674         * call.c (build_object_call): Also allow conversions that return
6675         reference to pointer to function.
6676         (add_conv_candidate): Handle totype being ref to ptr to fn.
6677         (build_field_call): Also allow members of type reference to function.
6678         Lose support for calling pointer to METHOD_TYPE fields.
6679
6680         * error.c (dump_expr): Handle *_CAST_EXPR.
6681
6682         * typeck2.c (build_scoped_ref): Always convert to the naming class.
6683
6684         * tree.c (break_out_cleanups): Lose.
6685         * cp-tree.h: Remove prototype.
6686         * typeck.c (build_component_ref): Don't break_out_cleanups.
6687         (build_compound_expr): Likewise.
6688         * semantics.c (finish_expr_stmt): Likewise.
6689
6690 2000-12-20  Richard Henderson  <rth@redhat.com>
6691
6692         * cp-tree.h: Update declarations.
6693         * decl.c (finish_case_label): Return the new stmt node.
6694         * semantics.c (finish_goto_stmt): Likewise.
6695         (finish_expr_stmt, finish_return_stmt): Likewise.
6696         (finish_break_stmt, finish_continue_stmt): Likewise.
6697         (finish_asm_stmt): Likewise.
6698         * parse.y (already_scoped_stmt): Set STMT_LINENO.
6699         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
6700         (simple_if, simple_stmt): Return the new stmt node.
6701         (save_lineno): New.
6702
6703 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
6704
6705         * cp-tree.h: Don't declare warn_long_long.
6706
6707 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6708
6709         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
6710         IS_AGGR_TYPE.
6711
6712 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6713
6714         * pt.c (unify): Handle when both ARG and PARM are
6715         BOUND_TEMPLATE_TEMPLATE_PARM.
6716
6717 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6718
6719         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
6720         DECL_TEMPLATE_PARM_P.
6721
6722 2000-12-15  Jason Merrill  <jason@redhat.com>
6723
6724         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
6725
6726         * init.c (build_new_1): Don't strip quals from type.
6727
6728         * decl.c (pushdecl): Don't check for linkage on a non-decl.
6729
6730         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
6731
6732         * call.c (build_new_function_call): Lose space before paren in
6733         error message.
6734         (build_new_method_call): Likewise.
6735
6736         * typeck2.c (build_m_component_ref): Propagate quals from datum.
6737
6738 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6739
6740         * pt.c (check_explicit_specialization): Propagate default
6741         function arguments to explicit specializations.
6742
6743 2000-12-13  DJ Delorie  <dj@redhat.com>
6744
6745         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
6746         and <? operators.
6747
6748 2000-12-08  Jason Merrill  <jason@redhat.com>
6749
6750         * error.c (dump_function_name): Don't let the user see __comp_ctor.
6751
6752         Clean up copy-initialization in overloading code.
6753         * call.c (build_user_type_conversion_1): Die if we are asked to
6754         convert to the same or a base type.
6755         (implicit_conversion): Avoid doing so.  Lose reference binding code.
6756         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
6757         direct-initialization.  Also do direct-init part of copy-init.
6758         (build_user_type_conversion): Don't provide context to convert_like.
6759         * cvt.c (ocp_convert): build_user_type_conversion will now provide
6760         the constructor call for copy-init.
6761
6762         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
6763         instantiation of a member template.
6764         (do_decl_instantiation): Not here.
6765
6766 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6767
6768         * class.c (check_field_decls): Don't special case anonymous
6769         fields in error messages.
6770         (note_name_declared_in_class): Use %D on diagnostic.
6771
6772         * tree.c (pod_type_p): Use strip_array_types.
6773         (cp_valid_lang_attribute): Likewise.
6774         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
6775         multiple evaluations.
6776         (cp_has_mutable_p): Use strip_array_types.
6777
6778 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6779
6780         * cp-tree.h (sufficient_parms_p): Declare new function.
6781         * call.c (sufficient_parms_p): New function, broken out of ...
6782         (add_function_candidate): ... here. Use it.
6783         (add_conv_candidate): Use it.
6784         * decl.c (grok_ctor_properties): Use it.
6785
6786 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
6787
6788         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
6789
6790 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
6791
6792         * decl2.c (lang_decode_option): Handle -Wformat-security.
6793
6794 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6795
6796         * pt.c (verify_class_unification): New function.
6797         (get_class_bindings): Use it.
6798         (try_class_unification): Tidy.
6799         (unify): Handle when argument of a template-id is not
6800         template parameter dependent.
6801         (template_args_equal): Handle when TREE_CODE's do not match.
6802
6803 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
6804
6805         * lang-specs.h (c++): When invoking the stand-alone preprocessor
6806         for -save-temps, pass all relevant -Defines to it, and then don't
6807         pass them to cc1plus.
6808
6809 2000-12-05  Will Cohen  <wcohen@redhat.com>
6810
6811         * decl.c (finish_case_label): Cleared
6812         more_cleanups_ok in surrounding function scopes.
6813         (define_label): Likewise.
6814
6815 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6816
6817         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
6818         (get_matching_virtual): Remove.
6819         (look_for_overrides): Declare new function.
6820         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
6821         DECL_VINDEX here.
6822         * class.c (check_for_override): Move base class iteration code
6823         to look_for_overrides.
6824         * search.c (next_baselink): Remove.
6825         (get_virtuals_named_this): Remove.
6826         (get_virtual_destructor): Remove.
6827         (tree_has_any_destructors_p): Remove.
6828         (struct gvnt_info): Remove.
6829         (check_final_overrider): Remove `virtual' from error messages.
6830         (get_matching_virtuals): Remove. Move functionality to ...
6831         (look_for_overrides): ... here, and ...
6832         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
6833         to be overriding.
6834
6835 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6836
6837         * typeck.c (get_delta_difference): If via a virtual base,
6838         return zero.
6839         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
6840         adjustment.
6841
6842 2000-12-04  Richard Henderson  <rth@redhat.com>
6843
6844         * error.c (dump_tree): Use output_add_string not OB_PUTS.
6845
6846 2000-12-04  Jason Merrill  <jason@redhat.com>
6847
6848         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
6849         (write_builtin_type): Pass intSI_type_node and the like through
6850         type_for_mode.
6851         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
6852         Pass intSI_type_node and the like through type_for_mode.
6853         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
6854         * pt.c (tsubst, unify): Likewise.
6855         * tree.c (walk_tree): Likewise.
6856         * error.c (dump_type): Likewise.
6857         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
6858
6859         * Make-lang.in: Tweak top comment for emacs.
6860         (cp/TAGS): Restore.
6861
6862         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
6863
6864         * class.c (clone_function_decl): Robustify.
6865
6866 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
6867
6868         * decl.c (store_bindings): Only search in the non modified
6869         old_bindings for duplicates.
6870
6871 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
6872
6873         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
6874         TYPE_POLYMORPHIC_P.
6875
6876         * typeck.c (build_static_cast): Remove unused variable.
6877
6878 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6879
6880         * pt.c: Fix typo in comment.
6881
6882 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6883
6884         * decl2.c (warn_format): Remove definition.
6885         (lang_decode_option): Handle -Wformat-nonliteral,
6886         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
6887
6888 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6889
6890         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
6891         (init_decl_processing): Don't create string_type_node,
6892         const_string_type_node, wint_type_node, intmax_type_node,
6893         uintmax_type_node, default_function_type, ptrdiff_type_node and
6894         unsigned_ptrdiff_type_node.  Adjust position of call to
6895         c_common_nodes_and_builtins.
6896         (identifier_global_value): New function.
6897
6898 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
6899
6900         * call.c (standard_conversion): Reject pointer to member
6901         conversions from ambiguous, inaccessible or virtual bases.
6902         * typeck.c (build_static_cast): Don't check pointers to members
6903         specially.
6904
6905 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6906
6907         * method.c (do_build_copy_constructor): Preserve cv
6908         qualifications when accessing source object members.
6909         (do_build_assign_ref): Likewise. Remove separate diagnostics for
6910         unnamed fields.
6911
6912 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6913
6914         * method.c (do_build_assign_ref): Construct appropriately
6915         CV-qualified base reference. Don't allow const casts in base
6916         conversion.
6917
6918 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6919
6920         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
6921         incomplete return type.
6922
6923 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6924
6925         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
6926         * semantics.c (finish_base_specifier): Accept a _TYPE not a
6927         _DECL.
6928
6929 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6930
6931         * spew.c (yyerror): Cope if yylval.ttype is NULL.
6932
6933 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6934
6935         * decl.c (grokdeclarator): Diagnose undefined template contexts.
6936
6937 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6938
6939         * decl.c (grokdeclarator): Do type access control on friend
6940         class.
6941
6942 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6943
6944         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
6945         bison parser ickiness.
6946         * pt.c (tsubst_friend_function): Enter namespace scope when
6947         tsubsting the function name.
6948         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
6949
6950 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6951
6952         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
6953         * cvt.c (cp_convert_to_pointer): Add force parameter.
6954         Allow conversions via virtual base if forced.
6955         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
6956         (ocp_convert): Likewise.
6957         * search.c (binfo_from_vbase): Return the virtual base's binfo.
6958         * typeck.c (get_delta_difference): Adjust handling of virtual
6959         bases.
6960
6961 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
6962
6963         * tree.c (struct list_hash): Remove.
6964         (list_hash_table): Make it be an htab.
6965         (struct list_proxy): New type.
6966         (list_hash_eq): New function.
6967         (list_hash_pieces): Renamed from ...
6968         (list_hash): ... this.
6969         (list_hash_lookup): Remove.
6970         (list_hash_add): Remove.
6971         (hash_tree_cons): Use the generic hashtable.
6972         (mark_list_hash): Remove.
6973         (init_tree): Create the hashtable.
6974
6975 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
6976
6977         * method.c (build_mangled_C9x_name): Rename to
6978         build_mangled_C99_name.  Change C9X references in comments to
6979         refer to C99.
6980
6981 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6982
6983         * parse.y (unary_expr): Move VA_ARG from here ...
6984         (primary): ... to here.
6985
6986 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6987
6988         * semantics.c (finish_id_expr): If type is error_mark, return
6989         error_mark.
6990
6991 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
6992
6993         * pt.c (lookup_template_class): Simplify loop exit constructs.
6994         Cope when there is no partial instantiation of a template
6995         template member.
6996
6997 Thu Nov 23 02:16:47 2000  J"orn Rennecke <amylaar@redhat.com>
6998
6999         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
7000
7001 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
7002
7003         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
7004         prefix.
7005
7006         * pt.c (do_decl_instantiate): Explicitly clone constructors and
7007         destructors that haven't already been cloned.
7008
7009 2000-11-20  Richard Henderson  <rth@redhat.com>
7010
7011         * parse.y (yyparse_1): Rename the parser entry point.
7012
7013 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
7014
7015         * mangle.c (write_name): Use <unscoped-name> for names directly in
7016         function scope.
7017         (write_unscoped_name): Accept names directly in function scope.
7018
7019 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
7020
7021         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
7022         * parse.y (extdef): Add EXPORT reduction.
7023         * spew.c (yylex): Don't skip export here.
7024
7025 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
7026
7027         * decl.c (init_decl_processing): Correct name of pure virtual
7028         function under the new ABI.
7029         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
7030         (throw_bad_typeid): Likewise for bad typeid function.
7031
7032 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
7033
7034         * decl.c (grokparms): Don't even function types of `void' type,
7035         either.
7036         * mangle.c (write_type): Don't crash when confronted with the
7037         error_mark_node.
7038
7039         * decl.c (grokparms): Don't create parameters of `void' type.
7040
7041 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
7042
7043         * lex.c (mark_impl_file_chain): Delete.
7044         (init_parse): Remove call to ggc_add_string_root.  No need to
7045         ggc_strdup a string constant.  Do not add impl_file_chain to GC
7046         roots.
7047         (handle_pragma_implementation): No need to ggc_strdup main_filename.
7048
7049 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
7050
7051         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
7052
7053 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
7054
7055         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
7056         * decl.c (grokdeclarator): Don't reject void parms here.
7057         (require_complete_types_for_parms): Simplify, use
7058         complete_type_or_else.
7059         (grokparms): Remove bitrot. Remove funcdef parm.
7060         Deal with ellipsis parm lists here.
7061         * semantics.c (finish_parmlist): Don't append void_list_node
7062         here. Set PARMLIST_ELLIPSIS_P.
7063
7064 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
7065
7066         * typeck2.c (incomplete_type_error): Reorganise to avoid
7067         excessive diagnostics.
7068
7069 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
7070
7071         * lex.c (struct impl_files, internal_filename): Constify a char *.
7072
7073 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
7074
7075         * mangle.c (write_special_name_constructor): Don't generate
7076         assembler junk when confronted with an old-style constructor.
7077         (write_special_name_destructor): Likewise.
7078         (mangle_decl_string): Do it here instead.
7079
7080 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
7081
7082         * call.c (op_error): Make error messages clearer.
7083
7084 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
7085
7086         * decl.c (wrapup_globals_for_namespace): Don't mark things
7087         TREE_ASM_WRITTEN when they're not.
7088
7089 2000-11-15  Jason Merrill  <jason@redhat.com>
7090
7091         * typeck2.c (friendly_abort): Uncount the error before handing
7092         off to fancy_abort.
7093
7094 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
7095
7096         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
7097
7098 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
7099
7100         * class.c (build_vtbl_initializer): Fix typo in comment.
7101         * typeck.c (expr_sizeof): Don't crash on errors.
7102
7103 2000-11-14  Jim Wilson  <wilson@redhat.com>
7104
7105         * lang-specs.h: Add %2 after %(cc1_options).
7106
7107 2000-11-14  Richard Henderson  <rth@redhat.com>
7108
7109         * typeck.c (c_sizeof): Be strict about casting result value
7110         back to c_size_type_node.
7111         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
7112
7113 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
7114
7115         * typeck.c (build_unary_op): Use boolean_increment from
7116         c-common.c, moving the relevant code there.
7117
7118 2000-11-11  Jason Merrill  <jason@redhat.com>
7119
7120         * typeck.c (mark_addressable): Don't call put_var_into_stack.
7121
7122         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
7123         in inlines.
7124
7125 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7126
7127         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
7128         * lex.c (copy_lang_decl): Likewise.
7129
7130 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
7131
7132         * dump.c (cp_dump_tree): Don't dump function bodies here.
7133
7134         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
7135         (dump.o): Update dependency list.
7136         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
7137         (flag_dump_translation_unit): Likewise.
7138         (CP_TYPE_QUALS): Adjust definition.
7139         (DECL_C_BIT_FIELD): Remove.
7140         (SET_DECL_C_BIT_FIELD): Likewise.
7141         (CLEAR_DECL_C_BIT_FIELD): Likewise.
7142         (add_maybe_template): Likewise.
7143         (strip_array_types): Likewise.
7144         (dump_node_to_file): Likewise.
7145         (cp_dump_tree): New function.
7146         * decl.c (init_decl_processing): Set lang_dump_tree.
7147         * decl2.c (flag_dump_translation_unit): Remove.
7148         * dump.c: Move most of it to ../c-dump.c.
7149         (cp_dump_tree): New function.
7150         * pt.c (add_maybe_template): Remove.
7151         * typeck.c (strip_array_types): Likewise.
7152
7153 2000-11-07  Eric Christopher  <echristo@redhat.com>
7154
7155         * decl.c (init_decl_processing): Change definition of
7156         __wchar_t to wchar_t.  Remove artificial declaration of
7157         wchar_t.
7158         * lex.c: Change instances of __wchar_t to wchar_t.
7159
7160 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
7161
7162         * lex.c (do_identifier): Don't lookup_name for operators.
7163         * parse.y (operator): Save looking_for_typename.
7164         (unoperator): Restore it.
7165         * spew.c (frob_opname): Use nth_token for lookahead.
7166
7167 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
7168
7169         * decl.c (grok_op_properties): Always use coerce_new_type and
7170         coerce_delete_type.
7171         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
7172         exception specification. Tidy up.
7173         (coerce_delete_type): Preserve exception specification. Tidy up.
7174
7175 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
7176
7177         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
7178         (push_binding_level), error.c (cp_tree_printer), pt.c
7179         (process_partial_specialization, tsubst_template_arg_vector),
7180         search.c (lookup_member): Use memset () instead of bzero ().
7181
7182 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
7183
7184         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
7185
7186 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
7187
7188         * Make-lang.in (c++.distdir): Remove.
7189
7190 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
7191
7192         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
7193         declarations from different namespaces to be combined.
7194
7195 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
7196
7197         * decl.c: Include tm_p.h.
7198
7199 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
7200
7201         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
7202
7203 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
7204
7205         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
7206         (build_overload_value), repo.c (open_repo_file), xref.c
7207         (open_xref_file): Use strchr () and strrchr () instead of index ()
7208         and rindex ().
7209
7210 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
7211
7212         * call.c (build_over_call): Call fold on the CALL_EXPR.
7213
7214 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
7215
7216         * error.c (dump_template_decl): Separate template hearders with
7217         space not comma.
7218
7219 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
7220
7221         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
7222         TS_* flags with corresponding TFF_*.  Adjust prototypes of
7223         functions (which used to take a tree_string_flags) to take an int.
7224
7225         * cp-tree.h (enum tree_string_flags): Remove
7226         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
7227         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
7228         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
7229         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
7230         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
7231         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
7232         (type_as_string, decl_as_string, expr_as_string,
7233         context_as_string): Adjust prototype.
7234
7235         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
7236         instead of TS_PLAIN.
7237
7238         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
7239         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
7240         plain `0'.
7241
7242 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
7243
7244         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
7245         (linkage_kind): New enumeration.
7246         (decl_linkage): New function.
7247         * decl2.c (comdat_linkage): Extend comment.
7248         * error.c (dump_function_decl): Print the arguments used to
7249         instantiate a template, even when not printing the type of the
7250         function.
7251         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
7252         not TREE_PUBLIC, to test for external linkage.
7253         * tree.c (decl_linkage): New function.
7254
7255 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
7256
7257         * pt.c (instantiate_decl): Always instantiate static data members
7258         initialized in-class.
7259
7260 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
7261
7262         * Make-lang.in: Move all build rules here from Makefile.in,
7263         adapt to new context.  Wrap all rules that change the current
7264         directory in parentheses.  Expunge all references to $(P).
7265         When one command depends on another and they're run all at
7266         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
7267         all object-file generation rules.  Delete obsolete variables.
7268
7269         * Makefile.in: Delete.
7270         * config-lang.in: Delete outputs= line.
7271
7272 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
7273
7274         * error.c (dump_function_decl): Print no space between
7275         `ptr-operator' the `type-specifier' of the return type.
7276         (dump_type_prefix): Make sure we put space at the appropriate
7277         place.
7278
7279 2000-10-23  Jason Merrill  <jason@redhat.com>
7280
7281         * call.c (equal_functions): Also call decls_match for extern "C" fns.
7282
7283 2000-10-22  Jason Merrill  <jason@redhat.com>
7284
7285         * call.c (build_conditional_expr): Use ocp_convert to force
7286         rvalue conversion.
7287
7288 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
7289
7290         * call.c (standard_conversion): Use RVALUE_CONVs for all
7291         expressions that satisfy lvalue_p, not just those that satisfy
7292         real_lvalue_p.
7293
7294         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
7295
7296         * typeck.c (c_sizeof): Return an expression of `size_t' type,
7297         not one with TYPE_IS_SIZETYPE set.
7298         (dubious_conversion_warnings): Remove special-case code.
7299
7300 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
7301
7302         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
7303         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
7304         (dump_type_prefix): Print vector-of-int as 'int vector'.
7305         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
7306         * tree.c (walk_tree): Handle VECTOR_TYPE.
7307
7308         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
7309
7310 2000-10-21  Jason Merrill  <jason@redhat.com>
7311
7312         * parse.y (operator): Set got_object from got_scope.
7313         Set looking_for_typename.
7314         * decl.c (lookup_name_real): Clear val after setting from_obj.
7315         Reorganize diagnostic.
7316
7317 2000-10-20  Jason Merrill  <jason@redhat.com>
7318
7319         * tree.c (walk_tree): Don't walk into default args.
7320
7321         * error.c (dump_expr): Use host_integerp.
7322
7323 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
7324
7325         * typeck2.c (abstract_virtuals_error): Use "because" instead of
7326         "since" in error message.
7327
7328 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7329
7330         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
7331
7332 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
7333
7334         * decl.c (revert_static_member_fn): Fixed typo.
7335
7336 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
7337
7338         * class.c (subobject_offset_fn): New type.
7339         (dfs_record_base_offsets): Remove.
7340         (record_base_offsets): Likewise.
7341         (dfs_search_base_offsets): Likewise.
7342         (record_subobject_offset): New function.
7343         (check_subobject_offset): Likewise.
7344         (walk_subobject_offsets): Likewise.
7345         (record_subobject_offsets): Likewise.
7346         (layout_conflict_p): Reimplement.
7347         (layout_nonempty_base_or_field): Correct handling of type
7348         conflicts during layout.
7349         (layout_empty_base): Likewise.
7350         (build_base_field): Adjust to handle new representation of empty
7351         base offset table.
7352         (build_base_fields): Likewise.
7353         (layout_virtual_bases): Likewise.
7354         (splay_tree_compare_integer_csts): New function.
7355         (layout_class_type): Use a splay_tree, rather than a varray, to
7356         represent the offsets of empty bases.
7357
7358         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
7359         * decl.c (select_decl): Don't return declarations that are
7360         DECL_ANTICIPATED.
7361
7362 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
7363
7364         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
7365         (fake_std_node): New macro.
7366         * decl.c (in_std): Rename to ...
7367         (in_fake_std): ... this.
7368         (flag_no_builtin): Remove.
7369         (flag_no_nonansi_builtin): Likewise.
7370         (walk_namespaces_r): Use fake_std_node.
7371         (push_namespace): Use std_identifier.
7372         (pop_namespace): Use in_fake_std.
7373         (lookup_name_real): Use fake_std_node.
7374         (init_decl_processing): When -fhonor-std, create the `std'
7375         namespace.  Don't create a dummy fake_std_node in that case.
7376         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
7377         (builtin_function): Put builtins whose names don't begin
7378         with `_' in the std namespace.
7379         * decl2.c (flag_no_builtin): Remove.
7380         (flag_no_nonansi_builtin): Likewise.
7381         (set_decl_namespace): Use fake_std_node.
7382         (validate_nonmember_using_decl): Likewise.
7383         (do_using_directive): Likewise.
7384         (handle_class_head): Likewise.
7385         * dump.c (dequeue_and_dump): Likewise.
7386         * except.c (init_exception_processing): Use std_identifier.
7387         * init.c (build_member_call): Use fake_std_node.
7388         * rtti.c (init_rtti_processing): Use std_identifier.
7389
7390 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
7391
7392         * cp-tree.h (back_end_hook): Remove declaration.
7393         * decl2.c (back_end_hook): Remove definition.
7394
7395         * dump.c (dequeue_and_dump): Dump TREE_USED.
7396
7397 Tue Oct 17 20:19:06 2000  Brad Lucier <lucier@math.purdue.edu>
7398
7399         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
7400
7401 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
7402
7403         * decl.c (WINT_TYPE): Define.
7404         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
7405         c_size_type_node, signed_size_type_node and wint_type_node.
7406
7407 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
7408
7409         * decl2.c (warn_missing_format_attribute): New variable.
7410         (lang_decode_option): Decode -Wmissing-format-attribute.
7411
7412 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
7413
7414         * typeck.c (qualify_type): Remove.
7415         (composite_pointer_type): Fix handling of conversions to `cv void*'.
7416
7417 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7418
7419         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
7420
7421 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7422
7423         * Makefile.in (parse.c, parse.h): Create atomically.
7424
7425 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
7426
7427         * class.c (current_obstack): Remove.
7428         * decl.c (ggc_p): Remove.
7429         (start_decl): Don't use decl_tree_cons.
7430         (grokdeclarator): Don't use build_decl_list.
7431         (start_function): Don't use decl_tree_cons.
7432         (finish_function): Don't mess with obstacks.
7433         * decl2.c (grok_x_components): Don't use build_decl_list.
7434         * lex.c (make_call_declarator): Don't call decl_tree_cons.
7435         (implicitly_declare_fn): Don't call build_decl_list.
7436         * parse.y (frob_specs): Don't call build_decl_list or
7437         decl_tree_cons.
7438         (expr_or_declarator_intern): Don't call decl_tree_cons.
7439         (primary): Don't call build_decl_list.
7440         (fcast_or_absdcl): Likewise.
7441         (typed_declspecs): Don't call decl_tree_cons.
7442         (reserved_declspecs): Don't call build_decl_list.
7443         (declmods): Likewise.
7444         (reserved_typespecquals): Likewise.
7445         (aggr): Likewise.
7446         (new_type_id): Likewise.
7447         (cv_qualifiers): Likewise.
7448         (after_type_declarator_intern): Likewise.
7449         (notype_declarator_intern): Likewise.
7450         (absdcl_intern): Likewise.
7451         (named_parm): Likewise.
7452         * pt.c (most_specialized_class): Likewise.
7453         * repo.c (temporary_obstack): Make it a structure, not a pointer.
7454         (init_repo): Initialize it.
7455         * search.c (current_obstack): Remove.
7456         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
7457
7458 2000-10-09  Richard Henderson  <rth@cygnus.com>
7459
7460         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
7461         (c++ language support bits for libgcc): Remove.
7462         (c++.clean): Remove cplib2.txt cleanup.
7463         * config-lang.in (headers, lib2funcs): Remove.
7464
7465         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
7466         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
7467         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
7468         * inc/new.h, inc/typeinfo: Remove files.
7469
7470 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
7471
7472         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
7473         defined.
7474         (init_decl_processing): Initialize intmax_type_node and
7475         uintmax_type_node.
7476
7477 2000-10-06  Richard Henderson  <rth@cygnus.com>
7478
7479         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
7480         (original_result_rtx): Remove.
7481         * decl.c (save_function_data): Don't clear x_result_rtx.
7482         (mark_lang_function): Don't mark it either.
7483         * expr.c (fixup_result_decl): Remove.
7484         * semantics.c (genrtl_named_return_value): Frob the return decl
7485         before calling emit_local_var.
7486         (genrtl_finish_function): Don't call fixup_result_decl.
7487         Always emit the jump to return_label.
7488
7489 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
7490
7491         * pt.c (lookup_template_class): Set current access for enum.
7492         (tsubst_enum): Set file & line for enum decl.
7493
7494         * spew.c (yylex): Remove unused variable.
7495
7496 2000-10-05  Richard Henderson  <rth@cygnus.com>
7497
7498         * semantics.c (genrtl_finish_function): Don't init or check
7499         can_reach_end; remove noreturn and return value checks.
7500
7501 2000-10-05  Tom Tromey  <tromey@cygnus.com>
7502
7503         * init.c (build_java_class_ref): Use `build_static_name' with a
7504         suffix, not a prefix, to build the class object's name.
7505
7506 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7507
7508         * cp-tree.h (access_kind): Fix comment typo.
7509         * decl2.c (grokfield): Fix diagnostic typo.
7510         * semantics.c (finish_template_type): Fix comment typo.
7511         (finish_qualified_object_call_expr): Likewise.
7512
7513 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7514
7515         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
7516         tsubsting fails.
7517
7518 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7519
7520         * spew.c (frob_id): New static function.
7521         (frob_opname): Use it.
7522         (yylex): Use it.
7523
7524 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
7525
7526         * decl.c (lang_mark_false_label_stack): Remove.
7527         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
7528
7529 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
7530
7531         * gxxint.texi: Use @email for formatting email addresses.
7532
7533 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
7534
7535         * error.c: Remove direct obstack manipulation.  Replace with
7536         output_buffer-based formatting.  Adjust calls to removed macros.
7537         (obstack_chunk_alloc, obstack_chunk_free): Remove.
7538         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
7539         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
7540
7541 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
7542
7543         * ir.texi: Move to ../c-tree.texi.
7544
7545 2000-09-20  Jason Merrill  <jason@redhat.com>
7546
7547         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
7548
7549 2000-09-21  Andreas Jaeger  <aj@suse.de>
7550
7551         * errfn.c: Move declaration of cp_printer and cp_printers to ...
7552         * cp-tree.h: ... here.
7553
7554         * error.c: Remove declaration of cp_printer.
7555
7556 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
7557
7558         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
7559
7560 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
7561
7562         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
7563         users.
7564
7565 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
7566
7567         * decl.c (start_function): Robustify.
7568
7569 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7570
7571         * cp-tree.h (check_function_format): Accept a `status' parameter.
7572
7573         * call.c, typeck.c: Updates calls to `check_function_format'.
7574
7575 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
7576
7577         * decl2.c (handle_class_head): Always push some scope even
7578         in the error case.
7579
7580 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
7581
7582         * cp-tree.h (struct cp_language_function): Remove
7583         x_scope_stmt_stack and name_declared.
7584         (current_scope_stmt_stack): Remove.
7585         (function_name_declared_p): New macro.
7586         (struct lang_decl_flags): Use c_lang_decl as a base class.
7587         (context): Remove.
7588         (struct lang_decl): Replace saved_tree with context.
7589         (DECL_FRIEND_CONTEXT): Adjust accordingly.
7590         (SET_DECL_FRIEND_CONTEXT): Likewise.
7591         (DECL_VIRTUAL_CONTEXT): Likewise.
7592         (DECL_SAVED_TREE): Remove.
7593         (C_DECLARED_LABEL_FLAG): Likewise.
7594         (cplus_expand_expr_stmt): Don't declare.
7595         (add_decl_stmt): Likewise.
7596         (add_scope_stmt): Likewise.
7597         * decl.c (mark_stmt_tree): Remove.
7598         (case_compare): Likewise.
7599         (finish_case_label): Use c_add_case_label.
7600         (init_decl_processing): Set more language-specific hooks.
7601         (build_enumerator): Fix typo in comment.
7602         (cplus_expand_expr_stmt): Remove.
7603         (mark_lang_function): Use mark_c_language_function.
7604         (lang_mark_tree): Use c_mark_lang_decl.
7605         * decl2.c: Change order of inclusion.
7606         * except.c: Likewise.
7607         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
7608         back on c_expand_expr.
7609         * friend.c: Include expr.h.
7610         * init.c: Change order of inclusion.
7611         * Makefile.in: Update dependencies.
7612         * lex.h (free_lang_decl_chain): Remove.
7613         * optimize.c (maybe_clone_body): Use function_name_declared_p.
7614         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
7615         it doesn't exist.
7616         (instantiate_decl): Use function_name_declared_p.
7617         * semantics.c (lang_expand_expr_stmt): Remove.
7618         (set_current_function_name_declared): Likewise.
7619         (current_function_name_declared): Likewise.
7620         (begin_compound_stmt): Use function_name_declared_p.
7621         (add_decl_stmt): Remove.
7622         (setup_vtbl_ptr): Use function_name_declared_p.
7623         (add_scope_stmt): Remove.
7624         (current_scope_stmt_stack): New function.
7625         (cp_expand_stmt): Don't handle SCOPE_STMTs.
7626         (expand_body): Use function_name_declared_p.
7627         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
7628         * typeck.c: Change order of includes.
7629         (convert_sequence): Remove.
7630
7631 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
7632
7633         * lex.c (reswords): Add _Complex.
7634
7635 Thu Sep 14 12:10:45 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7636
7637         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
7638
7639 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
7640
7641         * init.c (begin_init_stmts): Don't use // comments.
7642
7643 2000-09-12  Jason Merrill  <jason@redhat.com>
7644
7645         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
7646         all non-extern arrays.
7647
7648         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
7649         typenames, too.  Downgrade complaint to pedwarn.
7650         (xref_tag): Warn about surprising behavior of 'friend struct T'.
7651         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
7652         'class This::Inherited'.
7653
7654 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
7655
7656         * decl.c (finish_case_label): Given the LABEL_DECL a
7657         DECL_CONTEXT.
7658
7659 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
7660
7661         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
7662         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
7663         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
7664         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
7665         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
7666         New macros.
7667         (sorry_for_unsupported_tree, print_scope_operator,
7668         print_left_paren, print_right_paren, print_left_bracket,
7669         print_right_bracket, print_whitespace): Likewise.
7670         (aggr_variety): Rename to class_key_or_enum.
7671         (print_type): Rename to print_type_id.
7672         (print_type_specifier_seq, print_simple_type_specifier,
7673         print_elaborated_type_specifier,
7674         print_rest_of_abstract_declarator,
7675         print_parameter_declaration_clause, print_exception_specification,
7676         print_nested_name_specifier, print_template_id,
7677         typedef_original_name,  print_template_argument_list_start,
7678         print_template_argument_list_end): New functions.
7679
7680 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
7681
7682         * ir.texi: Add more documentation.
7683
7684 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
7685
7686         * cp-tree.h (struct saved_scope): Remove x_function_parms.
7687         (current_function_parms): Don't define.
7688         (struct cp_language_function): Remove parms_stored.
7689         (current_function_just_assigned_this): Don't define.
7690         (current_function_parms_stored): Likewise.
7691         (static_ctors): Declare.
7692         (static_dtors): Likewise.
7693         (SF_EXPAND): Don't define.
7694         (expand_start_early_try_stmts): Remove declaration.
7695         (store_parm_decls): Likewise.
7696         * decl.c (static_ctors): Don't declare.
7697         (static_dtors): Likewise.
7698         (struct binding_level): Remove this_block.
7699         (poplevel): Remove dead code.
7700         (set_block): Likewise.
7701         (mark_binding_level): Don't mark this_block.
7702         (mark_saved_scope): Don't mark x_function_parms.
7703         (init_decl_processing): Don't add current_function_parms as a GC
7704         root.
7705         (check_function_type): Change prototype.
7706         (start_function): Remove RTL-generation code.
7707         (expand_start_early_try_stmts): Remove.
7708         (store_parm_decls): Give it internal linkage.  Remove
7709         RTL-generation code.
7710         (finish_function): Remove RTL-generation code.
7711         * decl2.c (static_ctors): Fix formatting.
7712         (static_dtors): Likewise.
7713         * method.c (use_thunk): Don't call store_parm_decls.
7714         (synthesize_method): Likewise.
7715         * optimize.c (maybe_clone_body): Likewise.
7716         * parse.y (fn.def2): Likewise.
7717         (.set_base_init): Likewise.
7718         (nodecls): Likewise.
7719         * pt.c (instantiate_decl): Likewise.
7720         * rtti.c (synthesize_tinfo_fn): Likewise.
7721         * semantics.c (genrtl_try_block): Simplify.
7722         (expand_body): Use genrtl_start_function and
7723         genrtl_finish_function.
7724         (genrtl_start_function): New function.
7725         (genrtl_finish_function): Likewise.
7726
7727 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7728
7729         * error.c (cp_tree_printer, case 'P'): Append break.
7730
7731 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7732
7733         * cp-tree.h (frob_opname): Declare.
7734         * parse.y (saved_scopes): New static variable.
7735         (cp_parse_init): Adjust.
7736         (do_id): If lastiddecl is NULL, do do_identifier.
7737         (operator): Save scope information.
7738         (unoperator): New reduction. Restore scope information.
7739         (operator_name): Append unoperator. Call frob_opname.
7740         * spew.c (frob_opname): Define.
7741
7742 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
7743
7744         * decl.c, rtti.c: Include defaults.h if not already included.
7745         Don't define the *_TYPE_SIZE macros.
7746
7747 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
7748
7749         * cp-tree.h (push_switch): Change prototype.
7750         (check_cp_case_value): Remove declaration.
7751         (decl_constant_value): Likewise.
7752         * decl.c (struct cp_switch): Add switch_stmt and cases.
7753         (case_compare): New function.
7754         (push_switch): Set switch_stmt.  Initialize cases.
7755         (pop_switch): Clean up cases.
7756         (define_case_label): Rename to ...
7757         (finish_case_label): ... this.  Do semantic analysis for case
7758         labels here.
7759         (start_function): Correct comment.
7760         * decl2.c (check_cp_case_value): Remove.
7761         * expr.c (do_case): Remove.
7762         * pt.c (tsubst_expr): Adjust call to finish_case_label.
7763         * semantics.c (genrtl_do_poplevel): Remove declaration.
7764         (RECHAIN_STMTS): Remove.
7765         (finish_break_stmt): Use build_break_stmt.
7766         (finish_continue_stmt): Use build_continue_stmt.
7767         (finish_switch_cond): Adjust condition here, rater than in
7768         c_expand_start_case.
7769         (finish_case_label): Remove.
7770         * typeck.c (c_expand_return): Remove.
7771         (c_expand_start_case): Likewise.
7772
7773 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
7774
7775         * ir.texi: Document type nodes.
7776
7777 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7778
7779         * cp-tree.h (init_cp_semantics): Declare.
7780         (genrtl_try_block): Don't declare.
7781         (genrtl_handler): Likewise.
7782         (genrtl_catch_block): Likewise.
7783         (genrtl_ctor_stmt): Likewise.
7784         (genrtl_subobject): Likewise.
7785         (genrtl_do_poplevel): Likewise.
7786         (genrtl_named_return_value): Likewise.
7787         * lex.c (init_parse): Call init_cp_semantics.
7788         * semantics.c (genrtl_try_block): Give it internal linkage.
7789         (genrtl_handler): Likewise.
7790         (genrtl_catch_block): Likewise.
7791         (genrtl_ctor_stmt): Likewise.
7792         (genrtl_subobject): Likewise.
7793         (genrtl_do_poplevel): Likewise.
7794         (genrtl_named_return_value): Likewise.
7795         (lang_expand_stmt): Rename to ...
7796         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
7797         (init_cp_semantics): Define.
7798
7799         * decl.c (initialize_local_var): Remove RTL-generating code.
7800         * semantics.c (genrtl_try_block): Fix formatting.
7801
7802         Move statement-tree facilities from C++ to C front-end.
7803         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
7804         (void_zero_node): Remove.
7805         (stmt_tree): Likewise.
7806         (scope_chain): Adjust.
7807         (language_function): Rename to cp_language_function.
7808         (cp_function_chain): Adjust.
7809         (current_stmt_tree): Remove.
7810         (last_tree): Likewise.
7811         (last_expr_type): Likewise.
7812         (struct lang_decl): Adjust.
7813         (STMT_IS_FULL_EXPR_P): Remove.
7814         (add_tree): Remove.
7815         (begin_stmt_tree): Likewise.
7816         (finish_stmt_tree): Likewise.
7817         (walk_tree_fn): Likewise.
7818         (walk_stmt_tree): Likewise.
7819         * class.c (finish_struct): Replace use of add_tree with add_stmt.
7820         * decl.c (mark_stmt_tree): Adjust type.
7821         (init_decl_processing): Don't build void_zero_node.
7822         (initialize_local_var): Adjust usage of current_stmt_tree.
7823         (finish_enum): Use add_stmt, not add_tree.
7824         (save_function_data): Adjust use of language_function.
7825         (finish_constructor_body): Use add_stmt, not add_tree.
7826         (finish_destructor_body): Likewise.
7827         (push_cp_function_context): Adjust use of language_function.
7828         (pop_cp_function_context): Likewise.
7829         (mark_lang_function): Likewise.
7830         (mark_cp_function_context): Likewise.
7831         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
7832         (build_vec_init): Likewise.
7833         * semantics.c (SET_LAST_STMT): Remove.
7834         (RECHAIN_STMTS): Don't use it.
7835         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
7836         (current_stmt_tree): Define.
7837         (add_tree): Remove.
7838         (finish_goto_stmt): Use add_stmt, not add_tree.
7839         (finish_expr_stmt): Likewise.
7840         (begin_if_stmt): Likewise.
7841         (finish_then_clause): Likewise.
7842         (begin_while_stmt): Likewise.
7843         (begin_do_stmt): Likewise.
7844         (finish_return_stmt): Likewise.
7845         (begin_for_stmt): Likewise.
7846         (finish_break_stmt): Likewise.
7847         (finish_continue_stmt): Likewise.
7848         (begin_switch_stmt): Likewise.
7849         (finish_case_label): Likewise.
7850         (begin_try_block): Likewise.
7851         (begin_function_try_block): Likewise.
7852         (begin_handler): Likewise.
7853         (begin_catch_block): Likewise.
7854         (begin_compound_stmt): Likewise.
7855         (begin_asm_stmt): Likewise.
7856         (finish_asm_stmt): Likewise.
7857         (finish_label_stmt): Likewise.
7858         (add_decl_stmt): Likewise.
7859         (finish_subobject): Likewise.
7860         (finish_decl_cleanup): Likewise.
7861         (finish_named_return_value): Likewise.
7862         (setup_vtbl_ptr): Likewise.
7863         (add_scope_stmt): Likewise.
7864         (finish_stmt_expr): Likewise.
7865         (prune_unused_decls): Remove.
7866         (begin_stmt_tree): Likewise.
7867         (finish_stmt_tree): Likewise.
7868         (prep_stmt): Adjust use of current_stmt_tree.
7869         (lang_expand_stmt): Likewise.
7870         * tree.c (statement_code_p): Remove.
7871         (cp_statement_code_p): New function.
7872         (walk_stmt_tree): Remove.
7873         (init_tree): Set lang_statement_code_p.
7874
7875 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
7876
7877         Integrated preprocessor.
7878
7879         * Make-lang.in, Makefile.in: Remove all references to input.c,
7880         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
7881         * gxx.gperf, hash.h, input.c: Delete.
7882         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
7883         initialized properly.
7884
7885         * class.c (fixup_pending_inline): Take a tree, not a
7886         struct pending_inline *.  All callers changed.
7887         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
7888         RID_PROTECTED entries in ridpointers[] array here.
7889         * decl.c (duplicate_decls): Do not refer to struct
7890         pending_inline.
7891         (record_builtin_type, init_decl_processing): Use RID_MAX not
7892         CP_RID_MAX.
7893         (grokdeclarator): Use C_IS_RESERVED_WORD.
7894         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
7895         cpplib.
7896         (grok_x_components): Do not inspect pending_inlines chain.
7897
7898         * cp-tree.h (struct lang_identifier): Add rid_code entry.
7899         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
7900         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
7901         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
7902         TIME_IDENTIFIER_FILEINFO): Kill.
7903         Update prototypes.
7904         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
7905         single 32-bit word.
7906         * parse.y: Call do_pending_inlines unconditionally.
7907         reinit_parse_for_method is now snarf_method.  fn.defpen is no
7908         longer necessary.  Remove unnecessary <itype> annotation on
7909         SCOPE.  Do not refer to end_of_file or struct pending_inline.
7910         * semantics.c (begin_inline_definitions): Call
7911         do_pending_inlines unconditionally.
7912
7913         * lex.c: Remove all code now shared with C front end.
7914         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
7915         into the get_identifier table.  Rewrite pragma handling to
7916         work with the registry.  Move code to save tokens for later
7917         processing to spew.c.
7918
7919         * spew.c: Rewrite everything in terms of token streams instead
7920         of text.  Move routines here from lex.c / input.c as
7921         appropriate.  GC-mark trees hanging off the pending inlines
7922         chain.
7923
7924 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7925
7926         * NEWS: Mention that the named return value extension has been
7927         deprecated.
7928         * cp-tree.h (original_result_rtx): Define.
7929         (TREE_REFERENCE_EXPR): Remove.
7930         (DECL_VPARENT): Likewise.
7931         (pushdecl_nonclass_level): Likewise.
7932         (store_return_init): Likewise.
7933         (reinit_lang_specific): Likewise.
7934         (genrtl_named_return_value): Change prototype.
7935         * decl.c (original_result_rtx): Remove.
7936         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
7937         Do not generate RTL for local variables here.
7938         (store_return_init): Remove.
7939         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
7940         store_return_init.
7941         (finish_named_return_value): Adjust accordingly.  Warn that this
7942         extension is deprecated.
7943         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
7944
7945 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7946
7947         * pt.c (type_unification_real): Replace switch with if.
7948         (unify): Tsubst non-type parms before comparing.
7949
7950 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7951
7952         * error.c (dump_typename): New function, broken out of ...
7953         (dump_type): ... here. Use it.
7954         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
7955
7956 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7957
7958         * init.c (build_offset_ref): Deal with namespace scoped
7959         TEMPLATE_ID_EXPRs.
7960
7961 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7962
7963         * class.c (resolve_address_of_overloaded_function): Add
7964         explanation message.
7965         * decl.c (define_case_label): Reformat explanation.
7966         * decl2.c (finish_static_data_member_decl): Likewise.
7967         (grokfield): Likewise.
7968         * friend.c (do_friend): Likewise.
7969
7970 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
7971
7972         * tree.c (walk_tree): Expose tail recursion.
7973         (walk_stmt_tree): New function.
7974         * cp-tree.h: Prototype walk_stmt_tree.
7975         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
7976         the BLOCKs directly.  If a BLOCK has no variables after
7977         pruning, discard it.
7978         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
7979         restore the line number.
7980
7981 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
7982
7983         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
7984         (pt.o): Remove dependency on HTAB_H.
7985         * cp-tree.h: Include hashtab.h.
7986         (walk_tree): Change prototype.
7987         (walk_tree_without_duplicates): New function.
7988         * decl.c (check_default_argument): Use it.
7989         * optimize.c (remap_decl): Adjust calls to walk_tree.
7990         (copy_body): Likewise.
7991         (expand_calls_inline): Likewise.
7992         (calls_setjmp_p): Use walk_tree_without_duplicates.
7993         * pt.c: Don't include hashtab.h.
7994         (for_each_template_parm): Use walk_tree_without_duplicates.
7995         * semantics.c (finish-stmt_tree): Likewise.
7996         (expand_body): Likewise.
7997         * tree.c (walk_tree): Add additional parameter.
7998         (walk_tree_without_duplicates): New function.
7999         (count_trees): Use it.
8000         (verify_stmt_tree): Adjust call to walk_tree.
8001         (find_tree): Use walk_tree_without_duplicates.
8002         (no_linkage_check): Likewise.
8003         (break_out_target_exprs): Adjust call to walk_tree.
8004         (cp_unsave): Likewise.
8005
8006 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8007
8008         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
8009         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
8010         * cp-tree.h (TYPE_BINFO): Adjust comment.
8011         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
8012         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
8013         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
8014         (TYPE_TEMPLATE_INFO): Likewise.
8015         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
8016         * class.c (push_nested_class): Likewise.
8017         * decl.c (lookup_name_real): Likewise.
8018         (grokdeclarator): Likewise.
8019         (grok_op_properties): Likewise.
8020         (xref_tag): Likewise.
8021         (xref_basetypes): Likewise.
8022         * decl2.c (constructor_name_full): Likewise.
8023         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
8024         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
8025         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
8026         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8027         (dump_type_suffix): Likewise.
8028         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
8029         instead.
8030         (get_aggr_from_typedef): Likewise.
8031         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
8032         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8033         (write_template_parm): Likewise.
8034         (write_template_template_parm): Check tree code instead of
8035         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
8036         * method.c (build_overload_nested_name): Add
8037         BOUND_TEMPLATE_TEMPLATE_PARM.
8038         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
8039         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8040         * pt.c (convert_template_argument): Check tree code instead of
8041         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
8042         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
8043         (for_each_template_parm): Adjust comment.
8044         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
8045         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8046         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
8047         template_args_equal to compare template template parameter cases.
8048         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8049         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
8050         instead.
8051         * tree.c (copy_template_template_parm): Decide whether to create
8052         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
8053         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
8054         (copy_tree_r): Likewise.
8055         * typeck.c (comptypes): Likewise.  Check tree code instead of
8056         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
8057
8058 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
8059
8060         * decl.c (finish_function): Move the code for handling functions
8061         marked with the constructor and destructor attributes inside the
8062         expand_p block.
8063
8064 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
8065
8066         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
8067
8068 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
8069
8070         * pt.c (lookup_template_class): Remove abort.
8071         * tree.c (get_type_decl): Allow error_mark_node.
8072
8073 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
8074
8075         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
8076         TEMPLATE_ID_EXPRs.
8077
8078 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
8079
8080         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
8081         new ABI mangling.
8082
8083 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
8084
8085         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
8086         union tag mismatch error reporting.
8087
8088 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
8089
8090         * call.c (build_scoped_method_call): Check it is not a namespace.
8091
8092 2000-08-30  Jason Merrill  <jason@redhat.com>
8093
8094         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
8095
8096         * tree.c (bot_manip): Check TREE_CONSTANT rather than
8097         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
8098         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
8099
8100         * decl.c (start_function): Always call make_function_rtl.
8101
8102 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
8103
8104         * semantics.c (prune_unused_decls): New function.
8105         (finish_stmt_tree): Call it via walk_tree.
8106
8107 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
8108
8109         * class.c (build_secondary_vtable): Constify a char *.
8110         * decl.c (init_decl_processing): Initialize function_id_node,
8111         pretty_function_id_node, and func_id_node.
8112         * input.c (struct input_source): Constify 'str'.
8113         (feed_input): Constify first argument.
8114         * mangle.c (write_identifier): Constify argument.
8115         * pt.c (mangle_class_name_for_template): Constify argument.
8116
8117 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
8118
8119         * typeck.c (mark_addressable): Remove code that pokes around in
8120         RTL.
8121
8122 2000-08-28  Jason Merrill  <jason@redhat.com>
8123
8124         * lex.c (file_name_nondirectory): Move to toplev.c.
8125
8126         * cp-tree.h (LOCAL_CLASS_P): New macro.
8127         * class.c (finish_struct_1): Use it.
8128
8129 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
8130
8131         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
8132         (write_encoding): Pass another argument to write_name.
8133         (write_name): Add ignore_local_scope parameter.  Fix handling of
8134         local names.
8135         (write_nested_name): Use write_unqualified_name.
8136         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
8137         (write_template_prefix): Use write_unqualified_name.
8138         (write_component): Remove.
8139         (write_local_name): Add parameter.  Use direct local entity to
8140         discriminator calculation.
8141         (write_class_enum_type): Pass another argument to write_name.
8142         (write_template_template_arg): Likewise.
8143         (make_guard_variable): Likewise.
8144
8145 2000-08-27  Jason Merrill  <jason@redhat.com>
8146
8147         * decl.c (pushdecl): Matching decls for local externs are found in
8148         the current level.  Propagate linkage information from previous
8149         declarations.
8150
8151 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
8152
8153         * ir.texi (Expressions): Fix typo.
8154
8155 2000-08-25  Greg McGary  <greg@mcgary.org>
8156
8157         * tree.c (init_tree): Use ARRAY_SIZE.
8158
8159 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
8160
8161         * error.c (cp_tree_printer): Rework.
8162
8163 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
8164
8165         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
8166         dyn-string.o.
8167         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
8168         (cp-demangle.o): Remove target.
8169         (dyn-string.o): Likewise.
8170
8171         * decl.c (grokfndecl): Require that `main' return an `int'.
8172         * mangle.c (write_encoding): Don't mangle return types for
8173         conversion functions.
8174
8175 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
8176
8177         * error.c (tree_formatting_info): New data type.
8178         (tree_being_formatted): New macro.
8179         (tree_formatting_flags): Likewise.
8180         (put_whitespace): Likewise.
8181         (print_tree_identifier): Likewise.
8182         (print_identifier): Likewise.
8183         (cp_tree_printer, print_function_argument_list, print_declaration,
8184         print_expression, print_function_declaration,
8185         print_function_parameter, print_type, print_cv_qualifier): New
8186         functions.
8187         (init_error): Initialize lang_printer.
8188
8189 2000-08-24  Jason Merrill  <jason@redhat.com>
8190
8191         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
8192         adjustment necessary.
8193
8194 2000-08-24  Greg McGary  <greg@mcgary.org>
8195
8196         * cp-tree.h (MAIN_NAME_P): Remove macro.
8197
8198 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
8199
8200         * error.c (print_instantiation_context): Don't forget to flush the
8201         buffer.
8202
8203 2000-08-23  Jason Merrill  <jason@redhat.com>
8204
8205         * typeck.c (build_ptrmemfunc): Save the input pmf.
8206
8207         * method.c (process_modifiers): Use same_type_p.
8208
8209 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
8210
8211         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
8212         * mangle.c (write_function_type): Change prototype.
8213         (write_encoding): Don't mangle return types for
8214         constructors or destructors.
8215         (write_type): Adjust call to write_function_type.
8216         * pt.c (instantiate_template): Instantiate alternate entry points
8217         when instantiating the main function.
8218
8219 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
8220
8221         * error.c (cp_print_error_function): Don't use embedded '\n' in
8222         output_printf.
8223
8224 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
8225
8226         * decl.c (init_decl_processing): Remove bogus initialization.
8227         * error.c (lang_print_error_function): Restore here.
8228         (init_error): Initialize print_error_function.
8229
8230 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
8231
8232         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
8233
8234 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
8235
8236         * Makefile.in (error.o): Depends on diagnostic.h
8237
8238         * cp-tree.h (problematic_instantiation_changed,
8239         record_last_problematic_instantiation, current_instantiation,
8240         print_instantiation_context): Declare.
8241         (maybe_print_template_context): Remove.
8242
8243         * decl.c (init_decl_processing): Set print_error_function to NULL.
8244         (lang_print_error_function): Remove, since we're using a new
8245         machinery.
8246
8247         * error.c: #include diagnostic.h
8248         (function_category): New function.
8249         (cp_diagnostic_starter): Likewise.
8250         (cp_diagnostic_finalizer): Likewise.
8251         (cp_print_error_function): Likewise.
8252         (maybe_print_instantiation_context): Likewise.
8253         (print_instantiation_full_context): Likewise.
8254         (print_instantiation_partial_context): Likewise.
8255         (print_instantiation_context): Define.
8256         (init_error): Initialize diagnostic pager and finalizer.
8257
8258         * pt.c (problematic_instantiation_changed): Define.
8259         (record_last_problematic_instantiation): Likewise.
8260         (current_instantiation): Likewise.
8261         (maybe_print_template_context): Remove.
8262         (print_template_context): Likewise.
8263         (current_tinst_level): Make static to reflect Brendan Kehoe's
8264         change of 1995-04-13.
8265         (push_tinst_level): Call print_instantiation_context.
8266
8267 2000-08-21  Nix  <nix@esperi.demon.co.uk>
8268
8269         * lang-specs.h: Do not process -o or run the assembler if
8270         -fsyntax-only.
8271
8272 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
8273
8274         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
8275         variables.
8276         * decl2.c (lang_decode_option): Disable gettext attributes for
8277         -ansi.
8278
8279 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
8280
8281         * lex.c (lang_init_options): Default diagnostic message maximum
8282         length to 80, when line-wrapping.
8283
8284 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
8285
8286         * class.c (build_vtbl_initializer): Clear the entire
8287         vtbl_init_data.  Start keeping track of the functions for which we
8288         have created vcall offsets here.
8289         (dfs_build_vcall_offset_vtbl_entries): Remove.
8290         (build_vcall_offset_vtbl_entries): Reimplement.
8291         (add_vcall_offset_vtbl_entries_r): New function.
8292         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
8293         computing when vcall offsets are necessary.
8294
8295 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
8296
8297         * decl.c (member_function_or_else): Use cp_error ... %T.
8298         (grokdeclarator): Likewise.
8299         (start_method): Likewise.
8300         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
8301
8302 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
8303
8304         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
8305         TYPE_DECLs.
8306
8307 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
8308
8309         * cp-tree.h (PTRMEM_OK_P): New macro.
8310         (itf_ptrmem_ok): New enumeration value.
8311         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
8312         argument. Diagnose implicit pointer to member.
8313         (instantiate_type): Don't diagnose implicit pointer to member
8314         here. Pass itf_ptrmem_ok if ok. Adjust calls to
8315         resolve_address_of_overloaded_function.
8316         * init.c (build_offset_ref): Set PTRMEM_OK_P.
8317         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
8318         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
8319         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
8320         (build_unary_op): Deal with single non-static member in
8321         microsoft-land.
8322
8323 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
8324
8325         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
8326
8327 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
8328
8329         * cp-tree.h (enum_name_string): Remove prototype.
8330         (report_case_error): Remove prototype.
8331         * cp/typeck2.c (enum_name_string): Remove.
8332         (report_case_error): Remove.
8333         * error.c (dump_expr): Deal with enum values directly.
8334         Correctly negate integer constant.
8335
8336 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
8337
8338         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
8339         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
8340         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
8341         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
8342         (__cxa_vec_new): Use __cxa_vec_new2.
8343         (__cxa_vec_delete): Use __cxa_vec_delete2.
8344
8345 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
8346
8347         * vec.cc (__cxa_vec_new): Set "C" linkage.
8348         (__cxa_vec_ctor): Likewise.
8349         (__cxa_vec_cctor): Likewise.
8350         (__cxa_vec_dtor): Likewise.
8351         (__cxa_vec_delete): Likewise.
8352         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
8353         (__cxa_vec_ctor): Likewise.
8354         (__cxa_vec_cctor): Likewise.
8355         (__cxa_vec_dtor): Likewise.
8356         (__cxa_vec_delete): Likewise.
8357
8358 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
8359
8360         * class.c (instantiate_type): Reinstate local variable
8361         deleted in previous change.
8362
8363         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
8364         itf_no_attributes.
8365
8366 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
8367
8368         * cp-tree.h (instantiate_type_flags): New enumeration.
8369         (instantiate_type): Change parameter.
8370         * class.c (instantiate_type): Adjust prototype. Adjust.
8371         * call.c (standard_conversion): Adjust instantiate_type call.
8372         (reference_binding): Likewise.
8373         (build_op_delete_call): Likewise.
8374         (convert_like_real): Likewise.
8375         * cvt.c (cp_convert_to_pointer): Likewise.
8376         (convert_to_reference): Likewise.
8377         * pt.c (convert_nontype_argument): Likewise.
8378         * typeck.c (build_binary_op): Likewise.
8379         (build_ptrmemfunc): Likewise.
8380         (convert_for_assignment): Likewise.
8381
8382 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
8383
8384         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
8385         (current_aggr): Define.
8386         * decl.c (grokdeclarator): Make sure a friend class is an
8387         elaborated type specifier.
8388         * parse.y (current_aggr): Remove static definition.
8389         (cp_parse_init): Adjust.
8390         (structsp): Clear and restore current_aggr.
8391         (component_decl_list): Clear current_aggr.
8392
8393         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
8394         aggregate tag on the typename's context.
8395
8396         * pt.c (tsubst_friend_class): Return error_mark_node, if
8397         parms becomes NULL.
8398         (instantiate_class_template): Ignore error_mark_node friend types.
8399
8400 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
8401
8402         * cvt.c (warn_ref_binding): New static function, broken out of ...
8403         (convert_to_reference): ... here. Use it.
8404
8405 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
8406
8407         * parse.y (template_arg): Add rule for template qualified with
8408         global scope.
8409
8410 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
8411
8412         * decl2.c (add_function): Reorganize.
8413         (arg_assoc): Do not consider function template decls.
8414
8415 2000-08-11  Jason Merrill  <jason@redhat.com>
8416
8417         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
8418         looking inside.
8419
8420 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8421
8422         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
8423         (lookup_nested_tag): Likewise.
8424
8425         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
8426         can be produced.
8427
8428 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8429
8430         * parse.y (named_complex_class_head_sans_basetype): Remove
8431         always true if.
8432
8433 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8434
8435         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
8436         explicit TEMPLATE_ID_EXPR args.
8437         (build_expr_from_tree, case CALL_EXPR): Likewise.
8438
8439 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8440
8441         * decl.c (check_tag_decl): Diagnose typename's which don't
8442         declare anything.
8443
8444 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
8445
8446         * init.c (build_aggr_init): Reject bogus array initializers
8447         early.
8448
8449 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
8450
8451         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
8452         runtime.
8453         * cp/tinfo.cc (__dynamic_cast): Likewise.
8454         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
8455
8456 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
8457
8458         * cvt.c (convert_to_pointer_force): Fix error message when
8459         attempting to cast from ambiguous base.
8460
8461 2000-08-08  Jason Merrill  <jason@redhat.com>
8462
8463         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
8464         (tsubst_template_arg_vector): Likewise.
8465
8466         * decl2.c (build_anon_union_vars): Choose the largest field; don't
8467         assume that one will be as large as the union.
8468
8469 2000-08-07  Kazu Hirata  <kazu@hxi.com>
8470
8471         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
8472         * decl.c (pop_labels): Likewise.
8473
8474 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
8475
8476         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
8477         specifications.
8478         (__pointer_to_member_type_info): Likewise.
8479         (__base_class_info): Likewise.
8480         (__class_type_info): Likewise.
8481         (__si_class_type_info): Likewise.
8482         (__vmi_class_type_info): Likewise.
8483         * tinfo.cc (__si_class_type_info::__do_find_public_src):
8484         Changed member names to match specifications.
8485         (__vmi_class_type_info::__do_find_public_src): Likewise.
8486         (__si_class_type_info::__do_dyncast): Likewise.
8487         (__vmi_class_type_info::__do_dyncast): Likewise.
8488         (__si_class_type_info::__do_upcast): Likewise.
8489         (__vmi_class_type_info::__do_upcast): Likewise.
8490         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
8491         (__pbase_type_info::__pointer_catch): Likewise.
8492         (__pointer_type_info::__pointer_catch): Likewise.
8493         (__pointer_to_member_type_info::__pointer_catch): Likewise.
8494
8495 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
8496
8497         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
8498         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
8499         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
8500
8501 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
8502
8503         * cp-tree.h (add_method): Change prototype.
8504         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
8505         Don't double the size of the method vector in the error case.
8506         (handle_using_decl): Adjust call to add_method.
8507         (add_implicitly_declared_members): Likewise.
8508         (clone_function_decl): Likewise.
8509         * decl2.c (check_classfn): Likewise.
8510         * semantics.c (finish_member_declaration): Likewise.
8511
8512 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
8513
8514         * decl.c (flag_isoc94): New variable.
8515
8516 2000-08-02  Jason Merrill  <jason@redhat.com>
8517
8518         * pt.c (do_type_instantiation): Add complain parm; don't complain
8519         if called recursively.
8520         * cp-tree.h, parse.y: Adjust.
8521
8522 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
8523
8524         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
8525         -Wno-strict-prototypes.
8526
8527         * g++spec.c: Adjust type of second argument to
8528         lang_specific_driver, and update code as necessary.
8529
8530         * cp-tree.h: Don't prototype min_precision here.
8531         (my_friendly_assert): Cast expression to void.
8532         * semantics.c (do_poplevel): Initialize scope_stmts.
8533
8534 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
8535
8536         * cp-tree.h (DECL_NEEDED_P): Tweak.
8537
8538 2000-07-28  Jason Merrill  <jason@redhat.com>
8539
8540         * lang-specs.h: Use %i in rule for .ii files.
8541
8542 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
8543
8544         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
8545
8546 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
8547
8548         Allow indirect primary bases.
8549         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
8550         primary_base.
8551         (CLASSTYPE_VFIELD_PARENT): Remove.
8552         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
8553         (BINFO_PRIMARY_BINFO): Remove.
8554         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
8555         (BINFO_VBASE_PRIMARY_P): Likewise.
8556         (BINFO_PRIMARY_BASE_OF): New macro.
8557         (BINFO_INDIRECT_PRIMARY_P): Likewise.
8558         (get_primary_binfo): New function.
8559         * decl.c (lang_mark_tree): Make lang_type::primary_base.
8560         * class.c (vcall_offset_data_s): Rename to ...
8561         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
8562         and add ctor_vtbl_p.
8563         (get_derived_offset): Use get_primary_binfo.
8564         (dfs_mark_primary_bases): Adjust handling of virtual primary
8565         bases.
8566         (mark_primary_bases): Likewise.
8567         (set_primary_base): Take a binfo, not an integer, as a
8568         representation of the primary base.
8569         (indirect_primary_base_p): Remove.
8570         (determine_primary_base): Adjust for indirect primary bases.
8571         (dfs_find_final_overrider): Fix typo in coment.
8572         (update_vtable_entry_for_fn): Use get_primary_binfo.
8573         (layout_nonempty_base_or_field): Tweak.
8574         (build_base_fields): Adjust for new primary base semantics.
8575         (dfs_propagate_binfo_offsets): Remove.
8576         (propagate_binfo_offsets): Rewrite.
8577         (dfs_set_offset_for_shared_vbases): Remove.
8578         (layout_virtual_bases): Don't use it.
8579         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
8580         ABI.
8581         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
8582         CLASSTYPE_VFIELD_PARENT.
8583         (dfs_get_primary_binfo): New function.
8584         (get_primary_binfo): Likewise.
8585         (dump_class_hierarchy_r): Tweak printing of primary bases.
8586         (build_vtbl_initializer): Fix typo in comments.  Use
8587         vtbl_init_data.
8588         (build_vcall_and_vbase_vtbl_entries): Likewise.
8589         (build_vbaes_offset_vtbl_entries): Likewise.
8590         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
8591         BV_VCALL_INDEX to handle indirect primary bases.
8592         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
8593         (build_rtti_vtbl_entries): Likewise.
8594         * search.c (get_shared_vbase_if_not_primary): Tweak.
8595         (find_vbase_instance): Likewise.
8596         (binfo_for_vtable): Simplify.
8597         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
8598         (make_binfo): Make it have 11 entries.
8599
8600 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
8601
8602         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
8603         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
8604         ascertaining primaryness.
8605         (G): Remove template_args.
8606         (decl_is_template_id): New function.
8607         (write_encoding): Use decl_is_template_id.
8608         (write_name): Likewise.  Handle type_decls.  Get main variant of
8609         type decls.
8610         (write_nested_name): Likewise.
8611         (write_prefix): Likewise.
8612         (write_template_prefix): Likewise.
8613         (write_special_name_constructor): Remove defunct production from
8614         comment.
8615         (write_bare_function_type): Remove comment about absent parameter.
8616         (write_template_template_arg): Add missing grammar production to
8617         comment.
8618
8619 2000-07-27  Jason Merrill  <jason@redhat.com>
8620
8621         * decl.c (duplicate_decls): If common_type produces a non-typedef
8622         type for a typedef, just use the old type.
8623
8624 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
8625
8626         * cp-tree.h (function_depth): Declare.
8627         (verify_stmt_tree): Likewise.
8628         (find_tree): Likewise.
8629         * decl.c (function_depth): Give it external linkage.
8630         * optimize.c (optimize_function): Increment and decrement it.
8631         * tree.c (verify_stmt_tree_r): New function.
8632         (verify_stmt_tree): Likewise.
8633         (find_tree_r): Likewise.
8634         (find_tree): Likewise.
8635
8636 2000-07-27  Jason Merrill  <jason@redhat.com>
8637
8638         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
8639         TYPE_PTRMEMFUNC_P.
8640         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
8641
8642 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8643
8644         * decl.c (start_cleanup_fn): Mark the function as `inline'.
8645         * decl2.c (get_guard): Call cp_finish_decl, not
8646         rest_of_decl_compilation, for local guards.
8647         * lex.c (do_identifier): Remove unused variable.
8648
8649 Wed Jul 26 15:05:51 CEST 2000   Marc Espie <espie@cvs.openbsd.org>
8650
8651         * parse.y:  Add missing ';'.
8652
8653 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8654
8655         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
8656         of `extern "C++"'.
8657
8658 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8659
8660         Kill strict_prototype. Backwards compatibility only for
8661         non NO_IMPLICIT_EXTERN_C systems.
8662         * cp-tree.h (flag_strict_prototype): Remove.
8663         (strict_prototype): Remove.
8664         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8665         * decl.c (maybe_push_to_top_level): Adjust.
8666         (pop_from_top_level): Adjust.
8667         (decls_match): Only allow sloppy parm matching for ancient
8668         system headers.
8669         (init_decl_processing): Adjust.
8670         (grokdeclarator): Adjust.
8671         * decl2.c (flag_strict_prototype): Remove.
8672         (strict_prototype): Remove.
8673         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8674         (lang_f_options): Remove "strict-prototype".
8675         (unsupported-options): Add "strict-prototype".
8676         * lex.c (do_identifier): Adjust.
8677         (do_scoped_id): Adjust.
8678         * parse.y (empty_parms): Adjust.
8679         * class.c (push_lang_context): Adjust.
8680         (pop_lang_context): Adjust.
8681         * typeck.c (comp_target_parms): Adjust.
8682
8683 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8684
8685         * decl.c (poplevel): Deal with anonymous variables at for scope.
8686         (maybe_inject_for_scope_var): Likewise.
8687
8688 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
8689
8690         * decl.c: Remove all signal handling code, now done in toplev.c.
8691
8692 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
8693
8694         * decl.c (make_rtl_for_nonlocal_decl): Rework.
8695
8696         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
8697         correctly.
8698
8699 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
8700
8701         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
8702         Define my_friendly_assert and my_friendly_abort as macros
8703         which may call friendly_abort.  Prototype friendly abort, not
8704         my_friendly_abort or my_friendly_assert.
8705         * decl.c (signal_catch): Report the signal caught in the error
8706         message.  Call fatal directly.
8707         * typeck2.c (ack, my_friendly_assert): Delete.
8708         (my_friendly_abort): Rename to friendly_abort.  Expect file,
8709         line, and function parameters.  Report the abort code, then
8710         call fancy_abort.  Do not mask an abort if errors have
8711         already occurred.
8712
8713 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
8714
8715         * typeck.c (comp_target_parms): Remove obsolete parameter.
8716         (comp_target_types): Adjust.
8717
8718 2000-07-17  Jason Merrill  <jason@redhat.com>
8719
8720         * typeck.c (mark_addressable): Never set TREE_USED.
8721         * call.c (build_call): Don't abort on calls to library functions
8722         that have been declared normally.
8723
8724         * typeck.c (build_binary_op): Fix grammar in warning.
8725
8726         * exception.cc (__eh_free): Fix prototype.
8727
8728         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
8729
8730         * decl.c (pushdecl): Handle seeing an OVERLOAD in
8731         IDENTIFIER_NAMESPACE_VALUE.
8732
8733 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
8734
8735         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
8736         * method.c (use_thunk): Correct handling of vcall offsets.
8737
8738 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
8739
8740         * .cvsignore: parse.h and parse.c have no cp- prefix.
8741
8742 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
8743
8744         * .cvsignore: New file.
8745
8746 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
8747
8748         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
8749
8750 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
8751
8752         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
8753         * parse.c: Remove.
8754         * parse.h: Likewise.
8755
8756 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
8757
8758         * class.c (layout_class_type): Add pointers to virtual bases after
8759         base classes under the old ABI.
8760
8761 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
8762
8763         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
8764         (finish_continue_stmt): Likewise.
8765         (begin_for_stmt): Remove call to note_level_for_for.
8766         (finish_goto_stmt): Change call from build_min_nt
8767         to build_stmt.
8768         (finish_expr_stmt): Likewise.
8769         (begin_if_stmt): Likewise.
8770         (begin_while_stmt): Likewise.
8771         (finish_while_stmt): Likewise.
8772         (finish_return_stmt): Likewise.
8773         (begin_for_stmt): Likewise.
8774         (finish_for_stmt): Likewise.
8775         (finish_break_stmt): Likewise.
8776         (begin_switch_stmt): Likewise.
8777         (finish_case_label): Likewise.
8778         (genrtl_try_block): Likewise.
8779         (begin_try_block): Likewise.
8780         (begin_handler): Likewise.
8781         (begin_compound_stmt): Likewise.
8782         (finish_asm_stmt): Likewise.
8783         (finish_label_stmt): Likewise.
8784         (add_decl_stmt): Likewise.
8785         (finish_subobject): Likewise.
8786         (finish_decl_cleanup): Likewise.
8787         (finish_named_return_value): Likewise.
8788         (setup_vtbl_ptr): Likewise.
8789         (add_scope_stmt): Likewise.
8790         * decl.c (finish_constructor_body): Likewise.
8791         (finish_destructor_body): Likewise.
8792         * optimize.c (copy_body_r): Likewise.
8793         (initialize_inlined_parameters): Likewise.
8794         (declare_return_variable): Likewise.
8795         (expand_call_inline): Likewise.
8796
8797 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
8798
8799         * semantics.c (expand_body): Sync interface information
8800         at the end of function body expansion.
8801
8802 2000-07-09  Jason Merrill  <jason@redhat.com>
8803
8804         * init.c (build_new_1): Bail early if the call to new fails.
8805
8806         * decl.c (compute_array_index_type): Check specifically for
8807         an INTEGER_CST, not just TREE_CONSTANT.
8808
8809         * decl.c (duplicate_decls): Don't call duplicate_decls on
8810         the DECL_TEMPLATE_RESULT.
8811         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
8812         codes.
8813
8814         * error.c (dump_template_bindings): Don't crash if we had an
8815         invalid argument list.
8816
8817         * typeck.c (c_expand_start_case): Do narrowing here.
8818         * semantics.c (finish_switch_cond): Not here.
8819
8820 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
8821
8822         * parse.y (asm_clobbers): Do string concatenation.
8823
8824 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8825
8826         * decl.c (pushtag): Don't put local classes in template functions
8827         on the local_classes list.
8828
8829 2000-07-04  Scott Snyder  <snyder@fnal.gov>
8830
8831         * decl2.c (get_guard): Add missing return for old ABI local
8832         variable case.
8833
8834 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8835
8836         * cp-tree.h (char_type_p): New function.
8837         * decl.c (init_decl_processing): Don't initialize
8838         signed_wchar_type_node or unsigned_wchar_type_node.
8839         (complete_array_type): Handle brace-enclosed string-constants.
8840         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
8841         * tree.c (char_type_p): New function.
8842         * typeck2.c (digest_init): Use char_type_p.
8843
8844 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8845
8846         * pt.c (tsubst): Don't layout type, if it's error_mark.
8847
8848 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8849
8850         * pt.c (instantiate_pending_templates): Reset template level.
8851
8852 2000-07-05  Jason Merrill  <jason@redhat.com>
8853
8854         * call.c (joust): Don't complain about `operator char *()' beating
8855         `operator const char *() const'.
8856
8857 2000-07-04  scott snyder  <snyder@fnal.gov>
8858             Jason Merrill  <jason@redhat.com>
8859
8860         * repo.c (repo_get_id): Handle the case where a class with virtual
8861         bases has a null TYPE_BINFO_VTABLE.
8862
8863 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
8864             Jason Merrill  <jason@redhat.com>
8865
8866         * parse.y (member_init): Just pass in the type.
8867         * init.c (expand_member_init): Handle getting a type.
8868
8869 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8870             Jason Merrill  <jason@redhat.com>
8871
8872         * decl.c (finish_function): Warn if a function has no return
8873         statement.
8874         Suggested by Andrew Koenig.
8875         * typeck.c (check_return_expr): Do set current_function_returns_value
8876         if we got an error_mark_node.
8877
8878 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8879
8880         * decl2.c (push_decl_namespace): Push the original namespace.
8881
8882 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8883
8884         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
8885         * semantics.c (begin_class_definition): Clear it.
8886
8887 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
8888
8889         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
8890         (genrtl_expr_stmt): Likewise.
8891         (genrtl_decl_stmt): Likewise.
8892         (genrtl_if_stmt): Likewise.
8893         (genrtl_while_stmt): Likewise.
8894         (genrtl_do_stmt): Likewise.
8895         (genrtl_return_stmt): Likewise.
8896         (genrtl_for_stmt): Likewise.
8897         (genrtl_break_stmt): Likewise.
8898         (genrtl_continue_stmt): Likewise.
8899         (genrtl_scope_stmt): Likewise.
8900         (genrtl_switch_stmt): Likewise.
8901         (genrtl_case_label): Likewise.
8902         (genrtl_begin_compound_stmt): Likewise.
8903         (genrtl_finish_compound_stmt): Likewise.
8904         (genrtl_compound_stmt): Likewise.
8905         (genrtl_asm_stmt): Likewise.
8906
8907         * init.c (begin_init_stmts): Remove call to
8908         genrtl_begin_compound_stmt.
8909         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
8910
8911         * semantics.c (lang_expand_stmt): Changed call to
8912         genrtl_compound_stmt to ignore return value.
8913
8914 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
8915
8916         * mangle.c (canonicalize_for_substitution): Return the canonical
8917         variant of a type.
8918
8919         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
8920         TYPE_DECL.
8921         * typeck.c (commonparms): Remove obstack manipulations.
8922
8923 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
8924
8925         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
8926
8927         * Makefile.in (OBJS): Added ../c-semantics.o.
8928         (OBJDEPS): Likewise.
8929
8930         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
8931         ../c-common.h.
8932         (struct stmt_tree): Added comment.
8933         (current_function_name_declared): Removed.
8934         (stmts_are_full_exprs_p): Likewise.
8935         (genrtl_do_pushlevel): Likewise.
8936         (genrtl_clear_out_block): Likewise.
8937         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
8938         (DECL_ANON_UNION_ELEMS): Likewise.
8939         (emit_local_var): Likewise.
8940         (make_rtl_for_local_static): Likewise.
8941         (do_case): Likewise.
8942         (expand_stmt): Likewise.
8943         (genrtl_decl_cleanup): Likewise.
8944         (c_expand_asm_operands): Likewise.
8945         (c_expand_return): Likewise.
8946         (c_expand_start_case): Likewise.
8947
8948         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
8949         (emit_local_var): Likewise.
8950         (initialize_local_var): Change reference to
8951         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
8952         Change reference to stmts_are_full_exprs_p to
8953         current_stmt_tree->stmts_are_full_exprs_p.
8954         (push_cp_function_context): Likewise.
8955
8956         * expect.c (expand_throw): Change reference to
8957         stmts_are_full_exprs_p.
8958
8959         * init.c (build_aggr_init): Change reference to
8960         stmts_are_full_exprs_p.
8961         (build_vec_init): Likewise.
8962
8963         * optimize.c (maybe_clone_body): Change reference to
8964         current_function_name_declared to
8965         cp_function_chain->name_declared.
8966
8967         * pt.c (instantiate_decl): Change reference to
8968         current_function_name_declared to
8969         cp_function_chain->name_declared.
8970
8971         * semantics.c (expand_cond): Moved declaration to c-common.h.
8972         (genrtl_do_pushlevel): Moved to c-semantics.c.
8973         (genrtl_clear_out_block): Likewise.
8974         (genrtl_goto_stmt): Likewise.
8975         (genrtl_expr_stmt): Likewise.
8976         (genrtl_decl_stmt): Likewise.
8977         (gerntl_if_stmt): Likewise.
8978         (genrtl_while_stmt): Likewise.
8979         (genrtl_do_stmt): Likewise.
8980         (genrtl_return_stmt): Likewise.
8981         (genrtl_for_stmt): Likewise.
8982         (genrtl_break_stmt): Likewise.
8983         (genrtl_continue_stmt): Likewise.
8984         (genrtl_scope_stmt): Likewise.
8985         (genrtl_switch_stmt): Likewise.
8986         (genrtl_case_label): Likewise.
8987         (genrtl_begin_compound_stmt): Likewise.
8988         (genrtl_finish_compound_stmt): Likewise.
8989         (genrtl_compound_stmt): Likewise.
8990         (genrtl_asm_stmt): Likewise.
8991         (genrtl_decl_cleanup): Likewise.
8992         (expand_cond): Likewise.
8993         (expand_stmt): Renamed to ...
8994         (lang_expand_stmt): ... this.
8995         (lang_expand_expr_stmt): Initialize.
8996         (set_current_function_name_declared): Likewise.
8997         (stmts_are_full_exprs_p): Likewise.
8998         (current_function_name_declared): Likewise.
8999         (anon_aggr_type_p): Likewise.
9000         (do_poplevel): Change reference to
9001         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
9002         Change reference to stmts_are_full_exprs_p to
9003         current_stmt_tree->stmts_are_full_exprs_p.
9004         (add_tree): Likewise.
9005         (finish_expr_stmt): Likewise.
9006         (prep_stmt): Likewise.
9007         (lang_expand_stmt): Likewise.
9008         (begin_compound_stmt): Change reference to
9009         current_function_name_declared to
9010         cp_function_chain->name_declared and call to
9011         current_function_name_declared().
9012         (setup_vtbl_ptr): Likewise.
9013         (genrtl_do_poplevel): Removed.
9014
9015 2000-06-30  Jason Merrill  <jason@redhat.com>
9016
9017         * init.c (init_init_processing): Go back to aligning like
9018         double_type_node for old ABI.
9019         (get_cookie_size): Make cookie larger if we get a type that needs
9020         more alignment.
9021         (build_vec_delete): Call it.
9022
9023         * typeck.c (qualify_type_recursive): New fn.
9024         (composite_pointer_type): Use it.
9025         (build_binary_op): Use composite_pointer_type.
9026
9027 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
9028             Jason Merrill  <jason@redhat.com>
9029
9030         * typeck.c (check_return_expr): Don't complain about returning
9031         NULL from operator new if -fcheck-new.
9032         * cp-tree.h: Declare flag_check_new here.
9033         * init.c: Not here.
9034
9035 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
9036
9037         * mangle.c (find_substitution): Use same_type_p.
9038         (write_encoding): Don't check for substitutions.
9039
9040 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
9041
9042         * parse.y (expr_no_comma_rangle): New non-terminal.
9043         (template_parm): Use it for default parameter case.
9044         (template_arg): Use it.
9045         (expr_no_commas): Remove commented out undefined extensions.
9046         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
9047         * parse.h, parse.c: Rebuilt.
9048
9049 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
9050
9051         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
9052         (finish_asm_stmt): Do it here, instead.
9053
9054         * cp-tree.h (ridpointers): Don't declare.
9055         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
9056         (record_builtin_java_type): Likewise.
9057         (init_decl_processing): Likewise.
9058         * lex.c: Move inclusion of lex.h.
9059         (ridpointers): Don't define.
9060         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
9061         RID_MAX.
9062         * lex.h (enum rid): Rename to ...
9063         (enum cp_rid): ... this.
9064         (ridpointers): Don't declare.
9065         * parse.y: Move inclusion of lex.h.
9066         * parse.c: Regenerated.
9067         * spew.c: Move inclusion of lex.h.
9068
9069         * cp-tree.h (struct language_function): Remove temp_name_counter.
9070         (temp_name_counter): Remove.
9071         (get_temp_name): Change prototype.
9072         (get_guard): New function.
9073         (get_guard_cond): Likewise.
9074         (set_guard): Likewise.
9075         * cvt.c (build_up_reference): Adjust call to get_temp_name.
9076         * decl.c (expand_static_init): Use get_guard and friends to
9077         implement guard variables.
9078         * decl2.c (get_temp_name): Assume that the variables created are
9079         always static.
9080         (get_sentry): Rename to ...
9081         (get_guard): ... this.  Implement new ABI guard variables.
9082         (get_guard_bits): New function.
9083         (get_guard_cond): Likewise.
9084         (set_guard): Likewise.
9085         (start_static_initialization_or_destruction): Use them.
9086         (do_static_initialization): Replace sentry with guard throughout.
9087         (do_static_destruction): Likewise.
9088         * init.c (create_temporary_var): Add comment.
9089
9090 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
9091
9092         * mangle.c (find_substitution): Use same_type_p.
9093         (write_encoding): Don't check for substitutions.
9094
9095 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
9096
9097         * parse.y (expr_no_comma_rangle): New non-terminal.
9098         (template_parm): Use it for default parameter case.
9099         (template_arg): Use it.
9100         (expr_no_commas): Remove commented out undefined extensions.
9101         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
9102         * parse.h, parse.c: Rebuilt.
9103
9104 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
9105
9106         * cp-tree.h (flag_const_strings): Remove.
9107         (warn_parentheses): Likewise.
9108         (warn_format): Likewise.
9109         (common_type): Likewise.
9110         (default_conversion): Likewise.
9111         (build_binary_op): Likewise.
9112         (cp_build_binary_op): New macro.
9113         * call.c (build_new_op): Use cp_build_binary_op instead of
9114         build_binary_op.
9115         * class.c (build_vtable_entry_ref): Likewise.
9116         * decl.c (expand_static_init): Likewise.
9117         (compute_array_index_type): Likewise.
9118         (build_enumerator): Likewise.
9119         * decl2.c (delete_sanity): Likewise.
9120         (start_static_initialization_or_destruction): Likewise.
9121         * error.c (dump_type_suffix): Likewise.
9122         * init.c (resolve_offset_ref): Likewise.
9123         (build_new): Likewise.
9124         (build_new_1): Likewise.
9125         (build_vec_delete_1): Likewise.
9126         (build_vec_init): Likewise.
9127         (build_delete): Likewise.
9128         * rtti.c (synthesize_tinfo_fn): Likewise.
9129         (synthesize_tinfo_var): Likewise.
9130         * search.c (expand_upcast_fixups): Likewise.
9131         (fixup_all_virtual_upcast_offsets): Likewise.
9132         * typeck.c (build_array_ref): Likewise.
9133         (get_member_function_from_ptrfunc): Likewise.
9134         (build_binary_op): Add parameter.
9135         (pointer_int_sum): Use cp_build_binary_op.
9136         (pointer_diff): Likewise.
9137         (build_modify_expr): Likewise.
9138         (get_delta_difference): Likewise.
9139         (build_ptrmemfunc): Likewise.
9140
9141 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
9142
9143         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
9144         * decl.c (create_implicit_typedef): Adjust.
9145         * decl2.c (build_artificial_parm): Adjust.
9146         * method.c (implicitly_declare_fn): Adjust.
9147         * pt.c (push_inline_template_parms_recursive): Adjust.
9148         (process_template_parm): Adjust.
9149         (overloaded_template_name): Adjust.
9150         * semantics.c (finish_template_template_parm): Adjust.
9151
9152 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
9153
9154         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
9155         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
9156         where to emit thunks.
9157         (build_vtt): Adjust call to build_vtt_inits.
9158         (build_vtt_inits): Add parameter to indicate whether or not
9159         sub-VTTs for virtual bases should be included.  Adjust handling of
9160         construction vtables.
9161         (get_matching_base): New function.
9162         (dfs_build_vtt_inits): Rename to ...
9163         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
9164         construction vtables.
9165         (dfs_fixup_binfo_vtbls): Likewise.
9166         (build_ctor_vtbl_groups): Build construction vtables for virtual
9167         bases, too.
9168         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
9169         to build construction vtbls.
9170         (dfs_accumulate_vtbl_inits): Adjust handling of
9171         construction vtables.
9172
9173         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
9174         types correctly.
9175
9176 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
9177
9178         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
9179
9180 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
9181
9182         * search.c (hides): Remove.
9183         (is_subobject_of_p): Add most_derived parameter. Use
9184         CANONICAL_BINFO.
9185         (lookup_field_queue_p): Adjust.
9186         (lookup_field_r): Adjust.
9187
9188 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
9189
9190         * decl2.c (handle_class_head): Bash typedefs to the type's main
9191         decl.
9192
9193 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
9194
9195         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
9196         (begin_global_stmt_expr): ... this.
9197         (genrtl_finish_stmt_expr): Rename to ...
9198         (finish_global_stmt_expr): ... this.
9199         * init.c (begin_init_stmts): Adjust calls.
9200         (finish_init_stmts): Likewise.
9201         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
9202         (begin_global_stmt_expr): ... this.
9203         (genrtl_finish_stmt_expr): Rename to ...
9204         (finish_global_stmt_expr): ... this.
9205
9206 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
9207
9208         * search.c (lookup_member): Fix typo in comment.
9209
9210 2000-06-24  Jason Merrill  <jason@redhat.com>
9211
9212         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
9213         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
9214
9215 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9216
9217         * parse.y (complex_direct_notype_declarator): Support global_scope.
9218         * Makefile.in: Adjust conflict count.
9219
9220 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
9221
9222         * parse.y (template_arg): Convert TEMPLATE_DECL
9223         that is a template template parameter to
9224         TEMPLATE_TEMPLATE_PARM here.
9225
9226         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
9227         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
9228         (copy_template_template_parm): Adjust prototype.
9229         * decl.c (grokdeclarator): Remove dead code.
9230         * pt.c (process_template_parm): Tidy.
9231         (lookup_template_class): Construct nodes in
9232         copy_template_template_parm.
9233         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
9234         lookup_template_class.  Use TYPE_TI_TEMPLATE.
9235         * tree.c (copy_template_template_parm): Add NEWARGS
9236         parameter.
9237         (mapcar): Adjust call to copy_template_template_parm.
9238         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
9239         * method.c (build_template_template_parm_names): Change error
9240         code to avoid compilation warning.
9241
9242         * gxxint.texi: Document template template parameter
9243         name mangling.
9244
9245 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
9246
9247         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
9248         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
9249         (cp-demangle.o): New rule.
9250         (dyn-string.o): Likewise.
9251         * inc/cxxabi.h (__cxa_demangle): New declaration.
9252
9253 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
9254
9255         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
9256         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
9257         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
9258         a tree, not an int.
9259         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
9260         (make_thunk): Change prototype.
9261         (emit_thunk): Rename to use_thunk.
9262         (mangle_thunk): Change prototype.
9263         * class.c (get_derived_offset): Simplify.
9264         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
9265         BV_GENERATE_THUNK_WITH_VTABLE_P.
9266         (build_primary_vtable): Simplify.
9267         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
9268         (dfs_find_base): Remove.
9269         (update_vtable_entry_for_fn): Correct bug in finding the base
9270         where a virtual function was first declared.  Figure out whether
9271         or not to emit a vcall-thunk with the vtables in which it appears.
9272         Correct logic for deciding whether to use an ordinary thunk, or a
9273         vcall thunk.
9274         (finish_struct_1): Remove unnecssary code.
9275         (build_vtbl_initializer): Use ssize_int for the running counter of
9276         negative indices.
9277         (build_vtbl_initializer): Only use vcall thunks where necessary.
9278         Mark thunks as needing to be emitted with their vtables, or not.
9279         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
9280         indices.  Use size_binop.
9281         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
9282         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
9283         size_binop.
9284         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
9285         (build_vtable_entry): Mark thunks as needing to be emitted with
9286         their vtables, or not.
9287         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
9288         * decl2.c (mark_vtable_entries): Use use_thunk instead of
9289         emit_thunk.
9290         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
9291         information.
9292         * error.c (dump_expr): Use BV_FN.
9293         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
9294         not an int.
9295         * method.c (make_thunk): Likewise.
9296         (emit_thunk): Rename to use_thunk.  Allow callers to decide
9297         whether or not to actually emit the thunk.  Adjust for changes in
9298         representation of vcall offsets.
9299         * search.c (dfs_get_pure_virtuals): Use BV_FN.
9300         * semantics.c (emit_associated_thunks): New function.
9301         (expand_body): Use it.
9302         * ir.texi: Adjust decriptions of thunks.
9303
9304 2000-06-22  Jason Merrill  <jason@redhat.com>
9305
9306         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
9307         (tsubst_friend_function): Copy it here.
9308
9309         * decl.c (grok_op_properties): Fix typo.
9310
9311         * decl2.c (delete_sanity): Clarify warning, avoid failure on
9312         deleting void*.
9313
9314         * pt.c (check_explicit_specialization): Clarify error.
9315
9316         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
9317         an old OVERLOAD when we're declaring a non-function.
9318         (pushdecl, destroy_local_var): Check for error_mark_node.
9319         (warn_extern_redeclared_static): Also bail early if
9320         we're a CONST_DECL.
9321         (push_overloaded_decl): Ignore an old error_mark_node.
9322
9323 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
9324
9325         * call.c (build_x_va_arg): Check if in a template decl.
9326         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
9327
9328 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9329
9330         * class.c (push_lang_context): TYPE_NAME gets you to the Java
9331         types DECLs.
9332         * decl.c (check_goto): Computed gotos assumed OK.
9333
9334 2000-06-20  Jason Merrill  <jason@redhat.com>
9335
9336         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
9337         for which we don't need to look for instantiations.
9338
9339 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
9340
9341         * parse.y (program): Always call finish_translation_unit.
9342         * parse.c, parse.h: Rebuilt.
9343
9344 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
9345
9346         * method.c: Don't include hard-reg-set.h.
9347
9348 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
9349
9350         * rtti.c (get_base_offset): Cope when vbase field is in a base.
9351
9352 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
9353
9354         * call.c (build_conditional_expr): Use VOID_TYPE_P.
9355         * cvt.c (cp_convert_to_pointer): Likewise.
9356         (convert_to_void): Likewise.
9357         * error.c (dump_expr): Likewise.
9358         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
9359         * init.c (build_delete): Likewise.
9360         * method.c (emit_thunk): Likewise.
9361         * optmize.c (declare_return_variable): Likewise.
9362         * rtti.c (get_tinfo_decl_dynamic): Likewise.
9363         (get_typeid): Likewise.
9364         (build_dynamic_cast_1): Likewise.
9365         * typeck.c (composite_pointer_type): Likewise.
9366         (common_type): Likewise.
9367         (build_indirect_ref): Likewise.
9368         (build_binary_op): Likewise.
9369         (build_x_compound_expr): Likewise.
9370         (check_return_expr): Likewise.
9371         * typeck2.c (add_exception_specifier): Likewise.
9372
9373         * mangle.c (write_method_parms): Use direct comparison for end
9374         of parmlist.
9375
9376 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
9377
9378         * cp-tree.h (genrtl_try_block): Declare function.
9379         (genrtl_handler): Likewise.
9380         (genrtl_catch_block): Likewise.
9381         (genrtl_ctor_stmt): Likewise.
9382         (genrtl_subobject): Likewise.
9383         (genrtl_decl_cleanup): Likewise.
9384         (genrtl_do_poplevel): Likewise.
9385         (genrtl_do_pushlevel): Likewise.
9386         (genrtl_clear_out_block): Likewise.
9387         (genrtl_goto_stmt): Likewise.
9388         (genrtl_expr_stmt): Likewise.
9389         (genrtl_decl_stmt): Likewise.
9390         (genrtl_if_stmt): Likewise.
9391         (genrtl_while_stmt): Likewise.
9392         (genrtl_do_stmt): Likewise.
9393         (genrtl_return_stmt): Likewise.
9394         (genrtl_for_stmt): Likewise.
9395         (genrtl_break_stmt): Likewise.
9396         (genrtl_continue_stmt): Likewise.
9397         (genrtl_scope_stmt): Likewise.
9398         (genrtl_switch_stmt): Likewise.
9399         (genrtl_case_label): Likewise.
9400         (genrtl_begin_compound_stmt): Likewise.
9401         (genrtl_finish_compound_stmt): Likewise.
9402         (genrtl_compound_stmt): Likewise.
9403         (genrtl_asm_stmt): Likewise.
9404         (genrtl_named_return_value): Likewise.
9405         (genrtl_begin_stmt_expr): Likewise.
9406         (genrtl_finish_stmt_expr): Likewise.
9407         (finish_for_stmt): Removed first argument.
9408         (finish_switch_stmt): Likewise.
9409
9410         * semantics.c (genrtl_try_block): Define function.
9411         (genrtl_handler): Likewise.
9412         (genrtl_catch_block): Likewise.
9413         (genrtl_ctor_stmt): Likewise.
9414         (genrtl_subobject): Likewise.
9415         (genrtl_decl_cleanup): Likewise.
9416         (genrtl_do_poplevel): Likewise.
9417         (genrtl_do_pushlevel): Likewise.
9418         (genrtl_clear_out_block): Likewise.
9419         (genrtl_goto_stmt): Likewise.
9420         (genrtl_expr_stmt): Likewise.
9421         (genrtl_decl_stmt): Likewise.
9422         (genrtl_if_stmt): Likewise.
9423         (genrtl_while_stmt): Likewise.
9424         (genrtl_do_stmt): Likewise.
9425         (genrtl_return_stmt): Likewise.
9426         (genrtl_for_stmt): Likewise.
9427         (genrtl_break_stmt): Likewise.
9428         (genrtl_continue_stmt): Likewise.
9429         (genrtl_scope_stmt): Likewise.
9430         (genrtl_switch_stmt): Likewise.
9431         (genrtl_case_label): Likewise.
9432         (genrtl_begin_compound_stmt): Likewise.
9433         (genrtl_finish_compound_stmt): Likewise.
9434         (genrtl_compound_stmt): Likewise.
9435         (genrtl_asm_stmt): Likewise.
9436         (genrtl_named_return_value): Likewise.
9437         (genrtl_begin_stmt_expr): Likewise.
9438         (genrtl_finish_stmt_expr): Likewise.
9439         (finish_for_stmt): Removed first argument and generate rtl
9440         specific code.
9441         (finish_switch_stmt): Likewise.
9442         (do_poplevel): Removed generate rtl specific code.
9443         (do_pushlevel): Likewise.
9444         (add_tree): Likewise.
9445         (finish_goto_stmt): Likewise.
9446         (finish_expr_stmt): Likewise.
9447         (begin_if_stmt): Likewise.
9448         (finish_if_stmt_cond): Likewise.
9449         (finish_then_clause): Likewise.
9450         (begin_else_clause): Likewise.
9451         (finish_else_clause): Likewise.
9452         (finish_if_stmt): Likewise.
9453         (clear_out_block): Likewise.
9454         (begin_while_stmt): Likewise.
9455         (finish_while_stmt_cond): Likewise.
9456         (finish_while_stmt): Likewise.
9457         (begin_do_stmt): Likewise.
9458         (finish_do_body): Likewise.
9459         (finish_do_stmt): Likewise.
9460         (finish_return_stmt): Likewise.
9461         (begin_for_stmt): Likewise.
9462         (finish_for_init_stmt): Likewise.
9463         (finish_for_cond): Likewise.
9464         (finish_for_expr): Likewise.
9465         (finish_break_stmt): Likewise.
9466         (finish_continue_stmt): Likewise.
9467         (begin_switch_stmt): Likewise.
9468         (finish_switch_cond): Likewise.
9469         (finish_case_label): Likewise.
9470         (begin_try_block): Likewise.
9471         (begin_function_try_block): Likewise.
9472         (finish_try_block): Likewise.
9473         (finish_cleanup_try_block): Likewise.
9474         (finish_cleanup): Likewise.
9475         (finish_function_try_block): Likewise.
9476         (finish_handler_sequence): Likewise.
9477         (finish_function_handler_sequence): Likewise.
9478         (begin_handler): Likewise.
9479         (finish_handler_parms): Likewise.
9480         (begin_catch_block): Likewise.
9481         (finish_handler): Likewise.
9482         (begin_compound_stmt): Likewise.
9483         (finish_compound_stmt): Likewise.
9484         (finish_asm_stmt): Likewise.
9485         (finish_label_stmt): Likewise.
9486         (finish_label_decl): Likewise.
9487         (finish_subobject): Likewise.
9488         (finish_decl_cleanup): Likewise.
9489         (finish_named_return_value): Likewise.
9490         (begin_stmt_expr): Likewise.
9491         (finish_stmt_expr): Likewise.
9492
9493         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
9494         to call genrtl_expr_stmt when appropriate.
9495
9496         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
9497         begin_compound_expr to call genrtl_begin_stmt_expr and
9498         genrtl_begin_compound_expr when appropriate.
9499         (finish_init_stmts): Changed calls to finish_compound_expr and
9500         finish_stmt_expr to call genrtl_finish_compound_expr and
9501         genrtl_finish_stmt_expr when appropriate.
9502         (expand_default_init): Changed call to finish_expr_stmt to call
9503         genrtl_expr_stmt when appropriate.
9504         (build_vec_init): Likewise.
9505
9506         * parse.y (simple_stmt): Removed first argument from call to
9507         finish_for_stmt. Removed first argument from call to
9508         finish_switch_stmt.
9509
9510         * parse.c: Regenerated.
9511
9512         * pt.c (tsubst_expr): Removed first argument from call to
9513         finish_for_stmt. Removed first argument from call to
9514         finish_switch_stmt.
9515
9516 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
9517
9518         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
9519         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
9520
9521         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
9522         (cplus_tree_code_length[]): Likewise.
9523         (cplus_tree_code_name[]): Likewise.
9524         (init_parse): Added call to add_c_tree_codes. Changed
9525         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
9526
9527 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
9528
9529         * cp-tree.h (finish_mem_initializers): Declare.
9530         (count_trees): Likewise.
9531         * parse.y (base_init): Use finish_mem_initializers.
9532         * semantics.c (finish_mem_initializers): New function.
9533
9534         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
9535         the number of trees.
9536         (n_trees): Remove.
9537         (count_trees): Don't use it.
9538
9539 2000-06-15  Jason Merrill  <jason@redhat.com>
9540
9541         * tree.c (count_trees): New debugging function.
9542
9543         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
9544         * init.c (build_member_call): Pull out the name of a DECL.
9545
9546         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
9547         * semantics.c (expand_body): Push to TV_INTEGRATION here.
9548         * optimize.c (optimize_function): Not here.
9549         * pt.c (instantiate_decl): Push to TV_PARSE.
9550
9551 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
9552
9553         * cp-tree.h (struct language_function): Remove x_base_init_list
9554         and x_member_init_list.
9555         (current_base_init_list): Remove.
9556         (current_member_init_list): Likewise.
9557         (setup_vtbl_ptr): Change prototype.
9558         (emit_base_init): Likewise.
9559         (expand_member_init): Likewise.
9560         (reinit_parse_for_function): Remove.
9561         * decl.c (save_function_data): Don't clear x_base_init_list and
9562         x_member_init_list.
9563         (mark_language_function): Don't mark them.
9564         * init.c (perform_member_init): Tweak comment.
9565         (sort_member_init): Take the list of initializers as an argument.
9566         (sort_base_init): Likewise.
9567         (emit_base_init): Likewise.
9568         (expand_member_init): Return the initializer.  Don't use global
9569         variables.
9570         * lex.c (reinit_parse_for_function): Remove.
9571         * method.c (build_template_parm_names): Correct substitution.
9572         (do_build_copy_constructor): Don't use current_member_init_list
9573         and current_base_init_list.
9574         (synthesize_method): Likewise.
9575         * parse.y (base_init): Split mem-initializers into
9576         base-initializers and field-initializers.
9577         (member_init_list): Build up the list here.
9578         (member_init): Return the initializer.
9579         (fn.depfn): Don't use reinit_parse_for_function.
9580         * parse.c: Regenerated.
9581         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
9582         ERROR_MARK.
9583         (tsubst_expr): Don't use current_member_init_list
9584         and current_base_init_list.
9585         (tsubst_expr_values): Rename to ...
9586         (tsubst_initializer_list): ... this.  Use convert_from_reference.
9587         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
9588         and current_base_init_list.
9589         (begin_function_definition): Don't call reinit_parse_for_function.
9590
9591         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
9592
9593         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
9594         correctly.
9595
9596         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
9597
9598 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
9599
9600         * cp-tree.h (IF_COND): Move to c-common.h.
9601         (THEN_CLAUSE): Likewise.
9602         (ELSE_CLAUSE): Likewise.
9603         (WHILE_COND): Likewise.
9604         (WHILE_BODY): Likewise.
9605         (DO_COND): Likewise.
9606         (DO_BODY): Likewise.
9607         (RETURN_EXPR): Likewise.
9608         (EXPR_STMT_EXPR): Likewise.
9609         (FOR_INIT_STMT): Likewise.
9610         (FOR_COND): Likewise.
9611         (FOR_EXPR): Likewise.
9612         (FOR_BODY): Likewise.
9613         (SWITCH_COND): Likewise.
9614         (SWITCH_BODY): Likewise.
9615         (CASE_LOW): Likewise.
9616         (CASE_HIGH): Likewise.
9617         (GOTO_DESTINATION): Likewise.
9618         (COMPOUND_BODY): Likewise.
9619         (ASM_CV_QUAL): Likewise.
9620         (ASM_STRING): Likewise.
9621         (ASM_OUTPUTS): Likewise.
9622         (ASM_INPUTS): Likewise.
9623         (ASM_CLOBBERS): Likewise.
9624         (DECL_STMT_DECL): Likewise.
9625         (STMT_EXPR_STMT): Likewise.
9626         (LABEL_STMT_LABEL): Likewise.
9627         (SCOPE_BEGIN_P): Likewise.
9628         (SCOPE_END_P): Likewise.
9629         (SCOPE_STMT_BLOCK): Likewise.
9630         (SCOPE_NULLIFIED_P): Likewise.
9631         (SCOPE_NO_CLEANUPS_P): Likewise.
9632         (SCOPE_PARTIAL_P): Likewise.
9633         (ASM_VOLATILE_P): Likewise.
9634         (STMT_LINENO): Likewise.
9635         (STMT_LINENO_FOR_FN_P): Likewise.
9636
9637         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
9638         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
9639         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
9640         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
9641         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
9642
9643         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
9644
9645         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
9646         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
9647
9648         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
9649         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
9650         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
9651
9652 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
9653
9654         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
9655         * class.c (dfs_find_final_overrider): Set it appropriately.
9656         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
9657         avoid unneeded secondary vptrs.
9658
9659 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
9660
9661         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
9662         (check_bitfield_decl, check_field_decl): Likewise.
9663         (build_vtbl_or_vbase_field, build_base_field): Likewise.
9664         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
9665         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
9666         (xfer_tag, finish_enum): Likewise.
9667         * decl2.c (finish_builtin_type): Likewise.
9668         * init.c (init_init_processing): Likewise.
9669         * pt.c (instantiate_class_template): Likewise.
9670         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
9671         * cp-tree.h (struct lang_type): Add user_align member.
9672         (CLASSTYPE_USER_ALIGN): Define.
9673
9674 Tue Jun 13 15:48:03 2000  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
9675
9676         * Make-lang.in (c++.install-common): Install g++-cross in
9677         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
9678         $(target_alias)-g++ and $(target_alias)-c++.
9679
9680 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
9681
9682         * class.c (vcall_offset_data_s): Add last_init and fns.
9683         (overrides): Rename to same_signature_p.
9684         (dfs_find_final_overrider): Adjust accordingly.
9685         (mark_overriders): Likewise.
9686         (warn_hidden): Likewise.
9687         (build_vtbl_initializer): Reorganize machinery for building things
9688         at negative offsets.
9689         (build_vcall_and_vbase_vtbl_entries): Likewise.
9690         (build_vbase_offset_vtbl_entries): Likewise.
9691         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
9692         offset entries.  Do not create two entries for functions with the
9693         same signature.
9694         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
9695         (build_rtti_vtbl_entries): Reorganize machinery for building things
9696         at negative offsets.
9697
9698         * optimize.c (expand_call_inline): Don't recurse into the code
9699         used to initialize the parameters more than once.
9700
9701 2000-06-11  Mark Mitchell <mark@codesourcery.com>
9702
9703         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
9704         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
9705         (find_substitution): Only use the `Sa' substitution for
9706         std::allocator, not instantiations of it.
9707         (write_template_prefix): Move comment.  Only use a TREE_LIST to
9708         represent substitutions for a member template.
9709         (write_array_type): Mangle array dimensions correctly.
9710         * optimize.c (maybe_clone_body): Copy more information from the
9711         cloned function.
9712         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
9713         on the regenerated declaration.
9714
9715 2000-06-11  Chip Salzenberg  <chip@valinux.com>
9716             Mark Mitchell <mark@codesourcery.com>
9717
9718         * class.c (build_vtable): Clarify comment.
9719         (build_ctor_vtbl_group): Pass the most derived type to
9720         build_vtable.
9721
9722 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9723
9724         * decl2.c (compare_options): Don't needlessly cast away const-ness.
9725
9726 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
9727
9728         * decl.c (add_binding): Handle duplicate declarations of external
9729         variables.
9730
9731 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9732             Mark Mitchell <mark@codesourcery.com>
9733
9734         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
9735         argument.
9736         (write_signed_number): New macro.
9737         (write_unsigned_number): Likewise.
9738         (write_source_name): Use them.
9739         (write_number): Handle signed and unsigned values.
9740         (write_integer_cst): Use tree_int_cst_sgn, and use
9741         write_unsigned_number or write_signed_number as appropriate.
9742         (write_discriminator): Use write_unsigned_number or
9743         write_signed_number as appropriate.
9744         (write_template_arg_literal): Likewise.
9745         (write_array_type): Use tree_low_cst.
9746         (write_template_parm):  Use write_unsigned_number or
9747         write_signed_number as appropriate.
9748         (write_substitution): Adjust call to write_number.
9749         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
9750         (write_expression): Handle non-type template arguments of
9751         reference type correctly.
9752         (mangle_thunk): Use write_signed_number.
9753
9754 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9755
9756         * mangle.c (find_substition): Don't mangle objects with typename
9757         substitutions (e.g. "cin" as "Si").
9758
9759 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
9760
9761         * call.c (add_candidate): Use ggc_alloc_cleared.
9762         * decl.c (lookup_label): Likewise.
9763         * lex.c (retrofit_lang_decl): Likewise.
9764
9765 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
9766
9767         * semantics.c (expand_body): Push to TV_EXPAND.
9768         * optimize.c (optimize_function): Push to TV_INTEGRATION.
9769         * decl.c (start_function): Always call announce_function.
9770
9771         * tinfo2.cc: Just declare abort.
9772
9773 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
9774
9775         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
9776         whenever @ is a symbolic name.
9777
9778 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
9779
9780         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
9781
9782 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
9783
9784         * decl.c (pushdecl): Look up functions by DECL_NAME, not
9785         DECL_ASSEMBLER_NAME.
9786
9787 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9788
9789         * decl2.c (c_language): Define.
9790
9791 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
9792
9793         * lex.c (lang_init_options): Tweak.
9794
9795         * decl2.c: Remove #inclusion of diagnostic.h
9796         (lang_decode_option): Move diagnostic formatting options to
9797         toplevel.
9798
9799         * lang-options.h: Remove documentation for diagnostic options.
9800
9801         * Makefile.in (lex.o): Depends upon diagnostic.h
9802
9803 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9804
9805         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
9806         the same DECL_RESULT, it's not a redefinition.
9807         * pt.c (tsubst_decl): Remove code to handle illegal
9808         specializations.
9809
9810 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
9811
9812         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
9813
9814 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
9815
9816         * search.c (maybe_suppress_debug_info): Don't check
9817         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
9818
9819         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
9820         here if extern_p.
9821
9822         Remember instantiation context in deferred instantiations.
9823         * cp-tree.h (struct tinst_level): Remove.
9824         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
9825         * pt.c (current_tinst_level): Now a tree.
9826         (print_template_context, push_tinst_level, pop_tinst_level,
9827         tinst_for_decl): Adjust.
9828         (reopen_tinst_level): New fn.
9829         (init_pt): Register current_tinst_level as a root.
9830         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
9831         of the pending templates list.
9832         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
9833         * lex.c (extract_interface_info): Adjust.
9834         * decl2.c (warn_if_unknown_interface): Adjust.
9835
9836 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
9837
9838         * class.c (indirect_primary_base_p): New function.
9839         (determine_primary_base): Use it.
9840
9841 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
9842
9843         Update new-abi dynamic cast algorithm.
9844         * tinfo.cc (__class_type_info::__dyncast_result): Add
9845         whole_details. Adjust constructor.
9846         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
9847         Avoid unnecessary searching.
9848         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
9849
9850 Mon Jun  5 06:48:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9851
9852         * decl.c (init_decl_processing): Don't call record_component_aliases.
9853         * tree.c (build_cplus_array_type_1): Likewise.
9854
9855 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
9856
9857         * ir.texi: Correct typo.
9858         * mangle.c (write_expression): Handle non-type template arguments
9859         with reference type.
9860         * method.c (build_overload_value): Likewise.
9861         * pt.c (convert_nontype_argument): Explicitly represent conversion
9862         to a reference with an ADDR_EXPR.
9863         (unify): Always unify arguments in left-to-right order.
9864
9865 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
9866             Mark Mitchell  <mark@codesourcery.com>
9867
9868         * Make-lang.in (CXX_SRCS): Add mangle.c.
9869         * Makefile.in (CXX_OBJS): Add mangle.o.
9870         (mangle.o): New rule.
9871
9872         * class.c (local_classes): New variable.
9873         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
9874         (get_vtt_name): Use mangle_vtt_name for new ABI.
9875         (init_class_processing): Initialize local_classes.
9876         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
9877         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
9878         (std_identifier): New macro.
9879         (DECL_VOLATILE_MEMFUNC_P): New macro.
9880         (DECL_NAMESPACE_STD_P): Likewise.
9881         (local_classes): Declare.
9882         (get_mostly_instantiated_function_type): Declare.
9883         (init_mangle): Declare.
9884         (mangle_decl): Likewise.
9885         (mangle_type_string): Likewise.
9886         (mangle_type): Likewise.
9887         (mangle_typeinfo_for_type): Likewise.
9888         (mangle_typeinfo_string_for_type): Likewise.
9889         (mangle_vtbl_for_type): Likewise.
9890         (mangle_vtt_for_type): Likewise.
9891         (mangle_ctor_vtbl_for_type): Likewise.
9892         (mangle_thunk): Likewise.
9893         (mangle_conv_op_name_for_type): Likewise.
9894         (mangle_guard_variable): Likewise.
9895         * decl.c (pushtag): Keep track of local classes.
9896         (initialize_predefined_identifiers): Initialize std_identifier.
9897         (init_decl_processing): Use std_identifier.
9898         (start_decl): Don't treat instantiations as specializations.
9899         (grokdeclarator): Likewise.
9900         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
9901         name for fully-instantiated templates.
9902         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
9903         destructors with the new ABI.
9904         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
9905         (grokfield): Use mangle_type for new ABI.
9906         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
9907         (get_sentry): Use mangle_guard_variable for new ABI.
9908         (start_static_initialization_or_destruction): Likewise.
9909         * expr.c (extract_aggr_init): Remove.
9910         (extract_scalar_init): Likewise.
9911         (extract_init): Remove #if 0'd code.
9912         * mangle.c: New function.
9913         * method.c (build_mangled_name): Assert not flag_new_abi.
9914         (build_static_name): Likewise.
9915         (build_decl_overload_real): Likewise.
9916         (build_typename_overload): Likewise.
9917         (build_overload_with_type): Likewise.
9918         (build_overload_name): Likewise.
9919         (get_ctor_vtbl_name): Likewise.
9920         (start_squangling): Likewise.
9921         (get_id_2): Likewise.
9922         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
9923         (init_method): Call init_mangle for new ABI.
9924         (make_thunk): Call mangle_thunk for new ABI.
9925         * operators.def: Correct new ABI manglings for the `%' operator.
9926         Add `::' operator.
9927         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
9928         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
9929         (lookup_template_class): Call mangle_decl for new ABI.
9930         (get_mostly_instantiated_function_type): New function.
9931         (set_mangled_name_for_template_decl): Use it.
9932         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
9933         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
9934         conversion op names.
9935         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
9936         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
9937         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
9938         mangle_typeinfo_string_for_type.
9939
9940 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
9941
9942         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
9943         (INNERMOST_TEMPLATE_ARGS): New macro.
9944         (innermost_args): Remove.
9945         (get_innermost_template_args): New function.
9946         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
9947         * error.c (dump_function_decl): Be caution when using
9948         most_general_template.
9949         * method.c (build_template_parm_names):  Use
9950         INNERMOST_TEMPLATE_ARGS.
9951         * pt.c (add_to_template_args): Tidy comment
9952         (get_innermost_template_args): New function.
9953         (check_explicit_specialization): Clear DECL_INITIAL for a new
9954         specialization.
9955         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
9956         Tidy.
9957         (push_template_decl): Always register specializations of the most
9958         general template.
9959         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
9960         (coerce_template_parms): Likewise.
9961         (lookup_template_class): Likewise.
9962         (innermost_args): Remove.
9963         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
9964         (tsubst_decl): Handle tricky specializations.  Use
9965         get_innermost_template_args.
9966         (instantiate_template): Simplify handling of partial
9967         instantiations.
9968         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
9969         (most_general_template): Reimplement, in a more straightforward
9970         manner.
9971         (regenerate_decl_from_template): Tweak formatting.  Use
9972         TMPL_ARGS_DEPTH for clarity.
9973         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
9974
9975         * dump.c (dequeue_and_dump): Dump information about thunks.
9976
9977 2000-06-01  Richard Henderson  <rth@cygnus.com>
9978
9979         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
9980
9981 2000-06-01  Richard Henderson  <rth@cygnus.com>
9982
9983         * decl2.c (unsupported_options): Fix typo, make const.
9984         (lang_decode_option): Fix bsearch argument order.
9985
9986 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
9987
9988         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
9989         on FIELD_DECLs.
9990
9991 Wed May 31 14:09:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9992
9993         * cp-tree.h (c_get_alias_set): Deleted.
9994         * Makefile.in (decl.o): Include ../expr.h.
9995         * decl.c (expr.h): Include.
9996         (init_decl_processing): Call record_component_aliases for arrays.
9997         (grokdeclarator): Likewise.
9998         Set TREE_ADDRESSABLE for fields that aren't bitfields.
9999         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
10000
10001 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
10002
10003         Remove guiding declaration support.
10004         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
10005         (flag_guiding_decls): Remove.
10006         * call.c (build_user_type_conversion_1): Remove support for
10007         guiding decls.
10008         (build_new_function_call): Likewise.
10009         (build_new_op): Likewise.
10010         (build_new_method_call): Likewise.
10011         * decl.c (start_function): Likewise.
10012         * friend.c (is_friend): Likewise.
10013         (do_friend): Likewise.
10014         * decl2.c ((flag_dump_translation_unit): Make it const.
10015         (flag_guiding_decls): Remove.
10016         (unsupported_options): New variable
10017         (compare_options): New function.
10018         (lang_decode_option): Use them.
10019
10020         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
10021
10022         * method.c (mangle_expression): Adjust test for legal expression
10023         operators.
10024
10025         * pt.c (instantiate_decl): Save and restore the local
10026         specializations list.
10027
10028 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
10029
10030         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
10031
10032 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
10033
10034         * call.c (add_template_candidate_real): Handle member template
10035         constructors for classes with virtual bases.
10036         (build_user_type_conversion_1): Use in_charge_arg_for_name.
10037         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
10038
10039         * ir.texi: Update thunk documentation.
10040
10041         * call.c (joust): Fix handling of overloaded builtin operators.
10042
10043 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
10044
10045         * cp-tree.h (DECL_ANTICIPATED): New macro.
10046         Document new use of DECL_LANG_FLAG_7.
10047         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
10048         in the user namespace.
10049         * lex.c (do_identifier): If the identifier's declaration has
10050         DECL_ANTICIPATED on, it has not yet been declared.  But do not
10051         replace it with an ordinary implicit declaration.
10052
10053         * tinfo2.cc: Include stdlib.h.
10054
10055 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
10056
10057         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
10058         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
10059         CLASSTYPE_ALIGN.
10060
10061 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
10062
10063         * decl2.c (lang_decode_option): Use skip_leading_substring instead
10064         of plain strncmp.
10065
10066 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
10067
10068         * operators.def (<?): Duplicated, should have been...
10069         (>?): this.  Fixed.
10070
10071 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
10072             Mark Mitchell  <mark@codesourcery.com>
10073
10074         * cp-tree.h (ansi_opname): Make it a macro.
10075         (ansi_assopname): Likewise.
10076         (struct lang_decl_flags): Add assignment_operator_p.
10077         (struct lang_decl): Add operator_code.
10078         (DECL_VTT_PARM): Adjust.
10079         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
10080         overloaded operator.
10081         (SET_OVERLOADED_OPERATOR_CODE): New macro.
10082         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
10083         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
10084         (opname_tab): Remove.
10085         (assignop_tab): Likewise.
10086         (operator_name_info_t): New type.
10087         (operator_name_info): New variable.
10088         (assignment_operator_name_info): Likewise.
10089         (build_cp_library_fn): Remove declaration.
10090         (push_cp_library_fn): Likewise.
10091         (operator_name_string): Likewise.
10092         (build_decl_overload): Likewise.
10093         * call.c (print_z_candidates): Simplify.
10094         (build_object_call): Adjust usage of ansi_opname.  Use
10095         DECL_OVERLOADED_OPERATOR_P.
10096         (op_error): Adjust operator name lookup.
10097         (build_conditional_expr): Adjust usage of ansi_opname.
10098         (build_new_op): Likewise.
10099         (build_op_delete_call): Likewise.
10100         (build_over_call): Likewise.
10101         (joust): Use DECL_OVERLOADED_OPERATOR_P.
10102         * decl.c (duplicate_decls): Copy operator_code.
10103         (init_decl_processing): Adjust parameters to push_cp_library_fn.
10104         (builtin_function): Adjust parameters to build_library_fn_1.
10105         (build_library_fn_1): Accept an overloaded operator code.
10106         (build_library_fn): Pass ERROR_MARK.
10107         (build_cp_library_fn): Accept an overloaded operator code.
10108         (push_cp_library_fn): Likewise.
10109         (grokfndecl): Tweak.
10110         (grokdeclarator): Simplify code to compute names of overloaded
10111         operators.  Adjust use of ansi_opname.
10112         (ambi_op_p): Work on tree_codes, not identifiers.
10113         (unary_op_p): Likewise.
10114         (grok_op_properties): Likewise.
10115         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
10116         (lang_mark_tree): Don't try to mark the operator_code.
10117         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
10118         * error.c (dump_decl): Remove special handling for operator
10119         names.
10120         (dump_function_name): Likewise.
10121         (dump_expr): Adjust name lookup of operators.
10122         (op_to_string): Simplify.
10123         (assop_to_string): Likewise.
10124         * init.c (build_new_1): Adjust use of ansi_opname.
10125         * lex.c (opname_tab): Remove.
10126         (assignop_tab): Likewise.
10127         (ansi_opname): Likewise.
10128         (ansi_assopname): Likewise.
10129         (operator_name_string): Likewise.
10130         (reinit_lang_specific): Likewise.
10131         (operator_name_info): New variable.
10132         (assignment_operator_name_info): Likewise.
10133         (init_operators): New function.
10134         (init_parse): Use it.
10135         (do_identifier): Adjust use of ansi_opname.
10136         * method.c (mangle_expression): Don't use ansi_opname for
10137         mangling.
10138         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
10139         (build_decl_overload): Remove.
10140         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
10141         (do_build_assign_ref): Adjust use of ansi_opname.
10142         (synthesize_method): Likewise.
10143         (implicitly_declare_fn): Likewise.
10144         * operators.def: New file.
10145         * parse.y (operator): Adjust use of ansi_opname.
10146         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
10147         (set_mangled_name_for_template_decl): Don't play games with
10148         current_namespace.
10149         (special_function_p): Adjust use of ansi_opname.
10150         * typeck.c (check_return_expr): Likewise.
10151         * Make-lang.in (cc1plus): Depend on operators.def.
10152         * Makefile.in (lex.o): Likewise.
10153         (decl.o): Likewise.
10154
10155 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
10156
10157         * Make-lang.in (cplib2.ready): Eradicate.
10158
10159 Sat May 27 11:25:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10160
10161         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
10162         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
10163         (built_min, cp_tree_equal): Likewise.
10164
10165 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
10166
10167         * class.c (layout_nonempty_base_or_field): Replace
10168         `record_layout_info' with `record_layout_info_s'.
10169
10170 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
10171
10172         Fix goto checking.
10173         * cp-tree.h (struct language_function): x_named_labels is now
10174         a struct named_label_list*.
10175         * decl.c (struct named_label_use_list): Renamed from...
10176         (struct named_label_list): ...this.  New struct.
10177         (push_binding_level): Don't set eh_region.
10178         (note_level_for_eh): New fn.
10179         (pop_label): Take label and old value directly.
10180         (pop_labels): Adjust for new named_labels format.
10181         (lookup_label): Likewise.
10182         (poplevel): Note characteristics of a binding level containing a
10183         named label.  Mess with named label lists earlier.
10184         (mark_named_label_lists): New fn.
10185         (mark_lang_function): Call it.
10186         (use_label): New fn, split out from...
10187         (make_label_decl): ...here.  Don't call it.
10188         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
10189         check_previous_gotos): New fns, split out from...
10190         (define_label): ...here.
10191         (check_switch_goto): New fn.
10192         (define_case_label): Call it.
10193         (check_goto): New fn.
10194         * semantics.c (finish_goto_stmt): Call it and use_label.
10195         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
10196         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
10197
10198 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
10199
10200         * class.c (build_vtable_entry_ref): Correct usage of
10201         get_vtbl_decl_for_binfo.
10202
10203         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
10204         * method.c (implicitly_declare_fn): Not here.
10205
10206 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
10207
10208         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
10209         (CPTI_PTMD_DESC_TYPE): ... here.
10210         (ptmd_desc_type_node): Rename to ...
10211         (ptm_desc_type_node): ... here.
10212         * decl.c: Likewise.
10213         * rtti.c (ptmd_initializer): Rename to ...
10214         (ptm_initializer): ... here.
10215         (sythesize_tinfo_var): Adjust. Deal with pointer to member
10216         function.
10217         (create_tinfo_types): Adjust.
10218
10219 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
10220
10221         Finish implementation of VTTs.
10222         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
10223         CPTI_VTT_PARM_IDENTIFIER.
10224         (vtt_parm_identifier): New macro.
10225         (vtt_parm_type): Likewise.
10226         (BINFO_SUBVTT_INDEX): Likewise.
10227         (BINFO_VPTR_INDEX): Likewise.
10228         (struct lang_decl): Add vtt_parm.
10229         (DECL_VTT_PARM): New macro.
10230         (DECL_USE_VTT_PARM): Likewise.
10231         (DECL_NEEDS_VTT_PARM_P): Likewise.
10232         (get_vtt_name): Declare.
10233         (build_artificial_parm): Likewise.
10234         (fixup_all_virtual_upcast_offsets): Likewise.
10235         (expand_indirect_vtbls_init): Remove.
10236         * call.c (build_new_method_call): Pass the vtt to subobject
10237         constructors and destructors.
10238         * class.c (get_vtt_name): Give it external linkage.
10239         (build_clone): Handle the magic VTT parameters for clones.
10240         (clone_function_decl): Fix typo in comment.
10241         (build_vtt): Keep track of the indices in the VTTs where various
10242         entities are stored.
10243         (build_vtt_inits): Likewise.
10244         (dfs_build_vtt_inits): Likewise.
10245         (build_ctor_vtbl_group): Tweak type of construction vtables.
10246         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
10247         primary bases, when building construction vtables.
10248         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
10249         (initialize_predefined_identifiers): Add vtt_parm_identifier.
10250         (init_decl_processing): Initialize vtt_parm_type.
10251         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
10252         (lang_mark_tree): Make vtt_parm.
10253         * decl2.c (build_artificial_parm): New function.
10254         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
10255         (grokclassfn): Use build_artificial_parm.
10256         * init.c (initialize_vtbl_ptrs): Call
10257         fixup_all_virtual_upcast_offsets directly.
10258         (perform_member_init): Use the complete subobject destructor for
10259         member cleanups.
10260         (build_vtbl_address): New function.
10261         (expand_virtual_init): Handle VTTs.
10262         * optimize (maybe_clone_body): Likewise.
10263         * search.c (fixup_all_virtual_upcast_offsets): Give it external
10264         linkage.
10265         (expand_indirect_vtbls_init): Remove.
10266         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
10267         * tree.c (make_binfo): Make them bigger.
10268
10269 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
10270
10271         * inc/cxxabi.h (__pbase_type_info): Define, based on
10272         __pointer_type_info.
10273         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
10274         (__pointer_to_member_type_info): Likewise.
10275         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
10276         (__pointer_to_member_type_info::__is_pointer_p): Remove.
10277         (__pointer_type_info::__do_catch): Rename to ...
10278         (__pbase_type_info::__do_catch): ... here. Adjust.
10279         (__pbase_type_info::__pointer_catch): Implement.
10280         (__pointer_type_info::__pointer_catch): Adjust.
10281         (__pointer_to_member_type_info::__pointer_catch): Adjust.
10282
10283 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
10284
10285         * tinfo.h (__user_type_info::contained_virtual_p): New
10286         predicate.
10287         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
10288         shaped hierarchy.
10289         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
10290         diamond shaped hierarchy. Add early out for mixed diamond and
10291         duplicate shaped hierarchy.
10292
10293 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
10294
10295         * cp-tree.h (build_delete): Change prototype.
10296         (build_vec_delete): Likewise.
10297         * call.c (build_scoped_method_call): Use special_function_kind
10298         values to indicate the kind of destruction to be done.
10299         (build_method_call): Likewise.
10300         * decl.c (finish_destructor_body): Likewise.
10301         (maybe_build_cleanup_1): Likewise.  Rename to ...
10302         (maybe_build_cleanup): ... this.
10303         * decl2.c (delete_sanity): Use special_function_kind
10304         values to indicate the kind of destruction to be done.
10305         (build_cleanup): Likewise.
10306         * init.c (perform_member_init): Likewise.
10307         (build_vec_delete_1): Likewise.
10308         (build_dtor_call): Simplify.
10309         (build_delete): Use special_function_kind
10310         values to indicate the kind of destruction to be done.
10311         (build_vbase_delete): Likewise.
10312         (build_vec_delete): Likewise.
10313
10314         * init.c (sort_member_init): Fix typo in error message generation
10315         code.
10316
10317 Mon May 15 11:46:29 2000  Donald Lindsay  <dlindsay@cygnus.com>
10318
10319         * semantics.c (begin_class_definition): make the packed
10320         attribute be sensitive to the "-fpack-struct" command line flag
10321
10322 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
10323
10324         Update new-abi upcast algorithm.
10325         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
10326         prototype and meaning of return value.
10327         (__si_class_type_info::__do_upcast): Likewise.
10328         (__vmi_class_type_info::__do_upcast): Likewise.
10329         * tinfo.cc (__class_type_info::__upcast_result): Replace
10330         whole2dst with part2dst. Adjust ctor.
10331         (__class_type_info::__do_upcast): Adjust call of worker function.
10332         (__class_type_info::__do_upcast): Adjust.
10333         (__si_class_type_info::__do_upcast): Adjust. Use parent's
10334         __do_upcast.
10335         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
10336         virtual base in diamond hierarchy bug.
10337
10338 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
10339
10340         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
10341         and bitfield to tinfo_fn_p.
10342         (DECL_TINFO_FN_P): Adjust.
10343         (SET_DECL_TINFO_FN_P): Likewise.
10344         (DECL_MUTABLE_P): Likewise.
10345         (DECL_C_BIT_FIELD): Likewise.
10346         (SET_DECL_C_BIT_FIELD): Likewise.
10347         (CLEAR_DECL_C_BIT_FIELD): Likewise.
10348         (DECL_UNINLINABLE): Likewise.
10349         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
10350         (handle_using_decl): Remove assertion.
10351         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
10352         to build FIELD_DECLs.
10353         (build_base_field): Likewise.
10354         (layout_class_type): Likewise.
10355         * decl.c (init_decl_processing): Likewise.
10356         (build_ptrmemfunc_type): Likewise.
10357         (grokdeclarator): Likewise.
10358         * decl2.c (grok_x_components): Likewise.
10359         * except.c (call_eh_info): Likewise.
10360         * init.c (init_init_processing): Likewise.
10361         * rtti.c (expand_class_desc): Likewise.
10362         (create_pseudo_type_info): Likewise.
10363         (get_vmi_pseudo_type_info): Likewise.
10364         (create_tinfo_types): Likewise.
10365         * ptree.c (print_lang_decl): Adjust.
10366         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
10367         before checking DECL_MUTABLE_P.
10368
10369         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
10370         parameters for template functions.
10371         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
10372         destructors as well as constructors.
10373
10374 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
10375
10376         * class.c (build_ctor_vtbl_group): Set inits.
10377         * optimize.c (maybe_clone_body): Set DECL_INLINE and
10378         DECL_THIS_INLINE appropriately for clones.
10379
10380         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
10381         (DECL_CONV_FN_P): Simplify.
10382         (DECL_OPERATOR): Remove.
10383         (language_to_string): Declare.
10384         * decl.c (duplicate_decls): Fix typo in comment.
10385         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
10386         (grok_op_properties): Use DECL_CONV_FN_P instead of
10387         IDENTIFIER_TYPENAME_P.
10388         * dump.c (dequeue_and_dump): Dump the language linkage of
10389         declarations.
10390         * error.c (language_to_string): Give it external linkage.
10391         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
10392         (implicitly_declare_fn): Set DECL_LANGUAGE.
10393         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
10394         IDENTIFIER_TYPENAME_P.
10395         (tsubst_decl): Likewise.
10396         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
10397         * semantics.c (finish_member_declaration): Don't mark members of
10398         classes declared in an extern "C" region as extern "C".
10399
10400 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10401
10402         * decl2.c (qualified_lookup_using_namespace): Look through
10403         namespace aliases.
10404
10405         * decl.c (push_using_decl): Return the old decl on namespace level.
10406
10407 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
10408
10409         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
10410         (VTT_NAME_PREFIX): New macro.
10411         (CTOR_VTBL_NAME_PREFIX): Likewise.
10412         (get_ctor_vtbl_name): New function.
10413         * class.c (get_vtable_name): Simplify.
10414         (get_vtt_name): New function.
10415         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
10416         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
10417         when a virtual base becomes primary.
10418         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
10419         VTTs.
10420         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
10421         additional parameters.
10422         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
10423         (initialize_array): New function.
10424         (build_vtt): Likewise.
10425         (build_vtt_inits): Likewise.
10426         (dfs_build_vtt_inits): Likewise.
10427         (dfs_fixup_binfo_vtbls): Likewise.
10428         (build_ctor_vtbl_group): Likewise.
10429         (initialize_vtable): Use initialize_array.
10430         (accumulate_vtbl_inits): Reimplement to handle construction
10431         vtables.
10432         (dfs_accumulate_vtbl_inits): Likewise.
10433         (bulid_vtbl_initializer): Adjust parameter name.
10434         * method.c (build_typename_overload): Remove #if 0'd code.
10435         (get_ctor_vtbl_name): New function.
10436         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
10437         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
10438
10439         * cp-tree.h (struct lang_type): Remove search_slot.
10440         (CLASSTYPE_SEARCH_SLOT): Remove.
10441         (emit_base_init): Change prototype.
10442         (initialize_vtbl_ptrs): Likewise.
10443         (expand_indirect_vtbls_init): Likewise.
10444         (clear_search_slots): Remove.
10445         * decl.c (lang_mark_tree): Don't mark search_slot.
10446         * init.c (initialize_vtbl_ptrs): Simplify.
10447         (emit_base_init): Likewise.
10448         * search.c (struct vbase_info): Document decl_ptr.
10449         (convert_pointer_to_single_level): Remove.
10450         (dfs_find_vbases): Remove.
10451         (dfs_init_base_pointers): Simplify.
10452         (dfs_clear_vbase_slots): Remove.
10453         (dfs_vtable_path_unmark): New function.
10454         (init_vbase_pointers): Simplify.
10455         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
10456         (expand_indirect_vtbls_init): Simplify.  Don't call
10457         mark_all_temps_used.
10458         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
10459         initialize_vtbl_ptrs.
10460
10461 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
10462
10463         * except.c: Add static prototypes.
10464
10465 2000-05-20  H.J. Lu  <hjl@gnu.org>
10466
10467         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
10468
10469 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
10470
10471         Don't create a separate copy of virtual bases for the
10472         CLASSTYPE_VBASECLASSES list.
10473         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
10474         (BINFO_FOR_VBASE): Remove.
10475         (CANONICAL_BINFO): Adjust.
10476         (binfo_for_vbase): New function.
10477         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
10478         instead of BINFO_FOR_VBASE.
10479         (build_vbase_pointer): Likewise.
10480         (build_secondary_vtable): Likewise.
10481         (dfs_mark_primary_bases): Likewise.
10482         (mark_primary_bases): Likewise.
10483         (layout_nonempty_base_or_field): Likewise.
10484         (dfs_set_offset_for_shared_vbases): Likewise.
10485         (dfs_set_offset_for_unshared_vbases): Likewise.
10486         (layout_virtual_bases): Likewise.  Adjust for changes to the
10487         CLASSTYPE_VBASECLASSES list.
10488         (dump_class_hierarchy_r): Use binfo_for_vbase
10489         instead of BINFO_FOR_VBASE.
10490         (dump_class_hierarchy): Likewise.
10491         (finish_vtbls): Likewise.
10492         (build_vtbl_initializer): Adjust for changes to the
10493         CLASSTYPE_VBASECLASSES list.
10494         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
10495         * decl.c (finish_destructor_body): Adjust for changes to the
10496         CLASSTYPE_VBASECLASSES list.
10497         * init.c (sort_base_init): Use binfo_for_vbase.
10498         (construct_virtual_bases): Adjust for changes to the
10499         CLASSTYPE_VBASECLASSES list.
10500         (expand_member_init): Use binfo_for_vbase.
10501         (build_vbase_delete):  Adjust for changes to the
10502         CLASSTYPE_VBASECLASSES list.
10503         * method.c (do_build_copy_constructor): Likewise.
10504         * rtti.c (get_base_offset): Use binfo_for_vbase.
10505         (expand_class_desc): Remove #if 0'd code.
10506         * search.c (struct vbase_info): Remove vbase_types.
10507         (get_base_distance):  Use binfo_for_vbase.
10508         (lookup_field_queue_p): Use CANONICAL_BINFO.
10509         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
10510         (get_pure_virtuals): Adjust for changes to the
10511         CLASSTYPE_VBASECLASSES list.
10512         (dfs_find_vbases): Use binfo_for_vbase.
10513         (dfs_init_vbase_pointers): Likewise.
10514         (init_vbase_pointers): Don't initialize vi.vbase_types.
10515         (virtual_context): Use binfo_for_vbase.
10516         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
10517         CLASSTYPE_VBASECLASSES list.
10518         (expand_indirect_vtbls_init): Simplify.
10519         (dfs_get_vbase_types): Don't replicate virtual bases.
10520         (find_vbase_instance): Use binfo_for_vbase.
10521         (binfo_for_vbase): New function.
10522         * typeck.c (get_delta_difference): Use binfo_for_vbase.
10523
10524 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
10525
10526         * decl2.c (finish_anon_union): Generalize error messages to handle
10527         anonymous structures.
10528         * init.c (perform_member_init): Remove `name' parameter.
10529         (build_field_list): New function.
10530         (sort_member_init): Handle anonymous union initialization order
10531         correctly.  Check for multiple initializations of the same union.
10532         (emit_base_init): Don't look up fields by name here.
10533         (expand_member_init): Record the result of name lookup for future
10534         reference.
10535         * typeck.c (build_component_ref): Fix formatting.
10536
10537 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
10538
10539         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
10540         * typeck.c (build_x_compound_expr): Replace warn_unused with
10541         warn_unused_value.
10542
10543         * decl2.c (lang_decode_option): Update -Wall unused flags by
10544         calling set_Wunused.
10545
10546 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
10547
10548         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
10549         * init.c (dfs_vtable_path_unmark): Remove.
10550         * search.c (marked_new_vtable_p): Likewise.
10551         (unmarked_new_vtable_p): Likewise.
10552         (dfs_search_slot_nonempty_p): Likewise.
10553         (dfs_mark): Likewise.
10554         (dfs_vtable_path_unmark): Likewise.
10555         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
10556         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
10557         (dfs_init_vbase_pointers): Remove special-case new ABI code.
10558         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
10559         (init_vbase_pointers): Simplify.
10560         (expand_indirect_vtbls_init): Likewise.
10561
10562         * class.c (copy_virtuals): New function.
10563         (build_primary_table): Use it.
10564         (build_secondary_vtable): Likewise.
10565         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
10566         indicate that no vcall offset is required.
10567         (add_virtual_function): Likewise.
10568         (modify_all_vtables): Likewise.
10569         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
10570         (dfs_accumulate_vtbl_inits): Likewise.
10571         (build_vtbl_initializer): Make changes to handle construction
10572         vtables.
10573         (dfs_build_vcall_offset_vtbl_entries): Likewise.
10574         (build_rtti_vtbl_entries): Likewise.
10575         (build_vtable_entries): Handle a NULL vcall_index.
10576
10577 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
10578
10579         * decl2.c (lang_decode_option): Fix thinko.
10580
10581 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
10582
10583         * except.c (check_handlers): New fn.
10584         * cp-tree.h: Declare it.
10585         * semantics.c (finish_handler_sequence): Call it.
10586         (finish_function_handler_sequence): Likewise.
10587         (finish_handler_parms): Set TREE_TYPE on the handler.
10588         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
10589         * search.c (get_base_distance_recursive): If protect>1, ignore
10590         special access.
10591         (get_base_distance): Don't reduce watch_access.
10592
10593 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
10594
10595         * lex.c: #include diagnostic.h.
10596         (lang_init_options): Set default prefixing rules.
10597
10598         * lang-options.h: Add -fdiagnostics-show-location=.
10599
10600         * decl2.c: #include diagnostic.h.
10601         (lang_decode_option): Handle -fdiagnostics-show-location=.
10602
10603 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
10604
10605         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
10606         * vec.cc: Revert my 2000-05-07 change.
10607
10608 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
10609
10610         * class.c (check_field_decls): Complain about non-static data
10611         members with same name as class in class with constructor.
10612
10613 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
10614
10615         * decl.c (grokdeclarator): Allow non-static data members with
10616         same name as class.
10617
10618 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
10619
10620         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
10621         and pending_inline.filename.  Update prototypes.
10622         * decl.c (define_label): Constify filename parameter.
10623         * decl2.c (warn_if_unknown_interface): Constify local char *.
10624         * input.c Constify input_source.filename. Don't declare
10625         input_filename or lineno.  Constify filename parameter to feed_input.
10626         * lex.c (init_parse): Constify parameter and return value.
10627         (cp_pragma_interface, cp_pragma_implementation): Constify
10628         filename argument.
10629         (reinit_parse_for_method, reinit_parse_for_block,
10630         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
10631         Constify local char *.
10632         * pt.c: Don't declare lineno or input_filename.
10633         (print_template_context, tsubst_friend_function, tsubst_decl,
10634         tsubst, instantiate_decl): Constify local char *.
10635         * semantics.c (expand_body): Constify local char *.
10636         * tree.c (build_srcloc): Constify filename parameter.
10637         * typeck.c (c_expand_asm_operands): Constify filename
10638         parameter.
10639
10640 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
10641
10642         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
10643         offsetof expansion.
10644
10645 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
10646
10647         * inc/cxxabi.h:  Fix typos in comment.
10648         (__base_class_info::__offset): Use a static_cast.
10649
10650 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
10651
10652         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
10653         of std::size_t and std::ptrdiff_t respectively.
10654         * tinfo.cc: Likewise.
10655         * vec.cc: Likewise.
10656
10657 2000-05-06  Richard Henderson  <rth@cygnus.com>
10658
10659         * typeck.c (build_c_cast): Don't warn integer->pointer size
10660         mismatch for constants.
10661
10662 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
10663
10664         * rtti.c (ptmd_initializer): Set non-public, if class is
10665         incomplete.
10666
10667         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
10668         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10669         __cxa_vec_delete): Likewise.
10670         * tinfo.cc (__dynamic_cast): Likewise.
10671         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10672         __cxa_vec_delete): Likewise.
10673
10674 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10675
10676         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
10677         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
10678         (lang_decl_flags): Add vcall_offset.
10679         (THUNK_VCALL_OFFSET): Use it.
10680         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
10681         * method.c (make_thunk): Create the lang_decl here, not in
10682         emit_thunk.
10683         (emit_thunk): Make generic thunks into ordinary functions once
10684         they have been fed to expand_body.
10685         * semantics.c (expand_body): Set current_function_is_thunk here.
10686
10687 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10688
10689         * class.c (update_vtable_entry_for_fn): Prototype.
10690
10691         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
10692         and `tmpl'.
10693
10694         * search.c (dfs_build_inheritance_graph_order): Prototype.
10695
10696 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10697
10698         * cp-tree.h (special_function_kind): Add various kinds of
10699         destructors.
10700         (special_function_p): New function.
10701         * class.c (overrides): Don't let one kind of destructor override
10702         another.
10703         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
10704         whether or not to instantiate a template.
10705         * tree.c (special_function_p): Define.
10706
10707 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
10708
10709         * cp-tree.def (THUNK_DECL): Remove.
10710         * cp-tree.h (DECL_THUNK_P): New macro.
10711         (DECL_NON_THUNK_FUNCTION_P): Likewise.
10712         (DECL_EXTERN_C_FUNCTION_P): Likewise.
10713         (SET_DECL_THUNK_P): Likewise.
10714         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
10715         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
10716         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
10717         * decl.c (decls_match): Use DECL_EXTERN_C_P.
10718         (duplicate_decls): Likewise.
10719         (pushdecl): Likewise.  Adjust thunk handling.
10720         (grokfndecl): Use DECL_EXTERN_C_P.
10721         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
10722         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
10723         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
10724         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
10725         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
10726         DECL_NO_STATIC_CHAIN.
10727         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
10728         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
10729         * search.c (covariant_return_p): Remove THUNK_DECL handling.
10730         * ir.texi: Update.
10731
10732 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10733
10734         * tree.c (walk_tree): Set lineno.
10735
10736 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10737
10738         * exception.cc: Update license notice.
10739         * new.cc: Likewise.
10740         * new1.cc: Likewise.
10741         * new2.cc: Likewise.
10742         * tinfo.cc: Likewise.
10743         * tinfo2.cc: Likewise.
10744         * vec.cc: Likewise.
10745         * inc/cxxabi.h: Likewise.
10746         * inc/exception: Likewise.
10747         * inc/new: Likewise.
10748         * inc/new.h: Likewise.
10749         * inc/typeinfo: Likewise.
10750
10751 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10752
10753         * tree.c (build_target_expr_with_type): If we already have a
10754         TARGET_EXPR, just return it.
10755
10756         * optimize.c (initialize_inlined_parameters): Don't generate an
10757         EXPR_STMT if we can just use DECL_INITIAL.
10758         * decl.c (emit_local_var): Only make the initialization a
10759         full-expression if stmts_are_full_exprs_p.
10760
10761 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10762
10763         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
10764         macro.
10765         * call.c (standard_conversion): Use it.
10766         (direct_reference_binding): Likewise.
10767         (build_over_call): Likewise.
10768         (is_properly_derived_from): Likewise.
10769         (compare_ics): Likewise.
10770         * class.c (resolves_to_fixed_type_p): Likewise.
10771         * optimize.c (declare_return_variable): Likewise.
10772         * pt.c (is_specialization_of): Likewise.
10773         (unify): Likewise.
10774         * typeck.c (comp_target_parms): Likeiwse.
10775         (build_static_cast): Likewise.
10776         (build_reinterpret_cast): Likewise.
10777         (build_const_cast): Likewise.
10778         (comp_ptr_ttypes_real): Likewise.
10779         (comp_ptr_ttypes_const): Likewise.
10780         * typeck2.c (process_init_constructor): Likewise.
10781
10782 2000-04-30  Scott Snyder <snyder@fnal.gov>
10783
10784         * decl.c (finish_destructor_body): Use the base destructor when
10785         destroying virtual bases.
10786
10787 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
10788
10789         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
10790         STMT_EXPRs.
10791         * optimize.c (struct inline_data): Add target_exprs field.
10792         (declare_return_variable): When a function returns an aggregate,
10793         use the variable declared in the TARGET_EXPR as the remapped
10794         DECL_RESULT.
10795         (expand_call_inline): Update the pending target_exprs stack.
10796         (optimize_function): Initialize the stack.
10797
10798         * decl2.c (finish_file): Fix typo in comment.
10799
10800         * method.c (emit_thunk): Don't try to return a `void' value.
10801
10802         * optimize.c (initialize_inlined_parameters): If the parameter is
10803         addressable, we need to make a new VAR_DECL, even if the
10804         initializer is constant.
10805
10806 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
10807
10808         * decl.c (grok_op_properties): Add an extra check of argtypes.
10809
10810 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
10811
10812         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
10813         variables.
10814         (initialize_inlined_parameters): Try to avoid creating new
10815         VAR_DECLs.
10816
10817 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
10818
10819         * lex.c (my_get_run_time): Remove.
10820         (init_filename_times): Use get_run_time instead of my_get_run_time.
10821         (check_newline): Likewise.
10822         (dump_time_statistics): Likewise.
10823         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
10824         of computing elapsed time explicitly.
10825
10826 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
10827
10828         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
10829         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
10830         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
10831         before calling decl_constant_value.
10832         * class.c (check_bitfield_decl): Likewise.
10833         * cvt.c (ocp_convert): Likewise.
10834         (convert): Likewise.
10835         * decl.c (compute_array_index_type): Likewise.
10836         (build_enumerator): Likewise.
10837         * decl2.c (check_cp_case_value): Likewise.
10838         * pt.c (convert_nontype_argument): Likewise.
10839         (tsubst): Likewise.
10840         * typeck.c (decay_conversion): Likewise.
10841         (build_compound_expr): Likewise.
10842         (build_reinterpret_cast): Likewise.
10843         (build_c_cast): Likewise.
10844         (convert_for_assignment): Likewise.
10845
10846 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
10847
10848         * decl.c (finish_function): Don't play games with DECL_INLINE.
10849
10850 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
10851
10852         * ir.texi: Correct typo.
10853
10854 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10855
10856         * decl.c (grokdeclarator): Reject VLAs as members.
10857
10858 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
10859
10860         * call.c (standard_conversion): Accept conversion between
10861         COMPLEX_TYPEs.
10862
10863         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
10864
10865 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
10866
10867         * decl2.c (finish_file): Remove double setup for accounting
10868         compile time.
10869
10870 2000-04-24  Robert Lipe <robertlipe@usa.net>
10871
10872         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
10873
10874 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
10875
10876         * new.cc (set_new_handler): Needs to be in std::.
10877
10878 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
10879
10880         * cp-tree.h (lang_decl): Remove pretty_function_p.
10881         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
10882         language-specific node.
10883         * decl.c (cp_make_fname_decl): Use build_decl, not
10884         build_lang_decl, to build the variables.
10885         (grokvardecl): Don't call build_lang_decl for local variables in
10886         templates.
10887         (grokdeclarator): Don't call build_lang_decl for local type
10888         declarations in templates.
10889         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
10890         zero'd memory, rather than calling memset.
10891         * pt.c: Include hashtab.h.
10892         (local_specializations): New variable.
10893         (retrieve_local_specialization): Use it.
10894         (register_local_specialization): Likewise.
10895         (tsubst_decl): Don't assume local variables have
10896         DECL_LANG_SPECIFIC.
10897         (instantiate_decl): Set up local_specializations.
10898         * Makefile.in (HTAB_H): New variable.
10899
10900 2000-04-23  Richard Henderson  <rth@cygnus.com>
10901
10902         * typeck.c (c_expand_asm_operands): Restore the original
10903         contents of the output list.
10904
10905 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
10906
10907         * ir.texi:  Document complex number representation.
10908
10909 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
10910
10911         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
10912         (target_incomplete_p): New function.
10913         (tinfo_base_init): Create comdat NTBS name variable.
10914         (ptr_initializer): Add non_public parameter. Calculate it.
10915         (ptmd_initializer): Likewise.
10916         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
10917         (create_real_tinfo_var): Add non_public parameter. Use it.
10918         Push proxy into global namespace.
10919         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
10920         New enumeration.
10921         * inc/typeinfo (type_info::before, type_info::operator==):
10922         Compare __name addresses.
10923
10924         * tinfo2.cc: Remove new-abi builtins comment.
10925
10926 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
10927
10928         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
10929
10930         * call.c (joust): Exit early if we get the same function, too.
10931
10932         * decl2.c (key_method): Return NULL_TREE for template classes.
10933         (import_export_class): Don't need to check for template classes.
10934
10935 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
10936
10937         * lex.c: Remove references to cccp.c.
10938
10939 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
10940
10941         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
10942         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
10943         (DECL_DESTRUCTOR_P): Use destructor_attr.
10944         (DECL_CONST_MEMFUNC_P): Reimplement.
10945         (DECL_VOLATILE_MEMFUNC_P): Remove.
10946         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
10947         (overrides): Use DECL_DESTRUCTOR_P.
10948         (check_for_override): Likewise.
10949         * decl.c (start_function): Likewise.
10950         * decl2.c (grokfclassfn): Likewise.
10951         (check_classfn): Likewise.
10952         (grok_function_init): Likewise.
10953
10954 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
10955
10956         * decl2.c (grokfield): Issue error on illegal data member
10957         declaration.
10958
10959 Mon Apr 17 17:11:16 2000  Mark P Mitchell  <mark@codesourcery.com>
10960
10961         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
10962
10963 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
10964
10965         * class.c (build_vtable_entry): Don't build thunks for type-info
10966         functions.
10967
10968 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
10969
10970         * decl.c (decls_match): Allow a redeclaration of a builtin to
10971         specify args while the builtin did not.
10972
10973 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
10974
10975         * cp-tree.def (THUNK_DECL): Add to documentation.
10976         * cp-tree.h (flag_huge_objects): Declare.
10977         * class.c (modify_vtable_entry): Tidy.
10978         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
10979         Calculate delta appropriately for the new ABI.
10980         (dfs_modify_vtables): Use it.
10981         (modify_all_vtables): Fix thinko in code to add overriding copies
10982         of functions to primary vtables.
10983         (build_clone): Fix typo in comment.
10984         (clone_function_decl): Correct order of destructors in vtable.
10985         (build_vbase_offset_vtbl_entries): Adjust comment.
10986         (dfs_vcall_offset_queue_p): Remove.
10987         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
10988         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
10989         (build_vtable_entry): Correct check for pure virtual functions.
10990         Don't declare flag_huge_objects.
10991         * decl.c (flag_huge_objects): Remove declaration.
10992         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
10993         Use int_size_in_bytes.
10994         (emit_thunk): Handle vcall offset thunks.
10995
10996 Sat Apr 15 16:00:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10997
10998         * decl2.c (parse_time, varconst_time): Delete declarations.
10999         (finish_file): Delete LINENO declaration.
11000         START_TIME and THIS_TIME now long.
11001
11002 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
11003
11004         * class.c (build_base_field): Reformat comment.
11005
11006         * inc/cxxabi.h (stddef.h): Comment inclusion.
11007         (__base_class_info::__offset): Comment shift.
11008
11009 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
11010
11011         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
11012         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
11013         (cp_push_exception_identifier): New macro.
11014         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
11015         (DECL_BASE_DESTRUCTOR_P): Likewise.
11016         (DECL_DELETING_DESTRUCTOR_P): Likewise.
11017         (get_vtbl_decl_for_binfo): Fix formatting.
11018         (in_charge_arg_for_name): New macro.
11019         (maybe_build_cleanup_and_delete): Remove declaration.
11020         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
11021         (in_charge_arg_for_name): New function.
11022         (build_new_method_call): Use it.  Handle cloned destructors.
11023         (build_clone): Don't make the base constructor virtual.
11024         Automatically defer generated functions.
11025         (clone_function_decl): Handle destructors, too.
11026         (clone_constructors_and_destructors): Likewise.
11027         (create_vtable_ptr): Don't create a vtable entry for a cloned
11028         function.
11029         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
11030         (initialize_predefined_identifiers): Update appropriately.
11031         (finish_destructor_body): Simplify.
11032         (maybe_build_cleanup_and_delete): Remove.
11033         * except.c (expand_throw): Handle new-ABI destructors.
11034         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
11035         (build_dtor_call): New function.
11036         (build_delete): Use it.  Simplify.
11037         * optimize.c (maybe_clone_body): Handle destructors.
11038         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
11039
11040         * exception.cc (cleanup_fn): New typedef.
11041         (CALL_CLEANUP): New macro.
11042         (cp_eh_info): Use them.
11043         (__cp_push_exception): Likewise.
11044         (__cp_pop_exception): Likewise.
11045
11046 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
11047
11048         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
11049         (complete_dtor_identifier): New macro.
11050         (CLASSTYPE_FIRST_CONVERSION): Remove.
11051         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
11052         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
11053         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
11054         (CLASSTYPE_CONSTRUCTORS): Likewise.
11055         (CLASSTYPE_DESTRUCTORS): Likewise.
11056         (lang_decl): Add cloned_function.
11057         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
11058         (DECL_BASE_CONSTRUCTOR_P): Likewise.
11059         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
11060         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
11061         (DECL_CLONED_FUNCTION_P): Likewise.
11062         (DECL_CLONED_FUNCTION): Likewise.
11063         (clone_function_decl): Declare.
11064         (maybe_clone_body): Likewise.
11065         * call.c (build_user_type_conversion_1): Call complete object
11066         constructors in the new ABI.
11067         (build_new_method_call): Don't add in-charge parameters under the
11068         new ABI.
11069         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
11070         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
11071         CLASSTYPE_DESTRUCTOR_SLOT.
11072         (build_clone): New function.
11073         (clone_function_decl): Likewise.
11074         (clone_constructors_and_destructors): Likewise.
11075         (check_bases_and_members): Use it.
11076         * decl.c (iniitialize_predefined_identifiers): Initialize
11077         complete_dtor_identifier.
11078         (finish_function): Don't add extra code to a clone.
11079         (lang_mark_tree): Mark cloned_function.
11080         * decl2.c (mark_used): Don't bother trying to instantiate things
11081         we synthesized.
11082         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
11083         * method.c (set_mangled_name_for_decl): Don't treat clones as
11084         constructors.
11085         (synthesize_method): Sythesize cloned functions, not the clones.
11086         * optimize.c (inline_data): Update comment on ret_label.
11087         (remap_block): Don't assume DECL_INITIAL exists.
11088         (copy_body_r): Allow ret_label to be NULL.
11089         (maybe_clone_body): Define.
11090         * pt.c (tsubst_decl): Handle clones.
11091         (instantiate_clone): New function.
11092         (instantiate_template): Use it.
11093         (set_mangled_name_for_template_decl): Don't treat clones as
11094         constructors.
11095         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
11096         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
11097         * semantics.c (expand_body): Clone function bodies as necessary.
11098
11099         * optimize.c (remap_decl): Avoid sharing structure for arrays
11100         whose size is only known at run-time.
11101         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
11102
11103         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
11104         to has_in_charge_parm_p.
11105         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
11106         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
11107         (DECL_COPY_CONSTRUCTOR_P): New macro.
11108         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
11109         (build_user_type_conversion_1): Likewise.
11110         (convert_like_real): Likewise.
11111         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
11112         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
11113         (copy_args_p): Likewise.
11114         (grok_ctor_properties): Likewise.
11115         (start_function): Likewise.
11116         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
11117         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
11118         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
11119         * method.c (do_build_copy_constructor): Use
11120         DECL_HAS_IN_CHARGE_PARM_P.
11121         (synthesize_method): Likewise.
11122         * pt.c (instantiate_template): Remove goto.
11123         * tree.c (build_cplus_method_type): Remove mention of obstacks in
11124         comment.
11125
11126         * cp-tre.h (finish_function): Change prototype.
11127         * decl.c (end_cleanup_fn): Adjust caller.
11128         (finish_function): Take only one parameter.
11129         * decl2.c (finish_objects): Adjust caller.
11130         (finish_static_storage_duration_function): Likewise.
11131         * method.c (emit_thunk): Likewise.
11132         * parse.y: Likewise.
11133         * parse.c: Regenerated.
11134         * pt.c (instantiate_decl): Likewise.
11135         * rtti.c (synthesize_tinfo_fn): Likewise.
11136         * semantics.c (expand_body): Likewise.
11137
11138         * cp-tree.h (copy_decl): New function.
11139         * class.c (finish_struct_1): Use it.
11140         * lex.c (copy_decl): Define it.
11141         * pt.c (tsubst_decl): Likewise.
11142         * tree.c (copy_template_template_parm): Likewise.
11143
11144         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
11145         has_nonpublic_assign_ref.
11146         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
11147         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
11148         * class.c (finish_struct_methods): Don't set
11149         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
11150         (interface_only): Don't declare.
11151         (interface_unknown): Likewise.
11152
11153 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11154
11155         * tree.h (HAVE_TEMPLATES): Remove definition.
11156         * lang-options.h (-fthis-is-variable): Remove documentation.
11157
11158 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
11159
11160         * class.c (instantiate_type): Handle object-relative template-id.
11161
11162         * semantics.c (finish_expr_stmt): Call convert_to_void here.
11163         * decl.c (cplus_expand_expr_stmt): Not here.
11164
11165         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
11166         Initialize exprtype earlier.
11167
11168         * parse.y (fn.def1): Check for defining types in return types.
11169
11170         * decl.c (check_tag_decl): Notice extra fundamental types.
11171         Diagnose empty decls in classes, too.
11172
11173         * decl.c (grokdeclarator): Don't override an anonymous name if no
11174         declarator was given.
11175
11176         * cvt.c (convert_to_void): Call resolve_offset_ref.
11177
11178         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
11179
11180         * decl2.c (decl_namespace): Handle getting a type.
11181
11182         * typeck.c (build_c_cast): Re-enable warning for cast between
11183         pointer and integer of different size.
11184
11185 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
11186
11187         * inc/cxxabi.h (__pointer_type_info): Add restrict and
11188         incomplete flags.
11189         (__pointer_type_info::__pointer_catch): New virtual function.
11190         (__pointer_to_member_type_info): Derive from
11191         __pointer_type_info. Adjust.
11192         (__pointer_to_member_type_info::__do_catch): Remove.
11193         (__pointer_to_member_type_info::__is_pointer_p): Declare.
11194         (__pointer_to_member_type_info::__pointer_catch): Declare.
11195         * rtti.c (qualifier_flags): Add restrict flag.
11196         (ptmd_initializer): Reorder members.
11197         (create_tinfo_types): Expand comments. Reorder
11198         ptmd_desc_type_node members.
11199         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
11200         Implement.
11201         (__pointer_type_info::__do_catch): Move specific code into
11202         __pointer_catch. Call it.
11203         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
11204         specific catch checking. Fix void conversion check.
11205         (__pointer_to_member_type_info::__do_catch): Remove.
11206         (__pointer_to_member_type_info::__pointer_catch): Implement.
11207
11208 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11209
11210         * lex.c (init_parse): Remove traces of classof and headof.
11211         * decl2.c (flag_operator_names): Default to 1.
11212         (lang_decode_option): Do not set it for -ansi.
11213
11214 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
11215
11216         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
11217         (DECL_MAIN_VARIANT): Remove.
11218         * decl.c (duplicate_decls): Don't set it.
11219         (start_function): Likewise.
11220         (lang_mark_tree): Don't mark it.
11221         * decl2.c (defer_fn): Don't use it.
11222         * lex.c (retrofit_lang_decl): Don't set it.
11223         * pt.c (tsubst_decl): Likewise.
11224         * ptree.c (print_lang_decl): Don't print it.
11225         * typeck.c (mark_addressable): Don't use it.
11226
11227 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
11228
11229         * vec.cc: Include <new> and <exception>.
11230         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
11231         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
11232         terminate.
11233         (__cxa_vec_delete): Catch dtor exceptions.
11234
11235 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
11236
11237         Prepend __ to implementation defined names.
11238         * inc/typeinfo (type_info): Rename _name to __name.
11239         (type_info::type_info): Rename parameter.
11240         (type_info::operator==, type_info::operator!=,
11241         type_info::before): Likewise.
11242         (type_info::is_pointer_p, type_info::is_function_p,
11243         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
11244         parameters.
11245         * inc/cxxabi.h
11246         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
11247         (__pointer_type_info::__pointer_type_info): Likewise.
11248         (__pointer_type_info::is_pointer_p,
11249         __pointer_type_info::do_catch): Prepend __. Rename parameters.
11250         (__array_type_info::__array_type_info): Rename parameters.
11251         (__function_type_info::__function_type_info): Likewise.
11252         (__function_type_info::is_function_p): Prepend __.
11253         (__enum_type_info::__enum_type_info): Rename parameters.
11254         (__pointer_to_member_type_info::__pointer_to_member_type_info):
11255         Likewise.
11256         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
11257         parameters.
11258         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
11259         (__class_type_info::__class_type_info): Rename parameters.
11260         (__class_type_info::sub_kind): Prepend __. Adjust member names.
11261         (__class_type_info::upcast_result,
11262         __class_type_info::dyncast_result): Prepend __. Move definition
11263         into tinfo.cc.
11264         (__class_type_info::do_upcast, __class_type_info::do_catch,
11265         __class_type_info::find_public_src,
11266         __class_type_info::do_dyncast,
11267         __class_type_info::do_find_public_src): Prepend __. Rename
11268         parameters.
11269         (__si_class_type_info::__si_class_type_info): Rename parameters.
11270         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
11271         __si_class_type_info::do_find_public_src): Prepent __. Rename
11272         parameters.
11273         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
11274         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
11275         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
11276         parameters.
11277         (__dynamic_cast): Rename parameters.
11278         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
11279         type_info::do_catch, type_info::do_upcast): Prepend __.
11280         (contained_p, public_p, virtual_p, contained_public_p,
11281         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
11282         (__class_type_info::do_catch,
11283         __class_type_info::do_upcast): Prepend __. Adjust.
11284         (__class_type_info::__upcast_result,
11285         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
11286         Adjust.
11287         (__class_type_info::find_public_src): Prepend __. Adjust.
11288         (__class_type_info::do_find_public_src,
11289         __si_class_type_info::do_find_public_src,
11290         __vmi_class_type_info::do_find_public_src): Likewise.
11291         (__class_type_info::do_dyncast,
11292         __si_class_type_info::do_dyncast,
11293         __vmi_class_type_info::do_dyncast): Likewise.
11294         (__class_type_info::do_upcast,
11295         __si_class_type_info::do_upcast,
11296         __vmi_class_type_info::do_upcast): Likewise.
11297         (__dynamic_cast): Adjust.
11298         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
11299         (__function_type_info::is_function_p): Likewise.
11300         (__pointer_type_info::do_catch): Likewise. Adjust.
11301         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
11302         (__throw_type_match_rtti_2): Adjust.
11303         (__is_pointer): Adjust.
11304
11305 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
11306
11307         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
11308         (complete_ctor_identifier): New macro.
11309         (special_function_kind): Add sfk_copy_constructor and
11310         sfk_assignment_operator.
11311         (LOOKUP_HAS_IN_CHARGE): Remove.
11312         (cons_up_default_function): Rename to ...
11313         (implicitly_declare_fn): ... this.
11314         * call.c (build_new_method_call): Add in-charge parameters for
11315         constructors here.
11316         * class.c (add_implicitly_declared_members): Change parameter name
11317         from cant_have_assignment to cant_have_const_assignment.
11318         Replace calls to cons_up_default_function to implicitly_declare_fn.
11319         * cvt.c (ocp_convert): Use complete_ctor_identifier.
11320         * decl.c (initialize_predefined_identifiers): Initialize it.
11321         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
11322         complex expression.
11323         * init.c (expand_default_init): Don't calculate the in-charge
11324         parameter here.
11325         (build_new_1): Likewise.
11326         * lex.c (cons_up_default_function): Move to method.c.
11327         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
11328         (implicitly_declare_fn): New function.
11329         * typeck.c (build_static_cast): Use complete_ctor_identifier.
11330         (build_modify_expr): Likewise.
11331         * typeck2.c (build_functional_cast): Likewise.
11332
11333         Under the new ABI, constructors don't return `this'.
11334         * cp-tree.h (warn_reorder): Declare.
11335         (special_function_kind): New enum.
11336         (global_base_init_list): Remove declaration.
11337         (emit_base_init): Don't return a value.
11338         (check_base_init): Don't declare.
11339         (is_aggr_typedef): Likewise.
11340         * decl.c (check_special_function_return_type): New function.
11341         (return_types): Remove.
11342         (grokdeclarator): Use check_special_function_return_type.
11343         (start_function): Don't initialize ctor_label under the new ABI.
11344         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
11345         * init.c (begin_init_stmts): Move to top of file.
11346         (finish_init_stmts): Likewise.
11347         (warn_reorder): Don't declare.
11348         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
11349         value.
11350         (check_base_init): Remove.
11351         (is_aggr_typedef): Likewise.
11352         (build_new_1): Don't use the return value of a constructor.
11353         * semantics.c (setup_vtbl_ptr): Don't use the return value
11354         of emit_base_init.
11355         * typeck.c (check_return_expr): Don't magically convert return
11356         statements into `return this' in constructors under the new ABI.
11357
11358         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
11359         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
11360         (base_ctor_identifier): New macro.
11361         (base_dtor_identifier): Likewise.
11362         (deleting_dtor_identifier): Likewise.
11363         * decl.c: Don't include obstack.h.
11364         (obstack_chunk_alloc): Don't define.
11365         (obstack_chunk_free): Likewise.
11366         (struct predefined_identifier): New type.
11367         (initialize_predefined_identifiers): New function.
11368         (init_decl_processing): Use it.
11369         (debug_temp_inits): Remove.
11370         (start_method): Don't call preserve_data.
11371         (hack_incomplete_structures): Update comment.
11372         * init.c (init_init_processing): Don't initialize
11373         nelts_identifier.
11374         (build_offset_rf): Remove dead code.
11375         (build_delete): Use CLASSTYPE_N_BASECLASSES.
11376         * search.c (init_search_processing): Don't initialize
11377         vptr_identifier.
11378
11379 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11380
11381         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
11382         some sign_compare warnings.
11383
11384 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
11385
11386         Rename abi::__vmi_class_type_info members.
11387         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
11388         base_list, detail_masks members to vmi_flags, vmi_base_count,
11389         vmi_bases and vmi_flags_masks respectively.
11390         (__vmi_class_type_info::vmi_flags_masks): Rename
11391         details_unknown_mask to flags_unknown_mask.
11392         * tinfo.cc (__class_type_info::do_upcast): Adjust.
11393         (__vmi_class_type_info::do_find_public_src): Adjust.
11394         (__vmi_class_type_info::do_dyncast): Adjust.
11395         (__vmi_class_type_info::do_upcast): Adjust.
11396
11397 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
11398
11399         * tinfo.cc (convert_to_base): New function.
11400         (get_vbase_offset): Remove. Move into convert_to_base.
11401         (__vmi_class_type_info::do_find_public_src): Adjust.
11402         (__vmi_class_type_info::do_dyncast): Adjust.
11403         (__vmi_class_type_info::do_upcast): Adjust.
11404
11405 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
11406
11407         * tinfo.cc (operator=): Use __builtin_strcmp.
11408         * tinfo2.cc (before): Likewise.
11409
11410 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
11411
11412         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
11413         (DECL_SAVED_INLINE): Rename to ...
11414         (DECL_DEFERRED_FN): ... this.
11415         (in_function_p): Remove declaration.
11416         (mark_inline_for_output): Rename to ...
11417         (defer_fn): ... this.
11418         * decl.c (finish_function): Adjust call to mark_inline_for_output.
11419         (in_function_p): Remove definition.
11420         * decl2.c (saved_inlines): Rename to ...
11421         (deferred_fns): ... this.
11422         (saved_inlines_used): Rename to ...
11423         (deferred_fns_used): ... this.
11424         (mark_inline_for_output): Rename to ...
11425         (defer_fn): ... this.
11426         (finish_file): Adjust accordingly.
11427         (init_decl2): Likewise.
11428         * lex.c (cons_up_default_function): Likewise.
11429         * pt.c (mark_decl_instantiated): Likewise.
11430         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
11431         circumstances.
11432         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
11433         * semantics.c (expand_body): Defer more functions.
11434
11435 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
11436
11437         * vec.cc: New file.
11438         * Make-lang.in (CXX_LIB2FUNCS): Add it.
11439         (vec.o): Build it.
11440         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
11441         __cxa_vec_delete): Declare.
11442
11443 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
11444
11445         * rtti.c (dfs_class_hint_mark): New static function.
11446         (dfs_class_hint_unmark): New static function.
11447         (class_hint_flags): Use them.
11448
11449 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
11450
11451         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
11452
11453 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
11454
11455         * cp-tree.h (instantiate_decl): Change prototype.
11456         * decl2.c (mark_used): Adjust call.
11457         * optimize.c (inlinable_function_p): Adjust handling of templates.
11458         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
11459         (do_type_instantiation): Likewise.
11460         (instantiate_decl): Defer more templates.
11461         (instantiate_pending_templates): Adjust logic to handle inline
11462         friend functions.
11463
11464         * Makefile.in (GGC_H): New variable.  Use it throughout in place
11465         of ggc.h.
11466
11467         * call.c: Don't include obstack.h.  Include ggc.h.
11468         (obstack_chunk_alloc): Don't define.
11469         (obstack_chunk_free): Likewise.
11470         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
11471         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
11472         (pop_switch): Free it.
11473
11474         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
11475
11476         * dump.c (dequeue_and_dump): Don't try to print the bit_position
11477         if we don't have a DECL_FIELD_OFFSET.
11478
11479 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
11480
11481         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
11482         special_function_p.
11483
11484 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11485
11486         * cfns.gperf (hash, libc_name_p): Prototype.
11487
11488         * rtti.c (build_dynamic_cast_1): Constification.
11489
11490         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
11491
11492         * semantics.c (deferred_type_access_control): Prototype.
11493
11494 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
11495
11496         Correct many new ABI issues regarding vbase and vcall offset
11497         layout.
11498         * cp-tree.h (BINFO_VTABLE): Document.
11499         (struct lang_type): Tweak formatting.
11500         (BINFO_PRIMARY_BINFO): Add to documentation.
11501         (CLASSTYPE_VSIZE): Fix typo in comment.
11502         (CLASSTYPE_VBASECLASSES): Update documentation.
11503         (BINFO_VBASE_MARKED): Remove.
11504         (SET_BINFO_VBASE_MARKED): Likewise.
11505         (CLEAR_BINFO_VBASE_MARKED): Likewise.
11506         (BINFO_FIELDS_MARKED): Remove.
11507         (SET_BINFO_FIELDS_MARKED): Likewise.
11508         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
11509         (enum access_kind): New enumeration.
11510         (num_extra_vtbl_entries): Remove declaration.
11511         (size_extra_vtbl_entries): Likewise.
11512         (get_vtbl_decl_for_binfo): New function.
11513         (dfs_vbase_unmark): Remove declaration.
11514         (mark_primary_bases): Likewise.
11515         * class.c (SAME_FN): Remove.
11516         (struct vcall_offset_data_s): Move definition.
11517         (build_vbase_pointer): Use `build', not `build_binary_op', to
11518         access the vbase pointer under the new ABI.
11519         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
11520         (build_primary_vtable): Likewise.
11521         (dfs_mark_primary_bases): Move here from search.c.
11522         (mark_primary_bases): Likewise.
11523         (determine_primary_bases): Under the new ABI, don't make a base
11524         class a primary base just because we don't yet have any virtual
11525         functions.
11526         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
11527         (num_vfun_entries): Remove.
11528         (dfs_count_virtuals): Likewise.
11529         (num_extra_vtbl_entries): Likewise.
11530         (size_extra_vtbl_entries): Likewise.
11531         (layout_virtual_bases): Iterate in inheritance graph order under
11532         the new ABI.
11533         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
11534         indicate that a vfield is present.
11535         (init_class_processing): Initialize access_public_node, etc., from
11536         ak_public, etc.
11537         (get_vtbl_decl_for_binfo): New function.
11538         (dump_class_hierarchy_r): Likewise.
11539         (dump_class_hierarchy): Use it.
11540         (finish_vtbls): Build the vtbls in inheritance graph order.
11541         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
11542         (initialize_vtable): Use get_vtbl_decl_for_binfo.
11543         (accumulate_vtbl_inits): Add comments explaining why a pre-order
11544         walk is required.
11545         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
11546         where the vptr points, even for primary vtables.
11547         (build_vtbl_initializer): Adjust handling of vbase and vcall
11548         offsets.
11549         (build_vcall_and_vbase_vtable_entries): New function.
11550         (dfs_build_vbase_offset_vtbl_entries): Remove.
11551         (build_vbase_offset_vtbl_entries): Reimplement.
11552         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
11553         were already handled in a primary base class vtable.
11554         (build_vcall_offset_vtbl_entries): Adjust.
11555         (build_rtti_vtbl_entries): Adjust.
11556         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
11557         * init.c (expand_virtual_init): Simplify.
11558         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
11559         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
11560         * search.c (BINFO_ACCESS): New macro.
11561         (SET_BINFO_ACCESS): Likewise.
11562         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
11563         (access_in_type): Likewise.
11564         (dfs_accessible_p): Likewise.
11565         (protected_accessible_p): Likewise.
11566         (lookup_fnfields_1): Adjust documentation.
11567         (dfs_mark_primary_bases): Move to class.c
11568         (mark_primary_bases): Likewise.
11569         (dfs_vbase_unmark): Remove.
11570         (virtual_context): Use BINFO_FOR_VBASE.
11571         (dfs_get_vbase_types): Simplify.
11572         (dfs_build_inheritance_graph_order): New function.
11573         (get_vbase_types): Use it.
11574         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
11575
11576         * tinfo.cc (get_vbase_offset): New function.
11577         (__vmi_class_type_info::do_find_public_src): Use it.
11578         (__vmi_class_type_info::do_dyncast): Likewise.
11579         (__vmi_class_type_info::do_upcast): Likewise.
11580
11581 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
11582
11583         * lang-specs.h: Pass -fno-show-column to the preprocessor.
11584
11585 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
11586
11587         * rtti.c (class_hint_flags): Rename flags.
11588         (class_initializer): Remove flags.
11589         (synthesize_tinfo_var): Combine offset and flags. Add flags
11590         for __vmi_class_type_info.
11591         (create_tinfo_types): Remove flags from __class_type_info and
11592         __si_class_type_info. Merge flags and offset from
11593         base_class_type_info.
11594         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
11595         (__base_class_info::is_virtual_p): Adjust.
11596         (__base_class_info::is_public_p): Adjust.
11597         (__base_class_info::offset): New accessor.
11598         (__class_type_info::details): Remove member.
11599         (__class_type_info::__class_type_info): Lose details.
11600         (__class_type_info::detail_masks): Remove.
11601         (__si_class_type_info::__si_class_type_info): Lose details.
11602         (__vmi_class_type_info::details): New member.
11603         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
11604         (__vmi_class_type_info::detail_masks): New member.
11605         * tinfo.cc (__class_type_info::do_upcast): Initialize result
11606         with unknown_details_mask.
11607         (__vmi_class_type_info::do_find_public_src): Adjust
11608         (__vmi_class_type_info::do_dyncast): Adjust.
11609         (__vmi_class_type_info::do_upcast): Set result details, if
11610         needed. Adjust.
11611         (__dynamic_cast): Temporarily #if out optimization.
11612
11613 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
11614
11615         * rtti.c (get_tinfo_decl): Mark used.
11616         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
11617         mark as dealt with, if we output it.
11618
11619 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11620
11621         * class.c: Reorganize to put virtual function table initialization
11622         machinery at the end of the file.
11623
11624 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
11625
11626         * class.c (finish_struct): Use bitsize_zero_node.
11627         * pt.c (instantiate_class_template): Likewise.
11628
11629 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11630
11631         Put RTTI entries at negative offsets in new ABI.
11632         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
11633         vbase offset at index -3, not -1.
11634         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
11635         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
11636         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
11637         (build_rtti_vtbl_entries): New function.
11638         (set_rtti_entry): Remove.
11639         (build_primary_vtable): Don't use it.
11640         (build_secondary_vtable): Likewise.
11641         (start_vtable): Remove.
11642         (first_vfun_index): New function.
11643         (set_vindex): Likewise.
11644         (add_virtual_function): Don't call start_vtable.  Do call
11645         set_vindex.
11646         (set_primary_base): Rename parameter.
11647         (determine_primary_base): Likewise.
11648         (num_vfun_entries): Don't use skip_rtti_stuff.
11649         (num_extra_vtbl_entries): Include RTTI information.
11650         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
11651         (skip_rtti_stuff): Remove.
11652         (dfs_modify_vtables): Don't use it.
11653         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
11654         (layout_nonempty_base_or_field): Update size handling.
11655         (create_vtable_ptr): Tweak.
11656         (layout_class_type): Adjust parameter names.
11657         (finish_struct_1): Simplify.
11658         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
11659         (skip_rtti_stuff): Remove.
11660         (first_vfun_index): New function.
11661         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11662         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
11663         (marked_vtable_pathp): Declare.
11664         (unmarked_vtable_pathp): Likewise.
11665         * error.c (dump_expr): Use first_vfun_index to calculate vtable
11666         offsets.
11667         * rtti.c (build_headof): Look for RTTI at negative offsets.
11668         (get_tinfo_decl_dynamic): Likewise.
11669         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
11670         here.
11671         (create_pseudo_type_info): Do it here instead.  Adjust so that
11672         vptr points at first virtual function.
11673         * search.c (marked_vtable_pathp): Make it global.
11674         (unmarked_vtable_pathp): Likewise.
11675         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11676         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
11677         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
11678         (get_pure_virtuals): Likewise.
11679         (expand_upcast_fixups): Likewise.
11680         * tree.c (debug_binfo): Likewise.
11681         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
11682         negative offset.
11683
11684 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11685
11686         * class.c (check_field_decl): Fix typo.
11687         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
11688         (check_methods): Likewise.
11689         (check_field_decls): Likewise.
11690         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
11691         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
11692         Use DECL_RESULT_FLD, not DECL_RESULT.
11693         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
11694         * lex.c (identifier_type): Likewise.
11695         * pt.c (determine_specialization, lookup_template_class): Likewise.
11696         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
11697         (resolve_overloaded_unification, more_specialized): Likewise.
11698         * semantics.c (finish_member_declaration): Likewise.
11699         * typeck.c (build_x_function_call): Likewise.
11700
11701 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
11702
11703         * class.c (layout_empty_base): Handle empty bases with non-byte
11704         alignment.
11705         (build_base_field): Likewise.
11706         (layout_virtual_bases): Likewise.
11707
11708         * class.c (finish_struct_1): Fix typo in this change:
11709
11710         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11711
11712 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
11713
11714         * decl.c (grokdeclarator): Count partial specializations when
11715         keeping track of how many template classes have been seen.
11716
11717         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
11718
11719 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11720
11721         * class.c (build_vbase_pointer_fields): layout_field now place_field.
11722         (get_vfield_offset): Use byte_position.
11723         (set_rtti_entry): Set OFFSET to ssizetype zero.
11724         (get_binfo_offset_as_int): Deleted.
11725         (dfs_record_base_offsets): Use tree_low_cst.
11726         (dfs_search_base_offsets): Likewise.
11727         (layout_nonempty_base_or_field): Reflect changes in RLI format
11728         and call byte_position.
11729         (layout_empty_base): Convert offset to ssizetype.
11730         (build_base_field): use rli_size_unit_so_far.
11731         (dfs_propagate_binfo_offsets): Do computation in proper type.
11732         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
11733         (layout_class_type): Reflect changes in RLI names and fields.
11734         (finish_struct_1): Set DECL_FIELD_OFFSET.
11735         * dump.c (dequeue_and_dump): Call bit_position.
11736         * expr.c (cplus_expand_constant): Use byte_position.
11737         * rtti.c (expand_class_desc): Use bitsize_one_node.
11738         * typeck.c (build_component_addr): Use byte_position and don't
11739         special case for zero offset.
11740
11741 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
11742
11743         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
11744
11745         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
11746         tinfo object.
11747         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
11748         vtable.
11749
11750 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11751
11752         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
11753         DECL_P macros.
11754         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
11755         make_typename_type, check_initializer, cp_finish_decl,
11756         xref_tag): Likewise.
11757         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
11758         decl_namespace, arg_assoc_template_arg, arg_assoc,
11759         validate_nonmember_using_decl, do_class_using_decl): Likewise.
11760         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
11761         args_to_string): Likewise.
11762         * friend.c (is_friend): Likewise.
11763         * lex.c (note_got_semicolon, note_list_got_semicolon,
11764         is_global): Likewise.
11765         * method.c (build_overload_nested_name, build_overload_value,
11766         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
11767         * parse.y (typename_sub, typename_sub1): Likewise.
11768         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
11769         process_partial_specialization, convert_template_argument,
11770         template_args_equal, add_pending_template, lookup_template_class,
11771         for_each_template_parm_r, maybe_fold_nontype_arg,
11772         tsubst, instantiate_template, type_unification_real, unify,
11773         instantiate_pending_templates, set_mangled_name_for_template_decl):
11774         Likewise.
11775         * repo.c (repo_get_id, repo_template_used): Likewise.
11776         * search.c (lookup_field_1): Likewise.
11777         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
11778         * xref.c (classname): Likewise.
11779
11780 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
11781
11782         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
11783         (CANONICAL_BINFO): New macro.
11784         (BINFO_NEW_VTABLE_MARKED): Use it.
11785         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
11786         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
11787         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
11788         not TREE_TYPE.
11789         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11790         (build_secondary_vtable): Likewise.
11791         (dfs_finish_vtbls): Likewise.
11792         (dfs_accumulate_vtbl_inits): Likewise.
11793         (accumulate_vtbl_inits): New function.
11794         (finish_vtbls): Make sure that virtual bases come after
11795         non-virtual bases in the vtable group.
11796         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
11797         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11798         * search.c (struct vbase_info): Move definition.
11799         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11800         (unmarked_new_vtable_p): Likewise.
11801         (dfs_mark_vtable_path): Remove.
11802         (dfs_mark_new_vtable): Remove.
11803         (dfs_unmark_new_vtable): Likewise.
11804         (dfs_clear_search_slot): Likewise.
11805         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
11806         (dfs_clear_vbase_slots): Likewise.
11807         (init_vbase_pointers): LIkewise.
11808
11809 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
11810
11811         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
11812         SIZETYPE to a non-SIZETYPE.
11813
11814 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
11815
11816         * class.c (layout_virtual_bases): Adjust names in conditionally
11817         compiled code.
11818
11819         * class.c (record_base_offsets): New function.
11820         (layout_conflict_p): Likewise.
11821         (layout_nonempty_base_or_field): Use it.
11822         (layout_empty_base): New function.
11823         (build_base_field): Use it.
11824         (build_base_fields): Update comment.
11825         (layout_virtual_bases): Fold in a little code form
11826         layout_basetypes.  Use layout_empty_base.
11827         (layout_basetypes): Remove.
11828         (end_of_class): New function.
11829         (layout_class_type): Use it.  Adjust.
11830
11831         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
11832         (fntype_p): Remove.
11833         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
11834         comment.
11835         (dfs_skip_nonprimary_vbases_markedp): Likewise.
11836         * typeck.c (fntype_p): Remove.
11837
11838         * cp-tree.h (TI_SPEC_INFO): Remove.
11839         (CLASSTYPE_TI_SPEC_INFO): Likewise.
11840         * pt.c (process_partial_specialization): Likewise.
11841
11842         * class.c (build_base_field): Fix thinko in computation of binfo
11843         offsets.
11844
11845         * tree.c (mark_local_for_remap_p): Mark variables declared in
11846         TARGET_EXPRs as well.
11847
11848 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11849
11850         * typeck.c (require_complete_type, complete_type,
11851         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
11852         build_array_ref, convert_arguments, pointer_diff,
11853         build_x_unary_op, build_unary_op, build_c_cast,
11854         build_modify_expr): Use COMPLETE_TYPE_P etc.
11855         * call.c (is_complete, convert_like_real,
11856         build_new_method_call): Likewise.
11857         * class.c (build_vbase_pointer_fields, check_bases,
11858         build_base_field, finish_struct_1, pushclass): Likewise.
11859         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
11860         * decl.c (maybe_process_template_type_declaration, pushtag,
11861         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
11862         layout_var_decl, check_initializer, cp_finish_decl,
11863         grokdeclarator, require_complete_types_for_parms,
11864         grok_op_properties, xref_tag, xref_basetypes,
11865         check_function_type): Likewise.
11866         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
11867         * friend.c (do_friend): Likewise.
11868         * init.c (build_offset_ref): Likewise.
11869         * parse.y (structsp): Likewise.
11870         * pt.c (maybe_process_partial_specialization,
11871         tsubst_friend_function, instantiate_class_template, tsubst,
11872         do_type_instantiation, instantiate_pending_templates): Likewise.
11873         * repo.c (repo_get_id): Likewise.
11874         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
11875         synthesize_tinfo_var, emit_support_tinfos): Likewise.
11876         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
11877         * semantics.c (begin_class_definition): Likewise.
11878         * tree.c (build_cplus_method_type): Likewise.
11879         * typeck2.c (digest_init, build_functional_cast,
11880         add_exception_specifier): Likewise.
11881         * parse.h, parse.c: Regenerated.
11882
11883 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11884
11885         * inc/cxxabi.h: New header file. Define new-abi entry points.
11886         (__pointer_type_info::target): Rename member to ...
11887         (__pointer_type_info::type): ... here.
11888         (__base_class_info::type): Rename member to ...
11889         (__base_class_info::base): ... here.
11890         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
11891         * cp-tree.h (CPTI_ABI): New global tree enumeration.
11892         (abi_node): New global tree node.
11893         * decl.c (abi_node): Document.
11894         (init_decl_processing): Initialize abi_node.
11895         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
11896         (get_vmi_pseudo_type_info): Likewise.
11897         (create_tinfo_types): Likewise.
11898         (emit_support_tinfos): Likewise.
11899         * tinfo.h (cxxabi.h): Include for new-abi.
11900         Move rtti class definitions to new header file.
11901         * tinfo.cc (abi): Use the namespace.
11902         (std): Move new abi rtti classes from here ...
11903         (__cxxabiv1): ... to here.
11904         * tinfo2.cc (cxxabi.h): Include for new-abi.
11905         Move rtti class definitions to new header file.
11906         (std): Move new abi rtti classes from here ...
11907         (__cxxabiv1): ... to here.
11908         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
11909         namespace.
11910
11911 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
11912             Jason Merrill  <jason@casey.cygnus.com>
11913
11914         * method.c (build_overload_int): Use host_integerp.
11915
11916 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11917
11918         * init.c (build_offset_ref): Handle the case of a templated member
11919         function.
11920
11921 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11922
11923         * except.c (expand_exception_blocks): Clear catch_clauses_last.
11924
11925 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11926
11927         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
11928         * class.c (check_bitfield_decl): Turn illegal bitfields into
11929         non-bitfields.
11930         (dfs_propagate_binfo_offsets): Adjust for new size_binop
11931         semantics.
11932         (dfs_offset_for_unshared_vbases): Likewise.
11933         * cvt.c (cp_convert_to_pointer): Convert NULL to a
11934         pointer-to-member correctly under the new ABI.
11935         * expr.c (cplus_expand_constant): Don't use cp_convert when
11936         turning an offset into a pointer-to-member.
11937         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
11938         when dereferencing them under the new ABI.
11939         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
11940         of pointers-to-members under the new ABI.
11941
11942         * class.c (check_bitfield_decl): Remove restriction on really long
11943         bitfields.
11944         (layout_class_type): Implement new ABI handling of bitfields
11945         longer than their types.
11946
11947 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11948
11949         * parse.y (extdefs): Call ggc_collect.
11950         * parse.c: Regenerated.
11951
11952 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
11953
11954         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
11955         (note_name_declared_in_class): Use OVL_CURRENT to get at a
11956         potential overload.
11957
11958 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11959
11960         * class.c (build_vbase_path): Use integer_zerop.
11961         (build_vtable_entry): Use tree_low_cst.
11962         (get_vfield_offset): Use bit_position.
11963         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
11964         Use tree_low_cst.
11965         (check_bitfield_decl): Set DECL_SIZE using convert.
11966         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
11967         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
11968         Use tree_low_cst.
11969         (finish_struct_1): Use bit_position.
11970         (dump_class_hierarchy): Use tree_low_cst.
11971         * cp-tree.h (min_precision): Add declaration.
11972         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
11973         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
11974         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
11975         * expr.c (cplus_expand_constant): Use bit_position.
11976         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
11977         * rtti.c (get_base_offset): Use bit_position.
11978         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
11979         host_integerp, and tree_low_cst.
11980         (pointer_int_sum): Use integer_zerop.
11981         (build_component_addr): Use bit_position.
11982
11983 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
11984
11985         * typeck.c (require_complete_type): Don't assume size_zero_node.
11986         (complete_type_or_else): Likewise.
11987
11988 2000-03-16  Steven Grady <grady@digitaldeck.com>
11989             Jason Merrill  <jason@casey.cygnus.com>
11990
11991         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
11992
11993 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
11994
11995         * decl2.c (grokfield): Bail out if type is error_mark_node.
11996
11997 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11998
11999         * tinfo2.cc (__ptr_to_member_data): Rename to ...
12000         (__pointer_to_member_data): ... here. Adjust.
12001         * rtti.c (create_tinfo_types): Adjust.
12002
12003 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
12004
12005         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
12006         * decl.c (ref_desc_type_node): Undocument.
12007         * rtti.c (ptr_ref_initializer): Rename to ...
12008         (ptr_initializer): ... here. Adjust comments.
12009         (ptmd_initializer): Fix comment thinko.
12010         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
12011         (create_tinfo_types): Remove ref_desc_type_node init.
12012         * tinfo2.cc (__reference_type_info): Remove.
12013
12014 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
12015
12016         * decl.c (cp_finish_decl): Remove obsolete comment.
12017
12018         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
12019
12020 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
12021
12022         * cp-tree.h: Tweak documentation.
12023         * class.c (build_vbase_pointer_fields): Layout the fields, too.
12024         (avoid_overlap): Remove.
12025         (get_binfo_offset_as_int): New function.
12026         (dfs_serach_base_offsets): Likewise.
12027         (layout_nonempty_base_or_field): Likewise.
12028         (build_base_field): Layout fields here.  Avoid placing two objects
12029         of the same type at the same address, under the new ABI.
12030         (build_base_fields): Adjust accordingly.
12031         (create_vtable_ptr): Return the new field, but don't attach it to
12032         TYPE_FIELDS.
12033         (remove_base_field): Remove.
12034         (remove_base_fields): Remove.
12035         (layout_basetypes): Adjust accordingly.
12036         (layout_class_type): Call layout_field for each field, rather than
12037         just making a wholesale call to layout_type.
12038
12039 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
12040
12041         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
12042
12043 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
12044
12045         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
12046
12047         * except.c (dtor_nothrow): New fn.
12048         (do_pop_exception): Use it.  Take type parm.
12049         (push_eh_cleanup): Take type parm.
12050         (expand_start_catch_block): Pass it.
12051         (build_eh_type_type_ref): Accept null type.
12052
12053 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
12054
12055         * cp-tree.h (revert_static_member_fn): Change prototype.
12056         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
12057         (grok_op_properties): Likewise.
12058         (start_function): Likewise.
12059         (revert_static_member_fn): Simplify.
12060         * pt.c (check_explicit_specialization): Adjust call to
12061         revert_static_member_fn.
12062
12063 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
12064
12065         * cp-tree.h (scope_kind): New type.
12066         (tmpl_spec_kind): Likewise.
12067         (declare_pseudo_global_level): Remove.
12068         (pseudo_global_level_p): Rename to template_parm_scope_p.
12069         (pushlevel): Remove declaration.
12070         (begin_scope): New function.
12071         (finish_scope): Likewise.
12072         (current_tmpl_spec_kind): Likewise.
12073         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
12074         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
12075         Add template_spec_p.
12076         (toplevel_bindings_p): Adjust.
12077         (declare_pseudo_global_level): Remove.
12078         (pseudo_global_level_p): Rename to template_parm_scope_p.
12079         (current_tmpl_spec_kind): New function.
12080         (begin_scope): Likewise.
12081         (finish_scope): Likewise.
12082         (maybe_push_to_top_level): Adjust.
12083         (maybe_process_template_type_declaration): Likewise.
12084         (pushtag): Likewise.
12085         (pushdecl_nonclass_level): Likewise.
12086         (lookup_tag): Likewise.
12087         (grokfndecl): Handle member template specializations.  Share
12088         constructor and non-constructor code.
12089         * decl2.c (check_classfn): Handle member template specializations.
12090         * pt.c (begin_template_parm_list): Use begin_scope.
12091         (begin_specialization): Likewise.
12092         (end_specialization): Likewise.
12093         (check_explicit_specialization): Use current_tmpl_spec_kind.
12094         Handle member template specializations.
12095         (end_template_decl): Use finish_scope.  Remove call to
12096         get_pending_sizes.
12097         (push_template_decl_real): Remove bogus error message.
12098         (tsubst_decl): Fix typo in code contained in comment.
12099         (instantiate_template): Handle member template specializations.
12100         (most_general_template): Likewise.
12101
12102 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
12103
12104         * lex.c (whitespace_cr): Compress consecutive calls to warning().
12105         (do_identifier): Ditto for error().
12106
12107         * pt.c (convert_nontype_argument): Ditto for cp_error().
12108         (convert_template_argument): Ditto for cp_pedwarn().
12109
12110 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
12111
12112         * exception.cc (__check_null_eh_spec): New fn.
12113         * except.c (expand_end_eh_spec): Call it if the spec is throw().
12114
12115 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
12116
12117         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
12118         * except.c (expand_end_eh_spec): Add the return type.
12119         * rtti.c (throw_bad_cast): Add the parmtypes.
12120         (throw_bad_typeid): Likewise.
12121
12122         * semantics.c (expand_stmt): Only leave out rtl for unused
12123         artificials, and set DECL_IGNORED_P on them as well.
12124         * decl.c (wrapup_globals_for_namespace): Likewise.
12125
12126 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
12127
12128         * decl.c (maybe_commonize_var): Skip all artificial decls.
12129         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
12130
12131 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
12132
12133         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
12134         * cp-tree.h: Declare flag_enforce_eh_specs.
12135         * decl.c (store_parm_decls, finish_function): Check it.
12136
12137         C library functions don't throw.
12138         * Makefile.in (cfns.h): New target.
12139         (except.o): Depend on it.
12140         * Make-lang.in (cc1plus): Depend on cfns.gperf.
12141         * cfns.gperf: New file.
12142         * cfns.h: Generated.
12143         * except.c: Include it.
12144         (nothrow_libfn_p): New fn.
12145         * decl.c (grokfndecl): Use it.
12146         * cp-tree.h: Declare it.
12147
12148         * decl.c (push_overloaded_decl_1, auto_function,
12149         define_function): Lose.
12150         (build_library_fn_1): New static fn.
12151         (builtin_function): Use it.
12152         (get_atexit_node): Use build_library_fn_ptr.
12153         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
12154         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
12155         push_void_library_fn, push_throw_library_fn): New fns.
12156         * cp-tree.h: Declare them.
12157         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
12158         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
12159         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
12160         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
12161         * rtti.c (build_runtime_decl): Lose.
12162         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
12163         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
12164         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
12165
12166         * call.c (build_call): Remove result_type parm.
12167         Call mark_used on unused artificial fns.
12168         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
12169
12170 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
12171
12172         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
12173         appropriate.
12174         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
12175         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
12176         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
12177         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
12178         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
12179         expand_generic_desc): Likewise.
12180
12181 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12182
12183         * exception.cc (__cp_pop_exception): Cleanup the original object.
12184
12185 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12186
12187         * decl.c (grok_op_properties): Merge conversion to void warning
12188         with other silly op warnings.
12189
12190 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
12191
12192         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
12193         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
12194
12195 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12196
12197         * decl.c (cp_make_fname_decl): New function.
12198         (wrapup_globals_for_namespace): Don't emit unused static vars.
12199         (init_decl_processing): Remove comment about use of
12200         array_domain_type. Set make_fname_decl.
12201         (cp_finish_decl): Remove __FUNCTION__ nadgering.
12202         * semantics.c (begin_compound_stmt): Remove
12203         current_function_name_declared flagging.
12204         (expand_stmt): Don't emit unused local statics.
12205         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
12206         specially.
12207
12208 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12209
12210         * typeck.c (convert_for_assignment): Don't look at array
12211         initializer.
12212         * call.c (convert_like_real): Likewise.
12213
12214 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
12215
12216         Add initial support for '\uNNNN' specifier.
12217         * lex.c (read_ucs): New fn.
12218         (readescape, skip_white_space): Call it.
12219         (is_extended_char, is_extended_char_1): New fns.
12220         (utf8_extend_token): New fn, #if 0'd out.
12221         (real_yylex): Treat extended chars like letters.
12222
12223         * search.c (note_debug_info_needed): Walk the bases even if we
12224         weren't deferring the type itself.
12225
12226 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12227
12228         * decl2.c (finish_objects): Constify a char*.
12229
12230         * method.c (emit_thunk): Likewise.
12231
12232 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
12233
12234         * typeck.c (dubious_conversion_warnings): Look through
12235         REFERENCE_TYPE.
12236
12237 Mon Mar  6 08:46:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12238
12239         * class.c (dfs_modify_vtables): I is now unsigned.
12240         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
12241         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
12242         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
12243         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
12244         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
12245         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
12246         Call integer_all_onesp.
12247         * typeck2.c (process_init_constructor): Use compare_tree_int.
12248
12249         * lang-specs.h (as): Don't call if -syntax-only.
12250
12251 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
12252
12253         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
12254         RTL_EXPR_HAS_NO_SCOPE after all.
12255
12256 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
12257
12258         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
12259         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
12260         RTL_EXPR_HAS_NO_SCOPE.
12261
12262         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
12263         later.
12264
12265         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
12266
12267 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
12268
12269         * call.c (convert_like): Macrofy.
12270         (convert_like_with_context): New macro.
12271         (convert_like_real): Renamed from convert_like.  Add calling
12272         context parameters, for diagnostics. Add recursive flag.  Call
12273         dubious_conversion_warnings for outer conversion.
12274         (build_user_type_conversion): Use convert_like_with_context.
12275         (build_over_call): Likewise. Don't warn about dubious
12276         conversions here. Adjust convert_default_arg calls.
12277         (convert_default_arg): Add context parameters for diagnostics.
12278         Pass through to convert_like_with_context.
12279         * cp-tree.h (convert_default_arg): Add context parameters.
12280         (dubious_conversion_warnings): Prototype new function.
12281         * typeck.c (convert_arguments): Adjust convert_default_arg call.
12282         (dubious_conversion_warnings): New function, broken
12283         out of convert_for_assignment.
12284         (convert_for_assignment): Adjust.
12285
12286 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
12287
12288         * decl2.c (key_method): Break out from...
12289         (import_export_vtable, import_export_class): ...here.
12290
12291         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
12292         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
12293
12294         * search.c (note_debug_info_needed, dfs_debug_mark,
12295         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
12296         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
12297
12298 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
12299
12300         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
12301         typos.
12302
12303 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
12304
12305         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
12306         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
12307         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
12308         (lang_type): Split gets_new into has_new and has_array_new.
12309         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12310         (TYPE_GETS_NEW): Split into ...
12311         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
12312         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
12313         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
12314         (build_op_new_call): Don't declare.
12315         (build_new_1): Likewise.
12316         * call.c (build_op_new_call): Remove.
12317         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
12318         instead of TYPE_NEEDS_DESTRUCTOR.
12319         (finish_struct_bits): Likewise.
12320         (add_implicitly_declared_members): Likewise.
12321         (check_field_decl): Likewise.
12322         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
12323         correctly under the new ABI.
12324         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
12325         instead of TYPE_NEEDS_DESTRUCTOR.
12326         (initialize_local_var): Likewise.
12327         (destroy_local_var): Likewise.
12328         (cp_finish_decl): Likewise.
12329         (register_dtor_fn): Likewise.
12330         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
12331         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
12332         TYPE_VEC_DELETE_TAKES_SIZE here.
12333         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
12334         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
12335         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12336         (finish_destructor_body): Likewise.
12337         (maybe_build_cleanup_1): Likewise.
12338         * decl2.c (do_static_destruction): Likewise.
12339         * init.c (build_new_1): Make it static.
12340         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12341         (expand_cleanup_for_base): Likewise.
12342         (get_cookie_size): New function.
12343         (build_new_1): Handle array-new cookies correctly under the new
12344         ABI.
12345         (build_vec_delete_1): Likewise.
12346         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12347         (build_delete): Likewise.
12348         (build_vec_delete): Handle array-new cookies correctly under the new
12349         ABI.
12350         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12351         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
12352         TYPE_HAS_ARRAY_NEW_OPERATOR.
12353         * ptree.c (print_lang_type): Check them.
12354         * search.c (context_for_name_lookup): Fix typo in comment.
12355         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
12356         * tree.c (break_out_cleanups): Likewise.
12357         (build_cplus_array_test_1): Likewise.
12358         (cp_build_qualified_type_real): Likewise.
12359         * typeck.c (complete_type): Likewise.
12360
12361         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
12362         the command-line, not the end.
12363
12364 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
12365
12366         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
12367
12368 2000-03-02  Tom Tromey  <tromey@cygnus.com>
12369
12370         * cp-tree.h (build_java_class_ref): Declare.
12371         * init.c (build_java_class_ref): No longer static.
12372         * except.c (expand_throw): Generate a Java-style `throw' if the
12373         thrown object is a "Java" object.
12374         (initialize_handler_parm): Generate a Java-style lookup of
12375         exception info if the caught object is a "Java" object.
12376         (catch_language, catch_language_init): New globals.
12377         (decl_is_java_type): New function.
12378         (expand_start_catch_block): Don't call push_eh_info() or
12379         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
12380         class reference to build_catch_block.
12381
12382 Thu Mar  2 13:32:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12383
12384         * typeck.c (comptypes): Treat sizetype like its language equivalent.
12385
12386 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
12387
12388         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
12389         to merge reference/pointer code and fix incorrect warnings.
12390
12391 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
12392
12393         * search.c (protected_accessible_p): Use context_for_name_lookup.
12394
12395         * init.c (construct_virtual_bases): Fix thinko.
12396         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
12397
12398 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
12399
12400         * decl.c (current_function_decl): Move to toplev.c.
12401
12402 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
12403
12404         * pt.c (fn_type_unification): Unify return type, whenever
12405         provided.
12406         (get_bindings_real): Only pass return type when necessary.
12407         Remove explicit return type check.
12408         * class.c (resolve_address_of_overloaded_function): Pass desired
12409         return type to fn_type_unification.
12410
12411 Mon Feb 28 08:15:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12412
12413         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
12414         DECL_FIELD_SIZE.
12415         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
12416         DECL_FIELD_SIZE.
12417         * rtti.c (expand_class_desc): Likewise.
12418         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
12419         (THUNK_VCALL_OFFSET): Likewise.
12420         (THUNK_DELTA): Reflect changes in ../tree.h.
12421
12422 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
12423
12424         * search.c (protected_accessible_p): Also allow the access if
12425         the member is public in DERIVED.  Lose TYPE parm.
12426         (friend_accessible_p): Lose TYPE parm.
12427         (accessible_p): Adjust.
12428
12429 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12430
12431         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
12432         on things that are not sizes; ssize_binop deleted.
12433         Call size_diffop when appropriate.
12434         (dfs_build_vcall_offset_vtbl_entries): Likewise.
12435         (build_primary_vtable, build_secondary_vtable): Likewise.
12436         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
12437         Variable I is HOST_WIDE_INT.
12438         (get_vfield_offset): Pass proper types to size_binop.
12439         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
12440         (finish_struct_1): Likewise.
12441         (skip_rtti_stuff): Arg N is now pointer to signed.
12442         (layout_class_type): Use size_zero_node.
12443         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
12444         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
12445         * decl.c (complete_arry_type): Pass proper types to size_binop.
12446         (xref_basetypes): BINFO_OFFSET is sizetype.
12447         * error.c (dump_expr): Don't use size_binop non-sizes.
12448         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
12449         * init.c (construct_virtual_bases): Fix type error.
12450         (build_vec_delete_1): Pass proper type to size_binop and don't
12451         fold result.
12452         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
12453         * rtti.c (get_base_offset): Pass proper type to size_binop.
12454         * search.c (dfs_find_vbases): Fix type error.
12455         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
12456         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
12457         * tree.c (debug_binfo): Variable N is signed.
12458         Use HOST_WIDE_INT_PRINT_DEC.
12459         * typeck.c (comptypes): sizetype is same as equivalent integer type.
12460         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
12461         size_one_node and size_zero_node.
12462         (c_alignof): Use size_one_node.
12463         (build_component_addr): Pass proper types to size_binop.
12464         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
12465
12466 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
12467
12468         Implement class scope using-declarations for functions.
12469         * class.c (handle_using_decl): Call add_method for used functions.
12470         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
12471         (add_method): Used functions are hidden by local functions.
12472         (check_bases_and_members): Handle using-decls before finalizing
12473         CLASSTYPE_METHOD_VEC.
12474         * call.c (add_function_candidate): Add ctype parm; if non-zero,
12475         override the type of 'this' accordingly.
12476         (add_template_candidate, add_template_candidate_real): Add ctype parm.
12477         (convert_class_to_reference, build_user_type_conversion_1,
12478         build_new_function_call, build_object_call, build_new_op,
12479         build_new_method_call): Pass ctype parm.
12480
12481         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
12482         the baselink.
12483         * call.c (convert_class_to_reference, build_user_type_conversion_1,
12484         build_new_function_call, build_object_call, build_new_op,
12485         build_new_method_call, build_op_delete_call): Don't get basetype_path
12486         from a baselink.
12487         * typeck.c (build_component_ref): Likewise.
12488         * init.c (build_offset_ref): Likewise.
12489         (resolve_offset_ref): Don't call enforce_access.
12490         Call build_scoped_ref.
12491         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
12492         would cause an error or if -pedantic.
12493         * class.c (alter_access): Lose binfo parm.
12494
12495 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12496
12497         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
12498         types.
12499
12500 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
12501
12502         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
12503         pseudo_type_info creation into the std namespace
12504
12505 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12506
12507         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
12508         (import_export_class): Remove declaration.
12509         * decl2.c (import_export_class): Make it static.
12510         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
12511         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
12512         EXPR_WITH_FILE_LOCATION.
12513         * lex.c (check_newline): Tweak filename/lineno setting.
12514         * semantics.c (begin_while_stmt): Fix typo in comment.
12515
12516 Sat Feb 26 19:50:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12517
12518         * lang-options.h (-fmessage-length=): Add missing option.
12519
12520         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
12521
12522 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
12523
12524         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
12525
12526 Fri Feb 25 14:52:33 2000  Jim Wilson  <wilson@cygnus.com>
12527
12528         * optimize.c (expand_call_inline): Emit the return label before
12529         evaluating the return value.
12530
12531 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
12532
12533         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
12534         than duplicating functionality here.
12535         * optimize.c: Include input.h.
12536         (expand_call_inline): Use push_srcloc and pop_srcloc.
12537         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
12538         * parse.c: Regenerated.
12539         * Makefile.in (lex.o): Depend on input.h.
12540         (optimize.o): Likewise.
12541
12542 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
12543
12544         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
12545         function type, rather than ICE.
12546
12547 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
12548
12549         * decl.c (grokdeclarator): Call decl_type_access_control.
12550         * parse.y (parse_end_decl): Don't call decl_type_access_control if
12551         decl is null.
12552
12553 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
12554
12555         * decl.c (decls_match): Remove obsolete static member nadgering.
12556
12557 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12558
12559         * decl.c (grokdeclarator): Change ANSI to ISO.
12560         * lex.c (consume_string, readescape, do_identifier): Likewise.
12561         (parse_float, real_yylex): Likewise.
12562         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
12563         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
12564         new_type_id, maybe_label_decls, simple_stmt,
12565         for.init.statement): Likewise.
12566         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
12567         * semantics.c (finish_named_return_value): Likewise.
12568         * parse.c: Regenerate.
12569
12570 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
12571
12572         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
12573         (CPTI_CLASS_STAR_TYPE): Remove.
12574         (vtable_index_type): Likewise.
12575         (class_star_type_node): Remove.
12576         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
12577         (build_binary_op_nodefault): Remove.
12578         * call.c (build_new_op): Use build_binary_op instead of
12579         build_binary_op_nodefault.
12580         * decl.c (init_decl_processing): Remove class_star_type_node
12581         initialization.  Make delta_type_node ptrdiff_type_node under the
12582         new ABI.  Initialize vtable_index_type.
12583         (build_ptrmemfunc_type): Build different structures for the new
12584         ABI.
12585         (build_enumerator): Use build_binary_op instead of
12586         build_binary_op_nodefault.
12587         * method.c (build_overload_value): Mangle pointers-to-members
12588         appropriately under the new ABI.
12589         * typeck.c (build_array_ref): Use build_binary_op instead of
12590         build_binary_op_nodefault.
12591         (get_member_function_from_ptrfunc): Adjust for the new ABI.
12592         (build_binary_op_nodefault): Rename to ...
12593         (build_binary_op): ... this.  Remove old version.  Adjust for
12594         pointer-to-member comparisons under the new ABI.
12595         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
12596         (build_ptrmemfunc): Adjust for the new ABI.
12597         (expand_ptrmemfunc_cst): Likewise.
12598         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
12599         (pfn_from_ptrmemfunc): Adjust for the new ABI.
12600
12601 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
12602
12603         * call.c (build_object_call): Compress consecutive calls to
12604         cp_error.
12605         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
12606         (build_op_delete_call): Adjust message formatting.
12607
12608         * class.c (check_bases): Compress consecutive calls to
12609         cp_pedwarn.
12610         (finish_struct_anon): Say 'ISO C++'.
12611
12612         * decl.c (start_decl): Same here.
12613         (grok_reference_init): Likewise.
12614         (grokfndecl): Correct message formatting.
12615         (grokfndecl): Improve diagnostic.
12616         (check_static_variable_definition): Likewise. Say 'ISO C++'
12617         (compute_array_index_type): Say 'ISO C++'
12618         (create_array_type_for_decl): Compress consecutive calls to
12619         cp_error.
12620         (grokdeclarator): Say 'ISO C++'
12621         (grok_op_properties): Likewise.
12622
12623         * decl2.c (delete_sanity): Clairify diagnostic.
12624         (check_member_template): Same here.
12625         (grok_function_init): Use consistent terminology.
12626
12627         * expr.c (do_case): Say 'ISO C++'
12628
12629         * friend.c (do_friend): Compress consecutive calls to warning.
12630
12631 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
12632
12633         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
12634         * class.c (build_secondary_vtable): Reorganize.  Don't create a
12635         new vtable under the new ABI.
12636         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
12637         computing the size.
12638         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
12639         the initializing elements.
12640         (initialize_vtable): New function.
12641         (dfs_finish_vtbls): Use it.
12642         (dfs_accumulate_vtbl_inits): New function.
12643         (finish_vtbls): Merge primary and secondary vtables under the new
12644         ABI.
12645         (finish_struct_1): Remove redundant call to layout_vtable_decl.
12646         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
12647         aren't VAR_DECLs.
12648
12649         * class.c (build_vtable): New function, split out from ...
12650         (get_vtable_decl): ... here, and ...
12651         (build_secondary_vtable): ... here.
12652
12653         * pt.c (tsubst_decl): Fix formatting.
12654
12655 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12656
12657         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
12658         (avoid_overlap, build_base_field): Likewise.
12659         (build_base_field, build_base_fields, is_empty_class):
12660         Test DECL_SIZE with integer_zero.
12661         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
12662         * cp-tree.h (struct lang_type): New field size_unit.
12663         (CLASSTYPE_SIZE_UNIT): New macro.
12664         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
12665         (cp_finish_decl): Delete -Wlarger-than processing.
12666         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
12667         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
12668         * tree.c (make_binfo): binfo vector is one entry longer.
12669         (walk_tree): Walk DECL_SIZE_UNIT.
12670
12671 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
12672
12673         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
12674         comment.
12675         (build_vtable_entry): Don't assume all vtable entries are
12676         functions.
12677         (build_vtbl_initializer): Adjust accordingly.
12678         (get_vtable_decl): Fix formatting.
12679
12680 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
12681
12682         * semantics.c (deferred_type_access_control): Walk the entire
12683         type_lookups list.
12684         (save_type_access_control): Rename from
12685         initial_deferred_type_access_control.  Just remember the value.
12686         (decl_type_access_control): New fn.
12687         (begin_function_definition): Use deferred_type_access_control, after
12688         we've started the function.  Set type_lookups to error_mark_node.
12689         * parse.y (frob_specs, fn.def1): Adjust.
12690         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
12691         (parse_end_decl, parse_bitfield0, parse_method): New fns.
12692         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
12693         (after_type_component_declarator0): Likewise.
12694         (after_type_component_declarator): Likewise.
12695         (notype_component_declarator): Likewise.
12696         * cp-tree.h: Adjust.
12697
12698         * decl.c (redeclaration_error_message): Allow redeclaration of
12699         namespace-scope decls.
12700
12701 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
12702
12703         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
12704
12705 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
12706
12707         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
12708         * decl2.c (grokclassfn): Likewise.
12709
12710         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
12711
12712         * decl2.c (lang_decode_option): Don't set default message length
12713         here.
12714         * lex.c (lang_init_options): Set it here.
12715
12716 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
12717
12718         Make DECL_CONTEXT mean the class in which a member function was
12719         declared, even for a virtual function.
12720         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
12721         (DECL_FRIEND_CONTEXT): New macro.
12722         (DECL_REAL_CONTEXT): Remove.
12723         (SET_DECL_FRIEND_CONTEXT): Likewise.
12724         (DECL_VIRTUAL_CONTEXT): Adjust.
12725         (DECL_CLASS_SCOPE_P): Use TYPE_P.
12726         (add_friends): Remove.
12727         (hack_decl_function_context): Likewise.
12728         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
12729         CP_DECL_CONTEXT.
12730         (build_over_call): Fix indentation.  Use DECL_CONTEXT
12731         instead of DECL_CLASS_CONTEXT.
12732         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
12733         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12734         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12735         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
12736         (build_base_field): Likewise.
12737         (finish_struct_1): Likewise.
12738         (build_self_reference): Likewise.
12739         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
12740         DECL_REAL_CONTEXT.
12741         (pushtag): Use decl_function_context, not
12742         hack_decl_function_context.
12743         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12744         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
12745         (pushdecl): Remove bogus code.
12746         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
12747         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12748         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12749         Use decl_function_context, nothack_decl_function_context.
12750         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
12751         (grokdeclarator): Likewise.  Use decl_function_context, not
12752         hack_decl_function_context.
12753         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
12754         (start_function): Use DECL_FRIEND_CONTEXT, not
12755         DECL_CLASS_CONTEXT.  Use decl_function_context, not
12756         hack_decl_function_context.
12757         (finish_function): Use decl_function_context, not
12758         hack_decl_function_context.
12759         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
12760         DECL_CLASS_CONTEXT.
12761         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
12762         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
12763         (grokfield): Likewise.
12764         (finish_builtin_type): Likewise.
12765         (finish_vtable_vardec): Use decl_function_context, not
12766         hack_decl_function_context.
12767         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12768         (start_static_initialization_or_destruction): Likewise.
12769         (finish_static_initialization_or_destruction): Likewise.
12770         (mark_used): Adjust logic for deciding when to synthesize methods.
12771         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
12772         DECL_REAL_CONTEXT.
12773         * error.c (dump_function_decl): Use DECL_CONTEXT, not
12774         DECL_CLASS_CONTEXT.
12775         * friend.c (is_friend): Likewise.
12776         (add_friends): Remove.
12777         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
12778         * lex.c (begin_definition_of_inclass_inline): Use
12779         decl_function_context, not hack_decl_function_context.
12780         (process_next_inline): Likewise.
12781         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12782         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
12783         DECL_CLASSS_CONTEXT.
12784         (hack_identifier): Likewise.
12785         (synthesize_method):  Use decl_function_context, not
12786         hack_decl_function_context.
12787         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
12788         DECL_REAL_CONTEXT.
12789         (is_member_template): Use decl_function_context, not
12790         hack_decl_function_context.  Use DECL_CONTEXT, not
12791         DECL_CLASS_CONTEXT.
12792         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
12793         DECL_CLASS_CONTEXT.
12794         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
12795         DECL_REAL_CONTEXT.
12796         (push_template_decl_real): Likewise.
12797         (instantiate_class_template): Don't call add_friends.
12798         (tsubst_default_argument): Use DECL_CONTEXT, not
12799         DECL_REAL_CONTEXT.
12800         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12801         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12802         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
12803         DECL_CLASS_CONTEXT.
12804         * repo.c (repo_inline_used): Likewise.
12805         * search.c (current_scope): Adjust for new _CONTEXT macros.
12806         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
12807         DECL_REAL_CONTEXT.
12808         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12809         (lookup_fnfields_here):Likewise.
12810         (check_final_overrider): Likewise.
12811         (init_vbase_pointers): Likewise.
12812         (virtual_context): Likewise.
12813         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
12814         (expand_body): Use decl_function_context, not
12815         hack_decl_function_context.
12816         * tree.c (hack_decl_function_context): Remove.
12817         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
12818         DECL_CLASS_CONTEXT.
12819         * typeck2.c (error_not_base_type): Likewise.
12820
12821 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
12822
12823         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
12824
12825 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12826
12827         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
12828
12829 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
12830
12831         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
12832
12833 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
12834
12835         * decl2.c (lang_decode_option): Enable automatic line wrapping.
12836
12837 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
12838
12839         * parse.y (frob_specs): Split out...
12840         (parse_decl): From here.
12841         (fn.def2): Call initial_deferred_type_access_control.
12842         (after_type_component_declarator0): Call frob_specs.
12843         (notype_component_declarator0): Likewise.
12844         * search.c (friend_accessible_p): Nested classes are friends of their
12845         enclosing classes.
12846
12847 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
12848
12849         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
12850         used to create an implicit temporary.
12851
12852         * class.c (dfs_modify_vtables): Tweak calculation of functions to
12853         override.
12854
12855 2000-02-08  Nathan Sidwell  <nathan@acm.org>
12856
12857         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
12858         strip array element qualifiers too.
12859
12860 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
12861
12862         * decl.c (store_parm_decls): Don't build cleanups for parameters
12863         while processing_template_decl.
12864
12865 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
12866
12867         * cp-tree.h (struct saved_scope): Add incomplete field.
12868         (namespace_scope_incomplete): New macro.
12869         * decl.c (pushdecl): Use it.
12870         (hack_incomplete_structures): Use it.  See through artificial
12871         binding levels.
12872         (mark_saved_scope): Mark it.
12873
12874         Implement access control for nested types.
12875         * search.c (type_access_control): New fn.
12876         (accessible_p): Now we do perform access control for types.
12877         * semantics.c (deferred_type_access_control): New fn.
12878         (initial_deferred_type_access_control): New fn.
12879         (begin_function_definition): Call it.  Add lookups parm.
12880         * decl.c (struct binding_level): Add this_class field.
12881         (pushlevel_class): Set it.
12882         (mark_binding_level): Mark it.
12883         (lookup_name_real): Use it.  Call type_access_control.
12884         (mark_saved_scope): Mark lookups field.
12885         * cp-tree.h (flagged_type_tree): Add lookups field.
12886         (struct saved_scope): Add lookups field.
12887         (type_lookups): New macro.
12888         * parse.y (declmods): Now <ftype>.
12889         (parse_decl): Add lookups parm.  Call
12890         initial_deferred_type_access_control.
12891         (lang_extdef): Clear type_lookups.
12892         (typed_declspecs, declmods, typespec): Set lookups field.
12893         (initdcl): Call deferred_type_access_control.
12894         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
12895         component_decl_1, named_parm): Adjust.
12896         * friend.c (is_friend): Nested classes are friends of their
12897         enclosing classes.
12898
12899         * class.c (currently_open_derived_class): New fn.
12900         * method.c (hack_identifier): Use it.
12901
12902         * lex.c (do_identifier): Remove obsolete code.
12903
12904         * parse.y (typed_typespecs): Propagate new_type_flag properly.
12905
12906 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
12907
12908         * tinfo.h: Remove apostrophes from C++ comment (xgettext
12909         thinks this file is plain C).
12910
12911 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12912
12913         * Makefile.in (call.o): Depend on $(EXPR_H).
12914
12915         * call.c: Include "expr.h".
12916
12917         * class.c (dump_class_hierarchy): Add prototype.
12918
12919         * search.c (dfs_get_pure_virtuals): Likewise.
12920
12921 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
12922
12923         * parse.y (simple_stmt): Allow :: token in asm parameter list.
12924         * parse.c: Rebuilt.
12925
12926 Mon Jan 31 15:35:29 2000  Jim Wilson  <wilson@cygnus.com>
12927
12928         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
12929         Store it in DECL_FCONTEXT.
12930         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
12931
12932 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
12933
12934         * tinfo.h (old abi): #include "tconfig.h".
12935         * tinfo.cc (convert_to_base): Move into old abi section.
12936
12937 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
12938
12939         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
12940         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
12941         (BINFO_PRIMARY_BINFO): New macro.
12942         (BF_DELTA): Rename to ...
12943         (BV_DELTA): ... this.
12944         (BF_VCALL_INDEX): Rename to ...
12945         (BV_VCALL_INDEX): ... this.
12946         (BF_FN): Rename to ...
12947         (BV_FN): ... this.
12948         * class.c (build_vbase_path): Adjust for changes to reverse_path.
12949         (set_rtti_entry): Rename BF_ macros to BV_ variants.
12950         (modify_vtable_entry): Simplify.
12951         (add_virtual_function): Rename BF_ macros to BV_ variants.
12952         (build_vtable_initializer): Likewise.
12953         (get_class_offset_1): Remove.
12954         (dfs_get_class_offset): Likewise.
12955         (get_class_offset): Likewise.
12956         (dfs_find_final_overrider): New function.
12957         (find_final_overrider): Likewise.
12958         (modify_one_vtable): Remove.
12959         (dfs_find_base): New function.
12960         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
12961         find_final_overrider.
12962         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
12963         virtuals.
12964         (dfs_fixup_vtable_deltas): Remove.
12965         (override_one_vtable): Remove.
12966         (merge_overrides): Likewise.
12967         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
12968         unreal chilren of virtual bases.
12969         (finish_struct_1): Don't use merge_overrides.  Don't use
12970         dfs_fixup_vtable_deltas.
12971         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
12972         BINFOs.
12973
12974 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12975             Jason Merrill  <jason@yorick.cygnus.com>
12976
12977         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
12978
12979 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
12980
12981         * exception.cc (__throw_bad_typeid): Add missing std::.
12982
12983 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12984
12985         * cp-tree.h (make_thunk): PROTO -> PARAMS.
12986
12987 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
12988
12989         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
12990
12991         Runtime support for new-abi rtti.
12992         * inc/typeinfo (type_info::operator!=): Define in class.
12993         (type_info::before, type_info::name, type_info::operator==,
12994         type_info::operator!=): Define new ABI implementations.
12995         (type_info::is_pointer_p, type_info::is_function_p): Declare
12996         new virtual functions.
12997         (type_info::do_catch, type_info::do_upcast): Likewise.
12998
12999         * tinfo.h (__base_class_info): Define new class.
13000         (__class_type_info): Likewise.
13001         (__si_class_type_info): Likewise.
13002         (__vmi_class_type_info): Likewise.
13003         (__dynamic_cast): Prototype.
13004
13005         * tinfo.cc: Conditionalize old and new rtti mechanisms.
13006         (type_info::is_pointer_p): Define new function.
13007         (type_info::is_function_p): Likewise.
13008         (type_info::do_catch): Likewise.
13009         (type_info::do_upcast): Likewise.
13010         (vtable_prefix): New structure for vtable access.
13011         (adjust_pointer): Define new template function.
13012         (contained_p, public_p, virtual_p, contained_public_p,
13013         contained_nonpublic_p, contained_nonvirtual_p): Define new
13014         functions.
13015         (nonvirtual_base_type): New local variable.
13016         (__class_type_info::~__class_type_info): Define.
13017         (__si_class_type_info::~__si_class_type_info): Likewise.
13018         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
13019         (__class_type_info::do_catch): Define new function.
13020         (__class_type_info::do_upcast): Likewise.
13021         (__class_type_info::find_public_src): Likewise.
13022         (__class_type_info::do_find_public_src): Likewise.
13023         (__si_class_type_info::do_find_public_src): Likewise.
13024         (__vmi_class_type_info::do_find_public_src): Likewise.
13025         (__class_type_info::do_dyncast): Likewise.
13026         (__si_class_type_info::do_dyncast): Likewise.
13027         (__vmi_class_type_info::do_dyncast): Likewise.
13028         (__class_type_info::do_upcast): Likewise.
13029         (__si_class_type_info::do_upcast): Likewise.
13030         (__vmi_class_type_info::do_upcast): Likewise.
13031         (__dynamic_cast): Likewise.
13032
13033         * tinfo2.cc (__fundamental_type_info): Define new class.
13034         (__pointer_type_info): Likewise.
13035         (__reference_type_info): Likewise.
13036         (__array_type_info): Likewise.
13037         (__function_type_info): Likewise.
13038         (__enum_type_info): Likewise.
13039         (__ptr_to_member_type_info): Likewise.
13040         (__fundamental_type_info::~__fundamental_type_info): Define.
13041         (__pointer_type_info::~__pointer_type_info): Likewise.
13042         (__reference_type_info::~__reference_type_info): Likewise.
13043         (__array_type_info::~__array_type_info): Likewise.
13044         (__function_type_info::~__function_type_info): Likewise.
13045         (__enum_type_info::~__enum_type_info): Likewise.
13046         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
13047         (__pointer_type_info::do_catch): Define new function.
13048         (__ptr_to_member_type_info::do_catch): Define new function.
13049
13050         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
13051         (__is_pointer): Likewise.
13052
13053         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
13054
13055 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
13056
13057         * cp/class.c (build_vtable): Rename to build_primary_vtable.
13058         (prepare_fresh_vtable): Rename to build_secondary_vtable.
13059         (make_new_vtable): New function.
13060         (modify_vtable_entry): Handle generation of new vtables correctly.
13061         (modify_one_vtable): Remove unused parameter.
13062         (dfs_fixup_vtable_deltas): Likewise.
13063         (override_one_vtable): Use build_secondary_vtable.
13064         (finish_struct_1): Use build_primary_vtable and
13065         build_secondary_vtable.
13066
13067 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
13068
13069         * cp/decl.c: Adjust variable names, comments, help strings.
13070
13071 2000-01-29  Nathan Sidwell  <nathan@acm.org>
13072
13073         * new2.cc (operator delete[]): Use operator delete, don't assume
13074         implementation.
13075
13076 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
13077
13078         * class.c (build_vtbl_initializer): Add argument to
13079         build_vtable_entry call.
13080
13081 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
13082
13083         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
13084         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
13085         (BF_DELTA): New macro.
13086         (BF_VCALL_INDEX): Likewise.
13087         (BF_FN): Likewise.
13088         (THUNK_VCALL_OFFSET): Likewise.
13089         (make_thunk): Change prototype.
13090         * class.c (build_vtable_entry): Integrate
13091         build_vtable_entry_for_fn.  Handle vcall indices.
13092         (build_vtable_entry_for_fn): Remove.
13093         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
13094         BF_VCALL_INDEX, BF_FN.
13095         (modify_vtable_entry): Integrate common code from
13096         modify_one_vtable and dfs_fixup_vtable_deltas.
13097         (add_virtual_function): Set BF_VCALL_INDEX.
13098         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
13099         and BF_FN.
13100         (modify_one_vtable): Simplify.
13101         (dfs_fixup_vtable_deltas): Likewise.
13102         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
13103         * method.c (make_thunk): Handle vcall indices.
13104
13105 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
13106
13107         Compiler side new abi rtti (not enabled).
13108         * cp-tree.h (new_abi_rtti_p): New macro.
13109         (emit_support_tinfos): Prototype new function.
13110         (tinfo_decl_p): Likewise.
13111         (emit_tinfo_decl): Likwise.
13112         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
13113         macros.
13114         (doing_runtime): New local static.
13115         (init_rtti_processing): Add new-abi initializer.
13116         (get_tinfo_decl): Add new-abi logic.
13117         (tinfo_from_decl): Likewise.
13118         (build_dynamic_cast_1): Likewise.
13119         (qualifier_flags): New static function.
13120         (tinfo_base_init): Likewise.
13121         (generic_initializer): Likewise.
13122         (ptr_ref_initializer): Likewise.
13123         (ptmd_initializer): Likewise.
13124         (class_hint_flags): Likewise.
13125         (class_initializer): Likewise.
13126         (synthesize_tinfo_var): Likewise.
13127         (create_real_tinfo_var): Likewise.
13128         (create_pseudo_type_info): Likewise.
13129         (get_vmi_pseudo_type_info): Likewise.
13130         (create_tinfo_types): Likewise.
13131         (emit_support_tinfos): New global function.
13132         (tinfo_decl_p): New global predicate.
13133         (emit_tinfo_decl): New global function.
13134         * class.c (set_rtti_entry): Generalize for old and new rtti.
13135         (build_vtbl_initializer): Likewise.
13136         * decl2.c (finish_file): Likewise.
13137
13138 Thu Jan 27 20:53:36 2000  Jim Wilson  <wilson@cygnus.com>
13139
13140         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
13141         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
13142
13143 Thu Jan 27 13:54:12 2000  Mike Stump  <mrs@wrs.com>
13144
13145         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
13146         for scopes.
13147
13148 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
13149
13150         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
13151
13152 Wed Jan 26 22:19:14 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13153
13154         * optimize.c (calls_setjmp_r): Supply new argument
13155         to special_function_p.
13156
13157 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13158
13159         * call.c: PROTO -> PARAMS.
13160         * class.c: Likewise.
13161         * cp-tree.h: Likewise.
13162         * cvt.c: Likewise.
13163         * decl.c: Likewise.
13164         * decl.h: Likewise.
13165         * decl2.c: Likewise.
13166         * dump.c: Likewise.
13167         * errfn.c: Likewise.
13168         * error.c: Likewise.
13169         * except.c: Likewise.
13170         * expr.c: Likewise.
13171         * init.c: Likewise.
13172         * input.c: Likewise.
13173         * lex.c: Likewise.
13174         * lex.h: Likewise.
13175         * method.c: Likewise.
13176         * optimize.c: Likewise.
13177         * parse.y: Likewise.
13178         * pt.c: Likewise.
13179         * repo.c: Likewise.
13180         * rtti.c: Likewise.
13181         * search.c: Likewise.
13182         * semantics.c: Likewise.
13183         * spew.c: Likewise.
13184         * tree.c: Likewise.
13185         * typeck.c: Likewise.
13186         * typeck2.c: Likewise.
13187         * xref.c: Likewise.
13188
13189 2000-01-25  Richard Henderson  <rth@cygnus.com>
13190
13191         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
13192
13193 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
13194
13195         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
13196         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
13197         (struct vcall_offset_data_s): New type.
13198         (dfs_vcall_offset_queue_p): New function.
13199         (dfs_build_vcall_offset_vtbl_entries): Likewise.
13200         (build_vcall_offset_vtbl_entries): Likewise.
13201         (layout_vtable_decl): Likewise.
13202         (num_vfun_entries): Likewise.
13203         (num_extra_vtbl_entries): Add the entries for vcall offsets.
13204         (build_vtbl_initializer): Likewise.
13205         (dfs_finish_vtabls): Use layout_vtable_decl.
13206         (modify_one_vtables): Always duplicate vtables under the new ABI.
13207         (finish_struct_1): Use layout_vtable_decl.
13208
13209 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13210
13211         * decl.c (member_function_or_else): Change third arg from a format
13212         specifier to an `enum overload_flags'.  Callers changed.
13213
13214 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
13215
13216         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
13217         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
13218         build_const_cast, get_delta_difference, check_return_expr): Avoid
13219         ANSI string concatenation usage.
13220
13221 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
13222
13223         * class.c (layout_class_type): Put the fields required to make a
13224         class non-empty at the end, not the beginning, of the TYPE_FIELDs
13225         list.
13226
13227 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
13228
13229         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
13230         template.
13231
13232         * decl2.c (mark_used): Do instantiate inlines that have been
13233         explicitly instantiated.
13234
13235 2000-01-24  Richard Henderson  <rth@cygnus.com>
13236
13237         * call.c (build_over_call): Use expand_tree_builtin.
13238         * typeck.c (build_function_call_real): Likewise.
13239         (build_binary_op_nodefault): Handle unordered compares.
13240
13241 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
13242
13243         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
13244         cp_tree_index values.
13245         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
13246         New global node #defines for them.
13247         * rtti.c (call_void_fn): Replace with ...
13248         (build_runtime_decl): ... new static function.
13249         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
13250         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
13251         (build_dynamic_cast_1): Always produce correctly typed result.
13252         Explicitly produce type_info addresses. Use dynamic_cast_node.
13253         * exception.cc (__throw_bad_cast): Return `void *'.
13254         (__throw_bad_typeid): Return `const type_info &'.
13255
13256 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
13257
13258         * cp-tree.h (get_vtable_decl): Prototype new function.
13259         * class.c (get_vtable_decl): New function. Broken out from ...
13260         (build_vtable): ... here. Use it.
13261         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
13262         by get_vtable_decl.
13263
13264 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
13265
13266         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
13267         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
13268         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
13269         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
13270         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
13271         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
13272         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
13273         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
13274         (CPTI_TINFO_VAR_ID): New enumeration.
13275         (__tp_desc_type_node, __access_mode_type_node,
13276         __bltn_desc_type_node, __user_desc_type_node,
13277         __class_desc_type_node, __ptr_desc_type_node,
13278         __attr_desc_type_node, __func_desc_type_node,
13279         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
13280         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
13281         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
13282         enum_desc_type_node, class_desc_type_node,
13283         si_class_desc_type_node, vmi_class_desc_type_node,
13284         ptmd_desc_type_node, base_desc_type_node): New #defines.
13285         (tinfo_fn_id, tinfo_fn_type): Rename to ...
13286         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
13287         (tinfo_var_id): New enumeration.
13288         (DECL_TINFO_FN_P): Augment comment.
13289         * decl.c (cp_global_trees): Adjust documentation.
13290         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
13291         tinfo_decl_type and tinfo_var_id.
13292         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
13293         (build_typeid): Remove unused variable.
13294         (get_tinfo_var): Use tinfo_var_id.
13295         (tinfo_name): New static function.
13296         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
13297         (tinfo_from_decl): Likewise.
13298         (get_base_offset): New static function, broken out of
13299         expand_class_desc.
13300         (expand_si_desc): Use tinfo_name.
13301         (expand_class_desc): Likewise. Lose local static variable.
13302         Use base_desc_type_node. Use get_base_offset.
13303         (expand_ptr_desc): Use tinfo_name.
13304         (expand_attr_desc): Likewise.
13305         (expand_generic_desc): Likewise.
13306
13307         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
13308         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
13309
13310 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
13311
13312         * cp-tree.h (__eprintf): Remove declaration.
13313         * tree.c (__eprintf): Remove definition.
13314
13315 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
13316             Mark Mitchell  <mark@codesourcery.com>
13317
13318         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
13319         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
13320
13321 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
13322
13323         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
13324
13325 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
13326
13327         * cp-tree.h (register_dtor_fn): New function.
13328         * decl.c (destroy_local_static): Rename to ...
13329         (register_dtor_fn): ... this.  Give it external linkage.
13330         (expand_static_init): Use it.
13331         * decl2.c (do_static_initialization): Likewise, if using
13332         __cxa_atexit.
13333         (do_static_destruction): Check that __cxa_atexit is not in use.
13334         (finish_file): Don't call do_static_destruction if using
13335         __cxa_atexit.
13336
13337         * typeck.c (convert_arguments): Restore two-message error
13338         reporting.
13339
13340 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
13341
13342         Remap dynamic cast hint values to be consistent across ABIs.
13343         * search.c (dynamic_cast_base_recurse): Remap generated value.
13344         (get_dynamic_cast_base_type): Adjust documentation.
13345         * tinfo.h (__user_type_info::dyncast): Likewise.
13346         (__user_type_info::find_public_subobj): Remap BOFF meaning.
13347         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
13348         (__class_type_info::do_dyncast): Likewise.
13349         (__class_type_info::do_find_public_subobj): Likewise.
13350         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
13351
13352 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
13353
13354         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
13355
13356         * typeck2.c (incomplete_type_error): Restore previous
13357         cp_error and cp_error_at call sequence.
13358
13359 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
13360
13361         * class.c (dump_class_hierarchy): Make format agree with argument;
13362         cast pointer to unsigned long and print with %lx.
13363
13364 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
13365
13366         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
13367
13368         * typeck.c (composite_pointer_type, common_type,
13369         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
13370         build_function_call_real, convert_arguments,
13371         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
13372         build_unary_op, mark_addressable, build_compound_expr,
13373         build_static_cast, build_reinterpret_cast, build_const_cast,
13374         build_c_cast, build_modify_expr, get_delta_difference,
13375         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
13376         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
13377         into a single one.
13378         * typeck2.c (readonly_error, abstract_virtuals_error,
13379         process_init_constructor, check_for_new_type): Likewise.
13380
13381 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
13382
13383         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
13384         VAR_DECLs.
13385
13386 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
13387
13388         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
13389         (build_x_typeid): Likewise.
13390         (get_tinfo_fn): Likewise.
13391         (get_tinfo_fn_unused): Rename to ...
13392         (get_tinfo_decl): ... here.
13393         * rtti.c (build_headof): Replace logic error with assertion.
13394         (get_tinfo_fn_dynamic): Rename to ...
13395         (get_tinfo_decl_dynamic): ... here. Make static. Use
13396         complete_type_or_else.
13397         (build_x_typeid): Move into ...
13398         (build_typeid): ... here. Adjust call to
13399         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
13400         throw_bad_typeid expression.
13401         (get_tinfo_fn_unused): Rename to ...
13402         (get_tinfo_decl): ... here. Adjust comment.
13403         (get_tinfo_fn): Delete.
13404         (tinfo_from_decl): New static function.
13405         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
13406         (get_typeid): Use complete_type_or_else.
13407         (build_dynamic_cast_1): Adjust calls to
13408         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
13409         * parse.y (primary): Adjust call to build_typeid.
13410         * except.c (build_eh_type_type_ref): Adjust call to
13411         get_tinfo_decl. Mark as used.
13412         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
13413         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
13414         * parse.c: Regenerated.
13415
13416 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
13417
13418         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
13419         calling convention.
13420         (resolves_to_fixed_type_p): Document calling convention.
13421         * rtti.c (build_x_typeid): Initialize NONNULL.
13422
13423         * cp-tree.h (build_shared_int_cst): New function.
13424         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
13425         * class.c (modify_vtable_entry): Likewise.
13426         (add_virtual_function): Split out code to generated shared
13427         INTEGER_CSTs to build_share_int_cst.
13428         (modify_all_vtables): Handle all the overridden functions here.
13429         Add overridden functions from non-primary virtual bases to the
13430         primary vtable.
13431         (finish_struct_1): Adjust call to modify_all_vtables.  Add
13432         overridden functions from non-primary bases to the vtable.
13433         * tree.c (build_shared_int_cst): New function.
13434
13435         * cp-tree.h (scratchalloc): Remove.
13436         (build_scratch_list): Likewise.
13437         * call.c (convert_class_to_reference): Replace build_scratch_list
13438         and build_expr_list with build_tree_list.
13439         (add_candidate): Replace scratchalloc with expralloc.  Note memory
13440         leak.
13441         (build_user_type_conversion_1):  Replace build_scratch_list
13442         and build_expr_list with build_tree_list.
13443         (build_new_op): Likewise.
13444         (build_op_delete_call): Likewise.
13445         (convert_like): Likewise.
13446         * cvt.c (ocp_convert): Likewise.
13447         * decl.c (start_decl): Likewise.
13448         (start_function): Likewise.
13449         (finish_destructor_body): Likewise.
13450         (maybe_build_cleanup_1): Likewise.
13451         * decl2.c (reparse_decl_as_expr): Likewise.
13452         * init.c (perform_member_init): Likewise.
13453         (expand_cleanup_for_base): Likewise.
13454         (build_builtin_delete_call): Likewise.
13455         (build_new_1): Likewise.
13456         (build_delete): Likewise.
13457         * method.c (do_build_assign_ref): Likewise.
13458         * parse.y (already_scoped_stmt): Likewise.
13459         (nontrivial_exprlist): Likewise.
13460         (net_initializer): Likewise.
13461         (initlist): Likewise.
13462         * parse.c: Regenerated.
13463         * rtti.c (build_x_typeid): Likewise.
13464         (build_dynamic_cast_1): Likewise.
13465         * typeck.c (build_x_compound_expr): Likewise.
13466         (build_static_cast): Likewise.
13467         (build_modify_expr): Likewise.
13468
13469         * cp-tree.h (DECL_VINDEX): Add documentation.
13470         * class.c (build_vtable_entry): Likewise.
13471         (start_vtable): Add comment.
13472         (add_virtual_function): Replace pending_hard_virtuals with
13473         overridden_virtuals and pending_virtuals with new_virtuals.
13474         Replace redundant assignments with assertions.
13475         (check_for_override): Add comment.
13476         (check_bases_and_members): Replace pending_hard_virtuals with
13477         overridden_virtuals and pending_virtuals with new_virtuals.
13478         (create_vtbl_ptr): Likewise.
13479         (layout_class_type): Likewise.
13480         (finish_struct_1): Likewise.  Add comments.
13481
13482 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
13483
13484         * class.c (finish_struct_1): Replace redundant code with
13485         assertions.
13486
13487         * cp-tree.h (flag_new_abi): Move.
13488         (flag_use_cxa_atexit): Likewise.
13489         (flag_honor_std): Likewise.
13490         (flag_rtti): Likewise.
13491         (vbase_offsets_in_vtable_p): Define.
13492         (vptrs_present_everywhere_p): Likewise.
13493         (TYPE_CONTAINS_VPTR_P): Likewise.
13494         (dfs_walk_real): Declare.
13495         * class.c (build_vbase_pointer_fields): Check
13496         vbase_offsets_in_vtable_p.
13497         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
13498         BINFO_VPTR_FIELD.
13499         (build_vbase_offset_vtbl_entries): Simplify.
13500         (build_vbase_offset_vtbl_entries): Adjust.
13501         (build_vbase_pointer): Add ability to look up vbase offsets in
13502         vtable.
13503         (start_vtable): New function.
13504         (add_virtual_function): Use it.
13505         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
13506         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
13507         (build_vtbl_initializer): Take the type of the complete object as
13508         input.  Use it to correctly calculate vbase offsets.
13509         (dfs_finish_vtbls): Pass the complete type to
13510         build_vtbl_initializer.
13511         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
13512         (create_vtable_ptr): Create a vtable even if there are no
13513         new virtual functions, under the new ABI.
13514         (finish_struct_1): Likewise.
13515         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
13516         * decl.c (exapnd_static_init): Remove call to
13517         preserve_initializer.
13518         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
13519         vtables.
13520         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
13521         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
13522         (construct_virtual_bases): Don't initialize virtual base pointers
13523         under the new ABI.
13524         (build_aggr_init): Clean up comment.
13525         (expand_aggr_init_1): Likewise.
13526         * rtti.c (expand_class_desc): Store the virtual function table
13527         index where the vbase offset lives in the offset field.
13528         * search.c (dfs_walk_real): Make it global.
13529         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
13530         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
13531
13532         * tinfo.h (USItype): Make it signed under the new ABI.
13533         * tinfo.cc (convert_to_base): New function.  Encapsulate base
13534         conversion logic here.
13535         (__class_type_info::do_upcast): Use it.
13536         (__class_type_info::do_dyncast): Likewise.
13537         (__class_type_info::do_find_public_subobj): Likewise.
13538
13539         * init.c (construct_virtual_bases): Don't look up the addresses of
13540         virtual bases at run-time.
13541
13542         * class.c (build_vbase_pointer): Relocate.
13543         (build_vbase_pointer_fields): Likewise.
13544         (dfs_build_vbase_offset_vtbl_entries): Likewise.
13545         (build_vbase_offset_vtbl_entries): Likewise.
13546
13547         * decl.c (init_decl_processing): Complain if -fnew-abi
13548         -fno-vtable-thunks is used.
13549
13550         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
13551         flag_new_abi.
13552
13553 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
13554
13555         * cp-tree.h (num_extra_vtbl_entries): New function.
13556         (size_extra_vtbl_entries): Likewise.
13557         (dfs_vtable_path_unmark): Likewise.
13558         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
13559         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
13560         * class.c (num_extra_vtbl_entries): New function.
13561         (size_extra_vtbl_entries): Likewise.
13562         (dfs_build_vbase_offset_vtbl_entries): New function.
13563         (build_vbase_offset_vtbl_entries): Likewise.
13564         (build_vtbl_initializer): Use it.
13565         (finish_struct_1): Adjust vtable sizes (using
13566         num_extra_vtbl_entries).
13567         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
13568         THUNK_DECL is non-NULL before expanding it.
13569         * init.c (expand_virtual_init): Adjust the vtable pointer by
13570         size_extra_vtbl_entries before storing it.
13571         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
13572         Handle TREE_LIST parameters here, not in the dfs_* functions.
13573         (dfs_unmarked_real_bases_queue_p): Adjust.
13574         (dfs_marked_real_bases_queue_p): Likewise.
13575         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
13576         (dfs_vtable_path_marked_real_bases_queue_p): New function.
13577         (dfs_vtable_path_unmark): Likewise.
13578
13579 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
13580
13581         * optimize.c (copy_body_r): Clear the operand three of a
13582         TARGET_EXPR when copying it.
13583
13584 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13585
13586         * method.c (build_decl_overload_real): Check whether we are in ::
13587         before returning __builtin_new/delete.
13588
13589 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
13590
13591         * pt.c (tsubst_friend_function): Improve comment.
13592         (instantiate_decl): Avoid crashing when a "nested" function is
13593         instantiated from the top level.
13594
13595         * dump.c (dqeueue_and_dump): Dump
13596         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
13597
13598 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13599
13600         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
13601
13602 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
13603
13604         * g++spec.c (lang_specific_driver): Add -fnew-abi if
13605         ENABLE_NEW_GXX_ABI defined.
13606         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
13607         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
13608         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
13609
13610 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
13611
13612         * decl.c (start_cleanup_fn): Call pushdecl.
13613
13614         * call.c (convert_class_to_reference): Fix typos.
13615         (build_conditional_expr): Handle errors gracefully.
13616         * class.c (push_nested_class): Likewise.
13617         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
13618         (DECL_THIS_EXTERN): Use it.
13619         (DECL_THIS_STATIC): Likewise.
13620         * cvt.c (convert_to_void): Handle errors gracefully.
13621         (build_expr_type_conversion): Likewise.
13622         * decl.c (maybe_push_decl): Likewise.
13623         (start_decl_1): Likewise.
13624         (require_complete_types_for_parms): Likewise.
13625         * parse.y (structsp): Likewise.
13626         (base_class): Likewise.
13627         * parse.c: Regenerated.
13628         * pt.c (finish_member_template_decl): Likewise.
13629         * typeck.c (decay_conversion): Likewise.
13630
13631         * cp-tree.h (dfs_skip_vbases): New function.
13632         (find_vbase_instance): Likewise.
13633         * class.c (determine_primary_base): Allow a nearly empty base to
13634         serve as a primary base class under the new ABI.
13635         (get_class_offset_1): Rename to ...
13636         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
13637         messages here.
13638         (get_class_offset): Use it.  Issue error messages here.
13639         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
13640         find the right copies of virtual bases.
13641         (fixup_vtable_deltas1): Rename to ...
13642         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
13643         bases as primary bases.
13644         (fixup_vtable_deltas): Remove.
13645         (override_one_vtable): Handle virtual bases as primary bases.
13646         (merge_overrides): Likewise.
13647         (finish_struct_1): Likewise.
13648         (dump_class_hierarchy): Dump primary-ness of bases as well.
13649         * search.c (mark_primary_bases): Use a pre-order traversal to
13650         handle primary virtual bases.
13651         (dfs_skip_vbases): New fiunction.
13652         (expand_upcast_fixups): Adjust to handle primary virtual bases.
13653         (fixup_virtual_upcast_offsets): Likewise.
13654         (fixup_all_virtual_upcast_offsets): Likewise.
13655         (dfs_find_vbase_instances): New function.
13656         (find_vbase_instance): Likewise.
13657
13658 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
13659
13660         * lex.c (DIR_SEPARATOR): Delete macro.
13661
13662 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
13663
13664        * decl2.c (lang_decode_option): Handle automatic line wrapping
13665        option.
13666
13667 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
13668
13669         * friend.c (do_friend): Don't resolve scopes when processing
13670         template declarations, even if the qualifying scope doesn't
13671         involve template parameters.
13672
13673 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
13674
13675         * class.c (dfs_modify_vtables_queue_p): Remove.
13676         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
13677         and dfs_marked_real_bases_queue_p instead of
13678         dfs_modify_vtables_queue_p.
13679
13680         * class.c (build_vbase_path): Simplify.
13681         (dfs_propagate_binfo_offsets): New function.
13682         (propagate_binfo_offsets): Use it.
13683         (remove_base_field): Simplify.
13684         (dfs_set_offset_for_vbases): Remove.
13685         (dfs_set_offset_for_shared_vbases): New function.
13686         (dfs_set_offset_for_unshared_vbases): Likewise.
13687         (layout_virtual_bases): Use them.
13688         (layout_basetypes): Don't call propagate_binfo_offsets.
13689         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
13690         for the vbases.
13691
13692         * class.c (build_base_field): New function, split out from ...
13693         (build_base_fields): ... here.  Use it.  Allocate primary bases
13694         first, under the new ABI.
13695         (get_vtable_entry): Remove.
13696         (remove_base_field): New function, split out from ...
13697         (remove_base_fields): ... here.  Adjust since primary bases come
13698         first under the new ABI.
13699
13700         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
13701         (initialize_vtbl_ptrs): New function.
13702         (expand_indirect_vtbls_init): Change prototype.
13703         (convert_pointer_to_vbase): Declare.
13704         * init.c (expand_direct_vtbls_init): Remove.
13705         (dfs_initialize_vtbl_ptrs): New function.
13706         (initialize_vtbl_ptrs): Likewise.
13707         (emit_base_init): Use initialize_vtbl_ptrs.
13708         * search.c (convert_pointer_to_vbase): Make it global.
13709         (expand_indirect_vtbls_init): Remove vtable initialization code.
13710         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
13711
13712         * class.c (dfs_finish_vtbls): New function.
13713         (finish_vtbls): Use it.
13714         (dump_class_hierarchy): New function.
13715
13716         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
13717         (BINFO_VBASE_PRIMARY_P): New macro.
13718         (BINFO_VIRTUALS): Add to documentation.
13719         (SET_BINFO_PRIMARY_MARKED_P): Remove.
13720         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13721         (dfs_mark_primary_bases_queue_p): Likewise.
13722         (dfs_unmarked_real_bases_queue_p): New function.
13723         (dfs_marked_real_bases_queue_p): Likewise.
13724         * search.c (dfs_mark_primary_bases): Adjust.
13725         (mark_primary_bases): Likewise.
13726         (get_shared_vbase_if_not_primary): New function.
13727         (dfs_unmarked_real_bases_queue_p): Likewise.
13728         (dfs_marked_real_bases_queue_p): Likewise.
13729         (dfs_get_pure_virtuals): Simplify.
13730         (get_pure_virtuals): Likewise.
13731
13732 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13733
13734         * lex.c: Include tm_p.h.
13735
13736 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
13737
13738         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
13739
13740 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
13741
13742         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
13743         * pt.c (instantiate_decl): Defer comdat templates that might not be
13744         needed.
13745
13746         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
13747         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
13748         (finish_file): Likewise.
13749
13750         * decl2.c (import_export_class): Undo 12/14 change.
13751
13752         * error.c (dump_decl): operator new, not operatornew.
13753
13754         * class.c (field_decl_cmp): A nontype is "greater" than a type.
13755         * search.c (lookup_field_1): Look for the last field with the
13756         desired name.
13757
13758 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13759
13760         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
13761         FUNCTION_DECL.
13762
13763 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13764
13765         * typeck.c (build_static_cast): Don't strip target qualifiers
13766         when casting from a class.
13767
13768 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13769
13770         * class.c (warn_hidden): Initialize variable `fndecl'.
13771
13772 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
13773
13774         * decl.c (flag_isoc9x): New variable to be able to use code in
13775         c-common.c.  For now always zero.
13776
13777 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
13778
13779         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
13780         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
13781         or unshare_base_binfos for virtual bases here.
13782         * search.c (dfs_get_vbase_types): Do it here.
13783         (get_vbase_types): Adjust.
13784
13785 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
13786
13787         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
13788         (BINFO_PRIMARY_MARKED_P): Use flag 5.
13789         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13790         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13791         (unmark_primary_bases): Remove declaration.
13792         (unmarkedp): Declare.
13793         (dfs_vbase_unmark): Likewise.
13794         * class.c (determine_primary_base): Return immediately if there
13795         are no base classes.  Call mark_primary_bases here.
13796         (modify_all_direct_vtables): Remove.
13797         (modify_all_indirect_vtables): Remove.
13798         (dfs_modify_vtables_queue_p): New function.
13799         (dfs_modify_vtables): New function.
13800         (modify_all_vtables): Use them.
13801         (build_base_fields): Build FIELD_DECLs for primary virtual base
13802         classes.
13803         (create_vtable_ptr): Don't call determine_primary_base here.
13804         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
13805         (dfs_set_offset_for_vbases): ... this.
13806         (layout_virtual_bases): Use it.
13807         (layout_class_type): Call determine_primary_base here.
13808         * search.c (unmarkedp): Make it global.
13809         (shared_marked_p): Simplify.
13810         (shared_unmarked_p): Likewise.
13811         (dfs_primary_bases_queue_p): Remove.
13812         (dfs_unmark_primary_bases): Likewise.
13813         (unmark_primary_bases): Likewise.
13814         (mark_primary_bases): Simplify.
13815         (get_pure_virtuals): Don't call mark_primary_bases here.
13816         (dfs_vbase_unmark): New function.
13817         (get_vbase_types): Simplify.
13818
13819         * class.c (struct base_info): Remove.
13820         (determine_primary_base): Take has_virtual_p rather than a
13821         base_info as input.  Don't calculate max_has_virtual.
13822         (finish_struct_bits): Remove max_has_virtual argument.
13823         (create_vtable_ptr): Remove max_has_virtual_p argument.
13824         (layout_virtual_bases): Remove max argument.
13825         (layout_basetypes): Likewise.
13826         (layout_class_type): Remove max_has_virtual_p argument.
13827         (finish_struct_1): Remove max_has_virtual.
13828
13829         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
13830         (layout_basetypes): Remove.
13831         * class.c (propagate_binfo_offsets): Moved here from tree.c.
13832         Update to handle primary virtual bases.
13833         (remove_base_fields): New function, split out from
13834         layout_basetypes.
13835         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
13836         (layout_virtual_bases): New function, split out from
13837         layout_basetypes.  Update to handle primary virtual bases.
13838         (layout_basetypes): Moved here from tree.c.  Use
13839         remove_base_fields and layout_virtual_bases.
13840         * search.c (dfs_mark_primary_bases_queue_p): New function.
13841         (mark_primary_bases): Use it.
13842         * tree.c (CEIL): Remove.
13843         (propagate_binfo_offsets): Remove.
13844         (layout_basetypes): Remove.
13845
13846 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13847
13848         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
13849         (BINFO_PRIMARY_MARKED_P): New macro.
13850         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13851         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13852         (mark_primary_bases): New function.
13853         (unmark_primary_bases): Likewise.
13854         * search.c (get_abstract_virtuals_1): Remove.
13855         (dfs_mark_primary_bases): New function.
13856         (mark_primary_bases): Likewise.
13857         (dfs_unmark_primary_bases): Likewise.
13858         (unmark_primary_bases): Likewise.
13859         (dfs_get_pure_virtuals): Likewise.
13860
13861 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13862
13863         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
13864         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
13865         (modify_one_vtable): Adjust.
13866         (fixup_vtable_deltas1): Likewise.
13867         (override_one_vtable): Likewise.
13868         * search.c (get_abstract_virtuals_1): Likewise.
13869         (get_pure_virtuals): Likewise.
13870         (expand_upcast_fixups): Likewise.
13871         * tree.c (debug_binfo): Likewise.
13872
13873         * class.c (build_vtable): Don't return a value.  Don't rebuild
13874         vtables for bases that have already been handled.
13875         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
13876         already been handled.
13877         (modify_one_vtable): Adjust accordingly.
13878         (fixup_vtable_deltas1): Likewise.
13879         (finish_struct_1): Likewise.
13880
13881 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13882
13883         * call.c (build_new_method_call): Also check destructors.