OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog.3
1 2003-12-30  Nathan Sidwell  <nathan@codesourcery.com>
2
3         PR c++/13507
4         * decl.c (duplicate_decls): Use build_type_attribute_variant to
5         merge attributes.
6
7         PR c++/13494
8         * tree.c (build_cplus_array_type_1): Only build a minimal array
9         type for dependent types or domains.
10
11 2003-12-29  Nathan Sidwell  <nathan@codesourcery.com>
12
13         PR c++/12774
14         * typeck.c (comp_array_types): Fold non-dependent domains for
15         ABI-1.
16
17 2003-12-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
18
19         PR c++/13289
20         * semantics.c (finish_id_expression): Only check if the type of
21         a template argument is integral or enumeration when it is not
22         dependent.
23
24 2003-12-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
25
26         PR c++/12403
27         * parser.c (cp_parser_template_declaration_after_export): Set up
28         template specialization scope in case of explicit specialization.
29
30 2003-12-28  Mark Mitchell  <mark@codesourcery.com>
31
32         PR c++/13081
33         * decl.c (duplicate_decls): Preserve inline-ness when redeclaring
34         a function template.
35
36         PR c++/12613
37         * decl.c (reshape_init): Reject GNU colon-style designated
38         initializers in arrays.
39
40         PR c++/13009
41         * call.c (build_special_member_call): Do not assume that we have a
42         pointer to the complete object in an assignment operator.
43
44 2003-12-28  Roger Sayle  <roger@eyesopen.com>
45
46         PR c++/13070
47         * decl.c (duplicate_decls): When setting the type of an anticipated
48         declaration, merge the existing type attributes.
49
50 2003-12-25  Andrew Pinski  <pinskia@physics.uc.edu>
51
52         PR c++/13268, c++/13339
53         * class.c (add_method): Return early when method is error_mark_node.
54         * pt.c (tsubst_friend_function): Return early when new_friend is
55         error_mark_node.
56
57 2003-12-23  Mark Mitchell  <mark@codesourcery.com>
58
59         * cp-lang.c (cp_expr_size): Return zero for empty classes.
60
61         * cp-tree.h (warn_if_uknown_interface): Remove unused function.
62         * decl2.c (warn_if_unknown_interface): Likewise.
63
64 2003-12-23  Nathan Sidwell  <nathan@codesourcery.com>
65
66         PR c++/13387
67         * cp-lang.c (cxx_get_alias_set): Correct logic for a base type.
68
69 2003-12-22  Mark Mitchell  <mark@codesourcery.com>
70
71         * decl.c (start_function): Do not check
72         flag_alt_external_templates or flag_external_templates.
73         * decl2.c (warn_if_unknown_interface): Likewise.
74         * lex.c (extract_interface_info): Likewise.
75         * pt.c (lookup_template_class): Likewise.
76
77         PR c++/12862
78         * name-lookup.c (pushdecl): Look up all namespace-scope entities
79         in their corresponding namespace.
80
81         PR c++/12397
82         * typeck.c (finish_class_member_access_expr): Don't tree
83         IDENTIFIER_NODEs as non-dependent expressions.
84
85 2003-12-22  Andrew Pinski  <pinskia@physics.uc.edu>
86
87         PR c++/5050
88         * tree.c (cp_start_inlining): Remove.
89         (cp_end_inlining): Remove.
90         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Do not define.
91         (LANG_HOOKS_TREE_INLINING_END_INLINING): Do not define.
92         * cp-tree.h (cp_start_inlining): Do not declare.
93         (cp_end_inlining): Do not declare.
94
95 2003-12-22  Mark Mitchell  <mark@codesourcery.com>
96
97         PR c++/12479
98         * parser.c (cp_parser_declaration_seq_opt): Only issue "extra ;"
99         pedwarn when not in a system header.
100
101 2003-12-21  Mark Mitchell  <mark@codesourcery.com>
102
103         * cp-tree.h (cp_tree_index): Remove CPTI_RECORD_TYPE,
104         CPTI_UNION_TYPE, CPTI_ENUM_TYPE.
105         (record_type_node): Remove.
106         (union_type_node): Likewise.
107         (enum_type_node): Likewise.
108         * decl.c: Remove mention of above tree nodes in comment.
109         * lex.c (cxx_init): Do not assign to record_type_node,
110         union_type_node, or enum_type_node.  Simplify handling of
111         class_type_node.
112
113         PR c++/11554
114         * init.c (sort_mem_initializers): Add warning.
115
116 2003-12-21  Kazu Hirata  <kazu@cs.umass.edu>
117
118         * call.c: Fix comment formatting.
119         * class.c: Likewise.
120         * cp-tree.h: Likewise.
121         * cvt.c: Likewise.
122         * cxx-pretty-print.c: Likewise.
123         * decl.c: Likewise.
124         * decl2.c: Likewise.
125         * error.c: Likewise.
126         * except.c: Likewise.
127         * init.c: Likewise.
128         * name-lookup.c: Likewise.
129         * parser.c: Likewise.
130         * pt.c: Likewise.
131         * rtti.c: Likewise.
132         * semantics.c: Likewise.
133         * typeck.c: Likewise.
134         * typeck2.c: Likewise.
135
136 2003-12-19  Kazu Hirata  <kazu@cs.umass.edu>
137
138         * cvt.c: Remove uses of "register" specifier in
139         declarations of arguments and local variables.
140         * decl.c: Likewise.
141         * decl2.c: Likewise.
142         * expr.c: Likewise.
143         * friend.c: Likewise.
144         * lex.c: Likewise.
145         * name-lookup.c: Likewise.
146         * repo.c: Likewise.
147         * search.c: Likewise.
148         * tree.c: Likewise.
149         * typeck.c: Likewise.
150         * typeck2.c: Likewise.
151
152 2003-12-19  Mark Mitchell  <mark@codesourcery.com>
153
154         PR c++/12795
155         * name-lookup.c (pushdecl): Do not treated any functions as being
156         "nested" in C++.
157
158 2003-12-19  Jason Merrill  <jason@redhat.com>
159
160         PR c++/13371
161         * typeck.c (build_modify_expr): Stabilize lhs if we're narrowing.
162         * cvt.c (convert_to_void): Don't warn about the RHS of a comma
163         being useless if TREE_NO_UNUSED_WARNING is set.
164
165 2003-12-18  Richard Henderson  <rth@redhat.com>
166
167         * cp-tree.h (struct lang_type_header): Remove __extension__.
168
169 2003-12-18  Jason Merrill  <jason@redhat.com>
170
171         PR c++/12253
172         * init.c (build_vec_init): Initialization of an element from
173         an initializer list is also a full-expression.
174
175         * parser.c, pt.c, semantics.c: Rename constant_expression_p
176         to integral_constant_expression_p.
177
178 2003-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
179
180         PR c++/13262
181         * pt.c (instantiate_decl): Wrap push_nested_class and
182         pop_nested_class around cp_finish_decl call for static member
183         variable.
184
185 2003-12-18  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
186
187         PR c++/9154
188         * parser.c (cp_parser_template_argument): A type-id followed by '>>'
189         is just an user typo, and should be accepted as last resort if any
190         other parsing fails.
191         (cp_parser_enclosed_template_argument_list): If the argument list is
192         parsed correctly, but the next token is '>>', emit a diagnostic.
193         (cp_parser_next_token_ends_template_argument): Accept '>>' as 
194         delimiter of template argument, it will be later detected as a typo.
195
196 2003-12-17  Kelley Cook  <kcook@gcc.gnu.org>
197
198         * Make-lang.in: Replace cp/g++.1 with $(docobjdir)/g++.1.
199
200 2003-12-17  Mark Mitchell  <mark@codesourcery.com>
201
202         PR c++/10603
203         PR c++/12827
204         * parser.c (cp_parser_error): Help c_parse_error print good
205         messages if the next token is a keyword.
206         (cp_parser_parameter_declaration_list): When resynchronizing after
207         a bad parameter declaration, stop if a comma is found.
208         (cp_parser_parameter_declaration): Avoid backtracking.
209
210 2003-12-16  Mark Mitchell  <mark@codesourcery.com>
211
212         PR c++/12696
213         * decl.c (reshape_init): Recover quickly from errors.
214
215 2003-12-16  Nathan Sidwell  <nathan@codesourcery.com>
216
217         PR c++/9043
218         C++ ABI change: Mangling array indices in templates.
219         * decl.c (compute_array_index_type): Reorganize for earlier
220         template errors. Use value_dependent_expression_p for abi-2.
221         * mangle.c (write_array_type): Check broken mangling for
222         expression indices on abi-1
223
224 2003-12-16  Mark Mitchell  <mark@codesourcery.com>
225
226         PR c++/12696
227         * decl.c (reshape_init): Recover quickly from errors.
228
229         PR c++/13275
230         * lex.c (reswords): Add "__offsetof" and "__offsetof__".
231         * parser.c (cp_parser): Add in_offsetof_p.
232         (cp_parser_new): Initialize it.
233         (cp_parser_primary_expression): Handle __offsetof__ (...).
234         (cp_parser_postfix_expression): Allow casts to pointer type and
235         uses of "->" in a constant expression if implementing offsetof.
236         (cp_parser_unary_expression): Allow the use of "&" in a constant
237         expression if implementing offsetof.
238
239 2003-12-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
240
241         PR c++/2294
242         * name-lookup.c (push_overloaded_decl): always construct an OVERLOAD
243         if the declaration comes from an using declaration.
244
245 2003-12-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
246
247         * semantics.c (finish_id_expression): Refactor the code to handle
248         template parameters, and emit a more informative error message
249         when they are used within an integral constant expression.
250
251 2003-12-16  Nathan Sidwell  <nathan@codesourcery.com>
252
253         PR c++/13387
254         * class.c (finish_struct_1): Compute mode and alias set for
255         CLASSTYPE_AS_BASE.
256         * call.c (build_over_call): Use CLASSTYPE_AS_BASE for trivial
257         assignment of a class, as necessary.
258         * cp-lang.c (cxx_get_alias_set): The alias set as a base is the
259         same as for the complete type.
260
261         PR c++/13242
262         C++ ABI change. Mangling template parameters of reference type
263         * mangle.c (write_template_args): Remove unreachable code.
264         (write_template_arg): Look through an argument of reference type.
265
266 2003-12-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
267
268         PR c++/2294
269         * name-lookup.c (push_overloaded_decl): always construct an OVERLOAD
270         if the declaration comes from an using declaration.
271
272 2003-12-15  Mark Mitchell  <mark@codesourcery.com>
273
274         PR c++/10926
275         * decl2.c (grokfield): Robustify.
276
277         PR c++/11116
278         * parser.c (cp_parser_throw_expression): Determine whether or not
279         an assignment-expression is present by doing one-token lookahead.
280
281         PR c++/13269
282         * parser.c (cp_parser_function_definition_after_declarator): Stop
283         scanning tokens when reaching EOF.
284
285         PR c++/12989
286         * typeck.c (cxx_sizeof_or_alignof_expr): Robustify.
287
288         PR c++/13310
289         * pt.c (dependent_template_p): Handle OVERLOADs.
290
291 2003-12-15  Mark Mitchell  <mark@codesourcery.com>
292
293         PR c++/13243
294         PR c++/12573
295         * parser.c (cp_parser_postfix_expression): Tighten handling of
296         integral constant expressions.
297         (cp_parser_unary_expression): Likewise.
298         * pt.c (value_dependent_expression_p): Remove handling for
299         COMPONENT_REFs.
300
301 2003-12-15  Nathan Sidwell  <nathan@codesourcery.com>
302
303         * class.c (add_method): Disallow destructor for java classes.
304         * decl.c (xref_basetypes): Check java class inheritance.
305         * decl2.c (check_java_method): Skip artificial params.
306
307         PR c++/13241
308         C++ ABI change. Mangling of symbols in expressions.
309         * mangle.c (write_mangled_name): Add top_level flag. Rework for
310         nested and unnested mangling. Deal with abi version 1 and version
311         2 differences.
312         (write_expression): Adjust write_mangled_name call.
313         (mangle_decl_string): Use write_mangled_name for all non-type decls.
314
315 2003-12-14  Mark Mitchell  <mark@codesourcery.com>
316
317         PR c++/10779
318         PR c++/12160
319         * parser.c (struct cp_parser): Add in_template_argument_list_p.
320         (cp_parser_error): Use c_parse_error.
321         (cp_parser_name_lookup_error): New function.
322         (cp_parser_new): Initialize it.
323         (cp_parser_declarator): Add parenthesized_p parameter.
324         (cp_parser_nested_name_specifier_opt): Use
325         cp_parser_name_lookup_error.
326         (cp_parser_parenthesized_expression_list): Improve comments.
327         (cp_parser_condition): Adjust call to cp_parser_declarator.
328         (cp_parser_template_parameter): Adjust call to
329         cp_parser_parameter_declaration.
330         (cp_parser_template_argument_list): Set
331         in_template_argument_list_p.
332         (cp_parser_explicit_instantiation): Adjust call to
333         cp_parser_declarator.
334         (cp_parser_simple_type_specifier): Remove unncessary code.
335         (cp_parser_using_declaration): Use cp_parser_name_lookup_error.
336         (cp_parser_init_declarator): Handle member function definitions.
337         (cp_parser_direct_declarator): Adjust call to
338         cp_parser_declarator.
339         (cp_parser_type_id): Adjust call to cp_parser_declarator.
340         (cp_parser_parameter_declaration_list): Avoid backtracking where
341         possible.
342         (cp_parser_parameter_declaration): Add parenthesized_p parameter.
343         (cp_parser_function_definition): Remove.
344         (cp_parser_member_declaration): Do not backtrack to look for
345         function definitions.
346         (cp_parser_exception_declaration): Adjust call to
347         cp_parser_declarator.
348         (cp_parser_single_declaration): Handle function definitions via
349         cp_parser_init_declarator.
350         (cp_parser_save_member_function_body): New function.
351
352 2003-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
353
354         PR c++/13106
355         * decl.c (finish_function): Check if return type is dependent before
356         issuing no return statement warning.
357
358 2003-12-12  Nathan Sidwell  <nathan@codesourcery.com>
359
360         PR c++/13118
361         * cp-tree.h (lang_decl_u): Add thunk_alias member.
362         (THUNK_VIRTUAL_OFFSET): Must be a FUNCTION_DECL.
363         (THUNK_ALIAS_P): Remove.
364         (THUNK_ALIAS): Adjust.
365         * class.c (update_vtable_entry_for_fn): Get the vbase within the
366         overriding function's return type.
367         (dump_thunk): Adjust THUNK_ALIAS printing.
368         (build_vtbl_initializer): Adjust THUNK_ALIAS use.
369         * method.c (make_thunk): Revert 12881 test change. Clear
370         THUNK_ALIAS.
371         (finish_thunk): Adjust THUNK_ALIAS setting.
372         (use_thunk): Adjust THUNK_ALIAS use.
373         * semantics.c (emit_associated_thunks): Likewise.
374
375         PR c++/13114, c++/13115
376         * class.c (layout_empty_base): Propagate the move of an empty base
377         to offset zero.
378
379         PR c++/12881
380         * method.c (make_thunk): Deal with thunk aliases when searching
381         for a thunk. Robustify assertion.
382
383 2003-12-11  Nathan Sidwell  <nathan@codesourcery.com>
384
385         * mangle.c (conv_type_names): Holds IDENTIFIER_NODEs only.
386         (hash_type): Use TYPE_UID of the identifier's type.
387         (compare_type): Adjust.
388         (mangle_conv_op_name_for_type): Store identifier nodes only, use
389         TYPE_UID has hash value.
390
391 2003-12-10  Mark Mitchell  <mark@codesourcery.com>
392
393         * cp-tree.h (DECL_CONV_FN_P): Check that DECL_NAME is non-NULL.
394
395 2003-12-08  Matt Austern  <austern@apple.com>
396
397         PR c/13134
398         * decl.c (duplicate_decls): Copy visibility flag when appropriate.
399         
400 2003-12-09  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
401
402         * init.c (build_new_1): Deal with an OVERLOAD set when
403         looking up for _Jv_AllocObject.
404         * except.c (build_throw): Likewise for _Jv_Throw.
405
406 2003-12-08  Jason Merrill  <jason@redhat.com>
407
408         PR c++/11971
409         * tree.c (build_local_temp): Split out from build_cplus_new.
410         (force_target_expr): New fn.
411         * call.c (call_builtin_trap): Call it.  Take a type parm.
412         (convert_arg_to_ellipsis): Pass it.
413         (build_x_va_arg): Use call_builtin_trap.
414
415         PR c++/11929
416         * call.c (magic_varargs_p): New fn.
417         (build_over_call): Do no ellipsis conversions for arguments to 
418         functions with magic varargs.
419
420         * name-lookup.c, init.c, except.c: Revert Giovanni's patch from
421         yesterday.
422
423         Give the anonymous namespace a null DECL_NAME.
424         * cp-tree.h: Don't declare anonymous_namespace_name.
425         * decl.c: Don't define it.
426         * dump.c (cp_dump_tree): Don't check for it.
427         * cxx-pretty-print.c (pp_cxx_original_namespace_definition): Likewise.
428         * error.c (dump_decl): Likewise.
429         * name-lookup.c: Define it here.
430         (push_namespace): Put it in DECL_ASSEMBLER_NAME instead.
431         * mangle.c (write_unqualified_name): Adjust.
432
433 2003-12-07  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
434
435         PR c++/2294
436         * name-lookup.c (push_overloaded_decl): Always construct an
437         OVERLOAD unless the declaration is a built-in.
438         (set_namespace_binding): While binding OVERLOADs with only one
439         declaration, we still need to call supplement_binding.
440         * init.c (build_new_1): Deal with an OVERLOAD set when
441         looking up for _Jv_AllocObject.
442         * except.c (build_throw): Likewise for _Jv_Throw.
443
444 2003-12-06  Mark Mitchell  <mark@codesourcery.com>
445
446         PR c++/13323
447         * class.c (same_signature_p): Handle conversion operators
448         correctly.
449         (check_for_override): Likewise.
450
451 2003-12-06  Kelley Cook  <kcook@gcc.gnu.org>
452
453         * Make-lang.in (GXX_CROSS_NAME, CXX_CROSS_NAME): Delete.
454         (c++.install_common, cp/g++.1, c++.install-man): Adjust for above.
455         (c++.uninstall): Likewise.
456
457 2003-12-05  Danny Smith <dannysmith@gcc.gnu.org>
458             Mark Mitchell  <mark@codesourcery.com>
459
460         PR c++/13305
461         * parser.c (cp_parser_elaborated_type_specifier): Accept
462         attributes.
463         
464 2003-12-05  Mark Mitchell  <mark@codesourcery.com>
465
466         PR c++/13314
467         * parser.c (cp_parser_class_specifier): Match push_scope/pop_scope
468         calls.
469         (cp_parser_class_head): Likewise.
470
471 2003-12-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
472
473         PR c++/13166
474         * parser.c (cp_parser_late_parsing_default_args): Make sure the
475         context is a class before calling push_nested_class and
476         pop_nested_class.
477
478 2003-12-03  James E Wilson  <wilson@specifixinc.com>
479
480         * g++spec.c (lang_specific_driver): Delete USE_LIBUNWIND_EXCEPTIONS
481         support.
482
483 2003-12-03  Mark Mitchell  <mark@codesourcery.com>
484
485         PR c++/9127
486         * cp-tree.h (at_namespace_scope_p): New function.
487         * parser.c (cp_parser_class_head): Handle invalid explicit
488         specializations.
489         * search.c (at_namespace_scope_p): New function.
490
491         PR c++/13179
492         * semantics.c (finish_handler_parms): Do not call eh_type_info for
493         types used in templates.
494
495         PR c++/10771
496         * parser.c (cp_parser_check_for_invalid_template_id): New
497         function.
498         (cp_parser_simple_type_specifier): Use it.
499         (cp_parser_elaborated_type_specifier): Likewise.
500         (cp_parser_class_head): Likewise.
501
502 2003-12-02  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
503
504         PR c++/10126
505         * pt.c (convert_nontype_argument): Handle default conversions
506         while converting a pointer to member function.
507
508 2003-12-02  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
509
510         PR c++/12573
511         * pt.c (value_dependent_expression_p): Handle COMPONENT_REFs by
512         looking into them recursively.
513
514 2003-12-02  Richard Henderson  <rth@redhat.com>
515
516         * name-lookup.h (struct cp_binding_level): Use ENUM_BITFIELD.
517         * parser.c (struct cp_token): Likewise.   
518         (struct cp_parser_token_tree_map_node): Likewise.
519         * lex.c (struct resword): Move const after ENUM_BITFIELD.
520
521 2003-11-30  Mark Mitchell  <mark@codesourcery.com>
522
523         PR c++/9849
524         * parser.c (cp_lexer_prev_token): New function.
525         (cp_parser_skip_to_closing_parenthesis): Add consume_paren
526         parameter.
527         (cp_parser_nested_name_specifier_opt): Add is_declaration
528         parameter.
529         (cp_parser_nested_name_specifier): Likewise.
530         (cp_parser_class_or_namespace_name): Likewise.
531         (cp_parser_class_name): Likewise.
532         (cp_parser_template_id): Likewise.
533         (cp_parser_template_name): Likewise.
534         (cp_parser_id_expression): Adjust calls to
535         cp_parser_nested_name_specifier_op, cp_parser_template_id,
536         cp_parser_class_name.
537         (cp_parser_unqualified_id): Likewise.
538         (cp_parser_postfix_expression): Likewise.
539         (cp_parser_pseudo_destructor_name): Likewise.
540         (cp_parser_cast_expression): Likewise.
541         (cp_parser_mem_initializer_id): Likewise.
542         (cp_parser_simple_type_specifier): Likewise.
543         (cp_parser_type_name): Likewise.
544         (cp_parser_elaborated_type_specifier): Likewise.
545         (cp_parser_qualified_namespace_specifier): Likewise.
546         (cp_parser_using_declaration): Likewise.
547         (cp_parser_using_directive): Likewise.
548         (cp_parser_ptr_operator): Likewise.
549         (cp_parser_declarator_id): Likewise.
550         (cp_parser_class_head): Likewise.
551         (cp_parser_base_specifier): Likewise.
552         (cp_parser_constructor_declarator_p): Likewise.
553         (cp_parser_direct_declarator): Fix typo in comment.
554         (cp_parser_parenthesized_expression_list): Adjust call to
555         cp_parser_skip_to_closing_parenthesis.
556         (cp_parser_selection_statement): Likewise.
557
558 2003-11-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
559
560         PR c++/12924
561         * typeck.c (finish_class_member_access_expr): Handle TEMPLATE_ID_EXPR
562         with OVERLOAD and DECL nodes as the first operand.
563
564 2003-11-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
565
566         * pt.c (tsubst) <ARRAY_REF>: Remove erroneous argument to build_nt.
567
568 2003-11-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
569
570         PR c++/5369
571         * friend.c (is_friend): Handle member function of a class
572         template as template friend.
573         (do_friend): Likewise.
574         * decl2.c (check_classfn): Add template_header_p parameter.
575         * decl.c (start_decl): Adjust check_classfn call.
576         (grokfndecl): Likewise.
577         * pt.c (is_specialization_of_friend): New function.
578         (uses_template_parms_level): Likewise.
579         (push_template_decl_real): Use uses_template_parms_level.
580         (tsubst_friend_function): Adjust check_classfn call.
581         * cp-tree.h (check_classfn): Adjust declaration.
582         (uses_template_parms_level): Add declaration.
583         (is_specialization_of_friend): Likewise.
584
585 2003-11-21  Mark Mitchell  <mark@codesourcery.com>
586
587         PR c++/12515
588         * pt.c (build_non_dependent_expr): Handle GNU extension to ?:
589         operator.
590
591 2003-11-21  Jan Hubicka  <jh@suse.cz>
592
593         * parser.c (cp_parser_postfix_expression): Initialize 's' to
594         NULL_TREE.
595
596 2003-11-20  Joseph S. Myers  <jsm@polyomino.org.uk>
597
598         * Make-lang.in (c++.extraclean): Delete.
599
600 2003-11-20  Joseph S. Myers  <jsm@polyomino.org.uk>
601
602         * Make-lang.in (check-g++, lang_checks): Add.
603
604 2003-11-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
605
606         PR c++/12932
607         * class.c (currently_open_derived_class): Check if
608         current_class_type is NULL_TREE.
609         * semantics.c (finish_call_expr): Check if
610         currently_open_derived_class returns NULL_TREE.
611         * cp-tree.h (DERIVED_FROM_P): Add parenthesis around PARENT
612         parameter.
613
614 2003-11-17  Jason Merrill  <jason@redhat.com>
615
616         * init.c (build_new_1): Preevaluate placement args.
617         * call.c (build_op_delete_call): Don't expose placement args to
618         overload resolution.
619
620 2003-11-16  Jason Merrill  <jason@redhat.com>
621
622         * Make-lang.in (c++.tags): Create TAGS.sub files in each directory
623         and TAGS files that include them for each front end.
624
625 2003-11-15  Bernardo Innocenti  <bernie@develer.com>
626
627         PR c++/2294
628         * name-lookup.c: Revert previous patch for PR c++/2294 to prevent
629         build failure on libjava.
630
631 2003-11-14  Giovanni Bajo  <giovannibajo@libero.it>
632
633         PR c++/2294
634         * name-lookup.c (push_overloaded_decl): Always construct an OVERLOAD
635         unless the declaration is a built-in.
636         (set_namespace_binding): While binding OVERLOADs with only one
637         declaration, we still need to call supplement_binding.
638
639 2003-11-14  Mark Mitchell  <mark@codesourcery.com>
640
641         PR c++/12762
642         * parser.c (cp_parser_enclosed_template_argument_list): New
643         function.
644         (cp_parser_template_id): Use it.
645         (cp_parser_simple_type_specifier): Recognize invalid template
646         syntax.
647
648 2003-11-14  Giovanni Bajo  <giovannibajo@libero.it>
649
650         PR c++/2094
651         * pt.c (unify): Add support for PTRMEM_CST and
652         FIELD_DECL unification.
653
654 2003-11-13  Richard Earnshaw  <rearnsha@arm.com>
655
656         * decl.c (grokfndecl): Change OK to type tree.
657
658 2003-11-12  Mark Mitchell  <mark@codesourcery.com>
659
660         * tree.c (build_target_expr_with_type): Treate VA_ARG_EXPR like
661         CONSTRUCTOR.
662
663         * decl.c (cp_make_fname_decl): When creating a top-level
664         __FUNCTION__-like symbol, do register it with pushdecl.
665
666         * decl.c (finish_case_label): Do not check that we are within a
667         switch statement here.
668         * parser.c (struct cp_parser): Add in_iteration_statement_p and
669         in_switch_statement_p.
670         (cp_parser_new): Initialize them.
671         (cp_parser_labeled_statement): Check validity of case labels
672         here.
673         (cp_parser_selection_statement): Set in_switch_statement_p.
674         (cp_parser_iteration_statement): Set in_iteration_statement_p.
675         (cp_parser_jump_statement): Check validity of break/continue
676         statements here.
677
678         PR c++/12735
679         * cp-tree.h (duplicate_decls): Return a tree.
680         * decl.c (duplicate_decls): Clarify documentation.  Return
681         error_mark_node to indicate a failed redeclaration.
682         * friend.c (do_friend): Handle that case.
683         * name-lookup.c (pushdecl): Likewise.
684
685 2003-11-11  Jason Merrill  <jason@redhat.com>
686
687         * cp-tree.h (DECL_NAMESPACE_ASSOCIATIONS): New macro.
688         * name-lookup.c (parse_using_directive): New fn.
689         (is_associated_namespace): New fn.
690         (arg_assoc_namespace): Also check associated namespaces.
691         * name-lookup.h: Declare new fns.
692         * pt.c (maybe_process_partial_specialization): Allow
693         specialization in associated namespace.
694         * parser.c (cp_parser_using_directive): Accept attributes.  Use
695         parse_using_directive.
696
697 2003-11-10  Richard Henderson  <rth@redhat.com>
698
699         * cvt.c (convert_to_void): Use void_zero_node after overload failure.
700
701 2003-11-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
702
703         PR c++/12832
704         * name-lookup.c (supplement_binding): Gracefully handle names
705         used at non-class scope prior declaration.
706
707 2003-11-06  Matt Austern  <austern@apple.com>
708
709         * decl.c (duplicate_decls): copy DECL_VISIBILITY field.
710         * method.c (use_thunk): give thunk same visibility as function.
711         * optimize.c (maybe_clone_body): copy DECL_VISIBILITY field.
712         
713 2003-11-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
714
715         PR c++/11616
716         * pt.c (instantiate_pending_templates): Save and restore
717         input_location.
718
719 2003-11-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
720
721         PR c++/2019
722         * friend.c (add_friend): Don't display previous declaration in
723         case of duplicate friend warning.
724
725 2003-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
726
727         PR c++/9810
728         * call.c (build_over_call): Check access using primary template
729         if FN is a member function template.
730
731 2003-11-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
732
733         PR c++/12796
734         * class.c (handle_using_decl): Set input_location before calling
735         error_not_base_type.
736
737 2003-10-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
738
739         PR c++/10371
740         * semantics.c (finish_non_static_data_member): Handle when
741         both processing_template_decl and qualifying_scope are true.
742
743 2003-10-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
744
745         PR c++/11076
746         * class.c (handle_using_decl): Swap arguments of error_not_base_type.
747         * parser.c (cp_parser_direct_declarator): Only resolve typename for
748         namespace scope declarations.
749
750 2003-10-24  Nathan Sidwell  <nathan@codesourcery.com>
751
752         PR c++/12698, c++/12699, c++/12700, c++/12566
753         * cp-tree.h (THUNK_ALIAS_P, THUNK_ALIAS): New.
754         (debug_class, debug_thunks): New.
755         * class.c (dump_class_hierarchy_1): New break out from ...
756         (dump_class_hierarchy): ... here.
757         (dump_thunk, debug_thunks, debug_class): New.
758         (update_vtable_entry_for_fn): Add ssizetype casts. Correct
759         continued search for primary binfo via virtual.
760         (build_vtbl_initializer): Follow covariant thunk alias.
761         * method.c (make_thunk): Clear DECL_THUNKS of the thunk.
762         (finish_thunk): Look for an alias of the covariant thunk and point
763         to it.
764         (use_thunk): We should never use an alias.
765         * semantics.c (emit_associated_thunks): Do not emit aliases.
766
767         PR c++/12566
768         * cp-tree.h (cp_fname_init): Add TYPE pointer param.
769         * decl.c (cp_fname_init): Add TYPE pointer param. Set it. Don't
770         create an ad-hoc ERROR_MARK.
771         (cp_make_fname_decl): Adjust.
772         * pt.c (tsubst_expr): Adjust.
773
774 2003-10-23  Jason Merrill  <jason@redhat.com>
775
776         PR c++/12726
777         * tree.c (build_target_expr_with_type): Don't call force_rvalue
778         for CONSTRUCTORs.
779
780 2003-10-22  Kazu Hirata  <kazu@cs.umass.edu>
781
782         * call.c: Fix comment formatting.
783         * class.c: Likewise.
784         * cxx-pretty-print.c: Likewise.
785         * init.c: Likewise.
786         * parser.c: Likewise.
787         * pt.c: Likewise.
788         * semantics.c: Likewise.
789         * tree.c: Likewise.
790         * typeck.c: Likewise.
791         * typeck2.c: Likewise.
792
793 2003-10-21  Mark Mitchell  <mark@codesourcery.com>
794
795         PR c++/11962
796         * typeck.c (build_x_conditional_expr): Handle missing middle
797         operands in templates.
798         * mangle.c (write_expression): Issue errors about attempts to
799         mangle a non-existant middle operator to the ?: operator.
800
801 2003-10-21  Robert Bowdidge   <bowdidge@apple.com>
802         * decl.c (cp_finish_decl): Remove clause intended for asm directives 
803           in struct or class fields: this code is never executed.
804
805 2003-10-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
806
807         * decl.c (start_decl): Exit if push_template_decl returns
808         error_mark_node.
809
810 2003-10-20  Kazu Hirata  <kazu@cs.umass.edu>
811
812         * ChangeLog: Fix typos.
813         * call.c: Fix comment typos.
814         * class.c: Likewise.
815         * cp-tree.h: Likewise.
816         * cvt.c: Likewise.
817         * cxx-pretty-print.c: Likewise.
818         * decl.c: Likewise.
819         * decl2.c: Likewise.
820         * init.c: Likewise.
821         * mangle.c: Likewise.
822         * name-lookup.c: Likewise.
823         * parser.c: Likewise.
824         * search.c: Likewise.
825         * semantics.c: Likewise.
826         * tree.c: Likewise.
827         * typeck.c: Likewise.
828
829 2003-10-20  Jan Hubicka  <jh@suse.cz>
830
831         * decl.c (start_cleanup_fn):  Set DECL_DECLARED_INLINE_P to deffer
832         the expansion.
833
834 2003-10-20  Mark Mitchell  <mark@codesourcery.com>
835
836         * Make-lang.in (c++.install-info): Remove.
837
838 2003-10-20  Jason Merrill  <jason@redhat.com>
839
840         * class.c (layout_class_type): Set DECL_ARTIFICIAL on padding
841         field.
842
843 2003-10-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
844
845         PR c++/9781, c++/10583, c++/11862
846         * decl.c (cp_finish_decl): Exit immediately if decl is an
847         error_mark_node.
848         * pt.c (push_template_decl_real): Return error_mark_node for
849         invalid template declaration of variable.
850
851 2003-10-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
852
853         PR c++/12495
854         * pt.c (lookup_template_class): Handle when current_class_type
855         is a local class.
856
857 2003-10-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
858
859         PR c++/2513
860         * decl.c (make_typename_type): Use dependent_type_p.
861         (make_unbound_class_template): Likewise.
862         * pt.c (instantiate_class_template): Increment
863         processing_template_decl during substitution of template friend
864         function.  Preincrement processing_template_decl rather than
865         postincrement.
866         (get_mostly_instantiated_function_type): Increment
867         processing_template_decl during partial substitution of function
868         type.
869
870 2003-10-15  Jan Hubicka  <jh@suse.cz>
871
872         PR c++/12574
873         * decl2.c (cxx_callgraph_analyze_expr): Deal with baselink.
874
875 2003-10-14  Jason Merrill  <jason@redhat.com>
876
877         PR c++/11878
878         * tree.c (build_target_expr_with_type): Call force_rvalue for
879         classes with non-trivial copy ctors.
880
881         PR c++/11063
882         * typeck.c (build_modify_expr): Call convert rather than abort.
883
884 2003-10-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
885
886         Breack out decl.c (3/n)
887         * name-lookup.c: Include flags.h
888         (lookup_name_current_level): Make static.
889         (add_decl_to_level): Likewise.
890         (push_local_binding): Likewise.
891         (push_overloaded_decl): Likewise.
892         (lookup_using_namespace): Likewise.
893         (qualified_lookup_using_namespace): Likewise.
894         (lookup_type_current_level): Likewise.
895         (unqualified_namespace_lookup): Likewise.
896         (namespace_ancestor): Likewise.
897         (push_using_directive): Likewise.
898         * decl.c (pushdecl): Move to name-lookup.c.
899         (pushdecl_top_level_1): Likewise.
900         (pushdecl_top_level): Likewise.
901         (pushdecl_top_level_and_finish): Likewise.
902         (maybe_push_decl): Likewise.
903         (push_using_decl): Likewise.
904         (push_overloaded_decl): Likewise.
905         (make_anon_name): Likewise.
906         (anon_cnt): Likewise.
907         (clear_anon_tags): Likewise.
908         (maybe_inject_for_scope_var): Likewise.
909         (check_for_out_of_scope_variable): Likewise.
910         * Make-lang.in (cp/name-lookup.o): Depend on flags.h.
911         * decl.c (warn_extern_redeclared_static): Export.
912         * cp-tree.h (warn_extern_redeclared_static): Declare.
913
914 2003-10-14  Nathanael Nerode  <neroden@gcc.gnu.org>
915
916         * Make-lang.in: Replace uses of $(target_alias) with
917         $(target_noncanonical).
918
919 2003-10-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
920
921         * ChangeLog: Add PR number to patch for PR c++/12370.
922
923 2003-10-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
924
925         * name-lookup.h (cxx_scope_find_binding_for_name): Don't export.
926         (binding_for_name): Likewise.
927         (cxx_binding_clear): Move to name-lookup.c.
928         * name-lookup.c (cxx_scope_find_binding_for_name): Now static.
929         (binding_for_name): Likewise.
930         * decl2.c (is_ancestor): Move to name-lookup.c
931         (namespace_ancestor): Likewise.
932         (add_using_namespace): Likewise.
933         (ambiguous_decl): Likewise.
934         (lookup_using_namespace): Likewise.
935         (qualified_lookup_using_namespace): Likewise.
936         (set_decl_namespace): Likewise.
937         (decl_namespace): Likewise.
938         (current_decl_namespace): Likewise.
939         (push_decl_namespace): Likewise.
940         (pop_decl_namespace): Likewise.
941         (push_scope): Likewise.
942         (pop_scope): Likewise.
943         (struct arg_lookup): Likewise.
944         (arg_assoc): Likewise.
945         (arg_assoc_args): Likewise.
946         (arg_assoc_type): Likewise.
947         (add_function): Likewise.
948         (arg_assoc_namespace): Likewise.
949         (arg_assoc_class): Likewise.
950         (arg_assoc_template_arg): Likewise.
951         (do_namespace_alias): Likewise.
952         (validate_nonmember_using_decl): Likewise.
953         (do_nonmember_using_decl): Likewise.
954         (do_toplevel_using_decl): Likewise.
955         (do_local_using_decl): Likewise.
956         (do_class_using_decl): Likewise.
957         (do_using_directive): Likewise.
958         (constructor_name_full): Likewise.
959         (constructor_name): Likewise.
960         (constructor_name_p): Likewise.
961
962 2003-10-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
963
964         Break out decl.c (2/n) 
965         * name-lookup.c: Include diagnostic.h
966         (cxx_binding_free): Make static.
967         (cxx_binding_make): Likewise.
968         (binding_table_new): Likewise
969         (binding_table_free): Likewise.
970         (binding_table_insert): Likewise.
971         (binding_table_find_anon_type): Likewise.
972         (binding_table_reverse_maybe_remap): Likewise.
973         (supplement_binding): Likewise.
974         * name-lookup.h (global_scope_name): Declare extern.
975         (global_type_node): Likewise.
976         (cxx_binding_free): Don't export.
977         (cxx_binding_make): Likewise.
978         (binding_table_new): Likewise.
979         (binding_table_free): Likewise.
980         (binding_table_insert): Likewise.
981         (binding_table_find_anon_type): Likewise.
982         (binding_table_reverse_maybe_remap): Likewise.
983         * Make-lang.in (cp/name-lookup.o): Depend on $(DIAGNOSTIC_H)
984         * decl.c (lookup_namespace_name): Move to name-lookup.c
985         (select_decl): Likewise.
986         (unqualified_namespace_lookup): Likewise.
987         (lookup_qualified_name): Likewise.
988         (lookup_name_real): Likewise.
989         (lookup_name_nonclass): Likewise.
990         (lookup_function_nonclass): Likewise.
991         (lookup_name): Likewise.
992         (lookup_name_current_level): Likewise.
993         (lookup_type_current_level): Likewise.
994         (lookup_flags): Likewise.
995         (qualify_lookup): Likewise.
996         (lookup_tag): Likewise.
997         (lookup_tag_reverse): Likewise.
998         (getdecls): Likewise.
999         (storedecls): Remove.
1000         (cxx_remember_type_decls): Move to name-lookup.c.
1001         (global_bindings_p): Likewise.
1002         (innermost_nonclass_level): Likewise.
1003         (toplevel_bindings_p): Likewise.
1004         (namespace_bindings_p): Likewise.
1005         (kept_level_p): Likewise.
1006         (innermost_scope_kind): Likewise.
1007         (template_parm_scope_p): Likewise.
1008         (push_binding): Likewise.
1009         (push_local_binding): Likewise.
1010         (add_decl_to_level): Likewise.  Make extern.
1011         (push_class_binding): Move to name-lookup.c.
1012         (resume_level): Likewise.  Rename to resume_scope.
1013         (begin_scope): Move to name-lookup.c.
1014         (indent): Likewise.
1015         (binding_depth): Likewise.
1016         (is_class_level): Likewise.
1017         (cxx_scope_descriptor): Likewise.
1018         (cxx_scope_debug): Likewise.
1019         (namespace_scope_ht_size): Likewise.
1020         (leave_scope): Likewise.
1021         (pushlevel_class): Likewise.
1022         (poplevel_class): Likewise.
1023         (clear_identifier_class_values): Likewise.
1024         (pushdecl_with_scope): Likewise.
1025         (pushdecl_namespace_level): Likewise.
1026         (pushdecl_class_level): Likewise.
1027         (push_class_level_binding): Likewise.
1028         (push_using_directive): Likewise.
1029         (identifier_global_value): Likewise.
1030         (keep_next_level_flag): Likewise.
1031         (keep_next_level): Likewise.
1032         (free_binding_level): Likewise.
1033         (set_class_shadows): Likewise.
1034         (maybe_push_cleanup_level): Likewise.
1035         (cp_namespace_decls): Likewise.
1036         (bt_print_entry): Likewise.
1037         (print_binding_level): Likewise.
1038         (print_other_binding_stack): Likewise.
1039         (print_binding_stack): Likewise.
1040         (push_namespace): Likewise.
1041         (pop_namespace): Likewise.
1042         (push_nested_namespace): Likewise.
1043         (pop_nested_namespace): Likewise.
1044         (cxx_saved_binding_make): Likewise.
1045         (struct cxx_saved_binding_make): Likewise.
1046         (store_bindings): Likewise.
1047         (maybe_push_to_top_level): Likewise.
1048         (push_to_top_level): Likewise.
1049         (pop_from_top_level): Likewise.
1050         (identifier_type_value): Likewise.
1051         (set_identifier_type_value): Likewise.
1052         (set_identifier_type_value_with_scope): Likewise.
1053         (pop_everything): Likewise.
1054         (pushtag): Likewise.
1055         (follow_tag_typedef): Likewise.
1056         (maybe_process_template_type_declaration): Likewise.
1057         (pop_binding): Likewise.
1058         * cp-tree.h: Move corresponding declarations to name-lookup.h
1059         
1060 2003-10-12  Steven Bosscher  <steven@gcc.gnu.org>
1061
1062         * cvt.c (ocp_convert): Move warning to C common code.
1063
1064 2003-10-09  Jason Merrill  <jason@redhat.com>
1065
1066         PR c++/6392
1067         * tree.c (build_cplus_array_type): Handle all quals the same.
1068         (cp_build_qualified_type_real): Look through arrays first.
1069
1070         * tree.c (build_cplus_new): Use build_decl to create a VAR_DECL.
1071         (build_target_expr_with_type): Likewise.
1072
1073         * pt.c (instantiate_class_template): Sanity check that our
1074         enclosing class has been instantiated.
1075
1076 2003-10-08  Giovanni Bajo  <giovannibajo@libero.it>
1077
1078         * cp_tree.h: Added TFF_NO_FUNCTION_ARGUMENTS.
1079         * error.c (dump_function_decl): Use it to skip the dump of the
1080         arguments.
1081         (dump_expr): When dumping a declaration found within an
1082         expression, always set TFF_NO_FUNCTION_ARGUMENTS
1083         in the flags.
1084
1085 2003-10-08  Giovanni Bajo  <giovannibajo@libero.it>
1086
1087         PR c++/11097
1088         * pt.c (tsubst_decl): Substitute also the DECL_NAME node of
1089         USING_DECL.
1090
1091 2003-10-06  Mark Mitchell  <mark@codesourcery.com>
1092
1093         PR c++/10147
1094         * call.c (initialize_reference): Tweak error message.
1095         * cxx-pretty-print.h (cxx_pretty_printer_flags): Remove
1096         pp_cxx_flag_qualified_id and pp_cxx_flag_global_scope.
1097         * cxx-pretty-print.c (pp_cxx_id_expression): Always display
1098         qualified entities using qualified names.
1099         
1100         PR c++/12337
1101         * init.c (build_new_1): Make sure that the expression returned is
1102         not an lvalue.
1103
1104         PR c++/12344, c++/12236, c++/8656
1105         * decl.c (start_function): Do not ignore attributes embedded in a
1106         function declarator.
1107
1108 2003-10-06  Mark Mitchell  <mark@codesourcery.com>
1109
1110         * Make-lang.in (c++.info): Remove.
1111         (c++.dvi): Remove.
1112         (c++.generated-manpages): Replace with ...
1113         (generated-manpages): ... this.
1114
1115 2003-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1116
1117         * decl.c (struct cp_binding_level): Move to name-lookup.h
1118         (current_binding_level): Likewise.
1119         (class_binding_level): Likewise.
1120         * cp-tree.h (enum scope_kind): Likewise.
1121
1122 2003-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1123
1124         * name-lookup.c (binding_entry_free): Nullify name and type
1125         fields. 
1126
1127 2003-10-02  Mark Mitchell  <mark@codesourcery.com>
1128
1129         PR c++/12486
1130         * typeck.c (finish_class_member_access_expr): Issue diagnostic
1131         on erroneous use of qualified name.
1132
1133 2003-09-30  Richard Henderson  <rth@redhat.com>
1134
1135         PR c++/12370
1136         * decl.c (duplicate_decls): Copy DECL_SAVED_INSNS too.
1137
1138 2003-09-30  Kelley Cook  <kelleycoook@wideopenwest.com>
1139
1140         * g++spec.c: Convert to ISO C90 prototypes.
1141         * parser.c: Likewise.
1142
1143 2003-09-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1144
1145         * decl.c (pop_binding): Don't mess with nullifying binding->scope
1146         here. 
1147         * name-lookup.c: Re-format.
1148         (cxx_binding_free): Nullify binding->scope.
1149
1150 2003-09-29  Jan Hubicka  <jh@suse.cz>
1151
1152         PR C++/12047
1153         * except.c (build_eh_type_type): Call mark_used on the type.
1154
1155 2003-09-28  Richard Henderson  <rth@redhat.com>
1156
1157         * typeck.c (c_expand_asm_operands): Take location_t, instead of
1158         individual file and line.
1159
1160 2003-09-28  Andreas Jaeger  <aj@suse.de>
1161
1162         * decl.c (cxx_builtin_type_decls): Convert to ISO C90 function
1163         definition.
1164         * init.c (push_base_cleanups): Likewise.
1165         * decl2.c (finish_file): Likewise.
1166         * mangle.c (init_mangle): Likewise.
1167         (dump_substitution_candidates): Likewise.
1168         * search.c: Likewise.
1169
1170 2003-09-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1171
1172         * name-lookup.h (get_global_value_if_present): New function.
1173         (is_typename_at_global_scope): Likewise.
1174         * except.c (do_begin_catch): Use get_global_value_if_present.
1175         (do_end_catch): Likewise.
1176         (do_allocate_exception): Likewise.
1177         (do_free_exception): Likewise.
1178         (build_throw): Likewise.
1179         * parser.c (cp_parser_member_declaration): Likewise.
1180         * rtti.c (throw_bad_cast): Likewise.
1181         (throw_bad_typeid): Likewise.
1182         * decl.c (check_tag_decl): Use is_typename_at_global_scope.
1183         (grokdeclarator): Likewise.
1184         * cp-tree.h (global_namespace): Move to name-lookup.h
1185         * call.c (call_builtin_trap): Tidy.
1186
1187 2003-09-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1188
1189         PR c++/11415
1190         * parser.c (cp_parser_nested_name_specifier_opt): Issue correct
1191         error message when parser->scope is global_namespace.
1192
1193 2003-09-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1194
1195         * cp-tree.h, name-lookup.h, decl.c, decl2.c: Remove reference to
1196         macros  BINDING_SCOPE, BINDING_VALUE and BINDING_TYPE.
1197
1198 2003-09-26  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1199
1200         * decl.c (pop_binding_level, suspend_binding_level,
1201         find_class_binding_level): Merge into leave_scope.  Remove.
1202         (leave_scope):  New function.
1203         (poplevel): Update.
1204         (poplevel_class): Likewise.
1205         (pop_namespace): Likewise.
1206
1207 2003-09-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1208
1209         PR c++/5655
1210         * parser.c (cp_parser_check_access_in_redeclaration): New function.
1211         (cp_parser_member_declaration): Use it.
1212         (cp_parser_template_declaration_after_export): Likewise.
1213
1214 2003-09-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1215
1216         * cp-tree.h (scope_kind): Add new enumerator.
1217         (keep_next_level): Change parameter type to bool.
1218         (begin_scope):  Change prototype.
1219         (pushlevel): Remove declaration.
1220         * decl.c (push_binding_level): Fold in begin_scope.  Remove.
1221         (struct cp_binding_level): Remove tag_tranparent field.  Make keep
1222         of bitsize one.
1223         (keep_next_level_flag): Make a bool.
1224         (cxx_scope_descriptor): Update scope names table
1225         (make_cxx_scope): Fold in begin_scope.  Remove..
1226         (namespace_scope_ht_size): New function.
1227         (begin_scope): Change prototype.  Return a scope.  Tidy.
1228         (kept_level_p): Update.
1229         (pushlevel): Remove.
1230         (maybe_push_cleanup_level): Simplify.
1231         (poplevel): Update for sk_cleanup and keep change.
1232         (print_binding_level): Likewise.
1233         (initial_push_namespace_scope): Fold in begin_scope.  Remove.
1234         (push_namespace): Update.
1235         (pushtag): Likewise.
1236         (lookup_tag): Likewise.
1237         (lookup_name_current_level): Likewise.
1238         (lookup_type_current_level): Likewise.
1239         (cxx_init_decl_processing): Likewise.
1240         (start_function): Likewise.
1241         (begin_function_body): Likewise.
1242         (start_method): Likewise.
1243         * pt.c (push_inline_template_parms_recursive): Likewise.
1244         (begin_template_parm_list): Likewise.
1245         (begin_specialization): Likewise.
1246         * semantics.c (do_pushlevel): Likewise.
1247         (begin_compound_stmt): Likewise.
1248         (begin_stmt_expr): Likewise.
1249
1250 2003-09-21  Richard Henderson  <rth@redhat.com>
1251
1252         * class.c, cp-tree.h, decl.c, decl2.c, error.c, init.c,
1253         method.c, optimize.c, pt.c, semantics.c, tree.c: Revert.
1254
1255 2003-09-21  Richard Henderson  <rth@redhat.com>
1256
1257         * class.c, cp-tree.h, decl.c, decl2.c, error.c, init.c,
1258         method.c, optimize.c, pt.c, semantics.c, tree.c: Update for
1259         DECL_SOURCE_LOCATION rename and change to const.
1260
1261 2003-09-20  Richard Henderson  <rth@redhat.com>
1262
1263         * decl.c, decl2.c, pt.c: Use %J in diagnostics.
1264
1265 2003-09-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1266
1267         PR c++/157
1268         * parser.c (cp_parser_direct_declarator): Clear
1269         parser->num_template_parameter_lists when parsing function
1270         parameters.
1271         (cp_parser_constructor_declarator_p): Likewise.
1272
1273 2003-09-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1274
1275         PR c++/495
1276         * pt.c (tsubst_friend_class): Only use innermost template
1277         arguments for the injected friend class template.
1278
1279 2003-09-19  Nathan Sidwell  <nathan@codesourcery.com>
1280
1281         PR c++/12332
1282         * pt.c (instantiate_class_template): Increment
1283         processing_template_decl around the tsubst of a template member
1284         function.
1285
1286 2003-09-19  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1287
1288         * decl.c (cxx_scope_descriptor): Fix thinko.
1289         (struct cp_binding_level): Adjust type of binding_depth field. 
1290
1291 2003-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
1292
1293         PR c++/12320
1294         * call.c (type_passed_as): Check for incomplete type.
1295         (convert_for_arg_passing): Likewise.
1296
1297 2003-09-18  Nathan Sidwell  <nathan@codesourcery.com>
1298
1299         PR c++/9848
1300         * optimize.c (maybe_clone_body): Don't set MARK_USED on parameters
1301         here.
1302         * semantics.c (expand_body): Set it here on the remaining clones.
1303
1304 2003-09-18  Roger Sayle  <roger@eyesopen.com>
1305
1306         * lex.c (init_operators): Remove operator_name_info for FFS_EXPR.
1307         * class.c (instantiate_type): Remove FFS_EXPR case.
1308
1309 2003-09-18  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1310
1311         * ChangeLog: Fix recent commit.
1312
1313 2003-09-18  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1314
1315         * ChangeLog: Add PR number to patch for PR c++/12316.
1316
1317 2003-09-18  Gabriel Dos Reis <gdr@integrable-solutions.net>
1318
1319         * error.c (dump_type): Simplify.  Use pp_type_specifier_seq for
1320         "C" types. 
1321         * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Fix thinko.
1322
1323 2003-09-17  Richard Henderson  <rth@redhat.com>
1324
1325         * semantics.c (expand_body): Don't save/restore input_location.
1326
1327 2003-09-17  Mark Mitchell  <mark@codesourcery.com>
1328
1329         PR c++/12266
1330         * cp-tree.h (tsubst_flags_t): Add tf_conv.
1331         * class.c (standard_conversion): Pass tf_conv to
1332         instantiate_type.
1333         (resolve_address_of_overloaded_function): Do not call mark_used
1334         when just checking conversions.
1335
1336         PR debug/12066
1337         * cp-lang.c (LANG_HOOKS_BUILTIN_TYPE_DECLS): Define.
1338         * cp-tree.h (cxx_builtin_type_decls): Declare.
1339         * decl.c (builtin_type_decls): New variables.
1340         (cxx_builtin_type_decls): New function.
1341         (record_builtin_type): Add to builtin_type_decls.
1342
1343 2003-09-17  Richard Henderson  <rth@redhat.com>
1344
1345         PR c++/12316
1346         * semantics.c (expand_or_defer_fn): Inc/dec function_depth.
1347
1348 2003-09-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1349
1350         PR c++/7939
1351         * typeck.c (comptypes): Don't ICE when its first argument is
1352         error_mark_node.
1353         (compparms): Reverse the arguments of same_type_p.
1354
1355 2003-09-15  Nathan Sidwell  <nathan@codesourcery.com>
1356
1357         PR c++/12184
1358         * typeck.c (convert_arguments): Return error_mark_node for an
1359         incomplete parameter. Make error message more informative.
1360
1361 2003-09-12  Mark Mitchell  <mark@codesourcery.com>
1362
1363         PR c++/3907
1364         * class.c (maybe_note_name_used_in_class): Refine test for whether
1365         or not we are in a class scope.
1366
1367         * cp-tree.h (language_function): Remove x_expanding_p.
1368         (expanding_p): Remove.
1369         (doing_semantic_analysis_p): Remove.
1370         (scope_kind): Add sk_function_parms, sk_class,
1371         sk_namespace.
1372         (innermost_scope_kind): New method.
1373         * call.c (cxx_type_promotes_to): Use type_decays_to.
1374         * cp-lang.c (LANG_HOOKS_PUSHLEVEL): Redefine.
1375         (LANG_HOOKS_POPLEVEL): Likewise.
1376         * decl.c (cp_binding_level): Remove parm_flag, template_parms_p,
1377         template_spec_p, namespace_p, is_for_scope, is_try_scope, and
1378         is_catch_scope.  Add kind and explicit_spec_p.
1379         (cxx_scope_descriptor): Use a lookup table.
1380         (find_class_binding_level): Use "kind" field in binding_level, not
1381         the various flags.
1382         (pop_binding_level): Likewise.
1383         (innermost_nonclass_level): Likewise.
1384         (toplevel_bindings_p): Likewise.
1385         (namespace_bindings_p): Likewise.
1386         (template_parm_scope_p): Likewise.
1387         (innermost_scope_kind): New method.
1388         (current_tmpl_spec_kind): Use "kind" field in binding_level, not
1389         the various flags.
1390         (pushlevel): Remove check for doing_semantic_analysis_p.
1391         (begin_scope): Simplify.
1392         (add_decl_to_level): Use "kind" field in binding_level, not
1393         the various flags.
1394         (push_local_binding): Likewise.
1395         (pop_label): Remove check for doing_semantic_analysis_p.
1396         (poplevel): Use "kind" field in binding_level, not
1397         the various flags.
1398         (set_block): Remove check for doing_semantic_analysis_p.
1399         (pushlevel_class): Use "kind" field in binding_level, not
1400         the various flags. 
1401         (poplevel_class): Likewise.
1402         (initial_push_namespace_scope): Likewise.
1403         (maybe_push_to_top_level): Likewise.
1404         (set_identifier_type_value_with_scope): Likewise.
1405         (pop_everything): Likewise.
1406         (maybe_process_template_type_declaration): Likewise.
1407         (pushtag): Likewise.
1408         (pushdecl): Likewise.
1409         (pushdecl_with_scope): Likewise.
1410         (check_previous_goto_1): Likewise.
1411         (define_label): Likewise.
1412         (finish_case_label): Likewise.
1413         (lookup_tag): Likewise.
1414         (unqualified_namespace_lookup): Likewise.
1415         (lookup_name_real): Likewise.
1416         (lookup_name_current_level): Likewise.
1417         (lookup_type_current_level): Likewise.
1418         (record_builtin_type): Likewise.
1419         (cp_make_fname_decl): Likewise.
1420         (maybe_inject_for_scope_var): Likewise.
1421         (cp_finish_decl): Remove check for doing_semantic_analysis_p.
1422         (start_function): Use begin_scope, not pushlevel.
1423         (finish_function): Use "kind" field in binding_level, not
1424         the various flags.
1425         (start_method): Use begin_scope, not pushlevel.
1426         (make_label_decl): Do not check expanding_p.
1427         (save_function-data): Do not set expanding_p.
1428         (cxx_push_function_context): Do not clear expanding_p.
1429         * semantics.c (cxx_expand_function_start): Do not set expanding_p.
1430         
1431 2003-09-14  Mark Mitchell  <mark@codesourcery.com>
1432
1433         * class.c (layout_class_type): Make DECL_MODE match TYPE_MODE for
1434         an bit-field whose width exceeds that of its type.
1435
1436 2003-09-14  Geoffrey Keating  <geoffk@apple.com>
1437
1438         * rtti.c (get_tinfo_decl): Set TREE_PUBLIC for typeinfo decls.
1439
1440 2003-09-14  Kazu Hirata  <kazu@cs.umass.edu>
1441
1442         * ChangeLog: Follow spelling conventions.
1443         * parser.c: Likewise.
1444
1445 2003-09-13  Richard Henderson  <rth@redhat.com>
1446
1447         * decl2.c (finish_file): Check cgraph_assemble_pending_functions
1448         during relaxation loop.
1449
1450 2003-09-11  David Edelsohn  <edelsohn@gnu.org>
1451
1452         * decl2.c (var_finalized_p): Swap arms of conditional.
1453
1454 2003-09-10  Nathan Sidwell  <nathan@codesourcery.com>
1455
1456         PR c++/11788
1457         * typeck.c (build_address): If it is a function, mark it used.
1458         (build_unary_op): Do not lose object's side-effects when taking
1459         address of static member function.
1460         * class.c (resolve_address_of_overloaded_function): Use
1461         tsubst_flags_t parameter. Only expect overload sets. Adjust.
1462         (instantiate_type): Adjust flags passing. Do not lose object's
1463         side-effects when taking address of static member function.
1464
1465 2003-09-11  Richard Henderson  <rth@redhat.com>
1466
1467         * semantics.c (expand_or_defer_fn): Update for new
1468         cgraph_finalize_function argument.
1469
1470 2003-09-10  Richard Henderson  <rth@redhat.com>
1471
1472         * decl2.c (cxx_callgraph_analyze_expr): Mark argument unused.
1473
1474 2003-09-10  Jan Hubicka  <jh@suse.cz>
1475
1476         * decl2.c (var_finalized_p): New.
1477         (maybe_emit_vtables, write_out_vars, finish_file): Use it.
1478
1479 2003-09-10  Richard Henderson  <rth@redhat.com>
1480
1481         * decl2.c (cxx_callgraph_analyze_expr): New, from corpse of
1482         mark_member_pointers.
1483         (lower_function): Remove.
1484         * cp-tree.h: Update to match.
1485         * cp-lang.c (LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR): New.
1486         (LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION): Remove.
1487
1488 2003-09-09  Richard Henderson  <rth@redhat.com>
1489
1490         * semantics.c (expand_or_defer_fn): Update call to 
1491         cgraph_finalize_function.
1492
1493         * semantics.c (expand_or_defer_fn): Use cgraph_finalize_function
1494         always.
1495
1496         * decl2.c (finish_file): Avoid out-of-bounds array reference
1497         during memmove.
1498
1499 2003-09-09  Richard Henderson  <rth@redhat.com>
1500
1501         * decl2.c (mark_member_pointers): Rename from
1502         mark_member_pointers_and_eh_handlers and don't check eh handlers.
1503
1504 2003-09-09  Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
1505
1506         PR bootstrap/12168
1507         * method.c (use_thunk): Clear DECL_RTL of copied nodes.
1508
1509 2003-09-08  Mark Mitchell  <mark@codesourcery.com>
1510
1511         * cp-lang.c (LANG_HOOKS_REGISTER_BUILTIN_TYPE): Define to
1512         c_register_builtin_type.
1513
1514         PR c++/11786
1515         * decl2.c (add_function): Do not complain about seeing the same
1516         non-function twice.
1517         * semantics.c (perform_koenig_lookup): Improve documentation.
1518
1519         PR c++/5296
1520         * pt.c (try_one_overload): Add addr_p parameter.
1521         (resolve_overloaded_unification): Pass it.
1522
1523 2003-09-08  Richard Henderson  <rth@redhat.com>
1524
1525         * optimize.c (maybe_clone_body): Inc/dec function_depth.
1526
1527 2003-09-08  Richard Henderson  <rth@redhat.com>
1528
1529         * decl.c (finish_function): Clear current_function_decl.
1530         * decl2.c (mark_used): Don't push/pop gc context.
1531         * optimize.c (optimize_function): Likewise.
1532         * tree.c (cp_cannot_inline_tree_fn): Likewise.
1533         * pt.c (instantiate_decl): Inc/dec function_depth instead.
1534         * semantics.c (expand_body): Update for tree_rest_of_compilation
1535         nested argument.
1536
1537 2003-09-07  Gabriel Dos Reis  <gcc@integrable-solutions.net>
1538
1539         PR c++/11762
1540         * error.c (dump_decl): Handle namespace-alias-definition.
1541         * decl.c (warn_extern_redeclared_static): There is no point in
1542         checking changes in storage class specifier for a namespace
1543         declaration. 
1544         (duplicate_decls): Tidy diagnostic message.
1545         * cxx-pretty-print.c (pp_cxx_left_brace): New macro.
1546         (pp_cxx_right_brace): Likewise.
1547         (pp_cxx_original_namespace_definition): New function.
1548         (pp_cxx_namespace_alias_definition): Likewise.
1549         (pp_cxx_declaration): Use them.  Handle NAMESPACE_DECLs.
1550
1551 2003-09-07  Jan Hubicka  <jh@suse.cz>
1552
1553         * decl2.c (maybe_emit_vtables, write_out_vars, finish_file):
1554         Avoid re-emitting variables in unit-at-a-time mode.
1555
1556 2003-09-06  Mark Mitchell  <mark@codesourcery.com>
1557
1558         PR c++/11867
1559         * call.c (standard_conversion): Improve comments.
1560         (perform_direct_initialization): Make sure we return an expression
1561         of the correct type.
1562         * typeck.c (build_static_cast): Check for ambiguity and
1563         accessibility when performing conversions.
1564
1565 2003-09-06  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1566
1567         * cp-tree.h (add_binding): Remove declaration.
1568         * name-lookup.h (supplement_binding): Declare.
1569         * decl.c (add_binding): Move to name-lookup.c.
1570         (push_local_binding): Adjust.
1571         (push_class_binding): Likewise.
1572         (set_identifier_type_value_with_scope): Likewise.
1573         * name-lookup.c (supplement_binding): Rename from add_binding.
1574         Return a bool.  Improve documentation. 
1575         (set_namespace_binding): Adjust.
1576         * Make-lang.in (cp/name-lookup.o): Depend on toplev.h
1577
1578 2003-09-06  Nathan Sidwell  <nathan@codesourcery.com>
1579
1580         PR c++/11794
1581         * class.c (pushclass): Push dependent using decls for nested
1582         classes of templates too.
1583
1584 2003-09-06  Roger Sayle  <roger@eyesopen.com>
1585
1586         PR c++/11409
1587         * class.c (resolve_address_of_overloaded_function): When building
1588         list of matching non-template function decls, ignore anticipated
1589         declarations of undeclared or shadowed GCC builtins.
1590
1591 2003-09-06  Steven Bosscher  <steven@gcc.gnu.org>
1592
1593         PR c++/11595
1594         * decl.c (define_label): Remove unreachable timevar pop.
1595         Always return the decl, even if the definition is invalid.
1596
1597 2003-09-06  Nathan Sidwell  <nathan@codesourcery.com>
1598
1599         PR c++/12167
1600         * parser.c (cp_parser_late_parsing_default_args): Push & pop the
1601         unparsed functions queue.
1602
1603 2003-09-05  Mark Mitchell  <mark@codesourcery.com>
1604
1605         PR c++/12163
1606         * call.c (perform_direct_initialization): Correct logic for
1607         direct-initialization of a class type.
1608
1609         PR c++/12146
1610         * pt.c (lookup_template_function): Robustify.
1611
1612 2003-09-05  Nathan Sidwell  <nathan@codesourcery.com>
1613
1614         PR c++/11922
1615         * pt.c (tsubst_qualified_id): Make sure we get a non-type.
1616         (tsubst_expr, tsubst_copy_and_build): Pass false, not zero, as
1617         is_type_p to lookup_qualified_name.
1618
1619         * semantics.c (finish_call_expr): Refactor some code.
1620
1621         PR c++/12037
1622         * cp-tree.h (COMPOUND_EXPR_OVERLOADED): New.
1623         (build_min_non_dep): Declare.
1624         * tree.c (build_min): Propagate TREE_SIDE_EFFECTS.
1625         (build_min_non_dep): New.
1626         * cvt.c (convert_to_void): Don't explicitly copy
1627         TREE_SIDE_EFFECTS, TREE_NO_UNUSED_WARNING.
1628         * call.c (build_new_method_call): Use build_min_non_dep.
1629         * decl2.c (grok_array_decl): Likewise.
1630         (build_offset_ref_call_from_tree): Likewise.
1631         * typeck.c (finish_class_member_access_expr,
1632         build_x_indirect_ref, build_x_binary_op, build_x_unary_op,
1633         build_x_conditional_expr, build_x_compound_expr): Likewise.
1634         (build_static_cast, build_reinterpret_cast,
1635         build_const_cast): Propagate TREE_SIDE_EFFECTS inside a template.
1636         * typeck2.c (build_x_arrow): Use build_min_non_dep.
1637         (build_functional_cast): Propagate TREE_SIDE_EFFECTS inside a
1638         template.
1639         * rtti.c (build_dynamic_cast_1): Set DECL_IS_PURE.
1640         (build_dynamic_cast): Set TREE_SIDE_EFFECTS.
1641         * pt.c (build_non_dependent_expr): Check COMPOUND_EXPR_OVERLOADED.
1642
1643 2003-09-04  Richard Henderson  <rth@redhat.com>
1644
1645         * decl2.c (mark_member_pointers_and_eh_handlers): Update for
1646         change in cgraph_mark_needed_node arguments.
1647
1648 2003-09-02  Geoffrey Keating  <geoffk@apple.com>
1649
1650         PR 12161
1651         * decl2.c (mark_used): Use ggc_push_context/ggc_pop_context.
1652         * tree.c (cp_cannot_inline_tree_fn): Likewise.
1653
1654 2003-09-04  Nathan Sidwell  <nathan@codesourcery.com>
1655
1656         * cp-tree.h (finish_sizeof, finish_alignof): Remove.
1657         (expr_sizeof): Replace with ...
1658         (cxx_sizeof_or_alignof_expr): ... here.
1659         (cxx_sizeof_or_alignof_type): Make complain parameter a bool.
1660         * parser.c (cp_parser_unary_expression): Commonize alignof and
1661         sizeof handling.
1662         * pt.c (tsubst_copy_and_build): Adjust alignof and sizeof
1663         substitution.
1664         * semantics.c (finish_sizeof, finish_alignof): Remove.
1665         * typeck.c (cxx_sizeof_or_alignof_type): Complain parameter
1666         becomes bool. Set TREE_READONLY.
1667         (expr_sizeof): Replace with ...
1668         (cxx_sizeof_or_alignof_expr): ... here. Clear TREE_SIDE_EFFECTS.
1669
1670 2003-09-04  Mark Mitchell  <mark@codesourcery.com>
1671
1672         Remove cast-as-lvalue extension.
1673         * call.c (build_conditional_expr): Correct formatting.
1674         (convert_like_real): Use lvalue_p, not non_cast_lvalue_p.
1675         (initialize_real): Use real_lvalue_p, not real_non_cast_lvalue_p.
1676         * cp-tree.h (non_cast_lvalue_p): Remove.
1677         (real_non_cast_lvalue_p): Remove.
1678         (non_cast_lvalue_or_else): Remove.
1679         * tree.c (lvalue_p_1): Remove allow_cast_as_lvalue parameter.
1680         (real_lvalue_p): Adjust call to lvalue_p_1.
1681         (non_cast_lvalue_p): Remove.
1682         (non_cast_lvalue_or_else): Remove.
1683         (lvalue_p): Adjust call to lvalue_p_1.
1684         (lvalue_or_else): Simplify.
1685         * typeck.c (build_unary_op): Use lvalue_or_else, not
1686         non_cast_lvalue_or_else.
1687         (build_static_cast): Use real_lvalue_p, not real_non_cast_lvalue_p.
1688
1689 2003-09-03  DJ Delorie  <dj@redhat.com>
1690
1691         * decl.c (finish_function): Pass fndecl to aggregate_value_p.
1692
1693 2003-09-03  Mark Mitchell  <mark@codesourcery.com>
1694
1695         PR c++/12053
1696         * class.c (include_empty_classes): Correct logic for ABI version 1.
1697
1698 2003-09-03  Richard Henderson  <rth@redhat.com>
1699
1700         * optimize.c (optimize_function): Push/pop ggc context around
1701         the call to optimize_inline_calls.
1702
1703 2003-09-02  Scott Brumbaugh  <scottb.lists@verizon.net>
1704
1705         PR c++/11553
1706         * parser.c (cp_parser_decl_specifier_seq): Add check for a
1707         duplicate friend decl-specifier.
1708
1709 2003-09-02  Mark Mitchell  <mark@codesourcery.com>
1710
1711         PR c++/11847
1712         * pt.c (convert_nontype_argument): Correct representation of
1713         REFERENCE_TYPE expressions.
1714
1715         PR c++/11808
1716         * cp-tree.h (KOENIG_LOOKUP_P): New macro.
1717         (finish_call_expr): Change prototype.
1718         * parser.c (cp_parser_postfix_expression): Adjust call to
1719         finish_call_expr.
1720         * pt.c (tsubst_copy_and_build): Use KOENIG_LOOKUP_P.
1721         * semantics.c (finish_call_expr): Add koenig_p parameter.
1722
1723 2003-09-01  Mark Mitchell  <mark@codesourcery.com>
1724
1725         PR c++/12114
1726         * cp-tree.h (initialize_reference): Change prototype.
1727         * call.c (initialize_reference): Add cleanup parameter.
1728         * decl.c (grok_reference_init): Likewise.
1729         (check_initializer): Likewise.
1730         (cp_finish_decl): Insert a CLEANUP_STMT if necessary.
1731         (duplicate_decls): When replacing an anticipated builtin, do not
1732         honor TREE_NOTHROW.
1733         * typeck.c (convert_for_initialization): Correct call to
1734         initialize_reference.
1735
1736         PR c++/11972
1737         * pt.c (dependent_type_p_r): Pass only the innermost template
1738         arguments to any_dependent_template_arguments_p.
1739
1740 2003-09-01  Josef Zlomek  <zlomekj@suse.cz>
1741
1742         * error.c (dump_expr): Kill BIT_ANDTC_EXPR.
1743         * lex.c (init_operators): Kill BIT_ANDTC_EXPR.
1744         * pt.c (tsubst_copy): Kill BIT_ANDTC_EXPR.
1745         * typeck.c (build_binary_op): Kill BIT_ANDTC_EXPR.
1746         (tsubst_copy_and_build): Kill BIT_ANDTC_EXPR.
1747
1748 2003-08-29  Mark Mitchell  <mark@codesourcery.com>
1749
1750         PR c++/12093
1751         * pt.c (build_non_dependent_expr): Do not build a
1752         NON_DEPENDENT_EXPR for a STRING_CST.
1753
1754         PR c++/11928
1755         * search.c (add_conversions): Avoid adding two conversion
1756         operators for the same type.
1757
1758 2003-08-29  Mark Mitchell  <mark@codesourcery.com>
1759
1760         PR c++/6196
1761         * pt.c (tsubst_copy_and_build): Correct handling of
1762         address-of-label extension.
1763         * semantics.c (finish_goto_stmt): The address of a label must go
1764         through the lvalue-to-rvalue conversion.
1765
1766 2003-08-29  Richard Henderson  <rth@redhat.com>
1767             Jason Merrill <jason@redhat.com>
1768
1769         * cp-lang.c (LANG_HOOKS_RTL_EXPAND_START): New.
1770         (LANG_HOOKS_RTL_EXPAND_STMT): New.
1771         * cp-tree.h (cxx_expand_function_start): Declare.
1772         * decl.c (start_function): Use allocate_struct_function.
1773         Move stmts_are_full_exprs_p assertion from expand_body.
1774         Do not free_after_parsing or free_after_compilation.
1775         (cxx_push_function_context): Move code to set struct function
1776         data from genrtl_start_function.
1777         * optimize.c (optimize_function): Don't inc/dec function_depth.
1778         * semantics.c (expand_body): Use tree_rest_of_compilation.
1779         (cxx_expand_function_start): Rename from genrtl_start_function,
1780         omit bits done by tree_rest_of_compilation.
1781         (genrtl_finish_function): Remove.
1782         (clear_decl_rtl): Move to ../tree-optimize.c.
1783
1784 2003-08-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1785
1786         PR c++/11811
1787         * cxx-pretty-print.c (pp_cxx_canonical_template_parameter): New
1788         function. 
1789         * cxx-pretty-print.h: Declare.
1790         * error.c (dump_template_parameter): Use it.
1791         (dump_type): Likewise.
1792
1793 2003-08-28  Mark Mitchell  <mark@codesourcery.com>
1794
1795         * init.c (decl_constant_value): Deal with COND_EXPR specially.
1796         * call.c (build_conditional_expr): Revert previous patch.
1797
1798         PR optimization/5079
1799         * call.c (build_conditional_expr): Use decl_constant_value to
1800         simplify the arguments.
1801
1802 2003-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
1803
1804         * parser.c (struct cp_token): Use enum bitfields.
1805         (CP_TOKEN_BLOCK_NUM_TOKENS): Make sure cp_token_block fits in a
1806         512B allocation unit.
1807         (cp_parser_token_tree_map_node): Use enum bitfields.
1808
1809 2003-08-26  Nathan Sidwell  <nathan@codesourcery.com>
1810
1811         PR c++/11871
1812         * decl.c (push_class_level_binding): Correct old_decl value from
1813         my 2003-07-29 reorganization.
1814
1815         * call.c (build_call): Don't set TREE_SIDE_EFFECTS here.
1816         (build_new_method_call): Add goto finish.
1817         * semantics.c (simplify_aggr_init_exprs_r): Don't set
1818         TREE_SIDE_EFFECTS on a call.
1819
1820 2003-08-25  Richard Henderson  <rth@redhat.com>
1821
1822         * cxx-pretty-print.c (pp_cxx_class_name): Remove unused function.
1823
1824 2003-08-25  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1825
1826         * cxx-pretty-print.h (pp_cxx_flag_default_argument): New flag.
1827         (cxx_pretty_printer): Adjust base type.
1828         (pp_cxx_function_specifier): Declare.
1829         * cxx-pretty-print.c (pp_cxx_whitespace): New macro.
1830         (pp_cxx_left_paren): Likewise.
1831         (pp_cxx_right_paren): Likewise.
1832         (pp_cxx_dot): Likewise.
1833         (pp_cxx_arrow): Likewise.
1834         (pp_cxx_semicolon): Likewise.
1835         (pp_cxx_identifier): Likewise.
1836         (pp_cxx_cv_qualifier_seq): Likewise.
1837         (pp_cxx_storage_class_specifier): Likewise.
1838         (pp_cxx_expression_list): Likewise.
1839         (pp_cxx_space_for_pointer_operator): Likewise.
1840         (pp_cxx_init_declarator): Likewise.
1841         (pp_cxx_call_argument_list): Likewise.
1842         (pp_cxx_nonconsecutive_character): Tidy.
1843         (pp_cxx_conversion_function_id): New function.
1844         (pp_cxx_template_id): Likewise.
1845         (pp_cxx_template_keyword_if_needed): Likewise.
1846         (pp_cxx_nested_name_specifier): Likewise.
1847         (pp_cxx_unqualified_id): Tidy
1848         (pp_cxx_qualified_id): Handle more nodes.
1849         (pp_cxx_primary_expression): Tidy.
1850         (pp_cxx_postfix_expression): Likewise.
1851         (pp_cxx_new_expression): Tidy.
1852         (pp_cxx_delete_expression): Likewise.
1853         (pp_cxx_cast_expression): New function.
1854         (pp_cxx_pm_expression): Tidy.
1855         (pp_cxx_conditional_expression): Likewise.
1856         (pp_cxx_assignment_operator): New function.
1857         (pp_cxx_assignment_expression): Tidy.
1858         (pp_cxx_expression): New function.
1859         (pp_cxx_function_specifier): Likewise.
1860         (pp_cxx_decl_specifier_seq): Likewise.
1861         (pp_cxx_simple_type_specifier): Tidy.
1862         (pp_cxx_type_specifier_seq): Likewise.
1863         (pp_cxx_ptr_operator): New function.
1864         (pp_cxx_implicit_parameter_type): Likewise.
1865         (pp_cxx_parameter_declaration): Tidy.
1866         (pp_cxx_parameter_declaration_clause): New function.
1867         (pp_cxx_exception_specification): Likewise.
1868         (pp_cxx_direct_declarator): Tidy.
1869         (pp_cxx_declarator): Likewise.
1870         (pp_cxx_ctor_initializer): New function.
1871         (pp_cxx_function_definition): Likewise.
1872         (pp_cxx_abstract_declarator): Tidy.
1873         (pp_cxx_direct_abstract_declarator): Likewise.
1874         (pp_cxx_type_id): Likewise.
1875         (pp_cxx_exception_declaration): New function.
1876         (pp_cxx_statement): Likewise.
1877         (pp_cxx_simple_declaration): Likewise.
1878         (pp_cxx_template_parameter_list): Likewise.
1879         (pp_cxx_template_parameter): Likewise.
1880         (pp_cxx_template_declaration): Likewise.
1881         (pp_cxx_explicit_specialization): Likewise.
1882         (pp_cxx_explicit_instantiation): Likewise.
1883         (pp_cxx_declaration): Tidy.
1884         (pp_cxx_pretty_printer_init): Initialize more fields.
1885
1886 2003-08-25  Mark Mitchell  <mark@codesourcery.com>
1887
1888         PR c++/8795
1889         * cp-tree.h (build_cplus_method_type): Remove.
1890         * call.c (standard_conversion): Use build_method_type_directly
1891         instead of build_cplus_method_type.
1892         * class.c (build_clone): Likewise.
1893         (adjust_clone_args): Likewise.
1894         * decl.c (build_ptrmem_type): Likewise.
1895         (grokdeclarator): Likewise.
1896         (check_function_type): Likewise.
1897         * decl2.c (grok_method_quals): Likewise.
1898         (maybe_retrofit_in_chrg): Likewise.
1899         * pt.c (copy_default_args_to_explicit_spec): Likewise.
1900         (tsubst_function_type): Likewise.
1901         (tsubst): Likewise.
1902         * tree.c (build_cplus_method_type): Remove.
1903         * typeck.c (merge_types): Use build_method_type_directly.
1904
1905 2003-08-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1906
1907         PR c++/3765
1908         * search.c (dfs_access_in_type): Fix typo in comment.
1909         (dfs_accessible_queue_p): Likewise.
1910         (dfs_accessible_p): Only terminate when a friend is found.
1911         (accessible_p): Return immediately if access_in_type allows
1912         access.
1913
1914 2003-08-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1915
1916         PR c++/641, c++/11876
1917         * friend.c (add_friend): Add complain parameter.
1918         (make_friend_class): Likewise.
1919         (do_friend): Adjust add_friend call.
1920         * decl.c (grokdeclarator): Adjust make_friend_class call.
1921         * parser.c (cp_parser_member_declaration): Likewise.
1922         (cp_parser_template_declaration_after_export): Likewise.
1923         * pt.c (instantiate_class_template): Adjust make_friend_class
1924         and add_friend call.
1925         * cp-tree.h (make_friend_class): Adjust declaration.
1926         (add_friend): Likewise.
1927
1928 2003-08-21  Jason Merrill  <jason@redhat.com>
1929
1930         PR c++/11283
1931         * call.c (build_conditional_expr): Ignore cv-qual differences for
1932         non-class types.
1933
1934 2003-08-21  Mark Mitchell  <mark@codesourcery.com>
1935
1936         PR c++/11551
1937         * parser.c (cp_parser_id_expression): Add declarator_p parameter.
1938         (cp_parser_primary_expression): Adjust call to
1939         cp_parser_id_expression.
1940         (cp_parser_unqualified_id): Complain about the use of
1941         typedef-names in a destructor declarator.
1942         (cp_parser_postfix_expression): Adjust call to
1943         cp_parser_id_expression.
1944         (cp_parser_type_parameter): Likewise.
1945         (cp_parser_template_argument): Likewise.
1946         (cp_parser_declarator_id): Likewise.
1947
1948         PR c++/11919
1949         * call.c (standard_conversion): Use same_type_p, not pointer
1950         equality, to compare types.
1951
1952         PR c++/10762
1953         * parser.c (cp_parser_using_declaration): Check for invalid uses
1954         of template-ids here...
1955         * decl2.c (do_class_using_decl): ... rather than here.
1956
1957 2003-08-20  Mark Mitchell  <mark@codesourcery.com>
1958
1959         PR c++/11834
1960         * pt.c (more_specialized): Bump processing_template_decl.
1961
1962 2003-08-21  Jason Merrill  <jason@redhat.com>
1963
1964         PR c++/11614
1965         * decl.c (grokdeclarator): Recognize a flexible array based on the
1966         type, not the form of the declarator.
1967
1968 2003-08-20  Jason Merrill  <jason@redhat.com>
1969
1970         * semantics.c (simplify_aggr_init_expr): Split out from
1971         simplify_aggr_init_exprs_r.  Convert slot address to match
1972         the return type.
1973         * cp-tree.h: Declare it.
1974         * tree.c (cp_copy_res_decl_for_inlining): Don't clobber the
1975         DECL_NAME of a user variable.
1976
1977 2003-08-20  Nathan Sidwell  <nathan@codesourcery.com>
1978
1979         PR c++/11945
1980         * pt.c (build_non_dependent_expr): Look inside COND_EXPR and
1981         COMPOUND_EXPR.
1982         * semantics.c (finish_expr_stmt): Always convert to void.
1983         * typeck.c (build_x_compound_exp): Always convert to void.
1984
1985 2003-08-19  Mark Mitchell  <mark@codesourcery.com>
1986
1987         PR c++/11684
1988         * cp-tree.h (grok_op_properties): Change prototype.
1989         * decl.c (grok_op_properties): Add complain parameter.
1990         (grokfndecl): Pass it.
1991         * pt.c (tsubst_decl): Adjust accordingly.
1992
1993         PR c++/10926
1994         * decl.c (start_method): Return immediately if push_template_decl
1995         does not like the declaration.
1996         * pt.c (push_template_decl_real): Disallow member template
1997         destructors.
1998
1999         PR c++/11036
2000         * cp-tree.h (add_binding): Add prototype.
2001         * class.c (add_method): Set TYPE_HAS_DESTRUCTOR if appropriate.
2002         (maybe_warn_about_overly_private_class): Use
2003         CLASSTYPE_DESTRUCTORS.
2004         (pushclass): Adjust call to set_identifier_type_value.
2005         * decl.c (add_binding): Give it external linkage.
2006         (push_local_binding): Adjust call to add_binding.
2007         (push_class_binding): Likewise.
2008         (set_identifier_type_value_with_scope): Change prototype.  Use
2009         add_binding for global bindings.
2010         (set_identifier_type_value): Adjust accordingly.
2011         (pushtag): Likewise.
2012         (pushdecl): Use set_identifier_type_value, not
2013         set_identifier_type_value_with_scope.
2014         (pushdecl_namespace_level): Adjust calls to
2015         SET_IDENTIFIER_TYPE_VALUE to pass a DECL.
2016         (pushdecl_class_level): Likewise.
2017         (lookup_tag): Use select_decl.
2018         (select_decl): Improve comment.
2019         (record_builtin_type): Do not call pushdecl.
2020         (cxx_init_decl_processing): Do not call xref_tag for bad_alloc.
2021         (cp_finish_decl): Adjust call to set_identifier_type_value.
2022         (check_elaborated_type_specifier): Improve checks for invalid uses
2023         of typedefs.
2024         (xref_tag): Adjust call to check_elaborated_type_specifier.
2025         * decl2.c (grokclassfn): Do not set TYPE_HAS_DESTRUCTOR.
2026         * name-lookup.c (set_namespace_binding): Use add_binding.
2027         * parser.c (cp_parser_simple_type_specifier): Return a TYPE_DECL,
2028         rather than an IDENTIFIER_NODE, to represent built-in types, if
2029         requested by the caller.
2030         (cp_parser_postfix_expression): Adjust call.
2031         (cp_parser_type_specifier): Likewise.
2032         (cp_parser_elaborated_type_specifier): Adjust call to
2033         check_elaborated_type_specifier.
2034         * typeck2.c (build_functional_cast): Do not perform name lookups.
2035
2036         PR c++/10717
2037         * decl.c (expand_static_init): Remove unnecessary code.
2038
2039 2003-08-19  Andrew Pinski  <pinskia@physics.uc.edu>
2040
2041         PR c++/10538, PR c/5582
2042         * cp/cp-lang.c (LANG_HOOKS_DECL_UNINIT): Define.
2043
2044 2003-08-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2045
2046         PR c++/11174
2047         * init.c (build_offset_ref): Perform access checking for
2048         pointer to member correctly.
2049
2050 2003-08-19  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2051
2052         * cp-lang.c (LANG_HOOKS_INITIALIZE_DIAGNOSTICS): Fix spelling.
2053
2054 2003-08-18  Nathan Sidwell  <nathan@codesourcery.com>
2055
2056         PR c++/11957
2057         * cp-tree.h (finish_stmt_expr): Add bool parameter.
2058         * init.c (finish_init_stmts): Pass true to finish_stmt_expr. Don't
2059         adjust the stmt_expr here.
2060         (build_vec_init): Use finish_stmt_expr_expr, convert result to
2061         array type.
2062         * parser.c (cp_parser_primar_expression): Adjust finish_stmt_expr
2063         call.
2064         * pt.c (tsubst_copy): Likewise.
2065         * semantics.c (finish_stmt_expr): Add parameter.
2066
2067         * pt.c (instantiate_class_template): Push to class's scope before
2068         tsubsting base.
2069
2070 2003-08-17  Jan Hubicka  <jh@suse.cz>
2071
2072         PR C++/11702
2073         * semantics.c (finish_id_expression): Mark all functions as used.
2074
2075 2003-08-16  Nathan Sidwell  <nathan@codesourcery.com>
2076
2077         PR c++/11512
2078         * cvt.c (convert_to_void): Indicate which side of conditional has
2079         no effects, and rhs of comma operator. Test for no sideeffect
2080         expressions here and always build a convert expr.
2081         * init.c (expand_default_init): Convert the init to void.
2082         * typeck.c (build_x_compound_expr): Do not check for side effects
2083         here.
2084         (build_compound_expr): Do not convert lhs when building a
2085         template.
2086
2087 2003-08-15  Nathan Sidwell  <nathan@codesourcery.com>
2088
2089         * cp-tree.def (NON_DEPENDENT_EXPR): Add operand.
2090         * decl2.c (build_offset_ref_call_from_tree): Use
2091         build_non_dependent_expr.
2092         * error.c (dump_expr) <NON_DEPENDENT_EXPR case>: Dump the operand.
2093         * pt.c (build_non_dependent_expr): Set operand.
2094
2095 2003-08-14  Jan Hubicka  <jh@suse.cz>
2096
2097         * decl2.c (mark_member_pointers): Rename to...
2098         (mark_member_pointers_and_eh_tinfos): ... this one; deal with eh tinfos
2099         (lower_function): Update call.
2100         * except.c (eh_type_info): Break out from ...
2101         (build_eh_type): ... here; tinfo is already used.
2102         (finish_eh_spec_block): Mark tinfos as used.
2103         * semantics.c (finish_handler_params): Mark tinfo as used.
2104         * cp-tree.h (eh_type_info): Declare.
2105
2106 2003-08-15  Nathan Sidwell  <nathan@codesourcery.com>
2107
2108         * pt.c (instantiate_class_template): Set location before
2109         substuting bases.
2110
2111         * decl.c (make_typename_type): Use my_friendly_assert.
2112         * pt.c (tsubst_aggr_type): Rearrange context substitution.
2113
2114 2003-08-14  Jan Hubicka  <jh@suse.cz>
2115
2116         * method.c (use_thunk): Expand body directly.
2117
2118 2003-08-12  Mark Mitchell  <mark@codesourcery.com>
2119
2120         PR c++/11703
2121         * call.c (type_passed_as): Use TYPE_SIZE, not TYPE_PRECISION to
2122         determine whether or not to promote types.
2123         (convert_for_arg_passing): Likewise.
2124         * decl2.c (cp_build_parm_decl): Do not set DECL_ARG_TYPE in
2125         templates.
2126         * pt.c (tsubst_decl): Do not expect it to be set.
2127
2128         PR c++/9512
2129         PR c++/10923
2130         * cp-tree.h (check_elaborated_type_specifier): Declare.
2131         (handle_class_head): Remove.
2132         (note_got_semicolon): Likewise.
2133         (note_list_got_semicolon): Likewise.
2134         (finish_class_definition): Likewise.
2135         * decl.c (check_elaborated_type_specifier): Make it public.
2136         Robustify.
2137         (handle_class_head): Remove.
2138         * parser.c (cp_parser_elaborated_type_specifier): Use
2139         check_elaborated_type_specifier.
2140         (cp_parser_class_specifier): Do not call finish_class_definition.
2141         (cp_parser_class_head): Or handle_class_head.  Check for
2142         over-qualified names.
2143         * semantics.c (finish_class_definition): Remove.
2144
2145         * parser.c (cp_parser_check_for_definition_in_return_type): New
2146         function.
2147         (cp_parser_simple_declaration): Adjust call to
2148         cp_parser_init_declarator.
2149         (cp_parser_decl_specifier_seq): Change type of
2150         declares_class_or_enum parameter.
2151         (cp_parser_explicit_instantiation): Adjust accordingly.
2152         (cp_parser_type_specifier): Change type of
2153         declares_class_or_enum parameter.
2154         (cp_parser_init_declarator): Add declares_class_or_enum
2155         parameter.
2156         (cp_parser_parameter_declaration): Adjust call to
2157         cp_parser_decl_specifier_seq.
2158         (cp_parser_function_definition): Likewise.
2159         (cp_parser_member_declaration): Likewise.
2160         (cp_parser_single_declaration): Likewise.
2161
2162         * cp-tree.h (lang_type_class): Remove has_call_overloaded,
2163         has_array_ref_overloaded, has_arrow_overloaded, and got_semicolon.
2164         (TYPE_OVERLOADS_CALL_EXPR): Remove.
2165         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
2166         (TYPE_OVERLOADS_ARROW): Likewise.
2167         (CLASSTYPE_GOT_SEMICOLON): Likewise.
2168         * class.c (check_bases): Do not set them.
2169         (finish_struct_1): Likewise.
2170         * decl.c (cp_finish_decl): Do not set CLASSTYPE_GOT_SEMICOLON.
2171         (build_ptrmemfunc_type): Likewise.
2172         (grok_op_properties): Do not set TYPE_OVERLOADS_*.
2173         (start_function): Do not check CLASSTYPE_GOT_SEMICOLON.
2174         * decl2.c (grokfield): Do not set CLASSTYPE_GOT_SEMICOLON.
2175         * lex.c (note_got_semicolon): Remove.
2176         (note_list_got_semicolon): Likewise.
2177         * parser.c (cp_parser_simple_declaration): Do not call
2178         note_list_got_semicolon.
2179         * pt.c (list_eq): Remove.
2180         (lookup_template_class): Do not set CLASSTYPE_GOT_SEMICOLON.
2181         (instantiate_class_template): Do not set TYPE_OVERLOADS*.
2182         (instantiate_class_template): Do not set CLASSTYPE_GOT_SEMICOLON.
2183         * ptree.c (cxx_print_type): Do not print them.
2184         * semantics.c (finish_member_class_template): Do not call
2185         note_list_got_semicolon.
2186
2187 2003-08-11  Aldy Hernandez  <aldyh@redhat.com>
2188
2189         * call.c (standard_conversion): Opaque pointers interconvert.
2190
2191         * testsuite/g++.dg/other/opaque-3.C: New.
2192
2193 2003-08-11  Mark Mitchell  <mark@codesourcery.com>
2194
2195         * typeck.c (merge_types): Handle cv-qualified pointer-to-member
2196         types correctly.
2197
2198 2003-08-10  Mark Mitchell  <mark@codesourcery.com>
2199
2200         PR c++/11789
2201         * cp-tree.h (get_vbase): Remove.
2202         (get_vbase_types): Remove.
2203         * init.c (expand_member_init): Correct logic for looking up base
2204         classes.
2205
2206 2003-08-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2207
2208         * error.c (dump_expr): Tidy.
2209         * cxx-pretty-print.c (pp_cxx_nonconsecutive_character): New.
2210         (pp_cxx_begin_template_argument_list): Likewise.
2211         (pp_cxx_end_template_argument_list): Likewise.
2212         (is_destructor_name): Likewise.
2213         (pp_cxx_unqualified_id): Likewise.
2214         (pp_cxx_qualified_id): Likewise.
2215         (pp_cxx_id_expression): Likewise.
2216         (pp_cxx_new_expression): Likewise.
2217         (pp_cxx_delete_expression): Likewise.
2218         (pp_cxx_pm_expression): Likewise.
2219         (pp_cxx_type_specifier): Rework.
2220         (pp_cxx_type_id): Likewise.
2221         (pp_cxx_primary_expression): Likewise.
2222         (pp_cxx_postfix_expression): Likewise.
2223         (pp_cxx_unary_expression): Likewise.
2224         (pp_cxx_multiplicative_expression): Likewise.
2225         (pp_cxx_conditional_expression): Likewise.
2226         (pp_cxx_assignment_expression): Likewise.
2227         (pp_cxx_pretty_printer_init): Tidy.
2228
2229 2003-08-10  Nathan Sidwell  <nathan@codesourcery.com>
2230
2231         * cp-tree.h (TMPL_ARGS_HAVE_MULTIPLE_LEVELS): non-NULL
2232         NODE is always a TREE_VEC of nonzero size.
2233         (NUM_TMPL_ARGS): NODE is always a TREE_VEC.
2234         * decl2.c (arg_assoc): Template args will be a vec.
2235         * error.c (dump_decl) <TEMPLATE_ID_EXPR case>: Call
2236         dump_template_argument_list.
2237         (dump_template_parms): Args will be a vec.
2238         * parser.c (cp_parser_template_argument_list): Produce a
2239         vector, not a list.
2240         * pt.c (coerce_template_parms): Args are always vectors.
2241         (mangle_class_name_for_template): Likewise.
2242         (lookup_template_function): Likewise.
2243         (lookup_template_class): Likewise.
2244         (tsubst_template_args): Likewise.
2245         (tsubst_baselink): Use tsubst_template_args.
2246         (tsubst_qualified_id): Likewise.
2247         (tsubst_copy) <TEMPLATE_ID_EXPR case>: Likewise.
2248         (tsubst_copy_and_build) <TEMPLATE_ID_EXPR case>: Likewise.
2249         (any_dependent_template_args_p):  Args are always vectors.
2250         * tree.c (cp_tree_equal): Add TEMPLATE_ID_EXPR case.
2251
2252         PR c++/11670
2253         * call.c (convert_like_real): Add rvalue binding error message.
2254         * error.c (dump_expr) <NOP_EXPR case>: Detect when the no expr is
2255         really a cast.
2256
2257         PR c++/10530
2258         * pt.c (dependent_type_p_r): A dependent template-id is a class
2259         type with dependent template arguments, or a bound template
2260         template parameter.
2261         (type_dependent_expression_p): A template function decl cannot
2262         have a dependent context.
2263
2264 2003-08-07  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2265
2266         PR c++/5767
2267         * parser.c (cp_parser_class_name): Return immediately when scope
2268         is error_mark_node.
2269
2270 2003-08-07  Aldy Hernandez  <aldyh@redhat.com>
2271
2272         * cp/Make-lang.in (cp/call.o): Add dependency for target.h.
2273
2274         * cp/call.c (standard_conversion): Support opaque types.
2275         Include target.h.
2276         (strip_top_quals): Use cp_build_qualified_type instead of
2277         TYPE_MAIN_VARIANT.
2278
2279         * cp/typeck.c (convert_for_assignment): Support opaque types.
2280
2281         * testsuite/g++.dg/other/opaque-1.C: New.
2282
2283         * testsuite/g++.dg/other/opaque-2.C: New.
2284
2285 2003-08-06  Aldy Hernandez  <aldyh@redhat.com>
2286
2287         * decl.c (grokparms): Use cp_build_qualified_type instead
2288         TYPE_MAIN_VARIANT.
2289
2290 2003-08-05  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2291
2292         * cxx-pretty-print.h: New file.
2293         * cxx-pretty-print.c: Likewise.
2294         * error.c (scratch_pretty_printer): Change type.
2295         (init_error): Tidy.
2296         (dump_aggr_type): Likewise.
2297         (dump_global_iord): Likewise.
2298         (dump_expr): Likewise.
2299         (dump_char): Remove.
2300         * cp-lang.c (LANG_HOOKS_INITIALIZE_DIAGNOSTITCS): Define.
2301         (cxx_initialize_diagnostics): New function.
2302         * Make-lang.in (CXX_OBJS): Add cp/cxx-pretty-print.o
2303         (CXX_PRETTY_PRINT_H): New variable.
2304         (cp/cxx-pretty-print.o): New rule.
2305         (cp/cp-lang.o): Update dependence.
2306         (cp/error.o): Likewise.
2307
2308 2003-08-05  Steven Bosscher  <steven@gcc.gnu.org>
2309
2310         * cp-tree.h (struct lang_decl): Don't include c_lang_decl.
2311         (DECL_DECLARED_INLINE_P): Remove.
2312         * decl2.c (import_export_decl): Only look at DECL_DECLARED_INLINE_P
2313         if decl is a FUNCTION_DECL.  This never made sense, but now it is
2314         required to avoid a tree check failure.
2315         * decl.c (grokfndecl): Don't touch DID_INLINE_FUNC.
2316         * optimize.c (maybe_clone_body): Likewise.
2317
2318 2003-08-04  Roger Sayle  <roger@eyesopen.com>
2319
2320         * decl.c (cxx_insert_default_attributes): Delete.
2321         * cp-tree.h (cxx_insert_default_attributes): Don't prototype.
2322         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Don't define.
2323
2324 2003-08-03  Nathan Sidwell  <nathan@codesourcery.com>
2325
2326         PR c++/11704
2327         * pt.c (type_dependent_expression_p): Cope with COMPONENT_REF with
2328         unknown type.
2329
2330         PR c++/11766
2331         * typeck.c (comp_ptr_ttypes_real): Don't loop on pointers to
2332         member functions.
2333
2334 2003-08-02  Nathan Sidwell  <nathan@codesourcery.com>
2335
2336         PR c++/9447
2337         * cp-tree.def (USING_DECL): Document its type.
2338         * class.c (pushclass): If we're entering a template, push any
2339         dependent using decls it has.
2340         * decl2.c (do_class_using_decl): Refactor. Type is NULL iff it is
2341         a dependent scope.
2342         * pt.c (tsubst_decl) <USING_DECL case>: Set type.
2343         (tsubst): Remove USING_DECL checks.
2344         (type_dependent_expression_p): Remove USING_DECL case.
2345         * semantics.c (finish_member_declaration): A USING_DECL's type
2346         indicates whether it is dependent.
2347
2348 2003-08-02  Nathan Sidwell  <nathan@codesourcery.com>
2349
2350         * cp-tree.h (pushclass): Remove unneeded parameter.
2351         * class.c (pushclass): Remove unneeded MODIFY parm. Adjust.
2352         (push_nested_class): Adjust pushclass call.
2353         * pt.c (instantiate_class_template): Likewise.
2354         * semantics.c (begin_class_definition): Likewise.
2355
2356 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
2357
2358         * typeck2.c (add_exception_specifier): Use 'bool' where appropriate.
2359
2360 2003-08-01  Mark Mitchell  <mark@codesourcery.com>
2361
2362         PR c++/11697
2363         * decl.c (decls_match): Don't ignore the types of template
2364         classes.
2365
2366         PR c++/11744
2367         * pt.c (tsubst_copy_and_build): Refine Koenig lookup logic.
2368
2369 2003-08-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2370
2371         PR c++/8442, c++/8806
2372         * decl.c (qualify_lookup): Accept TEMPLATE_DECL if types are
2373         preferred.
2374         (check_elaborated_type_specifier): Add allow_template_p
2375         parameter.  Check tag mismatch and class template.
2376         (xref_tag): Add template_header_p parameter.  Add assertion
2377         that name is an IDENTIFIER_NODE.  Remove implicit typename
2378         warning.  Simplify lookup process if globalize is true.
2379         (cxx_init_decl_processing): Adjust call to xref_tag.
2380         (xref_tag_from_type): Likewise.
2381         * decl2.c (handle_class_head): Likewise.
2382         * parser.c (cp_parser_elaborated_type_specifier,
2383         cp_parser_class_head): Likewise.
2384         * rtti.c (init_rtti_processing, build_dynamic_cast1,
2385         tinfo_base_init, emit_support_tinfos): Likewise.
2386         * class.c (is_base_of_enclosing_class): Remove.
2387         * pt.c (convert_template_argument): Don't accept RECORD_TYPE as
2388         template template argument.
2389         * cp-tree.h (xref_tag): Adjust declaration.
2390         (is_base_of_enclosing_class): Remove.
2391         * NEWS: Document template template argument change.
2392
2393 2003-08-01  Nathan Sidwell  <nathan@codesourcery.com>
2394
2395         * parser.c (cp_parser_init_declarator,
2396         cp_paser_member_declaration): Reformat.
2397         * pt.c (lookup_template_class, type_unification_real, unify,
2398         type_dependent_expression_p): Reformat.
2399
2400         PR c++/11295
2401         * cp-tree.h (tubst_flags_t): Add tf_stmt_expr_cmpd,
2402         tf_stmt_expr_body.
2403         (finish_stmt_expr_expr): Declare.
2404         * parser.c (cp_parser_primary_expression): Tell
2405         cp_parser_compount_statement that it is a statement expression.
2406         (cp_parser_statement, cp_parser_labeled_statement,
2407         cp_parser_compound_statement, cp_parser_statement_seq_opt): Add
2408         in_statement_expr_p parameter.
2409         (cp_parser_expression_statement): Likewise. Call
2410         finish_stmt_expr_expr for final expression of a statement
2411         expression.
2412         (cp_parser_for_init_statement,
2413         cp_parser_implicitly_scoped_statement,
2414         cp_parser_already_scoped_statement, cp_parser_function_definition,
2415         cp_parser_try_block, cp_parser_handled): Adjust.
2416         * pt.c (tsubst_copy) <STMT_EXPR case>: Pass tf_stmt_expr.
2417         (tsubst_expr): Process tf_stmt_expr and tf_stmt_exprs flags.
2418         (tsubst_expr) <EXPR_STMT case>: Check tf_stmt_exprs flag.
2419         * semantics.c (finish_expr_stmt): Do not deal with statement
2420         expressions.
2421         (begin_stmt_expr): Clear last_expr_type.
2422         (finish_stmt_expr_expr): New.
2423         (finish_stmt_expr): Process the value expression.
2424
2425         * typeck.c (build_compound_expr): If RHS is a TARGET_EXPR, put the
2426         compound expr inside the target's initializer.
2427
2428         PR c++/11525
2429         * parser.c (cp_parser_primary_expression): Do not set
2430         non-constant-p merely because it is a dependent scope.
2431
2432         PR c++/9447
2433         * decl2.c (do_class_using_decl): Set type to NULL_TREE.
2434         * semantics.c (finish_expr_stmt): Do not convert to void in a
2435         template.
2436
2437 2003-07-31  Nathan Sidwell  <nathan@codesourcery.com>
2438
2439         * pt.c (coerce_template_parms): Refactor.
2440         (fn_type_unification): Increment processing_template_decl when
2441         tsubsting an incomplete set of explicit args.
2442
2443         PR c++/11347
2444         * pt.c (instantiate_class_template): Increment
2445         processing_template_decl around the tsubst of a template member
2446         class.
2447         (tsubst_qualified_id): Assert we do not have a dependent scope.
2448
2449         * pt.c (coerce_template_template_parms, lookup_template_class,
2450         can_complete_type_without_circularity, instantiate_class_template,
2451         tsubst_decl, unify): Reformat.
2452
2453 2003-07-31  Jan Hubicka  <jh@suse.cz>
2454
2455         * decl2.c (maybe_make_one_only): Use mark_referenced.
2456         * method.c (use_thunk): Likewsie.
2457
2458 2003-07-30  Jan Hubicka  <jh@suse.cz>
2459
2460         * class.c (build_vtable_entry_ref): Kill.
2461         (build_vtbl_ref_1): Do not call build_vtable_entry_ref.
2462         (build_vfn_ref): Do not call build_vtable_entry_ref.
2463         * cp-lang.c (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): Kill.
2464         * cp-tree.h (prepare_assemble_variable): Kill.
2465         * cp-decl.c (prepare_assemble_variable): Kill.
2466
2467 2003-07-29  Geoffrey Keating  <geoffk@apple.com>
2468
2469         * parser.c (cp_lexer_new_main): Use c_common_no_more_pch instead
2470         of setting valid_pch by hand.
2471
2472 2003-07-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2473
2474         * decl.c (finish_enum): Initialize underlying_type.
2475
2476 2003-07-29  Nathan Sidwell  <nathan@codesourcery.com>
2477
2478         PR c++/9447
2479         * decl.c (add_binding): Add bval local variable.
2480         (push_class_level_binding): Likewise. Allow a USING_DECL to be
2481         pushed.
2482         * decl2.c (do_class_using_decl):  The type of a using decl is
2483         unknown.
2484         * parser.c (cp_parser_postfix_expression): Refactor unqualified-id
2485         function call lookup code.
2486         * pt.c (tsubst): A USING_DECL will have unknown type.
2487         (tsubst_copy_and_build): Allow a using decl.
2488         (type_dependent_expression_p): A USING_DECL will make it
2489         dependent.
2490         * semantics.c (finish_member_declaration): Push a dependent using
2491         declaration.
2492
2493 2003-07-28  Mark Mitchell  <mark@codesourcery.com>
2494
2495         PR c++/11530
2496         * parser.c (cp_parser_postfix_expression): Do not call mark_used.
2497         * semantics.c (finish_id_expression): Call mark_used for all
2498         declarations.
2499
2500 2003-07-28  Mark Mitchell  <mark@codesourcery.com>
2501
2502         PR c++/11667
2503         * call.c (standard_conversion): Allow all integral->enumeral
2504         conversions, after marking them as bad.
2505         * decl.c (finish_enum): Make sure that all enumerators are
2506         properly converted to the underlying type.
2507         (build_enumerator): Set DECL_CONTEXT for namespace-scope
2508         enumeration types.
2509         * pt.c (tsubst_copy): Adjust handling of CONST_DECLs accordingly.
2510         (tsubst_enum): Tidy.
2511
2512         * Make-lang.in (typeck.o): Depend on convert.h.
2513         (class.o): Likewise.
2514         (rtti.o): Likewise.
2515         * call.c: Include convert.h.
2516         (convert_arg_to_ellipsis): Use convert_to_real.
2517         * class.c: Include convert.h.
2518         (build_base_path): Use convert_to_integer.
2519         * rtti.c: Include convert.h.
2520         (build_headof): Use convert_to_integer.
2521         * typeck.c: Include convert.h.
2522         (decay_conversion): Use convert_to_integer.
2523         (build_unary_op): Use build_nop.
2524         (get_delta_difference): Use convert_to_integer.
2525         (build_ptrmemfunc): Avoid unnecessary conversions.
2526
2527 2003-07-28  Jan Hubicka  <jh@suse.cz>
2528
2529         * decl2.c (mark_member_pointers): Verify that member pointer points to
2530         the function.
2531
2532 2003-07-28  Nathan Sidwell  <nathan@codesourcery.com>
2533
2534         * cp-tree.h (begin_compound_stmt): No scope arg is a bool.
2535         (finish_compound_stmt): Remove no scope arg.
2536         * decl.c (register_dtor_fn): Adjust begin_compound_stmt and
2537         end_compound_stmt calls.
2538         (expand_static_init, begin_destructor_body, begin_function_body,
2539         finish_function_body): Likewise.
2540         * decl2.c (start_objects, finish_objects,
2541         start_static_storage_duration_function,
2542         finish_static_storage_duration_function): Likewise.
2543         * init.c (begin_init_stmts, finish_init_stmts,
2544         construct_virtual_base, build_vec_init): Likewise.
2545         * method.c (do_build_assign_ref, synthesize_method): Likewise.
2546         * parser.c (cp_parser_compound_statement,
2547         cp_parser_implicitly_scoped_statement,
2548         cp_parser_already_scoped_statement): Likewise.
2549         * pt.c (tsubst_expr): Likewise.
2550         * semantics.c (begin_compound_stmt): No scope arg is a bool.
2551         (finish_compound_stmt): Remove no scope arg.
2552
2553         * error.c (dump_expr) <COMPOUND_EXPR case>: A compound expr is
2554         always dyadic.
2555
2556 2003-07-27  Mark Mitchell  <mark@codesourcery.com>
2557
2558         * call.c (standard_conversion): Tweak handling of
2559         pointer-to-member types.
2560         * pt.c (tsubst): Correctly qualify pointers-to-data member types.
2561         * typeck.c (comp_ptr_ttypes_real): Check qualifiers on
2562         pointer-to-data member types.
2563
2564 2003-07-27  Nathan Sidwell  <nathan@codesourcery.com>
2565
2566         * parser.c (cp_parser_type_parameter): Reformat.
2567         (cp_parser_parameter_declaration): Deprecate default args where
2568         not allowed.
2569
2570 2003-07-26  Nathan Sidwell  <nathan@codesourcery.com>
2571
2572         * cfns.h: Rebuilt.
2573
2574         * cp-tree.h (begin_init_stmts, finish_init_stmts): Remove.
2575         (begin_global_stmt_expr, finish_global_stmt_expr): Remove.
2576         * init.c (begin_init_stmts): Make static. Return is_global
2577         value. Always call begin_stmt_expr.
2578         (finish_init_stmts): Make static. Add is_global parm. Always
2579         building a stmt tree.
2580         (build_aggr_init): Adjust begin_init_stmts, finish_init_stmts calls.
2581         (build_vec_init): Likewise. Always building a stmt tree.
2582         (expand_default_init): Always building a stmt tree.
2583         (get_temp_regvar): Likewise.
2584         * semantics.c (begin_global_stmt_expr,
2585         finish_global_stmt_expr): Remove.
2586
2587 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
2588
2589         * cp-tree.h (build_compound_expr): Take LHS & RHS args.
2590         (build_x_compound_expr_from_list): Declare.
2591         * typeck.c (build_x_compound_expr_from_list): New.
2592         (build_x_compound_expr): Adjust.
2593         (build_compound_expr): Remove unreachable code. Take two
2594         parameters, adjust.
2595         * decl.c (grok_reference_init): Use
2596         build_x_compound_expr_from_list.
2597         (expand_static_init): Adjust build_compound_expr call.
2598         (cxx_maybe_build_cleanup): Likewise.
2599         * init.c (perform_member_init): Use
2600         build_x_compound_expr_from_list.
2601         (build_new_1): Likewise.
2602         (build_vec_delete): Adjust build_compound_expr calls.
2603         (build_vbase_delete): Likewise.
2604         * typeck2.c (store_init_value): Use
2605         build_x_compound_expr_from_list.
2606         (build_functional_cast): Likewise.
2607
2608 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
2609
2610         * cp-tree.h (enum tsubst_flags_t): Add tf_user.
2611         * decl.c (make_typename_type): Pass it.
2612         * pt.c (lookup_template_class): Use it.
2613         (resolve_typename_type): Pass it.
2614         * semantics.c (finish_template_type): Pass it.
2615
2616 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
2617
2618         PR c++/11617
2619         * cp-tree.h (qualified_name_lookup_error): Declare.
2620         * pt.c (tsubst_qualified_id): Use qualified_name_lookup_error for
2621         errors.
2622         (tsubst_expr) <DECL_STMT case>: Likewise.
2623         (tsubst_copy_and_build) <COMPONENT_REF case>: Likewise.
2624         * semantics.c (qualified_name_lookup_error): New, broken out of ...
2625         (finish_id_expression): ... here. Use it.
2626
2627 2003-07-25  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
2628
2629         * cfns.gperf: Add '%%' delimiter to placate gperf 3.0.
2630
2631 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
2632
2633         PR c++/11596
2634         * pt.c (maybe_fold_nontype_arg, maybe_fold_nontype_args): Remove.
2635         (tsubst_template_arg): New.
2636         (tsubst_template_arg_vector): Rename to ...
2637         (tsubst_template_args): ... this. Accept a TREE_LIST form. Use
2638         tsubst_template_arg.
2639         (coerce_template_parms): Use tsubst_template_arg for default
2640         value.
2641         (tsubst_template_parms): Likewise.
2642         (tsubst_aggr_type): Adjust.
2643         (tsubst_decl): Likewise.
2644         (tsubst): Use tsubst_template_arg for a DOMAIN. Adjust.
2645         (tsubst_copy) <TEMPLATE_ID_EXPR case>: Use tsubst_template_args.
2646
2647 2003-07-25 Gabriel Dos Reis  <gdr@integrable-solutions.net>
2648
2649         * Make-lang.in (cp/error.o): Depend on DIAGNOSTIC_H.
2650         * error.c: Use the new pretty-printer framework.
2651
2652 2003-07-24  Per Bothner  <pbothner@apple.com>
2653
2654         * decl.c (pushdecl_class_level): Don't use push_srcloc/pop_srcloc
2655         which causes errors messages to incorrectly mention included files.
2656
2657 2003-07-24  Mark Mitchell  <mark@codesourcery.com>
2658
2659         * cp-tree.h (convert_to_base_statically): Declare.
2660         * call.c (build_special_member_call): Convert INSTANCE to the base
2661         type.
2662         * class.c (convert_to_base_statically): New method.
2663         * init.c (construct_virtual_base): Use it.
2664         * method.c (do_build_assign_ref): Fix typo in comment.
2665
2666 2003-07-24  Jason Merrill  <jason@redhat.com>
2667
2668         * decl.c: Just set truthvalue_* to boolean_*.
2669
2670 2003-07-24  Nathan Sidwell  <nathan@codesourcery.com>
2671
2672         * decl.c (reshape_init): Remove unreachable code.
2673
2674 2003-07-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2675
2676         PR c++/11513
2677         * cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): Use current_scope.
2678
2679 2003-07-23  Mark Mitchell  <mark@codesourcery.com>
2680
2681         PR c++/11645
2682         * cp-tree.h (accessible_base_p): Declare.
2683         * call.c (build_over_call): Use it.
2684         * search.c (accessible_base_p): New function, split out from ...
2685         (lookup_base): ... here.
2686
2687         PR c++/11517
2688         * call.c (build_conditional_expr): Use perform_implicit_conversion
2689         and error_operand_p.  Robustify.
2690         * typeck.c (build_unary_op): Use perform_implicit_conversion.
2691
2692 2003-07-23  Nathan Sidwell  <nathan@codesourcery.com>
2693
2694         PR c++/10953
2695         * parser.c (cp_parser_nested_name_specifier): Reset scope on
2696         failure.
2697         (cp_parser_elaborated_type_specifier): Likewise.
2698
2699 2003-07-22  Mark Mitchell  <mark@codesourcery.com>
2700
2701         Eliminate use of POINTER_TYPE for pointers-to-members.
2702         * call.c (standard_conversion): Rework pointer-to-member handling.
2703         Add comments.
2704         (add_builtin_candidate): Likewise.
2705         (resolve_scoped_fn_name): Remove.
2706         (build_conditional_expr): Rework pointer-to-member handling.
2707         (compare_ics): Likewise.
2708         * class.c (check_field_decls): Use TYPE_PTR_P.
2709         * cp-lang.c (cp_var_mod_type_p): Rework pointer-to-member
2710         handling.
2711         * cp-tree.h (SCALAR_TYPE_P): Use TYPE_PTR_TO_MEMBER_P.
2712         (TYPE_PTRMEM_P): Add comment.
2713         (TYPE_PTR_P): Simplify.
2714         (TYPE_PTROB_P): Correct definition.
2715         (TYPE_PTR_TO_MEMBER_P): New macro.
2716         (TYPE_PTRMEM_CLASS_TYPE): Adjust.
2717         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
2718         (resolved_scoped_fn_name): Remove declaration.
2719         (build_offset_ref): Change prototype.
2720         (resolve_offset_ref): Remove.
2721         (comp_target_types): Remove.
2722         * cvt.c (cp_convert_to_pointer): Rework pointer-to-member
2723         handling.
2724         (convert_to_reference): Use can_convert.
2725         (ocp_convert): Improve error handling.  Rework pointer-to-member
2726         handling.
2727         (perform_qualification_conversions): Rework pointer-to-member
2728         handling.
2729         * decl.c (build_ptrmem_type): Handle functions too.
2730         (create_array_type_for_decl): Remove OFFSET_TYPE error message.
2731         (grokdeclarator): Use OFFSET_TYPE for pointers to data members.
2732         (grokparms): Remove OFFSET_TYPE error message.
2733         * dump.c (cp_dump_tree): Rework pointer-to-member handling.
2734         * error.c (dump_type_prefix): Likewise.
2735         * expr.c (cplus_expand_constant): Use build_nop.
2736         * init.c (build_offset_ref): Add address_p parameter.  Fold in
2737         necessary bits from resolve_offset_ref.
2738         (resolve_offset_ref): Remove.
2739         * parser.c (cp_parser_postfix_expression): Remove special case
2740         code for OFFSET_TYPE.
2741         * pt.c (convert_nontype_argument): Rework pointer-to-member
2742         handling.
2743         (convert_template_argument): Likewise.
2744         (unify): Likewise.
2745         (invalid_nontype_parm_type_p): Likewise.
2746         (dependent_type_p_r): Likewise.
2747         * rtti.c (get_tinfo_decl): Remove OFFSET_TYPE special case.
2748         (target_incomplete_p_): Rework pointer-to-member
2749         handling.
2750         (get_pseudo_ti_init): Likewise.
2751         (get_pseudo_ti_desc): Likewise.
2752         * semantics.c (finish_qualified_id_expr): Adjust call to
2753         build_offset_ref.  Remove use of resolve_offset_ref.
2754         * tree.c (pod_type_p): Use TYPE_PTR_TO_MEMBER_P.
2755         * typeck.c (target_type): Use TYPE_PTRMEM_P.
2756         (type_unknown_p): Remove obsolete code about the time before
2757         non-dependent expressions were handled correctly.
2758         (qualify_type_recursive): Remove.
2759         (composite_pointer_type_r): New function.
2760         (composite_pointer_type): Use it.
2761         (merge_types): Remove dead comments.
2762         (comp_cv_target_types): Remove.
2763         (comp_target_types): Likewise.
2764         (comp_target_parms): Likewise.
2765         (cxx_sizeof_or_alignof_type): Remove OFFSET_TYPE error.
2766         (build_indirect_ref): Use TYPE_PTR_TO_MEMBER_P.
2767         (build_binary_op): Do not use of comp_target_types.
2768         (pointer_diff): Remove OFFSET_TYPE case.
2769         (build_unary_op): Adjust pointer-to-member handling.
2770         (unary_complex_lvalue): Likewise.
2771         (check_for_casting_away_constness): Add description parameter.
2772         (build_static_cast): Pass it.
2773         (build_reinterpret_cast): Use check_for_casting_away_constness.
2774         (build_const_cast): Adjust pointer-to-member handling.
2775         (build_c_cast): Likewise.
2776         (convert_for_assignment): Remove OFFSET_TYPE error message.
2777         (comp_ptr_ttypes_real): Adjust pointer-to-member handling.
2778         (comp_ptr_ttypes_reinterpret): Remove.
2779         (casts_away_constness_r): Adjust pointer-to-member handling.
2780         (casts_away_constness): Liekwise.
2781         (strip_all_pointer_quals): Remove.
2782         * typeck2.c (digest_init): Adjust pointer-to-member handling.
2783         (build_m_component_ref): Likewise.
2784
2785 2003-07-22  Wolfgang Bangerth  <bangerth@dealii.org>
2786
2787         * lex.c (unqualified_fn_lookup_error): Mention that the error
2788         message needs to be kept in synch with the manual.
2789
2790 2003-07-22  Nathan Sidwell  <nathan@codesourcery.com>
2791
2792         PR c++/11614
2793         * decl.c (grokdeclarator): An array member is only a flexible
2794         array member if the field itself is the array.
2795
2796 2003-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2797
2798         PR c++/10793
2799         * decl.c (xref_basetypes): Handle error_mark_node.
2800
2801 2003-07-22  Nathan Sidwell  <nathan@codesourcery.com>
2802
2803         * cp-tree.h (enum cp_lvalue_kind): Add clk_packed.
2804         * tree.c (lvalue_p_1): Set it.
2805         * class.c (check_field): Don't allow non-packed non-POD fields to
2806         be packed.
2807         * call.c (reference_binding): Need a temporary for all bitfield
2808         and packed fields.
2809         (convert_like_real): Check it is ok to make a temporary here.
2810
2811 2003-07-21  Nathan Sidwell  <nathan@codesourcery.com>
2812
2813         * cp-tree.h (hack_identifier): Remove.
2814         * method.c (hack_identifier): Remove.
2815         * semantics.c (finish_id_expression): Expand hack_identifier
2816         here. Simplify.
2817
2818 2003-07-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2819
2820         * call.c class.c decl.c decl2.c g++spec.c lex.c parser.c pt.c rtti.c
2821         semantics.c typeck.c: Remove unnecessary casts.
2822
2823 2003-07-18  Nathan Sidwell  <nathan@codesourcery.com>
2824
2825         * cp-tree.h (hack_identifier): Remove.
2826         * method.c (hack_identifier): Remove.
2827         * semantics.c (finish_id_expression): Expand hack_identifier
2828         here. Simplify.
2829
2830 2003-07-18  Nathan Sidwell  <nathan@codesourcery.com>
2831
2832         * cp-tree.h (finish_non_static_data_member): Add object param.
2833         * method.c (hack_identifier): Adjust.
2834         * pt.c (tsubst_copy_and_build) <COMPONENT_REF case>: Don't search
2835         again for a FIELD_DECL.
2836         * semantics.c (finish_non_static_data_member): Add object
2837         parameter. Always save the DECL in the COMPONENT_REF.
2838         * call.c (resolve_scoped_fn_name): Adjust.
2839
2840 2003-07-17  Zack Weinberg  <zack@codesourcery.com>
2841
2842         * pt.c (get_bindings): Make definition consistent with
2843         forward declaration.
2844
2845 2003-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2846
2847         PR c++/7809
2848         * friend.c (add_friend): Check access for member functions
2849         and templates.
2850
2851 2003-07-17  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2852
2853         PR c++/10668
2854         * typeck.c (build_class_member_access_expr): Improve diagnostic.
2855
2856 2003-07-16  Mark Mitchell  <mark@codesourcery.com>
2857
2858         PR c++/11547
2859         * cp-tree.h (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P): New
2860         macro.
2861         (DECL_PRETTY_FUNCTION_P): Use VAR_DECL_CHECK.
2862         * decl.c (duplicate_decls): Merge
2863         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
2864         * parser.c (cp_parser_postfix_expression): Adjust call to
2865         cp_parser_initializer_list and
2866         cp_parser_parenthesized_expression_list.
2867         (cp_parser_parenthesized_expression_list): Add non_constant_p.
2868         (cp_parser_new_placement): Adjust call to
2869         cp_parser_parenthesized_expression_list.
2870         (cp_parser_direct_new_declarator): Likewise.
2871         (cp_parser_conditional_expression): Remove.
2872         (cp_parser_constant_expression): Parse an assignment-expression,
2873         not a conditional-expression.
2874         (cp_parser_simple_declaration): Resolve expression/declaration
2875         ambiguity more quickly.
2876         (cp_parser_mem_initializer): Adjust call to
2877         cp_parser_parenthesized_expression_list.
2878         (cp_parser_init_declarator): Keep track of whether or not the
2879         initializer is a constant-expression.
2880         (cp_parser_initializer): Add non_constant_p parameter.
2881         (cp_parser_initializer_clause): Likewise.
2882         (cp_parser_initializer_list): Likewise.
2883         (cp_parser_attribute_list): Adjust call to
2884         cp_parser_parenthesized_expression_list.
2885         (cp_parser_functional_cast): Likewise.
2886         * pt.c (tsubst_decl): Copy
2887         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
2888         (tsubst_expr): Tweak use of DECL_PRETTY_FUNCTION_P.
2889         * semantics.c (finish_id_expression): Use
2890         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
2891
2892 2003-07-16  Neil Booth  <neil@daikokuya.co.uk>
2893
2894         * lang-options.h: Remove.
2895
2896 2003-07-16  Andrew Pinski  <pinskia@physics.uc.edu>
2897
2898         PR c/10962
2899         * class.c (field_decl_cmp): Remove.
2900         (resort_field_decl_cmp): Remove.
2901         (resort_sorted_fields): Remove.
2902         (add_fields_to_vec): Rename to ...
2903         (add_fields_to_record_type): this.
2904         (finish_struct_1): Change to be using
2905         sorted_fields_type's fields.
2906         * cp-tree.h (lang_decl): In lang_decl_u3
2907         change sorted_fields to be a pointer to
2908         sorted_fields_type.
2909         (resort_sorted_fields): Remove prototype.
2910         * search.c (lookup_field_1): Change to be using
2911         sorted_fields_type's fields.
2912
2913 2003-07-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2914
2915         PR c++/5421
2916         * decl.c (grokdeclarator): Handle TEMPLATE_ID_EXPR if friend
2917         is a member of other class.
2918         * friend.c (do_friend): Don't build TEMPLATE_DECL if friend
2919         is a specialization of function template.
2920
2921 2003-07-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2922
2923         PR c++/10903
2924         * pt.c (convert_nontype_argument): Fix thinko in diagnostic.
2925         Improve.
2926
2927 2003-07-15  Mark Mitchell  <mark@codesourcery.com>
2928
2929         * cp-tree.def (LOOKUP_EXPR): Remove.
2930         * cp-tree.h (cp_id_kind): Add CP_ID_KIND_UNQUALIFIED_DEPENDENT.
2931         (LOOKUP_EXPR_GLOBAL): Remove.
2932         (get_bindings): Remove.
2933         (is_aggr_type_2): Remove.
2934         * call.c (resolved_scoped_fn_name): Remove support for
2935         LOOKUP_EXPR.
2936         * decl.c (grokfndecl): Likewise.
2937         (grokdeclarator): Likewise.
2938         * error.c (dump_decl): Likewise.
2939         (dump_expr): Likewise.
2940         * friend.c (do_friend): Likewise.
2941         * init.c (build_offset_ref): Likewise.
2942         * lex.c (unqualified_fn_lookup_error): Use pedwarn.  Do not create
2943         LOOKUP_EXPRs
2944         * mangle.c (write_expression): Remove support for LOOKUP_EXPR.
2945         * parser.c (cp_parser_postfix_expression): Modify Koenig lookup
2946         test.
2947         * pt.c (get_bindings): Give it internal linkage.
2948         (check_explicit_specialization): Remove support for LOOKUP_EXPR.
2949         (lookup_template_function): Likewise.
2950         (for_each_tempalte_parm_r): Likewise.
2951         (tsubst_decl): Likewise.
2952         (tsubst_qualified_id): Handle template template parameters.
2953         (tsubst_copy): Remove support for LOOKUP_EXPR.
2954         (tsubst_copy_and_build): Likewise.
2955         (most_general_template): Likewise.
2956         (value_dependent_expression_p): Likewise.
2957         (type_dependent_expression_p): Note that IDENTIFIER_NODEs are
2958         always dependent.
2959         * semantics.c (perform_koenig_lookup): Do not create
2960         IDENTIFIER_NODEs.
2961         (finish_fname): Likewise.
2962         (finish_id_expression): Likewise.
2963         * tree.c (is_aggr_type_2): Remove.
2964
2965 2003-07-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2966
2967         PR c++/11531
2968         * typeck.c (check_return_expr): Fix thinko in diagnostic.
2969
2970 2003-07-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2971
2972         PR c++/10108
2973         * pt.c (tsubst_decl) <TEMPLATE_DECL>: Add a check for
2974         error_mark_node.
2975
2976 2003-07-14  Mark Mitchell  <mark@codesourcery.com>
2977
2978         PR c++/11509
2979         * pt.c (dependent_scope_ref_p): New function.
2980         (value_dependent_expression_p): Use it.
2981         (type_dependent_expression_p): Likewise.
2982
2983         * pt.c (tsubst_friend_function): Use reregister_specialization.
2984
2985         PR c++/7019
2986         * cp-tree.h (lookup_qualified_name): Adjust prototype.
2987         * decl.c (lookup_qualified_name): Add complain parameter.  Adjust
2988         call to is_aggr_type.
2989         * parser.c (cp_parser_lookup_name): Adjust call to
2990         lookup_qualified_name.
2991         * pt.c (tsubst_qualified_id): Likewise.
2992         (tsubst_copy_and_build): Likewise.
2993         * semantics.c (finish_qualified_id_expr): Deal with erroneous
2994         expressions.
2995
2996 2003-07-14  Gabriel Dos Reis <gdr@integrable-solutions.net>
2997
2998         PR c++/11510
2999         * call.c (op_error): Properly format  REALPART_EXPR and
3000         IMAGPART_EXPR.
3001         * error.c (dump_expr): Likewise.
3002
3003 2003-07-14  Gabriel Dos Reis <gdr@integrable-solutions.net>
3004
3005         * error.c (dump_expr): Handle EMPTY_CLASS_EXPR.
3006
3007 2003-07-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3008
3009         PR c++/5293
3010         * call.c (initialize_reference): Improve diagnostic.
3011
3012 2003-07-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3013
3014         PR c++/11154
3015         * pt.c (more_specialized_class): Add full_args parameter.
3016         (most_specialized_class): Adjust calls to more_specialized_class.
3017         * cp-tree.h (more_specialized_class): Adjust declaration.
3018
3019 2003-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
3020
3021         * lex.c (enum tree_node_kind): Delete.
3022
3023 2003-07-13  Mark Mitchell  <mark@codesourcery.com>
3024
3025         PR c++/11503
3026         * cp-tree.h (DECL_SELF_REFERENCE_P): New macro.
3027         (SET_DECL_SELF_REFERENCE_P): Likewise.
3028         * class.c (build_self_reference): Use SET_DECL_SELF_REFERENCE_P.
3029         * pt.c (tsubst_decl): Copy it.
3030         * search.c (lookup_base): Use DECL_SELF_REFERENCE_P.
3031
3032         * pt.c (reregister_specialization): Fix thinko in previous change.
3033
3034         * cp-tree.h (cp_id_kind): New type.
3035         (unqualified_name_lookup_error): Change prototype.
3036         (unqualified_fn_lookup_error): New function.
3037         (do_identifier): Remove.
3038         (do_scoped_id): Likewise.
3039         (tsubst_copy_and_build): Change prototype.
3040         (reregister_specialization): New function.
3041         (perform_koenig_lookup): Likewise.
3042         (finish_id_expression): Likewise.
3043         * call.c (build_method_call): Adjust call to
3044         unqualified_name_lookup_error.
3045         * decl.c (duplicate_decls): Use reregister_specialization.
3046         * lex.c (is_global): Remove.
3047         (unqualified_name_lookup_error): Return a value.
3048         (do_identifier): Remove.
3049         (do_scoped_id): Likewise.
3050         (identifier_typedecl_value): Remove.
3051         (unqualified_fn_lookup_error): New function.
3052         * parser.c (cp_parser_id_kind): Remove.
3053         (cp_parser_non_constant_id_expression): Remove.
3054         (cp_parser_primary_expression): Use finish_id_expression.
3055         (cp_parser_class_or_namespace_name): Use cp_id_kind, not
3056         cp_parser_id_kind.
3057         (cp_parser_postfix_expression): Use perform_koenig_lookup.
3058         (cp_parser_template_argument): Use cp_id_kind.
3059         (cp_parser_fold_non_dependent_expr): Adjust call to
3060         tsubst_copy_and_build.
3061         * pt.c (unregister_specialization): Rename to ...
3062         (reregister_specialization): This.
3063         (tsubst_friend_function): Use it.
3064         (maybe_fold_nontype_arg): Adjust call to tsubst_copy_and_build.
3065         (tsubst_qualified_id): Likewise.
3066         (tsubst_expr): Likewise.
3067         (tsubst_copy_and_build): Add function_p parameter.  Use
3068         finish_id_expression.  Introduce RECUR macro.
3069         (tsubst_non_call_postfix_expression): New function.
3070         (regenerate_decl_from_template): Use reregister_specialization.
3071         * semantics.c (perform_koenig_lookup): New function.
3072         (finish_id_expression): Likewise.
3073
3074 2003-07-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3075
3076         * pt.c (push_access_scope_real): Remove.
3077         (push_access_scope): Move code from push_access_scope_real.
3078         (pop_access_scope): Don't check for TEMPLATE_DECL.
3079         (instantiate_template): Defer access checking during template
3080         substitution.
3081         (regenerate_decl_from_template): Tidy.
3082
3083 2003-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
3084
3085         PR c++/11437
3086         * operators.def: Add definitions for __imag__, __real__.
3087
3088 2003-07-11  Nathan Sidwell  <nathan@codesourcery.com>
3089
3090         PR c++/11050
3091         * parser.c (cp_parser_expression_list): Rename to ...
3092         (cp_parser_parenthesized_expression_list): ... here. Add attribute
3093         parameter, parse the surounding parentheses.
3094         (cp_parser_skip_to_closing_parenthesis): Add recover and or_comma
3095         parameters. Return int.
3096         (cp_parser_skip_to_closing_parenthesis or comma): Remove.
3097         (cp_parser_postfix_expression): Adjust function call parsing.
3098         (cp_parser_new_placement): Adjust.
3099         (cp_parser_new_initializer): Likewise.
3100         (cp_parser_cast_expression): Likewise.
3101         (cp_parser_selection_statement): Likewise.
3102         (cp_parser_mem_initializer): Likewise.
3103         (cp_parser_asm_definition): Likewise.
3104         (cp_parser_init_declarator): Likewise.
3105         (cp_parser_declarator): Make
3106         cdtor_or_conv_p an int ptr.
3107         (cp_parser_direct_declarator): Likewise. Check for a parameter
3108         list on cdtors & conv functions.
3109         (cp_parser_initializer): Adjust.
3110         (cp_parser_member_declaration): Adjust.
3111         (cp_parser_attribute_list): Move code into
3112         cp_parser_parens_expression_list.
3113         (cp_parser_functional_cast): Adjust.
3114         * pt.c (type_dependent_expression_p): Erroneous expressions are
3115         non-dependent.
3116
3117 2003-07-11  Geoffrey Keating  <geoffk@apple.com>
3118
3119         * decl.c (cp_finish_decl): Handle 'used' attribute.
3120
3121         * cp-lang.c (c_reset_state): New dummy routine.
3122         * cp-tree.h (finish_file): Move prototype to c-common.h.
3123         * parser.c (c_parse_file): Rename from yyparse; don't call finish_file.
3124
3125 2003-07-11  Mark Mitchell  <mark@codesourcery.com>
3126
3127         PR c++/8327
3128         * pt.c (tsubst_qualified_id): Implement suggested resolution for
3129         Core Issue 2.
3130         (type_dependent_expression_p): Likewise.
3131
3132 2003-07-10  Mark Mitchell  <mark@codesourcery.com>
3133
3134         * typeck.c (build_binary_op): Do not warn about signed
3135         vs. unsigned comparisons in the bodies of templates.
3136
3137         PR c++/9411
3138         * parser.c (cp_parser_postfix_expression): Check dependency of
3139         functions.
3140
3141 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
3142
3143         PR c++/10032
3144         * decl.c (cxx_init_decl_processing): With -pedantic, pedwarns are
3145         still errors.
3146
3147         PR c++/10527
3148         * error.c (decl_to_string): Do not print default argument
3149         expressions.
3150
3151         * cp-tree.h (break_out_calls): Remove declaration.
3152         * tree.c (break_out_calls): Remove.
3153         * typeck.c (build_modify_expr): Avoid invalid sharing of trees.
3154
3155 2003-07-09  Nathan Sidwell  <nathan@codesourcery.com>
3156
3157         PR c++ 9483
3158         * class.c (check_field_decls): Pass DECL_NAME to constructor_name_p.
3159         * decl2.c (constructor_name_p): Avoid repeated constructor_name
3160         calls.
3161         * decl.c (grokdeclarator): Refactor ctor/dtor detection.
3162
3163 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
3164
3165         * typeck.c (build_x_unary_op): Take note of the fact that
3166         PREINCREMENT_EXPR and POSTINCREMENT_EXPR are binary operations on
3167         trees.
3168
3169         * parser.c (cp_parser_primary_expression): Preserve the form of
3170         qualified expressions in templates, even if they are not
3171         dependent.
3172         * pt.c (convert_nontype_argument): Handle non-dependent SCOPE_REFs.
3173         (tsubst_qualified_id): Likewise.
3174         * search.c (accessible_p): Treat everything in the body of a
3175         template as accessible.
3176
3177 2003-07-08  Mark Mitchell  <mark@codesourcery.com>
3178
3179         * cp-tree.def (NON_DEPENDENT_EXPR): New node.
3180         * cp-tree.h (build_call_from_tree): Remove.
3181         (build_member_call): Likewise.
3182         (dependent_template_arg_p): Remove.
3183         (any_dependent_template_arguments_p): New function.
3184         (dependent_template_id_p): Likewise.
3185         (any_type_dependent_arguments_p): Likewise.
3186         (build_non_dependent_expr): Likewise.
3187         (build_non_dependent_args): Likewise.
3188         (build_x_compound_expr): Adjust prototype.
3189         * call.c (build_new_method_call): Handle non-dependent expressions
3190         correctly.
3191         * decl2.c (grok_array_decl): Likewise.
3192         (build_offset_ref_call_from_tree): Likewise.
3193         (build_call_from_tree): Remove.
3194         * error.c (dump_decl): Handle NON_DEPENDENT_EXPR.
3195         (dump_expr): Likewise.
3196         * init.c (build_member_call): Remove.
3197         * mangle.c (write_expression): Update handling for template-ids.
3198         * parser.c (cp_parser_primary_expression): Use
3199         any_dependent_template_arguments_p.  Update constant-expression
3200         handling.
3201         (cp_parser_postfix_expression): Use
3202         any_type_dependent_arguments_p.  Simplify call processing.
3203         (cp_parser_unary_expression): Simplify.
3204         (cp_parser_expression): Adjust for changes to
3205         build_x_compound_expr.
3206         (cp_parser_template_argument): Implement standard-conforming
3207         parsing of non-type template arguments.
3208         (cp_parser_direct_declarator): Use
3209         cp_parser_fold_non_dependent_expr.
3210         (cp_parser_fold_non_dependent_expr): New function.
3211         (cp_parser_next_token_ends_template_argument_p): Likewise.
3212         * pt.c (convert_template_argument): Do not call
3213         maybe_fold_nontype_arg.
3214         (tsubst_baselink): Likewise.
3215         (tsubst_copy_and_build): Share common code.  Make sizeof/alignof
3216         processing work correctly for non-dependent expressions.  Adjust
3217         handling of COMPOUND_EXPR.  Simplify call processing.
3218         (value_dependent_expression_p): Deal with functional casts and
3219         sizeof/alignof correctly.
3220         (type_dependent_expression_p): Handle overloaded functions.
3221         (any_type_dependent_arguments_p): New function.
3222         (any_dependent_template_arguments_p): Likewise.
3223         (dependent_template_p): Treat SCOPE_REFs as dependent.
3224         (dependent_template_id_p): Simplify.
3225         (build_non_dependent_expr): New function.
3226         (build_non_dependent_args): Likewise.
3227         * semantics.c (finish_stmt_expr): Don't make dependent
3228         statement-expresions have void type.
3229         (finish_call_expr): Handle non-dependent expressions
3230         correctly.
3231         * tree.c (lvalue_p_1): Treat NON_DEPENDENT_EXPRs as lvalues.
3232         * typeck.c (cxx_sizeof_or_alignof_type): Give the expression
3233         type size_t, even in templates.
3234         (expr_sizeof): Likewise.
3235         (finish_class_member_access_expr): Handle non-dependent expressions
3236         correctly.
3237         (build_x_indirect_ref): Likewise.
3238         (build_x_binary_op): Likewise.
3239         (build_x_unary_op): Likewise.
3240         (build_x_conditional_expr): Likewise.
3241         (build_x_compound_expr): Likewise.
3242         * typeck2.c (build_x_arrow): Likewise.
3243
3244 2003-07-09  Jan Hubicka  <jh@suse.cz>
3245
3246         * cp-lang.c (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): New.
3247         * decl.c (duplicate_decls): Use DECL_ESTIMATED_INSNS.
3248         (start_function): Use DECL_ESTIMATED_INSNS.
3249         * optimize.c (maybe_clone_body): Use DECL_ESTIMATED_INSNS.
3250
3251         * decl2.c (maybe_emit_vtables): Fix marking vtables as needed in
3252         unit-at-a-time
3253
3254 2003-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3255
3256         PR c++/11030
3257         * pt.c (instantiate_class_template): Don't call xref_tag to
3258         inject name when the friend class is a specialization.
3259
3260 2003-07-07  Mark Mitchell  <mark@codesourcery.com>
3261
3262         * cp-tree.h (build_scoped_method_call): Remove.
3263         (lookup_qualified_name): Remove parameter.
3264         (tsubst_copy_and_build): Declare.
3265         (finish_qualified_object_call_expr): Remove.
3266         (check_accessibility_of_qualified_id): New function.
3267         (finish_qualified_id_expr): Likewise.
3268         (non_reference): Likewise.
3269         (build_expr_from-tree): Remove.
3270         * call.c (non_reference): Remove.
3271         (build_scoped_method_call): Likewise.
3272         (build_method_call): Use error_operand_p.  Assert that we are not
3273         processing a template.
3274         (standard_conversion): Use non_reference.
3275         * class.c (build_vtbl_entry_ref): Likewise.
3276         (build_vtbl_ref_1): Likewise.
3277         * cvt.c (build_expr_type_conversion): Use non_reference.
3278         * decl.c (lookup_qualified_name): Remove flags parameter.
3279         (grok_op_properties): Use non_reference.
3280         * decl2.c (grok_array_decl): Likewise.
3281         (build_expr_from_tree): Remove.
3282         (build_offset_ref_call_from_tree): Update comment.
3283         * error.c (parm_to_string): Call reinit_global_formatting_buffer.
3284         * except.c (prepare_eh_types): Use non_reference.
3285         (can_convert_eh): Likewise.
3286         * init.c (build_dtor_call): Avoid using build_method_call.
3287         * mangle.c (write_template_param): Remove misleading comment.
3288         * method.c (locate_copy): Use non_reference.
3289         * parser.c (cp_parser_scope_through_which_access_occurs): Remove.
3290         (cp_parser_primary_expression): Do not create SCOPE_REFs is
3291         non-dependent contexts.
3292         (cp_parser_postfix_expression): Use finish_qualified_id_expr.
3293         (cp_parser_direct_declarator): Use tsubst_copy_and_build, not
3294         build_expr_from_tree.
3295         (cp_parser_lookup_name): Adjust call to lookup_qualified_name.
3296         Use check_accessibility_of_qualified_id.
3297         * pt.c (maybe_fold_nontype_arg): Use tsubst_copy_and_build, not
3298         build_expr_from_tree.
3299         (tsubst_baselink): New function.
3300         (tsubst_qualified_id): Likewise.
3301         (tsubst_copy): Use them.  Remove support for METHOD_CALL_EXPR.
3302         (tsubst_expr): Adjust call to lookup_qualified_name.
3303         (tsubst_copy_and_build): Handle SCOPE_REFs specially.  Adjust
3304         handling of CALL_EXPRs.
3305         (value_dependent_expression_p): Use INTEGRAL_OR_ENUMERATION_TYPE_P.
3306         * rtti.c (get_tinfo_decl_dynamic): Use non_reference.
3307         * search.c (check_final_overrider): Likewise.
3308         * semantics.c (check_accessibility_of_qualified_id): New function.
3309         (finish_qualified_object_call_expr): Remove.
3310         * typeck.c (target_type): Use non_reference.
3311         (cxx_sizeof_or_alignof_type): Likewise.
3312         (dubious_conversion_warnings): Likewise.
3313         (convert_for_initialization): Likewise.
3314         (non_reference): New function.
3315
3316 2003-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3317
3318         * decl.c (print_binding_level, print_other_binding_stack,
3319         print_binding_stack): Merge uses of HOST_PTR_PRINTF with adjacent
3320         stdio calls.
3321         * ptree.c (cxx_print_decl, cxx_print_binding): Likewise.
3322
3323 2003-07-07  Andreas Jaeger  <aj@suse.de>
3324
3325         * friend.c: Convert to ISO C90 prototypes.
3326
3327         * Make-lang.in ($(srcdir)/cp/cfns.h): Use ANSI-C as output
3328         language.
3329         * cfns.h: Regenerate.
3330
3331         * typeck.c: Convert remaining prototypes to ISO C90.
3332         * search.c: Likewise.
3333
3334         * decl2.c (build_expr_from_tree): Convert prototype to ISO C90.
3335         * semantics.c (expand_or_defer_fn): Likewise
3336         * mangle.c (discriminator_for_string_literal): Likewise.
3337         * g++spec.c (lang_specific_driver): Likewise.
3338
3339         * search.c (lookup_base_r): Remove unused variable.
3340
3341 2003-07-07  Nathan Sidwell  <nathan@codesourcery.com>
3342
3343         * semantics.c: (genrtl_try_block) Adjust emit_line_note
3344         calls.
3345
3346 2003-07-07  Andreas Jaeger  <aj@suse.de>
3347
3348         * search.c (lookup_base_r): Remove unused variable.
3349
3350 2003-07-06  Michael Chastain  <mec@shout.net>
3351
3352         PR debug/10055
3353         * lex.c (cxx_init): Call push_srcloc and pop_srcloc rather than
3354         assigning to input_filename directly.
3355
3356 2003-07-06  Kazu Hirata  <kazu@cs.umass.edu>
3357
3358         * call.c: Fix comment formatting.
3359         * class.c: Likewise.
3360         * cp-tree.h: Likewise.
3361         * decl.c: Likewise.
3362         * decl2.c: Likewise.
3363         * error.c: Likewise.
3364         * method.c: Likewise.
3365         * name-lookup.c: Likewise.
3366         * parser.c: Likewise.
3367         * pt.c: Likewise.
3368         * rtti.c: Likewise.
3369         * search.c: Likewise.
3370         * typeck.c: Likewise.
3371
3372 2003-07-06  Mark Mitchell  <mark@codesourcery.com>
3373
3374         PR c++/11345
3375         * search.c (lookup_base_r): Remove is_non_public and
3376         within_current_scope parameters.  Remove other dead code.
3377         (lookup_base): Adjust call to lookup_base_r.
3378         (adjust_result_of_qualified_name_lookup): Improve comment.
3379         * semantics.c (finish_call_expr): Use maybe_dummy_object.
3380
3381 2003-07-06  Neil Booth  <neil@daikokuya.co.uk>
3382
3383         * cp-lang.c (LANG_HOOKS_HANDLE_FILENAME,
3384         LANG_HOOKS_MISSING_ARGUMENT): Override.
3385
3386 2003-07-05  Mark Mitchell  <mark@codesourcery.com>
3387
3388         PR c++/11431
3389         * typeck.c (build_static_cast): Check for reference conversions
3390         earlier.
3391
3392 2003-07-04  Mark Mitchell  <mark@codesourcery.com>
3393
3394         * cp-tree.h (perform_integral_promotions): Declare.
3395         * call.c (build_addr_func): Use decay_conversion.
3396         (convert_arg_to_ellipsis): Likewise.  Remove misleading comment.
3397         (convert_for_arg_passing): Use perform_integral_promotions.
3398         * cvt.c (build_expr_type_conversion): Use decay_conversion.
3399         (type_promotes_to): Do not return a cv-qualified type.
3400         * decl.c (grok_reference_init): Fix formatting.
3401         (get_atexit_node): Use decay_conversion.
3402         (build_enumerator): Use perform_integral_promotions.
3403         * init.c (build_vec_init): Use decay_conversion.
3404         * semantics.c (finish_expr_stmt): Likewise.
3405         (finish_switch_cond): Use perform_integral_promotions.
3406         * typeck.c (default_conversion): Likewise.
3407         (perform_integral_promotions): New function.
3408         (build_indirect_ref): Use decay_conversion.
3409         (build_array_ref): Use perform_integral_promotions.
3410         (convert_arguments): Use decay_conversion.
3411         (build_unary_op): Use perform_integral_promotions.
3412         (build_c_cast): Use decay_conversion.
3413         (build_modify_expr): Likewise.
3414         (convert_for_initialization): Likewise.
3415         * typeck2.c (build_x_arrow): Likewise.
3416
3417 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
3418
3419         * call.c: Fix comment typos.
3420         * class.c: Likewise.
3421         * cp-tree.h: Likewise.
3422         * cvt.c: Likewise.
3423         * decl2.c: Likewise.
3424         * decl.c: Likewise.
3425         * init.c: Likewise.
3426         * mangle.c: Likewise.
3427         * parser.c: Likewise.
3428         * pt.c: Likewise.
3429         * search.c: Likewise.
3430         * semantics.c: Likewise.
3431         * tree.c: Likewise.
3432         * typeck.c: Likewise.
3433
3434 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
3435
3436         * parser.c (cp_lexer_read_token): No need to handle string
3437         constant concatenation.
3438
3439 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3440
3441         * cp-tree.h (GCC_DIAG_STYLE, ATTRIBUTE_GCC_CXXDIAG): Define.
3442         (cp_error_at, cp_warning_at, cp_pedwarn_at): Mark with
3443         ATTRIBUTE_GCC_CXXDIAG.
3444
3445 2003-07-03  Mark Mitchell  <mark@codesourcery.com>
3446
3447         * call.c (build_addr_func): Handle bound pointers-to-members.
3448         (build_method_call): Do not call resolve_offset_ref.
3449         (implicit_conversion): Likewise.
3450         (resolve_scoped_fn_name): Use finish_non_static_data_member, not
3451         resolve_offset_ref.
3452         (resolve_args): Do not call resolve_offset_ref.
3453         (build_conditional_expr): Likewise.
3454         (build_new_method_call): Likewise.
3455         * cp-tree.def (OFFSET_REF): Update documentation.
3456         * cvt.c (cp_convert_to_pointer): Update handling of conversions from
3457         pointers to members to pointers.
3458         (ocp_convert): Do not call resolve_offset_ref.
3459         (convert_to_void): Likewise.
3460         (build_expr_type_conversion): Likewise.
3461         * decl2.c (delete_sanity): Likewise.
3462         * init.c (resolve_offset_ref): Simplify greatly.
3463         (build_vec_delete): Do not call resolve_offset_ref.
3464         * parser.c (cp_parser_postfix_expression): Call resolve_offset_ref
3465         if appropriate.
3466         (cp_parser_unary_expression): Use
3467         cp_parser_simple_cast_expression.
3468         (cp_parser_delete_expression): Likewise.
3469         (cp_parser_cast_expression): Likewise.
3470         (cp_parser_pm_expression): Use cp_parser_binary_op.
3471         (cp_parser_simple_cast_expression): New function.
3472         * rtti.c (build_dynamic_cast_1): Do not call resolve_offset_ref.
3473         * semantics.c (finish_increment_expr): Likewise.
3474         (finish_typeof): Likewise.
3475         * tree.c (lvalue_p_1): Do not handle OFFSET_REF.
3476         * typeck.c (require_complete_type): Do not handle OFFSET_REFs.
3477         (decay_conversion): Do not call resolve_offset_ref.
3478         (finish_class_member_access_expr): Likewise.
3479         (convert_arguments): Likewise.
3480         (build_x_binary_op): Handle DOTSTAR_EXPR.
3481         (condition_conversion): Do not call resolve_offset_ref.
3482         (unary_complex_lvalue): Likewise.
3483         (build_static_cast): Likewise.
3484         (build_reinterpret_cast): Likewise.
3485         (build_const_cast): Likewise.
3486         (build_c_cast): Likewise.
3487         (build_modify_expr): Likewise.
3488         (convert_for_assignment): Likewise.
3489         (convert_for_initialization): Likewise.
3490         * typeck2.c (build_x_arrow): Likewise.
3491         (build_m_component_ref): Simplify.
3492
3493         * call.c (build_scoped_method_call): Use convert_to_void.
3494         (build_method_call): Likewise.
3495         * class.c (check_field_decls): Remove dead code.
3496         * cvt.c (convert_from_reference): Remove OFFSET_TYPE handling.
3497         * decl2.c (grok_array_decl): Remove dead code.
3498         (arg_assoc_type): Avoid relying on POINTER_TYPE over OFFSET_TYPE
3499         as pointer-to-member representation.
3500         * init.c (build_offset_ref): Tidy.
3501         (build_vec_delete_1): Use convert_to_void.
3502         * mangle.c (write_type): Avoid relying on POINTER_TYPE over OFFSET_TYPE
3503         as pointer-to-member representation.
3504
3505 2003-07-03  Nathan Sidwell  <nathan@codesourcery.com>
3506
3507         PR c++/9162
3508         * decl.c (grokdeclarator): Return friend decls, not
3509         void_type_node.
3510         * decl2.c (grokfield): Alter friend decl check.
3511         * parser.c (struct cp_parser): Document default_arg chain on
3512         unparsed_functions_queue.
3513         (cp_parser_save_default_args): New.
3514         (cp_parser_init_declarator, cp_parser_function_definition,
3515         cp_parser_member_declaration): Call it.
3516         (cp_parser_class_specifier): Remove unused variable. Alter
3517         processing of unparsed_functions_queue.
3518
3519 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3520
3521         * class.c (add_method, check_field_decl): Fix format specifier.
3522         * decl.c (duplicate_decls, pushdecl, check_goto,
3523         fixup_anonymous_aggr, maybe_commonize_var, grokdeclarator,
3524         start_enum): Likewise.
3525         * decl2.c (ambiguous_decl): Likewise.
3526         * pt.c (redeclare_class_template): Likewise.
3527
3528 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
3529
3530         PR c++/10219
3531         * pt.c (type_unification_real): Don't unify exprs of error type.
3532         * tree.c (error_type): Don't die on error_type.
3533
3534         PR c++/9779
3535         * decl2.c (arg_assoc_class): Don't die on NULL type.
3536         * typeck.c (type_unknown_p): Don't die on untyped expressions.
3537
3538 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
3539
3540         PR c++/6949
3541         * decl2.c (grokfield): Create TEMPLATE_DECLs for methods in local
3542         classes.
3543
3544 2003-07-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3545
3546         * error.c (locate_error): %P takes an `int', not a `tree'.
3547
3548 2003-07-02  Jan Hubicka  <jh@suse.cz>
3549
3550         * decl2.c (defer_fn): Set DECL_DEFER_OUTPUT.
3551         (finish-file): Do not process function with DECL_DEFER_OUTPUT clear;
3552         clear DECL_DEFER_OUTPUT once function is processed; avoid flags
3553         massaging.
3554
3555         * cp-tree.h (DECL_NEEDED_P): Support unit-at-a-time
3556         (expand_or_defer_fn): Declare.
3557         (lower_function): Declare.
3558         * decl.c (start_cleanup_fn): Use expand_or_defer_fn.
3559         * decl2.c: Include cgraph.h and varpool.h
3560         (maybe_emit_vtables):  Make explicit instantations as needed.
3561         (mark_member_pointers, lower_function): New functions.
3562         (finish_file): Do unit-at-a-time.
3563         * method.c (synthesize_method): Use expand_or_defer_fn.
3564         * optimize.c (maybe_clone_body): Use expand_or_defer_fn.
3565         * parser.c (cp_parser_function_definition_after_decl): Use
3566         expand_or_defer_fn.
3567         * pt.c (instantiate_decl): Likewise.
3568         * semantics.c: Include cgraph.h
3569         (expand_or_defer_fn): Break out from ...
3570         (expand_body): ... here; deal with unit-at-a-time.
3571         * cp-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION,
3572         LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION): Define.
3573
3574 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
3575
3576         * call.c (resolve_scoped_fn_name): Return error_mark_node for
3577         erroneous cases.
3578
3579 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
3580
3581         PR c++/11149
3582         * call.c (resolve_scoped_fn_name): Check that the qualifying scope
3583         is a class type.
3584
3585 2003-07-01  Giovanni Bajo  <giovannibajo@libero.it>
3586
3587         PR c++/8046
3588         * error.c (dump_decl): Handle BIT_NOT_EXPR as
3589         pseudo destructor calls.
3590
3591 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
3592
3593         * cp-tree.h (define_label): Replace filename and lineno
3594         arguments with a location_t.
3595         * decl.c (pop_label): Adjust define_label call.
3596         (define_label): Replace filename and lineno arguments with a
3597         location_t.
3598         * semantics.c (finish_label): Adjust define_label call.
3599
3600 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
3601
3602         PR c++/9559
3603         * decl2.c (grokfield): Do not build NOP_EXPRs around the
3604         error_mark_node.
3605
3606 2003-06-30  Neil Booth  <neil@daikokuya.co.uk>
3607
3608         * Make-lang.in: Update.
3609         * cp-lang.c (c_language): Define.
3610         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
3611         * cp-tree.h (cxx_init_options): Remove.
3612         * lex.c: Don't include diagnostic.h.
3613         (cxx_init_options): Remove.
3614
3615 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
3616
3617         PR c++/4933
3618         * error.c (dump_expr): Support correctly the COMPOUND_EXPR
3619         tree generated within a template. Use dump_expr to dump an
3620         expression sizeof.
3621
3622 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
3623
3624         * mangle.c (write_expression): Exit gracefully when trying to
3625         mangle a CALL_EXPR.
3626
3627 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
3628
3629         PR c++/10750
3630         * parser.c (cp_parser_primary_expression): A VAR_DECL with a
3631         (value- or type-) dependent expression as DECL_INITIAL is a
3632         valid constant-expression (at parser time).
3633
3634 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
3635
3636         PR c++/11106
3637         * error.c (dump_decl): Call dump_decl to dump the DECL_NAME for a
3638         USING_DECL, instead of print_tree_identifier.
3639
3640 2003-06-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3641
3642         * cp-tree.h (language_to_string): Adjust declaration.
3643         * dump.c (cp_dump_tree): Adjust usage.
3644         * error.c (dump_char): Use output_formatted_scalar. Tidy.
3645         (parm_to_string): Lose unused parameter.  Tidy.
3646         (expr_to_string): Likewise.
3647         (code_to_string): Likewise.
3648         (language_to_string): Likewise.
3649         (op_to_string): Likewise.
3650         (assop_to_string): Likewise.
3651         (digit_buffer): Remove.
3652         (dump_type): Format builtin vector type as __vector__.
3653
3654 2003-06-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3655
3656         * error.c (print_integer): Remove.
3657         (dump_type_suffix): Adjust.
3658         (dump_expr): Likewise.
3659
3660 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
3661
3662         * error.c (print_instantiation_partial_context): Take a
3663         location_t.
3664         (print_instantiation_full_context): Adjust.
3665         (print_instantiation_context): Adjust.
3666
3667         * cp-tree.h (cp_line_of, cp_file_of): Remove.
3668         * error.c (cp_line_of, cp_file_of): Merge into ...
3669         (location_of): ... here. Make static, return a location_t.
3670         (cp_error_at, cp_warning_at, cp_pedwarn_at): Adjust.
3671
3672 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
3673
3674         PR c++/10784
3675         * call.c (joust): Move warn_conversion check outwards.
3676
3677 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
3678
3679         * decl.c (build_typename_type)
3680         * mangle.c (write_template_template_arg)
3681         * parser.c (cp_parser_scope_through_which_access_occurs)
3682         * pt.c (push_access_scope_real, push_access_scope, pop_access_scope)
3683         * repo.c (get_base_filename)
3684         * semantics.c (maybe_convert_cond):
3685         Mark the definition static, matching the forward declaration.
3686
3687 2003-06-27  Mark Mitchell  <mark@codesourcery.com>
3688
3689         PR c++/10468
3690         * pt.c (tsubst): Handle qualified TYPEOF_TYPEs correctly.
3691
3692 2003-06-27  Mark Mitchell  <mark@codesourcery.com>
3693
3694         PR c++/10796
3695         * decl.c (finish_enum): Implement DR377.
3696
3697         * decl.c (cp_finish_decl): Don't make variables with reference
3698         type readonly while they are being initialized.
3699
3700 2003-06-26  Mark Mitchell  <mark@codesourcery.com>
3701
3702         PR c++/11332
3703         * typeck.c (build_static_cast): Avoid returning expressions with
3704         reference type.
3705
3706 2003-06-26  Nathan Sidwell  <nathan@codesourcery.com>
3707
3708         * call.c (build_op_delete_call): Use strip_array_call. Correct
3709         error message to say 'delete' or 'delete[]'.
3710
3711 2003-06-26  Giovanni Bajo  <giovannibajo@libero.it>
3712
3713         PR c++/8266
3714         * pt.c (check_explicit_specialization): When looking up a
3715         template function from an identifier outside class-scope, bind
3716         it to CP_DECL_CONTEXT.
3717
3718 2003-06-25  Mark Mitchell  <mark@codesourcery.com>
3719
3720         PR c++/10990
3721         * search.c (lookup_base_r): Rely on accessible_p, rather than
3722         trying to emulate that logic here.
3723
3724         PR c++/10931
3725         * call.c (convert_like): Pass issue_conversion_warnings.
3726         (convert_like_with_context): Likewise.
3727         (convert_like_real): Add issue_conversion_warnings parameter.
3728         (perform_direct_initialization_if_possible): New function.
3729         * cp-tree.h (perform_direct_initialization_if_possible): Declare it.
3730         * typeck.c (check_for_casting_away_constness): New function.
3731         (build_static_cast): Rewrite.
3732
3733 2003-06-24  Nathan Sidwell  <nathan@codesourcery.com>
3734
3735         * call.c (enforce_access): Assert we get a binfo.
3736         (build_op_delete_call): Pass a binfo to
3737         perform_or_defer_access_check.
3738         * class.c (alter_access): Likewise.
3739         * decl.c (make_typename_type): Likewise.
3740         (make_unbound_class_template): Likewise.
3741         * lex.c (do_identifier): Likewise.
3742         * method.c (hack_identifier): Likewise.
3743         * parser.c (cp_parser_lookup_name): Likewise.
3744         * search.c (lookup_member): Likewise. Move IDENTIFIER_CLASS_VALUE
3745         test.
3746         * semantics.c (finish_non_static_data_member): Likewise.
3747         (perform_or_defer_access_check): Expect a binfo.
3748         * typeck.c (comptypes): Expect types.
3749
3750         * mangle.c (find_substitution): Don't pass a non-type to same_type_p
3751         * friend.c (make_friend_class): Likewise.
3752         * pt.c (check_default_tmpl_args): Likewise.
3753         (lookup_template_class): Likewise.
3754
3755 2003-06-24  Jan Hubicka  <jh@suse.cz>
3756
3757         * method.c (thunk_labelno): Move outside ifdef block to make garbage
3758         collector happy.
3759
3760 2003-06-24  Jan Hubicka  <jh@suse.cz>
3761
3762         * class.c (build_vtable): Make vtables.
3763         * cp-tree.h (DECL_VTABLE_OR_VTT_P): New macro.
3764         * decl2.c (output_vtable_inherit): Rename to ...
3765         (prepare_assemble_variable): ... this one; change interface.
3766         (maybe_emit_vtables): Do not call output_vtable_inherit.
3767         * cp-lang.c (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): Define.
3768         * cp-tree.h (prepare_assemble_variable): New.
3769
3770 2003-06-23  Andrew Pinski <pinskia@physics.uc.edu>
3771
3772         * method.c: add prototype for make_alias_for_thunk.
3773         (thunk_labelno, make_alias_for_thunk): only define
3774         if ASM_OUTPUT_DEF is defined.
3775
3776 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
3777
3778         * method.c (thunk_labelno): New variable.
3779         (make_alias_for_thunk): New function.
3780         (use_thunk): Use it if defined ASM_OUTPUT_DEF.  Put the thunk
3781         into the same section as the function it is calling.
3782         Include gt-cp-method.h.
3783         * Make-lang.in (gt-cp-method.h): Depend on s-gtype.
3784         (cp/method.o): Depend on gt-cp-method.h.
3785         * config-lang.in (gtfiles): Add $(srcdir)/cp/method.c.
3786
3787 2003-06-23  Jan Hubicka  <jh@suse.cz>
3788
3789         * decl.c (register_dtor_fn): Mark cleanup as used.
3790         * decl2.c (mark_vtable_entries): Skip nops.
3791         * rtti.c (get_tinfo_ptr): Mark tinfo as used.
3792         (build_dynamic_cast_1): Likewise.
3793         (tinfo_base_init): Likewise.
3794         (emit_tinfo_decl): Likewise.
3795
3796 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
3797
3798         * mangle.c (hash_type): Val is the TREE_LIST itself, not a pointer
3799         to it.
3800
3801 2003-06-21  Gabriel Dos Reis <gdr@integrable-solutions.net>
3802
3803         PR c++/10784
3804         * call.c (joust): Warn about choosing conversion sequence only if
3805         -Wconversion.
3806
3807 2003-06-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3808
3809         PR c++/10864
3810         * call.c (op_error): Tidy.
3811         * error.c (dump_expr): Properly format 'T()' when T is an
3812         aggregate type.
3813
3814 2003-06-21  Gabriel Dos Reis <gdr@integrable-solutions.net>
3815
3816         PR c++/10915
3817         * decl.c (grok_op_properties): Warn possible confusing conversion
3818         only if -Wconversion.
3819
3820 2003-06-20  Mark Mitchell  <mark@codesourcery.com>
3821
3822         PR c++/10749
3823         * parser.c (cp_parser_class_head): See through dependent names
3824         when parsing a class-head.
3825
3826         PR c++/10845
3827         * pt.c (try_class_unification): Correct handling of member class
3828         templates.
3829
3830 2003-06-20  Nathan Sidwell  <nathan@codesourcery.com>
3831
3832         * semantics.c (genrtl_finish_function): Adjust
3833         expand_function_end call.
3834
3835 2003-06-19  Mark Mitchell  <mark@codesourcery.com>
3836
3837         PR c++/10939
3838         * pt.c (tsubst_decl): Do not try to substitute into non-dependent
3839         functions.
3840         (value_dependent_expression_p): Correct logic for FUNCTION_DECLs.
3841
3842         PR c++/9649
3843         * cp-tree.h (pushdecl_class_level): Change prototype.
3844         (push_class_level_binding): Likewise.
3845         * decl.c (add_binding): Reject duplicate static data members.
3846         (pushdecl_class_level): Return a value indicating whether or not
3847         the binding was valid.
3848         (push_class_level_binding): Likewise.
3849         * semantics.c (finish_member_declaration): Don't keep invalid
3850         declarations.
3851
3852         PR c++/11041
3853         * call.c (initialize_reference): Do not use cp_finish_decl to emit
3854         temporary variables.
3855         * cp-tree.h (static_aggregates): Declare.
3856         (pushdecl_top_level_and_finish): Likewise.
3857         * decl.c (pushdecl_top_level_1): New function.
3858         (pushdecl_top_level): Use it.
3859         (pushdecl_top_level_and_finish): New function.
3860         (initialize_local_var): Remove redundant code.
3861         (cp_finish_decl): Remove support for RESULT_DECLs.  Don't check
3862         building_stmt_tree.
3863         * decl.h (static_aggregates): Remove.
3864         * decl2.c (get_guard): Use pushdecl_top_level_and_finish.
3865         * rtti.c (get_tinfo_decl): Use pushdecl_top_level_and_finish.
3866         (tinfo_base_init): Likewise.
3867
3868 2003-06-19  Matt Austern  <austern@apple.com>
3869
3870         PR c++/11228
3871         * init.c (build_zero_init): Assert that number of array elements
3872         is an integer constant.
3873         (build_default_init) Don't use build_zero_init for arrays with
3874         variable number of elements.
3875
3876 2003-06-19  Andreas Jaeger  <aj@suse.de>
3877
3878         * cp-tree.h: Remove duplicated declarations.
3879
3880 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
3881
3882         * pt.c: Convert to ISO C.
3883         * semantics.c: Convert to ISO C.
3884
3885 2003-06-18  Nathan Sidwell  <nathan@codesourcery.com>
3886
3887         * cp-tree.h (comp_except_specs, compparms, cp_has_mutable_p,
3888         at_least_as_qualified_p, more_qualified_p): Return bool.
3889         * typeck.c: ANSIFY function definitions.
3890         (comp_array_types): Take redeclaration bool parameter.
3891         (comptypes): Rearrange STRICT handling.
3892         (at_least_as_qualified_p, more_qualified_p,
3893         comp_cv_qualification): Cache cv quals.
3894         (compparms): Rearrange loop.
3895
3896 2003-06-18  Nathan Sidwell  <nathan@codesourcery.com>
3897
3898         * cp-tree.h (COMPARE_RELAXED): Rename to ...
3899         (COMPARE_DERIVED): ... here. Adjust comment.
3900         (resolve_typename_type_in_current_instantiation): Remove.
3901         (cp_tree_equal, comptypes): Return a bool.
3902         * cvt.c (convert_to_reference): Adjust comptypes call.
3903         * pt.c (template_args_equal, unify,): Adjust cp_tree_equal call.
3904         (resolve_typename_type_in_current_instantiation): Remove.
3905         * tree.c (cp_tree_equal): Return bool. Cope with TEMPLATE_DECLs and
3906         IDENTIFIER_NODEs. Abort if undeciderable. Adjust recursive
3907         calls. Refactor code.
3908         * typeck.c (comp_array_types): Return bool. Lose callback.
3909         parameter. Adjust cp_tree_equal calls.
3910         (comptypes): Return bool. Adjust strict handling. Remove relaxed
3911         enumeration and java type handling. Deal with typename types here.
3912         Adjust recursive and cp_tree_equals calls. Adjust base and derived
3913         checking.
3914         (comp_target_types): Remove unreachable code. Adjust
3915         same_or_base_type_p calls.
3916         (ptr_reasonably_similar): Adjust base and derived check.
3917
3918         * typeck.c (maybe_warn_about_returning_address_of_local): Remove
3919         unused calculation.
3920         (check_return_expr): Adjust error messages.
3921         * cp-tree.def (SCOPE_REF): Correct comment.
3922
3923 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
3924
3925         * mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
3926         string again.
3927
3928 2003-06-17  Robert Abeles  <rabeles@archaelogic.com>
3929
3930         * optimize.c (dump_function): Form complete flag name by
3931         prefixing 'fdump-' to string returned by dump_flag_name().
3932
3933 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
3934
3935         * mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
3936         string.
3937
3938 2003-06-17  Jason Merrill  <jason@redhat.com>
3939
3940         PR c++/10929
3941         * decl.c (grokfndecl): Don't mark a function inline for
3942         -finline-functions if it isn't defined.
3943
3944 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
3945
3946         PR c++/10712
3947         * class.c (handle_using_decl): Robustify.
3948
3949         PR c++/11105
3950         * cp-tree.h (DECL_CONV_FN_TYPE): New method.
3951         * mangle.c (struct globals): Remove internal_mangling_p.
3952         (write_unqualified_name): Use DECL_CONV_FN_TYPE.
3953         (write_template_parm): Don't write out the level number.
3954         (conv_type_names): New variable.
3955         (hash_type): New function.
3956         (compare_type): Likewise.
3957         (mangle_conv_op_name_for_type): Don't try to mangle conversion
3958         operator names.
3959         * search.c (lookup_conversion_operator): New function.
3960         (lookup_fnfields_1): Use it.
3961
3962 2003-06-17  Andreas Jaeger  <aj@suse.de>
3963
3964         * except.c: Remove duplicate declaration of push_eh_cleanup.
3965
3966         * call.c: Remove extra declaration of inhibit_warnings.
3967
3968 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3969
3970         2003-06-16  Jens-Michael Hoffmann  <jensmh@gmx.de>
3971         * mangle.c: Convert to ISO C.
3972
3973 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3974
3975         * cp/decl.c, cp/pt.c, cp/search.c, cp/tree.c: Don't use the PTR
3976         macro.
3977
3978 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3979
3980         * tree.c: Convert to ISO C.
3981
3982 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
3983
3984         * cp-tree.h: Follow spelling conventions.
3985         * mangle.c: Likewise.
3986         * method.c: Likewise.
3987         * parser.c: Likewise.
3988
3989 2003-06-14  Nathan Sidwell  <nathan@codesourcery.com>
3990
3991         * decl.c (start_function): Adjust init_function_start call.
3992         * method.c (use_thunk): Likewise.
3993         * semantics.c (genrtl_start_function): Likewise.
3994
3995 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
3996
3997         * Make-lang.in: Remove c-options.o.
3998
3999 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
4000
4001         * lex.c: Convert to ISO C.
4002
4003         2003-05-19  Jens-Michael Hoffmann  <jensmh@gmx.de>
4004         * init.c: removes use of PARAMS macro.  Use ISO style function
4005         declarations.  (Not copyright-significant change.)
4006
4007         * rtti.c: Remove PARAMS.
4008
4009         * typeck2.c: Convert to ISO C.
4010
4011 2003-06-12  Mark Mitchell  <mark@codesourcery.com>
4012
4013         PR c++/10635
4014         * typeck.c (build_c_cast): Check that the destination type is
4015         complete.
4016
4017 2003-06-11  Mark Mitchell  <mark@codesourcery.com>
4018
4019         PR c++/10432
4020         * cp-tree.h (finish_declarator): Remove.
4021         * decl.c (cp_finish_decl): Make sure to pop_nested_class even for
4022         erroneous declarations.
4023         * semantics.c (finish_declarator): Remove.
4024
4025 2003-06-11  Roger Sayle  <roger@eyesopen.com>
4026
4027         * decl2.c (generate_ctor_or_dtor_function): Avoid expanding a
4028         global static constructor/destructor if it will be empty, i.e.
4029         either doesn't call any ctors/dtors or only calls pure or const
4030         ctors/dtors.
4031
4032 2003-06-11  Mark Mitchell  <mark@codesourcery.com>
4033
4034         * mangle.c (tm_p.h): Include it.
4035         * Make-lang.in (cp/mangle.o): Depend on $(TM_P_H).
4036
4037         PR c++/11131
4038         * tree.c (cp_cannot_inline_fn): Check for "inline" before
4039         instantiation.
4040
4041 2003-06-10  Jason Merrill  <jason@redhat.com>
4042
4043         PR c++/10968
4044         * pt.c (mark_decl_instantiated): Clear DECL_COMDAT.
4045
4046 2003-06-10  Andrew Pinski  <pinskia@physics.uc.edu>
4047
4048         * decl.c (start_cleanup_fn): Move static 'counter' out, mark with GTY.
4049         (start_cleanup_cnt): New.
4050
4051 2003-06-10  Mark Mitchell  <mark@codesourcery.com>
4052
4053         PR c++/11131
4054         * cp-tree.h (template_for_substitution): Declare.
4055         * decl2.c (mark_used): Use it when figuring out whether or not a
4056         function is inline.
4057         * pt.c (template_for_substitution): Give it external linkage.
4058         * tree.c (cp_cannot_inline_tree_fn): Instantiate as early as
4059         possible.
4060
4061 2003-06-09  Zack Weinberg  <zack@codesourcery.com>
4062
4063         PR 8861
4064         * mangle.c (write_real_cst): New function.  Implement
4065         ABI-compliant mangling of floating-point literals when
4066         -fabi-version>=2; provide backward compatibility with 3.3 when
4067         -fabi-version=1 (with warning).  Clarify commentary.
4068         (write_template_arg_literal): Use write_real_cst.
4069
4070 2003-06-07  Andreas Jaeger  <aj@suse.de>
4071
4072         * cp/decl.c (xref_tag): Remove undefined macro NONNESTED_CLASSES.
4073
4074 2003-06-07  Neil Booth  <neil@daikokuya.co.uk>
4075
4076         * cp-lang.c (LANG_HOOKS_DECODE_OPTON): Drop.
4077         (LANG_HOOKS_HANDLE_OPTION): Override.
4078         * cp-tree.h (cxx_init_options): Update.
4079         * lex.c (cxx_init_options): Update.
4080
4081 2003-06-05  Jan Hubicka  <jh@suse.cz>
4082
4083         * Make-lang.in:  Add support for stageprofile and stagefeedback
4084
4085 2003-06-04  J"orn Rennecke <joern.rennecke@superh.com>
4086
4087         * decl.c (grokdeclarator): Error_mark_node in, error_mark_node out.
4088
4089 2003-06-04  Andreas Jaeger  <aj@suse.de>
4090
4091         * g++spec.c (lang_specific_driver): Remove ALT_LIBM usage.
4092
4093 2003-06-03  Jason Merrill  <jason@redhat.com>
4094
4095         * cp/cp-tree.h (CP_AGGREGATE_TYPE_P): Accept vectors.
4096
4097         * cp/decl.c (reshape_init): Handle vectors.
4098
4099         * testsuite/g++.dg/init/array10.C: New.
4100
4101 2003-06-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4102
4103         PR c++/10940
4104         * pt.c (check_explicit_specialization): Check for 'static'
4105         earlier.
4106
4107 2003-05-31  Diego Novillo  <dnovillo@redhat.com>
4108
4109         * class.c (dump_array): Call CONSTRUCTOR_ELTS to access
4110         the operand of a CONSTRUCTOR node.
4111
4112 2003-05-31  Gabriel Dos Reis <gdr@integrable-solutions.net>
4113
4114         * decl.c (cp_binding_level::this_entity): Rename from this_class.
4115         (cxx_scope_descriptor): New function.
4116         (cxx_scope_debug): Likewise.
4117         (push_binding_level): Use it.
4118         (pop_binding_level): Likewise.
4119         (suspend_binding_level): Likewise.
4120         (resume_binding_level): Likewise.
4121         (pushlevel_class): Adjust use of this_class.
4122         (pushtag): Likewise.
4123         (lookup_name_real): Likewise.
4124         (global_scope_name): New variable.
4125         (initialize_predefined_identifiers): Initialize it.
4126         (push_namespace): Use it.
4127         (make_cxx_scope): New function.
4128         (pushlevel): Use it.
4129         (pushlevel_class): Likewise.
4130         (push_binding_level): Simplify.  Loose the last two arguments.
4131         (make_binding_level): Remove.
4132         (initial_push__namespace_scope): New function.
4133         (push_namespace): Use it.  Simplify.
4134         (cxx_init_decl_processing): Likewise.
4135         (declare_namespace_level): Remove.
4136
4137 2003-05-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4138
4139         PR c++/10956
4140         * pt.c (instantiate_decl): Don't use full template arguments if
4141         we are dealing with specializations.
4142
4143 2003-05-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4144
4145         * decl.c (ENABLE_SCOPE_CHECKING): Rename from DEBUG_BINDING_LEVELS.
4146         (binding_depth): Unconditionally define.
4147         (is_class_level): Likewise.
4148         (indent): Likewise.  Take an indenting parameter.
4149         (push_binding_level): Remove conditional definittion.
4150         (pop_binding_level): Likewise.
4151         (suspend_binding_level): Likewise.
4152         (resume_binding_level): Likewise.
4153         (pushlevel): Likewise.
4154         (pushlevel_class): Likewise.
4155         (poplevel_class): Likewise.
4156         (pop_everything): Likewise.
4157
4158 2003-05-27  Gabriel Dos Reis <gdr@integrable-solutions.net>
4159
4160         * name-lookup.h (global_scope_p): New macro.
4161         * decl.c (pop_binding_level): Use it.  Don't refer directly to
4162         global_binding_level.
4163         (suspend_binding_level): Likewise.
4164         (global_bindings_p): Likewise.
4165         (print_other_binding_stack): Likewise.
4166         (print_binding_stack): Likewise.
4167         (maybe_push_to_top_level): Likewise.
4168         (pushdecl_namespace_level): Likewise.
4169         (cxx_init_decl_processing): Likewise.
4170         (start_decl): Likewise.
4171         (cp_finish_decl): Likewise.
4172         (start_function): Likewise.
4173         (global_binding_level): Remove.
4174
4175 2003-05-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4176
4177         * parser.c (cp_parser_explicit_instantiation): Restore old
4178         access before template instantiation.
4179
4180 2003-05-23  Geoffrey Keating  <geoffk@apple.com>
4181
4182         * lang-specs.h: Use -o to specify preprocessor's output file.
4183         Make -no-integrated-cpp work when building PCH files.
4184
4185 2003-05-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4186
4187         PR c++/10682
4188         * pt.c (instantiate_class_template): Use DECL_ARTIFICIAL to
4189         check for implicitly created typedef to an enum.
4190
4191 2003-05-21  Jason Merrill  <jason@redhat.com>
4192
4193         * init.c (build_vec_delete): Copy the address into a temporary
4194         variable before calling build_vec_delete_1.
4195         * decl2.c (delete_sanity): Don't call stabilize_reference.
4196
4197 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
4198
4199         * pt.c (register_specialization): Update the decl's location,
4200         if necessary.
4201         (check_explicit_specialization): Likewise.
4202
4203 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4204
4205         * error.c (dump_expr): Use HOST_WIDE_INT_PRINT_DOUBLE_HEX.
4206
4207 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
4208
4209         PR c++/9738
4210         * decl.c (duplicate_decls): Re-invoke make_decl_rtl
4211         if the old decl had instantiated DECL_RTL.
4212         (Base on Richard Henderson 2003-05-13 patch to c-decl.c).
4213
4214 2003-05-19  Matt Austern  <austern@apple.com>
4215
4216         * lang-options.h: Document -Wno-invalid-offsetof
4217         * typeck.c (build_class_member_access_expr): Don't complain about
4218         (Foo *)p->x for non-POD Foo if warn_invalid_offset is zero.
4219
4220 2003-05-18 Andrew Pinski <pinskia@physics.uc.edu>
4221
4222         * name-lookup.c (free_binding_entry): fix where the GTY markers are.
4223         (binding_entry_make): Make entry->chain NULL after getting an entry.
4224         fix the spelling of chain in a comment.
4225         (binding_table_free): speed up by having temporary variable.
4226         (binding_table_new): set table->chain to be NULL after allocating
4227         a table.
4228         (cxx_binding_make): use gcc_alloc instead of ggc_alloc_cleared and set
4229         binding->previous to NULL after getting an binding for speed.
4230
4231 2003-05-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4232
4233         * cp-tree.h (struct lang_type_class): Replace data member tags
4234         with hash-table nested_udts.
4235         (CLASSTYPE_NESTED_UTDS): Rename from CLASSTYPE_TAGS.
4236         * class.c (unreverse_member_declarations): Don't touch
4237         CLASSTYPE_TAGS.
4238         (pushclass): Use cxx_remember_type_decls.
4239         * decl.c (struct cp_binding_level): Replace data member tags with
4240         hash-table type_decls.
4241         (pop_binding_level): Handle level->type_decls.
4242         (kept_level_p): Adjust.
4243         (poplevel): Remove unused local variable.
4244         (bt_print_entry): New function.
4245         (print_binding_level): Use it.
4246         (push_namespace): Build current_binding_level->type_decls.
4247         (maybe_process_template_type_declaration): Adjust.
4248         (pushtag): Likewise.
4249         (clear_anon_tags): Use binding_table_remove_anonymous_types.
4250         (gettags): Remove.
4251         (cxx_remember_type_decls):  Rename from storetags.  Adjust.
4252         (lookup_tag): Use binding_table_find_anon_type.  Tidy.
4253         (lookup_tag_reverse): Use binding_table_reverse_maybe_remap.
4254         (cxx_init_decl_processing): Build global_binding_level->type_decls.
4255         (store_parm_decls): Remove pointless code.
4256         * name-lookup.c (free_binding_entry): New variable.
4257         (ENTRY_INDEX): New macro.
4258         (struct binding_table_s): New datatype.
4259         (binding_entry_make): New function.
4260         (binding_entry_free): Likewise.
4261         (binding_table_construct): Likewise.
4262         (binding_table_free): Likewise.
4263         (binding_table_new): Likewise.
4264         (binding_table_expand): Likewise.
4265         (binding_table_insert): Likewise.
4266         (binding_table_find): Likewise.
4267         (binding_table_find_anon_type): Likewise.
4268         (binding_table_reverse_maybe_remap): Likewise.
4269         (binding_table_remove_anonymous_types): Likewise.
4270         (binding_table_foreach): Likewise.
4271         * name-lookup.h (binding_table): New type.
4272         (binding_entry): Likewise.
4273         (bt_foreach_proc): Likewise.
4274         (struct binding_entry_s): New datatype.
4275         (SCOPE_DEFAULT_HT_SIZE): New macro.
4276         (CLASS_SCOPE_HT_SIZE): Likewise.
4277         (NAMESPACE_ORDINARY_HT_SIZE): Likewise.
4278         (NAMESPACE_STD_HT_SIZE): Likewise.
4279         (GLOBAL_SCOPE_HT_SIZE): Likewise.
4280         (binding_table_new): Declare.
4281         (binding_table_free): Likewise.
4282         (binding_table_insert): Likewise.
4283         (binding_table_find_anon_type): Likewise.
4284         (binding_table_reverse_maybe_remap): Likewise.
4285         (binding_table_remove_anonymous_types): Likewise.
4286         (binding_table_foreach): Likewise.
4287         (binding_table_find): Likewise.
4288         (cxx_remember_type_decls): Likewise.
4289         * pt.c (bt_instantiate_type_proc): New function.
4290         (do_type_instantiation): Use it.
4291         * search.c (lookup_field_r): Use binding_table_find.
4292
4293 2003-05-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4294
4295         * semantics.c (perform_deferred_access_checks): Don't discard
4296         checked access.
4297
4298 2003-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4299
4300         * error.c (cp_error_at, cp_warning_at, cp_pedwarn_at): Eliminate
4301         libiberty VA_ macros, always use stdarg.
4302         * rtti.c (create_pseudo_type_info): Likewise.
4303         * tree.c (build_min_nt, build_min): Likewise.
4304
4305 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4306
4307         * ptree.c (cxx_print_type, cxx_print_xnode): Use string
4308         concatentation on HOST_WIDE_INT_PRINT_* format specifier to
4309         collapse multiple function calls into one.
4310         * tree.c (debug_binfo): Likewise.
4311
4312 2003-05-15  Jason Merrill  <jason@redhat.com>
4313
4314         PR c++/5388
4315         * call.c (conditional_conversion): Don't consider implicit
4316         conversions if T2 is a base of T1.
4317         * cp-tree.h (DERIVED_FROM_P, UNIQUELY_DERIVED_FROM_P): Make boolean.
4318         (ACCESSIBLY_UNIQUELY_DERIVED_P, PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
4319
4320         * parser.c (cp_parser_primary_expression): Convert a static data
4321         member from reference.
4322
4323 2003-05-15  Mark Mitchell  <mark@codesourcery.com>
4324
4325         * call.c (build_op_delete_call): Avoid creating unnecessary types.
4326         * class.c (instantiate_type): Remove tests for tf_no_attributes.
4327         * cp-tree.h (tsubst_flags_t): Remove tf_no_attributes.
4328         (COMPARE_NO_ATTRIBUTES): Remove.
4329         * typeck.c (comptypes): Do not check COMPARE_NO_ATTRIBUTES.
4330
4331         PR c++/8385
4332         * semantics.c (finish_typeof): Refine type-dependency check.
4333
4334 2003-05-13  Jason Merrill  <jason@redhat.com>
4335
4336         * typeck.c (build_modify_expr): Don't always stabilize the lhs and
4337         rhs.  Do stabilize the lhs of a MODIFY_EXPR used on the lhs.
4338
4339 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4340
4341         * method.c (synthesize_method): Call push/pop_deferring_access_checks.
4342
4343 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4344
4345         PR c++/10230, c++/10481
4346         * semantics.c (finish_non_static_data_member): Handle when the
4347         non-static member is not from a base of the current class type.
4348
4349 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4350
4351         PR c++/10552
4352         * pt.c (tsubst_copy): Handle TEMPLATE_DECL that is a member class
4353         template and has dependent context.
4354
4355 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4356
4357         * pt.c (instantiate_decl): Call push/pop_deferring_access_checks.
4358
4359 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4360
4361         PR c++/9252
4362         * cp-tree.h (saved_scope): Remove check_access field.
4363         (tsubst_flags_t): Remove tf_parsing.
4364         * decl.c (maybe_push_to_top_level): Don't initialize
4365         scope_chain->check_access.
4366         (make_typename_type, make_unbound_class_template): Don't use
4367         tf_parsing.
4368         (register_dtor_fn): Use push/pop_deferring_access_checks
4369         instead of scope_chain->check_access.
4370         * method.c (use_thunk): Likewise.
4371         * parser.c (cp_parser_explicit_instantiation
4372         (cp_parser_constructor_declarator_p): Don't call
4373         push/pop_deferring_access_checks here.
4374         (cp_parser_template_argument, cp_parser_class_name): Don't use
4375         tf_parsing.
4376         (yyparse): Check flag_access_control.
4377         * pt.c (instantiate_class_template): Call
4378         push/pop_deferring_access_checks.
4379         * semantics.c (push_deferring_access_checks): Propagate
4380         dk_no_check.
4381         (perform_or_defer_access_check): Make sure basetype_path is
4382         a type before comparison.
4383         * call.c (build_op_delete_call, build_over_call): Use
4384         perform_or_defer_access_check.
4385         * class.c (alter_access): Likewise.
4386         * init.c (build_offset_ref): Likewise.
4387         * lex.c (do_identifier): Likewise.
4388         * method.c (hack_identifier): Likewise.
4389         * search.c (lookup_member): Likewise.
4390         * semantics.c (finish_non_static_data_member): Likewise.
4391         (simplify_aggr_init_exprs_r): Use push/pop_deferring_access_checks
4392         instead of flag_access_control.
4393
4394 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4395
4396         PR c++/9554
4397         * parser.c (cp_parser_class_name): Remove check_access parameter.
4398         All caller adjusted.  Update declaration.
4399         (cp_parser_lookup_name): Likewise.
4400         * semantics.c (push_deferring_access_checks): Change parameter type
4401         to enum deferring_kind.  All caller adjusted.
4402         (resume_deferring_access_checks): Adjust to use new enum.
4403         (stop_deferring_access_checks): Likewise.
4404         (perform_or_defer_access_check): Likewise.
4405         * cp-tree.h (deferring_kind): New enum.
4406         (deferred_access): Adjust field type.
4407         (push_deferring_access_checks): Update declaration.
4408
4409 2003-05-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4410
4411         PR c++/10555, c++/10576
4412         * pt.c (lookup_template_class): Handle class template with
4413         multiple levels of parameters when one of the levels contain
4414         errors.
4415
4416 2003-05-08  Jason Merrill  <jason@redhat.com>
4417
4418         * init.c (build_new_1): Don't reuse a TARGET_EXPR in an
4419         expression.  Undo some of the recent reorg.
4420
4421 2003-05-07  Richard Henderson  <rth@redhat.com>
4422
4423         PR c++/10570
4424         * cfns.gperf: Comment out POSIX thread cancellation points,
4425         plus abort and raise.
4426         * cfns.h: Regenerate.
4427
4428 2003-05-07  Jason Merrill  <jason@redhat.com>
4429
4430         * call.c (build_conditional_expr): Don't assume that the folded
4431         expression has result_type.
4432
4433 2003-05-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4434
4435         * typeck.c (build_unary_op): Deal with const qualifier in
4436         invalid pointer-to-member earlier.
4437
4438 2003-05-05  Jason Merrill  <jason@redhat.com>
4439
4440         PR c++/9537
4441         * call.c (conditional_conversion): Build an RVALUE_CONV if
4442         we're just changing the cv-quals.
4443         (build_conditional_expr): Don't call convert to change
4444         cv-quals.
4445
4446 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4447
4448         PR c++/10496
4449         * typeck.c (build_unary_op): Don't output const qualifier when
4450         output invalid pointer-to-member diagnostics.
4451
4452 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4453
4454         * decl.c: Fix typos.
4455
4456 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4457
4458         PR c++/4494
4459         * decl.c (start_function): Use same_type_p to check return type
4460         of main.
4461
4462 2003-05-03  Zack Weinberg  <zack@codesourcery.com>
4463
4464         PR c/10604
4465         * cp/typeck.c (build_x_compound_expr): No need to check
4466         extra_warnings as well as warn_unused_value.
4467
4468 2003-05-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4469
4470         PR c++/9364, c++/10553, c++/10586
4471         * decl.c (make_typename_type): Don't crash on illegal code.
4472
4473 2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>
4474
4475         * class.c (finish_struct): Use location_t and input_location
4476         directly.
4477         * decl.c (make_label_decl): Likewise.
4478         (use_label): Likewise.
4479         * decl2.c (warn_if_unknown_interface): Likewise.
4480         (start_static_initialization_or_destruction): Likewise.
4481         (generate_ctor_or_dtor_function): Likewise.
4482         (finish_file): Likewise.
4483         * error.c (print_instantiation_full_context): Likewise.
4484         * init.c (create_temporary_var): Likewise.
4485         * method.c (synthesize_method): Likewise.
4486         * parser.c (cp_token): Likewise.
4487         (cp_lexer_set_source_position_from_token): Likewise.
4488         (cp_lexer_get_preprocessor_token): Likewise.
4489         (cp_parser_statement): Likewise.
4490         * pt.c (tsubst_friend_function): Likewise.
4491         (instantiate_class_template): Likewise.
4492         (tsubst_decl): Likewise.
4493         (tsubst): Likewise.
4494         (instantiate_decl): Likewise.
4495         * semantics.c (begin_class_definition): Likewise.
4496         (expand_body): Likewise.
4497
4498 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4499
4500         * class.c (finish_struct): Rename lineno to input_line.
4501         * decl.c (push_binding_level, pop_binding_level,
4502         suspend_binding_level, resume_binding_level, make_label_decl,
4503         use_label, start_function): Likewise.
4504         * decl2.c (warn_if_unknown_interface,
4505         start_static_initialization_or_destruction,
4506         generate_ctor_or_dtor_function, finish_file): Likewise.
4507         * error.c (cp_line_of, print_instantiation_full_context,
4508         print_instantiation_context): Likewise.
4509         * except.c (check_handlers_1, check_handlers): Likewise.
4510         * init.c (create_temporary_var): Likewise.
4511         * method.c (use_thunk, synthesize_method): Likewise.
4512         * parser.c (cp_lexer_set_source_position_from_token,
4513         cp_lexer_get_preprocessor_token): Likewise.
4514         * pt.c (push_tinst_level, pop_tinst_level,
4515         tsubst_friend_function, instantiate_class_template, tsubst_decl,
4516         tsubst, tsubst_expr, instantiate_decl): Likewise.
4517         * semantics.c (genrtl_try_block, finish_label_stmt,
4518         begin_class_definition, expand_body,
4519         genrtl_finish_function): Likewise.
4520         * tree.c (build_min_nt, build_min): Likewise.
4521
4522 2003-05-01  Mark Mitchell  <mark@codesourcery.com>
4523
4524         * decl2.c (comdat_linkage): Don't externalize explicit
4525         instantiations.
4526
4527 2003-05-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4528
4529         PR c++/10554
4530         * decl2.c (do_class_using_decl): Check if operand 0 of SCOPE_REF
4531         is not NULL.
4532
4533 2003-05-01  Steven Bosscher  <steven@gcc.gnu.org>
4534
4535         * cp-tree.h (struct lang_id2): Remove.  Move fields from here...
4536         (struct lang_identifier): ... to here.
4537         (LANG_ID_FIELD): Remove.
4538         (SET_LANG_ID): Remove.
4539         (IDENTIFIER_LABEL_VALUE): Adjust for new lang_identifier.
4540         (SET_IDENTIFIER_LABEL_VALUE): Likewise.
4541         (IDENTIFIER_IMPLICIT_DECL): Likewise.
4542         (SET_IDENTIFIERL_IMPLICIT_DECL): Likewise.
4543         (IDENTIFIER_ERROR_LOCUS): Likewise.
4544         (SET_IDENTIFIER_ERROR_LOCUS): Likewise.
4545
4546 2003-05-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4547
4548         PR c++/8772
4549         * pt.c (convert_template_argument): Correct diagnostic.
4550
4551 2003-04-30  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4552
4553         PR c++/9432, c++/9528
4554         * decl2.c (validate_nonmember_using_decl): Handle SCOPE_REF.
4555
4556 2003-04-30  Garbiel Dos Reis  <gcc@integrable-solutions.net>
4557
4558         * decl.c (check_previous_goto_1): Adjust prototype.
4559         (check_previous_goto): Adjust use.
4560         (check_switch_goto): Likewise.
4561         (use_label): Adjust.
4562         (check_previous_goto_1): Don't use pedwarn_with_file_and_line.
4563         (struct named_label_use_list): Use location_t datatype.
4564
4565 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
4566
4567         PR c++/10551
4568         * pt.c (mark_decl_instantiated): Defer all explicit instantiations
4569         that have not yet been written out.
4570
4571 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
4572
4573         PR c++/10549
4574         * class.c (layout_class_type): Mark overlong bitfields as having
4575         the maximum size permitted by their type, after layout.
4576
4577         PR c++/10527
4578         * error.c (dump_expr): Correctly handling of NEW_EXPR.4
4579
4580 2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4581
4582         * call.c (build_operator_new_call): Fix typo.
4583         * lang-options.h: Likewise.
4584
4585 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
4586
4587         PR c++/10515
4588         * cp-tree.h (lookup_field_1): Declare it.
4589         * search.c (lookup_field_1): Make it public.
4590         * decl.c (reshape_init): Handle designated initializers.
4591
4592         * decl.c (maybe_commonize_var): Further tweak support for systems
4593         without weak symbols.
4594
4595 2003-04-27  Mark Mitchell  <mark@codesourcery.com>
4596
4597         * decl.c (maybe_commonize_var): Fix thinko in last patch.
4598
4599 2003-04-27  Mark Mitchell  <mark@codesourcery.com>
4600
4601         PR c++/10506
4602         * method.c (use_thunk): Decrement immediate_size_expand.
4603
4604         PR c++/10503
4605         * cp-tree.h (DECL_VAR_MARKED_P): New macro.
4606         (DECL_MAYBE_TEMPLATE): Remove.
4607         * class.c (fixed_type_or_null): Avoid infinite recursion.
4608
4609         * decl.c (maybe_commonize_var): Make the code match the comments.
4610         * pt.c (instantiate_decl): Move call to import_export_decl.
4611
4612 2003-04-26  Mark Mitchell  <mark@codesourcery.com>
4613
4614         * decl2.c (finish_file): Fix merge botch.
4615
4616 2003-04-25  Mark Mitchell  <mark@codesourcery.com>
4617
4618         * decl2.c (finish_file): Don't call import_export_decl for
4619         functions that are not defined.
4620         (handle_class_head): Robustify.
4621         * pt.c (instantiate_decl): Do not call cp_finish_decl for
4622         variables that are not defined.
4623
4624 2003-04-24  Sylvain Pion  <Sylvain.Pion@mpi-sb.mpg.de>
4625
4626         * call.c (print_z_candidates): Fix off by one error.
4627
4628 2003-04-24  Nathan Sidwell  <nathan@codesourcery.com>
4629
4630         PR c++/10337
4631         * call.c (joust): Don't warn about conversion ops that are exact
4632         or cv-conversions. Rearrange to avoid multiple type comparisons.
4633
4634 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
4635
4636         PR c++/10471
4637         * call.c (build_cxx_call): Robustify.
4638
4639 2003-04-23  Neil Booth  <neil@daikokuya.co.uk>
4640
4641         * Make-lang.in (lex.o): Remove mbchar.h.
4642         * lex.c (MULTIBYTE_CHARS): Lose.
4643         * parser.c (cp_lexer_get_preprocessor_token): CPP_OTHER handled
4644         in c-lex.c.
4645
4646 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
4647
4648         PR c++/9847
4649         * cp-tree.h (duplicate_tag_error): Remove.
4650         * class.c (duplicate_tag_error): Remove.
4651         * semantics.c (begin_class_definition): Return immediately for a
4652         duplicate class definition.
4653
4654         PR c++/10451
4655         * decl.c (grokdeclarator): Correct logic for "mutable" errors.
4656
4657 2003-04-22  Mark Mitchell  <mark@codesourcery.com>
4658
4659         PR c++/10446
4660         * search.c (lookup_fnfields_1): Handle empty slots in the method
4661         vector.
4662
4663         PR c++/10428
4664         * decl.c (check_elaborated_type_specifier): New function, split
4665         out from ...
4666         (xref_tag): ... here.  Use the new function in more places.
4667
4668         * rtti.c (throw_bad_typeid): Use build_cxx_call.
4669
4670 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
4671
4672         * call.c (build_over_call): Use build_cxx_call.
4673         (build_cxx_call): New method, split out of build_over_call.
4674         * cp-tree.h (language_function): Add can_throw.
4675         (build_cxx_call): Declare it.
4676         * decl.c (finish_function): If a function does not contain any
4677         calls to functions that can throw an exception, indicate that
4678         fact.
4679         * decl2.c (mark_used): Do not defer the instantiation of
4680         functions, if the current function does not throw.
4681         * optimize.c (maybe_clone_body): Copy TREE_NOTHROW to the clones.
4682         * pt.c (instantiate_decl): Make sure import_export_decl is called
4683         before emitting things.
4684         * rtti.c (throw_bad_cast): Use build_cxx_call.
4685         (build_dynamic_cast_1): Likewise.
4686         * typeck.c (build_function_call): Likewise.
4687
4688 2003-04-21  Nathan Sidwell  <nathan@codesourcery.com>
4689
4690         PR c++/9881
4691         * typeck.c (build_unary_op): Fold all COMPONENT_REF addr
4692         expressions. Reverts my 2002-08-08 patch.
4693
4694         * typeck.c (comp_ptr_ttypes_real): Swap final && operands for
4695         cheaper early exit.
4696
4697 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4698
4699         * cp/decl2.c (start_static_storage_duration_function): Take count
4700         arg, don't check if it wraps round.
4701         (generate_ctor_or_dtor_function): Add locus arg, use it.
4702         (generate_ctor_and_dtor_functions_for_priority): Data arg is a
4703         locus.
4704         (finish_file): Set line numbers to past EOF for synthesized
4705         functions.
4706
4707 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4708
4709         PR c++/10405
4710         * search.c (lookup_field_1): Final scan goes backwards for
4711         types, forwards for non-types.
4712
4713 2003-04-17  Roger Sayle  <roger@eyesopen.com>
4714
4715         PR c/10375
4716         * decl.c (duplicate_decls): Preserve "const", "noreturn" and
4717         "nothrow" function attributes.
4718
4719 2003-04-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4720
4721         PR c++/10347
4722         * pt.c (type_dependent_expression_p): Handle array new.
4723
4724 2003-04-15  Mark Mitchell  <mark@codesourcery.com>
4725
4726         PR c++/10381
4727         * parser.c (cp_parser_primary_expression): Reorganize logic for
4728         dealing with name lookup failures.
4729
4730 2003-04-15  Jason Merrill  <jason@redhat.com>
4731
4732         * decl2.c (mark_used): Don't instantiate anything if
4733         skip_evaluation.
4734
4735 2003-04-14  Ziemowit Laski  <zlaski@apple.com>
4736
4737         * tree.c (build_cplus_array_type_1): Do not call
4738         uses_template_parms() on a NULL index_type.
4739
4740 2003-04-13  Roger Sayle  <roger@eyesopen.com>
4741
4742         * decl.c (duplicate_decls): Preserve pure and malloc attributes.
4743
4744 2003-04-12  Mark Mitchell  <mark@codesourcery.com>
4745
4746         PR c++/10300
4747         * init.c (build_new_1): Reorganize.
4748
4749 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
4750
4751         * class.c (initialize_array)
4752         * decl.c (reshape_init)
4753         * decl2.c (build_expr_from_tree)
4754         * init.c (build_zero_init)
4755         * pt.c (tsubst_copy, tsubst_copy_and_build)
4756         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer)
4757         (ptm_initializer, class_initializer, get_pseudo_ti_init)
4758         * semantics.c (finish_compound_literal)
4759         * typeck.c (build_ptrmemfunc1)
4760         * typeck2.c (store_init_value, process_init_constructor)
4761         (build_functional_cast): Use build_constructor.
4762
4763 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
4764
4765         * call.c (print_z_candidates): Use gcc_gettext_width, not
4766         strlen, to determine how much padding to use.
4767
4768 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
4769
4770         * decl.c: Update all calls to shadow_warning.
4771
4772 2003-04-10  Mark Mitchell  <mark@codesourcery.com>
4773
4774         * class.c (layout_class_type): Correct handling for overlong
4775         bit-fields whose width is the same as an integer type.
4776
4777 2003-04-06  Zack Weinberg   <zack@codesourcery.com>
4778
4779         * cp-tree.def: Make fourth element for all 'c' and 'x' nodes zero.
4780         * cp-lang.c (cp_tree_size): New function.
4781         (LANG_HOOKS_TREE_SIZE): Override.
4782
4783         * cp-tree.h (SOURCE_LOCUS, SRCLOC_FILE, SRCLOC_LINE, struct
4784         tree_srcloc, TS_CP_COMMON, TS_CP_SRCLOC): Kill.
4785         (union lang_tree_node): Remove common and srcloc members.
4786         (build_srcloc_here): Don't prototype.
4787         * decl.c (cp_tree_node_structure): Kill SRCLOC case.
4788         * pt.c (pending_templates): Correct comment.
4789         * tree.c (build_srcloc, build_srcloc_here): Kill.
4790
4791 2003-04-06  Zack Weinberg   <zack@codesourcery.com>
4792
4793         * call.c: Include intl.h.
4794         (print_z_candidate): Always use inform; get rid of errfn
4795         argument. Reorganize so that all the strings get picked up
4796         by xgettext.  Note obligation of caller to pass first argument
4797         through gettext.
4798         (print_z_candidates): Update to match.  Indent second and
4799         successive candidates by strlen() of translated message.
4800         (joust): Restructure ambiguous-conversion pedwarn so that
4801         translators see a complete sentence.  Update calls to
4802         print_z_candidate.
4803
4804         * Make-lang.in (cp/call.o): Update dependencies.
4805
4806 2003-04-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4807
4808         * decl.c (set_current_binding_level): Delete, revert last change.
4809         (current_binding_level): Modify to allow it as as lvalue.
4810
4811 2003-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4812
4813         * name-lookup.c (find_binding): Pass appropriate pointer type to
4814         POP_TIMEVAR_AND_RETURN.
4815
4816 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4817
4818         * Make-lang.in (cp-warn): Add $(STRICT_WARN).
4819         * cp-tree.h: Don't insist on having GNUC.
4820
4821 2003-04-03  Jason Merrill  <jason@redhat.com>
4822
4823         * cvt.c (ocp_convert): Only abort if we try to convert an object
4824         of TREE_ADDRESSABLE type.
4825
4826         * class.c (build_vtable): Set DECL_ALIGN here.
4827         (get_vtable_decl): Not here.
4828         (layout_vtable_decl): Or here.
4829         (create_vtable_ptr): Or here.
4830         (layout_class_type): Or here.
4831         (check_bitfield_decl): Don't mess with field alignment.
4832
4833 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4834
4835         * operators.def (DEF_SIMPLE_OPERATOR, DEF_ASSN_OPERATOR,
4836         DEF_ASSN_OPERATOR): Delete spurious semi-colon.
4837         * rtti.c (dfs_class_hint_mark): Likewise.
4838
4839         * decl.c (push_local_name, push_class_level_binding,
4840         maybe_inject_for_scope_var): Don't use POP_TIMEVAR_AND_RETURN in
4841         functions returning void.
4842         * decl2.c (add_using_namespace): Likewise.
4843
4844         * decl.c (print_binding_level, print_other_binding_stack,
4845         print_binding_stack): Cast argument of %p specifier to void*.
4846         * ptree.c (cxx_print_decl): Likewise.
4847
4848         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK,
4849         VAR_FUNCTION_OR_PARM_DECL_CHECK,
4850         VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK, RECORD_OR_UNION_TYPE_CHECK,
4851         BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK, LANG_TYPE_CLASS_CHECK,
4852         LANG_TYPE_PTRMEM_CHECK, LANG_DECL_U2_CHECK): Add __extension__.
4853
4854         * decl.c (set_current_binding_level): New macro.  Use throughout
4855         when setting the current binding level.
4856
4857         * cp-tree.h (cp_lvalue_kind, base_access): Delete trailing comma
4858         in enum.
4859         * method.c (mangling_flags): Likewise.
4860
4861         * cp-tree.h (lang_type_header): Add __extension__ and use
4862         CHAR_BITFIELD for members.
4863
4864 2003-04-02  Geoffrey Keating  <geoffk@apple.com>
4865
4866         PR other/9274
4867         * mangle.c: Include gt-cp-mangle.h.
4868         (subst_identifiers): Mark with GTY.
4869         * config-lang.in (gtfiles): Add cp/mangle.c.
4870         * Make-lang.in: (gt-cp-mangle.h): New rule.
4871         (cp/mangle.o): Depends on gt-cp-mangle.h.
4872
4873 2003-04-01  Andrew Pinski  <pinskia@physics.uc.edu>
4874
4875         * config-lang.in (gtfiles): Add \$(srcdir)/cp/name-lookup.c
4876         after \$(srcdir)/cp/name-lookup.h.
4877         * name-lookup.c: (cxx_binding_make): Use ggc_alloc_clearedinstead
4878         of ggc_alloc.  Include gt-cp-name-lookup.h at the end of the file.
4879         * Make-lang.in: (gt-cp-name-lookup.h): Is generated by gengtype.
4880         (cp/name-lookup.o): Depends on gt-cp-name-lookup.h.
4881
4882 2003-03-31  Jason Merrill  <jason@redhat.com>
4883
4884         PR java/10145
4885         * class.c (check_field_decl): Don't set DECL_ALIGN.
4886
4887 2003-03-30  Mark Mitchell  <mark@codesourcery.com>
4888
4889         PR c++/7647
4890         * decl.c (grokdeclarator): Tidy, slightly.
4891         * search.c (lookup_field_1): Add want_type parameter.
4892         (lookup_field_r): Adjust call to lookup_field_1.
4893
4894 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4895
4896         * Make-lang.in (cp/name-lookup.o): Add more dependencies.
4897
4898 2003-03-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
4899
4900         * cp-tree.h (binding_for_name: Move to name-lookup.h  Adjust
4901         prototype.
4902         (cxx_scope_find_binding_for_name): Likewise.
4903         * decl.c (find_binding: Move to name-lookup.c.
4904         (binding_for_name): Likewise.
4905         (cxx_scope_find_binding_for_name): Likewise.
4906         (BINDING_LEVEL):  Remove.
4907         (push_binding): Tidy.
4908         (push_class_binding): Likewise.
4909         (pop_binding): Likewise.
4910         (poplevel): Likewise.
4911         (poplevel_class): Likewise.
4912         (set_identifier_type_value_with_scope): Likewise.
4913         (push_overloaded_decl): Likewise.
4914         (lookup_tag): Likewise.
4915         (unqualified_namespace_lookup): Likewise.
4916         (lookup_name_current_level): Likewise.
4917         (maybe_inject_for_scope_var): Likewise.
4918         (namespace_binding): Move to name-lookup.c.
4919         (set_namespace_binding): Likewise.
4920         * decl2.c (lookup_using_namespace): Tidy.
4921         (qualified_lookup_using_namespace): Likewise.
4922         (do_toplevel_using_decl): Likewise.
4923         * name-lookup.c: Include "timevar.h"
4924         * name-lookup.h (cxx_scope):  Declare.
4925         (struct cxx_binding): Lose member "has_level".  Adjust "scope"
4926         member declaration.
4927         (BINDING_SCOPE): Adjust definition.
4928         (BINDING_HAS_LEVEL_P): Remove.
4929
4930 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4931
4932         * name-lookup.c: New file.
4933         * name-lookup.h: Likewise..
4934         * decl.c (push_binding): Adjust use cxx_binding_make.
4935         (free_bindings): Move to name-lookup.c
4936         (pop_binding): Use cxx_binding_free.
4937         (binding_for_name): Tidy.
4938         * cp-tree.h: Include "name-lookup.h"
4939         (cxx_binding_make): Move to name-lookup.h
4940         (cxx_binding_clear): Likewise.
4941         (struct cxx_binding): Likewise.
4942         (LOCAL_BINDING_P): Likewise.
4943         (INHERITED_VALUE_BINDING_P): Likewise.
4944         (BINDING_SCOPE): Likewise.
4945         (BINDING_HAS_LEVEL_P): Likewise.
4946         (BINDING_VALUE): Likewise.
4947         (BINDING_TYPE): Likewise.
4948         * config-lang.in (gtfiles): Add cp/name-lookup.h
4949         * Make-lang.in (cp/name-lookup.o): New rule.
4950         (CXX_OBJS): Add cp/name-lookup.o
4951         (CXX_TREE_H): Add cp/name-lookup.h
4952
4953 2003-03-28  Jason Merrill  <jason@redhat.com>
4954
4955         PR c++/10245
4956         * cvt.c (force_rvalue): New fn.
4957         * call.c (build_conditional_expr): Use it.
4958         * cp-tree.h: Declare it.
4959
4960 2003-03-28  Mike Stump  <mrs@apple.com>
4961
4962         * error.c (dump_expr): Add 0x to printed hex numbers to make
4963         output match source code better.
4964
4965 2003-03-28  Mark Mitchell  <mark@codesourcery.com>
4966
4967         PR c++/10218
4968         * decl.c (grokfndecl): Return NULL_TREE for bogus out-of-class
4969         definitions.
4970
4971         * decl2.c (generate_ctor_or_dtor_function): Tolerate a
4972         non-existant ssdf_decls array.
4973         (finish_file): Call generator_ctor_or_dtor_function when there are
4974         static constructors or destructors and no other static
4975         initializations.
4976
4977 2003-03-28  Nathan Sidwell  <nathan@codesourcery.com>
4978
4979         PR c++/10047
4980         * decl2.c (finish_file): Don't warn about explicitly instantiated
4981         inline decls.
4982
4983 2003-03-27  Nathan Sidwell  <nathan@codesourcery.com>
4984
4985         PR c++/10224
4986         * pt.c (lookup_template_class): Only check instantiated args if
4987         they do not contain template parameters.
4988
4989 2003-03-27  Nathan Sidwell  <nathan@codesourcery.com>
4990
4991         PR c++/10158
4992         * parser.c (cp_parser_function_definition): Set
4993         DECL_INITIALIZED_IN_CLASS for members.
4994         * pt.c (instantiate_decl): Only reduce the template args for
4995         friends that are not defined in class.
4996
4997 2003-03-25  Jason Merrill  <jason@redhat.com>
4998
4999         * call.c (print_z_candidate): Change name of first arg to msgid.
5000         (joust): Add comment for translators.
5001
5002 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
5003
5004         PR c++/9898, PR c++/383, DR 322
5005         * pt.c (maybe_adjust_types_for_deduction) <DEDUCE_CONV>: Look
5006         through reference types on both PARM and ARG.
5007
5008 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
5009
5010         PR c++/10119
5011         * error.c (dump_expr) <BASELINK>: Use dump_expr.
5012         * pt.c (maybe_fold_nontype_args): New function.
5013         (tsubst_copy) <SCOPE_REF>: Subst any template_id args.
5014         <TEMPLATE_ID_EXPR>: Break out folding code, call it.
5015         (tsubst_copy_and_build) <TEMPLATE_ID_EXPR>: Call
5016         maybe_fold_nontype_args.
5017
5018 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
5019
5020         PR c++/10026
5021         * decl2.c (arg_assoc_type) <ERROR_MARK>: Don't die.
5022
5023 2003-03-23  Mark Mitchell  <mark@codesourcery.com>
5024
5025         PR c++/7086
5026         * typeck.c (cxx_mark_addressable):  Adjust call to
5027         gen_mem_addressof or put_var_into_stack.
5028
5029 2003-03-22  Nathan Sidwell  <nathan@codesourcery.com>
5030
5031         PR c++/9978, c++/9708
5032         * cp-tree.h (instantiate_template): Add tsubst_flags parameter.
5033         * call.c (add_template_candidate_real): Adjust
5034         instantiate_template call.
5035         * class.c (resolve_address_of_overloaded_function): Likewise.
5036         * decl.c (build_enumerator): Set TREE_CONSTANT.
5037         * pt.c (check_instantiated_args): New.
5038         (push_inline_template_parms_recursive): Set TREE_CONSTANT,
5039         TREE_READONLY.
5040         (build_template_parm_index): Copy TREE_CONSTANT, TREE_READONLY.
5041         (reduce_template_parm_level): Likewise.
5042         (process_template_parm): Likewise.
5043         (check_explicit_specialization): Adjust instantiate_template call.
5044         (convert_template_argument): Don't check non-type argument here.
5045         (lookup_template_class): Check them here.
5046         (tsubst_friend_function): Adjust instantiate_template call.
5047         (instantiate_template): Add tsubst_flags parameter, use it. Check
5048         instantiated args.
5049
5050 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
5051
5052         * decl.c: Update calls to shadow_warning.
5053
5054 2003-03-21  Nathan Sidwell  <nathan@codesourcery.com>
5055
5056         PR c++/9898
5057         * error.c (dump_decl) [CONST_DECL]: Print '<enumerator>'.
5058         (dump_expr) [CONSTRUCTOR]: Print default ctor as a function call.
5059
5060 2003-03-20  Mark Mitchell  <mark@codesourcery.com>
5061
5062         * cp/decl2.c (arg_assoc_class): Correct check for namespace-scope
5063         friends.
5064         * cp/pt.c (instantiate_class_template): Fix formatting.
5065
5066 2003-03-14  Matt Austern  <austern@apple.com>
5067
5068         * cp-tree.h (unemitted_tinfo_decls): Declaration of a new varray.
5069         (unemitted_tinfo_decl_p): Remove.
5070         (emit_tinfo_decl): Change declaration to remove unused parameter.
5071         * decl2.c (finish_file): Change tinfo emission to loop through
5072         unemitted_tinfo_decls array instead of looping through all decls.
5073         * rtti.c (unemitted_tinfo_decl_p): Declare as static, remove
5074         unused second parameter.
5075         (init_rtti_processing): initialize unemitted_tinfo_decls varray.
5076         (get_tinfo_decls): push new tinfo decl on unemitted_tinfo_decls.
5077         (emit_tinfo_decl): remove unused second parameter, add assertion
5078         that decl hasn't already been emitted.
5079
5080 2003-03-19  Nathanael Nerode  <neroden@gcc.gnu.org>
5081
5082         * dump.c (cp_dump_tree), cp-tree.h (cp_dump_tree): Change return
5083         type from 'int' to 'bool'. Replace 0 and 1 with true and false in
5084         return statements.
5085
5086 2003-03-19  Jason Merrill  <jason@redhat.com>
5087
5088         PR c++/8316, c++/9315, c++/10136
5089         * call.c (print_z_candidate): Split out from...
5090         (print_z_candidiates): ...here.
5091         (joust): Use it.
5092
5093 2003-03-17  Roger Sayle  <roger@eyesopen.com>
5094
5095         PR c++/10031
5096         * decl.c (duplicate_decls): Use the new type when prototyping
5097         anticipated decls, even when the types match.  This defines the
5098         exception list for the built-in function.
5099
5100 2003-03-17  Jason Merrill  <jason@redhat.com>
5101
5102         PR c++/10091
5103         * typeck.c (build_class_member_access_expr): Compare
5104         TYPE_MAIN_VARIANTs.
5105
5106 2003-03-17  Mark Mitchell  <mark@codesourcery.com>
5107
5108         PR c++/9639
5109         * parser.c (cp_parser_declarator_id): Clear parser->scope.
5110
5111 2003-03-16  Jason Merrill  <jason@redhat.com>
5112
5113         PR c++/9993
5114         * decl.c (finish_function): Only allow the NRVO to use variables
5115         declared at function scope.
5116
5117 2003-03-17  Andreas Jaeger  <aj@suse.de>
5118
5119         * Make-lang.in (cp/TAGS): Remove.
5120
5121 2003-03-16  Nathan Sidwell  <nathan@codesourcery.com>
5122
5123         PR c++/9629
5124         * cp-tree.h (struct language_function): Add in_base_initializer.
5125         (in_base_initializer): define it.
5126         (expand_member_init): Remove INIT param.
5127         * init.c (expand_member_init): Remove INIT param, return the member.
5128         (emit_mem_initializers): Set in_base_initializer.
5129         * class.c (build_base_path): Check in_base_initializer.
5130         * parser.c (cp_parser_mem_initializer): Set in_base_initializer.
5131         * pt.c (tsubst_initializer_list): Likewise.
5132
5133 2003-03-16   Gabriel Dos Reis <gdr@integrable-solutions.net>
5134
5135         * decl.c (binding_for_name): Fix initialization thinko.
5136
5137 2003-03-15  Gabriel Dos Reis <gdr@integrable-solutions.net>
5138
5139         Compile-time improvement: 2/n.
5140         * cp-tree.h (struct cxx_binding): New datatype;
5141         (struct lang_identifier): Use it.
5142         (LOCAL_BINDING_P): Adjust definition.
5143         (INHERITED_VALUE_BINDING_P): Likewise.
5144         (BINDING_SCOPE): Likewise.
5145         (BINDING_HAS_LEVEL_P): Likewise.
5146         (BINDING_VALUE): Likewise.
5147         (BINDING_TYPE): Likewise.
5148         (IDENTIFIER_VALUE): Likewise.
5149         (struct tree_binding): Remove.
5150         (TS_CP_BINDING): Likewise.
5151         ((union lang_tree_node): Remove field "binding".
5152         (cxx_binding_clear): New macro.
5153         (binding_for_name): Adjust return type.
5154         (qualified_lookup_using_namespace): Adjust prototype.
5155         (lookup_using_namespace): Adjust prototype.
5156         (cxx_scope_find_binding_for_name): Declare.
5157         * cp-tree.def: Remove CPLUS_BINDING definition.
5158         * decl.c (push_binding): Adjust local variable type.
5159         (add_binding): Likewise.
5160         (push_class_binding): Likewise.
5161         (pop_binding): Likewise.
5162         (poplevel): Likewise.
5163         (poplevel_class): Likewise.
5164         (free_bindings):  Adjust type.
5165         (find_binding): Adjust return type, add a third parameter. Remove
5166         non-useful assertion now that we use static typing.
5167         (cxx_scope_find_binding_for_name): New function.
5168         (binding_for_name): Use it.  Adjust local variable type. Simplify.
5169         (namespace_binding):  Simplify.
5170         (set_namespace_binding): Likewise.
5171         (set_identifier_type_value_with_scope): Adjust local variable type.
5172         (lookup_tag): Don't type-abuse of local variable 'old'.
5173         (lookup_namespace_name): Likewise.  Allocate binding on stack.
5174         (select_decl): Adjust prototype.
5175         (unqualified_namespace_lookup):  Allocate binding on stack.
5176         Don't type-abuse of local variable 'val'.
5177         (lookup_name_real): Likewise.
5178         (maybe_inject_for_scope_var): Adjust local variable type.
5179         (cp_tree_node_structure): Remove CPLUS_BINDING case label.
5180         (namespace_binding): Adjust logic, simplify.
5181         (BINDING_LEVEL): Adjust definition.
5182         (push_class_level_binding): Adjust local variable type.
5183         (struct cxx_saved_binding): Adjust field 'binding' type.
5184         * decl2.c (ambiguous_decl): Adjust prototype.
5185         (lookup_using_namespace): Adjust local variable type.
5186         (qualified_lookup_using_namespace): Catch type error and correct
5187         ensueing logic error.
5188         (do_nonmember_using_decl): Adjust local variable type.  Allocate
5189         temporary cxx_binding on stack.
5190         (do_toplevel_using_decl): Adjust local variable type.
5191         * ptree.c (cxx_print_cxx_binding): New function.
5192         (cxx_print_identifier): Use it.
5193         (cxx_print_xnode): Delete CPLUS_BINDING case label.
5194
5195 2003-03-15  Roger Sayle  <roger@eyesopen.com>
5196
5197         * tree.c (count_functions): Fix whitespace.
5198
5199 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
5200
5201         * Make-lang.in: Update.
5202
5203 2003-03-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5204
5205         PR c++/6440
5206         * pt.c (maybe_process_partial_specialization): Handle
5207         member class template when enclosing class template is
5208         explicit specialized.
5209         (most_general_template): Stop looking when DECL is already
5210         specialized.
5211
5212 2003-03-13  Jason Merrill  <jason@redhat.com>
5213
5214         PR c++/9420
5215         * search.c (lookup_conversions): Call complete_type here.
5216         * call.c (implicit_conversion): Not here.
5217
5218 2003-03-13  Mark Mitchell  <mark@codesourcery.com>
5219
5220         * decl2.c (do_nonmember_using_decl): Correct handling of
5221         simultaneous type/non-type bindings.
5222
5223         * call.c (initialize_reference): Remove bogus assertion.
5224         * decl.c (build_ptrmemfunc_type): Revert change of 2003-03-09.
5225
5226 2003-03-12  Andrew Lewycky  <andrew@mxc.ca>
5227
5228         PR c++/7050
5229         * expr.c (cxx_expand_expr): Return const0_rtx for throw
5230         expressions.
5231
5232 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
5233
5234         PR c++/9474
5235         * decl2.c (do_nonmember_using_decl): Do not call duplicate decls
5236         to merge old and new declarations.
5237
5238 2003-03-12  Alexandre Oliva  <aoliva@redhat.com>
5239
5240         * g++.1: Remove.
5241         * Make-lang.in (c++.generated-manpages): Build cp/g++.1.
5242         (cp/g++.1): Build it from scratch in the build tree.
5243         (c++.install-man): Depend on it.  Install it from the build tree.
5244         (c++.mostlyclean): Clean it.
5245
5246 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
5247
5248         PR c++/9474
5249         * decl2.c (do_nonmember_using_decl): Do not call duplicate decls
5250         to merge old and new declarations.
5251
5252         PR c++/9924
5253         * decl2.c (do_nonmember_using_decl): Ignore anticipated builtins.
5254
5255 2003-03-11  Jason Merrill  <jason@redhat.com>
5256
5257         PR c++/9820
5258         * search.c (lookup_member): Fix handling of functions in a class
5259         being defined.
5260
5261 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
5262
5263         PR c++/8700
5264         * call.c (convert_class_to_reference): Adjust usage of
5265         splice_viable.
5266         (any_viable): Remove.
5267         (splice_viable): Combine with any_viable.
5268         (print_z_candidates): Avoid printing duplicates.
5269         (build_user_type_conversion_1): Adjust usage of splice_viable.
5270         (build_new_function_call): Likewise.
5271         (build_operator_new_call): Likewise.
5272         (build_object_call): Likewise.
5273         (build_conditional_expr): Likewise.
5274         (build_new_op): Likewise.
5275         (build_new_method_call): Likewise.
5276         (joust): Remove spurious comment.
5277         * cp-tree.h (DECL_FRIENDLIST): Correct documentation.
5278         * decl2.c (arg_assoc_class): Simplify.
5279         * friend.c (add_friend): Likewise.
5280
5281 2003-03-11  Jason Merrill  <jason@redhat.com>
5282
5283         PR c++/8660
5284         * decl2.c (check_classfn): A member template only matches a
5285         member template.
5286
5287 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
5288
5289         * Make-lang.in (CXX_C_OBJS): Update.
5290         * lang-specs.h: Don't define __GNUG__ here.
5291
5292 2003-03-10  Mark Mitchell  <mark@codesourcery.com>
5293
5294         * call.c (perform_overload_resolution): New function.
5295         (build_new_function_call): Use it.
5296         (build_operator_new_call): Likewise.
5297         (add_candidates): Add explicit_targs and template_only parameters.
5298         (build_new_op): Adjust accordingly.
5299         * cp-tree.h (build_operator_new_call): New function.
5300         (build_function_call_real): Remove.
5301         (build_function_call_maybe): Likewise.
5302         * init.c (build_new_1): Use build_operator_new_call.
5303         * typeck.c (build_function_call_real): Rename to ...
5304         (build_function_call): ... this.
5305
5306 2003-03-10  Devang Patel  <dpatel@apple.com>
5307
5308         PR c++/9394
5309         * g++spec.c (lang_specific_driver): Use DEFAULT_WORD_SWTCH_TAKES_ARG.
5310
5311 2003-03-10  Jason Merrill  <jason@redhat.com>
5312
5313         PR c++/9798
5314         * decl.c (push_using_directive): Push before recursing.
5315
5316         PR c++/9868, c++/9524
5317         * call.c (resolve_scoped_fn_name): Handle the case of a function
5318         pointer member.
5319
5320         * decl2.c (build_offset_ref_call_from_tree): Only mess with 'this'
5321         argument in the pointer-to-member case.
5322
5323 2003-03-09  Mark Mitchell  <mark@codesourcery.com>
5324
5325         PR c++/9373
5326         * cp-lang.c (cxx_get_alias_set): Use alias set zero for
5327         pointers to member functions.
5328
5329         PR c++/8534
5330         * decl.c (build_ptrmemfunc_type): Do not allow default arguments
5331         in pointer-to-member-function types.
5332
5333 2003-03-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5334
5335         * expr.c (cplus_expand_constant): Use C90 prototype style.
5336         (cxx_expand_expr): Likewise.
5337
5338 2003-03-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5339
5340         PR c++/9970
5341         * decl.c (duplicate_decls): Only copy DECL_THUNKS for virtual
5342         functions.
5343
5344 2003-03-08  Geoffrey Keating  <geoffk@apple.com>
5345
5346         * lang-specs.h (c++-header): Change .pch to .gch.
5347
5348 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
5349
5350         * cp-tree.h (cxx_init): Update prototype.
5351         * lex.c (cxx_init): Similarly.
5352
5353 2003-03-08  Mark Mitchell  <mark@codesourcery.com>
5354
5355         PR c++/9823
5356         * cp-tree.h (begin_mem_initializers): Remove.
5357         * parser.c (cp_parser_mem_initializer_list): Inline it here.
5358         Do not call finish_mem_initializers if not in a constructor.
5359         (cp_parser_class_head): Fix typo in error message.
5360         * semantics.c (begin_mem_initializers): Remove.
5361         * testsuite/g++.dg/parser/constructor1.C: New test.
5362
5363         PR c++/9809
5364         * call.c (add_function_candidate): Skip builtin fuctions that have
5365         not yet been declared.
5366
5367         PR c++/9982
5368         * init.c (build_new_1): Correct logic for determining whether or
5369         not to use an array cookie.
5370
5371         PR c++/9524
5372         * parser.c (cp_parser_postfix_expression): Call
5373         finish_non_static_data_member, even when processing_template_decl.
5374
5375         PR c++/9912
5376         * cp-tree.h (is_ancestor): New function.
5377         (handle_class_head): Change prototype.
5378         * decl2.c (is_namespace_ancestor): Rename to ...
5379         (namespace_anecestor): ... this.
5380         (set_decl_namespace): Adjust accordingly.
5381         (handle_class_head): Remove unnecessary parameters.
5382         * parser.c (cp_parser_class_head): Check that
5383         nested-name-specifiers are used appropriately.
5384
5385 2003-03-07  Mark Mitchell  <mark@codesourcery.com>
5386
5387         * call.c (reference_binding): Remove REF_IS_VAR parameter.
5388         (implicit_conversion): Adjust call to reference_binding.
5389         (make_temporary_var_for_ref_to_type): Add TYPE parameter.
5390         (initialize_reference): Adjust handling for references bound to
5391         rvalues.
5392         * cp-tree.h (make_temporary_var_for_ref_to_temp): Change
5393         prototype.
5394         (real_non_cast_lvalue_p): New method.
5395         * cvt.c (build_up_reference): Adjust use of
5396         make_temporary_var_for_ref_to_temp.
5397         * tree.c (real_non_cast_lvalue_p): New method.
5398
5399 2003-03-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5400
5401         * except.c (init_exception_processing): Use C90 prototype style.
5402         (cp_protect_cleanup_actions): Likewise.
5403         (prepare_eh_type): Likewise.
5404         (build_eh_type_type): Likewise.
5405         (build_exc_ptr): Likewise.
5406         (do_begin_catch): Likewise.
5407         (dtor_nothrow): Likewise.
5408         (do_end_catch): Likewise.
5409         (push_eh_cleanup): Likewise.
5410         (decl_is_java_type): Likewise.
5411         (choose_personality_routine): Likewise.
5412         (initialize_handler_parm): Likewise.
5413         (expand_start_catch_block): Likewise.
5414         (expand_end_catch_block): Likewise.
5415         (begin_eh_spec_block): Likewise.
5416         (finish_eh_spec_block): Likewise.
5417         (do_allocate_exception): Likewise.
5418         (do_free_exception): Likewise.
5419         (wrap_cleanups_r): Likewise.
5420         (stabilize_throw_expr): Likewise.
5421         (build_throw): Likewise.
5422         (complete_ptr_ref_or_void_ptr_p): Likewise.
5423         (is_admissible_throw_operand): Likewise.
5424         (nothrow_libfn_p): Likewise.
5425         (can_convert_eh): Likewise.
5426         (check_handlers_1): Likewise.
5427         (check_handlers): Likewise.
5428
5429 2003-03-06  Mark Mitchell  <mark@codesourcery.com>
5430
5431         * call.c (merge_conversion_sequences): New function.
5432         (build_conv): Set ICS_USER_FLAG for USER_CONVs.
5433         (convert_class_to_reference): Correct handling of second
5434         standard conversion sequence in a user-defined conversion
5435         sequence.
5436         (build_user_type_conversion_1): Use merge_conversion_sequences.
5437         * cp-tree.def: Add comments for CONV nodes.
5438         * rtti.c (get_tinfo_decl): Use build_address/build_nop.
5439
5440 2003-03-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5441
5442         * error.c (init_error): Use C90 prototype style.
5443         (dump_scope): Likewise.
5444         (dump_qualifiers): Likewise.
5445         (dump_template_argument): Likewise.
5446         (dump_template_argument_list): Likewise.
5447         (dump_template_parameter): Likewise.
5448         (dump_template_bindings): Likewise.
5449         (dump_type): Likewise.
5450         (dump_typename): Likewise.
5451         (class_key_or_enum): Likewise.
5452         (dump_aggr_type): Likewise.
5453         (dump_type_prefix): Likewise.
5454         (dump_type_suffix): Likewise.
5455         (dump_global_iord): Likewise.
5456         (dump_simple_decl): Likewise.
5457         (dump_decl): Likewise.
5458         (dump_template_decl): Likewise.
5459         (dump_function_decl): Likewise.
5460         (dump_parameters): Likewise.
5461         (dump_exception_spec): Likewise.
5462         (dump_function_name): Likewise.
5463         (dump_template_parms): Likewise.
5464         (dump_char): Likewise.
5465         (dump_expr_list): Likewise.
5466         (dump_expr): Likewise.
5467         (dump_binary_op): Likewise.
5468         (dump_unary_op): Likewise.
5469         (type_as_string): Likewise.
5470         (expr_as_string): Likewise.
5471         (decl_as_string): Likewise.
5472         (context_as_string): Likewise.
5473         (lang_decl_name): Likewise.
5474         (cp_file_of): Likewise.
5475         (cp_line_of): Likewise.
5476         (decl_to_string): Likewise.
5477         (expr_to_string): Likewise.
5478         (fndecl_to_string): Likewise.
5479         (code_to_string): Likewise.
5480         (language_to_string): Likewise.
5481         (parm_to_string): Likewise.
5482         (op_to_string): Likewise.
5483         (type_to_string): Likewise.
5484         (assop_to_string): Likewise.
5485         (args_to_string): Likewise.
5486         (cv_to_string): Likewise.
5487         (cxx_print_error_function): Likewise.
5488         (cp_diagnostic_starter): Likewise.
5489         (cp_diagnostic_finalizer): Likewise.
5490         (cp_print_error_function): Likewise.
5491         (function_category): Likewise.
5492         (print_instantiation_full_context): Likewise.
5493         (print_instantiation_partial_context): Likewise.
5494         (maybe_print_instantiation_context): Likewise.
5495         (print_instantiation_context): Likewise.
5496         (cp_printer): Likewise.
5497         (print_integer): Likewise.
5498         (print_non_consecutive_character): Likewise.
5499         (locate_error): Likewise.
5500
5501 2003-03-06  Mark Mitchell  <mark@codesourcery.com>
5502
5503         PR c++/9965
5504         * call.c (reference_binding): Add ref_is_var parameter.
5505         (implicit_conversion): Adjust call to reference_binding.
5506         (initialize_reference): Likewise.
5507
5508         PR c++/9400
5509         * decl.c (pushdecl): Don't check for shadowing of DECL_ARTIFICIAL
5510         PARM_DECLs.
5511
5512         PR c++/9791
5513         * class.c (get_basefndecls): Use lookup_fnfields_1.
5514
5515 2003-03-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5516
5517         PR c++/9188
5518         * parser.c (cp_parser_type_parameter): Remove redundant `expect'
5519         in error message.
5520         (cp_parser_single_declaration): Likewise.
5521
5522 2003-03-05  Jason Merrill  <jason@redhat.com>
5523
5524         PR c++/9440
5525         * call.c (build_conditional_expr): Use convert rather than an
5526         explicit NOP_EXPR.
5527
5528 2003-03-02  Matt Austern  <austern@apple.com>
5529
5530         * decl.c (cp_binding_level): Add static_decls varray member.
5531         (add_decl_to_level): Add static/inline namespace scope
5532         declarations to static_decls array.
5533         (wrapup_global_for_namespace): Pass static_decls only, instead of
5534         all decls, to wrapup_global_declarations/check_global_declarations.
5535         (push_namespace): Initialize static_decls for ordinary namespaces.
5536         (cxx_init_decl_processing): Initialize static_decls for global
5537         namespace.
5538
5539 2003-03-05  Mark Mitchell  <mark@codesourcery.com>
5540
5541         * class.c (end_of_class): Correct thinko.
5542
5543 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
5544
5545         * config-lang.in: Replace ${libstdcxx_version} by its value.
5546
5547 2003-03-04  Gabriel Dos Reis <gdr@integrable-solutions.net>
5548
5549         * cp-tree.h (cxx_saved_binding): Declare.
5550         (struct saved_scope): Adjust type of field 'old_binding'.
5551         * decl.c (cxx_saved_binding_make): New macro.
5552         (struct cxx_saved_binding): Define.
5553         (store_bindings): Adjust prototype.  Use cxx_saved_binding to save
5554         C++ bindings.
5555         (maybe_push_to_top_level): Adjust local variable type.
5556         (pop_from_top_level): Likewise.
5557
5558 2003-03-04  Tom Tromey  <tromey@redhat.com>
5559
5560         * Make-lang.in (c++.tags): New target.
5561
5562 2003-03-04  Neil Booth  <neil@daikokuya.co.uk>
5563
5564         * Make-lang.in: Update.
5565
5566 2003-03-03  Jason Merrill  <jason@redhat.com>
5567
5568         * decl.c (finish_enum): Do set the type in a template. Simplify.
5569         * pt.c (tsubst_enum, tsubst_copy): Revert last patch.
5570
5571 2003-03-03  Mark Mitchell  <mark@codesourcery.com>
5572
5573         PR c++/9878
5574         * call.c (convert_class_to_reference): Correct conversion
5575         sequences.
5576         (reference_binding): Add ref_bound_directly_to_rvalue_p parameter.
5577         (implicit_conversion): Adjust call to reference_binding.
5578         (add_candidate): Change type of candidates parameter.
5579         (add_function_candidate): Likewise.
5580         (add_conv_candidate): Likewise.
5581         (build_builtin_candidate): Likewise.
5582         (add_builtin_candidate): Likewise.
5583         (add_builtin_candidates): Likewise.
5584         (add_template_candidate_real): Likewise.
5585         (add_template_candidate): Likewise.
5586         (add_template_conv_candidate): Likewise.
5587         (build_user_type_conversion_1): Adjust accordingly.
5588         (build_object_call): Likewise.
5589         (build_conditional_expr): Likewise.
5590         (add_candidates): Likewise.
5591         (build_new_op): Likewise.
5592         (convert_like_real): Use USER_CONV_CAND.  Use build_nop.
5593         (build_new_method_call): Adjust calls to add_function_candidate.
5594         (make_temporary_var_for_ref_to_temp): New function.
5595         (initialize_reference): Add decl parameter.
5596         * class.c (build_rtti_vtbl_entries): Use build_address and
5597         build_nop.
5598         * cp-tree.h (initialize_reference): Change prototype.
5599         (make_temporary_var_for_ref_to_temp): New function.
5600         (build_type_conversion): Change prototype.
5601         (build_address): New function.
5602         (build_nop): Likewise.
5603         * cvt.c (cp_convert_to_pointer): Adjust call to
5604         build_type_conversion.  Avoid indicating redundant NOP_EXPRs.
5605         Use build_nop.
5606         (convert_to_pointer_force): Use build_nop.
5607         (build_up_reference): Use make_temporary_var_for_ref_to_temp.
5608         (convert_to_reference): Adjust call to build_type_conversion.
5609         (ocp_convert): Likewise.
5610         (build_type_conversion): Remove for_sure parameter.
5611         * decl.c (grok_reference_init): Use initialize_reference.
5612         * typeck.c (build_address): New function.
5613         (build_nop): Likewise.
5614         (build_unary_op): Use them.
5615         (build_ptrmemfunc): Tidy slightly.
5616         (convert_for_initialization): Adjust call to
5617         initialize_reference.
5618         * typeck2.c (store_init_value): Remove #if 0'd code.
5619
5620 2003-03-03  Jason Merrill  <jason@redhat.com>
5621
5622         * decl.c (start_function): Clear DECL_NUM_STMTS.
5623
5624         * class.c (get_vtable_decl): Use vtbl_type_node.
5625         (build_primary_vtable): Check for it.
5626
5627 2003-03-02  Aldy Hernandez  <aldyh@redhat.com>
5628
5629         * decl.c (check_initializer): Check for vector_opaque_p.
5630
5631 2003-03-02  Ashif Harji  <asharji@uwaterloo.ca>
5632
5633         * lang-specs.h (default_compilers): Add -no-integrated-cpp flag to
5634           invoke an external cpp during compilation.
5635
5636 2003-03-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5637
5638         * decl.c (duplicate_decls): Convert use of warning_with_decl() to
5639         that of warning().
5640         (start_decl): Likewise.
5641         (start_function): Likewise.
5642
5643 2003-03-01  Neil Booth  <neil@daikokuya.co.uk>
5644
5645         * Make-lang.in (CXX_C_OBJS): Update.
5646
5647 2003-02-28  Mark Mitchell  <mark@codesourcery.com>
5648
5649         PR c++/9892
5650         * pt.c (instantiate_decl): Clear DECL_RTL for a VAR_DECL when
5651         instantiating it.
5652
5653 2003-02-28  Aldy Hernandez  <aldyh@redhat.com>
5654
5655         * parser.c (cp_parser_init_declarator): Revert opaque
5656         vector_opaque_p change.
5657         Do not include target.h.
5658
5659 2003-02-28  Mark Mitchell  <mark@codesourcery.com>
5660
5661         PR c++/9879
5662         * cp-tree.h (build_zero_init): Add parameter.
5663         * decl.c (cp_finish_decl): Adjust call.
5664         * init.c (build_zero_init): Add nelts parameter.  Adjust recursive
5665         calls.
5666         (build_default_init): Add nelts parameter.  Adjust calls to
5667         build_zero_init.
5668         (build_new_1): Adjust call to build_default_init.
5669         * typeck2.c (process_init_constructor): Adjust call to build_zero_init.
5670
5671 2003-02-26  Devang Patel  <dpatel@apple.com>
5672
5673         * decl.c (finish_enum): Merge two 'for' loops. Copy value node if
5674         required.  Postpone enum setting for template decls.
5675         (build_enumerator): Delay copying value node until finish_enum
5676         (). Remove #if 0'ed code.
5677         * pt.c (tsubst_enum): Set TREE_TYPE and copy value node.
5678         (tsubst_copy): Add check for enum type.
5679
5680 2003-02-25  Mark Mitchell  <mark@codesourcery.com>
5681
5682         PR c++/9683
5683         * decl2.c (prune_vars_needing_no_initialization): Do not throw
5684         away initializations for DECL_EXTERNAL VAR_DECLs.
5685         (finish_file): Adjust accordingly.
5686         * pt.c (instantiate_decl): Do not defer VAR_DECLs.
5687
5688 2003-02-24 Gabriel Dos Reis  <gdr@integrable-solutions.net>
5689
5690         * decl.c (add_binding): Time TV_NAME_LOOKUP.
5691         (push_class_binding): Likewise.
5692         (set_namespace_binding): Likewise.
5693
5694 2003-02-24  Mark Mitchell  <mark@codesourcery.com>
5695
5696         PR c++/9836
5697         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE): Do not skip from
5698         specializations back to the main template.
5699         * parser.c (cp_parser_diagnose_invalid_type_name):Adjust use.
5700         * pt.c (resolve_typename_type): Likewise.
5701
5702 2003-02-24  Jeffrey D. Oldham  <oldham@codesourcery.com>
5703
5704         PR c++/9778
5705         * pt.c (tsubst_copy_and_build): For a templated function inside a
5706         scope, process template arguments.
5707
5708 2003-02-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5709
5710         PR c++/9602
5711         * typeck2.c (abstract_virtuals_error): Don't check when
5712         TYPE is still template parameter dependent.
5713
5714 2003-02-23  Mark Mitchell  <mark@codesourcery.com>
5715
5716         PR c++/5333
5717         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE): New macro.
5718         * parser.c (cp_parser_diagnose_invalid_type_name): Use it.
5719         * pt.c (instantiate_class_template): Don't try to instantiate
5720         dependent types.
5721         (resolve_typename_type): Use CLASSTYPE_PRIMARY_TEMPLATE.
5722
5723 2003-02-21  Mark Mitchell  <mark@codesourcery.com>
5724
5725         PR c++/9749
5726         * decl.c (grokdeclarator): Do not allow parameters with variably
5727         modified types.
5728
5729 2003-02-21  Nathan Sidwell  <nathan@codesourcery.com>
5730
5731         * search.c (grow_bfs_bases): Remove. Fold into ...
5732         (bfs_walk): ... here, fix fencepost error. Fix merge lossage
5733         in previous patch.
5734
5735 2003-02-20  Mark Mitchell  <mark@codesourcery.com>
5736
5737         PR c++/9729
5738         * mangle.c (mangle_conv_op_name_for_type): Issue an error message
5739         when the G++ 3.2 ABI prevents correct compilation.
5740
5741 2003-02-20  Nathan Sidwell  <nathan@codesourcery.com>
5742
5743         Change base class access representation. Share virtual base
5744         binfos.
5745         * cp/call.c (build_special_member_call): Remove binfo_for_vbase
5746         call.
5747         * cp/class.c (build_base_path): Likewise.
5748         (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
5749         (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
5750         (make_new_vtable): Adjust.
5751         (force_canonical_binfo_r): Delete.
5752         (force_canonical_binfo): Delete.
5753         (mark_primary_virtual_base): Delete.
5754         (dfs_unshared_virtual_bases): Delete.
5755         (mark_primary_bases): Adjust.
5756         (maybe_warn_about_overly_private_class): Adjust.
5757         (dfs_base_derived_from): Delete.
5758         (base_derived_from): Follow the inheritance chain.
5759         (struct find_final_overrider_data): Add vpath member.
5760         (dfs_find_final_overrider): Adjust.
5761         (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
5762         (find_final_overrider): Adjust.
5763         (update_vtable_entry_for_fn): Adjust.
5764         (modify_all_vtables): Adjust.
5765         (walk_subobject_offsets): Adjust.
5766         (layout_nonempty_base_or_field): Adjust.
5767         (layout_empty_base): Remove last parameter. Adjust.
5768         (build_base_field): Adjust.
5769         (build_base_fields): Adjust.
5770         (propagate_binfo_offsets): Remove last parameter. Adjust.
5771         (dfs_set_offset_for_unshared_vbases): Delete.
5772         (layout_virtual_bases): Adjust.
5773         (finish_struct_1): Adjust.
5774         (init_class_processing): Don't init access nodes.
5775         (dfs_get_primary_binfo): Delete.
5776         (get_primary_binfo): Adjust.
5777         (dump_class_hierarchy_r): Remove most derived arg, add IGO
5778         parameter. Adjust.
5779         (dump_class_hierarchy): Adjust.
5780         (finish_vtbls): Adjust.
5781         (get_original_base): Delete.
5782         (build_vtt_inits): Adjust.
5783         (dfs_build_secondary_vptr_vtt_inits): Adjust.
5784         (dfs_ctor_vtable_bases_queue_p): Adjust.
5785         (build_ctor_vtbl_group): Adjust.
5786         (dfs_accumulate_vtbl_inits): Adjust.
5787         (build_vtbl_initializer): Adjust.
5788         (build_vbase_offset_vtbl_entries): Adjust.
5789         (add_vcall_offset_vtbl_entries_1): Adjust.
5790         * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
5791         (access_*_node): Remove.
5792         (CANONICAL_BINFO): Delete.
5793         (BINFO_UNSHARED_MARKED): Remove.
5794         (BINFO_MARKED): Set LANG_FLAG_0 directly.
5795         (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
5796         (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
5797         (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
5798         Delete.
5799         (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
5800         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
5801         (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
5802         Delete.
5803         (BINFO_DEPENDENT_BASE_P): New.
5804         (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
5805         index.
5806         (markedp, unmarkedp): Adjust.
5807         (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
5808         dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
5809         find_vbase_instance, binfo_for_vbase): Delete.
5810         (copied_binfo, original_binfo): Declare.
5811         (finish_base_specifier): Add virtual_p arg.
5812         (unshare_base_binfos): Delete.
5813         (copy_base_binfos): Declare.
5814         (reverse_path): Delete.
5815         * cp/decl.c (xref_basetypes): Access and virtuality passed
5816         differently. Don't copy direct base binfos here. Call
5817         copy_base_binfos.
5818         * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
5819         (initialize_vtbl_ptrs): Adjust.
5820         (expand_member_init): Adjust.
5821         * cp/parser.c (cp_parser_base_specifier): Adjust.
5822         * cp/pt.c (instantiate_class_template): Adjust.
5823         (get_template_base_recursive): Adjust.
5824         * cp/rtti.c (get_pseudo_ti_init): Adjust.
5825         (get_pseudo_ti_desc): Adjust.
5826         * cp/tree.c (unshare_base_binfos): Rename to ...
5827         (copy_base_binfos): ... here, reimplement.
5828         (make_binfo): Set BINFO_DEPENDENT_BASE_P.
5829         (reverse_path): Remove.
5830         * cp/typeck.c (get_delta_difference): Adjust error messages.
5831         * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
5832         * cp/search.c (lookup_base_r): Adjust.
5833         (dynamic_cast_base_recurse): Adjust.
5834         (canonical_binfo): Remove.
5835         (dfs_canonical_queue): Remove.
5836         (dfs_assert_unmarked_p): Remove.
5837         (assert_canonical_unmarked): Remove.
5838         (shared_marked_p, shared_unmarked_p): Remove.
5839         (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
5840         (dfs_access_in_type): Adjust.
5841         (access_in_type): Adjust.
5842         (dfs_accessible_queue_p): Adjust.
5843         (dfs_accessible_p): Adjust.
5844         (is_subobject_of_p_1, is_subobject_of_p): Remove.
5845         (struct lookup_field_info): Remove from_dep_base_p field.
5846         (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
5847         (lookup_field_r): Remove dependent base code.
5848         (lookup_member): Likewise.
5849         (dfs_walk, dfs_walk_real): Add access arg to queue fn.
5850         (dfs_unmarked_real_bases_queue_p): Remove.
5851         (dfs_marked_real_bases_queue_p): Remove.
5852         (dfs_skip_vbases): Remove.
5853         (dfs_get_pure_virtuals): Adjust.
5854         (markedp, unmarkedp): Adjust.
5855         (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
5856         (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
5857         (dfs_unmark): Adjust.
5858         (dfs_get_vbase_types):Remove.
5859         (dfs_build_inheritance_graph_order): Remove.
5860         (get_vbase_types): Remove
5861         (dfs_find_vbase_instance): Remove.
5862         (find_vbase_instance): Remove.
5863         (dfs_debug_unmarkedp): Adjust.
5864         (dependent_base_p): Remove.
5865         (dfs_push_type_decls): Adjust.
5866         (dfs_push_decls): Adjust.
5867         (dfs_no_overlap_yet): Adjust.
5868         (copied_binfo): New function.
5869         (original_binfo): New function.
5870         (binfo_for_vbase): Remove.
5871
5872 2003-02-18  Zack Weinberg  <zack@codesourcery.com>
5873
5874         * cp/search.c (grow_bfs_bases): New subroutine of bfs_walk.
5875         (bfs_walk): Rewritten using circular queue of BINFO_BASETYPES
5876         vectors, for speed.
5877
5878 2003-02-18  Mark Mitchell  <mark@codesourcery.com>
5879
5880         PR c++/9704
5881         * class.c (layout_class_type): In the 3.2 ABI, take into account
5882         trailing bit fields when computing CLASSTYPE_SIZE_UNIT.
5883
5884 2003-02-18  Matt Austern <austern@apple.com>
5885
5886         * cp/cp-lang.c: Change lang hooks so that final_write_globals does
5887         nothing for C++.
5888         * cp/decl.c (wrapup_globals_for_namespace): Remove special
5889         handling of global namespace.
5890
5891 2003-02-18  Geoffrey Keating  <geoffk@apple.com>
5892
5893         * cp-tree.h (rid_to_yy): Delete.
5894         (C_RID_YYCODE): Delete.
5895         (finish_file): Delete redundant declaration.
5896
5897 2003-02-18  Jason Merrill  <jason@redhat.com>
5898
5899         PR c++/9623
5900         * decl.c (reshape_init): Don't mess with initializer labels.
5901
5902         PR c++/9485
5903         * parser.c (cp_parser_postfix_expression): Set idk properly for
5904         object->scope::member.
5905
5906 2003-02-18  Ben Elliston  <bje@redhat.com>
5907
5908         PR other/7350
5909         * decl.c (duplicate_decls): Fix typo in comment.
5910
5911 2003-02-17  Michael Elizabeth Chastain <mec@shout.net>
5912
5913         PR debug/9717
5914         * class.c (build_base_field): Mark fields for base classes with
5915         DECL_IGNORED_P.
5916
5917 2003-02-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5918
5919         PR c++/9457
5920         * pt.c (tsubst_copy_and_build) [CONSTRUCTOR]: Substitute
5921         CONSTRUCTOR_ELTS only once.
5922
5923 2003-02-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5924
5925         PR c++/9459
5926         * error.c (dump_type_prefix): Handle TYPEOF_TYPE.
5927         (dump_type_suffix): Likewise.
5928
5929 2003-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5930
5931         * search.c: ANSIfy function declarations and definitions.
5932         * cp-tree.h (lookup_field, lookup_member): Last parameter is a bool.
5933         * call.c (build_method_call, resolve_scoped_fn_name,
5934         build_java_interface_fn_ref): Adjust lookup_field, lookup_member
5935         calls.
5936         * class.c (handle_using_decl): Likewise.
5937         * decl.c (make_typename_type, make_unmound_class_template,
5938         start_decl, compute_array_index_type): Likewise.
5939         * decl2.c (build_expr_from_tree, build_call_from_tree): Likewise.
5940         * init.c (expand_member_init, build_member_call): Likewise.
5941         * pt.c (tsubst_copy, tsubst_copy_and_build, do_decl_instantiation,
5942         resolve_typename_type): Likewise.
5943         * typeck.c (lookup_destructor, finish_class_member_access_exprm
5944         build_prememfunc_access_expr): Likewise.
5945
5946 2003-02-13  Gabriel Dos Reis <gdr@integrable-solutions.net>
5947
5948         * decl2.c: Include "timevar.h".
5949         (namespace_ancestor): Time name lookup.
5950         (add_using_namespace): Likewise.
5951         (lookup_using_namespace): Likewise.
5952         (qualified_lookup_using_namespace): Likewise.
5953         (decl_namespace): Likewise.
5954         (lookup_arg_dependent): Likewise.
5955         * lex.c (do_identifier): Likewise.
5956         (do_scoped_id): Likewise.
5957         * pt.c (lookup_template_class): Likewise.
5958
5959 2003-02-14   Andrew Pinski <pinskia@physics.uc.edu>
5960
5961         * decl.c: (define_label): Fix warning for return 0 instead of NULL.
5962
5963 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5964
5965         * decl.c: Include "timevar.h".
5966         (poplevel): Time name lookup.
5967         (find_binding): Likewise.
5968         (push_namespace): Likewise.
5969         (pop_nested_namespace): Likewise.
5970         (store_bindings): Likewise.
5971         (maybe_push_to_top_level): Likewise.
5972         (pop_from_top_level): Likewise.
5973         (push_local_name): Likewise.
5974         (pushtag): Likewise.
5975         (pushdecl): Likewise.
5976         (pushdecl_with_scope): Likewise.
5977         (pushdecl_namespace_level): Likewise.
5978         (pushdecl_top_level): Likewise.
5979         (pushdecl_class_level): Likewise.
5980         (push_class_level_binding): Likewise.
5981         (push_using_decl): Likewise.
5982         (push_using_directive): Likewise.
5983         (push_overloaded_decl): Likewise.
5984         (lookup_label): Likewise.
5985         (define_label): Likewise.
5986         (lookup_tag): Likewise.
5987         (lookup_tag_reverse): Likewise.
5988         (lookup_namespace_name): Likewise.
5989         (select_decl): Likewise.
5990         (unqualified_namespace_lookup): Likewise.
5991         (lookup_name_real): Likewise.
5992         (lookup_name_current_level): Likewise.
5993         (lookup_type_current_level): Likewise.
5994         (maybe_inject_for_scope_var): Likewise.
5995         (xref_tag): Likewise.
5996
5997         * Make-lang.in (cp/decl.o): Add dependency on timevar.h
5998
5999 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
6000
6001         * decl.c (build_enumerator):  Remove unneeded test.
6002
6003 2003-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
6004
6005         * cp-tree.h (struct lang_type_header): Make all fields unsigned
6006         char.
6007
6008 2003-02-03  Mark Mitchell  <mark@codesourcery.com>
6009
6010         PR c++/7129
6011         * call.c (z_candidate): Add args.
6012         (convert_class_to_reference): Set it.
6013         (implicit_conversion): Tidy.
6014         (add_candidate): Add args parameter.
6015         (add_function_candidate): Adjust call to add_candidate.
6016         (add_conv_candidate): Likewise.
6017         (build_builtin_candidate): Likewise.
6018         (build_user_type_conversion_1): Eliminate wasteful tree_cons
6019         usage.
6020         (build_new_function_call): Likewise.
6021         (build_object_call): Likewise.
6022         (add_candidates): New function.
6023         (build_new_op): Use it.
6024         (covert_like_real): Adjust call to build_over_call.
6025         (build_over_call): Remove args parameter.
6026         * operators.def: Add <?= and >?=.
6027
6028 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
6029
6030         * typeck.c (build_indirect_ref): Don't check flag_volatile.
6031
6032 2003-01-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6033
6034         PR c++/8849
6035         * pt.c (resolve_overloaded_unification): Handle FUNCTION_DECL.
6036
6037 2003-01-31  Nathan Sidwell  <nathan@codesourcery.com>
6038
6039         * cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
6040         BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
6041         (BINFO_LANG_ELTS): New #define.
6042         * tree.c (make_binfo): Use BINFO_LANG_ELTS.
6043
6044 2003-01-30  Geoffrey Keating  <geoffk@apple.com>
6045
6046         * cp/Make-lang.in: Remove -Wno-error from cp/decl.o.
6047
6048 2003-01-30  Mark Mitchell  <mark@codesourcery.com>
6049
6050         * class.c (check_field_decls): Only check C_TYPE_FIELDS_READONLY
6051         for class types.
6052         * cp-tree.h (C_TYPE_FIELDS_READONLY): Use a lang-specific bit
6053         rather than TYPE_LANG_FLAG_0.
6054         (TYPE_BUILT_IN): Remove.
6055         (TYPE_DEPENDENT_P): New macro.
6056         (TYPE_DEPENDENT_P_VALID): Likewise.
6057         (lang_type_class): Add fields_readonly.
6058         * decl.c (record_builtin_type): Don't set TYPE_BUILT_IN.
6059         * pt.c (dependent_type_p_r): New function, split out from ...
6060         (dependent_type_p): ... here.  Memoize results.
6061         * search.c (dependent_base_p): Use dependent_type_p, not
6062         uses_template_parms.
6063         * typeck.c (build_modify_expr): Only check C_TYPE_FIELDS_READONLY
6064         for class types.
6065
6066 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
6067
6068         * call.c (build_field_call): Use build_new_op, not build_opfncall.
6069         (prep_operand): New function.
6070         (build_new_op): Use it.  Remove dead code.
6071         * class.c (pushclass): Change "modify" parameter type from int to
6072         bool.
6073         (currently_open_class): Use same_type_p, not pointer equality.
6074         (push_nested_class): Adjust calls to pushclass, remove modify
6075         parameter.
6076         * cp-tree.h (INTEGRAL_OR_ENUMERATION_TYPE_P): New macro.
6077         (pushclass): Change prototype.
6078         (push_nested_class): Likewise.
6079         (grokoptypename): Remove.
6080         (build_opfncall): Remove.
6081         (value_dependent_expression_p): Declare.
6082         (resolve_typename_type): Likewise.
6083         (resolve_typename_type_in_current_instantiation): Likewise.
6084         (enter_scope_of): Remove.
6085         (tsubst): Remove.
6086         (tsubst_expr): Likewise.
6087         (tsubst_copy): Likewise.
6088         (tsubst_copy_and_build): Likewise.
6089         * decl.c (warn_about_implicit_typename_lookup): Remove.
6090         (finish_case_label): Return error_mark_node for erroneous labels.
6091         (start_decl): Adjust calls to push_nested_class.
6092         (grokfndecl): Call push_scope/pop_scope around call to
6093         duplicate_decls.
6094         (grokdeclarator): Do not call tsubst.
6095         (start_function): Adjust calls to push_nested_class.
6096         * decl2.c (grok_array_decl): Use build_new_op, not build_opfncall.
6097         (check_classfn): Use push_scope/pop_scope around type comparisions.
6098         (grokoptypename): Remove.
6099         (push_sscope): Adjust call to push_nested_class.
6100         * error.c (dump_type): Show cv-qualification of typename types.
6101         * init.c (build_member_call): Use build_new_op, not
6102         build_opfncall.
6103         * method.c (build_opfncall): Remove.
6104         * parser.c (cp_parser): Add allow_non_constant_expression_p and
6105         non_constant_expression_p.
6106         (cp_parser_constant_expression): Adjust prototype.
6107         (cp_parser_resolve_typename_type): Remove.
6108         (cp_parser_non_constant_expression): New function.
6109         (cp_parser_non_constant_id_expression): Likewise.
6110         (cp_parser_new): Set allow_non_constant_expression_p and
6111         non_constant_expression_p.
6112         (cp_parser_primary_expression): Reject `this' and `va_arg' in
6113         constant-expressions.  Note that dependent names aren't really
6114         constant.
6115         (cp_parser_postfix_expression): Reject conversions to non-integral
6116         types in constant-expressions.  Neither are increments or
6117         decrements.
6118         (cp_parser_unary_expression): Reject increments and decrements in
6119         constant-expressions.
6120         (cp_parser_direct_new_declarator): Adjust call to
6121         cp_parser_constant_expression.
6122         (cp_parser_cast_expression): Reject conversions to non-integral
6123         types in constant-expressions.
6124         (cp_parser_assignment_expression): Rejects assignments in
6125         constant-expressions.
6126         (cp_parser_expression): Reject commas in constant-expressions.
6127         (cp_parser_labeled_statement): Adjust call to
6128         cp_parser_constant_expression.
6129         (cp_parser_direct_declarator): Simplify array bounds, even in
6130         templates, when they are non-dependent.  Use
6131         resolve_typename_type, not cp_parser_resolve_typename_type.
6132         (cp_parser_class_head): Use resolve_typename_type, not
6133         cp_parser_resolve_typename_type.
6134         (cp_parser_member_declaration): Adjust call to
6135         cp_parser_constant_expression.
6136         (cp_parser_constant_initializer): Likewise.
6137         (cp_parser_constructor_declarator): Use resolve_typename_type, not
6138         cp_parser_resolve_typename_type.
6139         (cp_parser_late_parsing_default_args): Adjust call to
6140         push_nested_class.
6141         * pt.c (tsubst): Give it internal linkage.
6142         (tsubst_expr): Likewise.
6143         (tsubst_copy): Likewise.
6144         (tsubst_copy_and_build): Likewise.
6145         (push_access_scope_real): Likewise.
6146         (tsubst_friend_class): Likewise.
6147         (instantiate_class_template): Adjust call to pushclass.
6148         (value_dependent_expression_p): Give it external linkage.
6149         Robustify.
6150         (resolve_typename_type): New function.
6151         * semantics.c (finish_call_expr): Use build_new_op, not
6152         build_opfncall.
6153         (begin_constructor_declarator): Remove.
6154         (begin_class_definition): Adjust call to pushclass.
6155         (enter_scope_of): Remove.
6156         * typeck.c (comptypes): Resolve typename types as appropriate.
6157         (build_x_indirect_ref): Use build_new_op, not build_opfncall.
6158         (build_x_compound_expr): Likewise.
6159         (build_modify_expr): Likewise.
6160         (build_x_modify_expr): Likewise.
6161         * typeck2.c (build_x_arrow): Likewise.
6162
6163 2003-01-29  Fariborz Jahanian  <fjahanian@apple.com>
6164
6165         * pt.c (last_pending_template) Declare GTY().
6166
6167 2003-01-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6168
6169         PR c++/8591
6170         * parser.c (cp_parser_elaborated_type_specifier): Convert
6171         TEMPLATE_DECL to TYPE_DECL only when processing template friends.
6172         (cp_parser_maybe_treat_template_as_class): Remove redundant tests.
6173
6174 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
6175
6176         PR c++/9437
6177         * pt.c (unify): Don't unify '*T' with 'U C::*'.
6178
6179         PR c++/3902
6180         * parser.c (cp_parser_decl_specifier_seq): Cannot have constructor
6181         inside a declarator.
6182
6183 2003-01-27  Nathan Sidwell  <nathan@codesourcery.com>
6184
6185         * class.c (update_vtable_entry_for_fn): Add index parameter.
6186         Generate vcall thunk for covariant overriding from a virtual
6187         primary base.
6188         (dfs_modify_vtables): Adjust.
6189
6190 2003-01-25  Nathan Sidwell  <nathan@codesourcery.com>
6191
6192         PR c++/9403
6193         * parser.c (cp_parser_class_or_namespace_name): Reject duplicate
6194         template keyword.
6195         (cp_parser_base_specifier): Look for and consume a
6196         TEMPLATE keyword. Replace switch with array index.
6197
6198         PR c++/795
6199         * semantics.c (finish_non_static_data_member): Remember the
6200         field's type even in a template.
6201
6202         PR c++/9415
6203         * pt.c (tsubst_copy_and_build, CALL_EXPR): BASELINK exprs are
6204         already scoped.
6205
6206         PR c++/8545
6207         * parser.c (cp_parser_cast_expression): Be more tentative.
6208
6209 2003-01-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6210
6211         * cp-tree.h (flagged_type_tree_s): Remove.
6212         (check_for_new_type): Likewise.
6213         * typeck2.c (check_for_new_type): Likewise.
6214
6215 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
6216
6217         * dump.c: ANSIfy function declarations and definitions.
6218
6219         * cp-tree.h, decl.h: Get rid of PARAMS.  Again.
6220
6221 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
6222
6223         PR c++/9354
6224         * init.c (build_new): Set the type of the new-expression, even
6225         when processing_templte_decl.
6226
6227         PR c++/9216
6228         * parser.c (cp_parser_primary_expression): Improve error message
6229         for templates used in an expression context.
6230
6231         PR c++/8696
6232         * parser.c (cp_parser_decl_specifier_seq): Commit to tentative
6233         parse when encountering "typedef".
6234
6235 2003-01-22  Nathanael Nerode  <neroden@gcc.gnu.org>
6236
6237         * class.c, parser.c: ANSIfy function definitions and declarations.
6238
6239 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
6240
6241         PR c++/9328
6242         * error.c (dump_decl): For an OVERLOAD, just print the name of the
6243         function; it doesn't make sense to try to print its type.
6244         * semantics.c (finish_typeof): Issue errors about invalid uses.
6245
6246         PR c++/9298
6247         * parser.c (cp_parser_consume_semicolon_at_end_of_statement): New
6248         function.
6249         (cp_parser_expression_statement): Use it.
6250         (cp_parser_explicit_instantiation): Likewise.
6251         * pt.c (do_decl_instantiation): Improve error handling logic.
6252
6253 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
6254
6255         PR c++/9384
6256         * parser.c (cp_parser_using_declaration): Issue error messages
6257         about name resolution failures here.
6258
6259         PR c++/9388
6260         * class.c (currently_open_derived_class): Use dependent_type_p.
6261         * cp-tree.h (dependent_type_p): New function.
6262         (dependent_template_arg_p): Likewise.
6263         (dependent_template_p): Likewise.
6264         (type_dependent_expression_p): Likewise.
6265         * parser.c (cp_parser_dependent_type_p): Remove.
6266         (cp_parser_value_dependent_type_p): Likewise.
6267         (cp_parser_type_dependent_expression_p): Likewise.
6268         (cp_parser_dependent_template_arg_p): Likewise.
6269         (cp_parser_dependent_template_id_p): Likewise.
6270         (cp_parser_dependent_template_p): Likewise.
6271         (cp_parser_diagnose_invalid_type_name): Replace
6272         cp_parser_dependent_type_p with dependent_type_p, etc.
6273         (cp_parser_primary_expresion): Likewise.
6274         (cp_parser_nested_name_specifier_opt): Likewise.
6275         (cp_parser_postfix_expression): Likewise.
6276         (cp_parser_unary_expression): Likewise.
6277         (cp_parser_template_name): Likewise.
6278         (cp_parser_class_name): Likewise.
6279         (cp_parser_lookup_name): Likewise.
6280         * pt.c (dependent_type_p): New function.
6281         (value_dependent_expression_p): Likewise.
6282         (type_dependent_expression_p): Likewise.
6283         (dependent_template_arg_p): Likewise.
6284         (dependent_template_id_p): Likewise.
6285         (dependent_template_p): Likewise.
6286
6287         PR c++/9285
6288         PR c++/9294
6289         * parser.c (cp_parser_simple_declaration): Return quickly when
6290         encountering errors.
6291
6292 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6293
6294         Make-lang.in (cp/decl.o-warn): Add -Wno-error.
6295
6296 2003-01-17  Jason Merrill  <jason@redhat.com>
6297
6298         PR c++/9167, c++/9358
6299         * decl.c (require_complete_types_for_parms): Also update DECL_ARG_TYPE.
6300
6301 2003-01-17  Jason Merrill  <jason@redhat.com>
6302
6303         PR c++/9342
6304         * call.c (build_conditional_expr): Always do lvalue-rvalue
6305         conversion.
6306
6307 2003-01-17  Mark Mitchell  <mark@codesourcery.com>
6308
6309         PR c++/9294
6310         * cp-tree.def (BASELINK): Make it class 'x', not class 'e'.
6311         * cp-tree.h (BASELINK_BINFO): Adjust.
6312         (BASELINK_FUNCTIONS): Likewise.
6313         (BASELINK_ACCESS_BINFO): Likewise.
6314         (tree_baselink): New structure.
6315         (cp_tree_node_structure_enum): Add TS_CP_BASELINK.
6316         (lang_tree_node): Add baselink.
6317         * decl.c (cp_tree_node_structure): Add BASELINK case.
6318         * search.c (build_baselink): Adjust.
6319         * tree.c (cp_walk_subtrees): Add BASELINK case.  Remove BASELINK_P
6320         test from TREE_LIST case.
6321
6322         PR c++/9272
6323         * parser.c (cp_parser_constructor_declarator_p): Do not assume
6324         that a constructor cannot be declared outside of its own class.
6325
6326         * parser.c (cp_parser_resolve_typename_type): If the scope cannot
6327         be resolved, neither can the qualified name.
6328
6329         * rtti.c (get_pseudo_ti_desc): Fix thinko.
6330
6331 2003-01-16  Jason Merrill  <jason@redhat.com>
6332
6333         PR c++/8564
6334         * init.c (build_vec_init): Re-add maxindex parm.
6335         (perform_member_init, build_aggr_init): Pass it.
6336         (build_new_1): Pass it. Use an incomplete array type for full_type.
6337         * typeck.c (build_modify_expr): Pass it.
6338         * cp-tree.h: Adjust.
6339
6340 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
6341
6342         * cp-tree.h (tsubst_copy_and_build): New declaration.
6343         * pt.c (tsubst_copy): Remove 'build_expr_from_tree' from comment.
6344         (tsubst_expr): Use 'tsubst_copy_and_build'.  Update initial comment.
6345         (tsubst_copy_and_build): New function.
6346
6347 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
6348
6349         * cp-tree.h (lang_type_class): Remove is_partial_instantiation.
6350         (PARTIAL_INSTANTIATION_P): Remove.
6351         (IMPLICIT_TYPENAME_P): Likewise.
6352         (IMPLICIT_TYPENAME_TYPE_DECL_P): Likewise.
6353         (build_typename_type): Remove declaration.
6354         (parmlist_is_exprlist): Likewise.
6355         * decl.c (build_typename_type): Make it static, remove third
6356         parameter.
6357         (push_class_binding): Don't do implicit typename stuff.
6358         (make_typename_type): Likewise.
6359         (lookup_name_real): Likewise.
6360         (grokdeclarator): Don't try to convert declarations into
6361         initializations.  Don't do implicit typename stuff.
6362         (parmlist_is_exprlist): Remove.
6363         (xref_basetypes): Simplify.
6364         * decl2.c (grokfield): Don't try to convert declarations into
6365         initializations.
6366         (build_anon_union_vars): Do this while processing templates, too.
6367         (finish_anon_union): Likewise.
6368         * error.c (dump_type): Remove implicit typename handling.
6369         * parser.c (cp_parser_diagnose_invalid_type_name): New method.
6370         (cp_parser_primary_expression): Correct handling of names not
6371         found by unqualified name lookup in templates.
6372         (cp_parser_nested_name_specifier_opt): Avoid checking dependency
6373         of types when possible.
6374         (cp_parser_simple_declaration): Complain intelligently about some
6375         invalid declarations.
6376         (cp_parser_member_declaration): Likewise.
6377         (cp_parser_constructor_declarator_p): Don't check when we're in a
6378         function scope.
6379         * pt.c (instantiate_class_template): Remove
6380         PARTIAL_INSTANTIATION_P gunk.
6381         * search.c (lookup_field_r): Don't build implicit typenames.
6382         (marked_pushdecls_p): Don't enter dependent base types.
6383         (unmarked_pushdecls_p): Likewise.
6384         * semantics.c (begin_class_definition): Remove implicit typename
6385         stuff.
6386
6387 2003-01-16  Nathan Sidwell  <nathan@codesourcery.com>
6388
6389         PR c++/9212
6390         * parser.c (cp_parser_direct_declarator): If accepting either
6391         abstract or named, the name must be an unqualified-id.
6392
6393 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6394
6395         * class.c (layout_virtual_bases): Avoid signed/unsigned warning.
6396
6397 2003-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6398
6399         * decl2.c (check_classfn): Fix uninitialized warning.
6400         (build_anon_union_vars): Likewise.
6401         * pt.c (tsubst_copy): Likewise.
6402
6403 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
6404
6405         Further conform g++'s __vmi_class_type_info to the C++ ABI
6406         specification.
6407         * rtti.c (dfs_class_hint_mark): Do not set hints not specified by
6408         the specification.
6409         (class_hint_flags): Likewise.
6410
6411 2003-01-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6412
6413         * config-lang.in: Add semantics.c to gtfiles.
6414         * cp-tree.h (flagged_type_tree_s): Remove lookups field.
6415         (saved_scope): Likewise.
6416         (type_lookups): Remove.
6417         (deferred_access): New structure.
6418         (type_access_control): Remove.
6419         (save_type_access_control): Likewise.
6420         (reset_type_access_control): Likewise.
6421         (decl_type_access_control): Likewise.
6422         (push_deferring_access_checks): Declare.
6423         (resume_deferring_access_checks): Likewise.
6424         (stop_deferring_access_checks): Likewise.
6425         (pop_deferring_access_checks): Likewise.
6426         (get_deferred_access_checks): Likewise.
6427         (pop_to_parent_deferring_access_checks): Likewise.
6428         (perform_deferred_access_checks): Likewise.
6429         (perform_or_defer_access_check): Likewise.
6430         * decl.c (make_typename_type): Use perform_or_defer_access_check.
6431         (make_unbound_class_template): Likewise.
6432         (grokdeclarator): Don't call decl_type_access_control.
6433         * parser.c (cp_parser_context): Remove deferred_access_checks
6434         and deferring_access_checks_p fields.
6435         (cp_parser_context_new): Adjust.
6436         (cp_parser): Remove access_checks_lists.
6437         (cp_parser_defer_access_check): Remove.
6438         (cp_parser_start_deferring_access_checks): Remove.
6439         (cp_parser_stop_deferring_access_checks): Remove.
6440         (cp_parser_perform_deferred_access_checks): Remove.
6441         (cp_parser_nested_name_specifier_opt): Use new deferred access
6442         functions.
6443         (cp_parser_simple_declaration): Likewise.
6444         (cp_parser_template_id): Likewise.
6445         (cp_parser_function_definition): Likewise.
6446         (cp_parser_class_specifier): Likewise.
6447         (cp_parser_lookup_name): Likewise.
6448         (cp_parser_single_declaration): Likewise.
6449         (cp_parser_pre_parsed_nested_name_specifier): Likewise.
6450         (cp_parser_parse_tentatively): Likewise.
6451         (cp_parser_parse_definitely): Likewise.
6452         (yyparse): Likewise.
6453         (cp_parser_init_declarator): Remove access_checks parameter.
6454         Use new deferred access functions.
6455         (cp_parser_function_definition_from_specifiers_and_declarator):
6456         Likewise.
6457         (cp_parser_class_head): Remove deferring_access_checks_p and
6458         saved_access_checks parameters.  Use new deferred access functions.
6459         (cp_parser_member_specification_opt): Don't call
6460         reset_type_access_control.
6461         * search.c (type_access_control): Remove.
6462         * semantics.c: Include "gt-cp-semantics.h".
6463         (deferred_type_access_control): Remove.
6464         (deferred_access_stack): New variable.
6465         (deferred_access_free_list): Likewise.
6466         (push_deferring_access_checks): New function.
6467         (resume_deferring_access_checks): Likewise.
6468         (stop_deferring_access_checks): Likewise.
6469         (pop_deferring_access_checks): Likewise.
6470         (get_deferred_access_checks): Likewise.
6471         (pop_to_parent_deferring_access_checks): Likewise.
6472         (perform_deferred_access_checks): New function, adapted from
6473         cp_parser_perform_deferred_access_checks.
6474         (perform_or_defer_access_check): New function, adapted from
6475         cp_parser_defer_access_check.
6476         (current_type_lookups): Remove.
6477         (deferred_type_access_control): Likewise.
6478         (decl_type_access_control): Likewise.
6479         (save_type_access_control): Likewise.
6480         (reset_type_access_control): Likewise.
6481         (begin_function_definition): Adjust.
6482         (begin_class_definiton): Likewise.
6483
6484 2003-01-13  Jason Merrill  <jason@redhat.com>
6485
6486         PR c++/8748
6487         * class.c (build_base_path): Take the address before calling save_expr.
6488
6489         * call.c (build_user_type_conversion_1): Do set ICS_BAD_FLAG if
6490         all the ambiguous conversions are bad.
6491
6492         * class.c (maybe_warn_about_overly_private_class): Don't stop
6493         searching when we find a nonprivate method.
6494
6495         * typeck.c (build_class_member_access_expr): Use unary_complex_lvalue.
6496
6497 2003-01-12  Mark Mitchell  <mark@codesourcery.com>
6498
6499         * cp-tree.h (get_arglist_len_in_bytes): Remove.
6500
6501         PR c++/9264
6502         * parser.c (cp_parser_elaborated_type_specifier): Handle erroneous
6503         typeame types more robustly.
6504
6505 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
6506
6507         * parser.c:  Fix comment typos.
6508
6509 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
6510
6511         PR c++/9099
6512         * parser.c (cp_parser_scope_through_which_access_occurs): Handle
6513         an object_type which is not a class type.
6514
6515 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
6516
6517         * parser.c (cp_parser_late_parsing_for_member): Don't cast to void.
6518         (cp_parser_late_parsing_default_args): Likewise.
6519
6520 2003-01-10  Nathanael Nerode  <neroden@gcc.gnu.org>
6521
6522         * cfns.gperf: ANSIfy function declarations.
6523         * cfns.h: Regenerate.
6524         * cp-tree.h: ANSIfy function declarations.
6525
6526 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
6527
6528         * cp-tree.h (reparse_absdcl_as_expr): Remove.
6529         (reparse_absdcl_as_casts): Likewise.
6530         (reparse_decl_as_expr): Likewise.
6531         (finish_decl_parsing): Likewise.
6532         * decl2.c (reparse_absdcl_as_expr): Remove.
6533         (reparse_absdcl_as_casts): Likewise.
6534         (repase_decl_as_expr): Likewise.
6535         (finish_decl_parsing): Likewise.
6536
6537         PR c++/9128
6538         PR c++/9153
6539         PR c++/9171
6540         * parser.c (cp_parser_pre_parsed_nested_name_specifier): New
6541         function.
6542         (cp_parser_nested_name_specifier_opt): Correct the
6543         check_dependency_p false.
6544         (cp_parser_postfix_expression): Fix formatting.
6545         (cp_parser_decl_specifier_seq): Avoid looking for constructor
6546         declarators when possible.
6547         (cp_parser_template_id): Avoid performing name-lookup when
6548         possible.
6549         (cp_parser_class_head): Do not count specializations when counting
6550         levels of templates.
6551         (cp_parser_constructor_declarator_p): Return immediately if
6552         there's no chance that the tokens form a constructor declarator.
6553         * rtti.c (throw_bad_typeid): Add comment.  Do not return an
6554         expression with reference type.
6555         (get_tinfo_decl_dynamic): Do not return an expression with
6556         reference type.
6557         (build_typeid): Add comment.  Do not return an expression with
6558         reference type.
6559         * typeck.c (build_class_member_access_expr): Improve handling of
6560         conditionals and comma-expressions as objects.
6561
6562 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
6563
6564         * cfns.gperf: ANSIfy function declarations.
6565         * cfns.h: Regenerate.
6566         * cp-tree.h: ANSIfy function declarations.
6567         * parser.c: ANSIfy function declarations & definitions.
6568
6569         * decl.c (bad_specifiers): Fix parameter order error I introduced.
6570
6571 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
6572
6573         Merge from pch-branch:
6574
6575         2003-01-09  Geoffrey Keating  <geoffk@apple.com>
6576
6577         Merge to tag pch-merge-20030102:
6578
6579         * semantics.c (finish_translation_unit): Don't call finish_file.
6580         * parser.c: Don't include ggc.h.
6581         (cp_lexer_new_main): Rename from cp_lexer_new, only create main lexer,
6582         read first token here.  Don't allow PCH files after the first
6583         token is read.
6584         (cp_lexer_new_from_tokens): Duplicate functionality from cp_lexer_new.
6585         (cp_lexer_get_preprocessor_token): Allow LEXER to be NULL.
6586         (cp_parser_new): Call cp_lexer_new_main before allocating GCed memory.
6587         (cp_parser_late_parsing_for_member): Don't duplicate call to
6588         cp_lexer_set_source_position_from_token.
6589         (cp_parser_late_parsing_default_args): Likewise.
6590         (yyparse): Call finish_file after clearing the_parser.
6591
6592         2002-12-11  Geoffrey Keating  <geoffk@apple.com>
6593
6594         * Make-lang.in: Remove $(GGC_H) from all dependencies.
6595         (CXX_TREE_H): Add $(GGC_H).
6596         * class.c: Don't include ggc.h.
6597         (field_decl_cmp): Make parameters be 'const void *' to match qsort.
6598         (method_name_cmp): Likewise.
6599         (resort_data): New variable.
6600         (resort_field_decl_cmp): New.
6601         (resort_method_name_cmp): New.
6602         (resort_sorted_fields): New.
6603         (resort_type_method_vec): New.
6604         (finish_struct_methods): Delete cast.
6605         (finish_struct_1): Delete cast.
6606         * cp-tree.h: Include ggc.h.
6607         (struct lang_type_class): Add reorder attribute to field `methods'.
6608         (union lang_decl_u3): Add reorder attribute to field `sorted_fields'.
6609         (resort_sorted_fields): New prototype.
6610         (resort_type_method_vec): New prototype.
6611         * call.c: Don't include ggc.h.
6612         * decl.c: Likewise.
6613         * decl2.c: Likewise.
6614         * init.c: Likewise.
6615         * lex.c: Likewise.
6616         * method.c: Likewise.
6617         * optimize.c: Likewise.
6618         * parse.y: Likewise.
6619         * pt.c: Likewise.
6620         * repo.c: Likewise.
6621         * search.c: Likewise.
6622         * semantics.c: Likewise.
6623         * spew.c: Likewise.
6624         * tree.c: Likewise.
6625
6626         * lang-specs.h: Remove comment.
6627
6628         2002-12-03  Geoffrey Keating  <geoffk@apple.com>
6629
6630         * cp-tree.h (struct operator_name_info_t): Mark for GTY machinery.
6631         (operator_name_info): Mark to be saved for PCH, specify size.
6632         (assignment_operator_name_info): Likewise.
6633
6634         2002-11-19  Geoffrey Keating  <geoffk@apple.com>
6635
6636         * decl.c (anon_cnt): Mark to be saved for PCH.
6637
6638         2002-10-25  Geoffrey Keating  <geoffk@apple.com>
6639
6640         * lex.c  (init_reswords): Delete now-untrue comment.
6641         Allocate ridpointers using GGC.
6642
6643         2002-10-04  Geoffrey Keating  <geoffk@apple.com>
6644
6645         * cp-tree.h (union lang_decl_u2): Add tags to all fields.
6646
6647         * g++spec.c (lang_specific_driver): Don't include standard
6648         libraries in `added'.
6649
6650         2002-08-27  Geoffrey Keating  <geoffk@redhat.com>
6651
6652         * decl2.c (finish_file): Call c_common_write_pch.
6653         * Make-lang.in (CXX_C_OBJS): Add c-pch.o.
6654
6655         2002-08-17  Geoffrey Keating  <geoffk@redhat.com>
6656
6657         * g++spec.c (lang_specific_driver): Treat .h files as C++ header
6658         files when using g++.
6659         * lang-specs.h: Handle compiling C++ header files.
6660
6661 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
6662
6663         * decl.c (start_decl): Only check DECL_THREAD_LOCAL for VAR_DECLs.
6664
6665 2003-01-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6666
6667         * pt.c (push_access_scope_real): Call push_to_top_level for
6668         function in namespace scope.
6669         (pop_access_scope): Call pop_from_top_level for function in
6670         namespace scope.
6671
6672 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
6673
6674         * decl.c (start_decl): Don't set DECL_COMMON for __thread variables.
6675
6676 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
6677
6678         * Make-lang.in (c++.install-common, c++.install-man,
6679         c++.uninstall): Prepend $(DESTDIR) to destination paths in
6680         all (un)installation commands.
6681         (c++.install-common): Rewrite $(LN) commands to support
6682         DESTDIR with "ln" as well as with "ln -s".
6683
6684 2003-01-08  Jason Merrill  <jason@redhat.com>
6685
6686         * parser.c (cp_parser_primary_expression): See through explicitly
6687         scoped ALIAS_DECLs, too.
6688
6689 2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
6690
6691         * decl.c: Remove some #if 0 code.
6692
6693         * decl.c: ANSIfy function declarations.
6694
6695 2003-01-07  Mark Mitchell  <mark@codesourcery.com>
6696
6697         * parser.c (cp_parser_asm_definition): Correct handling of omitted
6698         operands.
6699
6700 2003-01-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6701
6702         PR c++/9030
6703         * decl.c (make_typename_type): Check access only when tf_error.
6704         (make_unbound_class_template): Likewise.
6705         * pt.c (saved_access_scope): New variable.
6706         (push_access_scope_real): New function.
6707         (push_access_scope): Likewise.
6708         (pop_access_scope): Likewise.
6709         (tsubst_default_argument): Use them.
6710         (instantiate_template): Likewise.
6711         (regenerate_decl_from_template): Likewise.
6712         (instantiate_decl): Likewise.
6713         (get_mostly_instantiated_function_type): Likewise.
6714
6715 2003-01-07  Nathanael Nerode <neroden@gcc.gnu.org>
6716
6717         * tree.c: Delete bogus #if 0 code.
6718
6719 2003-01-07  Andreas Schwab  <schwab@suse.de>
6720
6721         * class.c (layout_class_type): Don't use
6722         PCC_BITFIELD_TYPE_MATTERS if not defined.
6723
6724 2003-01-06  Mark Mitchell  <mark@codesourcery.com>
6725
6726         PR c++/9165
6727         * decl2.c (build_cleanup): Mark the object as used.
6728
6729         * pt.c (retrieve_local_specialization): Revert 2003-01-05 change.
6730         (hash_local_specialization): New function.
6731         (register_local_specialization): Revert 2003-01-05 change.
6732         (instantiate_decl): Use hash_local_specialization when creating
6733         the local_specializations table.
6734
6735         * decl2.c (mark_used): Do not synthesize thunks.
6736
6737         * class.c (layout_class_type): Correct handling of unnamed
6738         bitfields wider than their types.
6739
6740         PR c++/9189
6741         * parser.c (cp_parser): Remove default_arg_types.  Update
6742         documentation for unparsed_functions_queues.
6743         (cp_parser_late_parsing_default_args): Take a FUNCTION_DECL as the
6744         parameter.
6745         (cp_parser_new): Don't set parser->default_arg_types.
6746         (cp_parser_function_definition): Adjust usage of
6747         unparsed_funtions_queues.
6748         (cp_parser_class_specifier): Don't mess with
6749         parser->default_arg_types.  Handle default argument processing in
6750         a separate phase from function body processing.
6751         (cp_parser_template_declaration_after_export): Adjust usage of
6752         unparsed_functions_queues.
6753         (cp_parser_late_parsing_for_member): Do not handle default
6754         arguments.
6755
6756 2003-01-06  Nathan Sidwell  <nathan@codesourcery.com>
6757
6758         PR c++/9109
6759         * parser.c (cp_parser_declarator_kind): New enum.
6760         (cp_parser_declarator): Adjust.
6761         (cp_parser_direct_declarator): Adjust. Allow for either named or
6762         abstract declarator. Prefer abstract, if possible. Allow
6763         parenthesized function name.
6764         (cp_parser_condition): Adjust cp_parser_declarator call.
6765         (cp_parser_explicit_instantiation): Likewise.
6766         (cp_parser_init_declarator): Likewise.
6767         (cp_parser_type_id): Likewise.
6768         (cp_parser_function_definition): Likewise.
6769         (cp_parser_member_declaration): Likewise.
6770         (cp_parser_parameter_declaration): Use cp_parser_declarator to do
6771         the tentative parsing.
6772         (cp_parser_exception_declaration): Likewise.
6773
6774 2003-01-05  Mark Mitchell  <mark@codesourcery.com>
6775
6776         * parser.c (cp_parser_template_parameter): Adjust call to
6777         cp_parser_parameter_declaration.
6778         (cp_parser_parameter_declaration_list): Likewise.
6779         (cp_parser_parameter_declaration): Replace
6780         greater_than_is_operator_p with template_parm_p parameter.  Do not
6781         cache tokens for template default arguments.
6782
6783         * pt.c (retrieve_local_specialization): Use htab_find, not
6784         htab_find_with_hash.
6785         (register_local_specialization): Use htab_find_slot, not
6786         htab_find_slot_with_hash.
6787         (instantiate_decl): Pass a hash function to htab_create.
6788
6789 2003-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6790
6791         * parser.c (cp_parser_binary_expression,
6792         cp_parser_multiplicative_expression,
6793         cp_parser_additive_expression, cp_parser_shift_expression,
6794         cp_parser_relational_expression, cp_parser_equality_expression,
6795         cp_parser_and_expression, cp_parser_exclusive_or_expression,
6796         cp_parser_inclusive_or_expression,
6797         cp_parser_logical_and_expression, cp_parser_logical_or_expression,
6798         cp_parser_binary_expression): Const-ify.
6799
6800 2003-01-04  Mark Mitchell  <mark@codesourcery.com>
6801
6802         * method.c (use_thunk): Disable access control while building the
6803         body of the thunk.
6804
6805 2003-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
6806
6807         * cvt.c, decl.c, decl2.c: This is the C++ front end, not the C
6808         front end.
6809
6810 2003-01-03  Matt Austern  <austern@apple.com>
6811
6812         * cp-tree.h (struct lang_type_class): add field for key method
6813         (cp_global_trees): rename dynamic_classes to keyed_classes
6814         (key_method): add definition
6815         * class.c (finish_struct_1): compute class's key method, and add
6816         the class to keyed_classes list if there is no key method.
6817         * decl.c (finish_function): add class to keyed_classes list if we
6818         see a definition of the class's key method.
6819         * pt.c (instantiate_class_template): add template specialization
6820         of a dynamic class to keyed_classes list.
6821         * decl2.c (key_method): remove
6822         (finish_file): iterate only through keyed_classes list when
6823         deciding whether to emit vtables, remove class from its list after
6824         we do the emission.
6825
6826 2003-01-02  Jason Merrill  <jason@redhat.com>
6827
6828         * call.c (build_conditional_expr): Stabilize lvalues properly.
6829         * cvt.c (ocp_convert): Don't build NOP_EXPRs of class type.
6830         * tree.c (lvalue_p_1): Don't allow sloppy NOP_EXPRs as lvalues.
6831         Don't allow CALL_EXPR or VA_ARG_EXPR, either.
6832
6833         * call.c (convert_like_real): Call decl_constant_value for an
6834         IDENTITY_CONV even if there are no more conversions.
6835
6836         * cvt.c (build_up_reference): Don't push unnamed temps.
6837
6838         * decl2.c (do_namespace_alias): Namespace aliases are DECL_EXTERNAL.
6839
6840         * dump.c (cp_dump_tree): Don't try to dump class-specific fields
6841         for a backend struct.
6842
6843         * except.c (wrap_cleanups_r, build_throw): Make
6844         MUST_NOT_THROW_EXPRs void.
6845         * init.c (expand_default_init): Update to handle MUST_NOT_THROW_EXPR.
6846
6847         * init.c (build_vec_delete_1): Pre-evaluate the base address.
6848
6849         * init.c (get_temp_regvar): Simplify logic.
6850
6851         * tree.c (cp_copy_res_decl_for_inlining): Only do debug tweaks if
6852         our replacement is a decl.
6853
6854         * decl.c (cp_make_fname_decl): Push the decls inside the
6855         outermost scope.
6856
6857 2003-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6858
6859         PR c++/45, c++/3784
6860         * tree.c (cp_tree_equal, TEMPLATE_PARM_INDEX): The types must be
6861         the same too.
6862
6863 2003-01-03  Graham Stott  <graham.stott@btinternet.com>
6864
6865         * parser.c (struct cp_parser): Add access_checks_lists field
6866         (cp_parser_simple_declaration): Use.
6867         (cp_parser_init_declarator): Likewise.
6868
6869 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
6870
6871         * parser.c (cp_parser_declaration): Accept the __extension__
6872         keyword before the declaration.
6873
6874         PR c++/2843
6875         * parser.c (cp_parser_parameter_declaration): Allow attributes to
6876         appear after the declarator.
6877
6878         * call.c (build_new_method_call): Fix typo in message format
6879         string.
6880
6881 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
6882
6883         * parser.c (cp_lexer_next_token_is): Declare it inline.
6884         (cp_lexer_set_source_position_from_token): Likewise.
6885         (cp_lexer_debugging_p): Likewise.
6886         (cp_parser_parsing_tentatively): Likewise.
6887         (cp_parser_nested_name_specifier_opt): Reduce the number of calls
6888         to the cp_lexer_peek_token.
6889
6890         * parser.c (cp_parser_sizeof_operand): Do not evaluate the
6891         expression.
6892
6893 2003-01-02  Steven Bosscher <s.bosscher@student.tudelft.nl>
6894
6895         * cp/except.c, cp/expr.c, cp/friend.c, cp/g++spec.c,
6896         cp/lang-options.h, cp/lang-specs.h, cp/lex.h, cp/ptree.c,
6897         cp/repo.c: Fix copyright years.
6898
6899 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
6900
6901         * lex.c: Remove superfluous include of cpplib.h.
6902         (CONSTRAINT): Define without conditions.
6903         (init_cp_pragma): Use c_register_pragma.
6904
6905 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
6906
6907         * .cvsignore: Remove.
6908
6909 2002-12-31  Steven Bosscher  <s.bosscher@student.tudelft.nl>
6910
6911         * call.c, class.c, cp-lang.c, cp-tree.h, cvt.c, dump.c, error.c,
6912           except.c, expr.c friend.c, g++spec.c, init.c, lang-options.h,
6913           lang-specs.h, lex.c, mangle.c, method.c, optimize.c, parser.c,
6914           pt.c, ptree.c, repo.c, rtti.c, search.c, semantics.c, tree.c,
6915           typeck.c, typeck2.c: Replace "GNU CC" with "GCC" in the
6916           copyright header.
6917         * lex.h: parse.y is dead, so don't mention it.  Also replace the
6918           copyright header with the default GNU copyright header.
6919
6920 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
6921
6922         * cp-tree.h (LOOKUP_TEMPLATES_EXPECTED): Remove.
6923         (lookup_name_namespace_only): Likewise.
6924         (begin_only_namespace_names): Likewise.
6925         (end_only_namespace_names): Likewise.
6926         * decl.c (only_namespace_names): Remove.
6927         (qualify_lookup): Do not check LOOKUP_TEMPLATES_EXPECTED.
6928         (lookup_name_real): Do not check only_namespace_names.
6929         (lookup_name_namespace_only): Remove.
6930         (begin_only_namespace_names): Likewise.
6931         (end_only_namespace_names): Likewise.
6932         * parser.c (cp_parser_nested_name_specifier_opt): Handle erroneous
6933         nested-name-specifiers more gracefully.
6934         (cp_parser_class_or_namespace_name): Avoid looking up namespace
6935         names when they cannot possibly appear.
6936         (cp_parser_template_name): Adjust call to cp_parser_lookup_name.
6937         (cp_parser_elaborated_type_specifier): Likewise.
6938         (cp_parser_namespace_name): Only look for namespace names.
6939         (cp_parser_lookup_name): Add is_namespace parameter.
6940         (cp_parser_lookup_name_simple): Adjust call to
6941         cp_parser_lookup_name.
6942
6943         * parser.c (cp_parser_dependent_type_p): Fix thinko.
6944
6945 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
6946
6947         * .cvsignore: Update.
6948
6949 2002-12-31  Nathan Sidwell  <nathan@codesourcery.com>
6950
6951         * class.c (modify_vtable_entry): Remove unused variable.
6952         (get_vcall_index): Always expect a non-thunk.
6953         (update_vtable_entry_for_fn): Combine covariant adjustments, when
6954         overriding a thunk. Pass get_vcall_index a non-thunk.
6955
6956         * decl2.c (finish_file): Mark undefined inlines as extern.
6957
6958 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
6959
6960         * cp-tree.def (RETURN_INIT): Remove.
6961         * cp-tree.h (DECL_IN_MEMORY_P): Remove.
6962         (scope_kind): Add sk_block, sk_try, sk_catch, sk_for.
6963         (note_level_for_for): Remove.
6964         (note_level_for_try): Likewise.
6965         (note_level_for_catch): Likewise.
6966         (finish_named_return_value): Likewise.
6967         (do_pushlevel): Change prototype.
6968         (pending_lang_change): Remove.
6969         * decl.c (begin_scope): Handle sk_block, sk_try, sk_catch,
6970         sk_for.
6971         (note_level_for_for): Remove.
6972         (note_level_for_try): Likewise.
6973         (note_level_for_catch): Likewise.
6974         (maybe_inject_for_scope_var): Remove use of DECL_IN_MEMORY_P.
6975         * parser.c (cp_parser_context_free_list): Make it "deletable".
6976         (cp_parser_template_argument): Remove misleading comment.
6977         * pt.c (tsubst_expr): Remove RETURN_INIT code.
6978         * semantics.c (genrtl_named_return_value): Remove.
6979         (do_pushlevel): Take a scope kind as an argument.
6980         (begin_if_stmt): Adjust.
6981         (begin_while_stmt): Likewise.
6982         (begin_for_stmt): Likewise.
6983         (finish_for_init_stmt): Likewise.
6984         (begin_switch_stmt): Likewise.
6985         (begin_handler): Likewise.
6986         (begin_compound_stmt): Likewise.
6987         (finish_named_return_value): Remove.
6988         (cp_expand_stmt): Remove RETURN_INIT case.
6989         * tree.c (cp_statement_code_p): Remove RETURN_INIT case.
6990
6991 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
6992
6993         PR c++/9112
6994         * parser.c (cp_parser_direct_declarator): Handle erroneous
6995         parenthesized declarators correctly.
6996
6997 2002-12-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6998
6999         * cp-tree.h (pending_lang_change): Declare.
7000
7001 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
7002
7003         * parser.c (cp_parser_context_free_list): New variable.
7004         (cp_parser_context_new): Use it.
7005         (cp_parser_error): Check return code from
7006         cp_parser_simulate_error.
7007         (cp_parser_simulate_error): Return a value.
7008         (cp_parser_id_expression): Optimize common case.
7009         (cp_parser_class_name): Likewise.
7010         (cp_parser_class_specifier): Adjust call to
7011         cp_parser_late_parsing_default_args.
7012         (cp_parser_lookup_name): Optimize common case.
7013         (cp_parser_late_parsing_for_member): Adjust call to
7014         cp_parser_late_parsing_default_args.
7015         (cp_parser_late_parsing_default_args): Add scope parameter.
7016         (cp_parser_require): Avoid creating the error message unless it's
7017         needed.
7018         (cp_parser_parse_definitely): Place free'd contexts on the free
7019         list.
7020
7021         * parser.c (cp_parser_declaration_seq_opt): Handle pending_lang_change.
7022
7023 2002-12-30  David Edelsohn  <edelsohn@gnu.org>
7024
7025         * parser.c (cp_parser_parameter_declaration_clause): Treat system
7026         header as extern "C" if NO_IMPLICIT_EXTERN_C undefined.
7027
7028 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
7029
7030         * config-lang.in, Make-lang.in, operators.def, cp-tree.def:
7031         GCC, not GNU CC.
7032
7033 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
7034
7035         * parse.y: Remove.
7036         * spew.c: Likewise.
7037         * Make-lang.in (gt-cp-spew.h): Remove.
7038         * cp-tree.h (do_pending_lang_change): Remove.
7039         (do_identifier): Change prototype.
7040         (finish_id_expr): Remove.
7041         * decl.c (lookup_name_real): Remove yylex variable.
7042         * decl2.c (build_expr_from_tree): Adjust call to do_identifier.
7043         * lex.c (init_cpp_parse): Remove.
7044         (reduce_cmp): Likewise.
7045         (token_cmp): Likewise.
7046         (yychar): Likewise.
7047         (lastiddecl): Likewise.
7048         (token_count): Likewise.
7049         (reduce_count): Likewise.
7050         (yyhook): Likewise.
7051         (print_parse_statistics): Likewise.
7052         (do_pending_lang_change): Likewise.
7053         (do_identifier): Remove parsing parameter.
7054         * lex.h (lastiddecl): Remove.
7055         (looking_for_typename): Remove.
7056         (looking_for_template): Likewise.
7057         (pending_lang_change): Likewise.
7058         (yylex): Likewise.
7059         * semantics.c (finish_id_expr): Remove.
7060
7061         * decl.c (grokdeclarator): Diagnost "extern thread" and "static
7062         thread" correctly.
7063
7064 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
7065
7066         * decl.c, decl2.c, decl.h:  GCC, not GNU CC.  This is the C++ front
7067         end, not the C front end.
7068
7069 2002-12-30  Nathan Sidwell  <nathan@codesourcery.com>
7070
7071         * cp-tree.h (THUNK_TARGET): New macro.
7072         (THUNK_VIRTUAL_OFFSET): For result thunks it is always a binfo.
7073         (finish_thunk): Remove offset parms.
7074         * class.c (find_final_overrider): Look through thunks.
7075         (get_vcall_index): Use THUNK_TARGET.
7076         (update_vtable_entry_for_fn): Look through thunks. Set covariant
7077         fixed offset here. Adjust finish_thunk call.
7078         (build_vtbl_initializer): Adjust finish_thunk calls.
7079         * mangle.c (mangle_call_offset): Remove superfluous if.
7080         (mangle_thunk): Adjust.
7081         * method.c (make_thunk): Adjust.
7082         (finish_thunk): Adjust.
7083         (thunk_adjust): Remove assert.
7084         (use_thunk): Use THUNK_TARGET
7085         * dump1.c (cp_dump_tree): Adjust thunk dumping.
7086
7087         PR c++/9054
7088         * class.c (layout_class_type): Set TYPE_CONTEXT of type for base.
7089         * dump.c (cp_dump_tree, RECORD_TYPE): Deal with type for base types.
7090
7091 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7092
7093         Remove traditional C constructs 4/n.
7094         * decl2.c (grok_method_quals, warn_if_unknown_interface,
7095         grok_x_components, cp_build_parm_decl, build_artificial_parm,
7096         maybe_retrofit_in_chrg, grokclassfn, grok_array_decl,
7097         delete_sanity, check_member_template, check_java_method,
7098         check_classfn, finish_static_data_member_decl, grokfield,
7099         grokbitfield, grokoptypename, grok_function_init,
7100         cplus_decl_attributes, constructor_name, defer_fn,
7101         build_anon_union_vars, finish_anon_union, coerce_new_type,
7102         coerce_delete_type, comdat_linkage, maybe_make_one_only,
7103         key_method, import_export_vtable, import_export_class,
7104         output_vtable_inherit, import_export_decl, import_export_tinfo,
7105         build_cleanup, get_guard, get_guard_bits, get_guard_cond,
7106         set_guard, start_objects, finish_objects,
7107         start_static_storage_duration_function,
7108         finish_static_storage_duration_function, get_priority_info,
7109         start_static_initialization_or_destruction,
7110         finish_static_initialization_or_destruction,
7111         do_static_initialization, do_static_destruction,
7112         prune_vars_needing_no_initialization, write_out_vars,
7113         reparse_decl_as_expr, finish_decl_parsing, namespace_ancestor,
7114         add_using_namespace, merge_functions, ambiguous_decl,
7115         lookup_using_namespace, lookup_using_namespace,
7116         qualified_lookup_using_namespace, set_decl_namespace,
7117         decl_namespace, current_decl_namespace, push_decl_namespace,
7118         pop_decl_namespace, push_scope, pop_scope, add_function,
7119         arg_assoc_namespace, arg_assoc_template_arg, arg_assoc,
7120         lookup_arg_dependent, do_namespace_alias,
7121         validate_nonmember_using_decl, do_nonmember_using_decl,
7122         do_toplevel_using_decl, do_local_using_decl,
7123         do_class_using_decl, do_using_directive, check_default_args,
7124         mark_used, handle_class_head): Use C90 prototypings.  Use booleans.
7125         * parser.c (cp_parser_class_head): Use booleanss.
7126         * decl.c (walk_globals, walk_vtables): Likewise.
7127         * cp-tree.h (walk_globals_pred, walk_globals_fn, walk_vtables,
7128         walk_globals): Change return type from 'int' to 'bool'.
7129         * rtti.c (init_rtti_processing, build_headof, throw_bad_cast
7130         throw_bad_typeid, get_tinfo_decl_dynamic, typeid_ok_p,
7131         build_typeid, tinfo_name, get_tinfo_decl, get_tinfo_ptr,
7132         get_typeid, ifnonnull, build_dynamic_cast_1, build_dynamic_cast,
7133         qualifier_flags, tinfo_base_init, generic_initializer,
7134         ptr_initializer, dfs_class_hint_mark, ptm_initializer,
7135         dfs_class_hint_unmark, class_hint_flags, class_initializer,
7136         typeinfo_in_lib_p, get_pseudo_ti_init, create_pseudo_type_info,
7137         get_pseudo_ti_desc, create_tinfo_types, emit_support_tinfos,
7138         unemitted_tinfo_decl_p, emit_tinfo_decl): Likewise.
7139         * repo.c (repo_compile_flags, repo_template_declared,
7140         repo_template_defined, repo_class_defined, repo_get_id,
7141         repo_template_used, repo_vtable_used, repo_inline_used,
7142         repo_tinfo_used, repo_template_instantiated, extract_string,
7143         open_repo_file, afgets, init_repo, reopen_repo_file_for_write,
7144         finish_repo): Likewise.
7145         * ptree.c (cxx_print_decl, cxx_print_type, cxx_print_identifier,
7146         cxx_print_xnode): Likewise..
7147         * cp-lang.c (ok_to_generate_alias_set_for_type, cxx_get_alias_set,
7148         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
7149         * cxxfilt.c (demangle_it, print_demangler_list, usage,
7150         standard_symbol_characters, hp_symbol_characters, main, fatal):
7151         Likewise.
7152         (strip_underscore):  Change type from 'int' to 'bool'.
7153         (main): Use boolean constants.
7154
7155 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7156
7157         Remove traditional C constructs 3/n.
7158         * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
7159         build_up_reference, warn_ref_binding, convert_to_reference,
7160         convert_from_reference, convert_lvalue, cp_convert, ocp_convert,
7161         convert_to_void, convert, convert_force, build_type_conversion,
7162         build_expr_type_conversion, type_promotes_to,
7163         perform_qualification_conversions): Use C90 prototyping style.
7164         * decl2.c (grok_array_decl): Use boolean constant.
7165         (delete_sanity): Likewise.
7166         * typeck.c (build_unary_op): Likewise.
7167         * semantics.c (finish_switch_cond): Likewise.
7168         * parser.c (cp_parser_direct_new_declarator): Likewise.
7169         * init.c (build_new): Likewise.
7170
7171 2002-12-27  Mark Mitchell  <mark@codesourcery.com>
7172
7173         * Make-lang.in (po-generated): Remove parse.c.
7174         (CXX_OBJS): Remove parse.o and spew.o.  Add parser.o.
7175         ($(srcdir)/cp/parse.h): Remove target.
7176         ($(srcdir)/cp/parse.c): Likewise.
7177         (gt-cp-parse.h): Likewise.
7178         (gt-cp-parser.h): New target.
7179         (c++.distclean): Do not remove parse.output.
7180         (c++.maintainer-clean): Do not remove parse.c or parse.h.
7181         (cp/spew.o): Remove target.
7182         (cp/lex.o): Adjust dependencies.
7183         (cp/pt.o): Likewise.
7184         (cp/parse.o): Likewise.
7185         (cp/TAGS): Do not mention parse.c.
7186         (cp/parser.o): New target.
7187         * NEWS: Mention the new parser.
7188         * call.c (build_scoped_method_call): Simplify.
7189         (build_method_call): Likewise.
7190         (build_new_function_call): Adjust calls to add_function_candidate
7191         and add_template_candidate.
7192         (build_new_op): Improve handling of erroroneous operands.
7193         (convert_default_arg): Remove circular argument processing.
7194         (name_as_c_string): New function.
7195         (build_new_method_call): Use it.
7196         (perform_implicit_conversion): Use error_operand_p.
7197         * class.c (finish_struct_anon): Use constructor_name_p.
7198         (check_field_decls): Likewise.
7199         (pop_nested_class): Use OVL_NEXT, not OVL_CHAIN.
7200         (resolve_address_of_overloaded_function): Likewise.
7201         (instantiate_type): Tweak pointer-to-member handling.
7202         (get_primary_binfo): Remove incorrect assertion.
7203         * config-lang.in (gtfiles): Add parser.c, remove parse.c.
7204         * cp-tree.h (DEFARG_TOKENS): New macro.
7205         (default_arg): New structure.
7206         (cp_tree_node_structure_enum): Add TS_CP_DEFAULT_ARG.
7207         (lang_tree_node): Add default_arg.
7208         (cp_tree_index): Add CPTI_TYPE_INFO_REF_TYPE.
7209         (type_info_ref_type): New macro.
7210         (saved_scope): Make processing_explicit_instantiation a boolean.
7211         (check_access): New field.
7212         (unparsed_text): Remove.
7213         (language_function): Remove unparsed_inlines.
7214         (error_operand_p): New macro.
7215         (lang_decl): Adjust pending_inline_info.
7216         (DEFARG_POINTER): Remove.
7217         (tag_types): Add typenames.
7218         (lookup_ualified_name): Declare.
7219         (lookup_name_real): Likewise.
7220         (shadow_tag): Adjust prototype.
7221         (get_scope_of_declarator): Declare it.
7222         (process_next_inline): Remove it.
7223         (check_for_missing_semicolon): Likewise.
7224         (maybe_get_template_decl_from_type_decl): Declare it.
7225         (finish_label_stmt): Adjust prototype.
7226         (finish_non_static_data_meber): Declare it.
7227         (finish_pseudo_destructor_call_expr): Rename to ...
7228         (finish_pseudo_destructor_expr): ... this.
7229         (finish_compound_literal): Declare it.
7230         (begin_inline_definitions): Remove it.
7231         (init_spew): Remove.
7232         (peekyylex): Likewise.
7233         (arbitrate_lookup): Likewise.
7234         (frob_opname): Likewise.
7235         (maybe_snarf_defarg): Likewise.
7236         (add_defarg_fn): Likewise.
7237         (do_pending_defargs): Likewise.
7238         (done_pending_defargs): Likewise.
7239         (unprocessed_defarg_fn): Likewise.
7240         (replace_defarg): Likewise.
7241         (end_input): Likewise.
7242         (get_overloaded_fn): Likewise.
7243         * cvt.c (convert_to_reference): Improve error handling.
7244         * decl.c (lookup_name_real): Do not declare it static.
7245         (maybe_push_to_top_level): Set check_access.
7246         (identifier_type_value): Adjust call to lookup_name_real.
7247         (lookup_qualified_name): New method.
7248         (lookup_name_real): Remove special-case parsing code.
7249         (lookup_name-nonclass): Adjust call to lookup_name_real.
7250         (lookup_name_namespace_only): Likewise.
7251         (lookup_name): Likewise.
7252         (check_tag_decl): Return the type declared.
7253         (shadow_tag): Likewise.
7254         (register_dtor_fn): Tweak check_access.
7255         (grokfndecl): Use constructor_name_p.
7256         (get_scope_of_declarator): New function.
7257         (grokdeclarator): Obscure tweaks for slightly different declarator
7258         representations.
7259         (start_method): Return error_mark_node to indicate failure.
7260         (cp_tree_node_structure_enum): Use TS_CP_DEFAULT_ARG for DEFAULT_ARGs.
7261         * decl2.c (constructor_name_full): Simplify.
7262         (constructor_name): Use it.
7263         (build_expr_from_tree): Adjust for changes to do new parser.
7264         (push_scope): Improve robustness.
7265         (validate_nonmember_using_decl): Process declarations, not names.
7266         (do_class_using_decl): Likewise.
7267         (handle_class_head): Do not mess with CLASSTYPE_DECLARED_CLASS
7268         here.
7269         * error.c (dump_expr): Handle IDENTIFIER_NODEs and BASELINKs.
7270         * expr.c (cxx_expand_expr): Handle BASELINKs.
7271         * init.c (member_init_ok_or_else): Issue more errors.
7272         (build_offset_ref): Tweak handling of FUNCTION_DECLs.
7273         * lex.c: Do not include parse.h.
7274         (yypring): Do not declare.
7275         (yylval): Likewise.
7276         (make_reference_declarator): Remove error-generating code.
7277         (rid_to_yy): Remove.
7278         (cxx_init): Do not call init_spew.
7279         (yypring): Remove.
7280         (check_for_missing_semicolon): Remove.
7281         * lex.h (got_scope): Remove.
7282         (got_object): Remove.
7283         * method.c (hack_identifier): Use finish_non_static_data_member.
7284         (implicitly_declare_fn): Adjust use of constructor_name.
7285         * parser.c: New file.
7286         * pt.c (parse.h): Do not include it.
7287         (maybe_get_template_decl_from_template): Do not declare it.
7288         (finish_member_template_decl): Tweak.
7289         (begin_explicit_instantiation): Adjust for
7290         processing_explicit_instantiation being boolean.
7291         (end_explicit_instantiation): Likewise.
7292         (maybe_process_partial_specialization): Tighten specialization
7293         test.
7294         (retrieve_local_specialization): Adjust ue of hash table.
7295         (eq_local_specializations): New function.
7296         (register_local_specialization): Likewise.
7297         (push_template_decl_real): Remove unnecessary test.
7298         (maybe_get_template_decl_from_type_decl): Don't make it static.
7299         (for_each_template_parm_r): Handle TYPEOF_TYPE.
7300         (tsubst_copy): Use retrieive_local_specialization to handle
7301         PARM_DECL.  Adjust handling of CONST_DECLs.  Handle BASELINKs.
7302         Handle COMPONENT_REFs with pseudo-destructor-expressions.
7303         Simplify handling of CALL_EXPR and METHOD_CALL_EXPR.
7304         (tsubst_expr): Pass decls, not names, to do_local_using_decl.
7305         (unify): Tweak handling of CONST_DECLs.
7306         (regenerate_decl_from_template): Use push_nested_class.
7307         (template_for_substitution): New funciton.
7308         (instantiate_decl): Use it.  Register parameters as local
7309         specializations.
7310         * rtti.c (init_rtti_processing): Set type_info_ref_type.
7311         (build_typeid): Use it.
7312         (get_typeid): Likeise.
7313         * search.c (accessible_p): Use check_access, not
7314         flag_access_control.
7315         (adjust_result_of_qualified_name_lookup): Pay attention to the
7316         context_class.
7317         * semantics.c (finish_asm_stmt): Adjust error handling.
7318         (finish_label_stmt): Return the statement.
7319         (finish_non_static_data_member): New function.
7320         (finish_class_expr): Handle BASELINKs.
7321         (finish_call_expr): Handle PSEUDO_DTOR_EXPR.
7322         (finish_object_call_expr): Simplify handling during templates.
7323         (finish_pseudo_destructor_call_expr): Rename to ...
7324         (finish_pseudo_dtor_expr): ... this.
7325         (finish_compound_literal): New function.
7326         (begin_inline_definitions): Remove.
7327         (finish_sizeof): Remove special template handling.
7328         * spew.c: Do not include parse.h.
7329         * tree.c (get_overloaded_fn): Remove.
7330         * typeck.c (build_class_member_access_expr): Handle
7331         PSEUDO_DTOR_EXPR.  Adjust handling of static member functions.
7332         (lookup_destructor): New function.
7333         (finish_class_member_access_expr): Use it.
7334         (convert_arguments): Simplify.
7335         (build_unary_op): Handle BASELINKs.
7336
7337 2002-12-26  Nathan Sidwell  <nathan@codesourcery.com>
7338
7339         PR c++/4803
7340         * decl2.c (mark_used): Defer inline functions.
7341         (finish_file): Merge deferred_fns loops. Check all used
7342         inline functions have a definition.
7343         * method.c (make_thunk): Thunks are not inline.
7344
7345         PR c++/5116, c++/764
7346         * call.c (build_new_op): Make sure template class operands are
7347         instantiated.
7348
7349 2002-12-24  Nathan Sidwell  <nathan@codesourcery.com>
7350
7351         PR C++/7964
7352         * cp-tree.h (resolve_scoped_fn_name): Prototype.
7353         * call.c (resolve_scoped_fn_name): New function. Deal with
7354         more template expansion. Broken out of ...
7355         * parse.y (parse_finish_call_expr): ... here. Call it.
7356         * decl2.c (build_expr_from_tree, CALL_EXPR): Use
7357         resolve_scoped_fn_name and build_call_from_tree.
7358
7359         PR c++/9053
7360         * decl.c (duplicate_decls): Templates may be disambiguated by
7361         return type.
7362
7363         PR c++/8702
7364         * decl2.c (check_classfn): Use lookup_fnfield_1. List all
7365         conversion operators on failure.
7366
7367 2002-12-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7368
7369         Remove traditional C constructs 2/n.
7370         * call.c (tourney, build_field_call, equal_functions, joust,
7371         compare_ics, build_over_call, build_java_interface_fn_ref,
7372         convert_like_real, op_error, build_object_call, resolve_args,
7373         build_vfield_ref, check_dtor_name, build_scoped_method_call,
7374         build_addr_func, build_call, build_method_call, null_ptr_cst_p,
7375         sufficient_parms_p, build_conv, non_reference, strip_top_quals,
7376         standard_conversion, reference_related_p,
7377         reference_compatible_p, convert_class_to_reference,
7378         direct_reference_binding, reference_binding,
7379         ,implicit_conversion, is_complete, promoted_arithmetic_type_p,
7380         add_template_conv_candidate, any_viable, any_strictly_viable,
7381         build_this, splice_viable, print_z_candidates,
7382         build_user_type_conversion, build_new_function_call,
7383         conditional_conversion, build_conditional_expr, build_new_op,
7384         build_op_delete_call, enforce_access, call_builtin_trap,
7385         convert_arg_to_ellipsis, build_x_va_arg, cxx_type_promotes_to,
7386         convert_default_arg, type_passed_as, convert_for_arg_passing,
7387         in_charge_arg_for_name, is_properly_derived_from,
7388         maybe_handle_implicit_object, maybe_handle_ref_bind,
7389         source_type, add_warning, can_convert, can_convert_arg,
7390         perform_implicit_conversion, can_convert_arg_bad,
7391         initialize_reference, add_conv_candidate,
7392         add_template_candidate_real, add_template_candidate): Ansify.
7393
7394 2002-12-22  Nathan Sidwell  <nathan@codesourcery.com>
7395
7396         PR c++/8572
7397         * cp-tree.h (grokoptypename): Add SCOPE parameter.
7398         * decl2.c (grokoptypename): Add SCOPE parameter. tsubst the type
7399         if in a template scope.
7400         * parse.y (unoperator): Return the scope.
7401         (operator_name): Adjust grokoptypename call.
7402
7403 2002-12-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7404
7405         * cp-tree.h (make_unbound_class_template): Use tsubst_flags_t.
7406         * decl.c (make_unbound_class_template): Adjust.  Check for tf_error.
7407         * pt.c (tsubst) [OFFSET_TYPE]: Check for tf_error.
7408
7409 2002-12-20  Kazu Hirata  <kazu@cs.umass.edu>
7410
7411         * ChangeLog: Fix a typo.
7412         * class.c: Fix comment typos.
7413         * cp-tree.h: Likewise.
7414
7415 2002-12-18  Jason Merrill  <jason@redhat.com>
7416
7417         Handle anonymous unions at the tree level.
7418         C++ ABI change: Mangle anonymous unions using the name of their
7419         first named field (by depth-first search).  Should not cause
7420         binary compatibility problems, though, as the compiler previously
7421         didn't emit anything for affected unions.
7422         * cp-tree.def (ALIAS_DECL): New tree code.
7423         * decl2.c (build_anon_union_vars): Build ALIAS_DECLs.  Return the
7424         first field, not the largest.
7425         (finish_anon_union): Don't mess with RTL.  Do set DECL_ASSEMBLER_NAME,
7426         push the decl, and write it out at namespace scope.
7427         * decl.c (lookup_name_real): See through an ALIAS_DECL.
7428         (pushdecl): Add namespace bindings for ALIAS_DECLs.
7429         * rtti.c (unemitted_tinfo_decl_p): Don't try to look at the name
7430         of a decl which doesn't have one.
7431         * typeck.c (build_class_member_access_expr): Don't recurse if
7432         we already have the type we want.
7433
7434 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7435
7436         PR c++/8099
7437         * friend.c (make_friend_class): Allow partial specialization
7438         when declaration is not a template friend.
7439
7440 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7441
7442         PR c++/3663
7443         * pt.c (lookup_template_class): Copy TREE_PRIVATE and
7444         TREE_PROTECTED to created decl nodes.
7445
7446 2002-12-18  Mark Mitchell  <mark@codesourcery.com>
7447
7448         * class.c (build_base_field): Do not set DECL_PACKED on the
7449         FIELD_DECL.
7450
7451 2002-12-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7452
7453         * cp-tree.h (struct tree_srcloc): Use location_t.
7454         (SOURCE_LOCUS): New.
7455         (SRCLOC_FILE, SRCLOC_LINE): Adjust.
7456
7457 2002-12-17  Jason Merrill  <jason@redhat.com>
7458
7459         * decl.c (finish_function): Also complain about no return in
7460         templates.
7461         * semantics.c (finish_return_stmt): Also call check_return_expr in
7462         templates.
7463         * typeck.c (check_return_expr): In a template, just remember that we
7464         saw a return.
7465
7466 2002-12-16  Jason Merrill  <jason@redhat.com>
7467
7468         * semantics.c (simplify_aggr_init_exprs_r): Don't change the type
7469         of the CALL_EXPR.
7470
7471         * semantics.c (do_pushlevel): Call pushlevel after adding the
7472         SCOPE_STMT.
7473         (do_poplevel): Call poplevel before adding the SCOPE_STMT.
7474         * parse.y (function_body): Go back to using compstmt.
7475         * decl.c (pushdecl): Skip another level to get to the parms level.
7476
7477         * call.c (build_new_method_call): Use is_dummy_object to determine
7478         whether or not to evaluate the object parameter to a static member
7479         function.
7480
7481 2002-12-14  Jason Merrill  <jason@redhat.com>
7482
7483         * semantics.c (simplify_aggr_init_exprs_r): Also prepend the
7484         return slot for normal functions.  Set CALL_EXPR_HAS_RETURN_SLOT_ADDR.
7485         * tree.c (build_cplus_new): If the type isn't TREE_ADDRESSABLE,
7486         don't bother with an AGGR_INIT_EXPR.
7487         (cp_copy_res_decl_for_inlining): If the type isn't TREE_ADDRESSABLE,
7488         just generate a new decl normally.  Take return slot parm.
7489         * cp-tree.h: Adjust prototype.
7490
7491 2002-12-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7492
7493         PR C++/8031
7494         * cvt.c (convert_to_pointer_force): Don't try comparing against
7495         erronous type.
7496
7497 2002-12-13  Geoffrey Keating  <geoffk@apple.com>
7498
7499         * cp-tree.h: Have the multiple-include guards around
7500         the entire file.
7501
7502 2002-12-10  David Edelsohn  <edelsohn@gnu.org>
7503
7504         * cp/spew.c (feed_input): Change limit to last_pos and pos to cur_pos
7505         for SPEW_DEBUG.
7506         (snarf_method): Same.
7507         (snarf_defarg): Same.
7508
7509 2002-12-10  Mark Mitchell  <mark@codesourcery.com>
7510
7511         PR c++/8372
7512         * pt.c (tsubst_copy): Handle destructor names more correctly.
7513
7514 2002-12-10  Matt Austern   <austern@apple.com>
7515
7516         * cp-tree.h: get rid of needs_virtual_reinit bit.
7517
7518 2002-12-09  Mark Mitchell  <mark@codesourcery.com>
7519
7520         * NEWS: Document removal of in-class initialization extension for
7521         static data members of non-arithmetic, non-enumeration type.
7522         * decl.c (check_static_variable_definition): Do not allow that
7523         extension.
7524         * decl2.c (grokfield): Do not call digest_init when processing
7525         templates.
7526
7527 2002-12-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7528
7529         * error.c (dump_expr): Fix format specifier warning.
7530
7531 2002-12-04  Geoffrey Keating  <geoffk@apple.com>
7532
7533         * class.c (finish_struct_1): Correct comment.
7534         * cp-tree.c (DECL_SORTED_FIELDS): Likewise.
7535
7536 2002-12-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7537
7538         PR C++/8799
7539         * error.c (dump_expr): Don't ever try to dump a non-existent
7540         expression.
7541
7542 2002-12-03  Nathan Sidwell  <nathan@codesourcery.com>
7543
7544         Implement covariant returns.
7545         * cp-tree.h (IS_AGGR_TYPE_2): Remove.
7546         (struct lang_decl_flags): Add this_thunk_p flag.
7547         Rename vcall_offset to virtual_offset.
7548         (struct lang_decl): Rename delta to fixed_offset.
7549         (DECL_THIS_THUNK_P, DECL_RESULT_THUNK_P): New #defines.
7550         (SET_DECL_THUNK_P): Add THIS_ADJUSTING arg.
7551         (THUNK_DELTA, THUNK_VCALL_OFFSET): Rename to ...
7552         (THUNK_FIXED_OFFSET, THUNK_VIRTUAL_OFFSET): ... here.
7553         (make_thunk): Add this_adjusting arg.
7554         (finish_thunk): Declare.
7555         (mangle_thunk): Add this_adjusting arg.
7556         * class.c (get_vcall_index): Use base function for lookup.
7557         (update_vtable_entry_for_fn): Generate covariant thunk.
7558         (finish_struct_1): Set DECL_VINDEX to NULL for thunks.
7559         (build_vtbl_initializer): Use base function for lookup.
7560         Finish covariant thunk here. Adjust thunk generation.
7561         * dump.c (cp_dump_tree): Simplify DECL_GLOBAL_[CD]TOR_P handling.
7562         Adjust thunk dumping.
7563         * mangle.c (mangle_call_offset): New function.
7564         (mangle_thunk): Adjust for covariant thunks.
7565         * method.c (make_thunk): Adjust. Do not set name here.
7566         (finish_thunk): New function. Set name here.
7567         (use_thunk): Generate covariant thunks too.
7568         (thunk_adjust): New function.
7569         * search.c (covariant_return_p): Remove. Fold into ...
7570         (check_final_overrider): ... here. Simplify.
7571         * semantics.c (emit_associated_thunks): Walk covariant thunk lists.
7572
7573 2002-12-03  Jason Merrill  <jason@redhat.com>
7574
7575         PR c++/8674
7576         * call.c (build_over_call): Check specifically for TARGET_EXPR
7577         when eliding.
7578
7579         PR c++/8461, c++/8625
7580         * call.c (convert_for_arg_passing): Don't mess with error_mark_node.
7581         (cp_convert_parm_for_inlining): Remove.
7582         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
7583         Remove.
7584         * cp-tree.h (ADDR_IS_INVISIREF): Remove.
7585         * except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
7586
7587         * call.c (build_user_type_conversion_1): Don't set ICS_BAD_FLAG on
7588         an ambiguous conversion.
7589
7590 2002-12-03  Mark Mitchell  <mark@codesourcery.com>
7591
7592         PR c++/8688
7593         * decl.c (reshape_init): Handle erroneous initializers.
7594
7595 2002-12-02  Mark Mitchell  <mark@codesourcery.com>
7596
7597         PR c++/8720
7598         * spew.c (remove_last_token): Make sure that last_chunk is set
7599         correctly.
7600
7601         PR c++/8615
7602         * error.c (dump_expr): Handle character constants with
7603         TREE_OVERFLOW set.
7604
7605 2002-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7606
7607         DR 180
7608         * decl.c (grokdeclarator): Require class-key for all friend class.
7609         Output the correct type and context in the error message.
7610
7611 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
7612
7613         PR c++/5919
7614         * pt.c (unify): Use variably_modified_type_p to test validity of
7615         template argument types.
7616
7617         PR c++/8727
7618         * cp-tree.h (lang_type_class): Add typeinfo_var.
7619         (CLASSTYPE_TYPEINFO_VAR): New macro.
7620         * rtti.c (get_tinfo_decl): Use it.
7621
7622         PR c++/8663
7623         * init.c (expand_member_init): Always get the main variant of a
7624         base class.
7625
7626 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
7627
7628         PR c++/8332
7629         PR c++/8493
7630         * decl.c (cxx_init_decl_processing): Use size_type_node, not
7631         c_size_type_node.
7632         * decl2.c (coerce_new_type): Likewise.
7633         * except.c (do_allocate_exception): Likewise.
7634
7635 2002-11-30  Zack Weinberg  <zack@codesourcery.com>
7636
7637         * call.c, class.c, cp-lang.c, cvt.c, cxxfilt.c, decl.c, decl2.c,
7638         dump.c, error.c, except.c, expr.c, friend.c, g++spec.c, init.c,
7639         lex.c, mangle.c, method.c, optimize.c, parse.y, pt.c, ptree.c,
7640         repo.c, rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
7641         typeck2.c: Include coretypes.h and tm.h.
7642         * Make-lang.in: Update dependencies.
7643
7644 2002-11-30  Mark Mitchell  <mark@codesourcery.com>
7645
7646         PR c++/8227
7647         * decl.c (layout_var_decl): Deal gracefully with erroneous types.
7648         (check_initializer): Validate the type of the initialized
7649         variable, even if the initializer is absent.
7650         * typeck.c (cp_type_quals): Deal gracefully with erroneous types.
7651
7652         PR c++/8214
7653         * typeck.c (convert_for_assignment): Do not use
7654         decl_constant_value on the operand.
7655
7656         PR c++/8511
7657         * pt.c (instantiate_decl): Handle template friends defined outside
7658         of the class correctly.
7659
7660 2002-11-29  Joe Buck <jbuck@synopsys.com>
7661
7662         * parse.y (class_head_defn): Set CLASSTYPE_DECLARED_CLASS for
7663         anonymous structs.
7664
7665 2002-11-29  Mark Mitchell  <mark@codesourcery.com>
7666
7667         * class.c (walk_subobject_offsets): Recur on binfos as well as on
7668         types.
7669         (layout_nonempty_base_or_field): Pass it a binfo when processing a
7670         base class.
7671         (layout_empty_base): Likewise.
7672         (build_base_field): Likewise.
7673
7674 2002-11-27  Mark Mitchell  <mark@codesourcery.com>
7675
7676         * class.c (build_base_field): Make sure we get the canonical base
7677         when descending through primary bases.
7678
7679 2002-11-26  Geoffrey Keating  <geoffk@apple.com>
7680
7681         * decl.c (check_initializer): Don't error on initialisation of
7682         a scalar with a brace-enclosed expression.
7683
7684 2002-11-26  Nathan Sidwell  <nathan@codesourcery.com>
7685
7686         * cp-tree.h (DECL_LANG_FLAG_4): Document more uses.
7687         (template_parms_equal): Remove prototype.
7688         * typeck.c (buuld_indirect_ref): Reformat.
7689
7690 2002-11-25  Jason Merrill  <jason@redhat.com>
7691
7692         * init.c (build_vec_init): Use a FOR_STMT instead of an IF_STMT
7693         and a DO_STMT.
7694
7695 2002-11-25  Mark Mitchell  <mark@codesourcery.com>
7696
7697         * tree.c (cp_build_qualified_type_real): Correct handling of
7698         array types.
7699         * class.c (walk_subobject_offsets): Fix thinko.
7700         (build_base_field): Record offsets of empty bases in primary
7701         virtual bases.
7702         (layout_class_type): Record offsets of empty bases in fields.
7703
7704         * search.c (is_subobject_of_p_1): Fix thinko.
7705         (lookup_field_queue_p): Likewise.
7706
7707 2002-11-24  Mark Mitchell  <mark@codesourcery.com>
7708
7709         * class.c (layout_class_type): Reuse tail padding when laying out
7710         virtual bases.
7711
7712 2002-11-22  Mark Mitchell  <mark@codesourcery.com>
7713
7714         * rtti.c (qualifier_flags): Fix thinko.
7715
7716 2002-11-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7717
7718         Remove traditional C constructs 1/n.
7719         * cp-tree.h (init_method, set_mangled_name_for_decl,
7720         build_opfncall, hack_identifier, make_thunk, use_thunk,
7721         synthesize_method, implicitly_declare_fn,
7722         skip_artificial_parms_for, optimize_function, calls_setjmp_p,
7723         maybe_clone_body): Remove use of PARAMS.
7724
7725         * method.c (do_build_assign_ref, do_build_copy_constructor,
7726         synthesize_exception_spec, locate_dtor, locate_ctor, locate_copy):
7727         Likewise.
7728         (synthesize_method): Use 'bool' type and constants instead of
7729         'int'.
7730         (locate_copy): Likewise.
7731         (implicitly_declare_fn): Likewise.
7732
7733         * optimize.c (calls_setjmp_r, update_cloned_parm, dump_function):
7734         Remove old-style declaration.
7735         (maybe_clone_body): Use 'bool' type and constants.
7736
7737 2002-11-21  Glen Nakamura  <glen@imodulo.com>
7738
7739         PR c++/8342
7740         * typeck.c (get_member_function_from_ptrfunc): Make sure that a
7741         SAVE_EXPR for instance_ptr doesn't get evaluated first inside one
7742         of the branches of a COND_EXPR.
7743
7744 2002-11-19  Mark Mitchell  <mark@codesourcery.com>
7745
7746         * pt.c (for_each_template_parm): Free allocated memory.
7747         * search.c (is_subobject_of_p_1): New function.
7748         (is_subobject_of_p): Avoid walking virtual bases multiple times.
7749
7750 2002-11-19  Jason Thorpe  <thorpej@wasabisystems.com>
7751
7752         * g++spec.c (lang_specific_spec_functions): New.
7753
7754 2002-11-15  Kazu Hirata  <kazu@cs.umass.edu>
7755
7756         * ChangeLog: Follow spelling conventions.
7757         * class.c: Likewise.
7758         * decl2.c: Likewise.
7759
7760 2002-11-14  Zack Weinberg  <zack@codesourcery.com>
7761
7762         * search.c (dfs_push_decls): Do not try to reorder elements
7763         3..n of method_vec if method_vec has only two elements.
7764         Reverse order of two tests to avoid accessing unallocated
7765         memory.
7766
7767 2002-11-14  Mark Mitchell  <mark@codesourcery.com>
7768
7769         * class.c (dfs_find_final_overrider): Adjust so that the most
7770         derived object is a binfo, rather than a class type.
7771         (find_final_overrider): Likewise.
7772         (add_vcall_offset_vtbl_entries_1): Simplify accordingly.
7773         (add_vcall_offset): Likewise.
7774
7775 2002-11-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7776
7777         PR c++/8389
7778         * pt.c (instantiate_template): Push class scope for member
7779         functions.
7780         (get_mostly_instantiated_function_type): Likewise.  Don't call
7781         tsubst on context.  Remove CONTEXTP and TPARMSP parameters.
7782         * cp-tree.h (get_mostly_instantiated_function_type): Adjust.
7783         * mangle.c (write_encoding, write_unqualified_name): Adjust.
7784
7785 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
7786
7787         * class.c (add_vcall_offset_vtbl_entries_1): Correct ordering of
7788         vcall offfsets.  Split out ...
7789         (add_vcall_offset): ... new function.
7790
7791         PR c++/8338
7792         * pt.c (for_each_template_parm): Add htab parameter.
7793         (process_partial_specialization): Adjust call.
7794         (push_template_decl_real): Likewise.
7795         (pair_fn_data): Add visited.
7796         (for_each_template_parm_r): Avoid walking duplicates more than
7797         once.
7798         (uses_template_parms): Adjust call to for_each_template_parm.
7799
7800 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
7801
7802         * class.c (add_implicitly_declared_members): Put implicitly
7803         declared functions at the end of TYPE_METHODs when -fabi-version
7804         is at least 2.
7805
7806 2002-11-05  Geoffrey Keating  <geoffk@apple.com>
7807
7808         * decl2.c (finish_file): Correct spelling.
7809
7810 2002-11-03  Mark Mitchell  <mark@codesourcery.com>
7811
7812         * call.c (build_special_member_call): Do not try to lookup VTTs by
7813         name.
7814         * class.c (vtbl_init_data): Add generate_vcall_entries.
7815         (get_vtable_decl): Do not look up virtual tables by name.
7816         (copy_virtuals): Do not use BV_USE_VCALL_INDEX_P.
7817         (set_primary_base): Do not set CLASSTYPE_RTTI.
7818         (determine_primary_base): Likewise.
7819         (get_matching_virtual): Remove.
7820         (get_vcall_index): New function.
7821         (update_vtable_entry_for_fn): Do not try to use virtual thunks
7822         when they are not required.  Assign vcall indices at this point.
7823         (finish_struct_1): Do not set CLASSTYPE_NEEDS_VIRTUAL_REINIT.
7824         Do update dynamic_classes.
7825         (build_vtt): Do not add VTTs to the symbol table.
7826         (build_ctor_vtbl_group): Likewise.
7827         (build_vtbl_initializer): Simplify handling of vcall indices.
7828         (build_vcall_offset_vtbl_entries): Pretend to build vcall offsets
7829         for the most derived class.
7830         (add_vcall_offset_vtbl_entries_1): But do not actually add them to
7831         the vtable.
7832         * cp-tree.h (dynamic_classes): New macro.
7833         (lang_type_class): Remove rtti.  Add vtables.  Add vcall_indices.
7834         (CLASSTYPE_RTTI): Remove.
7835         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Remove.
7836         (CLASSTYPE_VCALL_INDICES): New macro.
7837         (CLASSTYPE_VTABLES): Likewise.
7838         (BV_USE_VCALL_INDEX_P): Remove.
7839         (build_vtable_path): Remove.
7840         * decl2.c (finish_vtable_vardecl): Remove.
7841         (key_method): Remove #if 0'd code.
7842         (finish_vtable_vardecl): Rename to ...
7843         (maybe_emit_vtables): ... this.
7844         (finish_file): Use it.
7845         * search.c (look_for_overrides_here): Update comment.
7846
7847 2002-11-01  Zack Weinberg  <zack@codesourcery.com>
7848
7849         PR c/7353 redux
7850         * decl2.c (grokfield): Reject TYPE_DECLs with initializers.
7851
7852 2002-10-30  Jason Merrill  <jason@redhat.com>
7853
7854         PR c++/8186
7855         * cp-tree.h (ADDR_IS_INVISIREF): New macro.
7856         * call.c (convert_for_arg_passing): Set it.
7857         * except.c (stabilize_throw_expr): Recurse for such an arg.
7858
7859 2002-10-31  Mark Mitchell  <mark@codesourcery.com>
7860
7861         * cp-tree.h (lang_decl_flags): Remove init_priority.
7862         (lang_decl): Add delta.
7863         (GLOBAL_INIT_PRIORITY): Remove.
7864         (THUNK_DELTA): Revise definition.
7865         * decl2.c (start_objects): Don't set GLOBAL_INIT_PRIORITY.
7866         * dump.c (cp_dump_tree): Don't dump it.
7867
7868 2002-10-30  Mark Mitchell  <mark@codesourcery.com>
7869
7870         PR c++/8160
7871         * typeck2.c (process_init_constructor): Call complete_array_type.
7872
7873         PR c++/8149
7874         * decl.c (make_typename_type): Issue errors about invalid results.
7875
7876 2002-10-30  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7877
7878         Core issue 287, PR c++/7639
7879         * cp-tree.h (lang_type_class): Add decl_list field.
7880         (CLASSTYPE_DECL_LIST): New macro.
7881         (maybe_add_class_template_decl_list): Add declaration.
7882         * class.c (duplicate_tag_error): Initialize CLASSTYPE_DECL_LIST.
7883         (unreverse_member_declarations): Reverse CLASSTYPE_DECL_LIST.
7884         (maybe_add_class_template_decl_list): New function.
7885         (add_implicitly_declared_members): Use it.
7886         * decl.c (maybe_process_template_type_declaration): Likewise.
7887         (pushtag): Likewise.
7888         * friend.c (add_friend): Likewise.
7889         (make_friend_class): Likewise.
7890         * semantics.c (finish_member_declaration): Likewise.
7891         (begin_class_definition): Initialize CLASSTYPE_DECL_LIST.
7892         * pt.c (instantiate_class_template): Use CLASSTYPE_DECL_LIST
7893         to process members and friends in the order of declaration.
7894
7895 2002-10-29  Mark Mitchell  <mark@codesourcery.com>
7896
7897         PR c++/8287
7898         * decl.c (finish_destructor_body): Create the label to jump to
7899         when returning from a destructor here.
7900         (finish_function_body): Rather than here.
7901
7902 2002-10-25  Zack Weinberg  <zack@codesourcery.com>
7903
7904         PR c++/7266
7905         * decl.c (grokdeclarator): Check that TREE_OPERAND 0 of a
7906         SCOPE_REF is not null before dereferencing it.
7907
7908 2002-10-25  Mark Mitchell  <mark@codesourcery.com>
7909
7910         * call.c (build_over_call): Use DECL_CONTEXT, not
7911         DECL_VIRTUAL_CONTEXT.
7912         * class.c (modify_vtable_entry): Don't mess with
7913         DECL_VIRTUAL_CONTEXT.
7914         (set_vindex): Remove.
7915         (set_primary_base): Remove vfuns_p parameter.
7916         (determine_primary_base): Likewise.
7917         (modify_all_vtables): Likewise.
7918         (layout_class_type): Likewise.  Adjust calls to other functions
7919         accordingly.
7920         (finish_struct_1): Adjust calls to modified functions.  Set
7921         DECL_VINDEX here.
7922         * cp-tree.h (lang_type_class): Remove vsize.
7923         (CLASSTYPE_VSIZE): Remove.
7924         (lang_decl): Remove thunks.
7925         (DECL_THUNKS): Adjust.
7926         (DECL_VIRTUAL_CONTEXT): Remove.
7927         (duplicate_decls): Don't copy it.
7928         * pt.c (build_template_decl): Don't set it.
7929         (tsubst_decl): Likewise.
7930         * typeck.c (expand_ptrmemfunc_cst): Don't use it.
7931
7932         * class.c (build_vtbl_initializer): Don't use build_vtable_entry.
7933         (build_vtable_entry): Remove.
7934         * cp-tree.h (BINFO_VIRTUALS): Expand documentation.
7935         (lang_decl): Add thunks.
7936         (DECL_THUNKS): New macro.
7937         * decl.c (duplicate_decls): Copy it.
7938         * method.c (make_thunk): Simplify, and add thunks to DECL_THUNKS.
7939         * semantics.c (emit_associated_thunks): Simplify.
7940
7941 2002-10-24  David Edelsohn  <edelsohn@gnu.org>
7942
7943         PR c++/7228
7944         * cp-tree.h (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Check that
7945         lang_type structure exists before accessing field.
7946         (SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT): New macro.
7947         (CLASSTYPE_REF_FIELDS_NEED_INIT): Similar.
7948         (SET_CLASSTYPE_REF_FIELDS_NEED_INIT): New macro.
7949         * class.c (check_field_decls): Use new macros.
7950         * typeck2.c (process_init_constructor): Remove redundant check for
7951         existence of lang_type structure.
7952
7953 2002-10-24  Mark Mitchell  <mark@codesourcery.com>
7954
7955         * class.c (end_of_base): New method.
7956         (end_of_class): Use it.  Check indirect virtual bases.
7957
7958         * class.c (check_field_decls): Fix typo.
7959
7960 2002-10-23  Mark Mitchell  <mark@codesourcery.com>
7961
7962         PR c++/8067
7963         * decl.c (maybe_inject_for_scope_var): Ignore __FUNCTION__ and
7964         related variables.
7965
7966         PR c++/7679
7967         * spew.c (next_token): Do not return an endless stream of
7968         END_OF_SAVED_INPUT tokens.
7969         (snarf_method): Add three END_OF_SAVED_INPUT tokens to the end of
7970         the cached token stream.
7971         (snarf_defarg): Likewise.
7972
7973 2002-10-23  Zack Weinberg  <zack@codesourcery.com>
7974
7975         * cp-lang.c (cp_var_mod_type_p): New: C++ hook for
7976         variably_modified_type_p.
7977         * cp-tree.h: Remove prototype of variably_modified_type_p.
7978         * tree.c (variably_modified_type_p): Remove; now implemented
7979         in language-independent code.
7980
7981 2002-10-22  Mark Mitchell  <mark@codesourcery.com>
7982
7983         PR c++/6579
7984         * spew.c (snarf_parenthesized_expression): New function.
7985         (snarf_block): Use it.
7986
7987 2002-10-22  Richard Henderson  <rth@redhat.com>
7988
7989         * method.c (use_thunk): Always compute vcall_value; assert that
7990         it is not zero.  Use can_output_mi_thunk; use output_mi_thunk
7991         for vcall thunks as well.
7992
7993 2002-10-21  Mark Mitchell  <mark@codesourcery.com>
7994
7995         * class.c (empty_base_at_nonzero_offset_p): New function.
7996         (layout_nonempty_base_or_field): Do not check for conflicts when
7997         laying out a virtual base using the GCC 3.2 ABI.
7998         (build_base_field): Correct checking for presence of empty classes
7999         at nonzero offsets when clearing CLASSTYPE_NEARLY_EMPTY_P.
8000
8001         * class.c (include_empty_classes): Use normalize_rli.
8002         (layout_class_type): Likewise.
8003
8004         * decl.c (reshape_init): Tweak handling of character arrays.
8005
8006         PR c++/8218
8007         * cp-tree.h (lang_type_class): Add contains_empty_class_p.
8008         (CLASSTYPE_CONTAINS_EMPTY_CLASS_P): New macro.
8009         * class.c (check_bases): Update CLASSTYPE_CONTAINS_EMPTY_CLASS_P.
8010         (check_field_decls): Likewise.
8011         (layout_class_type): Likewise.
8012         (finish_struct_1): Initialize it.
8013         (walk_subobject_offsets): Use it to prune searches.
8014
8015 2002-10-20  Mark Mitchell  <mark@codesourcery.com>
8016
8017         * method.c (use_thunk): Compute the vcall index as a HOST_WIDE_INT.
8018         * optimize.c (optimize_function): Replace ASM_OUTPUT_MI_THUNK with
8019         TARGET_ASM_OUTPUT_MI_THUNK in comments.
8020
8021 2002-10-18  Zack Weinberg  <zack@codesourcery.com>
8022
8023         * decl.c (start_decl): Point users of the old initialized-
8024         typedef extension at __typeof__.
8025
8026 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
8027
8028         * Make-lang.in (method.o): Depend on TARGET_H.
8029         * method.c (target.h): Include it.
8030         (use_thunk): Use target hooks.  Use vcall thunks, if available.
8031
8032 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
8033
8034         * class.c (base_derived_from): Make sure return value is a bool.
8035
8036 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
8037
8038         * class.c (find_final_overrider_data_s): Remove overriding_fn and
8039         overriding_base.
8040         (dfs_base_derived_from): New function.
8041         (base_derived_from): Likewise.
8042         (dfs_find_final_overrider): Use base_derived_from.
8043         (find_final_overrider): Adjust.
8044
8045 2002-10-18  Jason Merrill  <jason@redhat.com>
8046
8047         PR c++/8080
8048         * semantics.c (finish_for_cond, finish_while_cond): Don't mess
8049         with condition decls in a template.
8050
8051 2002-10-17  Nathan Sidwell  <nathan@codesourcery.com>
8052
8053         * class.c (add_method): Compare template parms too.
8054
8055 2002-10-17  Mark Mitchell  <mark@codesourcery.com>
8056
8057         PR c++/7584
8058         * class.c (handle_using_decl): Allow the declaration used to be
8059         from an ambiguous base.
8060
8061         * pt.c (convert_template_argument): Revert this change:
8062                 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
8063                 * pt.c (convert_template_argument): Do not fold non-type
8064                 template rguments when inside a template.
8065
8066         * init.c (expand_default_init): Handle brace-enclosed initializers
8067         correctly.
8068
8069 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
8070
8071         * mangle.c (write_expression): Correct handling of enumeration
8072         constants.
8073         (write_template_arg): Likewise.
8074         * pt.c (convert_template_argument): Do not fold non-type template
8075         arguments when inside a template.
8076
8077         PR c++/7478
8078         * cvt.c (convert_to_reference): Allow references as the incoming
8079         type.
8080
8081 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
8082
8083         PR c++/7524
8084         * method.c (do_build_assign_ref): Use cp_build_qualified_type, not
8085         build_qualified_type.
8086
8087 2002-10-15  Richard Henderson  <rth@redhat.com>
8088
8089         * error.c (dump_expr): Use real_to_decimal directly, and with
8090         the new arguments.
8091
8092 2002-10-15  Mark Mitchell  <mark@codesourcery.com>
8093
8094         * decl.c (reshape_init): Fix typo.
8095
8096         * cp-tree.h (operator_name_info_t): Add arity.
8097         * lex.c (init_operators): Initialize it.
8098         * mangle.c (write_conversion_operator_name): New function.
8099         (write_unqualified_name): Use it.
8100         (write_template_args): Accept template arguments as a TREE_LIST.
8101         (write_expression): Adjust handling of qualified names to match
8102         specification.
8103
8104 2002-10-15  Jason Merrill  <jason@redhat.com>
8105
8106         * call.c (call_builtin_trap): New fn.
8107         (convert_arg_to_ellipsis): Use it.  Downgrade error to warning.
8108         (build_call): Don't set current_function_returns_abnormally outside
8109         a function.
8110
8111 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
8112
8113         * class.c (check_field_decls): Remove empty_p parameter.  Instead,
8114         clear CLASSTYPE_EMPTY_P.
8115         (build_base_field): Likewise.
8116         (build_base_fields): Likewise.
8117         (check_bases_and_members): Likewise.
8118         (create_vtbl_ptr): Likewise.
8119         (layout_class_type): Likewise.  Ensure that empty classes have
8120         size zero when used as base classes in the 3.2 ABI.
8121         (finish_struct_1): Initialize CLASSTYPE_EMPTY_P and
8122         CLASSTYPE_NEARLY_EMPTY_P.  Adjust calls to avoid passing empty_p
8123         parameter.
8124         (is_empty_class): Correct definition when using post-3.2 ABI.
8125         * cp-tree.h (lang_type_class): Add empty_p.
8126         (CLASSTYPE_EMPTY_P): New macro.
8127
8128 2002-10-12  Nathan Sidwell  <nathan@codesourcery.com>
8129
8130         * init.c (build_delete): Do not apply save_expr for arrays.
8131         (build_vec_delete): Likewise.
8132
8133 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
8134
8135         * decl.c (layout_var_decl): Call layout_decl even for variables
8136         whose type is an array with unspecified bounds.
8137
8138         PR c++/7176
8139         * lex.c (do_identifier): Add another option for the parsing
8140         parameter.
8141         * parse.y (do_id): Use it.
8142
8143 2002-10-11  Gabriel Dos Reis  <gdr@integrable-solutions.net>
8144
8145         PRs C++/6803, C++/7721 and C++/7803
8146         * decl.c (grokdeclarator): Gracefully handle template-name as
8147         decl-specifier.
8148
8149 2002-10-11  Jason Molenda  <jmolenda@apple.com>
8150
8151         * init.c (build_field_list): Provide uses_unions_p with a default
8152         value.
8153
8154 2002-10-11  Mark Mitchell  <mark@codesourcery.com>
8155
8156         PR c++/5661
8157         * cp-tree.h (variably_modified_type_p): New function.
8158         (grokdeclarator) Tighten check for variably modified types as
8159         fields.
8160         * pt.c (convert_template_argument): Do not allow variably modified
8161         types as template arguments.
8162         * tree.c (variably_modified_type_p): New function.
8163
8164         * NEWS: Document removal of "new X = ..." extension.
8165         * class.c (initialize_array): Set TREE_HAS_CONSTRUCTOR on
8166         brace-enclosed initializers.
8167         * cp-tree.h (CP_AGGREGATE_TYPE_P): New macro.
8168         (initialize_local_var): Remove declaration.
8169         (expand_static_init): Likewise.
8170         * decl.c (next_initializable_field): New function.
8171         (reshape_init): Likewise.
8172         (check_initializer): Use them.  Build dynamic initializer for
8173         aggregates here too.
8174         (initialize_local_var): Simplify, and incorporate cleanup
8175         insertion code as well.
8176         (destroy_local_var): Remove.
8177         (cp_finish_decl): Tidy.
8178         (expand_static_init): Fold checks for whether or not a variable
8179         needs initialization into this function.  Simplify.
8180         * decl2.c (do_static_initialization): Simplify.
8181         * init.c (build_init): Do not set TREE_SIDE_EFFECTS when it will
8182         be done for us automatically.
8183         (expand_default_init): Handle brace-enclosed initializers
8184         correctly.
8185         (expand_aggr_init_1): Remove RTL-generation code.
8186         (build_vec_init): Remove "new X = ..." support.
8187         * parse.y (new_initializer): Likewise.
8188         * rtti.c (get_pseudo_ti_init): Set TREE_HAS_CONSTRUCTOR on
8189         brace-enclosed initializer.
8190         (create_pseudo_type_info): Likewise.
8191         * typeck2.c (store_init_value): Don't try to handle digest_init
8192         being called more than once.
8193         (digest_init): Tidy handling of brace-enclosed initializers.
8194
8195 2002-10-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8196
8197         * decl.c (typename_hash): Use htab_hash_pointer.
8198
8199 2002-10-10  Jim Wilson  <wilson@redhat.com>
8200
8201         * decl.c (duplicate_decls): Don't call decl_attributes.
8202
8203 2002-10-09  Zack Weinberg  <zack@codesourcery.com>
8204
8205         PR c/7353
8206         * decl.c (start_decl): Unconditionally issue error for
8207         'typedef foo = bar'.
8208         (cp_finish_decl): Remove special case for TYPE_DECL with initializer.
8209         (grokdeclarator): Remove redundant error for 'typedef foo = bar'.
8210
8211 2002-10-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8212
8213         * decl2.c (prune_vtable_vardecl): Delete unused function.
8214
8215 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
8216
8217         PR c++/7754
8218         * decl2.c (finish_anon_union): Do not expand anonymous unions when
8219         procesing template functions.
8220         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
8221         type. Call layout_decl.
8222         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
8223
8224 2002-10-07  Richard Henderson  <rth@redhat.com>
8225
8226         * decl2.c, pt.c: Revert c++/7754 fix.
8227
8228 2002-10-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8229
8230         PR c++/7804
8231         * error.c (dump_expr) [REAL_CST]: Output in decimal format.
8232
8233 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
8234
8235         PR c++/7931
8236         * pt.c (for_each_template_parm_r): Handle BASELINKs.
8237
8238         PR c++/7754
8239         * decl2.c (finish_anon_union): Do not expand anonymous unions when
8240         procesing template functions.
8241         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
8242         type. Call layout_decl.
8243         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
8244
8245 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
8246
8247         PR c++/8006
8248         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Handle instances of template
8249         template parameters.
8250         (globals): Add entity and need_abi_warning.
8251         (decl_is_template_id): Use TYPE_TEMPLATE_INFO, not
8252         CLASSTYPE_TEMPLATE_INFO.
8253         (is_std_substitution): Use CLASSTYPE_TI_TEMPLATE, not
8254         TYPE_TI_TEMPLATE.
8255         (write_prefix): Handle typename types correctly.
8256         (write_template_prefix): Handle template template parameters
8257         correctly.
8258         (start_mangling): Add entity parameter.
8259         (finish_mangling): Warn about names whose mangling will change.
8260         (mangle_decl_string): Adjust.
8261         (mangle_type_string): Likewise.
8262         (mangle_special_for_type): Likewise.
8263         (mangle_ctor_vtbl_for_type): Likewise.
8264         (mangle_thunk): Likewise.
8265         (mangle_guard_variable): Likewise.
8266         (mangle_ref_init_variable): Likewise.
8267
8268 2002-10-02  Mark Mitchell  <mark@codesourcery.com>
8269
8270         PR c++/7188.
8271         * cp-tree.def (CTOR_INITIALIZER): Use one slot, not two.
8272         * cp-tree.h (emit_base_init): Rename to ....
8273         (emit_mem_initializers): ... this.
8274         (expand_member_init): Change prototype.
8275         * init.c (perform_member_init): Compute explicit, rather than
8276         requiring it as a parameter.
8277         (sort_member_init): Rename to ...
8278         (sort_mem_initializers): ... this.  Process bases and data members
8279         together.
8280         (sort_base_init): Remove.
8281         (emit_base_init): Rename to ...
8282         (emit_mem_initializers): ... this.
8283         (expand_aggr_vbase_init_1): Remove.
8284         (construct_virtual_bases): Rename to ...
8285         (construct_virtual_base): ... this.
8286         (expand_member_init): Rework handling of base initializers.
8287         * method.c (do_build_copy_constructor): Use
8288         finish_mem_initializers.
8289         * parse.y (member_init): Adjust calls to expand_member_init.
8290         * pt.c (tsubst_expr): Simplify CTOR_INITIALIZER case.
8291         (tsubst_initializer_list): Use expand_member_init.
8292         * semantics.c (finish_mem_intiailizers): Simplify.
8293
8294 2002-10-02  Matt Austern  <austern@apple.com>
8295         * decl.c (walk_vtables_r): Fixed typo that caused result to
8296         never get a nonzero value.
8297
8298 2002-10-02  Roger Sayle  <roger@eyesopen.com>
8299
8300         PR optimization/6627
8301         * cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
8302         from here, and move it to tree.h.
8303         * decl.c (cxx_init_decl_processing): If storing the vbit
8304         in function pointers, ensure that force_align_functions_log
8305         is atleast one.
8306
8307 2002-10-02  Matt Austern  <austern@apple.com>
8308
8309         * class.c (check_field_decls): Changed warning about const member
8310         variables so that it doesn't get issued for a class aggregate.
8311
8312 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
8313
8314         * decl.c (cp_finish_decl): Make sure array types are laid out,
8315         even if the array bounds are unknown.
8316
8317 2002-10-01  Steve Ellcey  <sje@cup.hp.com>
8318
8319         * class.c (build_vtbl_initializer): Change build_c_cast
8320         to build1.
8321
8322 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
8323
8324         * decl.c (cp_finish_decl): Make sure array types are laid out,
8325         even if the array bounds are unknown.
8326
8327         * decl.c (cp_finish_decl): Correct check for dynamic
8328         initialization of thread-local storage.
8329
8330 2002-09-30  Nathan Sidwell  <nathan@codesourcery.com>
8331
8332         * tree.c (really_overloaded_fn): TEMPLATE_ID_EXPRs are also
8333         overloaded.
8334
8335 2002-09-30  Steve Ellcey  <sje@cup.hp.com>
8336
8337         * class.c (build_vtbl_initializer): Add cast.
8338         (add_vcall_offset_vtbl_entries_1):
8339         Use TARGET_VTABLE_DATA_ENTRY_DISTANCE for offset.
8340
8341 2002-09-30  Mark Mitchell  <mark@codesourcery.com>
8342
8343         * class.c (walk_subobject_offsets): Correct the calculation of
8344         offsets for virtual bases.  Correct the counting of array
8345         elements.
8346         (layout_nonempty_base_or_field): Simplify.  Correct the
8347         calculation of offsets to be propagated through the binfo
8348         hierarchy.
8349         (build_base_field): Avoid creating a FIELD_DECL for empty bases.
8350         Add the FIELD_DECL to TYPE_FIELDS.
8351         (build_base_fields): Adjust accordingly.
8352         (layout_virtual_bases): Use build_base_field.
8353         (end_of_class): Return a tree, not an integer.
8354         (warn_about_ambiguous_direct_bases): Rename to ...
8355         (warn_about_ambiguous_bases): ... this.
8356         (include_empty_classes): New function.
8357         (layout_class_type): Create an alternative version of the type to
8358         be used when as a base class type.  Do not call
8359         finish_record_layout until we are done laying out the class.
8360         * cp-tree.h (lang_type_class): Remove size, size_unit.  Add
8361         as_base.
8362         (CLASSTYPE_SIZE): Reimplement.
8363         (CLASSTYPE_SIZE_UNIT): Likewise.
8364         (CLASSTYPE_ALIGN): Likweise.
8365         (CLASSTYPE_USER_ALIGN): Likewise.
8366         (CLASSTYPE_AS_BASE): New macro.
8367         (DECL_INITIALIZED_P): Likewise.
8368         (extract_init): Remove prototype.
8369         (build_forced_zero_init): Rename to ...
8370         (build_zero_init): ... this.
8371         (force_store_init_value): Remove.
8372         * decl.c (obscure_complex_init): Remove.
8373         (duplicate_decls): Copy DECL_INITIALIZED_P.
8374         (check_initializer): Do not leave junk in DECL_INITIAL.
8375         (cp_finish_decl): Handle zero-initialization of entities with
8376         static storage duration.
8377         * expr.c (extract_init): Remove.
8378         * init.c (build_forced_zero_init): Remove.
8379         (build_zero_init): New function.
8380         (build_default_init): Use it.
8381         (build_field_list): Skip FIELD_DECLs for base subobjects.
8382         (push_base_cleanups): Likewise.
8383         * method.c (do_build_assign_ref): Likewise.
8384         (synthesize_exception_spec): Likewise.
8385         * pt.c (tsubst_decl): Clear DECL_INITIALIZED_P.
8386         (regenerate_decl_from_template): To not set DECL_INITIAL for a
8387         static data member whose initialization took place in its class.
8388         (instantiate_decl): Do not pass an initializer to cp_finish_decl
8389         in that situation.
8390         * search.c (dfs_push_decls): Skip FIELD_DECLs for base subobjects.
8391         (dfs_unuse_fields): Likewise.
8392         * tree.c (pod_type_p): Handle error_mark_node.
8393         (zero_init_p): Likewise.
8394         * typeck.c (lookup_anon_field): Skip FIELD_DECLs for base
8395         subobjects.
8396         * typeck2.c (store_init_value): Remove #if 0'd code.
8397         (force_store_init_value): Remove.
8398         (process_init_constructor): Use build_zero_init.
8399
8400 2002-09-29  Nathan Sidwell  <nathan@codesourcery.com>
8401
8402         PR c++/7788
8403         * rtti.c (unemitted_tinfo_decl_p): Check it has a field.
8404
8405 2002-09-29  Kazu Hirata  <kazu@cs.umass.edu>
8406
8407         * cp-tree.h: Fix comment typos.
8408         * decl.c: Likewise.
8409         * pt.c: Likewise.
8410
8411 2002-09-25  Mark Mitchell  <mark@codesourcery.com>
8412
8413         * cp/class.c (contains_empty_class_p): New method.
8414         (walk_subobject_offsets): Correct computation of field offset.
8415         (layout_empty_base): Correct placement of emtpy base classes.
8416         (layout_class_type): Warn about ABI changes.
8417
8418 2002-09-23  Mark Mitchell  <mark@codesourcery.com>
8419
8420         * cp/class.c (layout_virtual_bases): Do not round the size of the
8421         type to a multiple of the alignment before laying out virtual bases.
8422         (layout_class_type): Correct handling of bit-fields that are wider
8423         than their type inside unions.  Round the size of the type to a
8424         even number of bytes when computing the size without virtual
8425         bases.
8426         * cp/cp-tree.h (abi_version_at_least): New macro.
8427
8428 2002-09-21  Kazu Hirata  <kazu@cs.umass.edu>
8429
8430         * ChangeLog: Follow spelling conventions.
8431         * ChangeLog.2: Likewise.
8432         * call.c: Likewise.
8433         * class.c: Likewise.
8434         * cp-tree.h: Likewise.
8435         * cvt.c: Likewise.
8436         * decl.c: Likewise.
8437         * decl2.c: Likewise.
8438         * except.c: Likewise.
8439         * friend.c: Likewise.
8440         * g++spec.c: Likewise.
8441         * init.c: Likewise.
8442         * lex.c: Likewise.
8443         * mangle.c: Likewise.
8444         * method.c: Likewise.
8445         * operators.def: Likewise.
8446         * optimize.c: Likewise.
8447         * pt.c: Likewise.
8448         * rtti.c: Likewise.
8449         * search.c: Likewise.
8450         * semantics.c: Likewise.
8451         * spew.c: Likewise.
8452         * tree.c: Likewise.
8453         * typeck.c: Likewise.
8454
8455 2002-09-18  Devang Patel  <dpatel@apple.com>
8456
8457         * cp/cp-tree.h: New prototype for walk_vtabls().
8458         * cp/decl.c (walk_vtables_r): New function.
8459         (struct cp_binding_level): Add new members, namespaces,
8460         names_size and vtables.
8461         (add_decl_to_level): Add decl in namespaces or vtables
8462         chain, if conditions match.
8463         (walk_vtables): New function.
8464         (walk_namespaces_r): Travers separate namespace chain
8465         for namespace decls.
8466         (wrapup_globals_for_namespace): Use names_size instead
8467         of list_length().
8468         * cp/decl2.c (finish_file): Use walk_vtables() instead of
8469         walk_globals() to walk vtable decls.
8470
8471 2002-09-18  Nathan Sidwell  <nathan@codesourcery.com>
8472
8473         * decl.c (grokdeclarator): Use assert, not internal_error. Don't
8474         ICE with invalid pointers & references.
8475
8476 2002-09-17  Zack Weinberg  <zack@codesourcery.com>
8477
8478         * Make-lang.in: Remove all references to the demangler.
8479         * cxxfilt.c: Moved to binutils.
8480
8481 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
8482
8483         PR c++/7718
8484         * pt.c (tsubst_decl): Remove assert.
8485
8486         Remove DR 295 implementation.
8487         * pt.c (check_cv_quals_for_unify): Disable function & method cases.
8488         * tree.c (cp_build_qualified_type_real): Likewise. Don't warn
8489         about ignoring volatile qualifiers.
8490
8491         * search.c (lookup_member): Correct documentation.
8492
8493 2002-09-16  Geoffrey Keating  <geoffk@apple.com>
8494
8495         * cp-tree.h (union lang_tree_node): Add chain_next option.
8496
8497 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
8498
8499         * parse.y (parse_finish_call_expr): Check lookup_member result.
8500
8501         PR c++/7015
8502         * semantic.c (finish_asm_stmt): Fix operand/output_operands
8503         thinko.
8504         * typeck.c (c_expand_asm_operands): Protect from error_mark_node.
8505
8506 2002-09-15  Nathan Sidwell  <nathan@codesourcery.com>
8507
8508         PR c++/7919
8509         * call.c (build_over_call): Convert this pointer for fns found by
8510         using decls.
8511
8512 2002-09-15  Kazu Hirata  <kazu@cs.umass.edu>
8513
8514         * ChangeLog: Follow spelling conventions.
8515         * ChangeLog.1: Likewise.
8516
8517 2002-09-14  Nathan Sidwell  <nathan@codesourcery.com>
8518
8519         PR c++/7768
8520         * pt.c (build_template_decl): Copy DECL_DESTRUCTOR_P.
8521
8522 2002-09-14  Kazu Hirata  <kazu@cs.umass.edu>
8523
8524         * error.c: Fix comment formatting.
8525         * except.c: Likewise.
8526         * expr.c: Likewise.
8527         * friend.c: Likewise.
8528         * g++spec.c: Likewise.
8529         * init.c: Likewise.
8530         * lex.c: Likewise.
8531         * mangle.c: Likewise.
8532         * method.c: Likewise.
8533         * optimize.c: Likewise.
8534         * pt.c: Likewise.
8535         * rtti.c: Likewise.
8536         * search.c: Likewise.
8537         * semantics.c: Likewise.
8538         * spew.c: Likewise.
8539         * tree.c: Likewise.
8540         * typeck.c: Likewise.
8541         * typeck2.c: Likewise.
8542
8543 2002-09-13  Matt Austern  <austern@apple.com>
8544
8545         PR C++/7828
8546         * cp/cp-tree.h, cp/tree.c: New function non_cast_lvalue_p.
8547         * cp/call.c: Change call-by-const-reference mechanism to use
8548         non_cast_lvalue_p when deciding whether the create a temporary.
8549         We need a temporary when passing, e.g. (long) x by const ref.
8550
8551 2002-09-13  Nathan Sidwell  <nathan@codesourcery.com>
8552
8553         * pt.c (unify, ARRAY_TYPE): Element type can be more qualified.
8554
8555 2002-09-13  Kazu Hirata  <kazu@cs.umass.edu>
8556
8557         * decl.c: Fix comment formatting.
8558         * decl2.c: Likewise.
8559
8560 2002-09-12  Kazu Hirata  <kazu@cs.umass.edu>
8561
8562         * call.c: Fix comment formatting.
8563         * class.c: Likewise.
8564         * cp-lang.c: Likewise.
8565         * cp-tree.h: Likewise.
8566         * cvt.c: Likewise.
8567
8568 2002-09-11  Zack Weinberg  <zack@codesourcery.com>
8569
8570         * Make-lang.in: Build cp/cxxfilt.o from $(srcdir)/cp/cxxfilt.c,
8571         and c++filt from cxxfilt.o + version.o + $(LIBDEPS).
8572         * cxxfilt.c: New file: split from libiberty/cplus-dem.c, with
8573         minor adjustments (use version_string, eliminate yet another
8574         duplicate of xmalloc)
8575
8576 2002-09-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8577
8578         * cp-tree.h (require_complete_eh_spec_types): Add prototype.
8579
8580 2002-09-05  Jason Merrill  <jason@redhat.com>
8581
8582         * typeck2.c (add_exception_specifier): Only pedwarn for an
8583         incomplete type.
8584         (require_complete_eh_spec_types): New fn.
8585         (cxx_incomplete_type_diagnostic): Also support pedwarning.
8586         * typeck.c (complete_type_or_diagnostic): Likewise.
8587         * call.c (build_call): Call require_complete_eh_spec_types.
8588         * rtti.c (get_pseudo_ti_desc): Give an error rather than aborting
8589         on an incomplete type.
8590
8591 2002-09-04  Jakub Jelinek  <jakub@redhat.com>
8592
8593         * decl.c (start_cleanup_fn): Clear interface_only before
8594         start_function, restore it afterwards.
8595
8596 2002-09-02  Nathan Sidwell  <nathan@codesourcery.com>
8597
8598         * cp-tree.h (finish_builtin_type): Remove.
8599         * decl2.c (finish_builtin_type): Move to common code.
8600         * decl.c (build_ptrmemfunc_type): Adjust.
8601         * rtti.c (create_pseudo_type_info): Adjust.
8602         (create_tinfo_types): Adjust.
8603
8604 2002-08-31  Jason Merrill  <jason@redhat.com>
8605
8606         * cp-lang.c (cp_expr_size): Allow initialization from a
8607         CONSTRUCTOR.
8608
8609 2002-08-30  Richard Henderson  <rth@redhat.com>
8610
8611         PR opt/7515
8612         * tree.c: Include target.h.
8613         (cp_cannot_inline_tree_fn): Don't auto-inline functions that
8614         don't bind locally.
8615         * Makefile.in (tree.o): Update.
8616
8617 2002-08-27  Mark Mitchell  <mark@codesourcery.com>
8618
8619         * class.c (layout_virtual_bases): Warn about bugs in G++ that
8620         result in incorrect object layouts.
8621         (layout_class_type): Likewise.
8622
8623 2002-08-24  Matt Austern  <austern@apple.com>
8624
8625         * tree.c (lvalue_p_1): Add argument for whether casts of lvalues
8626         are allowable.
8627         (real_lvalue_p): Update caller.
8628         (lvalue_p): Ditto.
8629         (non_cast_lvalue_or_else): New.
8630         * tree.h: Declare it.
8631         * typeck.c (build_unary_op): Use non_cast_lvalue_or_else.
8632
8633 2002-08-22  Mark Mitchell  <mark@codesourcery.com>
8634
8635         * typeck.c (build_class_member_access_expr): Handle COMPOUND_EXPR
8636         and COND_EXPR specially; fix error message output.
8637
8638 2002-08-22  Jason Merrill  <jason@redhat.com>
8639
8640         * pt.c (tsubst_expr): RETURN_EXPR is now RETURN_STMT_EXPR.
8641         * semantics.c (nullify_returns_r): Likewise.
8642
8643 2002-08-17  Gabriel Dos Reis  <gdr@integrable-solutions.net>
8644
8645         Fix PR/7621
8646         * typeck.c (finish_class_member_access_expr): Diagnose cases where
8647         name lookup finds nothing.
8648
8649 2002-08-15  Jason Merrill  <jason@redhat.com>
8650
8651         * semantics.c (finish_then_clause): Remove redundant assignment.
8652         (finish_if_stmt, begin_switch_stmt, finish_switch_stmt): Move the
8653         extra binding level outside the if/switch statement.
8654         (finish_while_cond, finish_for_cond): Rewrite complex condition
8655         into the loop body.
8656
8657 2002-08-15  Alexandre Oliva  <aoliva@redhat.com>
8658
8659         * parse.y (sizeof, alignof, typeof): New non-terminals to
8660         increment skip_evaluation.  Replace terminals with them and
8661         decrement skip_evaluation at the end of rules using them.
8662         * decl2.c (mark_used): Don't assemble_external if
8663         skipping evaluation.
8664
8665 2002-08-15  Gabriel Dos Reis  <gdr@nerim.net>
8666
8667         Fix PR/7504
8668         * parse.y (parse_finish_call_expr): Handle incomplete
8669         type used to name a scope.
8670
8671 2002-08-15  Nathan Sidwell  <nathan@codesourcery.com>
8672
8673         PR c++/7598
8674         * typeck.c (build_unary_op): Fold offsetof idiom. Fixes
8675         regression caused by my 2002-08-08 patch.
8676
8677 2002-08-13  Mark Mitchell  <mark@codesourcery.com>
8678
8679         * decl.c (pushdecl_class_level): Honor requests to bind names to
8680         OVERLOADs.
8681
8682 2002-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8683
8684         * decl2.c (build_call_from_tree): Fix uninitialized variable.
8685         * parse.y (parse_finish_call_expr): Likewise.
8686         * repo.c (old_args, old_dir, old_main): Const-ify.
8687
8688 2002-08-11  Gabriel Dos Reis  <gdr@nerim.net>
8689
8690         * decl.c (duplicate_decls): Replace DECL_SOURCE_FILE
8691         DECL_SOURCE_LINE with DECL_SOURCE_LOCATION.
8692         * optimize.c (maybe_clone_body): Likewise.
8693         * pt.c (tsubst_enum): Likewise.
8694         (lookup_template_class): Likewise.
8695         * tree.c (cp_copy_res_decl_for_inlining): Likewise.
8696
8697 2002-08-10  Neil Booth  <neil@daikokuya.co.uk>
8698
8699         * lang-specs.h: Remove -ansi.
8700
8701 2002-08-10  Nathan Sidwell  <nathan@codesourcery.com>
8702
8703         * tree.c (maybe_dummy_object): Replace // with /* */
8704
8705 2002-08-09  Mark Mitchell  <mark@codesourcery.com>
8706
8707         * call.c (standard_conversion): Use build_ptrmem_type.
8708         * cp-tree.h (build_ptrmem_type): New function.
8709         (adjust_result_of_qualified_name_lookup): Likewise.
8710         * decl.c (grokvardecl): Do not look for OFFSET_TYPEs to indicate
8711         static data members.
8712         (build_ptrmem_type): New function.
8713         (grokdeclarator): Do not use build_offset_type when encountering a
8714         qualified name.
8715         * parse.y (parse_finish_call_expr): Use
8716         adjust_result_of_qualified_name_lookup.
8717         * search.c (adjust_result_of_qualified_name_lookup): New function.
8718         * typeck.c (qualify_type_recursive): Use TYPE_PTRMEM_* rather than
8719         accessing OFFSET_TYPEs directly.
8720
8721 2002-08-08  Mike Stump  <mrs@apple.com>
8722
8723         * call.c (add_builtin_candidate): legal -> valid, illegal -> invalid.
8724         (type_decays_to): Likewise.
8725         * class.c (find_final_overrider): Likewise.
8726         (maybe_note_name_used_in_class): Likewise.
8727         * decl.c (current_tmpl_spec_kind): Likewise.
8728         (add_binding): Likewise.
8729         (push_class_binding): Likewise.
8730         (duplicate_decls): Likewise.
8731         (layout_var_decl): Likewise.
8732         (grokfndecl): Likewise.
8733         (grokdeclarator): Likewise.
8734         (check_default_argument): Likewise.
8735         * decl2.c (handle_class_head): Likewise.
8736         * error.c (dump_template_decl): Likewise.
8737         * init.c (build_offset_ref): Likewise.
8738         * pt.c (check_specialization_scope): Likewise.
8739         (determine_specialization): Likewise.
8740         (check_explicit_specialization): Likewise.
8741         (maybe_check_template_type): Likewise.
8742         (process_partial_specialization): Likewise.
8743         (check_default_tmpl_args): Likewise.
8744         (push_template_decl_real): Likewise.
8745         (convert_template_argument): Likewise.
8746         (try_class_unification): Likewise.
8747         (get_bindings_real): Likewise.
8748         (do_decl_instantiation): Likewise.
8749         * semantics.c (begin_function_definition): Likewise.
8750         (finish_member_declaration): Likewise.
8751         (check_multiple_declarators): Likewise.
8752         * typeck.c (comp_array_types): Likewise.
8753         (comptypes): Likewise.
8754         (expr_sizeof): Likewise.
8755         (build_binary_op): Likewise.
8756         (dubious_conversion_warnings): Likewise.
8757         (check_return_expr): Likewise.
8758
8759 2002-08-08  Mark Mitchell  <mark@codesourcery.com>
8760
8761         * typeck.c (build_class_member_access_expr): Do not return
8762         error_mark_node when no error has occurred.
8763
8764 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
8765
8766         * typeck.c (build_component_addr): Remove.
8767         (build_unary_op): Just check it's not a bitfield, and then build
8768         an ADDR_EXPR.
8769
8770 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
8771
8772         * class.c (convert_to_base): Correct check for error_mark_node.
8773         (create_vtable_ptr): Remove unused VFUNS_P parm.
8774
8775 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
8776
8777         * cp/Make-lang.in (c++.mostlyclean): Remove coverage files.
8778
8779 2002-08-07  Mark Mitchell  <mark@codesourcery.com>
8780
8781         Rework build_component_ref.
8782         * call.c (build_vfield_ref): Do not go through build_component_ref.
8783         (build_field_call): Use build_class_member_access_expr.
8784         (build_user_type_conversion_1): Use BASELINK_FUNCTIONS.
8785         (build_object_call): Likewise.
8786         * class.c (convert_to_base): New function.
8787         (type_requires_array_cookie): Use BASELINK_FUNCTIONS.
8788         (instantiate_type): Handle BASELINKs.
8789         * cp-tree.def (BASELINK): New tree code.
8790         * cp-tree.h (BASELINK_P): Reimplement.
8791         (SET_BASELINK_P): Remove.
8792         (BASELINK_BINFO): Reimplement.
8793         (BASELINK_FUNCTIONS): Likewise.
8794         (BASELINK_ACCESS_BINFO): Likewise.
8795         (BASELINK_OPTYPE): Likewise.
8796         (convert_to_base): New function.
8797         (name_p): Likewise.
8798         (build_object_ref): Remove.
8799         (build_component_ref_1): Likewise.
8800         (build_component_ref): Likewise.
8801         (build_x_component_ref): Likewise.
8802         (build_class_member_access_expr): New function.
8803         (finish_class_member_access_expr): Likewise.
8804         (build_ptrmemfunc_access_expr): Likewise.
8805         * decl.c (grokdeclarator): Handle BASELINKs.
8806         * decl2. (build_expr_from_tree): Handle COMPONENT_REFs by using
8807         finish_class_member_access_expr.
8808         (arg_assoc): Handle BASELINKs.
8809         (do_class_using_decl): Likewise.
8810         * error.c (dump_decl): Likewise.
8811         (dump_expr): Use build_ptrmemfunc_access_expr.
8812         * except.c (dtor_nothrow): Use CLASSTYPE_DESTRUCTORS to find
8813         destructors.
8814         (build_throw): Use BASELINK_FUNCTIONS.
8815         * init.c (perform_member_init): Use
8816         build_class_member_access_expr.
8817         (build_offset_ref): Handle BASELINKs.  Use
8818         build_class_member_access_expr.
8819         * method.c (hack_identifier): Likewise.
8820         * parse.y (do_id): Use BASELINK, not TREE_LIST.
8821         (primary): Remove uses of build_object_ref.
8822         * pt.c (lookup_template_function): Handle BASELINKs.
8823         (resolve_overloaded_unification): Likewise.
8824         * search.c (build_baselink): Build a BASELINK, not a TREE_LIST.
8825         (lookup_field): Use BASELINK, not TREE_LIST.
8826         (lookup_fnfiels): Likewise.
8827         (setup_class_bindings): Likewise.
8828         * semantics.c (finish_object_call_expr): Do not use
8829         build_method_call when we already know what function is being
8830         called.
8831         * spew.c (identifier_type): Use BASELINK, not TREE_LIST.
8832         * tree.c (really_overloaded_fn): Use OVL_CHAIN for OVERLOADs, not
8833         TREE_CHAIN.
8834         (name_p): New function.
8835         * typeck.c (build_object_ref): Remove.
8836         (build_component_ref_1): Likewise.
8837         (build_x_component_ref): Likewise.
8838         (build_class_member_access_expr): New function.
8839         (finish_class_member_access_expr): Likewise.
8840         (build_ptrmemfunc_access_expr): Likewise.
8841         (get_member_function_from_ptrfunc): Use
8842         build_ptrmemfunc_access_expr.
8843         (build_binary_op): Likewise.
8844         (build_unary_op): Likewise.
8845         (build_ptrmemfunc): Likewise.
8846         (pfn_from_ptrmemfunc): Likewise.
8847         * typeck2.c (build_m_component_ref): Adjust comment.
8848
8849 2002-08-07  Neil Booth  <neil@daikokuya.co.uk>
8850
8851         * Make-lang.in (CXX_C_OBJS): Update.
8852         * cp-lang.c (LANG_HOOKS_DECODE_OPTION): Use c_common_decode_option.
8853         * cp-tree.h (cxx_decode_option): Remove.
8854         * decl2.c (compare_options, lang_f_options, unsupported_options,
8855         cxx_decode_option): Remove.
8856
8857 2002-08-06  Gabriel Dos Reis  <gdr@nerim.net>
8858
8859         * typeck.c (build_x_unary_op): Handle pointer-to-member.
8860
8861 2002-08-05  Geoffrey Keating  <geoffk@redhat.com>
8862
8863         * class.c: Don't include obstack.h.
8864         (popclass):
8865         * decl2.c: Delete bogus comment.
8866         * error.c: Don't include obstack.h.
8867         * except.c: Likewise.
8868         (dump_type): Correct comment.
8869         * method.c: Don't include obstack.h.
8870         * tree.c: Likewise.
8871
8872 2002-08-04  Gabriel Dos Reis  <gdr@nerim.net>
8873
8874         Fix PR/2213
8875         * cvt.c (cp_convert_to_pointer): Reject conversions from integral
8876         expressions to pointer-to-data-member of pointer-to-member-functions.
8877
8878 2002-08-04  Geoffrey Keating  <geoffk@redhat.com>
8879
8880         * cvt.c (ocp_convert): Delete obsolete code.
8881         * parse.y (permanent_obstack): Delete declaration.
8882         * pt.c (permanent_obstack): Delete declaration.
8883         * repo.c (permanent_obstack): Delete declaration.
8884         (open_repo_file): Use xmalloc instead of permanent_obstack.
8885         (init_repo): Use xstrdup instead of permanent_obstack.
8886
8887 2002-08-04  Nathan Sidwell  <nathan@codesourcery.com>
8888
8889         * cp-tree.h (VF_DERIVED_VALUE): Remove.
8890         * class.c (finish_struct_1): Use VF_BINFO_VALUE not VF_DERIVED_VALUE.
8891
8892 2002-08-03  Nathan Sidwell  <nathan@codesourcery.com>
8893
8894         PR 7470.
8895         C++ ABI change - vfunc ordering.
8896         * class.c (add_virtual_function): Remove.
8897         (dfs_modify_all_vtables): Take list of all declared
8898         virtuals. Assign all that are not in primary base.
8899         (check_for_override): Adjust comments.
8900         (create_vtable_ptr): Take single list of virtuals. Build chain
8901         of declared virtuals here.
8902         (layout_class_type): Take single list of virtuals. Adjust.
8903         (finish_struct_1): Keep virtuals on single list. Adjust.
8904
8905 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
8906
8907         * init.c (build_member_call): Use build_new_method_call, not
8908         build_method_call.
8909
8910 2002-08-02  Krister Walfridsson  <cato@df.lth.se>
8911
8912         * Make-lang.in (spew.o, lex.o, pt.o): Add path to parse.h dependencies.
8913
8914 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
8915
8916         * call.c (build_method_call): Issue a more helpful error message
8917         about ambiguous method names.
8918
8919 2002-08-02  Nathan Sidwell  <nathan@codesourcery.com>
8920
8921         * tree.c (build_shared_int_cst): Make cache file scope, and
8922         GTY it.
8923
8924 2002-08-02  Jason Merrill  <jason@redhat.com>
8925
8926         * cp-lang.c (LANG_HOOKS_EXPR_SIZE): Define.
8927         (cp_expr_size): New fn.
8928         * call.c (build_over_call): Lose empty class hackery.
8929         (convert_arg_to_ellipsis): Promote non-POD warning to error.
8930         * typeck.c (build_modify_expr): Don't use save_expr on an lvalue.
8931
8932         * semantics.c (expand_body): Do tree optimization in the function
8933         context, too.
8934
8935 2002-08-01  Neil Booth  <neil@daikokuya.co.uk>
8936
8937         * cp-tree.h: Move all warning and flag declarations to c-common.h.
8938         * decl.c: Move all warning and flag variables to c-common.c.
8939         * decl2.c: Move all warning and flag variables to c-common.c.
8940         * lex.c (flag_digraphs): Remove.
8941         (warn_traditional): Now in c-common.c.
8942
8943 2002-07-31  Mark Mitchell  <mark@codesourcery.com>
8944
8945         * call.c (build_field_call): Do not look up the field by name.
8946         (build_method_call): Simplify.
8947         (struct z_candidate): Add access_path and conversion_path.  Remove
8948         basetype_path.
8949         (convert_class_to_reference): Adjust use of
8950         add_function_candidate.
8951         (add_candidate): Add conversion_path argument.
8952         (add_function_candidate): Use it.
8953         (add_conv_dndidate): Likewise.
8954         (build_builtin_candidate): Likewise.
8955         (add_template_candidate_real): Add conversion_path argument.
8956         (add_template_conv_candidate): Likewise.
8957         (add_template_candidate): Likewise.
8958         (build_user_type_conversion_1): Use it.
8959         (build_new_function_call): Remove name lookup code.  Adjust use of
8960         add_template_candidate and add_function_candidate.
8961         (build_new_op): Likewise.
8962         (convert_like_real): Use build_special_member_call.
8963         (build_over_call): Use cand->conversion_path.
8964         (build_special_member_call): New method.
8965         (build_new_method_call): Remove name lookup code.
8966         * cp-tree.def (OFFSET_REF): Update documentation.
8967         (TEMPLATE_ID_EXPR): Likewise.
8968         * cp-tree.h (BASELINK_ACCESS_BINFO): New macro.
8969         (BASELINK_OPTYPE): Likewise.
8970         (build_new_method_call): Adjust prototype.
8971         (build_special_member_call): New method.
8972         (build_baselink): New method.
8973         (build_offset_ref_call_from_tree): Likewise.
8974         (build_call_from_tree): Likewise.
8975         (finish_qualified_call_expr): Remove.
8976         (finish_call_expr): Adjust prototype.
8977         (build_x_function_call): Remove.
8978         * cvt.c (ocp_convert): Use build_special_member_call.
8979         * decl2.c (reparse_absdcl_as_expr): Use finish_call_expr.
8980         (build_expr_from_tree): Adjust handling for TEMPLATE_ID_EXPR and
8981         CALL_EXPR.
8982         (build_offset_ref_call_from_tree): New function.
8983         (build_call_from_tree): Likewise.
8984         * init.c (expand_cleanup): Use build_special_member_call.
8985         (expand_default_init): Likewise.
8986         (build_member_call): Use finish_call_expr.
8987         (build_new_1): Use build_special_member_call.
8988         (push_base_cleanups): Likewise.
8989         * method.c (do_build_assign_ref): Likewise.
8990         * parse.y (template_id): Do not pass a COMPONENT_REF to
8991         lookup_template_function.
8992         (primary): Use parse_finish_call_epxr, not finish_call_expr.
8993         (parse_finish_call_expr): New function.
8994         * pt.c (lookup_template_function): Add assertions.
8995         * search.c (lookup_base): Allow T to be a binfo.
8996         (build_baselink): New function.
8997         (lookup_member): Use it.
8998         * semantics.c (finish_call_expr): Do not do name lookup.
8999         (finish_object_call_expr): Remove #if 0'd code.
9000         (finish_qualified_call_expr): Remove.
9001         * typeck.c (build_x_function_call): Remove.
9002         (build_static_case): Use build_special_member_call.
9003         * typeck2.c (build_functional_cast): Likewise.
9004
9005 2002-07-30  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9006
9007         * lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c.
9008
9009 2002-07-30  Gabriel Dos Reis  <gdr@nerim.net>
9010
9011         * cp-tree.h (VF_DERIVED_VALUE): Restore from previous deletion.
9012
9013 2002-07-30  Nathan Sidwell  <nathan@codesourcery.com>
9014
9015         * cp-tree.h (CLASSTYPE_VFIELDS, VF_*, BV_*): Add more
9016         documentation.
9017
9018 2002-07-29  Alan Modra  <amodra@bigpond.net.au>
9019
9020         * cp-tree.h: Comment typo fix.
9021
9022 2002-07-29  Richard Earnshaw  <rearnsha@arm.com>
9023
9024         * spew.c (space_for_token): Allocate zeroed memory for a new token
9025         chunk.
9026
9027 2002-07-27  Roger Sayle  <roger@eyesopen.com>
9028
9029         * decl.c (builtin_function_1): No need to explicitly mark
9030         BUILT_IN_RETURN and BUILT_IN_EH_RETURN as noreturn.
9031
9032 2002-07-27  Roger Sayle  <roger@eyesopen.com>
9033
9034         * decl2.c (cxx_decode_option): Support -fno-builtin-foo.
9035
9036 2002-07-26  Jason Merrill  <jason@redhat.com>
9037
9038         * call.c (build_over_call): Likewise.
9039         (cp_convert_parm_for_inlining): New fn.
9040         (convert_for_arg_passing): New fn.
9041         (convert_default_arg, build_over_call): Use it.
9042         (type_passed_as): New fn.
9043         * pt.c (tsubst_decl): Use it.
9044         * decl2.c (cp_build_parm_decl): New fn.
9045         (build_artificial_parm): Use it.
9046         (start_static_storage_duration_function): Likewise.
9047         * decl.c (start_cleanup_fn, grokdeclarater): Likewise.
9048         (grokparms): Don't mess with DECL_ARG_TYPE.
9049         * typeck.c (convert_arguments): Use convert_for_arg_passing.
9050         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
9051         Define.
9052         * cp-tree.h: Declare new fns.
9053
9054 2002-07-26  Neil Booth  <neil@daikokuya.co.uk>
9055
9056         * cp-tree.h (flag_operator_names): Remove.
9057         * decl2.c (flag_operator_names): Remove.
9058         (lang_f_options): Remove operator-names.
9059         * lex.c (D_OPNAME): Remove.
9060         (reswords): Remove operator names.
9061         (rid_to_yy): Remove operator names.
9062         (init_reswords): No need to handle D_OPNAME.
9063         * spew.c (read_process_identifier): There are no operator
9064         names.
9065
9066 2002-07-26  Jason Merrill  <jason@redhat.com>
9067
9068         * dump.c (cp_dump_tree): Call c_dump_tree.
9069         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
9070
9071 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
9072
9073         * error.c (print_whitespace): Remove.
9074         * g++spec.c (LIBUNWIND): Move.
9075         * mangle.c (mangled_position, write_signed_number): Remove.
9076
9077 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
9078
9079         * decl2.c (cxx_decode_option): Similarly.
9080
9081 2002-07-25  Gabriel Dos Reis  <gdr@nerim.net>
9082
9083         * cp-tree.h (cxx_sizeof_nowarn): Now a macro.
9084         (cxx_sizeof_or_alignof_type): Take a third argument.
9085         (cxx_sizeof): Adjust definition.
9086         (cxx_alignof): Likewise.
9087         * init.c (build_delete): Use cxx_sizeof_nowarn to reflect reality.
9088         * typeck.c (cxx_sizeof_or_alignof_type): Take a third argument for
9089         complaining.
9090         (c_sizeof_nowarn): Remove definition.
9091         (build_unary_op): Use cxx_sizeof_nowarn.
9092
9093 2002-07-24  Geoffrey Keating  <geoffk@redhat.com>
9094
9095         * tree.c (cp_build_qualified_type_real): When copying
9096         pointer-to-method types, unshare the record that holds
9097         the cached pointer-to-member-function type.
9098
9099 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
9100
9101         * cp-tree.h (FILE_FUNCTION_PREFIX_LEN): Remove.
9102
9103 2002-07-23  Gabriel Dos Reis  <gdr@nerim.net>
9104
9105         Fix PR/7363:
9106         * typeck.c (cxx_sizeof_or_alignof_type): New function.
9107         (c_sizeof): Remove definition.
9108         (expr_sizeof): Use cxx_sizeof.
9109         * decl2.c (build_expr_from_tree): Use cxx_sizeof_or_alignof_type.
9110         * decl.c (finish_destructor_body): Use cxx_sizeof.
9111         * semantics.c (finish_alignof): Likewise.
9112         (finish_alignof): Use cxx_alignof.
9113         * cp-tree.h (cxx_sizeof, cxx_alignof): New macros.
9114         (cxx_sizeof_or_alignof_type): Declare.
9115         (my_friendly_assert): Move to ../c-common.h.
9116
9117 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
9118
9119         * class.c, method.c, pt.c, search.c: Don't define obstack macros.
9120
9121 2002-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9122
9123         PR c++/7347, c++/7348
9124         * cp-tree.h (tsubst_flags_t): Add tf_parsing.
9125         * decl.c (make_typename_type): Use it.
9126         (make_unbound_class_template): Likewise.
9127         (lookup_name_real): Don't call type_access_control if scope is
9128         template parameter dependent.
9129         * parse.y (template_arg): Call make_unbound_class_template with
9130         tf_parsing set.
9131         (nest_name_specifier): Call make_typename_type with tf_parsing set.
9132         (typename_sub0): Likewise.
9133         (typename_sub1): Likewise.
9134         (instantiate_decl): Push class scope.
9135         * pt.c (regenerate_decl_from_template): Call pushclass and popclass
9136         for both static variable and member function template.
9137         (instantiate_decl) Call pushclass and popclass when tsubst'ing type
9138         and arguments.
9139         * search.c (type_access_control): Do type access for TEMPLATE_DECL
9140         too.
9141
9142 2002-07-20  Roger Sayle  <roger@eyesopen.com>
9143
9144         * decl2.c (cxx_decode_option): Simplify -fhandle-exceptions
9145         test by using positive_option.  Make whitespace consistent.
9146
9147 2002-07-20  Gabriel Dos Reis  <gdr@nerim.net>
9148
9149         * spew.c (struct unparsed_test): Replace 'filename' and 'lineno'
9150         members with 'locus'.  Adjust use throughout.
9151         (struct feed):  Likewise.
9152         (alloc_unparsed_test): Change prototype, take a 'const location_t *'.
9153         Adjust use.
9154         (snarf_defarg): Use error(), not error_with_file_and_line().
9155
9156 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
9157
9158         * lang-specs.h (@c++): Include "%2" (cc1plus_spec) wherever
9159         cpp_options is included.
9160
9161 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9162
9163         PR c++/2862, c++/2863
9164         * pt.c (determine_specialization): Compare the length of
9165         TYPE_ARG_TYPES.  Tidy.
9166
9167 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9168
9169         PR c++/3797
9170         * decl.c (duplicate_decls): Don't propagate inlining parameters from
9171         olddecl to newdecl when newdecl is a specialization of the
9172         instantiation olddecl.
9173
9174 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9175
9176         PR c++/4802, c++/5387
9177         * decl.c (make_typename_type): Use enforce_access.
9178
9179 2002-07-17  Scott Snyder <snyder@fnal.gov>
9180
9181         PR c++/7320
9182         * rtti.c (get_tinfo_decl): Set DECL_COMDAT.
9183
9184 2002-07-12  Mark Mitchell  <mark@codesourcery.com>
9185
9186         * class.c (add_method): Correct handling of conversion operators.
9187
9188 2002-07-11  Mark Mitchell  <mark@codesourcery.com>
9189
9190         PR c++/7224
9191         * class.c (add_method): Simplify.
9192
9193 2002-07-11  Jason Merrill  <jason@redhat.com>
9194
9195         PR c++/7279
9196         * tree.c (cp_copy_res_decl_for_inlining): Also copy
9197         TREE_ADDRESSABLE.
9198
9199 2002-07-10  Graham Stott  <graham.stott@btinternet.com>
9200
9201         * pt.c (template_parm_this_level_p, push_template_decl_real):
9202         Pass depth as int pointer.
9203
9204 2002-07-11  Tim Josling  <tej@melbpc.org.au>
9205
9206         Remove front end hard coding from gengtype.c.
9207
9208         * config-lang.in (gtfiles): Add files needed for this front end.
9209
9210 2002-07-10  Mark Mitchell  <mark@codesourcery.com>
9211
9212         * cp-tree.h (unqualified_name_lookup_error): Declare it.
9213         (begin_function_definition): Adjust prototype.
9214         * lex.c (unqualified_name_lookup_error): New function, split out
9215         from ...
9216         (do_identifier): ... here.
9217         * parse.y (parse_begin_function_definition): New function.
9218         (fn.def1): Use it.
9219         * semantics.c (begin_function_definition): Accept decl-specifiers
9220         and attributes as separate parameters.
9221
9222 2002-07-10  Jason Merrill  <jason@redhat.com>
9223
9224         PR c++/6255
9225         * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
9226         modifying the old one.
9227
9228 2002-07-09  Mark Mitchell  <mark@codesourcery.com>
9229
9230         * cp-tree.h (constructor_name_p): Declare it.
9231         (check_template_template_default_arg): Likewise.
9232         * class.c (handle_using_decl): Use constructor_name_p.
9233         * decl.c (grokdeclarator): Likewise.
9234         * decl2.c (constructor_name_p): Define it.
9235         * init.c (build_member_call): Use constructor_name_p.
9236         * parse.y (template_parm): Use check_template_template_default_arg.
9237         * pt.c (check_explicit_specialization): Use constructor_name_p.
9238         * semantics.c (check_template_template_default_arg): New function.
9239
9240 2002-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9241
9242         * pt.c (can_complete_type_without_circularity): Add static to
9243         function definition.
9244
9245 2002-07-08  Mark Mitchell  <mark@codesourcery.com>
9246
9247         * cp-tree.h (have_extern_spec): Declare it
9248         * decl.c (have_extern_spec): Define it.
9249         (start_decl): Eliminate use of used_extern_spec.
9250         (start_function): Likewise.
9251         * parse.y (have_extern_spec): Remove declaration.
9252         (used_extern_spec): Likewise.
9253         (frob_specs): Eliminate use of used_extern_spec.
9254         (.hush_warning): Likewise.
9255
9256 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
9257
9258         * Make-lang.in (cp/parse.o): Depend on decl.h.
9259         * cp-tree.h (do_decl_instantiation): Change prototype.
9260         * parse.y: Include decl.h.
9261         (parse_decl_instantiation): New function.
9262         (explicit_instantiation): Use it.
9263         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
9264         and DECLSPECS.
9265
9266 2002-07-07  Roger Sayle  <roger@eyesopen.com>
9267
9268         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
9269         constructor and destructor tests when passed a TEMPLATE_DECL.
9270
9271 2002-07-05  Jason Merrill  <jason@redhat.com>
9272
9273         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
9274         pointers.
9275
9276         PR optimization/7145
9277         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
9278
9279 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
9280
9281         Repair damage on weak-impared targets caused by my previous patch.
9282         * cp-tree.h (import_export_tinfo): Add parameter.
9283         * decl2.c (import_export_tinfo): Add parameter, post adjust
9284         DECL_COMDAT.
9285         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
9286         import_export_tinfo.
9287
9288 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9289
9290         PR c++/6944
9291         * init.c (build_aggr_init): Remove qualifiers of init before calling
9292         build_vec_init.
9293         (build_vec_init): Flatten multi-dimensional array during cleanup.
9294         (build_vec_delete_1): Abort if the type of each element is array.
9295
9296 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
9297
9298         * pt.c (instantiate_class_template): Fix typo.
9299
9300 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9301
9302         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
9303         by CVS conflict in my last patch.
9304
9305 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9306
9307         PR c++/6716
9308         * pt.c (can_complete_type_without_circularity): New function.
9309         (instantiate_class_template): Use it.
9310         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
9311         message due to incomplete fields.
9312
9313 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
9314
9315         PR c++/7112
9316         * mangle.c (write_expression): Add mangling for sizeof when
9317         applied to a type.
9318         * operators.def: Remove stale comment.
9319
9320 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
9321
9322         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
9323         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
9324         (tinfo_decl_type): Replace with ...
9325         (type_info_ptr_type): ... this.
9326         (import_export_tinfo): Declare.
9327         (tinfo_decl_p): Rename to ...
9328         (unemitted_tinfo_decl_p): ... this.
9329         * decl2.c (import_export_decl): Break out tinfo handling into ...
9330         (import_export_tinfo): ... here. New function.
9331         (finish_file): Adjust.
9332         * rtti.c (TINFO_REAL_NAME): New macro.
9333         (init_rtti_processing): Create the tinfo types.
9334         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
9335         (get_tinfo_decl): Adjust.
9336         (get_tinfo_ptr): New function.
9337         (get_type_id): Use it.
9338         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
9339         (ptr_initializer): Use get_tinfo_ptr.
9340         (ptm_initializer): Likewise.
9341         (synthesize_tinfo_var): Break into ...
9342         (get_pseudo_ti_init): ... this. Just create the initializer.
9343         (get_pseudo_ti_desc): .. and this.
9344         (create_real_tinfo_var): Remove.
9345         (create_pseudo_type_info): Don't create the vtable decl here.
9346         (get_vmi_pseudo_type_info): Remove.
9347         (create_tinfo_types): Adjust.
9348         (tinfo_decl_p): Rename to ...
9349         (unemitted_tinfo_decl_p): ... here. Adjust.
9350         (emit_tinfo_decl): Adjust. Create the initializer.
9351
9352 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
9353
9354         PR c++/6695
9355         * pt.c (tsubst_friend_class): Substitute into the context of the
9356         friend before using it.
9357
9358 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
9359
9360         * cp-tree.h (xref_tag): Change prototype.
9361         (handle_class_head): Likewise.
9362         (build_x_component_ref): Likewise.
9363         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
9364         (xref_tag): Take attributes as a separate parameter.
9365         (xref_tag_from_type): Adjust call to xref_tag.
9366         * decl2.c (build_expr_from_tree): Adjust call to
9367         build_x_component_ref.
9368         (handle_class_head): Take attributes as a separate parameter.
9369         * parse.y (parse_xref_tag): New function.
9370         (parse_handle_class_head): Likewise.
9371         (primary): Use parse_xref_tag.
9372         (class_head_decl): Use parse_handle_class_head.
9373         (class_head_defn): Likewise.
9374         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
9375         (build_dynamic_cast_1): Likewise.
9376         (create_pseudo_type_info): Likewise.
9377         (emit_support_tinfos): Likewise.
9378         * typeck.c (build_object_ref): Adjust call to
9379         build_x_component_ref.
9380         (build_x_component_ref): Remove protect parameter.
9381
9382 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
9383
9384         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
9385         * class.c (handle_using_decl): Likewise.
9386         (instantiate_type): Likewise.
9387         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
9388         (xref_basetypes): Change prototype.
9389         (begin_mem_initializers): New function.
9390         (get_overloaded_fn): Likewise.
9391         * decl.c (xref_basetypes): Simplify.
9392         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
9393         * init.c (build_offset_ref): Likewise.
9394         * parse.y (base_init): Use begin_mem_initializers().
9395         (structsp): Adjust call to xref_basetypes.
9396         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
9397         (instantiate_class_template): Adjust call to xref_basetypes.
9398         * semantics.c (begin_mem_initializers): New function.
9399         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
9400         (really_overloaded_fn): Likewise.
9401         (get_overloaded_fn): New function.'
9402         (get_first_fn): USe BASELINK_FUNCTIONS.
9403
9404 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
9405
9406         * cp-tree.h (SCALAR_TYPE_P): New macro.
9407         (check_for_out_of_scope_variable): New function.
9408         (at_class_scope_p): Likewise.
9409         (finish_fname): Likewise.
9410         * class.c (finish_struct): Use at_function_scope_p.
9411         * decl.c (check_for_out_of_scope_variable): New function, split
9412         out from do_identifier.
9413         (finish_enum): Use at_function_scope_p.
9414         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
9415         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
9416         (primary): Use at_function_scope_p.
9417         * search.c (at_class_scope_p): New function.
9418         * semantics.c (finish_fname): Likewise.
9419         (check_multiple_declarators): Use at_function_scope_p.
9420
9421 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
9422
9423         * parse.y (parse_scoped_id): New function.
9424         (primary): Use it.
9425         * cp-tree.h (do_scoped_id): Adjust declaration.
9426         * lex.c (do_scoped_id): Remove call to yylex.
9427         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
9428         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
9429         expanding it inline.
9430
9431 2002-06-23  Matt Thomas  <matt@3am-software.com>
9432
9433         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
9434         "#if VMS_TARGET".
9435
9436 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9437
9438         * mangle.c (integer_type_codes): Const-ify.
9439
9440 2002-06-20  Richard Henderson  <rth@redhat.com>
9441
9442         PR c++/6747
9443         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
9444         Call put_var_into_stack.
9445
9446 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9447
9448         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
9449         array size calculation.
9450
9451 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9452
9453         PR c++/6892
9454         * pt.c (tsubst_expr): Handle FILE_STMT.
9455
9456 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9457
9458         PR c++/6723
9459         * pt.c (lookup_template_class): Don't build complete argument of
9460         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
9461         argument.
9462
9463 2002-06-19  Akim Demaille  <akim@epita.fr>
9464
9465         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
9466         decl.h's TYPENAME.
9467         * spew.c, lex.c: Adjust.
9468         * parse.y (explicit_instantiation): Add empty action to override
9469         the default $$ = $1 where it introduces a type clash.
9470
9471 2002-06-14  Jason Merrill  <jason@redhat.com>
9472
9473         * semantics.c (begin_for_stmt): Push the 'for' scope before
9474         adding the FOR_STMT.
9475
9476         C++ ABI changes.
9477         * class.c (build_base_field): Set DECL_PACKED.
9478         (layout_class_type): Don't use tail padding of PODs.
9479         * mangle.c (write_unqualified_name): Fix template conversion op
9480         mangling.
9481
9482 2002-06-16  Richard Henderson  <rth@redhat.com>
9483
9484         PR opt/6793
9485         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
9486         after template instantiation.
9487
9488 2002-06-16  Richard Henderson  <rth@redhat.com>
9489
9490         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
9491
9492 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
9493
9494         * cp-tree.h (compiler_error): Remove declaration.
9495         * lex.c (compiler_error): Remove definition.
9496
9497 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
9498
9499         * g++spec.c (LIBUNWIND): New.
9500         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
9501
9502 2002-06-13  Jessica Han  <jessica@cup.hp.com>
9503
9504         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
9505         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
9506         (build_vbase_offset_vtbl_entries): Likewise.
9507         * rtti.c (build_headof): Likewise.
9508         (get_tinfo_decl_dynamic): Likewise.
9509         (create_pseudo_type_info): Likewise.
9510
9511 2002-06-12  Stan Shebs  <shebs@apple.com>
9512
9513         * mpw-config.in: Remove file, no longer used.
9514         * mpw-make.sed: Ditto.
9515
9516 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
9517
9518         * decl2.c: Update call to cpp_handle_option.
9519
9520 2002-06-07  H.J. Lu  (hjl@gnu.org)
9521
9522         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
9523
9524 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
9525
9526         * error.c (cp_error_at): Fix typo.
9527
9528 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
9529
9530         * error.c (cp_diagnostic_starter): Adjust call.
9531         (maybe_print_instantiation_context): Change prototype to take a
9532         'diagnostic_info *'.
9533         (print_instantiation_full_context): Likewise.
9534         (print_instantiation_partial_context): Likewise.
9535         (cp_diagnostic_starter): Likewise.
9536         (cp_diagnostic_finalizer): Likewise.
9537         (cp_print_error_function): Likewise.
9538         (cp_printer): Take a secondary parameter as a 'text_info *'.
9539         Remove output_state savings.  Adjust calls.
9540
9541 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
9542
9543         * pt.c (inline_parm_levels): Mark for GC.
9544
9545         * mangle.c (start_mangling): Allocate G.substitutions here...
9546         (init_mangle): ... rather than here.
9547         (finish_mangling): Clear the varray pointer when done with it.
9548         * spew.c (yylexstring): Don't use VARRAY_FREE.
9549         * search.c (bfs_walk): Don't use VARRAY_FREE.
9550         * decl2.c (pending_statics): Use gengtype to mark.
9551         (deferred_fns): Likewise.
9552         (ssdf_decls): Likewise.
9553         (init_decl2): Delete.
9554         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
9555         (cxx_init_decl_processing): Don't call init_decl2.
9556         (cxx_pop_function_context): Don't use VARRAY_FREE.
9557         * cp-tree.h (struct saved_scope): No need for special marking
9558         of varrays.
9559         (struct language_function): Likewise.
9560         (local_classes): Use gengtype to mark.
9561         (init_decl2): Delete prototype.
9562         * class.c (init_class_processing): Don't use
9563         ggc_add_tree_varray_root.
9564         (build_vtbl_initializer): Don't use VARRAY_FREE.
9565
9566         * decl.c (typename_compare): Don't use same_type_p.
9567
9568         * decl.c: Include hashtab.h instead of hash.h.
9569         (typename_hash): Update to use htab_h.
9570         (typename_compare): Likewise.
9571         (typename_htab): Use gengtype to mark.
9572         (build_typename_type): Update to use htab_h.
9573         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
9574
9575         * Make-lang.in (gt-cp-tree.h): New rule.
9576         (cp/tree.o): Depend on gt-cp-tree.h.
9577         * config-lang.in (gtfiles): Add cp/tree.c.
9578         * tree.c: Include gt-cp-tree.h.
9579         (list_hash_table): Use gengtype to mark.
9580         (init_tree): Use gengtype to mark trees.
9581
9582         * Make-lang.in (cp/decl.o): Add debug.h dependency.
9583         * call.c (struct z_candidate): Use gengtype.
9584         (USER_CONV_CAND): Use WRAPPER_ZC.
9585         (convert_class_to_reference): Use build_zc_wrapper.
9586         (build_type_conversion_1): Likewise.
9587         (build_over_call): Use WRAPPER_ZC.
9588         (add_warning): Use build_zc_wrapper.
9589         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
9590         * cp-tree.h (struct lang_identifier): Use gengtype.
9591         (struct template_parm_index_s): Likewise.
9592         (struct ptrmem_cst): Likewise.
9593         (struct tree_binding): Likewise.
9594         (struct tree_overload): Likewise.
9595         (struct tree_srcloc): Likewise.
9596         (struct tree_wrapper): Likewise.  Also modify to have a pointer
9597         to struct z_candidate rather than void.
9598         (enum cp_tree_node_structure_enum): New.
9599         (union lang_tree_node): New.
9600         (cxx_mark_tree): Delete prototype.
9601         (cp_tree_node_structure): New prototype.
9602         (build_ptr_wrapper): Delete prototype.
9603         (build_int_wrapper): Delete prototype.
9604         (build_zc_wrapper): New prototype.
9605         * decl.c: Include debug.h
9606         (cxx_mark_tree): Delete.
9607         (cp_tree_node_structure): New.
9608         * tree.c (build_ptr_wrapper): Delete.
9609         (build_int_wrapper): Delete.
9610         (build_zc_wrapper): New.
9611
9612         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
9613         Correct typo.  Patch from k_fukui@highway.ne.jp.
9614
9615         * semantics.c (current_stmt_tree): Update for change to
9616         struct language_function.
9617         (finish_mem_initializers): Likewise.
9618         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
9619         * cp-tree.h (struct language_function): Rename from
9620         cp_language_function.  Change all uses.
9621         (cp_function_chain): Don't need to cast.
9622
9623         * class.c (duplicate_tag_error): Reset discriminator.
9624         (check_bases_and_members): Update for data structure changes.
9625         * cp-tree.h (struct lang_id2): Use gengtype.
9626         (flagged_type_tree): Likewise.
9627         (SET_LANG_ID): Use GGC on struct lang_id2.
9628         (struct cp_language_function): Use gengtype.  Remove field
9629         'x_vcalls_possible_p'.
9630         (current_vcalls_possible_p): Delete.
9631         (struct lang_type_header): New.
9632         (struct lang_type_class): Rename from struct lang_type.  Include
9633         struct lang_type_header.
9634         (struct lang_type_ptrmem): New.
9635         (struct lang_type): New.
9636         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
9637         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
9638         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
9639         (struct lang_decl_flags): Use gengtype.  Add discriminators.
9640         (struct lang_decl): Use gengtype.  Add and use discriminators.
9641         Update the macros that reference moved fields.
9642         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
9643         (SET_DECL_THUNK_P): Set discriminator too.
9644         (clear_inline_text_obstack): Delete prototype.
9645         (finish_inline_definitions): Delete prototype.
9646         (mark_pending_inlines): Delete prototype.
9647         (lang_check_failed): New prototype.
9648         * decl.c (struct named_label_use_list): Use gengtype.
9649         (struct named_label_list): Likewise.
9650         (mark_binding_level): Delete.
9651         (mark_named_label_lists): Delete.
9652         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
9653         (cxx_init_decl_processing): Use generated marker routine.
9654         (begin_destructor_body): Delete dead set to
9655         current_vcalls_possible_p.
9656         (mark_lang_function): Delete.
9657         (mark_cp_function_context): Delete.
9658         (lang_mark_tree): Use generated marker routines.
9659         * decl2.c (start_objects): Set discriminator when setting
9660         GLOBAL_INIT_PRIORITY.
9661         * lex.c (retrofit_lang_decl): Set discriminators.
9662         (copy_lang_type): Update for changes to lang_type structure.
9663         (cp_make_lang_type): Set discriminator.
9664         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
9665         * search.c: Include ggc.h.
9666         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
9667         (finish_inline_definitions): Delete.
9668         * spew.c (struct token): Use gengtype.
9669         (struct token_chunk): New.
9670         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
9671         (struct feed): Use gengtype.
9672         (feed_obstack): Delete.
9673         (feed): Mark as GC root.
9674         (pending_inlines): Mark as GC root.
9675         (pending_inlines_tail): Likewise.
9676         (processing_these_inlines): Likewise.
9677         (token_obstack): Make static.
9678         (first_token): Likewise.
9679         (init_spew): Don't initialize deleted things; use gengtype for roots.
9680         (clear_inline_text_obstack): Delete.
9681         (feed_input): Use GC for struct feed.  Update for changes to
9682         struct unparsed_text.
9683         (mark_pending_inlines): Delete.
9684         (next_token): Rename from add_token.  Change all callers.  Update
9685         for changes to struct unparsed_text.
9686         (space_for_token): New.
9687         (remove_last_token): New.
9688         (alloc_unparsed_text): New.
9689         (snarf_block): Take an unparsed_text.  Update for changes to struct
9690         unparsed_text.
9691         (snarf_method): Update for changes to struct unparsed_text.
9692         (snarf_defarg): Update for changes to struct unparsed_text.
9693         * tree.c (lang_check_failed): New.
9694
9695         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
9696         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
9697         (cp/spew.o): Add dependency on gt-<filename>.h.
9698         (cp/decl2.o): Add dependency on gt-<filename>.h.
9699         (cp/call.o): Add dependency on gt-<filename>.h.
9700         (cp/pt.o): Add dependency on gt-<filename>.h.
9701         (cp/repo.o): Add dependency on gt-<filename>.h.
9702         (cp/parse.o): Add dependency on gt-<filename>.h.
9703         * call.c: Use gengtype for roots.
9704         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
9705         decl2.c parse.y pt.c repo.c spew.c.
9706         * cp-tree.h: Use gengtype for roots.
9707         (struct saved_scope): Use GGC, gengtype.
9708         (cp_parse_init): Delete prototype.
9709         (init_pt): Delete prototype.
9710         * decl.c: Use gengtype for roots.
9711         (mark_saved_scope): Delete.
9712         (cxx_init_decl_processing): Don't call deleted initilisation
9713         routines.
9714         (signed_size_zero_node): Delete, unused.
9715         * decl.h: Use gengtype for roots.
9716         * decl2.c: Use gengtype for roots.
9717         * lex.h: Use gengtype for roots.
9718         * parse.y: Use gengtype for roots.
9719         (cp_parse_init): Delete.
9720         * pt.c: Use gengtype for roots.
9721         (init_pt): Delete.
9722         * repo.c: Use gengtype for roots.
9723         * spew.c: Use gengtype for roots.
9724
9725         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
9726         (cp/decl.o): Add dependency on gtype-cp.h.
9727         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
9728         Include gtype-cp.h.  Allow for filename changes.
9729
9730         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
9731         (cp/decl.o): Add cp/gt-decl.h dependency.
9732         * config-lang.in (gtfiles): New.
9733         * tree.h: Rename struct binding_level to struct cp_binding_level.
9734         * decl.c: Rename struct binding_level to struct cp_binding_level.
9735         Include cp/gt-decl.h.
9736         (struct cp_binding_level): Use gengtype.
9737         (make_binding_level): Use GGC on struct cp_binding_level.
9738         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
9739         (cxx_init_decl_processing): Mark free_binding_level as
9740         deletable.
9741
9742         * decl.c (mark_cp_function_context): Update calling sequence.
9743
9744         * decl.c (start_function): Don't free 'struct
9745         cp_language_function'.
9746         (pop_cp_function_context): Likewise.
9747         (save_function_data): Allocate it using GC.
9748         * semantics.c (genrtl_start_function): Don't free 'struct
9749         cp_language_function'.
9750
9751 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
9752
9753         * lang-specs.h: Use cpp_debug_options.
9754
9755 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
9756
9757         * mangle.c, tree.c: Include real.h.
9758         * Make-lang.in: Update dependency lists.
9759
9760 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
9761
9762         * lex.c: Don't include c-lex.h.
9763         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
9764
9765 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
9766
9767         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
9768
9769 2002-05-22  Richard Henderson  <rth@redhat.com>
9770
9771         * decl.c (obscure_complex_init): Check for VAR_DECL
9772         before using DECL_THREAD_LOCAL.
9773
9774 2002-05-22  Richard Henderson  <rth@redhat.com>
9775
9776         * decl.c (check_tag_decl): Handle RID_THREAD.
9777         (obscure_complex_init): Reject run-time init of tls.
9778         (grokvardecl, grokdeclarator): Handle RID_THREAD.
9779         * lex.c (reswords): Add __thread.
9780         (rid_to_yy): Map RID_THREAD to SCSPEC.
9781
9782 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
9783
9784         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
9785         * cp-tree.h (cxx_post_options): Kill.
9786         * cp-lex.c (cxx_post_options): Kill.
9787
9788 2002-05-21  Richard Henderson  <rth@redhat.com>
9789
9790         * lex.c (rid_to_yy): Add RID_THREAD.
9791
9792 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
9793
9794         * init.c (build_vec_init): Test for trivial copy-assignment when
9795         copy-assigning arrays.
9796
9797 2002-05-20  Andreas Jaeger  <aj@suse.de>
9798
9799         * init.c (build_default_init): Remove unused variable.
9800
9801 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
9802
9803         * call.c (any_strictly_viable): New.
9804         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
9805
9806 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9807
9808         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
9809
9810 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9811
9812         PR c++/186, DR 259
9813         * pt.c (do_decl_instantiation): Don't complain explicit
9814         instantiation after explicit specialization.
9815         (do_type_instantiation): Likewise.
9816
9817 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
9818
9819         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
9820         renamed from...
9821         (complete_type_or_else): ... this.  Redefined as macro.
9822         (cxx_incomplete_type_diagnostic): Declare.
9823         (cxx_incomplete_type_error): Define as macro.
9824         * init.c (build_delete): Warn about incomplete types other than
9825         void, and use the built-in operator delete for them.
9826         * typeck.c (complete_type_or_diagnostic): Renamed from
9827         complete_type_or_else.  Added warn_only argument, passed to...
9828         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
9829         warnings or errors depending on new warn_only argument.  Renamed
9830         from...
9831         (cxx_incomplete_type_error): ... this.  New implementation in
9832         terms of cxx_incomplete_type_diagnostic.
9833
9834 2002-05-18  Jason Merrill  <jason@redhat.com>
9835
9836         PR c++/6611
9837         * decl2.c (import_export_decl): If we clear
9838         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
9839
9840 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9841
9842         PR c++/6620
9843         * pt.c (verify_class_unification): Don't check if PARM is template
9844         parameter dependent.  Simplify.
9845         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
9846         parameter dependent expression.
9847
9848 2002-05-14  Jason Merrill  <jason@redhat.com>
9849
9850         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
9851         Do set DECL_COMDAT.
9852         (synthesize_tinfo_var): Take the public decl.
9853         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
9854         (emit_tinfo_decl): Adjust.  Call import_export_decl.
9855         * decl2.c (import_export_decl): Simplify tinfo decl handling.
9856
9857 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
9858
9859         * cp-tree.h (struct lang_type): Added non_zero_init.
9860         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
9861         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
9862         * class.c (check_field_decls): Test non_zero_init.
9863         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
9864         zero-to-NULL conversions.
9865         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
9866         type that needs zero-initialization without zeros.
9867         (check_initializer_decl): Compute zero-initializer for types
9868         that require a non-trivial one.
9869         * init.c (build_forced_zero_init): New function.
9870         (build_default_init): Use it.
9871         * tree.c (zero_init_p): New function.
9872         * typeck2.c (force_store_init_value): New function.
9873         (process_init_constructor): Create non-trivial zero-initializers
9874         for array members and class fields.
9875
9876 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
9877
9878         * lang-specs.h: Remove redundant -lang-c++.
9879
9880 2002-05-13  Jason Merrill  <jason@redhat.com>
9881
9882         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
9883         (fixed_type_or_null): See through reference vars.
9884         (build_base_path): Vtable contents are constant.
9885         * typeck.c (get_member_function_from_ptrfunc): Likewise.
9886
9887 2002-05-12  Jason Merrill  <jason@redhat.com>
9888
9889         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
9890         structs are safe.
9891
9892 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
9893
9894         * cp-tree.h (flag_ansi): Remove.
9895         * decl2.c (flag_ansi): Remove.
9896         (cxx_decode_option): Set flag_iso and flag_undef.
9897
9898 2002-05-09  Jason Merrill  <jason@redhat.com>
9899
9900         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
9901         Use subtraction rather than a bitmask to get the index.
9902         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
9903
9904         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
9905
9906 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
9907
9908         * Make-lang.in (decl2.o): Update.
9909         * cp-tree.h (warn_multichar): Remove.
9910         * decl2.c: Include c-common.h.
9911         (warn_multichar): Remove.
9912
9913 2002-05-03  Jason Merrill  <jason@redhat.com>
9914
9915         * tree.c (build_cplus_array_type): Only const and volatile get
9916         special handling.
9917
9918         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
9919
9920 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
9921
9922         ABI change, returning simple classes from functions.
9923         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
9924         TYPE_HAS_TRIVIAL_INIT_REF is false or
9925         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
9926
9927 2002-04-30  Jason Merrill  <jason@redhat.com>
9928
9929         PR debug/6436
9930         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
9931         anonymous class with a typedef if there are attributes.
9932
9933 2002-04-29  Paul Eggert  <eggert@twinsun.com>
9934
9935         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
9936
9937 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
9938
9939         PR c++/6477
9940         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
9941         non-NULL first.
9942
9943 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
9944
9945         PR c++/6492
9946         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
9947         enter that scope before name lookup.
9948
9949         PR c++/6486
9950         * method.c (do_build_copy_constructor): Avoid building
9951         cv-qualified reference types.
9952
9953 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
9954
9955         PR c++/5719
9956         * decl.c (grok_op_properties): Assignment ops don't have to return
9957         by value. operator% should.
9958
9959 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9960
9961         PR c/6343
9962         * decl.c (duplicate_decls): Call merge_weak.
9963
9964 2002-04-26  Richard Henderson  <rth@redhat.com>
9965
9966         * parse.y (malloced_yyss, malloced_yyvs): New.
9967         (yyoverflow): Re-add.  Set them.
9968         (free_parser_stacks): New.
9969
9970 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
9971
9972         PR c++/6497
9973         * method.c (do_build_assign_ref): Pass a derivation to
9974         build_method_call when calling base class assignment operators.
9975
9976 2002-04-26  Richard Henderson  <rth@redhat.com>
9977
9978         * parse.y (yyoverflow): Revert.
9979
9980 2002-04-26  Richard Henderson  <rth@redhat.com>
9981
9982         PR c/3581
9983         * parse.y (string): Remove.  Update all uses to use STRING
9984         instead, and not call combine_strings.
9985         * rtti.c (tinfo_name): Use fix_string_type.
9986         * semantics.c (finish_asm_stmt): Don't call combine_strings.
9987         * spew.c (yylexstring): New.
9988         (read_token): Use it.
9989
9990 2002-04-25  Richard Henderson  <rth@redhat.com>
9991
9992         PR c/2161
9993         * parse.y (yyoverflow): New.
9994
9995 2002-04-25  Jason Merrill  <jason@redhat.com>
9996
9997         PR c++/5607
9998         * search.c (check_final_overrider): No longer static.
9999         * class.c (update_vtable_entry_for_fn): Call it.
10000         * cp-tree.h: Adjust.
10001
10002 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
10003
10004         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
10005         * cp-tree.h (cxx_set_yydebug): Die.
10006         * lex.c (YYDEBUG): Get from c-lex.h.
10007         (cxx_set_yydebug): Remove.
10008         * parse.y: Include c-lex.h.
10009         (YYDEBUG): Get from c-lex.h.
10010
10011 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
10012
10013         PR c++/6438.
10014         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
10015         void.
10016
10017 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
10018
10019         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
10020         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
10021         Redefine.
10022         * cp-tree.h (cp_attribute_table): Rename.
10023         * decl.c (lang_attribute_table): Remove declaration.
10024         (cxx_init_decl_processing): Don't set it.
10025         * tree.c (cp_attribute_table): Rename.
10026
10027 2002-04-24  Jason Merrill  <jason@redhat.com>
10028
10029         PR c++/6331
10030         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
10031         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
10032         The pedwarn for array assignment is now unconditional.
10033         * tree.c (build_cplus_array_type_1): Still process simple array types
10034         normally in templates.
10035
10036         PR c++/6395
10037         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
10038         stuff for comdats.
10039
10040 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
10041
10042         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
10043         node with attributes.
10044
10045 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
10046
10047         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
10048         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
10049
10050 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
10051
10052         PR c++/6256:
10053         * pt.c (tsubst_friend_class): Handle templates with explicit
10054         nested names.
10055
10056         PR c++/6331:
10057         * typeck.c (merge_types): Remember the cv-qualification of pointer
10058         types when merging them.
10059
10060 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
10061
10062         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
10063         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
10064         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
10065         cxx_mark_function_context): New.
10066         * decl.c (push_cp_function_context, pop_cp_function_context,
10067         mark_cp_function_context): Rename for consistency.
10068         (cxx_init_decl_processing): Don't set old hooks.
10069
10070 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
10071
10072         * call.c (convert_type_from_ellipsis): Rename, update.
10073         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
10074         * cp-tree.h (convert_type_from_ellipsis): Rename.
10075         * decl.c (cxx_init_decl_processing): Don't set hook.
10076
10077 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
10078
10079         * call.c (build_new_method_call): Update.
10080         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
10081         * cp-tree.h (cxx_incomplete_type_error): New.
10082         * decl.c (grokdeclarator, grokparms): Update.
10083         * decl2.c (check_classfn): Update.
10084         * pt.c (tsubst): Update.
10085         * typeck.c (complete_type_or_else, expr_sizeof,
10086         decay_conversion): Update.
10087         * typeck2.c (incomplete_type_error): Rename.
10088         (add_exception_specifier): Update.
10089
10090 2002-04-18  Jason Merrill  <jason@redhat.com>
10091
10092         PR c++/5658
10093         * search.c (setup_class_bindings): A class template qualifies as a
10094         type binding.
10095
10096 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
10097
10098         PR c++/6316
10099         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
10100         before expanding.
10101
10102 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
10103
10104         * init.c (begin_init_stmts): Remove commented out code.
10105         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
10106         * semantics.c (begin_gobal_stmt_expr): Adjust call to
10107         expand_start_stmt_expr.
10108
10109 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
10110
10111         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
10112         dso_handle itself, to __cxa_atexit.
10113
10114 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
10115
10116         * error.c (cxx_print_error_function): Adjust call to macros.
10117
10118 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
10119
10120         * class.c (layout_virtual_bases): Do all dsize computation on trees.
10121
10122 2002-04-14  Jason Merrill  <jason@redhat.com>
10123
10124         * typeck.c (get_member_function_from_ptrfunc): Don't do
10125         gratuitious division and multiplication on
10126         ptrmemfunc_vbit_in_delta targets.
10127
10128 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
10129
10130         PR c++/5373.
10131         * semantics.c (finish_expr_stmt): Remember the type of the
10132         expression before any conversions are performed.
10133
10134 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
10135
10136         PR c++/5189.
10137         * call.c (add_template_candidate_real): Do not treat member
10138         templates as copy constructors.
10139
10140 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
10141
10142         * decl.c (duplicate_decls): Do not copy the RTL for a variable
10143         declaration if the old variable had an incomplete type and the new
10144         variable does not.
10145         (complete_vars): Do not call layout_decl for completed variables.
10146
10147 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
10148
10149         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
10150         with an explicit one.
10151         (follow_tag_typedef): New.
10152         (lookup_tag): Use it to extract the tag of an explicit typedef.
10153         (xref_tag): Likewise.
10154
10155 2002-04-11  Andrew Haley  <aph@redhat.com>
10156
10157         * typeck.c (type_after_usual_arithmetic_conversions):
10158         If two types have the same variant, return immediately.
10159         When two floating-point operands are the same precision:
10160           convert to float if one of the operands is float;
10161           if neither operand is one of the standard types, return the type
10162           of the first operand.
10163
10164 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
10165
10166         PR c++/5507
10167         * decl.c (make_typename_type): Remove implicit typenameness.
10168
10169 2002-04-09  Jason Merrill  <jason@redhat.com>
10170
10171         PR optimization/6189
10172         * semantics.c (genrtl_start_function): Don't free
10173         DECL_SAVED_FUNCTION_DATA for inline functions.
10174
10175         * init.c (build_member_call): For now, don't convert to
10176         intermediate base if it would cause an error.
10177
10178 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
10179
10180         * parse.y (namespace_qualifier, maybe_identifier,
10181         begin_explicit_instantiation, end_explicit_instantiation,
10182         apparent_template_type, .finish_template_type,
10183         do_id, maybe_init, defarg_again, component_decl_1):
10184         Add ending ';', in accordance with POSIX.
10185
10186 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
10187
10188         PR c++/5571
10189         * class.c (layout_class_type): Remember incomplete static
10190         variables.
10191         (finish_struct_1): Call complete_vars, not
10192         hack_incomplete_structures.
10193         * cp-tree.h (hack_incomplete_structures): Rename to ...
10194         (complete_vars): ... this.
10195         (struct saved_scope): Remove incomplete.
10196         (namespace_scope_incomplete): Remove.
10197         * decl.c (struct binding_level): Remove incomplete.
10198         (incomplete_vars): New variable.
10199         (mark_binding_level): Don't mark incomplete.
10200         (print_binding_level): Don't print it.
10201         (mark_saved_scope): Don't mark incomplete.
10202         (pushdecl): Use maybe_register_incopmlete_var.
10203         (cxx_init_decl_processing): Register incomplete_vars for GC.
10204         (start_decl_1): Clarify error message.
10205         (hack_incomplete_vars): Remove.
10206         (maybe_register_incomplete_var): New function.
10207         (complete_vars): Likewise.
10208
10209 2002-04-06  Jason Merrill  <jason@redhat.com>
10210
10211         PR c++/4934
10212         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
10213         set before checking it.
10214
10215         PR c++/525
10216         * init.c (build_member_call): Use build_scoped_ref.
10217         (resolve_offset_ref): Likewise.
10218         * call.c (build_scoped_method_call): Likewise.
10219         * tree.c (maybe_dummy_object): Kludge around current_class_type being
10220         wrong.
10221         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
10222         * cp-tree.h: Adjust.
10223
10224         * init.c (push_base_cleanups): Just use build_scoped_method_call.
10225
10226         PR c++/6179
10227         * method.c (implicitly_declare_fn): Pass unqualified type to
10228         synthesize_exception_spec.
10229
10230 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
10231
10232         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
10233         * cvt.c: Update comment.
10234         * init.c (expand_cleanup_for_base): Update.
10235         * semantics.c (finish_parenthesized_expr): Update.
10236         * typeck.c (cp_truthvalue_conversion): Update.
10237
10238 2002-04-04  Jason Merrill  <jason@redhat.com>
10239
10240         * semantics.c (finish_eh_cleanup): New fn.
10241         * cp-tree.h: Add prototype.
10242         * init.c (perform_member_init, expand_cleanup_for_base): Use
10243         finish_eh_cleanup.
10244         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
10245         * cp-tree.h: Remove references.
10246         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
10247         * dump.c (cp_dump_tree): Likewise.
10248         * pt.c (tsubst_expr): Likewise.
10249         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
10250         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
10251         * tree.c (cp_statement_code_p): Likewise.
10252
10253         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
10254
10255         PR c++/5636
10256         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
10257         cleanup for nrv.
10258
10259         PR c++/5104
10260         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
10261         specifiers.
10262         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
10263
10264 2002-04-03  Richard Henderson  <rth@redhat.com>
10265
10266         * cp-lang.c (cxx_warn_unused_global_decl): New.
10267         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
10268
10269 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
10270
10271         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
10272         * tree.c (init_tree): Don't set hook.
10273
10274 2002-04-03  Roger Sayle  <roger@eyesopen.com>
10275
10276         PR c++/5998:
10277         * decl.c (duplicate_decls): Don't mess with assembler names when
10278         redeclaring builtin functions as static.
10279
10280 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
10281
10282         * call.c (build_addr_func): Update.
10283         * class.c (resolve_address_of_overloaded_function): Update.
10284         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
10285         * cp-tree.h (cxx_mark_addressable): New.
10286         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
10287         * decl2.c (build_cleanup): Update.
10288         * except.c (build_throw): Update.
10289         * init.c (resolve_offset_ref): Update.
10290         * pt.c (convert_nontype_argument): Update.
10291         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
10292         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
10293         unary_complex_lvalue): Update.
10294         (mark_addressable): Rename.
10295
10296 2002-04-01  Roger Sayle  <roger@eyesopen.com>
10297
10298         PR c++/5998:
10299         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
10300         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
10301         but follow the SET_DECL_RTL idiom used elsewhere in the function.
10302
10303 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
10304
10305         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
10306         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
10307         * decl.c (grokdeclarator): Update.
10308         * mangle.c (write_integer_cst): Update.
10309         * typeck.c (build_binary_op): Update.
10310
10311 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
10312
10313         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
10314         * lex.c (cxx_init): Don't set hook.
10315
10316 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
10317
10318         * Make-lang.in (error.o): Update.
10319         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
10320         * cp-tree.h (struct diagnostic_context): Predeclare.
10321         (cxx_print_error_function): New.
10322         * error.c: Include langhooks-def.h.
10323         (lang_print_error_function): Rename.  Update.
10324         (init_error): Don't set hook.
10325
10326 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
10327
10328         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
10329         Redefine.
10330         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
10331         * decl.c (finish_enum): Similarly.
10332         * error.c (dump_type): Similarly.
10333         * lex.c (cxx_init): Similarly.
10334         * mangle.c (write_builtin_type): Similarly.
10335         * typeck.c (comptypes): Similarly.
10336
10337 2002-03-28  Roger Sayle  <roger@eyesopen.com>
10338
10339         PR c++/5998:
10340         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
10341         in the g++ front-end.
10342         (duplicate_decl): Allow redefinition of anticipated built-ins.
10343         Fix inlining problem by over-writing the old DECL_RTL.
10344         (lookup_namespace_name): Fail to find an identifier in the
10345         specified namespace if its still anticipated.
10346         (builtin_function_1): New function split out from builtin_function
10347         to create a builtin in the current namespace with given context.
10348         (builtin_function): Call builtin_function_1 to define the
10349         appropriate builtins in both the std and global namespaces.
10350         (select_decl): Don't test for anticipated decls here.
10351         (unqualified_namespace_lookup): Instead ignore them whilst
10352         searching through scopes and namespaces.
10353         * decl2.c (do_nonmember_using_decl): If a using declaration
10354         specifies an anticipated built-in function, mark it as no longer
10355         anticipated in that scope.
10356         (ambiguous_decl):  Avoid resolving to an anticipated decl.
10357         * lex.c (do_scoped_id): Fail to find an identifier in the global
10358         namespace if its still anticipated.
10359
10360 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
10361
10362         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
10363         * cp-tree.h (cp_make_lang_type): Rename.
10364         * lex.c (cp_make_lang_type): Rename.
10365         (make_aggr_type): Update.
10366         * tree.c (init_tree): Don't set make_lang_type_fn.
10367
10368 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
10369
10370         PR c++/6073
10371         * class.c (finish_struct_1): Update static field's DECL_MODE even
10372         if its type is a variant of t.
10373
10374 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
10375
10376         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
10377         * cp-tree.h (cxx_insert_default_attributes): New.
10378         * decl.c (insert_default_attributes): Rename.
10379
10380 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
10381
10382         PR c++/4884
10383         * call.c (build_op_delete_call): Allow for the fact the placement
10384         may be a COMPOUND_EXPR.
10385
10386 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
10387
10388         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
10389         * cp-tree.h (init_cplus_expand): Remove.
10390         (cxx_expand_expr): New.
10391         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
10392         fix prototype.
10393         (init_cplus_expand): Remove.
10394         * lex.c (cxx_init): Don't call init_cplus_expand.
10395
10396 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
10397
10398         PR c++/4884.
10399         * init.c (build_new_1): Allow for the fact the result of
10400         build_function_call may be a COMPOUND_EXPR.
10401
10402 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
10403
10404         PR c++/5682
10405         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
10406         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
10407         (dfs_skip_nonprimary_vbases_markedp): Remove.
10408         * search.c (get_shared_vbase_if_not_primary): Remove.
10409         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
10410         (dfs_skip_nonprimary_vbases_markedp): Remove.
10411         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
10412         (dfs_marked_real_bases_queue_p): Likewise.
10413
10414 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
10415
10416         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
10417         * cp-tree.h (cxx_mark_tree): New.
10418         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
10419
10420 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
10421
10422         * cp-tree.h (cxx_maybe_build_cleanup): New.
10423         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
10424         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
10425         * tree.c (build_target_expr): Update.
10426         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
10427
10428 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
10429
10430         * decl2.c (cxx_decode_option): Handle -E.
10431         * lang-specs.h (default_compilers): Preprocess with cc1plus.
10432         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
10433
10434 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
10435
10436         PR c++/6037
10437         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
10438
10439 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
10440
10441         * error.c (dump_type): Be careful about implicit typenames.
10442
10443 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
10444
10445         PR C++/3656
10446         * semantics.c (finish_base_specifier): Handle erronous base
10447         classes.
10448
10449 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
10450
10451         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
10452         REAL_IS_NOT_DOUBLE.
10453
10454 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
10455
10456         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
10457         an index into the vtable_entry array regardless of
10458         TARGET_PTRMEMFUNC_VBIT_LOCATION.
10459
10460 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
10461
10462         * tree.c (cp_cannot_inline_tree_fn): Same.
10463
10464 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
10465
10466         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
10467         insert_block, getdecls, global_bindings_p): New.
10468
10469 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
10470
10471         PR c++/4361
10472         * mangle.c (struct globals) Add internal_mangling_p member.
10473         (write_template_param): Do internal mangling, if needed.
10474         (mangle_conv_op_name_for_type): Request internal mangling.
10475
10476 2002-03-20  Jason Merrill  <jason@redhat.com>
10477
10478         PR c++/2136
10479         * init.c (build_delete): Check access for a member op delete here.
10480         * decl2.c (delete_sanity): Not here.
10481
10482 2002-03-19  Jason Merrill  <jason@redhat.com>
10483
10484         PR c++/5118
10485         * class.c (get_vfield_name): Use the constructor_name.
10486
10487 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
10488
10489         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
10490         * cp-tree.h (lang_printable_name): Rename.
10491         * error.c (lang_decl_name): Use new hook.
10492         * lex.c (cxx_init): Remove old hook.
10493         * pt.c (tsubst_decl): Use new hook.
10494         * tree.c (lang_printable_name): Rename.
10495
10496 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
10497
10498         PR c++/3882
10499         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
10500         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
10501         only after recording the declaration.
10502
10503 2002-03-18  Jason Merrill  <jason@redhat.com>
10504
10505         PR c++/2039
10506         * init.c (resolve_offset_ref): Hand off to build_component_ref.
10507
10508         PR c++/4222, c++/5995
10509         * call.c (build_over_call): Fix empty class logic.
10510
10511         PR c++/3870
10512         * cp-tree.h (struct saved_scope): Add last_parms field.
10513         * decl.c (maybe_push_to_top_level): Save last_function_parms.
10514         (pop_from_top_level): Restore it.
10515
10516         PR c++/4377
10517         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
10518         NON_LVALUE_EXPRs.
10519
10520         PR c++/4003
10521         * pt.c (tsubst_friend_function): Use decl_namespace_context.
10522
10523         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
10524         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
10525         type with a nontrivial destructor.
10526
10527 2002-03-17  Jason Merrill  <jason@redhat.com>
10528
10529         PR c++/4460
10530         * class.c (build_base_path): Virtual base layout is fixed in
10531         in-charge [cd]tors.
10532
10533 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
10534
10535         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
10536         * parse.y (yyparse): Remove macro.
10537
10538 2002-03-17  Jason Merrill  <jason@redhat.com>
10539
10540         PR c++/5757
10541         * init.c (build_new_1): Pass the right pointer to op delete.
10542
10543 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
10544
10545         PR c++/4361
10546         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
10547         conversion operators go.
10548         (struct lang_decl_flags): Add template_conv_p and unused
10549         bitfields.
10550         (DECL_TEMPLATE_CONV_FN_P): New macro.
10551         * call.c (build_user_type_conversion_1): Don't check second type
10552         conversion of overload set first.
10553         * class.c (add_method): Make sure templated conversion operators
10554         all end up on slot 2.
10555         * lex.c (do_identifier): A conversion operator token might be
10556         satisfied by a templated conversion operator.
10557         * pt.c (check_explicit_specialization): Use
10558         CLASSTYPE_FIRST_CONVERSION_SLOT.
10559         (template_parm_this_level_p): New function.
10560         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
10561         * search.c (lookup_fnfields_1): Template conversions will be on
10562         the first slot.
10563         * typeck.c (build_component_ref): Preserve the type of an
10564         conversion operator name on the overload type.
10565         (build_x_function_call): Retrieve the conversion operator name.
10566
10567 2002-03-15  Richard Henderson  <rth@redhat.com>
10568
10569         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
10570
10571 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
10572
10573         * cp-tree.h (CLEANUP_DECL): Remove.
10574         (CLEANUP_EXPR): Likewise.
10575         * decl.c (destroy_local_var): Simplify.
10576         (maybe_build_cleanup): Tidy.
10577         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
10578         * semantics.c (cp_expand_stmt): Likewise.
10579         * cp/tree.c (cp_statement_code_p): Likewise.
10580
10581 2002-03-15  Jason Merrill  <jason@redhat.com>
10582
10583         PR c++/5857
10584         * decl.c (duplicate_decls): Use merge_types instead of common_type.
10585         * typeck.c (common_type): Just hand off to
10586         type_after_usual_arithmetic_conversions and
10587         composite_pointer_type.
10588         (merge_types): New fn.
10589         (commonparms): Use it instead of common_type.
10590         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
10591         (composite_pointer_type): Also handle attributes.
10592         * cp-tree.h: Declare merge_types.
10593
10594         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
10595         variables.
10596         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
10597
10598 2002-03-14  Richard Henderson  <rth@redhat.com>
10599
10600         * decl.c: Include c-pragma.h.
10601         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
10602         * Make-lang.in: Update dependencies.
10603
10604 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
10605
10606         PR c++/5908
10607         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
10608         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
10609
10610 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
10611
10612         * mangle.c (write_builtin_type): Handle 128-bit integers even if
10613         they are not a standard integer type.
10614
10615 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
10616
10617         * cp-tree.h (init_init_processing): Remove declaration.
10618         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
10619         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
10620
10621 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10622
10623         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
10624         Define.
10625         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
10626         tree_code_length.
10627         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
10628         cplus_tree_code_name): Delete.
10629         (cxx_init): Don't call add_c_tree_codes, instead set
10630         lang_unsafe_for_reeval.  Don't try to copy into the various
10631         tree_code arrays.
10632
10633 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
10634
10635         PR c++/5659
10636         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
10637         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
10638         definitions.
10639
10640 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
10641
10642         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
10643         DR209 is now not a defect.
10644         * cp-tree.h (skip_type_access_control): Remove.
10645         * decl.c (grokdeclarator): Do type access control for friend
10646         declarations.
10647         * semantics.c (decl_type_access_control): Don't reset
10648         current_type_lookups.
10649         (save_type_access_control): Always save the lookups.
10650         (skip_type_access_control): Remove.
10651         (finish_class_definition): Don't change type_lookups.
10652
10653 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
10654
10655         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
10656         It is incorrect.
10657         * typeck.c (build_static_cast): Compare non-qualified types
10658         with pointer to member conversions.
10659
10660 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
10661             Daniel Berlin  <dan@dberlin.org>
10662
10663         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
10664         (cxx_get_alias_set): Use it.
10665
10666 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10667
10668         * cp-tree.h (stabilize_expr): Prototype.
10669
10670 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
10671
10672         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
10673         conditional return void.
10674
10675 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
10676
10677         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
10678         * cp-tree.h (cxx_unsave): New.
10679         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
10680         (init_tree): Update.
10681
10682 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10683
10684         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
10685         explicit sizeof/sizeof.
10686         * decl2.c (cxx_decode_option): Likewise.
10687         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
10688
10689 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
10690
10691         PR c++/775
10692         * decl.c (lookup_tag): Only reject enum/class mismatch, not
10693         class/union mismatch.
10694         * parse.y (check_class_key): New function.
10695         (structsp): Call it.
10696
10697 2002-03-01  Michael Matz  <matz@suse.de>
10698
10699         * typeck.c (cp_pointer_int_sum): Complete inner type which is
10700         used later by size_in_bytes().
10701
10702 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
10703
10704         * cp-tree.h:  Require __GNUC__ to be #defined.
10705         (build_init):  Add missing prototype.
10706
10707 2002-03-01  Jason Merrill  <jason@redhat.com>
10708
10709         * except.c: Don't include decl.h or obstack.h.  Do include
10710         tree-inline.h.
10711         (build_throw): Destroy temporaries from the thrown
10712         expression before calling __cxa_throw.  Construct a thrown
10713         temporary directly into the exception object.
10714         (stabilize_throw_expr): New function.
10715         (wrap_cleanups_r): New function.
10716         * tree.c (stabilize_expr): New function.
10717         * init.c (build_init): New function.
10718         * Make-lang.in (cp/except.o): Adjust .h deps.
10719
10720 2002-02-28  Jason Merrill  <jason@redhat.com>
10721
10722         * search.c (lookup_base_r): Don't clear is_non_public just because
10723         we found a friendly scope.
10724
10725         * decl.c (finish_function): Only warn about missing return
10726         statement with -Wreturn-type.
10727
10728 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
10729
10730         * class.c (build_clone): Update.
10731         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
10732         * cp-tree.h (cxx_dup_lang_specific_decl): New.
10733         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
10734         (copy_decl): Update.
10735         * method.c (make_thunk): Update.
10736
10737 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
10738
10739         * decl2.c: Delete traditional-mode-related code copied from
10740         the C front end but not used, or used only to permit the
10741         compiler to link.
10742
10743 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
10744
10745         PR c++/4093
10746         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
10747         to void.
10748
10749 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
10750
10751         PR other/5746
10752         * semantics.c (finish_switch_cond): Don't call get_unwidened
10753         if error_mark_node.
10754
10755 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
10756
10757         PR c++/2645, DR 295
10758         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
10759         tf_keep_type_decl.
10760         (make_typename_type): Use tsubst_flags_t.
10761         * decl.c (make_typename_type): Adjust. Return non-artificial
10762         TYPE_DECLs, if required.
10763         (grokdeclarator): Simplify CVR qualification handling. Allow bad
10764         qualifiers on typedef types.
10765         * decl2.c (handle_class_head): Adjust make_typename_type call.
10766         * parse.y (nested_name_specifier): Likewise.
10767         (typename_sub0): Likewise.
10768         (typename_sub1): Likewise.
10769         * pt.c (convert_template_argument): Adjust make_typename_type
10770         return value.
10771         (tsubst): Adjust cp_build_qualified_type_real calls.
10772         (check_cv_quals_for_unify): Cope with allowing bad qualifications
10773         on template type parms.
10774         (instantiate_decl): Recheck substitutions to give warnings on bad
10775         qualifications.
10776         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
10777
10778 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
10779
10780         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
10781
10782         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
10783         unless DECL_ALWAYS_INLINE.
10784
10785 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
10786
10787         * typeck.c (cp_pointer_int_sum): Renamed from
10788         pointer_int_sum, call pointer_int_sum.
10789
10790 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
10791
10792         * decl.c (duplicate_decls): Return 0 if issued error about
10793         redeclaration.
10794
10795 2002-02-19  Jason Merrill  <jason@redhat.com>
10796
10797         ABI change: Mangle `void (A::*)() const' as
10798         M1AKFvvE, not MK1AFvvE.
10799         * mangle.c (write_function_type): Write cv-quals for member
10800         function type here.
10801         (write_pointer_to_member_type): Not here.
10802
10803 2002-02-18  Jason Merrill  <jason@redhat.com>
10804
10805         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
10806         (do_decl_instantiation): Likewise.
10807
10808 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
10809
10810         PR c++/5685
10811         * decl.c (duplicate_decls): Make warning unconditional
10812         if duplicate default argument declarations are present.
10813
10814 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
10815
10816         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
10817         shortening.
10818
10819 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
10820
10821         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
10822         remove incorrect comment. Move #if 0'd code to common path. Use
10823         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
10824
10825 2002-02-13  Jason Merrill  <jason@redhat.com>
10826
10827         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
10828         (finish_function): Don't warn if current_function_returns_null.
10829
10830         * typeck2.c (digest_init): Do handle values of vector type.
10831
10832         * typeck2.c (digest_init, process_init_constructor): Treat vectors
10833         like arrays.
10834
10835 2002-02-11  Jason Merrill  <jason@redhat.com>
10836
10837         * parse.y (reserved_declspecs): Don't handle attributes.
10838         (reserved_typespecquals): Handle them here.
10839         * Make-lang.in (parse.c): Adjust expected conflicts.
10840
10841 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
10842
10843         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
10844         instead of compstmt.
10845         (compstmt_or_stmtexpr): Renamed from compstmt.
10846         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
10847
10848 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
10849
10850         Rename instantiate_type_flags to tsubst_flags_t & expand use.
10851         * cp-tree.h (instantiate_type_flags): Rename to ...
10852         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
10853         add tf_warning flag.
10854         (instantiate_type): Adjust prototype.
10855         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
10856         do_type_instantiation, cp_build_qualified_type_real): Likewise.
10857         cp_build_qualified_type: Adjust.
10858         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
10859         tf_*.
10860         * call.c (standard_conversion): Rename itf_* to tf_*.
10861         (reference_binding): Likewise.
10862         (convert_like_real): Likewise.
10863         * cvt.c (cp_convert_to_pointer): Likewise.
10864         (convert_to_reference): Likewise.
10865         * decl.c (lookup_namespace_name): Use tf_* flags.
10866         (make_typename_type): Likewise.
10867         (grokdeclarator): Likewise.
10868         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
10869         (coerce_template_template_parms, convert_template_argument,
10870         coerce_template_parms, maybe_get_template_decl_from_type_decl,
10871         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
10872         instantiate_class_template, tsubst_template_arg_vector,
10873         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
10874         tsubst_decl, tsubst_arg_types, tsubst_function_type,
10875         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
10876         instantiate_template, fn_type_unification,
10877         resolve_overloaded_unification, verify_class_unification,
10878         unify, get_bindings_real, do_type_instantiation,
10879         regenerate_decl_from_template, instantiate_decl,
10880         tsubst_initializer_list, tsubst_enum,
10881         get_mostly_instantiated_function_type,
10882         invalid_nontype_parm_type_p): Likewise.
10883         * tree.c (cp_build_qualified_type_real): Likewise.
10884         * typeck.c (build_binary_op): Rename itf_* to tf_*.
10885         (build_ptrmemfunc): Likewise.
10886         (convert_for_assignment): Likewise.
10887
10888 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
10889
10890         PR c++/109
10891         * decl.c (grokdeclarator): Allow friend declarations from
10892         dependent types.
10893         * decl2.c (handle_class_head): Don't push into template parm contexts.
10894         * pt.c (push_template_decl_real): Template parm contexts are never
10895         being defined.
10896
10897 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
10898
10899         * class.c: Include target.h.
10900         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
10901         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
10902         bit-field layout.
10903         * Make-lang.in: Adjust deps.
10904
10905 2002-02-05  Jason Merrill  <jason@redhat.com>
10906
10907         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
10908
10909 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
10910
10911         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
10912         (finish_switch_cond): Set SWITCH_TYPE.
10913
10914 2002-02-04  Richard Henderson  <rth@redhat.com>
10915
10916         * method.c (use_thunk): Always initialize the block tree.  Reindent.
10917         * semantics.c (expand_body): Emit thunks after function, not before.
10918
10919 2002-02-04  Jason Merrill  <jason@redhat.com>
10920
10921         * decl.c (start_function): Call cplus_decl_attributes immediately
10922         after grokdeclarator.
10923
10924         * decl.c (start_function): Combine DECL_RESULT handling code.
10925
10926 2002-02-03  Jason Merrill  <jason@redhat.com>
10927
10928         * xref.c: Remove.
10929         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
10930         (cp/xref.o): Remove dependencies.
10931         * class.c (finish_struct_1, check_methods): Don't call xref fns.
10932         (finish_struct_1): Likewise.
10933         * friend.c (make_friend_class): Likewise.
10934         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
10935         * spew.c (read_process_identifier): Likewise.
10936
10937 2002-02-01  Jason Merrill  <jason@redhat.com>
10938
10939         PR c++/4872
10940         * decl.c (finish_function): Warn about a non-void function with
10941         no return statement and no abnormal exit.
10942         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
10943         (current_function_returns_abnormally): New macro.
10944         * call.c (build_call): Set it.
10945
10946         * typeck.c (build_component_ref): Always complain about offsetof
10947         constructs on non-PODs.  Only make it an error for members of
10948         virtual bases.
10949
10950         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
10951         (dump_function_decl): Always dump parms.
10952
10953         * decl2.c (finish_static_data_member_decl): Complain about a local
10954         class with a static data member.
10955
10956         PR c++/4286
10957         * search.c (lookup_field_1): Don't xref a static data member
10958         just because we looked it up.
10959
10960 2002-01-31  Jason Merrill  <jason@redhat.com>
10961
10962         * Make-lang.in (parse.c): Handle .output file.
10963
10964         PR c++/3395
10965         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
10966         not TREE_TYPE.
10967         * semantics.c (finish_class_definition): Adjust.
10968
10969         Allow attributes in parms and casts.
10970         * parse.y (named_parm): Don't strip attrs.
10971         (declmods): Remove 'attributes' production.
10972         (nonempty_cv_qualifiers): Accept attributes.
10973         (ATTRIBUTE): Give precedence.
10974         * decl.c (groktypename): Handle attributes.
10975         (grokparms): Likewise.
10976
10977 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
10978
10979         * decl2.c (cxx_decode_option): Pass 0 as last argument to
10980         cpp_handle_option.
10981         * lang-specs.h: Use cpp_unique_options instead of cpp_options
10982         when used together with cc1_options.
10983
10984 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
10985
10986         PR c++/5132
10987         * typeck2.c (digest_init): Make sure non-array core type is
10988         instantiated.
10989         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
10990         constructor, rather than build a new one.
10991         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
10992         PURPOSE of constructor elts.
10993
10994 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
10995
10996         * Make-lang.in (parse.c): Adjust expected number of
10997         shift-reduce conflicts.
10998         (decl.o): Depend on diagnostic.h.
10999         * decl.c: Include diagnostic.h.
11000         (grokdeclarator): Check for null pointer.
11001         (finish_function): Don't abort when
11002         current_binding_level->parm_flag != 1, if errors have
11003         occurred; throw away the statement tree and extra binding
11004         levels, and continue.
11005         * lex.c (note_list_got_semicolon): Check for null pointer.
11006         * method.c (hack_identifier): Just return error_mark_node if
11007         value is error_mark_node.
11008         * parse.y (primary: TYPEID(type_id)): No need to use
11009         TYPE_MAIN_VARIANT here.
11010         (handler_seq): Accept an empty list of catch clauses and
11011         generate a fake handler block to avoid later crashes.
11012         (ansi_raise_identifier): Accept the error token too.
11013         * semantics.c (begin_class_definition,
11014         finish_class_definition): Check for error_mark_node.
11015
11016 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
11017
11018         * typeck2.c (friendly_abort): Delete definition.
11019         * cp-tree.h (friendly_abort): Don't prototype.
11020         (my_friendly_assert): Use fancy_abort.
11021
11022 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
11023
11024         * cp-tree.h (my_friendly_abort): Remove.
11025
11026 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
11027
11028         * spew.c (pending_inlines, pending_inlines_tail,
11029         processing_these_inlines): Make static.
11030         (mark_pending_inlines): Remove static.
11031         (begin_parsing_inclass_inline): If in function, save pi
11032         for GC to cp_function_chain->unparsed_inlines instead.
11033         (process_next_inline): Likewise.
11034         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
11035         (mark_pending_inlines): Add prototype.
11036         * decl.c (spew_debug): Remove unused extern.
11037         (mark_lang_function): Call mark_pending_inlines.
11038
11039 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
11040
11041         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
11042         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
11043         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
11044         Change my_fancy_abort() to abort().
11045
11046 2002-01-23  Jason Merrill  <jason@redhat.com>
11047
11048         PR c++/5453
11049         * class.c (fixed_type_or_null): Fix thinko.
11050
11051         PR c++/3331
11052         * init.c (resolve_offset_ref): Use build_indirect_ref.
11053
11054         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
11055
11056 2002-01-22  Jason Merrill  <jason@redhat.com>
11057
11058         * parse.y (function_body): Suppress the block for the outermost
11059         curly braces.
11060         * decl.c (pushdecl): Don't try to skip it.
11061         (begin_function_body): Keep the block we create, not the next one.
11062         * init.c (emit_base_init): Don't mess with keep_next_level.
11063
11064         * class.c (build_base_path): Tweak formatting.
11065
11066 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
11067
11068         Fix regression introduced with patch for c++/775
11069         * parse.y (class_head_defn): Check for template specializations
11070         with a different class-key.
11071
11072 2002-01-17  Jason Merrill  <jason@redhat.com>
11073
11074         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
11075         (begin_function_body): Call them and keep_next_level.
11076         * init.c (emit_base_init): Call keep_next_level.
11077         * semantics.c (setup_vtbl_ptr): Lose.
11078         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
11079         (vtbls_set_up_p): Lose.
11080         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
11081         * method.c (do_build_copy_constructor): Likewise.
11082         (synthesize_method): Call finish_mem_initializers.
11083         * parse.y (nodecls): Likewise.
11084
11085         * error.c (dump_type_suffix): Print the exception specs before
11086         recursing.
11087         (dump_function_decl): Here, too.
11088
11089         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
11090
11091 2002-01-10  Ira Ruben   <ira@apple.com>
11092
11093         PR c++/907
11094         * decl.c (start_method): Handle attrlist.
11095
11096 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
11097
11098         * decl2.c (max_tinst_depth): Increase default limit to 500.
11099
11100 2002-01-10  Graham Stott  <grahams@redhat.com>
11101
11102         * spew.c (YYCHAR): Uppercase macro parameter and add
11103         parenthesis.
11104         (YYCODE): Likewise.
11105         (NAME): Uppercase macro parameter.
11106
11107 2002-01-09  Graham Stott  <grahams@redhat.com>
11108
11109         * decl.h (grokdeclarator): Wrap long line.
11110
11111         * semantics.c (FINISH_COND): Uppercase macro paramaters and
11112         add parenthesis.
11113
11114 2002-01-08  Graham Stott  <grahams@redhat.com>
11115
11116         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
11117         (PALLOC): Uppercase macro parameter and whitespace.
11118         (SALLOC): Uppercase macro parameter.
11119         (SFREE): Uppercase macros parameter, add parenthese and
11120         whitespace.
11121         (STREQL): Uppercase macro parameter and whitespace.
11122         (STRNEQ): Likewise.
11123         (STRLSS): Likewise.
11124         (STRLEQ): Likewise.
11125         (STRGTR): Likewise.
11126         (STRGEQ): Likewise.
11127
11128         * call.c (convert_like): Add parenthesis and wrap.
11129         (convert_like_with_context): Likewise.
11130         (ICS_RANK): Whitespace.
11131         (NEED_TEMPORARY_P): Remove parenthesis.
11132
11133         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
11134         whitespace.
11135         (VTT_MARKED_BINFO_P): Likewise.
11136
11137         * decl.c (BINDING_LEVEL): Add parenthesis.
11138         (DEF_OPERATOR): Likewise.
11139
11140         * mangle.c (MANGLE_TRACE): Add parenthesis.
11141         (MANGLE_TRACE_TREE): Likewise.
11142         (write_signed_number): Likewise.
11143         (write_unsigned_number): Likewise.
11144
11145         * pt.c (ccat): Uppercase macro parameter.
11146         (cat): Likewise
11147
11148         * search.c (SET_BINFO_ACCESS): Add parenthesis.
11149
11150 2002-01-07  Jason Merrill  <jason@redhat.com>
11151
11152         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
11153         to pedwarn.
11154
11155         PR c++/3536
11156         * method.c (make_thunk): If !flag_weak, give the thunk the
11157         function's linkage.
11158         (use_thunk): Here, too.
11159
11160 2002-01-07  Graham Stott  <grahams@redhat.com>
11161
11162         * error.c: Update copyright date.
11163         (print_scope_operator): Add parenthesis.
11164         (print_left_paren): Likewise.
11165         (print_right_paren): Likewise.
11166         (print_left_bracket): Likewise.
11167         (print_right_bracket): Likewise.
11168         (print_template_argument_list_start): Likewise.
11169         (print_template_argument_list_end): Likewise.
11170         (print_non_consecutive_character): Likewise.
11171         (print_tree_identifier): Likewise.
11172         (print_identifier): Likewise.
11173         (NEXT_CODE): Uppercase macro parameter.
11174         (ident_fndecl): Delete unused.
11175         (GLOBAL_THING): Likewise.
11176
11177 2002-01-06  Graham Stott  <grahams@redhat.com>
11178
11179         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
11180         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
11181         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
11182         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
11183         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
11184         (C_IS_RESERVED_WORD): Uppercase macro parameter.
11185         (C_RID_YYCODE) Likewise.
11186         (ptrmem_cst): Use rtx.
11187         (LOCAL_BINDING_P): Add whitespace.
11188         (INHERITED_VALUE_BINDING_P): Likewise.
11189         (BINDING_SCOPE): Wrap long line.
11190         (BINDING_HAS_LEVEL_P): Remove parenthesis.
11191         (BINDING_VALUE): Wrap long line.
11192         (BINDING_TYPE): Whitespace.
11193         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
11194         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
11195         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
11196         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
11197         (same_type_p): Uppercase macro parameters.
11198         (same_type_ignoring_top_level_qualifiers_p): Likewise.
11199         (OVL_FUNCTION): Wrap long line.
11200         (OVL_CHAIN): Whitespace.
11201         (OVL_CURRENT): Add parenthesis and whitespace.
11202         (OVL_NEXT): Whitespace.
11203         (OVL_USED): Likewise.
11204         (IDENTIFIER_TYPE_VALUE): Likewise.
11205         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
11206         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
11207         (LANG_ID_FIELD): Whitespace.
11208         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
11209         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
11210         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
11211         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
11212         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
11213         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
11214         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
11215         (IDENTIFIER_VIRTUAL_P): Likewise.
11216         (IDENTIFIER_OPNAME_P): Likewise.
11217         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
11218         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
11219         (C_SET_EXP_ORIGINAL_CODE): Likewise.
11220         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
11221         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
11222         (IS_AGGR_TYPE): Uppercase macro parameter.
11223         (CLASS_TYPE_P): Likewise.
11224         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
11225         (IS_AGGR_TYPE_2): Whitespace.
11226         (TAGGED_TYPE_P): Uppercase macro parameter.
11227         (TYPE_BUILT_IN): Whitespace.
11228         (TYPE_FOR_JAVA): Likewise.
11229         (FUNCTION_ARG_CHAIN): Remove parenthesis.
11230         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
11231         (FUNCTION_FIRST_USER_PARAM): Likewise.
11232         (PROMOTES_TO_AGGR_TYPE): Whitespace.
11233         (DERIVED_FROM_P): Add parenthesis and wrap.
11234         (UNIQUELY_DERIVED_FROM_P): Likewise.
11235         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
11236         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
11237         (CLASSTYPE_USE_TEMPLATE): Whitespace.
11238         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
11239         (TYPE_GETS_DELETE): Add parenthesis.
11240         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
11241         (TYPE_HAS_ASSIGN_REF): Likewise,
11242         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
11243         (TYPE_HAS_INIT_REF): Likewise.
11244         (TYPE_HAS_CONST_INIT_REF): Likewise.
11245         (TYPE_BEING_DEFINED): Likewise.
11246         (TYPE_LANG_SPECIFIC): Likewise.
11247         (CLASSTYPE_RTTI): Likewise.
11248         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
11249         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
11250         (TYPE_OVERLOADS_ARROW): Likewise.
11251         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
11252         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
11253         (CLASSTYPE_METHOD_VEC): Likewise.
11254         (CLASSTYPE_MARKED_N): Likewise.
11255         (CLASSTYPE_MARKED): Likewise.
11256         (CLASSTYPE_MARKED2): Likewise.
11257         (CLASSTYPE_MARKED3): Likewise.
11258         (CLASSTYPE_MARKED4): Likewise.
11259         (CLASSTYPE_MARKED5): Likewise.
11260         (CLASSTYPE_MARKED6): Likewise.
11261         (SET_CLASSTYPE_MARKED): Whitespace.
11262         (CLEAR_CLASSTYPE_MARKED): Likewise.
11263         (SET_CLASSTYPE_MARKED2): Likewise.
11264         (CLEAR_CLASSTYPE_MARKED2): Likewise.
11265         (SET_CLASSTYPE_MARKED3): Likewise.
11266         (CLEAR_CLASSTYPE_MARKED3): Likewise.
11267         (SET_CLASSTYPE_MARKED4): Likewise.
11268         (CLEAR_CLASSTYPE_MARKED4): Likewise.
11269         (SET_CLASSTYPE_MARKED5): Likewise.
11270         (CLEAR_CLASSTYPE_MARKED5): Likewise.
11271         (SET_CLASSTYPE_MARKED6): Likewise.
11272         (CLEAR_CLASSTYPE_MARKED6): Likewise.
11273         (CLASSTYPE_TAGS): Likewise.
11274         (CLASSTYPE_VSIZE): Likewise.
11275         (CLASSTYPE_VBASECLASSES): Likewise.
11276         (CANONICAL_BINFO): Add parenthesis.
11277         (CLASSTYPE_SIZE(NODE): Likewise.
11278         (CLASSTYPE_SIZE_UNIT): Likewise.
11279         (CLASSTYPE_ALIGN(NODE): Likewise.
11280         (CLASSTYPE_USER_ALIGN): Likewise.
11281         (TYPE_JAVA_INTERFACE): Likewise.
11282         (CLASSTYPE_PURE_VIRTUALS): Likewise.
11283         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
11284         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
11285         (CLASSTYPE_HAS_MUTABLE): Likewise.
11286         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
11287         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
11288         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
11289         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
11290         (CLASSTYPE_INTERFACE_ONLY): Likewise.
11291         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
11292         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
11293         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
11294         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
11295         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
11296         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
11297         (BINFO_UNSHARED_MARKED): Whitespace.
11298         (BINFO_MARKED): Whitespace and wrap.
11299         (SET_BINFO_MARKED): Likewise.
11300         (CLEAR_BINFO_MARKED): Likewise.
11301         (BINFO_VTABLE_PATH_MARKED): Likewise.
11302         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
11303         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
11304         (BINFO_SUBVTT_INDEX): Remove parenthesis.
11305         (BINFO_VPTR_INDEX): Likewise.
11306         (BINFO_PRIMARY_BASE_OF): Likewise,
11307         (CLASSTYPE_VFIELDS): Whitespace.
11308         (VF_DERIVED_VALUE): Wrap long line.
11309         (NAMESPACE_LEVEL): Whitespace.
11310         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
11311         (DEFARG_POINTER): Whitespace.
11312         (DECL_NEEDED_P): Remove parenthesis.
11313         (DECL_LANGUAGE): Whitespace.
11314         (SET_DECL_LANGUAGE): Add parenthesis.
11315         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
11316         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
11317         (DECL_IN_AGGR_P): Whitespace.
11318         (DECL_FRIEND_P): Likewise.
11319         (DECL_BEFRIENDING_CLASSES): Likewise.
11320         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
11321         (DECL_NONCONVERTING_P): Whitespace.
11322         (DECL_PURE_VIRTUAL_P): Likewise.
11323         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
11324         (DECL_PENDING_INLINE_INFO): Whitespace.
11325         (DECL_SORTED_FIELDS): Likewise.
11326         (DECL_DEFERRED_FN): Likewise.
11327         (DECL_TEMPLATE_INFO): Likewise.
11328         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
11329         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
11330         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
11331         (TMPL_ARGS_LEVEL): Likewise.
11332         (SET_TMPL_ARGS_LEVEL): Likewise.
11333         (INNERMOST_TEMPLATE_PARMS): Whitespace.
11334         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
11335         (INTEGRAL_CODE_P(CODE): Add parenthesis.
11336         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
11337         (TYPE_HAS_CONSTRUCTOR): Whitespace.
11338         (TREE_HAS_CONSTRUCTOR): Likewise.
11339         (TYPE_HAS_DESTRUCTOR): Likewise.
11340         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
11341         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
11342         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
11343         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
11344         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
11345         (TYPE_PTRMEMFUNC_P): Likewise.
11346         (TYPE_PTRMEMFUNC_FLAG): Likewise.
11347         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
11348         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
11349         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
11350         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
11351         (DECL_ACCESS): Whitespace.
11352         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
11353         (DECL_GLOBAL_DTOR_P): Likewise.
11354         (GLOBAL_INIT_PRIORITY): Likewise.
11355         (DECL_TEMPLATE_PARMS): Likewise.
11356         (DECL_TEMPLATE_RESULT): Likewise.
11357         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
11358         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
11359         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
11360         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
11361         (PRIMARY_TEMPLATE_P): Add parenthesis.
11362         (DECL_USE_TEMPLATE): Whitespace.
11363         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
11364         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
11365         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
11366         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
11367         (CALL_DECLARATOR_PARMS): Remove parenthesis.
11368         (CALL_DECLARATOR_QUALS): Likewise.
11369         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
11370         (TEMP_NAME_P): Wrap.
11371         (VFIELD_NAME_P): Likewise.
11372         (B_SET): Uppercase macro parameters and add parenthesis.
11373         (B_CLR): Likewise.
11374         (B_TST): Likewise.
11375         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
11376         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
11377         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
11378         (same_or_base_type_p): Likewise.
11379         (cp_deprecated): Likewise.
11380
11381 2002-01-05  Richard Henderson  <rth@redhat.com>
11382
11383         * semantics.c (expand_body): Revert last change.
11384
11385 2002-01-04  Jason Merrill  <jason@redhat.com>
11386
11387         PR c++/4122
11388         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
11389         lost primary.
11390
11391         * class.c (build_vtbl_initializer): Check for a lost primary
11392         before calculating the vtable entry to throw away.
11393
11394 2002-01-02  Jason Merrill  <jason@redhat.com>
11395
11396         * semantics.c (expand_body): Call outlining_inline_function when
11397         emitting an inline function out of line.
11398
11399 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11400
11401         PR c++/5116, c++/764 reversion
11402         * call.c (build_new_op): Revert the instantiations. They are
11403         incorrect.
11404
11405 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11406
11407         PR c++/5089
11408         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
11409
11410 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11411
11412         PR c++/3716
11413         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
11414         (tsubst, case POINTER_TYPE): Handle pmfs here.
11415         (tsubst, case OFFSET_TYPE): Check it is not an offset to
11416         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
11417
11418 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11419
11420         PR c++/35
11421         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
11422         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
11423         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
11424         PARM_DECL.
11425         (tsubst_template_parms): Break up loop statements.
11426         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
11427         parm PARM_DECLs don't get promoted.
11428
11429 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11430
11431         PR c++/5123
11432         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
11433         (build_x_function_call): Cope with a COMPONENT_REF containing a
11434         TEMPLATE_ID_EXPR.
11435
11436 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11437
11438         PR c++/5213
11439         * pt.c (convert_template_argument): Be more careful determining
11440         when RECORD_TYPE templates are or are not templates.
11441
11442 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11443
11444         PR c++/775
11445         * cp-tree.h (handle_class_head): Adjust prototype.
11446         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
11447         parameters. Use for all class heads.
11448         * parse.y (named_class_head_sans_basetype, named_class_head,
11449         named_complex_class_head_sans_basetype,
11450         named_class_head_sans_basetype_defn,
11451         unnamed_class_head): Remove.
11452         (class_head, class_head_apparent_template): Recognize class heads
11453         (class_head_decl, class_head_defn): New reductions. Process class
11454         heads.
11455         (structsp): Adjust class definition and class declaration
11456         reductions.
11457         (maybe_base_class_list): Give diagnostic on empty list.
11458
11459 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11460
11461         PR c++/4379
11462         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
11463         single non-static member.
11464         (unary_complex_lvalue): If it cannot be a pointer to member, don't
11465         make it so. Check it is not pointer to reference.
11466
11467 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11468
11469         PR c++/5132
11470         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
11471         are processing a template decl.
11472
11473 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
11474
11475         PR c++/5116, c++/764
11476         * call.c (build_new_op): Make sure template class operands are
11477         instantiated. Simplify arglist construction.
11478
11479 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
11480
11481         * call.c (build_user_type_conversion_1): Use my_friendly_assert
11482         rather than if ... abort.
11483         * cvt.c (convert_to_reference): Likewise.
11484         * semantics.c (setup_vtbl_ptr): Likewise.
11485         * pt.c (lookup_template_class): Comment typo.
11486
11487 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
11488
11489         PR c++/5125
11490         * pt.c (push_template_decl_real): Make sure DECL has
11491         DECL_LANG_SPECIFIC.
11492
11493 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
11494
11495         PR c++/335
11496         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
11497         for non-reference fields.
11498         * typeck.c (require_complete_type): Use resolve_offset_ref).
11499
11500 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
11501
11502         PR c++/196
11503         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
11504
11505 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
11506
11507         PR c++/160
11508         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
11509         up. Don't stabilize_references when initializing a reference.
11510
11511 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11512
11513         * decl2.c (lang_f_options): Const-ify.
11514
11515 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
11516
11517         * config-lang.in (diff_excludes): Remove.
11518
11519 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
11520
11521         PR c++/90
11522         * typeck.c (build_function_call_real): Use original function
11523         expression for errors.
11524
11525 2001-12-18  Jason Merrill  <jason@redhat.com>
11526
11527         PR c++/3242
11528         * class.c (add_method): Do compare 'this' quals when trying to match a
11529         used function.  Don't defer to another used function.
11530
11531 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
11532
11533         * pt.c (instantiate_clone): Remove, fold into ...
11534         (instantiate_template): ... here. Simplify by removing mutual
11535         recursion.
11536         * typeck2.c (build_m_component_ref): Don't cv qualify the function
11537         pointed to by a pointer to function.
11538         * class.c (delete_duplicate_fields_1): Typo.
11539
11540 2001-12-18  Jason Merrill  <jason@redhat.com>
11541
11542         C++ ABI change: destroy value arguments in caller.
11543         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
11544         create an extra binding level for the parameters.
11545         * decl.c (store_parm_decls): Don't do parameter cleanups.
11546
11547 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
11548
11549         * call.c (build_new_method_call): Use '%#V'.
11550         * error.c (cv_to_string): Use V parameter to determine padding.
11551
11552 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
11553
11554         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
11555         spellings in messages.
11556
11557 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
11558
11559         * cp-tree.h: Delete #defines for cp_error, cp_warning,
11560         cp_pedwarn, and cp_compiler_error.
11561         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
11562         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
11563         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
11564         typeck2.c: Change calls to the above macros to use their
11565         language-independent equivalents: error, warning, pedwarn, and
11566         internal_error respectively.
11567
11568 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
11569
11570         * decl2.c (finish_file): Remove back_end_hook.
11571
11572 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
11573
11574         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
11575         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
11576         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
11577
11578 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
11579
11580         * lang-options.h: Use American spelling in messages.
11581
11582 2001-12-13  Jason Merrill  <jason@redhat.com>
11583
11584         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
11585
11586         Use cleanups to run base and member destructors.
11587         * init.c (push_base_cleanups): New function, split out from...
11588         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
11589         * decl.c (finish_destructor_body): Move vbase destruction code to
11590         push_base_cleanups.
11591         (begin_function_body, finish_function_body): New fns.
11592         (finish_function): Move [cd]tor handling and call_poplevel to
11593         finish_function_body.
11594         (pushdecl): Skip the new level.
11595         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
11596         (setup_vtbl_ptr): Call push_base_cleanups.
11597         * method.c (synthesize_method): Call {begin,end}_function_body.
11598         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
11599         * cp-tree.h: Declare new fns.
11600         * parse.y (function_body, .begin_function_body): New nonterminals.
11601         (fndef, pending_inline, function_try_block): Use function_body.
11602         (ctor_initializer_opt, function_try_block): No longer has a value.
11603         (base_init): Remove .set_base_init token.
11604         (.set_base_init, compstmt_or_error): Remove.
11605         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
11606
11607         * optimize.c (maybe_clone_body): Fix parameter updating.
11608
11609 2001-12-12  Jason Merrill  <jason@redhat.com>
11610
11611         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
11612         * semantics.c (genrtl_start_function): Don't pass
11613         parms_have_cleanups or push an extra binding level.
11614         (genrtl_finish_function): Lose cleanup_label cruft.
11615
11616         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
11617         (ctor_label): Remove.
11618         * semantics.c (finish_return_stmt): Lose ctor_label support.
11619         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
11620         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
11621         dtor_label.
11622
11623         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
11624         check for [cd]tors.
11625         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
11626
11627         * decl.c (finish_function): Check VMS_TARGET, not VMS.
11628
11629         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
11630         (end_cleanup_fn): And poplevel.
11631
11632         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
11633         if we're in a template.
11634
11635 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
11636
11637         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
11638         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
11639         THIS_NAME_P): Delete.
11640         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
11641         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
11642         with internal naming scheme.
11643         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
11644
11645 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
11646
11647         * decl.c (grokdeclarator): Deprecated implicit typename use.
11648
11649 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
11650
11651         PR g++/51
11652         * parse.y (frob_specs): Indicate it is a language linkage which
11653         contained the extern.
11654         * decl.c (grokdeclarator): Allow extern language linkage with
11655         other specifiers.
11656
11657 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
11658
11659         PR g++/72
11660         * decl.c (add_binding): Don't reject duplicate typedefs involving
11661         template parameters.
11662
11663 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
11664
11665         * parse.y, semantics.c: Similarly.
11666
11667 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
11668
11669         PR g++/87
11670         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
11671         (copy_args_p): Rename to ...
11672         (copy_fn_p): ... here.
11673         (grok_special_member_properties): New function.
11674         (grok_op_properties): Lose VIRTUALP parameter.
11675         (copy_assignment_arg_p): Remove.
11676         * call.c (build_over_call): Use copy_fn_p.
11677         * decl.c (grokfndecl): Reformat. Adjust call to
11678         grok_op_properties.
11679         (copy_args_p): Rename to ...
11680         (copy_fn_p): ... here. Reject template functions. Check for pass
11681         by value.
11682         (grok_special_member_properties): Remember special functions.
11683         (grok_ctor_properties): Don't remember them here, just check.
11684         (grok_op_properties): Likewise.
11685         (start_method): Call grok_special_member_properties.
11686         * decl2.c (grokfield): Likewise.
11687         (copy_assignment_arg_p): Remove.
11688         (grok_function_init): Don't remember abstract assignment here.
11689         * pt.c (instantiate_class_template): Call
11690         grok_special_member_properties.
11691         (tsubst_decl): Adjust grok_op_properties call.
11692
11693 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
11694
11695         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
11696         RID_TYPES_COMPATIBLE_P.
11697
11698 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11699
11700         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
11701         call to build_aggr_init.
11702         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
11703
11704 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
11705
11706         * parse.y: Replace uses of the string non-terminal with STRING.
11707         Don't perform string concatentaion here.
11708         (string): Remove non-terminal.
11709         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
11710
11711 2001-12-05  Jason Merrill  <jason@redhat.com>
11712
11713         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
11714         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
11715         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
11716         * pt.c (push_tinst_level): No longer static.
11717         * cp-tree.h: Declare them.
11718
11719         * init.c (resolve_offset_ref): Don't check access for the base
11720         conversion to access a FIELD_DECL.
11721
11722         * cp-tree.h (TYPE_REFFN_P): New macro.
11723         * decl.c (bad_specifiers): Check it, too.
11724
11725         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
11726         on the __*_type_info type if we haven't seen a definition.
11727
11728 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
11729
11730         * decl.c: Include c-common.h.
11731         (shadow_warning): Move to c-common.c.
11732
11733 2001-12-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11734
11735         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
11736
11737 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
11738
11739         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
11740
11741 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
11742
11743         PR g++/164
11744         * init.c (sort_base_init): Allow binfos to be directly specified.
11745         * method.c (do_build_copy_constructor): Explicitly convert to the
11746         base instance.
11747         (do_build_assign_ref): Likewise.
11748
11749 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
11750
11751         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
11752         declaration and initialization.
11753
11754 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
11755
11756         * typeck2.c: Remove leading capital from diagnostic messages, as
11757         per GNU coding standards.
11758
11759 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
11760
11761         PR c++/3394
11762         * decl.c (xref_basetypes): Handle attributes between
11763         'class' and name.
11764
11765 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
11766
11767         PR g++/3381
11768         * parse.y (named_complex_class_head_sans_basetype): Add new
11769         reduction.
11770         * Make-lang.in (parse.c): Adjust expected conflict count.
11771
11772 2001-12-03  Jason Merrill  <jason@redhat.com>
11773
11774         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
11775         immediate binfos for our virtual bases.
11776
11777 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
11778
11779         * call.c (build_java_interface_fn_ref): Similarly.
11780         * except.c (is_admissible_throw_operand): Similarly.
11781         * init.c (build_java_class_ref): Similarly.
11782         * xref.c (open_xref_file): Similarly.
11783
11784 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
11785
11786         * class.c (finish_struct): Remove trailing periods from messages.
11787         * decl.c (check_tag_decl): Similarly.
11788         * lex.c (cxx_set_yydebug): Similarly.
11789         * typeck2.c (friendly_abort): Similarly.
11790
11791 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
11792
11793         PR c++/3048
11794         * cp-tree.h (ovl_member): Remove.
11795         * decl2.c (merge_functions): Handle extern "C" functions
11796         specially.
11797         * tree.c (ovl_member): Remove.
11798
11799 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
11800
11801         PR c++/4842
11802         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
11803         FUNCTION_DECL, as input.
11804         (mark_overriders): Remove.
11805         (warn_hidden): Rework for the new ABI.
11806
11807 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
11808
11809         PR c++/3471
11810         * call.c (convert_like_real): Do not build additional temporaries
11811         for rvalues of class type.
11812
11813 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
11814
11815         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
11816         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
11817         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
11818         (DERIVED_FROM_P): Likewise.
11819         (enum base_access): Renumber, add ba_quiet bit mask.
11820         (get_binfo): Remove.
11821         (get_base_distance): Remove.
11822         (binfo_value): Remove.
11823         (ACCESSIBLY_DERIVED_FROM_P): Remove.
11824         * call.c (standard_conversion): Use lookup_base.
11825         * class.c (strictly_overrides): Likewise.
11826         (layout_virtual_bases): Likewise.
11827         (warn_about_ambiguous_direct_bases): Likewise.
11828         (is_base_of_enclosing_class): Likewise.
11829         (add_vcall_offset_vtbl_entries_1): Likewise.
11830         * cvt.c (build_up_reference): Adjust comment.
11831         * init.c (build_member_call): Reformat.
11832         * search.c (get_binfo): Remove.
11833         (get_base_distance_recursive): Remove.
11834         (get_base_distance): Remove.
11835         (lookup_base_r): Tweak.
11836         (lookup_base): Add ba_quiet control. Complete the types here.
11837         (covariant_return_p): Use lookup_base.
11838         * tree.c (binfo_value): Remove.
11839         (maybe_dummy_object): Use lookup_base.
11840         * typeck.c (build_static_cast): Use lookup_base.
11841         (get_delta_difference): Likewise.
11842         * typeck2.c (binfo_or_else): Use lookup_base.
11843         (build_scoped_ref): Add back error_mark_check.
11844         (build_m_component_ref): Use lookup_base.
11845
11846 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
11847
11848         * Make-lang.in (c++.generated-manpages): New dummy target.
11849
11850 2001-11-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11851
11852         * Make-lang.in (cp-lang.o): Depends on c-common.h.
11853         * cp-lang.c (c-common.h): Include.
11854         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
11855         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
11856         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
11857
11858 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
11859
11860         * decl2.c (c_language): Move to c-common.c.
11861         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
11862         functions.
11863         (cxx_init): Update.
11864
11865 2001-11-26  Jason Merrill  <jason@redhat.com>
11866
11867         * call.c (joust): Remove COND_EXPR hack.
11868
11869 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
11870
11871         * search.c (lookup_base_r): Declare bk in variable declaration
11872         space.
11873
11874 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
11875
11876         PR g++/3145
11877         * class.c (build_vbase_pointer): Remove.
11878         (build_vbase_path): Remove.
11879         (build_base_path): New function.
11880         * cp-tree.h (base_access, base_kind): New enumerations.
11881         (build_base_path): Declare.
11882         (convert_pointer_to_real): Remove.
11883         (convert_pointer_to): Remove.
11884         (lookup_base): Declare.
11885         (convert_pointer_to_vbase): Remove.
11886         * call.c (build_scoped_method_call): Use lookup_base &
11887         build_base_path instead of convert_pointer_to_real,
11888         get_base_distance & get_binfo.
11889         (build_over_call): Likewise.
11890         * cvt.c (cp_convert_to_pointer): Likewise.
11891         (convert_to_pointer_force): Likewise.
11892         (build_up_reference): Likewise.
11893         (convert_pointer_to_real): Remove.
11894         (convert_pointer_to): Remove.
11895         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
11896         instead of convert_pointer_to_vbase & build_vbase_path.
11897         (emit_base_init): Use build_base_path instead of
11898         convert_pointer_to_real.
11899         (expand_virtual_init): Lose unrequired conversions.
11900         (resolve_offset_ref): Use lookup_base and build_base_path
11901         instead of convert_pointer_to.
11902         * rtti.c (build_dynamic_cast_1): Use lookup_base &
11903         build_base_path instead of get_base_distance & build_vbase_path.
11904         * search.c (get_vbase_1): Remove.
11905         (get_vbase): Remove.
11906         (convert_pointer_to_vbase): Remove.
11907         (lookup_base_r): New function.
11908         (lookup_base): New function.
11909         * typeck.c (require_complete_type): Use lookup_base &
11910         build_base_path instead of convert_pointer_to.
11911         (build_component_ref): Likewise.
11912         (build_x_function_call): Likewise.
11913         (get_member_function_from_ptrfunc): Likewise.
11914         (build_component_addr): Likewise.
11915         * typeck2.c (build_scoped_ref): Likewise.
11916
11917 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11918
11919         * cp-tree.h (CP_TYPE_QUALS): Removed.
11920         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
11921         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
11922         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
11923         * dump.c (cp_dump_tree): Use void* dump_info argument to match
11924         lang-hooks prototype.
11925         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
11926         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
11927         CP_TYPE_QUALS changed to cp_type_quals.
11928         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
11929         (CXX_C_OBJS): Remove c-dump.o.
11930
11931 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
11932
11933         PR c++/3637
11934         * pt.c (lookup_template_class): Ensure that all specializations
11935         are registered on the list corresponding to the most general
11936         template.
11937
11938 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
11939
11940         * call.c (non_reference): Add documentation.
11941         (convert_class_to_reference): Do not strip reference types
11942         from conversion operators.
11943         (maybe_handle_ref_bind): Simplify.
11944         (compare_ics): Correct handling of references.
11945
11946 2001-11-19  John Wilkinson <johnw@research.att.com>
11947
11948         * dump.c (dump_op): New function.
11949         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
11950         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
11951         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
11952
11953 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
11954
11955         PR4629
11956         * semantics.c (finish_sizeof): Make sure that expression created
11957         while processing a template do not have a type.
11958         (finish_alignof): Likewise.
11959         * typeck.c (c_sizeof): Likewise.
11960         (expr_sizeof): Likewise.
11961
11962 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
11963
11964         * lex.c (cxx_finish): Call c_common_finish.
11965         (finish_parse): Remove.
11966
11967 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11968
11969         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
11970         when displaying error message about missing array bounds.
11971
11972 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11973
11974         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
11975         CONST_CAST_EXPR.
11976         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
11977
11978 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
11979
11980         * cp-tree.h (print_class_statistics): Restore.
11981
11982 2001-11-15  Jason Merrill  <jason@redhat.com>
11983
11984         * method.c (use_thunk): Don't emit debugging information for thunks.
11985
11986         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
11987         * decl.c (make_typename_type): Handle getting a class template.
11988         * search.c (lookup_field_r): A class template is good enough for
11989         want_type.
11990
11991         * call.c (convert_like_real): Only use cp_convert for the bad part.
11992         (standard_conversion): Also allow bad int->enum.
11993         * typeck.c (ptr_reasonably_similar): Also allow functions to
11994         interconvert.  Pointers to same-size integers are reasonably
11995         similar.
11996
11997         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
11998         give it void type.
11999
12000 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
12001
12002         PR g++/3154
12003         * init.c (sort_base_init): Remove unreachable code.
12004         (expand_member_init): Adjust comment to reflect reality. Simplify
12005         and remove unreachable code.
12006
12007 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
12008
12009         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
12010         (cxx_init): Update prototype.
12011         * decl.c (init_decl_processing): Rename.  Move null node init
12012         to its creation time.
12013         * lex.c (cxx_init_options): Update.
12014         (cxx_init): Combine with old init_parse; also call
12015         cxx_init_decl_processing.
12016
12017 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
12018
12019         * decl.c (check_initializer): Try to complete the type of an
12020         array element before checking whether it's complete.  Don't
12021         complain about arrays with complete element types but an
12022         unknown size.
12023         (cp_finish_decl): Build the hierarchical constructor before
12024         calling maybe_deduce_size_from_array_init.
12025
12026 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
12027
12028         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
12029
12030 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
12031
12032         PR g++/4206
12033         * parse.y (already_scoped_stmt): Remove.
12034         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
12035
12036 2001-11-12  H.J. Lu <hjl@gnu.org>
12037
12038         * cvt.c (ocp_convert): Don't warn the address of a weak
12039         function is always `true'.
12040
12041 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
12042
12043         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
12044         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
12045         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
12046         * cp-tree.h (print_class_statistics): Remove.
12047         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
12048         cxx_print_identifier, cxx_set_yydebug): New.
12049         * lex.c (set_yydebug): Rename c_set_yydebug.
12050         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
12051         lang_print_xnode): Rename.
12052         * tree.c (print_lang_statistics): Rename.
12053
12054 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12055
12056         * class.c (dump_array): Fix format specifier warning.
12057
12058 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
12059
12060         * cp-lang.c (LANG_HOOKS_NAME): Override.
12061         (struct lang_hooks): Constify.
12062         * lex.c (cxx_init_options): Update.
12063         (lang_identify): Remove.
12064         * parse.y (language_string): Remove.
12065
12066 2001-11-08  Andreas Franck  <afranck@gmx.de>
12067
12068         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
12069         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
12070         suggested by autoconf.
12071         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
12072         (c++.install-common): Use the transformed target alias names.
12073
12074 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
12075
12076         * Make-lang.in: Update.
12077         * cp-lang.c: Include langhooks-def.h.
12078
12079 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12080
12081         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
12082
12083 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12084
12085         * lex.c (copy_lang_type): Add static prototype.
12086
12087 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12088
12089         * pt.c (unify): Handle SCOPE_REF.
12090
12091 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
12092
12093         * tree.c (cp_copy_res_decl_for_inlining): Adjust
12094         DECL_ABSTRACT_ORIGIN for the return variable.
12095
12096 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
12097
12098         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
12099
12100 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
12101
12102         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
12103         semantics.c, spew.c: Fix spelling errors.
12104
12105 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12106
12107         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
12108
12109 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
12110
12111         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
12112         pop_everything.
12113
12114 2001-10-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12115
12116         * cp-lang.c (cxx_get_alias_set): New function.
12117         Point LANG_HOOKS_GET_ALIAS_SET to it.
12118
12119 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12120
12121         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
12122         * cp-tree.h (make_unbound_class_template): Prototype new function.
12123         * decl.c (make_unbound_class_template): New function.
12124         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
12125         * error.c (dump_type): Likewise.
12126         * mangle.c (write_type): Likewise.
12127         * parse.y (template_parm): Likewise.
12128         (template_argument): Use make_unbound_class_template.
12129         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
12130         (tsubst): Likewise.
12131         (tsubst_copy): Likewise.
12132         (unify): Likewise.
12133         * tree.c (walk_tree): Likewise.
12134         * typeck.c (comptypes): Likewise.
12135
12136 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12137
12138         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
12139         extra calls into fewer ones.
12140
12141 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
12142
12143         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
12144         Warn when merging inline with attribute noinline.
12145         (start_decl, start_function): Warn if inline and attribute
12146         noinline appear in the same declaration.
12147
12148 2001-10-16  H.J. Lu <hjl@gnu.org>
12149
12150         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
12151         for tree checking disabled.
12152
12153 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
12154
12155         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
12156         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
12157
12158 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
12159
12160         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
12161         (unify): Only handle MINUS_EXPR specially if the above flag is set
12162         and the subtracted constant is 1.  Clear the flag on recursive calls.
12163         Set it when unifying the maximum value in an INTEGER_TYPE's range.
12164
12165 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
12166
12167         * decl.c (bad_specifiers): Don't allow exception specifications
12168         on any typedefs.
12169
12170 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
12171
12172         * cp/lex.c (init_cp_pragma): Similarly.
12173
12174 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12175
12176         * pt.c (lookup_template_class): Build complete template arguments
12177         for BOUND_TEMPLATE_TEMPLATE_PARM.
12178
12179 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12180
12181         * cp-tree.h (TYPE_BINFO): Update comment.
12182         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
12183         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
12184         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
12185         (copy_type): Prototype new function.
12186         * lex.c (copy_lang_decl): Gather tree node statistics.
12187         (copy_lang_type): New function.
12188         (copy_type): Likewise.
12189         (cp_make_lang_type): Create lang_type for
12190         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
12191         and BOUND_TEMPLATE_TEMPLATE_PARM.
12192         * pt.c (tsubst): Use copy_type instead of copy_node.
12193         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
12194
12195 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12196
12197         * pt.c (determine_specialization): Ignore functions without
12198         DECL_TEMPLATE_INFO.
12199
12200 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
12201
12202         PR g++/4476
12203         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
12204
12205 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
12206
12207         * typeck2.c (store_init_value): Don't re-digest a bracketed
12208         initializer.
12209
12210         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
12211         ANON_AGGR_TYPE_P.
12212
12213 2001-10-11  Richard Henderson  <rth@redhat.com>
12214
12215         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
12216         of an asm statement.
12217         (build_vtbl_ref_1): Split out from build_vtbl_ref.
12218         (build_vfn_ref): Use it to handle vtable descriptors before
12219         calling build_vtable_entry_ref.
12220         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
12221
12222 2001-10-10  Richard Henderson  <rth@redhat.com>
12223
12224         * parse.y (asm_operand): Allow named operands.
12225         * semantics.c (finish_asm_stmt): Tweek for changed location
12226         of the operand constraint.
12227
12228 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
12229
12230         * call.c (standard_conversion): Add bad conversion between
12231         integers and pointers.
12232         (convert_like_real): Don't use convert_for_initialization for bad
12233         conversions; complain here and use cp_convert.
12234         (build_over_call): Don't handle bad conversions specially.
12235         (perform_implicit_conversion): Allow bad conversions.
12236         (can_convert_arg_bad): New fn.
12237         * cp-tree.h: Declare it.
12238         * typeck.c (convert_for_assignment): Use it.
12239         (ptr_reasonably_similar): Any target type is similar to void.
12240
12241 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
12242
12243         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
12244         (cp/cp-lang.o): New rule.
12245         * cp-tree.h: Declare hooks.
12246         * tree.c: Make hooks non-static.
12247         (init_tree): Don't initialize hooks here.
12248         * lex.c: Likewise.  Move definition of lang_hooks to...
12249         * cp-lang.c: ... new file.
12250
12251 2001-10-08  Richard Henderson  <rth@redhat.com>
12252
12253         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
12254         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
12255
12256 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12257
12258         * class.c (build_vtable_entry_ref): Const-ify.
12259         * decl.c (predefined_identifier,
12260         initialize_predefined_identifiers): Likewise.
12261         * init.c (build_new_1): Likewise.
12262         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
12263         Likewise.
12264
12265 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
12266
12267         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
12268         (INSNS_PER_STMT): Likewise.
12269         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
12270         (copy_body, initialize_inlined_parameters): Likewise.
12271         (declare_return_variable, inlinable_function_p): Likewise.
12272         (expand_call_inline, expand_calls_inline): Likewise.
12273         (optimize_inline_calls, clone_body): Likewise.
12274         * tree.c (walk_tree): Moved to ../tree-inline.c.
12275         (walk_tree_without_duplicates): Likewise.
12276         (copy_tree_r, remap_save_expr): Likewise.
12277
12278 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
12279
12280         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
12281         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
12282         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
12283         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
12284         (flag_inline_trees): Moved declaration to ../tree-inline.h.
12285         (walk_tree): Moved declaration to ../tree-inline.h.
12286         (walk_tree_without_duplicates, copy_tree_r): Likewise.
12287         (remap_save_expr): Likewise.
12288         * decl.c: Include tree-inline.h.
12289         (lang_mark_tree): Don't mark inlined_fns.
12290         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
12291         * optimize.c: Include tree-inline.h.
12292         (optimize_inline_calls): Move declaration to ../tree.h, as
12293         non-static.
12294         (remap_decl): Use language-independent constructs and hooks.
12295         (remap_block, copy_body_r, declare_return_variable): Likewise.
12296         (inlinable_function_p): Likewise.  Don't test for
12297         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
12298         no longer language-specific.
12299         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
12300         call of dump_function to...
12301         (optimize_function): Here...
12302         (clone_body): New function, extracted from...
12303         (maybe_clone_body): ... here.  Build decl_map locally and pass
12304         it on to clone_body.
12305         * pt.c, semantics.c: Include tree-inline.h.
12306         * tree.c: Likewise.
12307         (cp_walk_subtrees): New language-specific hook for tree inlining.
12308         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
12309         cp_is_overload_p, cp_auto_var_in_fn_p,
12310         cp_copy_res_decl_for_inlining): Likewise.
12311         (walk_tree): Move language-specific constructs into...
12312         (cp_walk_subtrees): this new function.
12313         (copy_tree_r): Use language-independent constructs and hooks.
12314         (init_tree): Initialize tree inlining hooks.
12315         (remap_save_expr): Adjust prototype so that the declaration
12316         does not require the definition of splay_tree.
12317
12318 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12319
12320         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
12321         to build the declaration instead of the declaration itself.
12322
12323 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
12324
12325         * decl2.c (cxx_decode_option): Add 'else'.
12326
12327         * spew.c (end_input): No longer static.
12328         * cp-tree.h: Declare it.
12329         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
12330
12331 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
12332
12333         * call.c (build_over_call), typeck.c (build_function_call_real):
12334         Pass type attributes to check_function_format rather than name or
12335         assembler name.  Don't require there to be a name or assembler
12336         name to check formats.
12337
12338 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
12339
12340         * decl.c (init_decl_processing): Don't call
12341         init_function_format_info.  Initialize lang_attribute_table
12342         earlier.
12343         (builtin_function): Call decl_attributes.
12344         (insert_default_attributes): New.
12345
12346 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
12347
12348         * decl.c (grokdeclarator): Copy array typedef handling from C
12349         frontend.
12350
12351         * decl.c (grokdeclarator): Copy too-large array handling from C
12352         frontend.
12353
12354 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
12355
12356         * config-lang.in (target_libs): Added target-gperf, so that we
12357         don't try to build it if C++ is disabled.
12358
12359 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
12360
12361         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
12362         (cp/errfn.o): Delete rule.
12363         (cp/error.o): Depend on flags.h.
12364         * errfn.c: Delete file.
12365         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
12366         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
12367         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
12368         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
12369         internal_error respectively.  Make cp_deprecated into a macro.
12370         Don't define cp_printer typedef or declare cp_printers.
12371         * error.c: Include flags.h.
12372         Delete: struct tree_formatting_info, print_function_argument_list,
12373         print_declaration, print_expression, print_function_declaration,
12374         print_function_parameter, print_type_id, print_cv_qualifier_seq,
12375         print_type_specifier_seq, print_simple_type_specifier,
12376         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
12377         print_parameter_declaration_clause, print_exception_specification,
12378         print_nested_name_specifier, and definition of cp_printers.
12379         (locate_error): New function.
12380         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
12381         rewritten in terms of locate_error and diagnostic.c.
12382         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
12383         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
12384         (init_error): Adjust to match.
12385
12386 2001-09-22  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12387
12388         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
12389
12390 2001-09-21  Richard Henderson  <rth@redhat.com>
12391
12392         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
12393         (build_vtbl_initializer): Likewise.
12394         (build_vfn_ref): New.
12395         * cp-tree.h: Declare it.
12396         * call.c (build_over_call): Use it.
12397         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
12398         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
12399
12400 2001-09-21  J"orn Rennecke <amylaar@redhat.com>
12401
12402         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
12403
12404 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
12405
12406         Table-driven attributes.
12407         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
12408         * decl2.c (cplus_decl_attributes): Only take one attributes
12409         parameter.
12410         * cp-tree.c (cplus_decl_attributes): Update prototype.
12411         * class.c (finish_struct), decl.c (start_decl, start_function),
12412         decl2.c (grokfield), friend.c (do_friend), parse.y
12413         (parse_bitfield): Update calls to cplus_decl_attributes.
12414         * decl.c (grokdeclarator): Take a pointer to a single ordinary
12415         attribute list.
12416         * decl.h (grokdeclarator): Update prototype.
12417         * decl2.c (grokfield): Take a single ordinary attribute list.
12418         * friend.c (do_friend): Likewise.
12419         * decl.c (shadow_tag, groktypename, start_decl,
12420         start_handler_parms, grokdeclarator, grokparms, start_function,
12421         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
12422         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
12423         (process_template_parm, do_decl_instantiation): Pass single
12424         ordinary attribute lists around.
12425         * decl.c (grokdeclarator): Correct handling of nested attributes.
12426         Revert the patch
12427         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
12428                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
12429                 not the left.
12430         .
12431         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
12432         (cp_attribute_table): Declare.
12433         * decl.c (valid_lang_attribute): Don't define.
12434         (lang_attribute_table): Define.
12435         (init_decl_processing): Initialize lang_attribute_table instead of
12436         valid_lang_attribute.
12437         * tree.c (cp_valid_lang_attribute): Remove.
12438         (handle_java_interface_attribute, handle_com_interface_attribute,
12439         handle_init_priority_attribute): New functions.
12440         (cp_attribute_table): New array.
12441         * decl2.c (import_export_class): Don't use
12442         targetm.valid_type_attribute.
12443
12444 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
12445
12446         * Make-lang.in (cp/error.o): Depend on real.h
12447         * error.c: #include "real.h"
12448
12449 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12450
12451         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
12452         xmalloc/strcpy/strcat.
12453
12454 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12455
12456         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
12457         Const-ification.
12458         * pt.c (tsubst_decl): Likewise.
12459
12460 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12461
12462         * decl2.c (lang_f_options): Const-ification.
12463         * lex.c (cplus_tree_code_name): Likewise.
12464         * spew.c (yyerror): Likewise.
12465
12466 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
12467
12468         PR c++/3986
12469         * class.c (force_canonical_binfo_r): Check & move an indirect
12470         primary base first.
12471         (force_canonical_binfo): Check that it's not already
12472         canonical.
12473         (mark_primary_virtual_base): Remove BINFO parameter.
12474         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
12475
12476 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
12477
12478         Remove TYPE_NONCOPIED_PARTS.
12479         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
12480         CLASSTYPE_PURE_VIRTUALS.
12481         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
12482         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
12483         (layout_class_type): Don't call fixup_inline_methods here ...
12484         (finish_struct_1): ... call it here.
12485
12486 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
12487
12488         * decl.c (duplicate_decls): Remove code deadling with
12489         DECL_SAVED_INSNS.
12490         * decl2.c (finish_file): Likewise.
12491         * pt.c (instantiate_decl): Likewise.
12492         * semantics.c (expand_body): Don't defer local functions if
12493         they wouldn't be deferred for some other reason.  Don't
12494         generate RTL for functions that will not be emitted.
12495         (genrtl_start_function): Remove code deadling with
12496         DECL_SAVED_INSNS.
12497         (genrtl_finish_function): Likewise.
12498
12499 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
12500
12501         PR c++/4203
12502         * call.c (build_over_call): Do not optimize any empty base
12503         construction.
12504
12505 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12506
12507         * error.c (dump_template_decl): Output template parameters
12508         together with their specifiers.
12509         Output `class' prefix for template template parameter.
12510         (dump_decl): Fix formatting.
12511
12512 2001-08-30  Kurt Garloff  <garloff@suse.de>
12513
12514         * optimize.c (inlinable_function_p): Allow only smaller single
12515         functions. Halve inline limit after reaching recursive limit.
12516
12517 2001-08-30  Joern Rennecke <amylaar@redhat.com>
12518             Jason Merrill  <jason_merrill@redhat.com>
12519
12520         * class.c (build_vtable_entry_ref): Subtract in char*, not
12521         ptrdiff_t.
12522
12523 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
12524
12525         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
12526         (build_cplus_array_type): Use cp_build_qualified_type, not
12527         TYPE_MAIN_VARIANT, to get an unqualified version.
12528
12529         * decl2.c (grok_alignof): Lose.
12530         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
12531         * typeck.c (c_alignof): Lose.
12532         * semantics.c (finish_sizeof, finish_alignof): New.
12533         * parse.y: Use them.
12534         * cp-tree.h: Declare them.
12535
12536 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
12537
12538         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
12539         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
12540         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
12541
12542 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
12543
12544         * typeck2.c (add_exception_specifier): Only require complete type if
12545         not in processing template declaration.
12546
12547 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12548
12549         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
12550         GNU_xref_start_scope and GNU_xref_end_scope.
12551
12552         * tree.c (TYPE_HASH): Moved to ../tree.h.
12553
12554 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
12555
12556         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
12557         on COMPOUND_EXPRs.
12558
12559 2001-08-14  Richard Henderson  <rth@redhat.com>
12560
12561         * class.c, cp-tree.h (build_vfn_ref): Remove.
12562         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
12563
12564 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
12565
12566         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
12567         empty class assignment as having side-effects to avoid
12568         spurious warnings.
12569
12570 2001-08-13  Zack Weinberg  <zackw@panix.com>
12571
12572         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
12573         * except.c: Include libfuncs.h.
12574
12575 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
12576
12577         * decl.c (grokdeclarator): Clarify diagnostic message.
12578
12579 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12580
12581         * decl2.c (do_nonmember_using_decl): Replace using directive
12582         with using declaration in the error message.
12583
12584 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12585
12586         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
12587         criterion to avoid rebuilding expression tree instead of
12588         processing_template_decl.
12589
12590 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
12591
12592         Support named return value optimization for inlines, too.
12593         * decl.c (finish_function): Nullify returns here.
12594         * semantics.c (genrtl_start_function): Not here.
12595         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
12596         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
12597         Also nullify the CLEANUP_STMT for the nrv.
12598         * cp-tree.h: Declare it.
12599         * optimize.c (declare_return_variable): Replace the nrv with the
12600         return variable.
12601         * typeck.c (check_return_expr): Be more flexible on alignment check.
12602         Ignore cv-quals when checking for a matching type.
12603
12604 2001-08-09  Richard Henderson  <rth@redhat.com>
12605
12606         * decl2.c (finish_objects): Use target hooks instead of
12607         assemble_constructor and assemble_destructor.
12608
12609 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12610
12611         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
12612
12613 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
12614
12615         PR c++/3820
12616         Stop using TYPE_NONCOPIED_PARTS.
12617         * call.c (build_over_call): Be careful when copy constructing
12618         or assigning to an empty class.
12619         * class.c (check_bases_and_members): It has a
12620         COMPLEX_ASSIGN_REF if it has a vptr.
12621         (layout_class_type): Don't add empty class padding to
12622         TYPE_NONCOPIED_PARTS.
12623         (finish_struct_1): Don't add the VFIELD either.
12624         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
12625         initialization.
12626
12627 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
12628
12629         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
12630
12631 2001-08-06  Richard Henderson  <rth@redhat.com>
12632
12633         * decl2.c (finish_objects): Pass a symbol_ref and priority to
12634         assemble_{constructor,destructor}.  Remove priority handling.
12635
12636 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
12637
12638         Don't allow template-id in using-declaration.
12639         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
12640         (do_class_using_decl): Likewise.
12641
12642 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
12643
12644         * cp/spew.c (read_token): No need to pop buffers.
12645
12646 2001-08-02  Stan Shebs  <shebs@apple.com>
12647
12648         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
12649         (fnaddr_from_vtable_entry): Remove decl.
12650         * method.c (use_thunk): Update comment.
12651
12652 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
12653
12654         * repo.c (get_base_filename): Change return value to const char
12655         pointer.
12656
12657 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
12658
12659         Kill -fhonor-std.
12660         * NEWS: Document.
12661         * cp-tree.h (flag_honor_std): Remove.
12662         (CPTI_FAKE_STD): Remove.
12663         (std_node): Remove comment about it being NULL.
12664         (fake_std_node): Remove.
12665         * decl.c (in_fake_std): Remove.
12666         (walk_namespaces_r): Remove fake_std_node check.
12667         (push_namespace): Remove in_fake_std code.
12668         (pop_namespace): Likewise.
12669         (lookup_name_real): Remove fake_std_node check.
12670         (init_decl_processing): Always create std_node. Always add
12671         std:: things there.
12672         (builtin_function): Always put non '_' fns in std.
12673         * decl2.c (flag_honor_std): Remove.
12674         (lang_f_options): Remove honor-std.
12675         (unsupported_options): Add honor-std.
12676         (set_decl_namespace): Remove fake_std_node check.
12677         (validate_nonmember_using_decl): Likewise.
12678         (do_using_directive): Likewise.
12679         (handle_class_head): Likewise.
12680         * dump.c (cp_dump_tree): Likewise.
12681         * except.c (init_exception_processing): Adjust.
12682         * init.c (build_member_call): Remove fake_std_node check.
12683         (build_offset_ref): Likewise.
12684         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
12685         * rtti.c (init_rtti_processing): Adjust.
12686
12687 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
12688
12689         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
12690         operand while calling cp_tree_equal.
12691
12692 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
12693
12694         The 3.0 ABI no longer has vbase pointer fields.
12695         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
12696         FORMAT_VBASE_NAME): Remove.
12697         * method.c (do_build_copy_constructor): Adjust.
12698         (do_build_assign_ref): Adjust.
12699         * search.c (lookup_field_r): Adjust.
12700         * typeck.c (build_component_ref): Adjust.
12701
12702         The 3.0 ABI always has a vtable pointer at the start of every
12703         polymorphic class.
12704         * rtti.c (build_headof_sub): Remove.
12705         (build_headof): Adjust.
12706         (get_tinfo_decl_dynamic): No need to check flag_rtti
12707         here. Adjust.
12708         (create_real_tinfo_var): Explain why we need a hidden name.
12709
12710 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
12711
12712         PR c++/3631
12713         * class.c (update_vtable_entry_for_fn): The fixed adjustment
12714         of a virtual thunk should be from declaring base.
12715
12716 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
12717
12718         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
12719         the shared virtual base, so preserving inheritance graph order.
12720
12721 2001-07-30  Andreas Jaeger  <aj@suse.de>
12722
12723         * decl2.c: Remove unused var global_temp_name_counter.
12724
12725 2001-07-28  Richard Henderson  <rth@redhat.com>
12726
12727         * method.c (pending_inlines): Remove.
12728
12729 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
12730
12731         * class.c (mark_primary_virtual_base): Don't adjust base
12732         offsets here.
12733         (dfs_unshared_virtual_bases): Adjust them here.
12734         (mark_primary_bases): Explain why we adjust at the end.
12735
12736 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
12737
12738         * class.c (finish_struct_1): When copying the primary base's
12739         VFIELD, make sure we find it is at offset zero.
12740
12741 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12742
12743         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
12744         tsubst_expr for default template arguments.
12745
12746 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
12747
12748         PR c++/3621
12749         * spew.c (yylex): Only copy the token's lineno, if it is
12750         nonzero.
12751
12752 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
12753
12754         PR c++/3624
12755         * call.c (resolve_args): Simplify, call
12756         convert_from_reference.
12757         (build_new_op): Resolve and convert from reference ARG1
12758         earlier. Adjust ARG2 & ARG3 resolve and conversion.
12759
12760 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
12761
12762         * decl.c (last_function_parm_tags): Remove.
12763         (current_function_parm_tags): Remove.
12764         (init_decl_processing): Adjust.
12765         (start_function): Adjust.
12766         (store_parm_decls): Adjust.
12767
12768         PR c++/3152
12769         * decl.c (grokdeclarator): Detect when a function typedef is
12770         declaring a function, and create last_function_parms correctly.
12771
12772 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
12773
12774         * call.c (joust): Only prefer a non-builtin candidate to a builtin
12775         one if they have the same signature.
12776
12777         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
12778         it rather than toplevel_bindings_p.  Give it a mangled name if static.
12779         (convert_to_reference): Adjust.
12780         * decl2.c (get_temp_name): Lose.
12781         * mangle.c (mangle_ref_init_variable): New fn.
12782         (mangle_guard_variable): Strip the ref-init header.
12783         * cp-tree.h: Adjust.
12784         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
12785         initializer.
12786         (grok_reference_init): Always use DECL_INITIAL.
12787
12788 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
12789
12790         PR c++/3416
12791         * call.c (build_conditional_expr): Recheck args after
12792         conversions.
12793         * cp-tree.h (build_conditional_expr): Move to correct file.
12794         * typeck.c (decay_conversion): Diagnose any unknown types
12795         reaching here.
12796         (build_binary_op): Don't do initial decay or default
12797         conversions on overloaded functions.
12798         (build_static_cast): Don't do a decay conversion here.
12799
12800 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
12801
12802         PR c++/3543
12803         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
12804         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
12805
12806 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
12807
12808         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
12809         (create_vtbl_ptr): ... here.
12810
12811 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
12812
12813         * class.c (build_vbase_offset_vbtl_entries): Look for
12814         non-primary base of which we are a sub vtable.
12815
12816 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
12817
12818         * semantics.c (finish_this_expr):  Remove unused code.
12819
12820 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
12821
12822         Simplify rtti, now we've only one ABI.
12823         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
12824         CPTI_TINFO_VAR_ID.
12825         (tinfo_decl_id, tinfo_var_id): Remove.
12826         (get_typeid_1): Remove.
12827         * rtti.c
12828         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
12829         (typeid_ok_p): New function.
12830         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
12831         (get_tinfo_decl): Remove old abi documentation.
12832         (tinfo_from_decl): Remove.
12833         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
12834         (get_typeid_1): Remove.
12835         (get_base_offset): Remove.
12836         (synthesize_tinfo_var): Absorb get_base_offset.
12837         (create_real_tinfo_var): Don't use tinfo_decl_id.
12838
12839 2001-07-23  Graham Stott  <grahams@redhat.com>
12840
12841         * cp/class.c (type_requires_array_cookie): Fix use of uninitialized
12842         variable has_two_argument_delete_p.
12843
12844 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
12845
12846         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
12847         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
12848         (CPTI_INDEX_IDENTIFIER): Remove.
12849         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
12850         (delta2_identifier): Remove.
12851         (index_identifier): Remove.
12852         (pfn_or_delta2_identifier): Remove.
12853         (flag_vtable_thunks): Remove.
12854         (VTABLE_DELTA2_NAME): Remove.
12855         (VTABLE_INDEX_NAME): Remove.
12856         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
12857         (vfunc_ptr_type_node): Adjust.
12858         (VTABLE_NAME_PREFIX): Adjust.
12859         (build_vfn_ref): Lose first parameter.
12860         (fixup_all_virtual_upcast_offsets): Remove.
12861         * decl.c (initialize_predefined_identifiers): Remove
12862         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
12863         (init_decl_processing): Remove no-vtable-thunk code.
12864         * decl2.c (flag_vtable_thunks): Remove.
12865         (mark_vtable_entries): Remove no-vtable-thunk code.
12866         * error.c (dump_decl): Remove no-vtable-thunk code.
12867         (dump_expr): Adjust ptr to member function code.
12868         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
12869         code.
12870         * rtti.c (build_headof): Remove no-vtable-thunk code.
12871         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
12872         * search.c (get_base_distance): Remove expand_upcast_fixups case.
12873         (virtual_context) Remove.
12874         (expand_upcast_fixups): Remove.
12875         (fixup_virtual_upcast_offsets): Remove.
12876         (fixup_all_virtual_upcast_offsets): Remove.
12877         * typeck.c (get_member_function_from_ptrfunc): Remove
12878         no-vtable-thunk code.
12879         * call.c (build_over_call): Adjust call to build_vfn_ref.
12880         * class.c (build_vfn_ref): Lose first parameter. Remove
12881         no-vtable-thunk code.
12882         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
12883         (build_vtable_entry): Remove no-vtable-thunk code.
12884
12885 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
12886
12887         Remove old-abi remnants. Remove comments about old abi
12888         behavior. Remove references to 'new-abi' in comments.
12889         * cp-tree.h: Adjust comments.
12890         (vbase_offsets_in_vtable_p): Delete.
12891         (vcall_offsets_in_vtable_p): Delete.
12892         (vptrs_present_everywhere_p): Delete.
12893         (all_overridden_vfuns_in_vtables_p): Delete.
12894         (merge_primary_and_secondary_vtables_p): Delete.
12895         (TYPE_CONTAINS_VPTR_P): Adjust.
12896         (VTT_NAME_PREFIX): Remove.
12897         (CTOR_VTBL_NAME_PREFIX): Remove.
12898         (init_vbase_pointers): Remove.
12899         * class.c: Adjust coments.
12900         (build_vbase_pointer_fields): Delete.
12901         (build_vbase_pointer): Remove old-abi code.
12902         (build_secondary_vtable): Likewise.
12903         (modify_all_vtables): Likewise.
12904         (create_vtable_ptr): Likewise.
12905         (layout_class_type): Likewise.
12906         (finish_struct_1): Likewise.
12907         (finish_vtbls): Likewise.
12908         (dfs_finish_vtbls): Delete.
12909         (build_vbase_offset_vtbl_entries): Remove old-abi code.
12910         * cvt.c: Adjust comments.
12911         * decl.c: Adjust comments.
12912         * decl2.c: Adjust comments.
12913         * init.c: Adjust comments.
12914         (construct_virtual_bases): Remove old-abi code.
12915         * lang-specs.h: Remove -fno-new-abi.
12916         * mangle.c: Adjust comments.
12917         * rtti.c: Adjust comments.
12918         (get_base_offset): Remove old-abi-code.
12919         * search.c: Adjust comments.
12920         (dfs_init_vbase_pointers): Remove.
12921         (dfs_vtable_path_unmark): Remove.
12922         (init_vbase_pointers): Remove.
12923         * semantics.c: Adjust comments.
12924         (emit_associated_thunks): Remove old-abi code.
12925         * typeck.c: Adjust comments.
12926
12927 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
12928
12929         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
12930         params.h.
12931
12932 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
12933
12934         * class.c (finish_struct_anon): Forbid nested classes.
12935
12936 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
12937
12938         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
12939         * optimize.c: Include debug.h.
12940         (maybe_clone_body): Use debug hook.
12941         * semantics.c: Include debug.h.
12942         (expand_body): Use debug hook.
12943
12944 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
12945
12946         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
12947
12948 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
12949
12950         * class.c (type_requires_array_cookie): New function.
12951         (check_methods): Don't try to figure out whether the type needs a
12952         cookie here.
12953         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
12954         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
12955         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
12956         * pt.c (instantiate_class_template): Don't set
12957         TYPE_VEC_DELETE_TAKES_SIZE.
12958         * NEWS: Document ABI changes from GCC 3.0.
12959
12960 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
12961             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12962
12963         * NEWS (Changes in GCC 3.0): Fix typo.
12964
12965 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
12966
12967         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
12968         which attributes are to be attached, and a flags argument.  Update
12969         call to decl_attributes.
12970         (grokfield): Update call to decl_attributes.
12971         * class.c (finish_struct): Update call to cplus_decl_attributes.
12972         * cp-tree.h (cplus_decl_attributes): Update prototype.
12973         * decl.c (start_decl, grokdeclarator, start_function): Update
12974         calls to decl_attributes and cplus_decl_attributes.
12975         * friend.c (do_friend): Update call to cplus_decl_attributes.
12976         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
12977
12978 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
12979
12980         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
12981         for `register' variables with an asm-specification.
12982
12983 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
12984
12985         * semantics.c (finish_asm_stmt): Mark the output operands
12986         to an asm addressable, if necessary.
12987
12988 2001-07-11  Ben Elliston  <bje@redhat.com>
12989
12990         * Revert this change -- there is a subtle bug.
12991
12992         PR c++/80
12993         * decl.c (finish_enum): New "attributes" argument; pass it to
12994         cplus_decl_attributes.  Use a narrower type if the enum is packed.
12995         * cp-tree.h (finish_enum): Adjust prototype.
12996         * parse.y (enum_head): New non-terminal.
12997         (structsp): Use it. Enums now may be preceded or followed by
12998         optional attributes -- pass their chained tree to finish_enum().
12999         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
13000
13001 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
13002
13003         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
13004         variables.
13005
13006 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
13007
13008         * semantics.c (cp_expand_stmt): Fix for null
13009         current_function_return_value.
13010
13011 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
13012
13013         * call.c (build_op_delete_call): Initialize fn.
13014         (convert_like_real): Delete conditional.
13015         (joust): Initialize *w and *l.
13016         * class.c: Add prototype for binfo_ctor_vtable.
13017         (get_primary_binfo): Initialize result.
13018         * init.c (build_java_class_ref): Initialize name.
13019
13020 2001-07-09  Erik Rozendaal  <dlr@acm.org>
13021
13022         * typeck.c (unary_complex_lvalue): Do not duplicate the
13023         argument to modify, pre-, or post-increment when used as an
13024         lvalue and when the argument has side-effects.
13025
13026 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
13027
13028         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
13029         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
13030         cplus_decl_attributes even if attrs is NULL.
13031         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
13032
13033 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
13034
13035         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
13036         calls to decl_attributes.
13037
13038 2001-07-06  Ira Ruben   <ira@apple.com>
13039
13040         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
13041         be DECL_TEMPLATE_RESULT.
13042
13043 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13044
13045         * cp-tree.h (copy_template_template_parm): Rename to ...
13046         (bind_template_template_parm): ... here.
13047         * tree.c (copy_template_template_parm): Rename to ...
13048         (bind_template_template_parm): ... here.  Remove the case when
13049         NEWARGS is NULL_TREE.
13050         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
13051         BOUND_TEMPLATE_TEMPLATE_PARM.
13052         * pt.c (lookup_template_class): Adjust.
13053
13054 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
13055
13056         * cvt.c (convert_lvalue): New fn.
13057         * cp-tree.h: Declare it.
13058         * method.c (do_build_assign_ref): Use it.
13059         (do_build_copy_constructor): Convert parm to base types
13060         before calling base constructors.
13061
13062         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
13063         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
13064         optimize.
13065         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
13066
13067 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
13068
13069         * optimize.c (optimize_inline_calls): New function, broken out
13070         of ...
13071         (optimize_function): ... here. Call it. Don't inline if it is
13072         a thunk.
13073         (dump_function): Print name of dump flag causing this dump.
13074         * semantics.c (expand_body): Move thunk inline check to
13075         optimize_function.
13076
13077 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
13078
13079         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
13080         (comptypes): Use target.comp_type_attributes.
13081
13082 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
13083
13084         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
13085
13086 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
13087
13088         * error.c (lang_print_error_function): Add a `diagnostic_context *'
13089         parameter. Tweak.
13090
13091 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
13092
13093         * decl2.c (import_export_class): Update.
13094
13095 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
13096
13097         * error.c (init_error): Adjust settings.
13098
13099 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
13100
13101         * error.c (init_error): Adjust settings.
13102
13103 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
13104
13105         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
13106         return pointers to data members by reference rather than by value.
13107
13108 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
13109
13110         Implement the Named Return Value optimization.
13111         * cp-tree.h (struct cp_language_function): Add x_return_value.
13112         (current_function_return_value): Now a macro.
13113         * decl.c: Don't define it.
13114         (define_label, finish_case_label): Don't clear it.
13115         (init_decl_processing): Don't register it with GC.
13116         * semantics.c (genrtl_finish_function): Don't check it for
13117         no_return_label.  Copy the RTL from the return value to
13118         current_function_return_value and walk, calling...
13119         (nullify_returns_r): ...this new fn.
13120         * typeck.c (check_return_expr): Set current_function_return_value.
13121
13122 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
13123
13124         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
13125         sharing a ctor vtable with.  Merge code for cases 1 and 2.
13126         (binfo_ctor_vtable): New fn.
13127         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
13128
13129 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
13130
13131         * class.c (dfs_find_final_overrider): Fix logic.
13132
13133         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
13134         virtual thunk instead of non-virtual.
13135         (get_matching_virtual): Uncomment.
13136
13137         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
13138         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
13139         PARM, not ARG.
13140
13141 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
13142
13143         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
13144         we've not emerged from the hierarchy of RTTI_BINFO on reaching
13145         a non-virtual base.
13146
13147 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
13148
13149         * NEWS: Update release number.
13150
13151 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
13152
13153         PR c++/3130, c++/3131, c++/3132
13154         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
13155         * class.c (force_canonical_binfo_r): Move
13156         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
13157         virtual bases unless they're primary and what they're primary
13158         too has been moved.
13159         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
13160         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
13161         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
13162         derived binfo.
13163         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
13164         (layout_nonempty_base_or_field): Add most derived type
13165         parameter. Adjust.
13166         (layout_empty_base): Likewise.
13167         (build_base_field): Likewise.
13168         (build_base_fields): Likewise.
13169         (propagate_binfo_offsets): Add most derived type
13170         parameter. Skip non canonical virtual bases too.
13171         (dfs_set_offset_for_unshared_vbases): Don't skip primary
13172         bases. Do skip canonical bases.
13173         (layout_virtual_bases): Adjust.
13174         (layout_class_type): Adjust.
13175         (dfs_get_primary_binfo): Build list of virtual primary base
13176         candidates.
13177         (get_primary_binfo): Check that the shared virtual primary
13178         base candidate was found first.
13179         (accumulate_vtbl_inits): Don't do anything for non-vptr
13180         containing binfos. For case 1 primary virtual bases, keep
13181         checking that we've not emerged from the hierarchy of RTTI_BINFO.
13182
13183 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
13184
13185         PR c++/3089
13186         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
13187         hierarchy looking for primary bases for a ctor
13188         vtable. Recursively call oneself, if we meet our primary via
13189         this route and haven't met it yet via inheritance graph order.
13190
13191 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
13192
13193         * lang-options.h: Emit documentation for -fno-honor-std, not
13194         -fhonor-std.
13195
13196 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
13197
13198         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
13199         Don't clobber delta.
13200         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
13201
13202 2001-06-10  Mark Mitchell <mark@codesourcery.com>
13203             Gabriel Dos Reis  <gdr@codesourcery.com>
13204
13205         * Make-lang.in (cp/call.o): Depend on diagnostic.h
13206         (cp/typeck.o): Depend on diagnostic.h
13207         (cp/typeck2.o): Depend on diagnostic.h
13208         (cp/repo.o): Depend on dignostic.h
13209         * typeck.c: #include diagnostic.h
13210         (convert_for_initialization): Remove extern declaration for
13211         warningcount and errorcount.
13212
13213         * call.c: #include diagnostic.h
13214         (convert_like_real): Remove extern declaration for warnincount and
13215         errorcount.
13216
13217         * repo.c: #include diagnostic.h
13218         * typeck2.c: #include diagnostic.h
13219
13220 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
13221
13222         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
13223         in previous change.
13224
13225 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
13226
13227         PR c++/2929
13228         * friend.c (do_friend): Use push_decl_namespace for classes at
13229         namespace scope.
13230
13231 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
13232             Jason Merrill <jason_merrill@redhat.com>
13233
13234         PR c++/3061
13235         * class.c (build_secondary_vtable): Use assert, rather than an error
13236         message.
13237         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
13238         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
13239         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
13240         Don't set BINFO_VTABLE for a primary virtual base.
13241
13242 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
13243
13244         * decl.c (duplicate_decls): Update source position information
13245         when a template function is defined.
13246
13247 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
13248
13249         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
13250
13251 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
13252
13253         PR c++/2914
13254         * decl.c (pushtag): Don't push into a complete type's scope.
13255
13256 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
13257
13258         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
13259         (struct lang_decl_flags): Lose generate_with_vtable_p.
13260         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
13261         * class.c (copy_virtuals): Adjust.
13262         * decl2.c (mark_vtable_entries): Adjust.
13263         * method.c (make_thunk, build_vtable_entry): Adjust.
13264         * class.c (update_vtable_entry_for_fn): Only look as far as the
13265         first defining class.
13266         (build_vtbl_initializer): Put nothing in the slot for a function only
13267         defined in a lost primary virtual base.
13268         (add_vcall_offset_vtbl_entries_1): Use the same code for
13269         the lost primary case and the normal case.
13270         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
13271         (get_vfield_offset, get_derived_offset): Lose.
13272         (dfs_find_final_overrider): Use look_for_overrides_here.
13273         (get_matching_virtual): New fn.
13274         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
13275         not BV_VCALL_INDEX.
13276         * search.c (look_for_overrides_here): Split out from...
13277         (look_for_overrides_r): Here.
13278
13279         * class.c (find_final_overrider): Return error_mark_node on error.
13280
13281         * decl2.c (key_method): #if 0 accidental change.
13282
13283 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
13284
13285         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
13286         (build_over_call): Likewise.
13287         * decl.c (grokparms): Likewise.
13288         * pt.c (tsubst_decl): Likewise.
13289         * typeck.c (convert_arguments): Likewise.
13290
13291 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
13292
13293         * semantics.c (begin_class_definition): Robustify.
13294
13295         * pt.c (instantiate_decl): Tell the repository code about the
13296         clones, not the cloned functions.
13297         * repo.c (repo_template_used): Explicitly instantiate the cloned
13298         function, not the clones.
13299
13300 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
13301
13302         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
13303         ICS_BAD_FLAG on created conversion.
13304         (compare_ics): Break out rank.
13305
13306 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
13307
13308         * decl.c (xref_tag): Remove extraneous %s on dependent name
13309         lookup warning.
13310
13311 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
13312
13313         * class.c (layout_vtable_decl): Fix off by one error on
13314         build_index_type.
13315         (build_vtt): Likewise.
13316         (build_ctor_vtbl_group): Likewise.
13317
13318 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
13319
13320         * class.c (maybe_indent_hierarchy): New function.
13321         (dump_class_hierarchy_r): Add flags. Dump extra binfo
13322         information, if enabled. Use maybe_indent_hierarchy. Adjust
13323         output format.
13324         (dump_class_hierarchy): Adjust prototype. Adjust output format.
13325         (dump_array, dump_vtable, dump_vtt): New functions.
13326         (finish_struct_1): Adjust hierarchy dumping.
13327         (initialize_vtable): Call dump_vtable.
13328         (build_vtt): Call dump_vtt.
13329         (build_ctor_vtbl_group): Call dump_vtable.
13330         * decl2.c (flag_dump_class_layout): Remove.
13331         (cxx_decode_option): Remove dump translation unit
13332         and dump class hierarchy check. Call dump_switch_p.
13333         (finish_file): Adjust dumping.
13334         (dump.c): Only dump base classes if not TDF_SLIM.
13335         Only dump namespace members if not TDF_SLIM.
13336         * optimize.c (dump_function): New function.
13337         (optimize_function): Call dump_function.
13338         * semantics.c (expand_body): Use dump_enabled_p.
13339
13340 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
13341
13342         PR g++/2936
13343         Part missed from first commit
13344         * decl2.c (finish_anon_union): Copy context.
13345
13346 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
13347
13348         PR g++/2936
13349         * optimize.c (remap_decl): Remap anonymous aggregate members too.
13350
13351 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
13352
13353         PR g++/2823
13354         * semantics.c (expand_body): Don't optimize thunks.
13355
13356 2001-05-25  Sam TH  <sam@uchicago.edu>
13357
13358         * cp-tree.h lex.h: Fix header include guards.
13359
13360 2001-05-25  Mark Mitchell <mark@codesourcery.com>
13361
13362         * decl.c (init_decl_processing): Tweak.
13363
13364 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
13365
13366         * decl.c (duplicate_decls): Tidy.
13367         (init_decl_processing): Always set flag_no_builtin.
13368
13369 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
13370
13371         PR c++/2184
13372         * decl2.c (do_local_using_decl): Push the decls, even in a
13373         template.
13374
13375 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
13376
13377         * optimize.c (initialize_inlined_parameters): Don't set
13378         TREE_READONLY for a VAR_DECL taking the place of an inlined
13379         PARM_DECL.
13380
13381 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
13382
13383         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
13384         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
13385         attribute.
13386
13387 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
13388
13389         * parse.y: Refer to compound literals as such, not as
13390         constructor-expressions.
13391
13392 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
13393
13394         * call.c (build_op_delete_call): Ignore exception-specifications
13395         when looking for matching delete operators.
13396         * init.c (build_new_1): Compute whether or not the allocation
13397         function used is a placement allocation function or not, and
13398         communicate this information to build_op_delete_call.
13399
13400 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
13401
13402         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
13403         (build_vtbl_ref): Adjust.
13404         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
13405         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
13406         Re-add vtable-gc.
13407         (unsupported_options): Correspondingly.
13408
13409         * decl2.c (maybe_make_one_only): Check flag_weak, not
13410         supports_one_only().
13411
13412         * cp-tree.def (START_CATCH_STMT): Lose.
13413         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
13414         * tree.c (cp_statement_code_p): Don't case it.
13415         * semantics.c (cp_expand_stmt): Likewise.
13416         * cp-tree.h (START_CATCH_TYPE): Lose.
13417         (HANDLER_TYPE): New.
13418         * except.c (expand_start_catch_block): Don't start any blocks.
13419         Return the type.
13420         (expand_end_catch_block): Don't end any blocks.
13421         * parse.y (handler): Don't pass anything from finish_handler_parms
13422         to finish_handler.
13423         * pt.c (tsubst_expr): Likewise.
13424         * semantics.c (begin_handler): Call note_level_for_catch here.
13425         (finish_handler_parms): Don't return anything.
13426         (genrtl_catch_block, begin_catch_block): Lose.
13427         (genrtl_handler): Call expand_start_catch here.
13428
13429 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
13430
13431         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
13432         (get_vtable_decl, build_vtt): Not here.
13433
13434 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
13435
13436         PR c++/2781
13437         * optimize.c (update_cloned_parm): Copy addressability and other
13438         flags.
13439
13440 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13441
13442         * pt.c (determine_specialization): Ignore artificial functions.
13443
13444 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
13445
13446         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
13447         (C_RID_CODE): Remove.
13448         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
13449         (init_parse): Don't do it here.
13450
13451 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
13452
13453         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
13454         function declaration to avoid stripping the symbol's attributes.
13455
13456 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
13457
13458         * decl.c (pushdecl): Adjust error string.
13459         (xref_tag): Adjust friend class injection warning. Remove the
13460         inherited name from the class shadowed scope.
13461
13462 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
13463
13464         * except.c (cp_protect_cleanup_actions): New function.
13465         (init_exception_processing): Don't set protect_cleanup_actions
13466         here.  Do set lang_protect_cleanup_actions.
13467
13468 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
13469
13470         * spew.c (read_token): Call yyerror on all unexpected tokens.
13471
13472 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
13473
13474         * init.c (member_init_ok_or_else): Take a tree rather than
13475         string for name.
13476         (expand_member_init): Adjust.
13477
13478 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
13479
13480         * decl.c (duplicate_decls): Suppress warning about duplicate
13481         decls if the first decl is a friend.
13482
13483 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
13484
13485         * except.c (choose_personality_routine): Export.  Add
13486         explanatory comment.  Take an enum languages, not a boolean.
13487         (initialize_handler_parm): Adjust to match.
13488         * cp-tree.h: Prototype choose_personality_routine.
13489         * lex.c (handle_pragma_java_exceptions): New function.
13490         (init_cp_pragma): Register #pragma GCC java_exceptions.
13491
13492 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
13493
13494         * method.c (build_mangled_C99_name): Remove unused prototype.
13495
13496 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
13497
13498         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
13499         * typeck.c (get_member_function_from_ptrfunc,
13500         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
13501         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
13502
13503         Reverted Geoff Keating's 2001-05-03's patch.
13504
13505 2001-05-11  Ira Ruben   <ira@apple.com>
13506
13507         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
13508
13509 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
13510
13511         * cp-tree.h (finish_label_expr, lookup_label): Delete.
13512         * parse.y: Update for '&&'; don't issue warning here.
13513         * semantics.c (finish_label_expr): Delete.
13514
13515 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
13516
13517         * splay-tree.h (splay_tree_max): New function.
13518         (splay_tree_min): Likewise.
13519
13520 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
13521
13522         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
13523         (pfn_vflag_identifier): Define.
13524         Update comment about layout of pointer functions.
13525         (build_ptrmemfunc1): Update prototype.
13526         (expand_ptrmemfunc_cst): Update prototype.
13527         * decl.c (initialize_predefined_identifiers): Initialize
13528         pfn_vflag_identifier.
13529         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
13530         an extra field to the type.
13531         * expr.c (cplus_expand_constant): Pass 'flag' between
13532         expand_ptrmemfunc_cst and build_ptrmemfunc1.
13533         * typeck.c (get_member_function_from_ptrfunc): When
13534         FUNCTION_BOUNDARY < 16, look at additional field to determine
13535         if a pointer-to-member is a real pointer or a vtable offset.
13536         (build_ptrmemfunc1): Add new parameter to contain extra field.
13537         (build_ptrmemfunc): Pass the extra field around.
13538         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
13539         (pfn_from_ptrmemfunc): Ignore the extra field.
13540
13541 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
13542
13543         * cp-tree.h (flag_inline_trees): Update documentation.
13544         * decl.c (init_decl_processing): Adjust handling of
13545         flag_inline_functions and flag_inline_trees to support -O3.
13546         (grokfndecl): Set DECL_INLINE on all functions if that's what
13547         the user requested.
13548         (save_function_data): Clear DECL_INLINE in
13549         current_function_cannot_inline is non-NULL.
13550         * decl2.c (flag_inline_trees): Update documentation.
13551
13552 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
13553
13554         * dump.c (cp_dump_tree, USING_STMT case): New case.
13555         * tree.c (cp_statement_code_p): Add USING_STMT.
13556         * decl2.c (do_using_directive): Add the using directive statement.
13557
13558         * tree.c (walk_tree): Reformat an if block.
13559
13560 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
13561
13562         * decl.c (compute_array_index_type): Don't try to do anything with
13563         the indices when processing a template.
13564
13565 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13566
13567         * call.c: NULL_PTR -> NULL.
13568         * class.c: Likewise.
13569         * cvt.c: Likewise.
13570         * decl.c: Likewise.
13571         * decl2.c: Likewise.
13572         * except.c: Likewise.
13573         * init.c: Likewise.
13574         * rtti.c: Likewise.
13575         * search.c: Likewise.
13576         * tree.c: Likewise.
13577         * typeck.c: Likewise.
13578         * typeck2.c: Likewise.
13579
13580 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
13581
13582         * decl2.c (do_using_directive): Revert previous patch.
13583
13584 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
13585
13586         * cp-tree.def (USING_STMT): New statement node.
13587         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
13588         * decl2.c (do_using_directive): Add USING_STMT to statement
13589         tree. Don't emit errors when processing template decl.
13590         * pt.c (tsubst_expr, USING_STMT case): New case.
13591         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
13592
13593 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
13594
13595         * call.c (build_new_op): Convert args from reference here.
13596         (build_conditional_expr): Don't convert here.
13597
13598 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
13599
13600         * spew.c (last_token_id): New static variable.
13601         (read_token): Set it here.
13602         (yyerror): Use it here.
13603
13604 2001-04-30  Richard Henderson  <rth@redhat.com>
13605
13606         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
13607         * decl.c: Likewise.
13608
13609 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
13610
13611         * gxxint.texi: Remove.
13612         * Make-lang.in: Remove all traces of gxxint.texi.
13613
13614 2001-04-30  Mark P Mitchell  <mark@codesourcery.com>
13615
13616         * decl2.c (start_static_initialization_or_destruction): Correct
13617         logic to handle the -fno-use-cxa-atexit case.
13618
13619 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
13620
13621         * optimize.c (update_cloned_parm): New function.
13622         (maybe_clone_body): Use it.  Update the `this' parameter too.
13623
13624 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
13625
13626         * decl2.c (unsupported_options): Add new-abi.
13627         * lang-options.h: Remove no longer supported options.
13628
13629 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
13630
13631         * except.c (can_convert_eh): Don't check template parms,
13632         typename types etc.
13633
13634 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
13635
13636         * optimize.c (maybe_clone_body): Copy parameter names and locations.
13637
13638 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
13639
13640         * cp-tree.h (adjust_clone_args): Prototype new function.
13641         * class.c (adjust_clone_args): New function.
13642         * decl.c (start_function): Call it for in charge ctors.
13643
13644 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
13645
13646         * method.c (use_thunk): Make sure that thunks really are emitted
13647         when requested.
13648
13649 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
13650
13651         * mangle.c (write_chars): New macro.
13652         (hwint_to_ascii): New function
13653         (write_number): Use it.
13654         (write_integer_cst): Deal with really big numbers.
13655
13656 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
13657
13658         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
13659         the clone.
13660
13661 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
13662
13663         * decl.c (grokdeclarator): Set context of namespace scope
13664         TYPE_DECLS.
13665
13666 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
13667
13668         * cp/optimize.c: Include hashtab.h.
13669         (struct inline_data): Add tree_pruner.
13670         (expand_call_inline, expand_calls_inline): Use it when calling
13671         walk_tree.
13672         (optimize_function): Initialize and free tree_pruner.
13673
13674 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
13675
13676         Lazy __FUNCTION__ generation.
13677         * cp-tree.def (FUNCTION_NAME): Remove.
13678         * cp-tree.h (function_name_declared_p): Remove.
13679         (cp_fname_init): Prototype.
13680         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
13681         don't call declare_function_name. Call start_fname_decls.
13682         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
13683         clobber the line number.
13684         (cp_fname_init): New function.
13685         (start_function): Call start_fname_decls.
13686         (finish_function): Call finish_fname_decls.
13687         * lex.c (reswords): Add slots for __FUNCTION__ et al.
13688         (rid_to_yy): Add mappings for __FUNCTION__ et al.
13689         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
13690         * parse.y (VAR_FUNC_NAME): New token.
13691         (primary): Add VAR_FUNC_NAME.
13692         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
13693         generation.
13694         (tsubst, FUNCTION_NAME case): Remove.
13695         (tsubst_copy, FUNCTION_NAME case): Remove.
13696         (tsubst_expr, DECL_STMT case): Be careful with a
13697         DECL_PRETTY_FUNCTION_P.
13698         (instantiate_decl): Remove function_name_declared_p.
13699         * semantics.c (begin_compound_statement): Don't call
13700         declare_function_name here.
13701         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
13702         (finish_translation_unit): Call finish_fname_decls.
13703         (expand_body): Remove function_name_declared_p.
13704         * typeck2.c (digest_init): Allow any ERROR_MARK.
13705
13706 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
13707
13708         * pt.c (tsubst_decl): Use VOID_TYPE_P.
13709         * semantics.c: Fix some typos.
13710
13711 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
13712
13713         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
13714
13715 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13716
13717         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
13718
13719 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
13720
13721         * except.c (build_throw): Wrap the initialization of the exception
13722         object in a MUST_NOT_THROW_EXPR.
13723         (do_free_exception): #if 0.
13724
13725 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
13726
13727         * cp-tree.h (finish_enum): Change prototype.
13728         * decl.c (finish_enum): Reorganize.
13729         * parse.y (structsp): Adjust calls to finish_enum.
13730
13731 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
13732
13733         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
13734         't' case.
13735
13736 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
13737
13738         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
13739         (layout_empty_base): Return at end flag.
13740         (build_base_field): Likewise.
13741         (build_base_fields): Likewise.
13742         (layout_virtual_bases): Don't add 1 to eoc value.
13743         (end_of_class): Use full size for empty bases.
13744         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
13745         empty bases. Don't add 1 to eoc value. Only add trailing padding
13746         if we're an empty class with no empty bases.
13747         (dump_class_hierarchy): Dump size and alignment.
13748
13749 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
13750
13751         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
13752         ICS_BAD_FLAG.
13753
13754 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
13755
13756         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
13757         is found, look first if name does not match the structure name.
13758
13759 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
13760
13761         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
13762         set.
13763         (SET_DECL_LANGUAGE): New macro.
13764         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
13765         (pushdecl): Likewise.
13766         (build_library_fn_1): Likewise.
13767         (build_cp_library_fn): Likewise.
13768         (grokfndecl): Likewise.
13769         (grokvardecl): Mark `extern "C"' variables as having C linkage.
13770         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
13771         * lex.c (retrofit_lang_decl): Likewise.
13772         * mangle.c (mangle_decl_string): Don't mangle the names of
13773         variables declared with C language linkage.
13774         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
13775
13776 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
13777
13778         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
13779         flag_access_control from uninitialized storage.
13780
13781 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
13782
13783         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
13784         * mangle.c (write_pointer_to_member_type): Fix mangling of
13785         pointers to cv-qualified member function types.
13786
13787         * init.c (build_delete): Create a SAVE_EXPR for the address if
13788         we're going to use it more than once.
13789
13790 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
13791
13792         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
13793         (expand_ptremfunc_cst): Change prototype.
13794         (delta2_from_ptrmemfunc): Remove.
13795         * expr.c (cplus_expand_constant): Adjust call to
13796         expand_ptrmemfunc_cst.
13797         * typeck.c (build_ptrmemfunc1): Simplify.
13798         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
13799         results in a constant.
13800         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
13801         (delta2_from_ptrmemfunc): Remove.
13802         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
13803
13804 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
13805
13806         * cp-tree.h (decl_namespace_list): New macro.
13807         (struct saved_scope): Add decl_ns_list.
13808         * decl.c (mark_saved_scope): Mark it.
13809         * decl2.c: Lose static decl_namespace_list.
13810         (init_decl2): Don't save it.
13811
13812 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13813
13814         * cp-tree.h (warn_return_type, yylex): Delete redundant
13815         declarations.
13816
13817         * decl.c (current_class_depth, global_namespace): Likewise.
13818
13819         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
13820
13821         * repo.c (flag_use_repository): Likewise.
13822
13823 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13824
13825         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
13826         set_block, pushdecl, getdecls, gettags, init_decl_processing,
13827         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
13828         lvalue_or_else, print_lang_statistics, comp_target_types,
13829         unsigned_type, signed_type, signed_or_unsigned_type,
13830         build_function_call, mark_addressable, incomplete_type_error):
13831         Delete redundant declarations.
13832
13833 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
13834
13835         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
13836         (TYPE_ANONYMOUS_P): New macro.
13837         (TAGGED_TYPE_P): New macro.
13838         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
13839         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
13840         * tree.c (no_linkage_helper): Likewise.
13841         * semantics.c (begin_class_definition): Likewise.
13842         * pt.c (convert_template_argument): Likewise.
13843         * lex.c (check_for_missing_semicolon): Likewise.
13844
13845 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
13846
13847         * class.c (dfs_unshared_virtual_bases): New function.
13848         (mark_primary_bases): Call it.
13849         (check_bases): Ignore virtual bases when determining
13850         nearly-emptiness.
13851
13852 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
13853
13854         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
13855
13856 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
13857
13858         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
13859         cloned function to the clone.
13860
13861 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13862
13863         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
13864
13865         * semantics.c: Include expr.h.
13866
13867 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
13868
13869         * method.c (implicitly_declare_fn): Commonize code for copy ctor
13870         and assignment op. Set TREE_USED for parameter.
13871
13872 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
13873
13874         * class.c (find_final_overrider_data): Add `candidates'.
13875         (dfs_find_final_overrider): Don't issue error messages
13876         prematurely.
13877         (find_final_overrider): Issue error messages here.
13878         (build_base_field): Don't warn about amgibuous direct bases here.
13879         (warn_about_ambiguous_direct_bases): New function.
13880         (layout_class_type): Use it.
13881
13882 2001-04-10  Richard Henderson  <rth@redhat.com>
13883
13884         * typeck.c (build_array_ref): Push the array reference inside
13885         COMPOUND_EXPR and COND_EXPR.
13886
13887 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
13888
13889         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
13890         * decl.c (duplicate_decls): Adjust accordingly.
13891         (maybe_commonize_var): Likewise.
13892         (grokfndecl): Likewise.
13893         (start_function): Likewise.
13894         (start_method): Likewise.
13895         * decl2.c (key_method): Likewise.
13896         (import_export_decl): Likewise.
13897         * method.c (implicitly_declare_fn): Likewise.
13898         * optimize.c (maybe_clone_body): Likewise.
13899
13900 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
13901
13902         * lang-specs.h: Add __DEPRECATED.
13903
13904 2001-04-05  J"orn Rennecke <amylaar@redhat.com>
13905
13906         * search.c (get_dynamic_cast_base_type): When building a new
13907         constant, set its type to ssizetype.
13908
13909 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
13910
13911         * optimize.c (expand_call_inline): Only add newly inlined statements
13912         into inlined_stmts.
13913
13914 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
13915
13916         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
13917         (OPERATOR_FORMAT): Likewise.
13918         (OPERATOR_TYPENAME_FORMAT): Likewise.
13919         * operators.def: Remove old name-mangling information.
13920         * decl.c (grok_op_properties): Adjust accordingly.
13921         * lex.c (init_operators): Likewise.
13922         * rtti.c (get_tinfo_decl): Issue error messages about types that
13923         have variable size.
13924
13925 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
13926
13927         * decl2.c (import_export_decl): Don't call import_export_class
13928         when processing an inline member function.
13929         * semantics.c (expand_body): Call import_export_decl before
13930         emitting inline functions.
13931
13932 2001-03-28  Richard Henderson  <rth@redhat.com>
13933
13934         IA-64 ABI Exception Handling:
13935         * cp-tree.def (EH_SPEC_BLOCK): New.
13936         (MUST_NOT_THROW_EXPR): New.
13937         * cp-tree.h: Update changed function declarations.
13938         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
13939         (CPTI_CALL_UNEXPECTED): New.
13940         (struct cp_language_function): Rename x_eh_spec_try_block
13941         to x_eh_spec_block.
13942         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
13943         * decl.c (current_binding_level): If no current function
13944         bindings, revert to scope_chain.
13945         (initialize_predefined_identifiers): Remove __cp_push_exception.
13946         (store_parm_decls): Use begin_eh_spec_block.
13947         (finish_function): Use finish_eh_spec_block.
13948         (mark_lang_function): Update for name changes.
13949         * decl2.c (finish_file): No mark_all_runtime_matches.
13950         * dump.c (cp_dump_tree): Handle new tree codes.
13951         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
13952         * except.c (catch_language_init, catch_language): Remove.
13953         (init_exception_processing): Don't set language code.
13954         Initialize call_unexpected_node, protect_cleanup_actions,
13955         eh_personality_libfunc, lang_eh_runtime_type.
13956         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
13957         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
13958         (prepare_eh_type): Split out type canonicalizations ...
13959         (build_eh_type_type): ... from here.
13960         (build_eh_type_type_ref): Remove.
13961         (mark_all_runtime_matches): Remove.
13962         (build_exc_ptr): New.
13963         (do_begin_catch, do_end_catch): New.
13964         (do_pop_exception): Remove.
13965         (build_terminate_handler): Remove.
13966         (choose_personality_routine): Split out language choice from ...
13967         (initialize_handler_parm): ... here.
13968         Use MUST_NOT_THROW_EXPR.
13969         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
13970         exception object handling.
13971         (expand_start_eh_spec, expand_end_eh_spec): Remove.
13972         (expand_exception_blocks, alloc_eh_object): Remove.
13973         (begin_eh_spec_block, finish_eh_spec_block): New.
13974         (do_allocate_exception, do_free_exception): New.
13975         (expand_throw): Merge into ...
13976         (build_throw): ... here.  Update for abi.
13977         * expr.c (cplus_expand_expr): No expand_internal_throw.
13978         Handle MUST_NOT_THROW_EXPR.
13979         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
13980         * semantics.c (*) Update for except.h name changes.
13981         (genrtl_try_block): No protect_with_terminate.
13982         (genrtl_eh_spec_block): New.
13983         (genrtl_handler): Don't emit the goto here.
13984         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
13985         (genrtl_finish_function): Don't expand_exception_blocks.
13986         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
13987
13988 2001-03-28  Richard Henderson  <rth@redhat.com>
13989
13990         * decl.c (struct named_label_list): Rename eh_region to
13991         in_try_scope, add in_catch_scope.
13992         (struct binding_level): Rename eh_region to is_try_scope,
13993         add is_catch_scope.
13994         (note_level_for_try): Rename from note_level_for_eh.
13995         (note_level_for_catch): New.
13996         (poplevel): Copy both is_try_scope and is_catch_scope to
13997         the named_label_list struct.
13998         (check_previous_goto_1): Don't check for catch block via
13999         DECL_ARTIFICIAL; use in_try_scope instead.
14000         (check_goto): Likewise.
14001         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
14002         * except.c (expand_start_catch_block): Call note_level_for_catch.
14003         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
14004
14005 2001-03-27  Richard Henderson  <rth@redhat.com>
14006
14007         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
14008         exceptions_via_longjmp.
14009
14010 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
14011
14012         * pt.c (check_default_tmpl_args):  Make error messages clearer.
14013
14014 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
14015
14016         * error.c:  Also undefine 'A' macro used for cp_printers definition.
14017
14018 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14019
14020         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
14021
14022 2001-03-26  Mike Yang <yang@research.att.com>
14023             Mark Mitchell  <mark@codesourcery.com>
14024
14025         * dump.c (dump_access): New function.
14026         (cp_dump_tree): Use it.  Dump basetype information for class
14027         types.
14028
14029 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
14030
14031         * Makefile.in (optimize.o): Depend on params.h.
14032         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
14033         (init_decl_processing): Set flag_no_inline when doing
14034         inlining-on-trees.
14035         * optimize.c: Include params.h.
14036         (struct inline_data): Improve documentation of FNS.  Add
14037         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
14038         (INSNS_PER_STMT): New macro.
14039         (remap_block): Use CLONING_P.
14040         (inlinable_function_p): Don't inline big functions.
14041         (expand_call_inline): Keep track of how much inlining we've done.
14042         (optimize_function): Set FIRST_INLINED_FN.
14043         (maybe_clone_body): Set CLONING_P.
14044         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
14045         tree nodes.
14046         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
14047         rest_of_compilation.  Clear DECL_RTL for local variables
14048         afterwards.
14049         (clear_decl_rtl): New function.
14050
14051 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
14052
14053         Implement DR 209
14054         * cp-tree.h (skip_type_access_control,
14055         reset_type_access_control): Prototype.
14056         * decl.c (grokdeclarator): Access of friends is not checked.
14057         * parse.y (component_decl_list): Reset type access control.
14058         * semantics.c (decl_type_access_control): Clear
14059         current_type_lookups.
14060         (save_type_access_control): Don't save if not deferring.
14061         (skip_type_access_control, reset_type_access_control): New
14062         functions.
14063         (begin_class_definition): Do type access control for basetypes.
14064         Start deferred access control.
14065         (finish_class_definition): Resume immediate access control if
14066         this is a local class.
14067
14068 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14069
14070         * class.c (add_method): Use memcpy/memmove, not bcopy.
14071
14072         * decl.c (duplicate_decls): Likewise.
14073
14074 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
14075
14076         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
14077         not `_'.
14078
14079 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
14080
14081         * decl.c (local_names): Define.
14082         (push_local_name): New.
14083         (grok_reference_init): Return init if initializing static reference
14084         variable with non-constant instead of emitting it.
14085         Move expand_static_init call to cp_finish_decl.
14086         (layout_var_decl): Call push_local_name.
14087         (maybe_commonize_var): Allow inlining functions even if they have
14088         static local variables, use comdat_linkage for them if flag_weak.
14089         (check_initializer): Call obscure_complex_init if
14090         grok_reference_init returned nonzero.
14091         (save_function_data): Clear x_local_names.
14092         (pop_cp_function_context): Free x_local_names.
14093         (mark_inlined_fns): Remove.
14094         (mark_lang_function): Mark x_local_names.
14095         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
14096         Mark inlined_fns as tree, remove call to mark_inlined_fns.
14097         * class.c (alter_access): Ensure DECL_ACCESS is never set if
14098         DECL_DISCRIMINATOR_P.
14099         * cp-tree.h (cp_language_function): Add x_local_names.
14100         (lang_decl_flags): Add discriminator into u2.
14101         (lang_decl_inlined_fns): Remove.
14102         (lang_decl): inlined_fns is now a TREE_VEC.
14103         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
14104         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
14105         TREE_VEC, not a custom structure.
14106         (optimize_function): Likewise.
14107         * mangle.c (discriminator_for_local_entity): Discriminate among
14108         VAR_DECL local entities.
14109         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
14110         is not valid.
14111
14112 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
14113
14114         Add support for Java interface method calls.
14115         * cp-tree.h (struct lang_type): Add java_interface flag.
14116         (TYPE_JAVA_INTERFACE): New macro.
14117         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
14118         by setting TYPE_JAVA_INTERFACE.
14119         * call.c (java_iface_lookup_fn): New static.
14120         (build_over_call): If calling a method declared in a
14121         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
14122         expression which resolves the function address.
14123         (build_java_interface_fn_ref): New function.
14124
14125 2001-03-22  Richard Henderson  <rth@redhat.com>
14126
14127         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
14128         * except.c: Don't include it.
14129
14130 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14131             based on an idea from Joe Buck <jbuck@synopsys.com>
14132
14133         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
14134         New nonterminals.
14135         (data_def, component_decl): Add reductions to bad_decl.
14136
14137 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
14138
14139         * method.c (do_build_assign_ref): Don't use build_modify_expr for
14140         anonymous aggregates, since they don't have assignment operator
14141         method.
14142         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
14143         assignment operators for anonymous structure fields.
14144
14145 2001-03-21  Jason Merrill  <jason@redhat.com>
14146
14147         * pt.c (instantiate_decl): Abort if we see a member constant
14148         instantiation that doesn't already have its initializer.
14149         Downgrade explicit instantiation without definition to pedwarn.
14150
14151         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
14152         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
14153         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
14154
14155         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
14156         (pending_vtables): Remove.
14157         * decl2.c (pending_vtables): Remove.
14158         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
14159         CLASSTYPE_VTABLE_NEEDS_WRITING.
14160         (import_export_class): Likewise.
14161         (init_decl2): Don't mark pending_vtables.
14162         * lex.c (handle_pragma_vtable): Just sorry.
14163         * pt.c (instantiate_class_template): Don't mess with
14164         CLASSTYPE_VTABLE_NEEDS_WRITING.
14165         (mark_class_instantiated): Likewise.
14166         * ptree.c (print_lang_type): Don't print it.
14167         * semantics.c (begin_class_definition): Don't set it.
14168
14169         * pt.c (template_tail): Replace with last_pending_template.
14170         (maybe_templates, maybe_template_tail): Remove.
14171         (add_pending_template): Adjust.
14172         (instantiate_pending_templates): Adjust.
14173
14174         * cp-tree.h (struct saved_scope): Remove lang_stack field.
14175         (current_lang_stack): Remove.
14176         * decl.c (maybe_push_to_top_level): Don't initialize it.
14177         (duplicate_decls): Use current_lang_depth.
14178         (xref_basetypes): Likewise.
14179         * class.c (current_lang_depth): New fn.
14180         (push_lang_context): Use more varray functionality.
14181         (pop_lang_context): Likewise.
14182
14183         * error.c (GLOBAL_THING): Always use '__'.
14184
14185 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
14186
14187         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
14188
14189         * mangle.c (mangle_decl_string): Mangle the names of overloaded
14190         operators, even when they have `extern "C"' linkage.
14191
14192 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
14193
14194         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
14195         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
14196         where it's not necessary.
14197         (add_method): Remove optimization involving comparison of
14198         DECL_ASSEMBLER_NAME.
14199         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
14200         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
14201         where it's not necessary.
14202         (check_methods): Likewise.
14203         (build_clone): Likewise.
14204         (built_vtt): Likewise.
14205         * cp-tree.h (DECL_NEEDED_P): Likewise.
14206         * decl.c (pushtag): Likewise.
14207         (duplicate_decls): Likewise.
14208         (pushdecl): Likewise.
14209         (builtin_function): Likewise.
14210         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
14211         (build_cp_library_fn): Likewise.
14212         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
14213         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
14214         where it's not necessary.
14215         (make_rtl_for_nonlocal_decl): Likewise.
14216         (cp_finish_decl): Likewise.
14217         (grokfndecl): Likewise.
14218         (grokvardecl): Likewise.
14219         (grokdeclarator): Likewise.
14220         (start_function): Likewise.
14221         (cp_missing_return_ok_p): Likewise.
14222         * decl2.c (grokclassfn): Likewise.
14223         (check_classfn): Likewise.
14224         (finish_static_data_member_decl): Likewise.
14225         (grokfield): Likewise.
14226         * error.c (GLOBAL_IORD_P): Remove.
14227         (dump_global_iord): Improve output.
14228         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
14229         * except.c (nothrow_libfn_p): Summarily reject any function not in
14230         namespace-scope.
14231         * init.c (build_java_class_ref): Don't explicitly set
14232         DECL_ASSEMBLER_NAME after calling mangle_decl.
14233         * mangle.c (mangle_decl_string): Handle extern "C" functions.
14234         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
14235         * method.c (set_mangled_name_for_decl): Don't explicitly set
14236         DECL_ASSEMBLER_NAME after calling mangle_decl.
14237         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
14238         IDENTIFIER_GLOBAL_VALUE for the thunk.
14239         * pt.c (set_mangled_name_for_template_decl): Remove.
14240         (check_explicit_specialization): Don't use it.
14241         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
14242         (tsubst_friend_function): Likewise.
14243         (tsubst_decl): Likewise.
14244         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
14245         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
14246         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
14247         where it's not necessary.
14248         (tinfo_base_init): Likewise.
14249         (create_real_tinfo_var): Likewise.
14250         * search.c (looup_field_1): Likewise.
14251         * semantics.c (finish_named_return_value): Likewise.
14252         * tree.c (init_tree): Set lang_set_decl_assembler_name.
14253
14254 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
14255
14256         Correct semantics restrictions checking in throw-expression.
14257         * except.c (is_admissible_throw_operand): New function.
14258         (build_throw): Use it.
14259
14260 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
14261
14262         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
14263         and its ilk.
14264
14265 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
14266
14267         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
14268         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
14269         * decl.c (duplicate_decls): Likewise.
14270         (builtin_function): Likewise.
14271         (build_library_fn): Likewise.
14272         (build_cp_library_fn): Likewise.
14273         (check_initializer): Likewise.
14274         (cp_finish_decl): Likewise.
14275         * decl2.c (grokfield): Likewise.
14276         (grok_function_init): Remove #if 0'd code.
14277         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
14278         * friend.c (do_friend): Likewise.
14279         * init.c (get_temp_regvar): Likewise.
14280         * method.c (make_thunk): Likewise.
14281         * pt.c (tsubst_friend_function): Likewise.
14282         (tsubst_decl): Likewise.
14283         (regenerate_decl_from_template): Likewise.
14284         * semantics.c (genrtl_named_return_value): Likewise.
14285         (expand_body): Likewise.
14286         (genrtl_finish_function): Likewise.
14287         * tree.c (cp_tree_equal): Likewise.
14288
14289 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
14290
14291         * call.c (convert_like_real): Add extra semantics to INNER
14292         parameter. Don't convert to temporary if a user conversion
14293         gives us an lvalue that we're about to bind to a reference.
14294         Set INNER to indicate pending reference binding on recursive
14295         calls.
14296
14297 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
14298
14299         * cp/lex.c: Delete duplicate pending_lang_change.
14300
14301 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
14302
14303         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
14304         Similarly.
14305         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
14306         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
14307
14308 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
14309
14310         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
14311
14312 2001-03-08  Stan Shebs  <shebs@apple.com>
14313
14314         * cp-tree.h (set_identifier_local_value): Remove unused decl.
14315
14316 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
14317
14318         * spew.c: Remove references to CPP_OSTRING.
14319
14320 2001-03-06  Andrew Haley  <aph@redhat.com>
14321
14322         * typeck.c (convert_arguments): Check that we have an fndecl.
14323
14324 2001-03-05  Andrew Haley  <aph@redhat.com>
14325
14326         * typeck.c (convert_arguments): Don't do ellipsis conversion for
14327         __built_in_constant_p.
14328
14329 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
14330
14331         * typeck.c (build_static_cast): Allow enum to enum conversions
14332         as per DR 128.
14333
14334 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
14335
14336         * class.c (check_field_decls): Pointers to member do not a
14337         non-pod struct make, as per DR 148.
14338
14339 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
14340
14341         * call.c (joust): cp_pedwarn when using gnu extension concerning
14342         worst conversion sequences.
14343
14344 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
14345
14346         * decl.c: Replace all uses of 'boolean' with 'bool'.
14347
14348 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
14349
14350         * lang-specs.h: Add zero initializer for cpp_spec field to
14351         all array elements that need one.  Don't put an #ifdef inside
14352         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
14353         use it.
14354
14355 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
14356
14357         Implement using decls inside template functions.
14358         * decl2.c (validate_nonmember_using_decl): Don't special case
14359         fake_std_node in the global namespace. Don't reject early when
14360         processing a template.
14361         (do_local_using_decl): Add to statement tree. Don't do further
14362         processing when building a template.
14363         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
14364
14365 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
14366
14367         * decl2.c (do_nonmember_using_decl): Don't complain if we find
14368         same function. Do complain about ambiguating extern "C"
14369         declarations.
14370
14371 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
14372
14373         Remove floating point and complex type template constant parms.
14374         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
14375         COMPLEX_TYPE extensions.
14376         (invalid_nontype_parm_type_p): Likewise.
14377
14378 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
14379
14380         * except.c (call_eh_info): Revert "match_function"'s type.
14381
14382 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
14383
14384         Fix ctor vtable vcall offsets.
14385         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
14386         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
14387         (get_matching_base): Remove.
14388         (get_original_base): New function.
14389         (build_vtbl_initializer): Initialize vid.rtti_binfo.
14390         Use a virtual thunk for a ctor vtable with an index
14391         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
14392         primary base within a constructor vtable. Only set
14393         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
14394         when primary base has been lost.
14395         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
14396
14397 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
14398
14399         * call.c (joust): Ensure more_specialized()'s argument length
14400         parameter has correct value for constructors.
14401
14402 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
14403
14404         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
14405
14406         * decl.c (mark_inlined_fns): Prototype.
14407
14408 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
14409
14410         * spew.c (yylex): Correct handling of friends.
14411
14412 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
14413
14414         * mangle.c (write_encoding): Pass write_function_type the
14415         FUNCTION_DECL for the function being encoded.
14416         (write_function_type): Pass it along to write_bare_function_type.
14417         (write_bare_function_type): Pass it along to write_method_parms.
14418         (write_method_parms): Don't mangle the compiler-generated
14419         parameters to a constructor or destructor.
14420
14421 2001-02-22  Andreas Jaeger  <aj@suse.de>
14422
14423         * optimize.c: Include toplev.h for
14424         note_deferral_of_defined_inline_function prototype.
14425
14426 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
14427
14428         * cp-tree.h (struct lang_decl_inlined_fns): New.
14429         (struct lang_decls): Add inlined_fns.
14430         (DECL_INLINED_FNS): New macro.
14431         * optimize.c (struct inline_data): Add inlined_fns.
14432         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
14433         (inlinable_function_p): Likewise, fix typo in comment,
14434         function is not inlinable if it already inlined function currently
14435         being optimized.
14436         (expand_call_inline): Add fn to inlined_fns if necessary.
14437         (optimize_function): Initialize inlined_fns.
14438         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
14439         * decl.c (mark_inlined_fns): New function.
14440         (lang_mark_tree): Call it.
14441
14442 2001-02-21  Jason Merrill  <jason@redhat.com>
14443
14444         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
14445         (DECL_UNINLINABLE): Move to middle-end.
14446
14447         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
14448         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
14449         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
14450         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
14451         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
14452
14453         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
14454         second parm of op=.
14455
14456 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
14457
14458         * decl2.c (set_decl_namespace): Allow explicit instantiations in
14459         any namespace.
14460
14461 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
14462
14463         * optimize.c (expand_call_inline): Don't walk subtrees of type
14464         nodes.
14465
14466 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
14467
14468         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
14469         for a destructor.
14470
14471 2001-02-18  Jason Merrill  <jason@redhat.com>
14472
14473         Do put the VTT parameter in DECL_ARGUMENTS.
14474         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
14475         (current_vtt_parm): New macro.
14476         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
14477         (DECL_HAS_VTT_PARM_P): New macro.
14478         (DECL_VTT_PARM): Remove.
14479         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
14480         * decl.c (duplicate_decls): Only copy the operator code if
14481         appropriate.
14482         (start_function): Set current_vtt_parm.
14483         (lang_mark_tree): Don't mark vtt_parm.
14484         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
14485         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
14486         * class.c (build_clone): Maybe remove the VTT parm.
14487         * optimize.c (maybe_clone_body): Set up the VTT parm.
14488         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
14489         * call.c (build_over_call): Just allow the VTT arg.
14490         * method.c (make_thunk): Don't set DECL_VTT_PARM.
14491         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
14492         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
14493         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
14494         * error.c (dump_function_decl): Likewise.
14495         * call.c (build_user_type_conversion_1, convert_like_real): Abort
14496         if we try to call a constructor with in-charge or VTT parms.
14497         * method.c (skip_artificial_parms_for): New fn.
14498         * call.c (add_function_candidate, build_over_call): Call it.
14499         * call.c (build_new_method_call): Use current_vtt_parm.
14500         * init.c (expand_virtual_init): Likewise.
14501         * class.c (same_signature_p): No longer static.
14502         * cp-tree.h: Declare it.
14503         * search.c (look_for_overrides_r): Use it.
14504
14505 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
14506
14507         * cp-tree.h (new_abi_rtti_p): Remove.
14508         (name_mangling_version): Likewise.
14509         (flag_do_squangling): Likewise.
14510         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
14511         * decl.c (grokfndecl): Likewise.
14512         * decl2.c (name_mangling_version): Remove.
14513         (flag_do_squangling): Likewise.
14514         (lang_f_options): Remove `squangle'.
14515         (unsupported_options): Add `squangle'.
14516         (cxx_decode_option): Issue a warning about uses of
14517         -fname-mangling-version.
14518         (finish_file): Remove old ABI support.
14519         * pt.c (check_explicit_specialization): Likewise.
14520         (tsubst_decl): Likewise.
14521         * rtti.c (init_rtti_processing): Likewise.
14522         (build_headof): Likewise.
14523         (get_tinfo_decl_dynamic): Likewise.
14524         (tinfo_from_decl): Likewise.
14525         (build_dynamic_cast_1): Likewise.
14526         (synthesize_tinfo_var): Likewise.
14527         * init.c (build_new): Allow enumeration types for the array-bounds
14528         in a direct-new-declarator.
14529
14530         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
14531
14532         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
14533         TREE_PROTECTED from the template being specialized.
14534
14535 2001-02-17  Jason Merrill  <jason@redhat.com>
14536
14537         * decl2.c (build_artificial_parm): Set TREE_READONLY.
14538
14539         * decl.c (bad_specifiers): Allow throw specs on things with
14540         pointer-to-function or -member-function type.
14541         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
14542         a pmf.
14543
14544 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
14545
14546         * call.c (check_dtor_name): Handle template names correctly.
14547
14548 2001-02-16  Jason Merrill  <jason@redhat.com>
14549
14550         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
14551         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
14552         * optimize.c (maybe_clone_body): Don't substitute it.
14553         * call.c (build_new_method_call): Check in_chrg instead.
14554         * init.c (expand_virtual_init): Likewise.
14555
14556 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
14557
14558         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
14559         class-type introduces at least a type-name.
14560
14561 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
14562
14563         * call.c (convert_like_real): Create a temporary for non-lvalue.
14564
14565 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
14566
14567         * cp-tree.h: Fix typos in comments.
14568
14569 2001-02-16  Jason Merrill  <jason@redhat.com>
14570
14571         * optimize.c (remap_block): If we're compiling a clone, pass the
14572         new block to insert_block.
14573
14574 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
14575
14576         * semantics.c (finish_asm_stmt): Robustify.
14577
14578 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
14579
14580         * pt.c (push_template_decl_real): Don't remangle the name of a
14581         class template.
14582
14583 2001-02-15  Jim Meyering  <meyering@lucent.com>
14584
14585         * Make-lang.in (c++.install-common): Depend on installdirs.
14586         (c++.install-info): Likewise.
14587         (c++.install-man): Likewise.
14588
14589 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
14590
14591         * typeck2.c (build_m_component_ref): Robustify.
14592
14593 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
14594
14595         * friend.c (do_friend): Don't take the nested [template] class
14596         into account when deciding whether to warn about the friend
14597         function not referring to a template function.
14598
14599 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
14600
14601         * typeck.c (build_unary_op): Clarify error message.
14602
14603 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
14604
14605         * parse.y (component_constructor_declarator): allow optional
14606         parentheses around constructor class name.
14607
14608 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
14609
14610         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
14611         section.
14612         * init.c (emit_base_init): Remove incorrect comment about
14613         virtual bases.
14614         * method.c (make_thunk): Fix comment alignment.
14615
14616 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
14617
14618         Kill remnants of this is variable.
14619         * cp-tree.h (flag_this_is_variable): Remove.
14620         * decl2.c (flag_this_is_variable): Remove.
14621         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
14622         (build_vbase_path): The path is non-static, even in a cdtor.
14623         (resolves_to_fixed_type_p): Add additional return value.
14624         * search.c (init_vbase_pointers): Adjust.
14625         * tree.c (lvalue_p_1): Adjust.
14626         * typeck.c (mark_addressable): Adjust.
14627
14628 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
14629
14630         * pt.c (unify): Don't check cv quals of array types.
14631
14632 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
14633
14634         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
14635         check whether we already have the type.
14636
14637 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
14638
14639         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
14640         * call.c (build_op_delete_call): Simplify to remove duplicate
14641         code.
14642         * class.c (clone_function_decl): Don't build the deleting variant
14643         of a non-virtual destructor.
14644         * decl.c (finish_destructor_body): Don't call delete if this is a
14645         non-virtual destructor.
14646         * init.c (build_delete): Explicitly call `operator delete' when
14647         deleting an object with a non-virtual destructor.
14648
14649 2001-02-13  Jason Merrill  <jason@redhat.com>
14650
14651         * lang-specs.h: Add more __EXCEPTIONS.
14652
14653 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
14654
14655         * typeck2.c (process_init_constructor): Check
14656         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
14657
14658 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
14659
14660         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
14661         Remove spurious information in comment. Allow further
14662         adjustments of REFERENCE_TYPE args.
14663
14664 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
14665
14666         * errfn.c (cp_deprecated): Tweak diagnostic text.
14667         * parse.y (new_initializer): Deprecate initializer lists
14668         extension.
14669
14670 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
14671
14672         Remove old ABI support.
14673
14674 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
14675
14676         * decl2.c (flag_vtable_thunks): Always set it to 1.
14677         (flag_new_abi): Likewise.
14678         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
14679
14680         * Makefile.in (g++spec.o): Fix typo.
14681
14682 2001-02-09  Jason Merrill  <jason@redhat.com>
14683
14684         * lang-specs.h: Restore definition of __EXCEPTIONS.
14685
14686 2001-02-08  Jason Merrill  <jason@redhat.com>
14687
14688         * search.c (shared_member_p): New function.
14689         (lookup_field_r): Use it.
14690         * cp-tree.h (SHARED_MEMBER_P): Remove.
14691
14692         * method.c (process_overload_item): Handle template-dependent array
14693         bounds.
14694         * pt.c (type_unification_real): If we end up with undeduced nontype
14695         parms, try again.
14696
14697         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
14698         types.
14699
14700         * typeck2.c (friendly_abort): Don't say anything if we have
14701         earlier errors or sorries.
14702
14703         * decl.c (check_tag_decl): Notice attempts to redefine bool and
14704         wchar_t.  Ignore if in_system_header.
14705
14706         * decl.c (maybe_push_cleanup_level): New fn...
14707         (start_decl_1): ...split out from here.
14708         * cvt.c (build_up_reference): Use it.
14709         * cp-tree.h: Declare it.
14710
14711 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
14712
14713         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
14714         spec.
14715
14716 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
14717
14718         * pt.c (lookup_template_class): Make sure it's a primary
14719         template or template_template_parm when called from the parser.
14720         (instantiate_template_class): Add assertion.
14721
14722 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
14723
14724         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
14725         from error_mark_node.
14726
14727 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
14728
14729         Fix specification and implementation bugs in V3 ABI
14730         construction vtables.
14731         * cp-tree.h (flag_dump_class_layout): New flag.
14732         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
14733         (BINFO_LOST_PRIMARY_P): New flag.
14734         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
14735         (BINFO_PRIMARY_MARKED_P): Rename to ...
14736         (BINFO_PRIMARY_P): ... here.
14737         (binfo_via_virtual): New prototype.
14738         * decl2.c (flag_dump_class_layout): New flag.
14739         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
14740         use `=' as a file name separator.
14741         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
14742         bases.
14743         (build_vtbl_address): If this is a virtual primary base, then
14744         get the vtbl of what it is ultimately primary for.
14745         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
14746         for BINFO_PRIMARY_P.
14747         (dfs_skip_nonprimary_vbases_markedp): Likewise.
14748         (get_shared_vbase_if_not_primary): Likewise.
14749         (dfs_get_pure_virtuals): Likewise.
14750         (expand_upcast_fixups): Likewise.
14751         (fixup_virtual_upcast_offsets): Likewise.
14752         (dfs_find_vbase_instance): Likewise.
14753         (find_vbase_instance): Likewise.
14754         (binfo_from_vbase): Adjust comment to reflect reality.
14755         (binfo_via_virtual): New function.
14756         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
14757         for binfo walking during VTT construction.
14758         (dfs_mark_primary_bases): Remove.
14759         (force_canonical_binfo_r): New function.
14760         (force_canonical_binfo): New function.
14761         (mark_primary_virtual_base): New function.
14762         (mark_primary_bases): Walk in inheritance graph order, use
14763         mark_primary_virtual_base.
14764         (determine_primary_base): Use some more intermediate variables.
14765         (dfs_find_final_overrider): Don't check for overriding along a
14766         virtual path.
14767         (dfs_modify_vtables): Walk into primary virtual bases too.
14768         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
14769         (build_base_fields): Likewise.
14770         (dfs_set_offset_for_unshared_vbases): Likewise.
14771         (layout_virtual_bases): Likewise.
14772         (end_of_class): Likewise.
14773         (finish_struct_1): Call dump_class_hierarchy, if requested.
14774         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
14775         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
14776         (dump_class_hierarchy): Add file parameter. Append to file, if
14777         required.
14778         (finish_vtbls): Adjust accumulate_vtbl_inits call.
14779         Use canonical base for virtual bases.
14780         (build_vtt): Add more comments. Adjust build_vtt_inits call.
14781         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
14782         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
14783         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
14784         virtual VTTs.
14785         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
14786         from DATA.  We want virtual primary bases and all bases via virtual.
14787         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
14788         virtual base when not a construction vtable.
14789         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
14790         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
14791         Use canonical bases when processing virtual bases.
14792         (accumulate_vtbl_inits): We're interested in any base via a
14793         virtual path.
14794         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
14795         within a construction vtable, determine what is being overridden.
14796         (build_vtbl_initializer): Add more comments
14797         (add_vcall_offset_vtbl_entries_1): Adjust comment.
14798         (build_rtti_vtbl_entries): Check if the base has lost its
14799         primary.
14800
14801 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
14802
14803         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
14804
14805 2001-02-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14806
14807         * decl.c (pushdecl): Call abort instead of fatal.
14808         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
14809         * init.c (build_new_1): Likewise.
14810         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
14811         * decl.c (build_typename_type): hash_table_init now returns void.
14812         decl.c (init_decl_processing): Make an error non-fatal.
14813
14814 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
14815
14816         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
14817         Document.
14818         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
14819         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
14820         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
14821         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
14822         * decl.c (maybe_commonize_var): Use the new name-mangling where
14823         appropriate.
14824         * decl2.c (comdat_linkage): Enhance comments.  Make all
14825         compiler-generated things static, if COMDAT is not available.
14826         (get_tinfo_decl): Do not make typeinfo objects that belong in the
14827         library COMDAT.
14828         (tinfo_base_init): Use the correct mangled name for typeinfo
14829         strings, and push them into the global scope.
14830         (typeinfo_in_lib_p): New function.
14831         (synthesize_tinfo_var): Use it.
14832         (create_real_tinfo_var): Likewise.
14833
14834 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
14835
14836         * decl.c (push_class_binding): Use context_for_name_lookup instead
14837         of CP_DECL_CONTEXT.
14838         * search.c (context_for_name_lookup): Remove static.  Check for NULL
14839         context in the loop.
14840         * cp-tree.h (context_for_name_lookup): Add prototype.
14841
14842 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
14843
14844         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
14845         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
14846         Remove.
14847         * call.c (convert_class_to_reference, build_user_type_conversion_1,
14848         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
14849
14850 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
14851
14852         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
14853         of macros used when compiling g++spec.c.
14854         * g++spec.c (lang_specific_driver): Link with the shared
14855         libgcc by default.
14856
14857 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
14858
14859         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
14860         make_reference_declarator, make_call_declarator), method.c
14861         (implicitly_declare_fn), parse.y (namespace_using_decl,
14862         notype_unqualified_id, expr_or_declarator, new_type_id,
14863         after_type_declarator, direct_after_type_declarator,
14864         notype_declarator, complex_notype_declarator,
14865         complex_direct_notype_declarator, qualified_id,
14866         notype_qualified_id, overqualified_id, direct_new_declarator,
14867         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
14868         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
14869         instead of build_parse_node.
14870
14871 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14872
14873         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
14874         (minus_one_node): Moved to top level gcc directory.  Renamed
14875         to integer_minus_one_node.
14876
14877         * init.c (init_init_processing): Don't set minus_one_node.
14878         (build_vec_init): Use integer_minus_one_node.
14879
14880         * rtti.c (get_tinfo_decl_dynamic): Likewise.
14881
14882 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
14883
14884         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
14885         identical and they would be replaced with constant, remove
14886         MODIFY_EXPR from the tree.
14887
14888 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14889
14890         * Make-lang.in: Remove all dependencies on defaults.h.
14891         * call.c: Don't include defaults.h.
14892         * decl.c: Likewise.
14893         * decl2.c: Likewise.
14894         * except.c: Likewise.
14895         * pt.c: Likewise.
14896         * rtti.c: Likewise.
14897         * tree.c: Likewise.
14898         * typeck.c: Likewise.
14899
14900 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
14901
14902         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
14903         operators even in "C" linkage.
14904         * method.c (set_mangled_name_for_decl): Likewise.
14905         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
14906         overloaded operators in "C" linkage.
14907
14908 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
14909
14910         * pt.c (tsubst_decl): Remove IN_DECL parameter.
14911         (tsubst_arg_types): Check parameter is not void.
14912         (tsubst): Adjust tsubst_decl call.
14913
14914 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
14915
14916         * call.c (add_builtin_candidate): Quote std properly, from
14917         previous change.
14918
14919 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
14920
14921         * pt.c (check_explicit_specialization): Clone constructors and
14922         destructors.
14923
14924 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
14925
14926         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
14927         indicates anything special about template depth. Make sure we
14928         only count the user visible template classes.
14929
14930 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
14931
14932         * call.c (build_conv): Typo in comment.
14933         (add_builtin_candidate): Add more explanation.
14934         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
14935         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
14936         when we have enumeral types.
14937         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
14938         candidates for relops and eqops.
14939         (joust): Simplify control flow. Allow a non-template user
14940         function to hide a builtin.
14941
14942 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
14943
14944         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
14945         (more_specialized): Add deduction parameter.
14946         * call.c (joust): Adjust more_specialized call.
14947         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
14948         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
14949         (get_bindings_order): Remove.
14950         (get_bindings_real): Add DEDUCE parameter.
14951         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
14952         REFERENCE_TYPE jig for DEDUCE_ORDER.
14953         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
14954         maybe_adjust_types_for_deduction.
14955         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
14956         directly.
14957         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
14958         (check_cv_quals_for_unify): Use new unify qualifier flags.
14959         (unify): Clear new unify qualifier flags.
14960         (get_bindings_real): Add DEDUCE parameter.
14961         (get_bindings): Adjust call to get_bindings_real.
14962         (get_bindings_overload): Likewise.
14963         (most_specialized_instantiation): Adjust call to
14964         more_specialized.
14965
14966 2001-01-19  Jason Merrill  <jason@redhat.com>
14967
14968         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
14969
14970         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
14971         -fnew-abi.
14972
14973 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
14974
14975         * decl2.c (arg_assoc_class): Fix double iteration logic.
14976
14977 2001-01-19  Jason Merrill  <jason@redhat.com>
14978
14979         * init.c (build_delete): Always call convert_force to strip cv-quals.
14980
14981         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
14982         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
14983         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
14984
14985 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
14986
14987         * search.c (get_vbase_1): Count only virtual bases.
14988
14989 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
14990
14991         * class.c (duplicate_tag_error): Robustify flag clearing.
14992
14993 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
14994
14995         * cp-tree.h (lookup_template_class): Add complain parm.
14996         * decl.c (lookup_namespace_name): Adjust call to
14997         lookup_template_class.
14998         (make_typename_type): Likewise.
14999         * semantics.c (finish_template_type): Likewise.
15000         * pt.c (lookup_template_class): Add complain parm. Adjust.
15001         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
15002         (tsubst): Likewise.
15003
15004 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
15005
15006         * pt.c (copy_default_args_to_explicit_spec): Preserve
15007         object's CV quals. Reorganize.
15008
15009 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
15010
15011         * typeck.c (build_modify_expr): Say `initialization' for
15012         INIT_EXPRs.
15013         * init.c (build_default_init): Convert to enumeral type, if
15014         needed.
15015
15016 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
15017
15018         * parse.y (nomods_initdcl0): Properly set things up for
15019         initdcl0_innards.
15020
15021 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
15022
15023         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
15024         (type_unification_real): Set it.
15025         (unify): Use it.
15026
15027 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
15028
15029         * decl.c (finish_destructor_body): Convert to vbase pointer here.
15030
15031 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
15032
15033         * semantics.c (begin_class_definition): Check we're not inside a
15034         template parm list.
15035
15036 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
15037
15038         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
15039         BASELINK_P.
15040
15041 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15042
15043         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
15044         * call.c (build_over_call): Add comment.
15045
15046 2001-01-16 Daniel Berlin <dberlin@redhat.com>
15047
15048         * cvt.c (ocp_convert): Handle vector type conversion
15049         * typeck2.c (digest_init): Handle vector type initializations
15050
15051 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
15052
15053         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
15054           was given.
15055
15056 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
15057
15058         * pt.c (check_nontype_parm): Rename to ...
15059         (invalid_nontype_parm_type_p): ... here.
15060         (process_template_parm): Adjust.
15061         (convert_template_argument): Adjust.
15062
15063 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
15064
15065         * pt.c (check_nontype_parm): New function.
15066         (process_template_parm): Use it.
15067         (convert_template_argument): Use it.
15068         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
15069         member.
15070
15071 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
15072
15073         * tree.c: Add defaults.h
15074         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
15075         * Make-lang.in (cp/tree.o): Add defaults.h.
15076
15077 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
15078
15079         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
15080
15081 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
15082
15083         * g++.1: Change to be ".so man1/gcc.1".
15084
15085 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
15086
15087         * Make-lang.in (c++.info, c++.install-info): Build and install g++
15088         internals info.
15089         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
15090         ($(srcdir)/cp/g++int.info): New target.
15091         * gxxint.texi: Add info directory entry.  Use @@ in email address.
15092         * .cvsignore: Update.
15093
15094 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
15095
15096         * typeck.c (build_c_cast): Do template processing earlier.
15097         Always pedwarn on array casts.
15098
15099 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
15100
15101         * friend.c (make_friend_class): Make sure a templated class is
15102         actually a template.
15103
15104 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
15105
15106         * decl2.c (get_guard): Set linkage from guarded decl.
15107
15108 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
15109
15110         * call.c (convert_default_arg): Check for unprocessed
15111         DEFAULT_ARG.
15112         * cp-tree.h (replace_defarg): Move to spew.c.
15113         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
15114         spew.c, which is where they really are.
15115         (done_pending_defargs): Declare.
15116         (unprocessed_defarg_fn): Declare.
15117         * decl.c (replace_defarg): Move to spew.c
15118         * parse.y (structsp): Call done_pending_defargs.
15119         * spew.c (defarg_fns): Rearrange list structure.
15120         (defarg_fnsdone): New static variable.
15121         (defarg_depfns): New static variable.
15122         (init_spew): Adjust.
15123         (add_defarg_fn): Store the type in TREE_TYPE.
15124         (do_pending_defargs): Detect and deal with ordering constraints
15125         and circularity.
15126         (done_pending_defargs): New function.
15127         (unprocessed_defarg_fn): New function.
15128         (replace_defarg): Moved from decl.c. Robustify. Don't save
15129         if circularity detected.
15130
15131 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
15132
15133         * pt.c (unify): Check array has a domain, before checking
15134         whether it is variable sized.
15135
15136 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
15137
15138         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
15139         parameters with pointers to arrays of unknown bound.
15140
15141 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
15142
15143         * parse.y (template_parm_header, template_spec_header): New
15144         reductions. Split out from ...
15145         (template_header): ... here. Use them.
15146         (template_template_parm): Use template_parm_header.
15147         * semantics.c (finish_template_template_parm): Add assert.
15148
15149 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
15150
15151         * mangle.c (write_builtin_type): Fix thinko.
15152
15153         * pt.c (copy_default_args_to_explicit_spec_1): New function.
15154         (copy_default_args_to_explicit_spec): Likewise.
15155         (check_explicit_specialization): Use it.
15156
15157         * class.c (finish_struct_1):  Remove last argument in call to
15158         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
15159         * decl.c (builtin_function): Likewise.
15160         (build_cp_library_fn): Likewise.
15161         (check_initializer): Likewise.
15162         (make_rtl_for_nonlocal_decl): Likewise.
15163         (cp_finish_decl): Likewise.
15164         (start_function): Likewise.
15165         * decl2.c (finish_anon_union): Likewise.
15166         * friend.c (do_friend): Likewise.
15167         * init.c (build_java_class_ref): Likewise.
15168         * method.c (make_thunk): Likewise.
15169         * pt.c (tsubst_friend_function): Likewise.
15170         * semantics.c (expand_body): Likewise.
15171
15172 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
15173
15174         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
15175         looking at DECL_CLONED_FUNCTION for non-functions.
15176
15177 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
15178
15179         * error.c (dump_template_parameter): Use parm to determine how
15180         to print default value.
15181
15182 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
15183
15184         * class.c (duplicate_tag_error): Clear more flags.
15185
15186 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
15187
15188         * call.c (build_new_method_call): Use binfo_for_vbase.
15189
15190 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
15191
15192         * cp-tree.h (flag_cond_mismatch): Don't declare.
15193         * decl2.c (flag_cond_mismatch): Don't define.
15194         (lang_f_options): Remove cond-mismatch.
15195         (unsupported_options): Add cond-mismatch.
15196
15197 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
15198
15199         * class.c (handle_using_decl): Reject using of constructor name
15200         of sourcing class. Allow injecting of a method with same name as
15201         nested class. Fixup error messages.
15202
15203 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
15204
15205         * decl2.c (lang_decode_option): Handle -Wformat=2.
15206
15207 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
15208
15209         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
15210         initialized_in_class.
15211         (DECL_DEFINED_IN_CLASS_P): Rename to ...
15212         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
15213         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
15214         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
15215         * pt.c (check_default_tmpl_args): Adjust for
15216         DECL_INITIALIZED_IN_CLASS_P.
15217         (instantiate_class_template): Likewise.
15218         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
15219
15220         * class.c (finish_struct): Constify saved_filename.
15221
15222 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
15223
15224         * class.c (duplicate_tag_error): Adjust diagnostic.
15225         (finish_struct): Locally set location to start of struct.
15226         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
15227
15228 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
15229
15230         * decl.c (struct binding_level): Adjust class_shadowed comments
15231         to reflect reality.
15232         (push_class_level_binding): Adjust comments to reflect reality.
15233         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
15234         Don't set TREE_VALUE on the class_shadowed list.
15235
15236 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
15237
15238         * decl2.c (acceptable_java_type): Allow references too.
15239         * init.c (build_java_class_ref): When using the new ABI, search
15240         `class$' and have it mangled with `mangle_decl.'
15241         * mangle.c (write_java_integer_type_codes): New function.
15242         (write_builtin_type): Detect and mangle Java integer and real
15243         types.
15244
15245 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
15246
15247         * decl2.c (grokfield): Don't accept `asm' specifiers for
15248         non-static data members.
15249
15250 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15251
15252         * expr.c (cplus_expand_expr): Don't reset `target'.
15253
15254 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
15255
15256         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
15257
15258 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
15259
15260         * parse.y (template_datadef): Check for error_mark_node.
15261
15262 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
15263
15264         * cp-tree.def (DEFAULT_ARG): Make `x' class.
15265
15266 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
15267
15268         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
15269         (record_builtin_type): Make non-static.
15270         (flag_short_double): Don't declare.
15271         (init_decl_processing): Remove the creation of many tree nodes now
15272         in c_common_nodes_and_builtins.
15273         (build_void_list_node): New function.
15274         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
15275         * cp-tree.h (flag_short_wchar): Don't declare.
15276
15277 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
15278
15279         * call.c (build_conv): Don't use build1 for USER_CONV.
15280         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
15281
15282 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
15283
15284         * lex.c (lang_init): Call c_common_lang_init.
15285
15286 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
15287
15288         * search.c (lookup_fnfields_here): Remove.
15289         (look_for_overrides_r): Use lookup_fnfields_1.
15290         Ignore functions from using declarations.
15291
15292 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
15293
15294         Implement exceptions specifiers for implicit member functions.
15295         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
15296         * method.c (synthesize_exception_spec): New function.
15297         (locate_dtor, locate_ctor, locate_copy): New functions.
15298         (implicitly_declare_fn): Generate the exception spec too.
15299         * search.c (check_final_overrider): Check artificial functions
15300         too.
15301         * typeck2.c (merge_exception_specifiers): New function.
15302
15303 2001-01-03  Jason Merrill  <jason@redhat.com>
15304
15305         * init.c (build_default_init): New fn.
15306         (perform_member_init): Split out from here.
15307         (build_new_1): Use it.  Simplify initialization logic.
15308         (build_vec_init): Take an array, rather than a pointer and maxindex.
15309         Speed up simple initializations.  Don't clean up if we're assigning.
15310         * cp-tree.h: Adjust.
15311         * decl2.c (do_static_initialization): Remove TREE_VEC case.
15312         * parse.y (new_initializer): Return void_zero_node for ().
15313         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
15314         * typeck2.c (digest_init): Only complain about user-written
15315         CONSTRUCTORs.
15316
15317 2000-12-22  Mike Stump  <mrs@wrs.com>
15318
15319         * decl2.c: (max_tinst_depth): Increase to 50.
15320
15321 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
15322
15323         * class.c (invalidate_class_lookup_cache): Zero the
15324         previous_class_values.
15325         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
15326         TREE_INT_CST_HIGH.
15327         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
15328         * decl.c (free_bindings): New variable.
15329         (push_binding): Don't create a new binding if we have one on the
15330         free list.
15331         (pop_binding): Put old bindings on the free list.
15332         (init_decl_processing): Use size_int, not build_int_2.
15333         Register free_bindings as a GC root.
15334         (cp_make_fname_decl): Use size_int, not build_int_2.
15335         (push_inline_template_parms_recursive): Likewise.
15336         (end_template_parm_list): Likewise.
15337         (for_each_template_parm): Do not use walk_tree_without_duplicates.
15338         (tsubst_template_parms): Use size_int, not build_int_2.
15339         (tsubst): Likewise.
15340         * rtti.c (get_vmi_pseudo_type_info): Likewise.
15341
15342 2001-01-02  Richard Henderson  <rth@redhat.com>
15343
15344         * parse.y (asm): Set ASM_INPUT_P.
15345
15346 2001-01-02  Jason Merrill  <jason@redhat.com>
15347
15348         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
15349         for v3 ABI.
15350
15351         * typeck.c (cp_truthvalue_conversion): New fn.
15352         * cvt.c (ocp_convert): Use it.
15353
15354         * cp-tree.h: Lose c-common.c decls.
15355
15356         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
15357         * cvt.c (convert_to_void): Use type_unknown_p.
15358
15359         * typeck.c (strip_all_pointer_quals): Also strip quals from
15360         pointer-to-member types.
15361
15362         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
15363         parse.y as C.
15364
15365         * call.c (build_new_method_call): Do evaluate the object parameter
15366         when accessing a static member.
15367         * typeck.c (build_component_ref): Likewise.
15368
15369 2001-01-02  Andreas Jaeger  <aj@suse.de>
15370
15371         * decl.c (cp_missing_noreturn_ok_p): New.
15372         (init_decl_processing): Set lang_missing_noreturn_ok_p.
15373
15374 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
15375
15376         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
15377
15378 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
15379
15380         * class.c (pushclass): Remove #if 0'd code.
15381         * cp-tree.h (overload_template_name): Remove.
15382         * decl.c (store_bindings): Simplify.
15383         (pop_from_top_level): Likewise.
15384         * pt.c (overload_template_name): Remove.
15385         (instantiate_decl): Don't call push_to_top_level if it's not
15386         needed.
15387
15388 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
15389
15390         * pt.c (register_local_specialization): Don't return a value.
15391         (lookup_template_class): Use move-to-front heuristic when looking
15392         up template instantiations.
15393         (instantiate_decl): Only push_to_top_level when we're actually
15394         going to instantiate the template.
15395
15396 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
15397
15398         * search.c (binfo_for_vtable): Return least derived class, not
15399         most.  Handle secondary vtables.
15400
15401 2000-12-22  Jason Merrill  <jason@redhat.com>
15402
15403         * pt.c (more_specialized): Don't optimize len==0.
15404         (fn_type_unification): If we're adding the return type, increase len.
15405
15406         * typeck.c (build_binary_op): Fix pmf comparison logic.
15407
15408         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
15409         DECL_STATIC_FUNCTION_P.
15410
15411         * semantics.c (genrtl_finish_function): Don't try to jump to
15412         return_label unless it exists.
15413
15414         In partial ordering for a call, ignore parms for which we don't have
15415         a real argument.
15416         * call.c (joust): Pass len to more_specialized.
15417         (add_template_candidate_real): Strip 'this', pass len.
15418         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
15419         (get_bindings_order): New fn.  Pass len down.
15420         (get_bindings_real): Strip 'this', pass len.
15421         (fn_type_unification): Likewise.
15422         (type_unification_real): Succeed after checking 'len' args.
15423         (most_specialized_instantiation): Lose explicit_args parm.
15424         * class.c (resolve_address_of_overloaded_function): Strip 'this',
15425         pass len.
15426
15427 2000-12-21  Jason Merrill  <jason@redhat.com>
15428
15429         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
15430         DECL_TEMPLATE_RESULT.
15431
15432         * search.c (lookup_field_r): Call lookup_fnfields_1, not
15433         lookup_fnfields_here.
15434
15435         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
15436
15437         * call.c (build_object_call): Also allow conversions that return
15438         reference to pointer to function.
15439         (add_conv_candidate): Handle totype being ref to ptr to fn.
15440         (build_field_call): Also allow members of type reference to function.
15441         Lose support for calling pointer to METHOD_TYPE fields.
15442
15443         * error.c (dump_expr): Handle *_CAST_EXPR.
15444
15445         * typeck2.c (build_scoped_ref): Always convert to the naming class.
15446
15447         * tree.c (break_out_cleanups): Lose.
15448         * cp-tree.h: Remove prototype.
15449         * typeck.c (build_component_ref): Don't break_out_cleanups.
15450         (build_compound_expr): Likewise.
15451         * semantics.c (finish_expr_stmt): Likewise.
15452
15453 2000-12-20  Richard Henderson  <rth@redhat.com>
15454
15455         * cp-tree.h: Update declarations.
15456         * decl.c (finish_case_label): Return the new stmt node.
15457         * semantics.c (finish_goto_stmt): Likewise.
15458         (finish_expr_stmt, finish_return_stmt): Likewise.
15459         (finish_break_stmt, finish_continue_stmt): Likewise.
15460         (finish_asm_stmt): Likewise.
15461         * parse.y (already_scoped_stmt): Set STMT_LINENO.
15462         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
15463         (simple_if, simple_stmt): Return the new stmt node.
15464         (save_lineno): New.
15465
15466 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
15467
15468         * cp-tree.h: Don't declare warn_long_long.
15469
15470 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15471
15472         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
15473         IS_AGGR_TYPE.
15474
15475 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15476
15477         * pt.c (unify): Handle when both ARG and PARM are
15478         BOUND_TEMPLATE_TEMPLATE_PARM.
15479
15480 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15481
15482         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
15483         DECL_TEMPLATE_PARM_P.
15484
15485 2000-12-15  Jason Merrill  <jason@redhat.com>
15486
15487         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
15488
15489         * init.c (build_new_1): Don't strip quals from type.
15490
15491         * decl.c (pushdecl): Don't check for linkage on a non-decl.
15492
15493         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
15494
15495         * call.c (build_new_function_call): Lose space before paren in
15496         error message.
15497         (build_new_method_call): Likewise.
15498
15499         * typeck2.c (build_m_component_ref): Propagate quals from datum.
15500
15501 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15502
15503         * pt.c (check_explicit_specialization): Propagate default
15504         function arguments to explicit specializations.
15505
15506 2000-12-13  DJ Delorie  <dj@redhat.com>
15507
15508         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
15509         and <? operators.
15510
15511 2000-12-08  Jason Merrill  <jason@redhat.com>
15512
15513         * error.c (dump_function_name): Don't let the user see __comp_ctor.
15514
15515         Clean up copy-initialization in overloading code.
15516         * call.c (build_user_type_conversion_1): Die if we are asked to
15517         convert to the same or a base type.
15518         (implicit_conversion): Avoid doing so.  Lose reference binding code.
15519         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
15520         direct-initialization.  Also do direct-init part of copy-init.
15521         (build_user_type_conversion): Don't provide context to convert_like.
15522         * cvt.c (ocp_convert): build_user_type_conversion will now provide
15523         the constructor call for copy-init.
15524
15525         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
15526         instantiation of a member template.
15527         (do_decl_instantiation): Not here.
15528
15529 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
15530
15531         * class.c (check_field_decls): Don't special case anonymous
15532         fields in error messages.
15533         (note_name_declared_in_class): Use %D on diagnostic.
15534
15535         * tree.c (pod_type_p): Use strip_array_types.
15536         (cp_valid_lang_attribute): Likewise.
15537         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
15538         multiple evaluations.
15539         (cp_has_mutable_p): Use strip_array_types.
15540
15541 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
15542
15543         * cp-tree.h (sufficient_parms_p): Declare new function.
15544         * call.c (sufficient_parms_p): New function, broken out of ...
15545         (add_function_candidate): ... here. Use it.
15546         (add_conv_candidate): Use it.
15547         * decl.c (grok_ctor_properties): Use it.
15548
15549 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
15550
15551         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
15552
15553 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
15554
15555         * decl2.c (lang_decode_option): Handle -Wformat-security.
15556
15557 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15558
15559         * pt.c (verify_class_unification): New function.
15560         (get_class_bindings): Use it.
15561         (try_class_unification): Tidy.
15562         (unify): Handle when argument of a template-id is not
15563         template parameter dependent.
15564         (template_args_equal): Handle when TREE_CODE's do not match.
15565
15566 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
15567
15568         * lang-specs.h (c++): When invoking the stand-alone preprocessor
15569         for -save-temps, pass all relevant -Defines to it, and then don't
15570         pass them to cc1plus.
15571
15572 2000-12-05  Will Cohen  <wcohen@redhat.com>
15573
15574         * decl.c (finish_case_label): Cleared
15575         more_cleanups_ok in surrounding function scopes.
15576         (define_label): Likewise.
15577
15578 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
15579
15580         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
15581         (get_matching_virtual): Remove.
15582         (look_for_overrides): Declare new function.
15583         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
15584         DECL_VINDEX here.
15585         * class.c (check_for_override): Move base class iteration code
15586         to look_for_overrides.
15587         * search.c (next_baselink): Remove.
15588         (get_virtuals_named_this): Remove.
15589         (get_virtual_destructor): Remove.
15590         (tree_has_any_destructors_p): Remove.
15591         (struct gvnt_info): Remove.
15592         (check_final_overrider): Remove `virtual' from error messages.
15593         (get_matching_virtuals): Remove. Move functionality to ...
15594         (look_for_overrides): ... here, and ...
15595         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
15596         to be overriding.
15597
15598 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
15599
15600         * typeck.c (get_delta_difference): If via a virtual base,
15601         return zero.
15602         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
15603         adjustment.
15604
15605 2000-12-04  Richard Henderson  <rth@redhat.com>
15606
15607         * error.c (dump_tree): Use output_add_string not OB_PUTS.
15608
15609 2000-12-04  Jason Merrill  <jason@redhat.com>
15610
15611         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
15612         (write_builtin_type): Pass intSI_type_node and the like through
15613         type_for_mode.
15614         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
15615         Pass intSI_type_node and the like through type_for_mode.
15616         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
15617         * pt.c (tsubst, unify): Likewise.
15618         * tree.c (walk_tree): Likewise.
15619         * error.c (dump_type): Likewise.
15620         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
15621
15622         * Make-lang.in: Tweak top comment for emacs.
15623         (cp/TAGS): Restore.
15624
15625         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
15626
15627         * class.c (clone_function_decl): Robustify.
15628
15629 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
15630
15631         * decl.c (store_bindings): Only search in the non modified
15632         old_bindings for duplicates.
15633
15634 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
15635
15636         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
15637         TYPE_POLYMORPHIC_P.
15638
15639         * typeck.c (build_static_cast): Remove unused variable.
15640
15641 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15642
15643         * pt.c: Fix typo in comment.
15644
15645 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
15646
15647         * decl2.c (warn_format): Remove definition.
15648         (lang_decode_option): Handle -Wformat-nonliteral,
15649         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
15650
15651 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
15652
15653         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
15654         (init_decl_processing): Don't create string_type_node,
15655         const_string_type_node, wint_type_node, intmax_type_node,
15656         uintmax_type_node, default_function_type, ptrdiff_type_node and
15657         unsigned_ptrdiff_type_node.  Adjust position of call to
15658         c_common_nodes_and_builtins.
15659         (identifier_global_value): New function.
15660
15661 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
15662
15663         * call.c (standard_conversion): Reject pointer to member
15664         conversions from ambiguous, inaccessible or virtual bases.
15665         * typeck.c (build_static_cast): Don't check pointers to members
15666         specially.
15667
15668 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
15669
15670         * method.c (do_build_copy_constructor): Preserve cv
15671         qualifications when accessing source object members.
15672         (do_build_assign_ref): Likewise. Remove separate diagnostics for
15673         unnamed fields.
15674
15675 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
15676
15677         * method.c (do_build_assign_ref): Construct appropriately
15678         CV-qualified base reference. Don't allow const casts in base
15679         conversion.
15680
15681 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
15682
15683         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
15684         incomplete return type.
15685
15686 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
15687
15688         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
15689         * semantics.c (finish_base_specifier): Accept a _TYPE not a
15690         _DECL.
15691
15692 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
15693
15694         * spew.c (yyerror): Cope if yylval.ttype is NULL.
15695
15696 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
15697
15698         * decl.c (grokdeclarator): Diagnose undefined template contexts.
15699
15700 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
15701
15702         * decl.c (grokdeclarator): Do type access control on friend
15703         class.
15704
15705 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
15706
15707         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
15708         bison parser ickiness.
15709         * pt.c (tsubst_friend_function): Enter namespace scope when
15710         tsubsting the function name.
15711         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
15712
15713 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
15714
15715         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
15716         * cvt.c (cp_convert_to_pointer): Add force parameter.
15717         Allow conversions via virtual base if forced.
15718         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
15719         (ocp_convert): Likewise.
15720         * search.c (binfo_from_vbase): Return the virtual base's binfo.
15721         * typeck.c (get_delta_difference): Adjust handling of virtual
15722         bases.
15723
15724 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
15725
15726         * tree.c (struct list_hash): Remove.
15727         (list_hash_table): Make it be an htab.
15728         (struct list_proxy): New type.
15729         (list_hash_eq): New function.
15730         (list_hash_pieces): Renamed from ...
15731         (list_hash): ... this.
15732         (list_hash_lookup): Remove.
15733         (list_hash_add): Remove.
15734         (hash_tree_cons): Use the generic hashtable.
15735         (mark_list_hash): Remove.
15736         (init_tree): Create the hashtable.
15737
15738 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
15739
15740         * method.c (build_mangled_C9x_name): Rename to
15741         build_mangled_C99_name.  Change C9X references in comments to
15742         refer to C99.
15743
15744 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
15745
15746         * parse.y (unary_expr): Move VA_ARG from here ...
15747         (primary): ... to here.
15748
15749 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
15750
15751         * semantics.c (finish_id_expr): If type is error_mark, return
15752         error_mark.
15753
15754 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
15755
15756         * pt.c (lookup_template_class): Simplify loop exit constructs.
15757         Cope when there is no partial instantiation of a template
15758         template member.
15759
15760 2000-11-23  J"orn Rennecke <amylaar@redhat.com>
15761
15762         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
15763
15764 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
15765
15766         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
15767         prefix.
15768
15769         * pt.c (do_decl_instantiate): Explicitly clone constructors and
15770         destructors that haven't already been cloned.
15771
15772 2000-11-20  Richard Henderson  <rth@redhat.com>
15773
15774         * parse.y (yyparse_1): Rename the parser entry point.
15775
15776 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
15777
15778         * mangle.c (write_name): Use <unscoped-name> for names directly in
15779         function scope.
15780         (write_unscoped_name): Accept names directly in function scope.
15781
15782 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
15783
15784         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
15785         * parse.y (extdef): Add EXPORT reduction.
15786         * spew.c (yylex): Don't skip export here.
15787
15788 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
15789
15790         * decl.c (init_decl_processing): Correct name of pure virtual
15791         function under the new ABI.
15792         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
15793         (throw_bad_typeid): Likewise for bad typeid function.
15794
15795 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
15796
15797         * decl.c (grokparms): Don't even function types of `void' type,
15798         either.
15799         * mangle.c (write_type): Don't crash when confronted with the
15800         error_mark_node.
15801
15802         * decl.c (grokparms): Don't create parameters of `void' type.
15803
15804 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
15805
15806         * lex.c (mark_impl_file_chain): Delete.
15807         (init_parse): Remove call to ggc_add_string_root.  No need to
15808         ggc_strdup a string constant.  Do not add impl_file_chain to GC
15809         roots.
15810         (handle_pragma_implementation): No need to ggc_strdup main_filename.
15811
15812 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
15813
15814         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
15815
15816 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
15817
15818         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
15819         * decl.c (grokdeclarator): Don't reject void parms here.
15820         (require_complete_types_for_parms): Simplify, use
15821         complete_type_or_else.
15822         (grokparms): Remove bitrot. Remove funcdef parm.
15823         Deal with ellipsis parm lists here.
15824         * semantics.c (finish_parmlist): Don't append void_list_node
15825         here. Set PARMLIST_ELLIPSIS_P.
15826
15827 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
15828
15829         * typeck2.c (incomplete_type_error): Reorganize to avoid
15830         excessive diagnostics.
15831
15832 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
15833
15834         * lex.c (struct impl_files, internal_filename): Constify a char *.
15835
15836 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
15837
15838         * mangle.c (write_special_name_constructor): Don't generate
15839         assembler junk when confronted with an old-style constructor.
15840         (write_special_name_destructor): Likewise.
15841         (mangle_decl_string): Do it here instead.
15842
15843 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
15844
15845         * call.c (op_error): Make error messages clearer.
15846
15847 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
15848
15849         * decl.c (wrapup_globals_for_namespace): Don't mark things
15850         TREE_ASM_WRITTEN when they're not.
15851
15852 2000-11-15  Jason Merrill  <jason@redhat.com>
15853
15854         * typeck2.c (friendly_abort): Uncount the error before handing
15855         off to fancy_abort.
15856
15857 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
15858
15859         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
15860
15861 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
15862
15863         * class.c (build_vtbl_initializer): Fix typo in comment.
15864         * typeck.c (expr_sizeof): Don't crash on errors.
15865
15866 2000-11-14  Jim Wilson  <wilson@redhat.com>
15867
15868         * lang-specs.h: Add %2 after %(cc1_options).
15869
15870 2000-11-14  Richard Henderson  <rth@redhat.com>
15871
15872         * typeck.c (c_sizeof): Be strict about casting result value
15873         back to c_size_type_node.
15874         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
15875
15876 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
15877
15878         * typeck.c (build_unary_op): Use boolean_increment from
15879         c-common.c, moving the relevant code there.
15880
15881 2000-11-11  Jason Merrill  <jason@redhat.com>
15882
15883         * typeck.c (mark_addressable): Don't call put_var_into_stack.
15884
15885         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
15886         in inlines.
15887
15888 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15889
15890         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
15891         * lex.c (copy_lang_decl): Likewise.
15892
15893 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
15894
15895         * dump.c (cp_dump_tree): Don't dump function bodies here.
15896
15897         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
15898         (dump.o): Update dependency list.
15899         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
15900         (flag_dump_translation_unit): Likewise.
15901         (CP_TYPE_QUALS): Adjust definition.
15902         (DECL_C_BIT_FIELD): Remove.
15903         (SET_DECL_C_BIT_FIELD): Likewise.
15904         (CLEAR_DECL_C_BIT_FIELD): Likewise.
15905         (add_maybe_template): Likewise.
15906         (strip_array_types): Likewise.
15907         (dump_node_to_file): Likewise.
15908         (cp_dump_tree): New function.
15909         * decl.c (init_decl_processing): Set lang_dump_tree.
15910         * decl2.c (flag_dump_translation_unit): Remove.
15911         * dump.c: Move most of it to ../c-dump.c.
15912         (cp_dump_tree): New function.
15913         * pt.c (add_maybe_template): Remove.
15914         * typeck.c (strip_array_types): Likewise.
15915
15916 2000-11-07  Eric Christopher  <echristo@redhat.com>
15917
15918         * decl.c (init_decl_processing): Change definition of
15919         __wchar_t to wchar_t.  Remove artificial declaration of
15920         wchar_t.
15921         * lex.c: Change instances of __wchar_t to wchar_t.
15922
15923 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
15924
15925         * lex.c (do_identifier): Don't lookup_name for operators.
15926         * parse.y (operator): Save looking_for_typename.
15927         (unoperator): Restore it.
15928         * spew.c (frob_opname): Use nth_token for lookahead.
15929
15930 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
15931
15932         * decl.c (grok_op_properties): Always use coerce_new_type and
15933         coerce_delete_type.
15934         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
15935         exception specification. Tidy up.
15936         (coerce_delete_type): Preserve exception specification. Tidy up.
15937
15938 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
15939
15940         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
15941         (push_binding_level), error.c (cp_tree_printer), pt.c
15942         (process_partial_specialization, tsubst_template_arg_vector),
15943         search.c (lookup_member): Use memset () instead of bzero ().
15944
15945 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
15946
15947         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
15948
15949 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
15950
15951         * Make-lang.in (c++.distdir): Remove.
15952
15953 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
15954
15955         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
15956         declarations from different namespaces to be combined.
15957
15958 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
15959
15960         * decl.c: Include tm_p.h.
15961
15962 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
15963
15964         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
15965
15966 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
15967
15968         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
15969         (build_overload_value), repo.c (open_repo_file), xref.c
15970         (open_xref_file): Use strchr () and strrchr () instead of index ()
15971         and rindex ().
15972
15973 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
15974
15975         * call.c (build_over_call): Call fold on the CALL_EXPR.
15976
15977 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
15978
15979         * error.c (dump_template_decl): Separate template hearders with
15980         space not comma.
15981
15982 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
15983
15984         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
15985         TS_* flags with corresponding TFF_*.  Adjust prototypes of
15986         functions (which used to take a tree_string_flags) to take an int.
15987
15988         * cp-tree.h (enum tree_string_flags): Remove
15989         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
15990         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
15991         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
15992         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
15993         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
15994         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
15995         (type_as_string, decl_as_string, expr_as_string,
15996         context_as_string): Adjust prototype.
15997
15998         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
15999         instead of TS_PLAIN.
16000
16001         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
16002         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
16003         plain `0'.
16004
16005 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
16006
16007         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
16008         (linkage_kind): New enumeration.
16009         (decl_linkage): New function.
16010         * decl2.c (comdat_linkage): Extend comment.
16011         * error.c (dump_function_decl): Print the arguments used to
16012         instantiate a template, even when not printing the type of the
16013         function.
16014         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
16015         not TREE_PUBLIC, to test for external linkage.
16016         * tree.c (decl_linkage): New function.
16017
16018 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
16019
16020         * pt.c (instantiate_decl): Always instantiate static data members
16021         initialized in-class.
16022
16023 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
16024
16025         * Make-lang.in: Move all build rules here from Makefile.in,
16026         adapt to new context.  Wrap all rules that change the current
16027         directory in parentheses.  Expunge all references to $(P).
16028         When one command depends on another and they're run all at
16029         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
16030         all object-file generation rules.  Delete obsolete variables.
16031
16032         * Makefile.in: Delete.
16033         * config-lang.in: Delete outputs= line.
16034
16035 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
16036
16037         * error.c (dump_function_decl): Print no space between
16038         `ptr-operator' the `type-specifier' of the return type.
16039         (dump_type_prefix): Make sure we put space at the appropriate
16040         place.
16041
16042 2000-10-23  Jason Merrill  <jason@redhat.com>
16043
16044         * call.c (equal_functions): Also call decls_match for extern "C" fns.
16045
16046 2000-10-22  Jason Merrill  <jason@redhat.com>
16047
16048         * call.c (build_conditional_expr): Use ocp_convert to force
16049         rvalue conversion.
16050
16051 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
16052
16053         * call.c (standard_conversion): Use RVALUE_CONVs for all
16054         expressions that satisfy lvalue_p, not just those that satisfy
16055         real_lvalue_p.
16056
16057         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
16058
16059         * typeck.c (c_sizeof): Return an expression of `size_t' type,
16060         not one with TYPE_IS_SIZETYPE set.
16061         (dubious_conversion_warnings): Remove special-case code.
16062
16063 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
16064
16065         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
16066         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
16067         (dump_type_prefix): Print vector-of-int as 'int vector'.
16068         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
16069         * tree.c (walk_tree): Handle VECTOR_TYPE.
16070
16071         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
16072
16073 2000-10-21  Jason Merrill  <jason@redhat.com>
16074
16075         * parse.y (operator): Set got_object from got_scope.
16076         Set looking_for_typename.
16077         * decl.c (lookup_name_real): Clear val after setting from_obj.
16078         Reorganize diagnostic.
16079
16080 2000-10-20  Jason Merrill  <jason@redhat.com>
16081
16082         * tree.c (walk_tree): Don't walk into default args.
16083
16084         * error.c (dump_expr): Use host_integerp.
16085
16086 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
16087
16088         * typeck2.c (abstract_virtuals_error): Use "because" instead of
16089         "since" in error message.
16090
16091 2000-10-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16092
16093         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
16094
16095 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
16096
16097         * decl.c (revert_static_member_fn): Fixed typo.
16098
16099 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
16100
16101         * class.c (subobject_offset_fn): New type.
16102         (dfs_record_base_offsets): Remove.
16103         (record_base_offsets): Likewise.
16104         (dfs_search_base_offsets): Likewise.
16105         (record_subobject_offset): New function.
16106         (check_subobject_offset): Likewise.
16107         (walk_subobject_offsets): Likewise.
16108         (record_subobject_offsets): Likewise.
16109         (layout_conflict_p): Reimplement.
16110         (layout_nonempty_base_or_field): Correct handling of type
16111         conflicts during layout.
16112         (layout_empty_base): Likewise.
16113         (build_base_field): Adjust to handle new representation of empty
16114         base offset table.
16115         (build_base_fields): Likewise.
16116         (layout_virtual_bases): Likewise.
16117         (splay_tree_compare_integer_csts): New function.
16118         (layout_class_type): Use a splay_tree, rather than a varray, to
16119         represent the offsets of empty bases.
16120
16121         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
16122         * decl.c (select_decl): Don't return declarations that are
16123         DECL_ANTICIPATED.
16124
16125 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
16126
16127         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
16128         (fake_std_node): New macro.
16129         * decl.c (in_std): Rename to ...
16130         (in_fake_std): ... this.
16131         (flag_no_builtin): Remove.
16132         (flag_no_nonansi_builtin): Likewise.
16133         (walk_namespaces_r): Use fake_std_node.
16134         (push_namespace): Use std_identifier.
16135         (pop_namespace): Use in_fake_std.
16136         (lookup_name_real): Use fake_std_node.
16137         (init_decl_processing): When -fhonor-std, create the `std'
16138         namespace.  Don't create a dummy fake_std_node in that case.
16139         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
16140         (builtin_function): Put builtins whose names don't begin
16141         with `_' in the std namespace.
16142         * decl2.c (flag_no_builtin): Remove.
16143         (flag_no_nonansi_builtin): Likewise.
16144         (set_decl_namespace): Use fake_std_node.
16145         (validate_nonmember_using_decl): Likewise.
16146         (do_using_directive): Likewise.
16147         (handle_class_head): Likewise.
16148         * dump.c (dequeue_and_dump): Likewise.
16149         * except.c (init_exception_processing): Use std_identifier.
16150         * init.c (build_member_call): Use fake_std_node.
16151         * rtti.c (init_rtti_processing): Use std_identifier.
16152
16153 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
16154
16155         * cp-tree.h (back_end_hook): Remove declaration.
16156         * decl2.c (back_end_hook): Remove definition.
16157
16158         * dump.c (dequeue_and_dump): Dump TREE_USED.
16159
16160 2000-10-17  Brad Lucier <lucier@math.purdue.edu>
16161
16162         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
16163
16164 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
16165
16166         * decl.c (WINT_TYPE): Define.
16167         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
16168         c_size_type_node, signed_size_type_node and wint_type_node.
16169
16170 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
16171
16172         * decl2.c (warn_missing_format_attribute): New variable.
16173         (lang_decode_option): Decode -Wmissing-format-attribute.
16174
16175 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
16176
16177         * typeck.c (qualify_type): Remove.
16178         (composite_pointer_type): Fix handling of conversions to `cv void*'.
16179
16180 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16181
16182         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
16183
16184 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16185
16186         * Makefile.in (parse.c, parse.h): Create atomically.
16187
16188 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
16189
16190         * class.c (current_obstack): Remove.
16191         * decl.c (ggc_p): Remove.
16192         (start_decl): Don't use decl_tree_cons.
16193         (grokdeclarator): Don't use build_decl_list.
16194         (start_function): Don't use decl_tree_cons.
16195         (finish_function): Don't mess with obstacks.
16196         * decl2.c (grok_x_components): Don't use build_decl_list.
16197         * lex.c (make_call_declarator): Don't call decl_tree_cons.
16198         (implicitly_declare_fn): Don't call build_decl_list.
16199         * parse.y (frob_specs): Don't call build_decl_list or
16200         decl_tree_cons.
16201         (expr_or_declarator_intern): Don't call decl_tree_cons.
16202         (primary): Don't call build_decl_list.
16203         (fcast_or_absdcl): Likewise.
16204         (typed_declspecs): Don't call decl_tree_cons.
16205         (reserved_declspecs): Don't call build_decl_list.
16206         (declmods): Likewise.
16207         (reserved_typespecquals): Likewise.
16208         (aggr): Likewise.
16209         (new_type_id): Likewise.
16210         (cv_qualifiers): Likewise.
16211         (after_type_declarator_intern): Likewise.
16212         (notype_declarator_intern): Likewise.
16213         (absdcl_intern): Likewise.
16214         (named_parm): Likewise.
16215         * pt.c (most_specialized_class): Likewise.
16216         * repo.c (temporary_obstack): Make it a structure, not a pointer.
16217         (init_repo): Initialize it.
16218         * search.c (current_obstack): Remove.
16219         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
16220
16221 2000-10-09  Richard Henderson  <rth@cygnus.com>
16222
16223         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
16224         (c++ language support bits for libgcc): Remove.
16225         (c++.clean): Remove cplib2.txt cleanup.
16226         * config-lang.in (headers, lib2funcs): Remove.
16227
16228         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
16229         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
16230         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
16231         * inc/new.h, inc/typeinfo: Remove files.
16232
16233 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
16234
16235         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
16236         defined.
16237         (init_decl_processing): Initialize intmax_type_node and
16238         uintmax_type_node.
16239
16240 2000-10-06  Richard Henderson  <rth@cygnus.com>
16241
16242         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
16243         (original_result_rtx): Remove.
16244         * decl.c (save_function_data): Don't clear x_result_rtx.
16245         (mark_lang_function): Don't mark it either.
16246         * expr.c (fixup_result_decl): Remove.
16247         * semantics.c (genrtl_named_return_value): Frob the return decl
16248         before calling emit_local_var.
16249         (genrtl_finish_function): Don't call fixup_result_decl.
16250         Always emit the jump to return_label.
16251
16252 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
16253
16254         * pt.c (lookup_template_class): Set current access for enum.
16255         (tsubst_enum): Set file & line for enum decl.
16256
16257         * spew.c (yylex): Remove unused variable.
16258
16259 2000-10-05  Richard Henderson  <rth@cygnus.com>
16260
16261         * semantics.c (genrtl_finish_function): Don't init or check
16262         can_reach_end; remove noreturn and return value checks.
16263
16264 2000-10-05  Tom Tromey  <tromey@cygnus.com>
16265
16266         * init.c (build_java_class_ref): Use `build_static_name' with a
16267         suffix, not a prefix, to build the class object's name.
16268
16269 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
16270
16271         * cp-tree.h (access_kind): Fix comment typo.
16272         * decl2.c (grokfield): Fix diagnostic typo.
16273         * semantics.c (finish_template_type): Fix comment typo.
16274         (finish_qualified_object_call_expr): Likewise.
16275
16276 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
16277
16278         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
16279         tsubsting fails.
16280
16281 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
16282
16283         * spew.c (frob_id): New static function.
16284         (frob_opname): Use it.
16285         (yylex): Use it.
16286
16287 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
16288
16289         * decl.c (lang_mark_false_label_stack): Remove.
16290         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
16291
16292 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
16293
16294         * gxxint.texi: Use @email for formatting email addresses.
16295
16296 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
16297
16298         * error.c: Remove direct obstack manipulation.  Replace with
16299         output_buffer-based formatting.  Adjust calls to removed macros.
16300         (obstack_chunk_alloc, obstack_chunk_free): Remove.
16301         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
16302         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
16303
16304 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
16305
16306         * ir.texi: Move to ../c-tree.texi.
16307
16308 2000-09-20  Jason Merrill  <jason@redhat.com>
16309
16310         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
16311
16312 2000-09-21  Andreas Jaeger  <aj@suse.de>
16313
16314         * errfn.c: Move declaration of cp_printer and cp_printers to ...
16315         * cp-tree.h: ... here.
16316
16317         * error.c: Remove declaration of cp_printer.
16318
16319 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
16320
16321         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
16322
16323 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
16324
16325         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
16326         users.
16327
16328 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
16329
16330         * decl.c (start_function): Robustify.
16331
16332 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16333
16334         * cp-tree.h (check_function_format): Accept a `status' parameter.
16335
16336         * call.c, typeck.c: Updates calls to `check_function_format'.
16337
16338 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
16339
16340         * decl2.c (handle_class_head): Always push some scope even
16341         in the error case.
16342
16343 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
16344
16345         * cp-tree.h (struct cp_language_function): Remove
16346         x_scope_stmt_stack and name_declared.
16347         (current_scope_stmt_stack): Remove.
16348         (function_name_declared_p): New macro.
16349         (struct lang_decl_flags): Use c_lang_decl as a base class.
16350         (context): Remove.
16351         (struct lang_decl): Replace saved_tree with context.
16352         (DECL_FRIEND_CONTEXT): Adjust accordingly.
16353         (SET_DECL_FRIEND_CONTEXT): Likewise.
16354         (DECL_VIRTUAL_CONTEXT): Likewise.
16355         (DECL_SAVED_TREE): Remove.
16356         (C_DECLARED_LABEL_FLAG): Likewise.
16357         (cplus_expand_expr_stmt): Don't declare.
16358         (add_decl_stmt): Likewise.
16359         (add_scope_stmt): Likewise.
16360         * decl.c (mark_stmt_tree): Remove.
16361         (case_compare): Likewise.
16362         (finish_case_label): Use c_add_case_label.
16363         (init_decl_processing): Set more language-specific hooks.
16364         (build_enumerator): Fix typo in comment.
16365         (cplus_expand_expr_stmt): Remove.
16366         (mark_lang_function): Use mark_c_language_function.
16367         (lang_mark_tree): Use c_mark_lang_decl.
16368         * decl2.c: Change order of inclusion.
16369         * except.c: Likewise.
16370         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
16371         back on c_expand_expr.
16372         * friend.c: Include expr.h.
16373         * init.c: Change order of inclusion.
16374         * Makefile.in: Update dependencies.
16375         * lex.h (free_lang_decl_chain): Remove.
16376         * optimize.c (maybe_clone_body): Use function_name_declared_p.
16377         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
16378         it doesn't exist.
16379         (instantiate_decl): Use function_name_declared_p.
16380         * semantics.c (lang_expand_expr_stmt): Remove.
16381         (set_current_function_name_declared): Likewise.
16382         (current_function_name_declared): Likewise.
16383         (begin_compound_stmt): Use function_name_declared_p.
16384         (add_decl_stmt): Remove.
16385         (setup_vtbl_ptr): Use function_name_declared_p.
16386         (add_scope_stmt): Remove.
16387         (current_scope_stmt_stack): New function.
16388         (cp_expand_stmt): Don't handle SCOPE_STMTs.
16389         (expand_body): Use function_name_declared_p.
16390         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
16391         * typeck.c: Change order of includes.
16392         (convert_sequence): Remove.
16393
16394 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
16395
16396         * lex.c (reswords): Add _Complex.
16397
16398 2000-09-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16399
16400         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
16401
16402 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
16403
16404         * init.c (begin_init_stmts): Don't use // comments.
16405
16406 2000-09-12  Jason Merrill  <jason@redhat.com>
16407
16408         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
16409         all non-extern arrays.
16410
16411         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
16412         typenames, too.  Downgrade complaint to pedwarn.
16413         (xref_tag): Warn about surprising behavior of 'friend struct T'.
16414         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
16415         'class This::Inherited'.
16416
16417 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
16418
16419         * decl.c (finish_case_label): Given the LABEL_DECL a
16420         DECL_CONTEXT.
16421
16422 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
16423
16424         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
16425         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
16426         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
16427         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
16428         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
16429         New macros.
16430         (sorry_for_unsupported_tree, print_scope_operator,
16431         print_left_paren, print_right_paren, print_left_bracket,
16432         print_right_bracket, print_whitespace): Likewise.
16433         (aggr_variety): Rename to class_key_or_enum.
16434         (print_type): Rename to print_type_id.
16435         (print_type_specifier_seq, print_simple_type_specifier,
16436         print_elaborated_type_specifier,
16437         print_rest_of_abstract_declarator,
16438         print_parameter_declaration_clause, print_exception_specification,
16439         print_nested_name_specifier, print_template_id,
16440         typedef_original_name,  print_template_argument_list_start,
16441         print_template_argument_list_end): New functions.
16442
16443 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
16444
16445         * ir.texi: Add more documentation.
16446
16447 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
16448
16449         * cp-tree.h (struct saved_scope): Remove x_function_parms.
16450         (current_function_parms): Don't define.
16451         (struct cp_language_function): Remove parms_stored.
16452         (current_function_just_assigned_this): Don't define.
16453         (current_function_parms_stored): Likewise.
16454         (static_ctors): Declare.
16455         (static_dtors): Likewise.
16456         (SF_EXPAND): Don't define.
16457         (expand_start_early_try_stmts): Remove declaration.
16458         (store_parm_decls): Likewise.
16459         * decl.c (static_ctors): Don't declare.
16460         (static_dtors): Likewise.
16461         (struct binding_level): Remove this_block.
16462         (poplevel): Remove dead code.
16463         (set_block): Likewise.
16464         (mark_binding_level): Don't mark this_block.
16465         (mark_saved_scope): Don't mark x_function_parms.
16466         (init_decl_processing): Don't add current_function_parms as a GC
16467         root.
16468         (check_function_type): Change prototype.
16469         (start_function): Remove RTL-generation code.
16470         (expand_start_early_try_stmts): Remove.
16471         (store_parm_decls): Give it internal linkage.  Remove
16472         RTL-generation code.
16473         (finish_function): Remove RTL-generation code.
16474         * decl2.c (static_ctors): Fix formatting.
16475         (static_dtors): Likewise.
16476         * method.c (use_thunk): Don't call store_parm_decls.
16477         (synthesize_method): Likewise.
16478         * optimize.c (maybe_clone_body): Likewise.
16479         * parse.y (fn.def2): Likewise.
16480         (.set_base_init): Likewise.
16481         (nodecls): Likewise.
16482         * pt.c (instantiate_decl): Likewise.
16483         * rtti.c (synthesize_tinfo_fn): Likewise.
16484         * semantics.c (genrtl_try_block): Simplify.
16485         (expand_body): Use genrtl_start_function and
16486         genrtl_finish_function.
16487         (genrtl_start_function): New function.
16488         (genrtl_finish_function): Likewise.
16489
16490 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
16491
16492         * error.c (cp_tree_printer, case 'P'): Append break.
16493
16494 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
16495
16496         * cp-tree.h (frob_opname): Declare.
16497         * parse.y (saved_scopes): New static variable.
16498         (cp_parse_init): Adjust.
16499         (do_id): If lastiddecl is NULL, do do_identifier.
16500         (operator): Save scope information.
16501         (unoperator): New reduction. Restore scope information.
16502         (operator_name): Append unoperator. Call frob_opname.
16503         * spew.c (frob_opname): Define.
16504
16505 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
16506
16507         * decl.c, rtti.c: Include defaults.h if not already included.
16508         Don't define the *_TYPE_SIZE macros.
16509
16510 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
16511
16512         * cp-tree.h (push_switch): Change prototype.
16513         (check_cp_case_value): Remove declaration.
16514         (decl_constant_value): Likewise.
16515         * decl.c (struct cp_switch): Add switch_stmt and cases.
16516         (case_compare): New function.
16517         (push_switch): Set switch_stmt.  Initialize cases.
16518         (pop_switch): Clean up cases.
16519         (define_case_label): Rename to ...
16520         (finish_case_label): ... this.  Do semantic analysis for case
16521         labels here.
16522         (start_function): Correct comment.
16523         * decl2.c (check_cp_case_value): Remove.
16524         * expr.c (do_case): Remove.
16525         * pt.c (tsubst_expr): Adjust call to finish_case_label.
16526         * semantics.c (genrtl_do_poplevel): Remove declaration.
16527         (RECHAIN_STMTS): Remove.
16528         (finish_break_stmt): Use build_break_stmt.
16529         (finish_continue_stmt): Use build_continue_stmt.
16530         (finish_switch_cond): Adjust condition here, rater than in
16531         c_expand_start_case.
16532         (finish_case_label): Remove.
16533         * typeck.c (c_expand_return): Remove.
16534         (c_expand_start_case): Likewise.
16535
16536 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
16537
16538         * ir.texi: Document type nodes.
16539
16540 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
16541
16542         * cp-tree.h (init_cp_semantics): Declare.
16543         (genrtl_try_block): Don't declare.
16544         (genrtl_handler): Likewise.
16545         (genrtl_catch_block): Likewise.
16546         (genrtl_ctor_stmt): Likewise.
16547         (genrtl_subobject): Likewise.
16548         (genrtl_do_poplevel): Likewise.
16549         (genrtl_named_return_value): Likewise.
16550         * lex.c (init_parse): Call init_cp_semantics.
16551         * semantics.c (genrtl_try_block): Give it internal linkage.
16552         (genrtl_handler): Likewise.
16553         (genrtl_catch_block): Likewise.
16554         (genrtl_ctor_stmt): Likewise.
16555         (genrtl_subobject): Likewise.
16556         (genrtl_do_poplevel): Likewise.
16557         (genrtl_named_return_value): Likewise.
16558         (lang_expand_stmt): Rename to ...
16559         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
16560         (init_cp_semantics): Define.
16561
16562         * decl.c (initialize_local_var): Remove RTL-generating code.
16563         * semantics.c (genrtl_try_block): Fix formatting.
16564
16565         Move statement-tree facilities from C++ to C front-end.
16566         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
16567         (void_zero_node): Remove.
16568         (stmt_tree): Likewise.
16569         (scope_chain): Adjust.
16570         (language_function): Rename to cp_language_function.
16571         (cp_function_chain): Adjust.
16572         (current_stmt_tree): Remove.
16573         (last_tree): Likewise.
16574         (last_expr_type): Likewise.
16575         (struct lang_decl): Adjust.
16576         (STMT_IS_FULL_EXPR_P): Remove.
16577         (add_tree): Remove.
16578         (begin_stmt_tree): Likewise.
16579         (finish_stmt_tree): Likewise.
16580         (walk_tree_fn): Likewise.
16581         (walk_stmt_tree): Likewise.
16582         * class.c (finish_struct): Replace use of add_tree with add_stmt.
16583         * decl.c (mark_stmt_tree): Adjust type.
16584         (init_decl_processing): Don't build void_zero_node.
16585         (initialize_local_var): Adjust usage of current_stmt_tree.
16586         (finish_enum): Use add_stmt, not add_tree.
16587         (save_function_data): Adjust use of language_function.
16588         (finish_constructor_body): Use add_stmt, not add_tree.
16589         (finish_destructor_body): Likewise.
16590         (push_cp_function_context): Adjust use of language_function.
16591         (pop_cp_function_context): Likewise.
16592         (mark_lang_function): Likewise.
16593         (mark_cp_function_context): Likewise.
16594         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
16595         (build_vec_init): Likewise.
16596         * semantics.c (SET_LAST_STMT): Remove.
16597         (RECHAIN_STMTS): Don't use it.
16598         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
16599         (current_stmt_tree): Define.
16600         (add_tree): Remove.
16601         (finish_goto_stmt): Use add_stmt, not add_tree.
16602         (finish_expr_stmt): Likewise.
16603         (begin_if_stmt): Likewise.
16604         (finish_then_clause): Likewise.
16605         (begin_while_stmt): Likewise.
16606         (begin_do_stmt): Likewise.
16607         (finish_return_stmt): Likewise.
16608         (begin_for_stmt): Likewise.
16609         (finish_break_stmt): Likewise.
16610         (finish_continue_stmt): Likewise.
16611         (begin_switch_stmt): Likewise.
16612         (finish_case_label): Likewise.
16613         (begin_try_block): Likewise.
16614         (begin_function_try_block): Likewise.
16615         (begin_handler): Likewise.
16616         (begin_catch_block): Likewise.
16617         (begin_compound_stmt): Likewise.
16618         (begin_asm_stmt): Likewise.
16619         (finish_asm_stmt): Likewise.
16620         (finish_label_stmt): Likewise.
16621         (add_decl_stmt): Likewise.
16622         (finish_subobject): Likewise.
16623         (finish_decl_cleanup): Likewise.
16624         (finish_named_return_value): Likewise.
16625         (setup_vtbl_ptr): Likewise.
16626         (add_scope_stmt): Likewise.
16627         (finish_stmt_expr): Likewise.
16628         (prune_unused_decls): Remove.
16629         (begin_stmt_tree): Likewise.
16630         (finish_stmt_tree): Likewise.
16631         (prep_stmt): Adjust use of current_stmt_tree.
16632         (lang_expand_stmt): Likewise.
16633         * tree.c (statement_code_p): Remove.
16634         (cp_statement_code_p): New function.
16635         (walk_stmt_tree): Remove.
16636         (init_tree): Set lang_statement_code_p.
16637
16638 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
16639
16640         Integrated preprocessor.
16641
16642         * Make-lang.in, Makefile.in: Remove all references to input.c,
16643         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
16644         * gxx.gperf, hash.h, input.c: Delete.
16645         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
16646         initialized properly.
16647
16648         * class.c (fixup_pending_inline): Take a tree, not a
16649         struct pending_inline *.  All callers changed.
16650         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
16651         RID_PROTECTED entries in ridpointers[] array here.
16652         * decl.c (duplicate_decls): Do not refer to struct
16653         pending_inline.
16654         (record_builtin_type, init_decl_processing): Use RID_MAX not
16655         CP_RID_MAX.
16656         (grokdeclarator): Use C_IS_RESERVED_WORD.
16657         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
16658         cpplib.
16659         (grok_x_components): Do not inspect pending_inlines chain.
16660
16661         * cp-tree.h (struct lang_identifier): Add rid_code entry.
16662         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
16663         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
16664         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
16665         TIME_IDENTIFIER_FILEINFO): Kill.
16666         Update prototypes.
16667         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
16668         single 32-bit word.
16669         * parse.y: Call do_pending_inlines unconditionally.
16670         reinit_parse_for_method is now snarf_method.  fn.defpen is no
16671         longer necessary.  Remove unnecessary <itype> annotation on
16672         SCOPE.  Do not refer to end_of_file or struct pending_inline.
16673         * semantics.c (begin_inline_definitions): Call
16674         do_pending_inlines unconditionally.
16675
16676         * lex.c: Remove all code now shared with C front end.
16677         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
16678         into the get_identifier table.  Rewrite pragma handling to
16679         work with the registry.  Move code to save tokens for later
16680         processing to spew.c.
16681
16682         * spew.c: Rewrite everything in terms of token streams instead
16683         of text.  Move routines here from lex.c / input.c as
16684         appropriate.  GC-mark trees hanging off the pending inlines
16685         chain.
16686
16687 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
16688
16689         * NEWS: Mention that the named return value extension has been
16690         deprecated.
16691         * cp-tree.h (original_result_rtx): Define.
16692         (TREE_REFERENCE_EXPR): Remove.
16693         (DECL_VPARENT): Likewise.
16694         (pushdecl_nonclass_level): Likewise.
16695         (store_return_init): Likewise.
16696         (reinit_lang_specific): Likewise.
16697         (genrtl_named_return_value): Change prototype.
16698         * decl.c (original_result_rtx): Remove.
16699         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
16700         Do not generate RTL for local variables here.
16701         (store_return_init): Remove.
16702         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
16703         store_return_init.
16704         (finish_named_return_value): Adjust accordingly.  Warn that this
16705         extension is deprecated.
16706         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
16707
16708 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
16709
16710         * pt.c (type_unification_real): Replace switch with if.
16711         (unify): Tsubst non-type parms before comparing.
16712
16713 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
16714
16715         * error.c (dump_typename): New function, broken out of ...
16716         (dump_type): ... here. Use it.
16717         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
16718
16719 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
16720
16721         * init.c (build_offset_ref): Deal with namespace scoped
16722         TEMPLATE_ID_EXPRs.
16723
16724 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
16725
16726         * class.c (resolve_address_of_overloaded_function): Add
16727         explanation message.
16728         * decl.c (define_case_label): Reformat explanation.
16729         * decl2.c (finish_static_data_member_decl): Likewise.
16730         (grokfield): Likewise.
16731         * friend.c (do_friend): Likewise.
16732
16733 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
16734
16735         * tree.c (walk_tree): Expose tail recursion.
16736         (walk_stmt_tree): New function.
16737         * cp-tree.h: Prototype walk_stmt_tree.
16738         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
16739         the BLOCKs directly.  If a BLOCK has no variables after
16740         pruning, discard it.
16741         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
16742         restore the line number.
16743
16744 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
16745
16746         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
16747         (pt.o): Remove dependency on HTAB_H.
16748         * cp-tree.h: Include hashtab.h.
16749         (walk_tree): Change prototype.
16750         (walk_tree_without_duplicates): New function.
16751         * decl.c (check_default_argument): Use it.
16752         * optimize.c (remap_decl): Adjust calls to walk_tree.
16753         (copy_body): Likewise.
16754         (expand_calls_inline): Likewise.
16755         (calls_setjmp_p): Use walk_tree_without_duplicates.
16756         * pt.c: Don't include hashtab.h.
16757         (for_each_template_parm): Use walk_tree_without_duplicates.
16758         * semantics.c (finish-stmt_tree): Likewise.
16759         (expand_body): Likewise.
16760         * tree.c (walk_tree): Add additional parameter.
16761         (walk_tree_without_duplicates): New function.
16762         (count_trees): Use it.
16763         (verify_stmt_tree): Adjust call to walk_tree.
16764         (find_tree): Use walk_tree_without_duplicates.
16765         (no_linkage_check): Likewise.
16766         (break_out_target_exprs): Adjust call to walk_tree.
16767         (cp_unsave): Likewise.
16768
16769 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
16770
16771         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
16772         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
16773         * cp-tree.h (TYPE_BINFO): Adjust comment.
16774         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
16775         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
16776         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
16777         (TYPE_TEMPLATE_INFO): Likewise.
16778         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
16779         * class.c (push_nested_class): Likewise.
16780         * decl.c (lookup_name_real): Likewise.
16781         (grokdeclarator): Likewise.
16782         (grok_op_properties): Likewise.
16783         (xref_tag): Likewise.
16784         (xref_basetypes): Likewise.
16785         * decl2.c (constructor_name_full): Likewise.
16786         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
16787         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
16788         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
16789         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16790         (dump_type_suffix): Likewise.
16791         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
16792         instead.
16793         (get_aggr_from_typedef): Likewise.
16794         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
16795         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16796         (write_template_parm): Likewise.
16797         (write_template_template_parm): Check tree code instead of
16798         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
16799         * method.c (build_overload_nested_name): Add
16800         BOUND_TEMPLATE_TEMPLATE_PARM.
16801         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
16802         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16803         * pt.c (convert_template_argument): Check tree code instead of
16804         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
16805         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
16806         (for_each_template_parm): Adjust comment.
16807         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
16808         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16809         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
16810         template_args_equal to compare template template parameter cases.
16811         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16812         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
16813         instead.
16814         * tree.c (copy_template_template_parm): Decide whether to create
16815         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
16816         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
16817         (copy_tree_r): Likewise.
16818         * typeck.c (comptypes): Likewise.  Check tree code instead of
16819         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
16820
16821 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
16822
16823         * decl.c (finish_function): Move the code for handling functions
16824         marked with the constructor and destructor attributes inside the
16825         expand_p block.
16826
16827 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
16828
16829         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
16830
16831 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
16832
16833         * pt.c (lookup_template_class): Remove abort.
16834         * tree.c (get_type_decl): Allow error_mark_node.
16835
16836 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
16837
16838         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
16839         TEMPLATE_ID_EXPRs.
16840
16841 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
16842
16843         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
16844         new ABI mangling.
16845
16846 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
16847
16848         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
16849         union tag mismatch error reporting.
16850
16851 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
16852
16853         * call.c (build_scoped_method_call): Check it is not a namespace.
16854
16855 2000-08-30  Jason Merrill  <jason@redhat.com>
16856
16857         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
16858
16859         * tree.c (bot_manip): Check TREE_CONSTANT rather than
16860         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
16861         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
16862
16863         * decl.c (start_function): Always call make_function_rtl.
16864
16865 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
16866
16867         * semantics.c (prune_unused_decls): New function.
16868         (finish_stmt_tree): Call it via walk_tree.
16869
16870 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
16871
16872         * class.c (build_secondary_vtable): Constify a char *.
16873         * decl.c (init_decl_processing): Initialize function_id_node,
16874         pretty_function_id_node, and func_id_node.
16875         * input.c (struct input_source): Constify 'str'.
16876         (feed_input): Constify first argument.
16877         * mangle.c (write_identifier): Constify argument.
16878         * pt.c (mangle_class_name_for_template): Constify argument.
16879
16880 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
16881
16882         * typeck.c (mark_addressable): Remove code that pokes around in
16883         RTL.
16884
16885 2000-08-28  Jason Merrill  <jason@redhat.com>
16886
16887         * lex.c (file_name_nondirectory): Move to toplev.c.
16888
16889         * cp-tree.h (LOCAL_CLASS_P): New macro.
16890         * class.c (finish_struct_1): Use it.
16891
16892 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
16893
16894         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
16895         (write_encoding): Pass another argument to write_name.
16896         (write_name): Add ignore_local_scope parameter.  Fix handling of
16897         local names.
16898         (write_nested_name): Use write_unqualified_name.
16899         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
16900         (write_template_prefix): Use write_unqualified_name.
16901         (write_component): Remove.
16902         (write_local_name): Add parameter.  Use direct local entity to
16903         discriminator calculation.
16904         (write_class_enum_type): Pass another argument to write_name.
16905         (write_template_template_arg): Likewise.
16906         (make_guard_variable): Likewise.
16907
16908 2000-08-27  Jason Merrill  <jason@redhat.com>
16909
16910         * decl.c (pushdecl): Matching decls for local externs are found in
16911         the current level.  Propagate linkage information from previous
16912         declarations.
16913
16914 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
16915
16916         * ir.texi (Expressions): Fix typo.
16917
16918 2000-08-25  Greg McGary  <greg@mcgary.org>
16919
16920         * tree.c (init_tree): Use ARRAY_SIZE.
16921
16922 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
16923
16924         * error.c (cp_tree_printer): Rework.
16925
16926 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
16927
16928         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
16929         dyn-string.o.
16930         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
16931         (cp-demangle.o): Remove target.
16932         (dyn-string.o): Likewise.
16933
16934         * decl.c (grokfndecl): Require that `main' return an `int'.
16935         * mangle.c (write_encoding): Don't mangle return types for
16936         conversion functions.
16937
16938 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
16939
16940         * error.c (tree_formatting_info): New data type.
16941         (tree_being_formatted): New macro.
16942         (tree_formatting_flags): Likewise.
16943         (put_whitespace): Likewise.
16944         (print_tree_identifier): Likewise.
16945         (print_identifier): Likewise.
16946         (cp_tree_printer, print_function_argument_list, print_declaration,
16947         print_expression, print_function_declaration,
16948         print_function_parameter, print_type, print_cv_qualifier): New
16949         functions.
16950         (init_error): Initialize lang_printer.
16951
16952 2000-08-24  Jason Merrill  <jason@redhat.com>
16953
16954         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
16955         adjustment necessary.
16956
16957 2000-08-24  Greg McGary  <greg@mcgary.org>
16958
16959         * cp-tree.h (MAIN_NAME_P): Remove macro.
16960
16961 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
16962
16963         * error.c (print_instantiation_context): Don't forget to flush the
16964         buffer.
16965
16966 2000-08-23  Jason Merrill  <jason@redhat.com>
16967
16968         * typeck.c (build_ptrmemfunc): Save the input pmf.
16969
16970         * method.c (process_modifiers): Use same_type_p.
16971
16972 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
16973
16974         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
16975         * mangle.c (write_function_type): Change prototype.
16976         (write_encoding): Don't mangle return types for
16977         constructors or destructors.
16978         (write_type): Adjust call to write_function_type.
16979         * pt.c (instantiate_template): Instantiate alternate entry points
16980         when instantiating the main function.
16981
16982 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
16983
16984         * error.c (cp_print_error_function): Don't use embedded '\n' in
16985         output_printf.
16986
16987 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
16988
16989         * decl.c (init_decl_processing): Remove bogus initialization.
16990         * error.c (lang_print_error_function): Restore here.
16991         (init_error): Initialize print_error_function.
16992
16993 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
16994
16995         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
16996
16997 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
16998
16999         * Makefile.in (error.o): Depends on diagnostic.h
17000
17001         * cp-tree.h (problematic_instantiation_changed,
17002         record_last_problematic_instantiation, current_instantiation,
17003         print_instantiation_context): Declare.
17004         (maybe_print_template_context): Remove.
17005
17006         * decl.c (init_decl_processing): Set print_error_function to NULL.
17007         (lang_print_error_function): Remove, since we're using a new
17008         machinery.
17009
17010         * error.c: #include diagnostic.h
17011         (function_category): New function.
17012         (cp_diagnostic_starter): Likewise.
17013         (cp_diagnostic_finalizer): Likewise.
17014         (cp_print_error_function): Likewise.
17015         (maybe_print_instantiation_context): Likewise.
17016         (print_instantiation_full_context): Likewise.
17017         (print_instantiation_partial_context): Likewise.
17018         (print_instantiation_context): Define.
17019         (init_error): Initialize diagnostic pager and finalizer.
17020
17021         * pt.c (problematic_instantiation_changed): Define.
17022         (record_last_problematic_instantiation): Likewise.
17023         (current_instantiation): Likewise.
17024         (maybe_print_template_context): Remove.
17025         (print_template_context): Likewise.
17026         (current_tinst_level): Make static to reflect Brendan Kehoe's
17027         change of 1995-04-13.
17028         (push_tinst_level): Call print_instantiation_context.
17029
17030 2000-08-21  Nix  <nix@esperi.demon.co.uk>
17031
17032         * lang-specs.h: Do not process -o or run the assembler if
17033         -fsyntax-only.
17034
17035 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
17036
17037         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
17038         variables.
17039         * decl2.c (lang_decode_option): Disable gettext attributes for
17040         -ansi.
17041
17042 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
17043
17044         * lex.c (lang_init_options): Default diagnostic message maximum
17045         length to 80, when line-wrapping.
17046
17047 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
17048
17049         * class.c (build_vtbl_initializer): Clear the entire
17050         vtbl_init_data.  Start keeping track of the functions for which we
17051         have created vcall offsets here.
17052         (dfs_build_vcall_offset_vtbl_entries): Remove.
17053         (build_vcall_offset_vtbl_entries): Reimplement.
17054         (add_vcall_offset_vtbl_entries_r): New function.
17055         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
17056         computing when vcall offsets are necessary.
17057
17058 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
17059
17060         * decl.c (member_function_or_else): Use cp_error ... %T.
17061         (grokdeclarator): Likewise.
17062         (start_method): Likewise.
17063         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
17064
17065 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
17066
17067         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
17068         TYPE_DECLs.
17069
17070 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
17071
17072         * cp-tree.h (PTRMEM_OK_P): New macro.
17073         (itf_ptrmem_ok): New enumeration value.
17074         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
17075         argument. Diagnose implicit pointer to member.
17076         (instantiate_type): Don't diagnose implicit pointer to member
17077         here. Pass itf_ptrmem_ok if ok. Adjust calls to
17078         resolve_address_of_overloaded_function.
17079         * init.c (build_offset_ref): Set PTRMEM_OK_P.
17080         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
17081         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
17082         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
17083         (build_unary_op): Deal with single non-static member in
17084         microsoft-land.
17085
17086 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
17087
17088         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
17089
17090 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
17091
17092         * cp-tree.h (enum_name_string): Remove prototype.
17093         (report_case_error): Remove prototype.
17094         * cp/typeck2.c (enum_name_string): Remove.
17095         (report_case_error): Remove.
17096         * error.c (dump_expr): Deal with enum values directly.
17097         Correctly negate integer constant.
17098
17099 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
17100
17101         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
17102         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
17103         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
17104         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
17105         (__cxa_vec_new): Use __cxa_vec_new2.
17106         (__cxa_vec_delete): Use __cxa_vec_delete2.
17107
17108 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
17109
17110         * vec.cc (__cxa_vec_new): Set "C" linkage.
17111         (__cxa_vec_ctor): Likewise.
17112         (__cxa_vec_cctor): Likewise.
17113         (__cxa_vec_dtor): Likewise.
17114         (__cxa_vec_delete): Likewise.
17115         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
17116         (__cxa_vec_ctor): Likewise.
17117         (__cxa_vec_cctor): Likewise.
17118         (__cxa_vec_dtor): Likewise.
17119         (__cxa_vec_delete): Likewise.
17120
17121 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
17122
17123         * class.c (instantiate_type): Reinstate local variable
17124         deleted in previous change.
17125
17126         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
17127         itf_no_attributes.
17128
17129 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
17130
17131         * cp-tree.h (instantiate_type_flags): New enumeration.
17132         (instantiate_type): Change parameter.
17133         * class.c (instantiate_type): Adjust prototype. Adjust.
17134         * call.c (standard_conversion): Adjust instantiate_type call.
17135         (reference_binding): Likewise.
17136         (build_op_delete_call): Likewise.
17137         (convert_like_real): Likewise.
17138         * cvt.c (cp_convert_to_pointer): Likewise.
17139         (convert_to_reference): Likewise.
17140         * pt.c (convert_nontype_argument): Likewise.
17141         * typeck.c (build_binary_op): Likewise.
17142         (build_ptrmemfunc): Likewise.
17143         (convert_for_assignment): Likewise.
17144
17145 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
17146
17147         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
17148         (current_aggr): Define.
17149         * decl.c (grokdeclarator): Make sure a friend class is an
17150         elaborated type specifier.
17151         * parse.y (current_aggr): Remove static definition.
17152         (cp_parse_init): Adjust.
17153         (structsp): Clear and restore current_aggr.
17154         (component_decl_list): Clear current_aggr.
17155
17156         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
17157         aggregate tag on the typename's context.
17158
17159         * pt.c (tsubst_friend_class): Return error_mark_node, if
17160         parms becomes NULL.
17161         (instantiate_class_template): Ignore error_mark_node friend types.
17162
17163 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
17164
17165         * cvt.c (warn_ref_binding): New static function, broken out of ...
17166         (convert_to_reference): ... here. Use it.
17167
17168 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
17169
17170         * parse.y (template_arg): Add rule for template qualified with
17171         global scope.
17172
17173 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
17174
17175         * decl2.c (add_function): Reorganize.
17176         (arg_assoc): Do not consider function template decls.
17177
17178 2000-08-11  Jason Merrill  <jason@redhat.com>
17179
17180         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
17181         looking inside.
17182
17183 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
17184
17185         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
17186         (lookup_nested_tag): Likewise.
17187
17188         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
17189         can be produced.
17190
17191 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
17192
17193         * parse.y (named_complex_class_head_sans_basetype): Remove
17194         always true if.
17195
17196 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
17197
17198         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
17199         explicit TEMPLATE_ID_EXPR args.
17200         (build_expr_from_tree, case CALL_EXPR): Likewise.
17201
17202 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
17203
17204         * decl.c (check_tag_decl): Diagnose typename's which don't
17205         declare anything.
17206
17207 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
17208
17209         * init.c (build_aggr_init): Reject bogus array initializers
17210         early.
17211
17212 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
17213
17214         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
17215         runtime.
17216         * cp/tinfo.cc (__dynamic_cast): Likewise.
17217         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
17218
17219 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
17220
17221         * cvt.c (convert_to_pointer_force): Fix error message when
17222         attempting to cast from ambiguous base.
17223
17224 2000-08-08  Jason Merrill  <jason@redhat.com>
17225
17226         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
17227         (tsubst_template_arg_vector): Likewise.
17228
17229         * decl2.c (build_anon_union_vars): Choose the largest field; don't
17230         assume that one will be as large as the union.
17231
17232 2000-08-07  Kazu Hirata  <kazu@hxi.com>
17233
17234         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
17235         * decl.c (pop_labels): Likewise.
17236
17237 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
17238
17239         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
17240         specifications.
17241         (__pointer_to_member_type_info): Likewise.
17242         (__base_class_info): Likewise.
17243         (__class_type_info): Likewise.
17244         (__si_class_type_info): Likewise.
17245         (__vmi_class_type_info): Likewise.
17246         * tinfo.cc (__si_class_type_info::__do_find_public_src):
17247         Changed member names to match specifications.
17248         (__vmi_class_type_info::__do_find_public_src): Likewise.
17249         (__si_class_type_info::__do_dyncast): Likewise.
17250         (__vmi_class_type_info::__do_dyncast): Likewise.
17251         (__si_class_type_info::__do_upcast): Likewise.
17252         (__vmi_class_type_info::__do_upcast): Likewise.
17253         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
17254         (__pbase_type_info::__pointer_catch): Likewise.
17255         (__pointer_type_info::__pointer_catch): Likewise.
17256         (__pointer_to_member_type_info::__pointer_catch): Likewise.
17257
17258 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
17259
17260         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
17261         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
17262         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
17263
17264 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
17265
17266         * cp-tree.h (add_method): Change prototype.
17267         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
17268         Don't double the size of the method vector in the error case.
17269         (handle_using_decl): Adjust call to add_method.
17270         (add_implicitly_declared_members): Likewise.
17271         (clone_function_decl): Likewise.
17272         * decl2.c (check_classfn): Likewise.
17273         * semantics.c (finish_member_declaration): Likewise.
17274
17275 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
17276
17277         * decl.c (flag_isoc94): New variable.
17278
17279 2000-08-02  Jason Merrill  <jason@redhat.com>
17280
17281         * pt.c (do_type_instantiation): Add complain parm; don't complain
17282         if called recursively.
17283         * cp-tree.h, parse.y: Adjust.
17284
17285 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
17286
17287         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
17288         -Wno-strict-prototypes.
17289
17290         * g++spec.c: Adjust type of second argument to
17291         lang_specific_driver, and update code as necessary.
17292
17293         * cp-tree.h: Don't prototype min_precision here.
17294         (my_friendly_assert): Cast expression to void.
17295         * semantics.c (do_poplevel): Initialize scope_stmts.
17296
17297 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
17298
17299         * cp-tree.h (DECL_NEEDED_P): Tweak.
17300
17301 2000-07-28  Jason Merrill  <jason@redhat.com>
17302
17303         * lang-specs.h: Use %i in rule for .ii files.
17304
17305 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
17306
17307         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
17308
17309 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
17310
17311         Allow indirect primary bases.
17312         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
17313         primary_base.
17314         (CLASSTYPE_VFIELD_PARENT): Remove.
17315         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
17316         (BINFO_PRIMARY_BINFO): Remove.
17317         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
17318         (BINFO_VBASE_PRIMARY_P): Likewise.
17319         (BINFO_PRIMARY_BASE_OF): New macro.
17320         (BINFO_INDIRECT_PRIMARY_P): Likewise.
17321         (get_primary_binfo): New function.
17322         * decl.c (lang_mark_tree): Make lang_type::primary_base.
17323         * class.c (vcall_offset_data_s): Rename to ...
17324         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
17325         and add ctor_vtbl_p.
17326         (get_derived_offset): Use get_primary_binfo.
17327         (dfs_mark_primary_bases): Adjust handling of virtual primary
17328         bases.
17329         (mark_primary_bases): Likewise.
17330         (set_primary_base): Take a binfo, not an integer, as a
17331         representation of the primary base.
17332         (indirect_primary_base_p): Remove.
17333         (determine_primary_base): Adjust for indirect primary bases.
17334         (dfs_find_final_overrider): Fix typo in coment.
17335         (update_vtable_entry_for_fn): Use get_primary_binfo.
17336         (layout_nonempty_base_or_field): Tweak.
17337         (build_base_fields): Adjust for new primary base semantics.
17338         (dfs_propagate_binfo_offsets): Remove.
17339         (propagate_binfo_offsets): Rewrite.
17340         (dfs_set_offset_for_shared_vbases): Remove.
17341         (layout_virtual_bases): Don't use it.
17342         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
17343         ABI.
17344         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
17345         CLASSTYPE_VFIELD_PARENT.
17346         (dfs_get_primary_binfo): New function.
17347         (get_primary_binfo): Likewise.
17348         (dump_class_hierarchy_r): Tweak printing of primary bases.
17349         (build_vtbl_initializer): Fix typo in comments.  Use
17350         vtbl_init_data.
17351         (build_vcall_and_vbase_vtbl_entries): Likewise.
17352         (build_vbaes_offset_vtbl_entries): Likewise.
17353         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
17354         BV_VCALL_INDEX to handle indirect primary bases.
17355         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
17356         (build_rtti_vtbl_entries): Likewise.
17357         * search.c (get_shared_vbase_if_not_primary): Tweak.
17358         (find_vbase_instance): Likewise.
17359         (binfo_for_vtable): Simplify.
17360         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
17361         (make_binfo): Make it have 11 entries.
17362
17363 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
17364
17365         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
17366         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
17367         ascertaining primaryness.
17368         (G): Remove template_args.
17369         (decl_is_template_id): New function.
17370         (write_encoding): Use decl_is_template_id.
17371         (write_name): Likewise.  Handle type_decls.  Get main variant of
17372         type decls.
17373         (write_nested_name): Likewise.
17374         (write_prefix): Likewise.
17375         (write_template_prefix): Likewise.
17376         (write_special_name_constructor): Remove defunct production from
17377         comment.
17378         (write_bare_function_type): Remove comment about absent parameter.
17379         (write_template_template_arg): Add missing grammar production to
17380         comment.
17381
17382 2000-07-27  Jason Merrill  <jason@redhat.com>
17383
17384         * decl.c (duplicate_decls): If common_type produces a non-typedef
17385         type for a typedef, just use the old type.
17386
17387 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
17388
17389         * cp-tree.h (function_depth): Declare.
17390         (verify_stmt_tree): Likewise.
17391         (find_tree): Likewise.
17392         * decl.c (function_depth): Give it external linkage.
17393         * optimize.c (optimize_function): Increment and decrement it.
17394         * tree.c (verify_stmt_tree_r): New function.
17395         (verify_stmt_tree): Likewise.
17396         (find_tree_r): Likewise.
17397         (find_tree): Likewise.
17398
17399 2000-07-27  Jason Merrill  <jason@redhat.com>
17400
17401         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
17402         TYPE_PTRMEMFUNC_P.
17403         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
17404
17405 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
17406
17407         * decl.c (start_cleanup_fn): Mark the function as `inline'.
17408         * decl2.c (get_guard): Call cp_finish_decl, not
17409         rest_of_decl_compilation, for local guards.
17410         * lex.c (do_identifier): Remove unused variable.
17411
17412 2000-07-26      Marc Espie <espie@cvs.openbsd.org>
17413
17414         * parse.y:  Add missing ';'.
17415
17416 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
17417
17418         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
17419         of `extern "C++"'.
17420
17421 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
17422
17423         Kill strict_prototype. Backwards compatibility only for
17424         non NO_IMPLICIT_EXTERN_C systems.
17425         * cp-tree.h (flag_strict_prototype): Remove.
17426         (strict_prototype): Remove.
17427         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
17428         * decl.c (maybe_push_to_top_level): Adjust.
17429         (pop_from_top_level): Adjust.
17430         (decls_match): Only allow sloppy parm matching for ancient
17431         system headers.
17432         (init_decl_processing): Adjust.
17433         (grokdeclarator): Adjust.
17434         * decl2.c (flag_strict_prototype): Remove.
17435         (strict_prototype): Remove.
17436         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
17437         (lang_f_options): Remove "strict-prototype".
17438         (unsupported-options): Add "strict-prototype".
17439         * lex.c (do_identifier): Adjust.
17440         (do_scoped_id): Adjust.
17441         * parse.y (empty_parms): Adjust.
17442         * class.c (push_lang_context): Adjust.
17443         (pop_lang_context): Adjust.
17444         * typeck.c (comp_target_parms): Adjust.
17445
17446 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
17447
17448         * decl.c (poplevel): Deal with anonymous variables at for scope.
17449         (maybe_inject_for_scope_var): Likewise.
17450
17451 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
17452
17453         * decl.c: Remove all signal handling code, now done in toplev.c.
17454
17455 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
17456
17457         * decl.c (make_rtl_for_nonlocal_decl): Rework.
17458
17459         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
17460         correctly.
17461
17462 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
17463
17464         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
17465         Define my_friendly_assert and my_friendly_abort as macros
17466         which may call friendly_abort.  Prototype friendly abort, not
17467         my_friendly_abort or my_friendly_assert.
17468         * decl.c (signal_catch): Report the signal caught in the error
17469         message.  Call fatal directly.
17470         * typeck2.c (ack, my_friendly_assert): Delete.
17471         (my_friendly_abort): Rename to friendly_abort.  Expect file,
17472         line, and function parameters.  Report the abort code, then
17473         call fancy_abort.  Do not mask an abort if errors have
17474         already occurred.
17475
17476 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
17477
17478         * typeck.c (comp_target_parms): Remove obsolete parameter.
17479         (comp_target_types): Adjust.
17480
17481 2000-07-17  Jason Merrill  <jason@redhat.com>
17482
17483         * typeck.c (mark_addressable): Never set TREE_USED.
17484         * call.c (build_call): Don't abort on calls to library functions
17485         that have been declared normally.
17486
17487         * typeck.c (build_binary_op): Fix grammar in warning.
17488
17489         * exception.cc (__eh_free): Fix prototype.
17490
17491         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
17492
17493         * decl.c (pushdecl): Handle seeing an OVERLOAD in
17494         IDENTIFIER_NAMESPACE_VALUE.
17495
17496 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
17497
17498         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
17499         * method.c (use_thunk): Correct handling of vcall offsets.
17500
17501 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
17502
17503         * .cvsignore: parse.h and parse.c have no cp- prefix.
17504
17505 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
17506
17507         * .cvsignore: New file.
17508
17509 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
17510
17511         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
17512
17513 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
17514
17515         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
17516         * parse.c: Remove.
17517         * parse.h: Likewise.
17518
17519 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
17520
17521         * class.c (layout_class_type): Add pointers to virtual bases after
17522         base classes under the old ABI.
17523
17524 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
17525
17526         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
17527         (finish_continue_stmt): Likewise.
17528         (begin_for_stmt): Remove call to note_level_for_for.
17529         (finish_goto_stmt): Change call from build_min_nt
17530         to build_stmt.
17531         (finish_expr_stmt): Likewise.
17532         (begin_if_stmt): Likewise.
17533         (begin_while_stmt): Likewise.
17534         (finish_while_stmt): Likewise.
17535         (finish_return_stmt): Likewise.
17536         (begin_for_stmt): Likewise.
17537         (finish_for_stmt): Likewise.
17538         (finish_break_stmt): Likewise.
17539         (begin_switch_stmt): Likewise.
17540         (finish_case_label): Likewise.
17541         (genrtl_try_block): Likewise.
17542         (begin_try_block): Likewise.
17543         (begin_handler): Likewise.
17544         (begin_compound_stmt): Likewise.
17545         (finish_asm_stmt): Likewise.
17546         (finish_label_stmt): Likewise.
17547         (add_decl_stmt): Likewise.
17548         (finish_subobject): Likewise.
17549         (finish_decl_cleanup): Likewise.
17550         (finish_named_return_value): Likewise.
17551         (setup_vtbl_ptr): Likewise.
17552         (add_scope_stmt): Likewise.
17553         * decl.c (finish_constructor_body): Likewise.
17554         (finish_destructor_body): Likewise.
17555         * optimize.c (copy_body_r): Likewise.
17556         (initialize_inlined_parameters): Likewise.
17557         (declare_return_variable): Likewise.
17558         (expand_call_inline): Likewise.
17559
17560 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
17561
17562         * semantics.c (expand_body): Sync interface information
17563         at the end of function body expansion.
17564
17565 2000-07-09  Jason Merrill  <jason@redhat.com>
17566
17567         * init.c (build_new_1): Bail early if the call to new fails.
17568
17569         * decl.c (compute_array_index_type): Check specifically for
17570         an INTEGER_CST, not just TREE_CONSTANT.
17571
17572         * decl.c (duplicate_decls): Don't call duplicate_decls on
17573         the DECL_TEMPLATE_RESULT.
17574         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
17575         codes.
17576
17577         * error.c (dump_template_bindings): Don't crash if we had an
17578         invalid argument list.
17579
17580         * typeck.c (c_expand_start_case): Do narrowing here.
17581         * semantics.c (finish_switch_cond): Not here.
17582
17583 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
17584
17585         * parse.y (asm_clobbers): Do string concatenation.
17586
17587 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
17588
17589         * decl.c (pushtag): Don't put local classes in template functions
17590         on the local_classes list.
17591
17592 2000-07-04  Scott Snyder  <snyder@fnal.gov>
17593
17594         * decl2.c (get_guard): Add missing return for old ABI local
17595         variable case.
17596
17597 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
17598
17599         * cp-tree.h (char_type_p): New function.
17600         * decl.c (init_decl_processing): Don't initialize
17601         signed_wchar_type_node or unsigned_wchar_type_node.
17602         (complete_array_type): Handle brace-enclosed string-constants.
17603         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
17604         * tree.c (char_type_p): New function.
17605         * typeck2.c (digest_init): Use char_type_p.
17606
17607 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
17608
17609         * pt.c (tsubst): Don't layout type, if it's error_mark.
17610
17611 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
17612
17613         * pt.c (instantiate_pending_templates): Reset template level.
17614
17615 2000-07-05  Jason Merrill  <jason@redhat.com>
17616
17617         * call.c (joust): Don't complain about `operator char *()' beating
17618         `operator const char *() const'.
17619
17620 2000-07-04  scott snyder  <snyder@fnal.gov>
17621             Jason Merrill  <jason@redhat.com>
17622
17623         * repo.c (repo_get_id): Handle the case where a class with virtual
17624         bases has a null TYPE_BINFO_VTABLE.
17625
17626 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
17627             Jason Merrill  <jason@redhat.com>
17628
17629         * parse.y (member_init): Just pass in the type.
17630         * init.c (expand_member_init): Handle getting a type.
17631
17632 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
17633             Jason Merrill  <jason@redhat.com>
17634
17635         * decl.c (finish_function): Warn if a function has no return
17636         statement.
17637         Suggested by Andrew Koenig.
17638         * typeck.c (check_return_expr): Do set current_function_returns_value
17639         if we got an error_mark_node.
17640
17641 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
17642
17643         * decl2.c (push_decl_namespace): Push the original namespace.
17644
17645 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
17646
17647         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
17648         * semantics.c (begin_class_definition): Clear it.
17649
17650 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
17651
17652         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
17653         (genrtl_expr_stmt): Likewise.
17654         (genrtl_decl_stmt): Likewise.
17655         (genrtl_if_stmt): Likewise.
17656         (genrtl_while_stmt): Likewise.
17657         (genrtl_do_stmt): Likewise.
17658         (genrtl_return_stmt): Likewise.
17659         (genrtl_for_stmt): Likewise.
17660         (genrtl_break_stmt): Likewise.
17661         (genrtl_continue_stmt): Likewise.
17662         (genrtl_scope_stmt): Likewise.
17663         (genrtl_switch_stmt): Likewise.
17664         (genrtl_case_label): Likewise.
17665         (genrtl_begin_compound_stmt): Likewise.
17666         (genrtl_finish_compound_stmt): Likewise.
17667         (genrtl_compound_stmt): Likewise.
17668         (genrtl_asm_stmt): Likewise.
17669
17670         * init.c (begin_init_stmts): Remove call to
17671         genrtl_begin_compound_stmt.
17672         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
17673
17674         * semantics.c (lang_expand_stmt): Changed call to
17675         genrtl_compound_stmt to ignore return value.
17676
17677 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
17678
17679         * mangle.c (canonicalize_for_substitution): Return the canonical
17680         variant of a type.
17681
17682         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
17683         TYPE_DECL.
17684         * typeck.c (commonparms): Remove obstack manipulations.
17685
17686 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
17687
17688         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
17689
17690         * Makefile.in (OBJS): Added ../c-semantics.o.
17691         (OBJDEPS): Likewise.
17692
17693         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
17694         ../c-common.h.
17695         (struct stmt_tree): Added comment.
17696         (current_function_name_declared): Removed.
17697         (stmts_are_full_exprs_p): Likewise.
17698         (genrtl_do_pushlevel): Likewise.
17699         (genrtl_clear_out_block): Likewise.
17700         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
17701         (DECL_ANON_UNION_ELEMS): Likewise.
17702         (emit_local_var): Likewise.
17703         (make_rtl_for_local_static): Likewise.
17704         (do_case): Likewise.
17705         (expand_stmt): Likewise.
17706         (genrtl_decl_cleanup): Likewise.
17707         (c_expand_asm_operands): Likewise.
17708         (c_expand_return): Likewise.
17709         (c_expand_start_case): Likewise.
17710
17711         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
17712         (emit_local_var): Likewise.
17713         (initialize_local_var): Change reference to
17714         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
17715         Change reference to stmts_are_full_exprs_p to
17716         current_stmt_tree->stmts_are_full_exprs_p.
17717         (push_cp_function_context): Likewise.
17718
17719         * expect.c (expand_throw): Change reference to
17720         stmts_are_full_exprs_p.
17721
17722         * init.c (build_aggr_init): Change reference to
17723         stmts_are_full_exprs_p.
17724         (build_vec_init): Likewise.
17725
17726         * optimize.c (maybe_clone_body): Change reference to
17727         current_function_name_declared to
17728         cp_function_chain->name_declared.
17729
17730         * pt.c (instantiate_decl): Change reference to
17731         current_function_name_declared to
17732         cp_function_chain->name_declared.
17733
17734         * semantics.c (expand_cond): Moved declaration to c-common.h.
17735         (genrtl_do_pushlevel): Moved to c-semantics.c.
17736         (genrtl_clear_out_block): Likewise.
17737         (genrtl_goto_stmt): Likewise.
17738         (genrtl_expr_stmt): Likewise.
17739         (genrtl_decl_stmt): Likewise.
17740         (gerntl_if_stmt): Likewise.
17741         (genrtl_while_stmt): Likewise.
17742         (genrtl_do_stmt): Likewise.
17743         (genrtl_return_stmt): Likewise.
17744         (genrtl_for_stmt): Likewise.
17745         (genrtl_break_stmt): Likewise.
17746         (genrtl_continue_stmt): Likewise.
17747         (genrtl_scope_stmt): Likewise.
17748         (genrtl_switch_stmt): Likewise.
17749         (genrtl_case_label): Likewise.
17750         (genrtl_begin_compound_stmt): Likewise.
17751         (genrtl_finish_compound_stmt): Likewise.
17752         (genrtl_compound_stmt): Likewise.
17753         (genrtl_asm_stmt): Likewise.
17754         (genrtl_decl_cleanup): Likewise.
17755         (expand_cond): Likewise.
17756         (expand_stmt): Renamed to ...
17757         (lang_expand_stmt): ... this.
17758         (lang_expand_expr_stmt): Initialize.
17759         (set_current_function_name_declared): Likewise.
17760         (stmts_are_full_exprs_p): Likewise.
17761         (current_function_name_declared): Likewise.
17762         (anon_aggr_type_p): Likewise.
17763         (do_poplevel): Change reference to
17764         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
17765         Change reference to stmts_are_full_exprs_p to
17766         current_stmt_tree->stmts_are_full_exprs_p.
17767         (add_tree): Likewise.
17768         (finish_expr_stmt): Likewise.
17769         (prep_stmt): Likewise.
17770         (lang_expand_stmt): Likewise.
17771         (begin_compound_stmt): Change reference to
17772         current_function_name_declared to
17773         cp_function_chain->name_declared and call to
17774         current_function_name_declared().
17775         (setup_vtbl_ptr): Likewise.
17776         (genrtl_do_poplevel): Removed.
17777
17778 2000-06-30  Jason Merrill  <jason@redhat.com>
17779
17780         * init.c (init_init_processing): Go back to aligning like
17781         double_type_node for old ABI.
17782         (get_cookie_size): Make cookie larger if we get a type that needs
17783         more alignment.
17784         (build_vec_delete): Call it.
17785
17786         * typeck.c (qualify_type_recursive): New fn.
17787         (composite_pointer_type): Use it.
17788         (build_binary_op): Use composite_pointer_type.
17789
17790 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
17791             Jason Merrill  <jason@redhat.com>
17792
17793         * typeck.c (check_return_expr): Don't complain about returning
17794         NULL from operator new if -fcheck-new.
17795         * cp-tree.h: Declare flag_check_new here.
17796         * init.c: Not here.
17797
17798 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
17799
17800         * mangle.c (find_substitution): Use same_type_p.
17801         (write_encoding): Don't check for substitutions.
17802
17803 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
17804
17805         * parse.y (expr_no_comma_rangle): New non-terminal.
17806         (template_parm): Use it for default parameter case.
17807         (template_arg): Use it.
17808         (expr_no_commas): Remove commented out undefined extensions.
17809         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
17810         * parse.h, parse.c: Rebuilt.
17811
17812 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
17813
17814         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
17815         (finish_asm_stmt): Do it here, instead.
17816
17817         * cp-tree.h (ridpointers): Don't declare.
17818         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
17819         (record_builtin_java_type): Likewise.
17820         (init_decl_processing): Likewise.
17821         * lex.c: Move inclusion of lex.h.
17822         (ridpointers): Don't define.
17823         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
17824         RID_MAX.
17825         * lex.h (enum rid): Rename to ...
17826         (enum cp_rid): ... this.
17827         (ridpointers): Don't declare.
17828         * parse.y: Move inclusion of lex.h.
17829         * parse.c: Regenerated.
17830         * spew.c: Move inclusion of lex.h.
17831
17832         * cp-tree.h (struct language_function): Remove temp_name_counter.
17833         (temp_name_counter): Remove.
17834         (get_temp_name): Change prototype.
17835         (get_guard): New function.
17836         (get_guard_cond): Likewise.
17837         (set_guard): Likewise.
17838         * cvt.c (build_up_reference): Adjust call to get_temp_name.
17839         * decl.c (expand_static_init): Use get_guard and friends to
17840         implement guard variables.
17841         * decl2.c (get_temp_name): Assume that the variables created are
17842         always static.
17843         (get_sentry): Rename to ...
17844         (get_guard): ... this.  Implement new ABI guard variables.
17845         (get_guard_bits): New function.
17846         (get_guard_cond): Likewise.
17847         (set_guard): Likewise.
17848         (start_static_initialization_or_destruction): Use them.
17849         (do_static_initialization): Replace sentry with guard throughout.
17850         (do_static_destruction): Likewise.
17851         * init.c (create_temporary_var): Add comment.
17852
17853 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
17854
17855         * mangle.c (find_substitution): Use same_type_p.
17856         (write_encoding): Don't check for substitutions.
17857
17858 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
17859
17860         * parse.y (expr_no_comma_rangle): New non-terminal.
17861         (template_parm): Use it for default parameter case.
17862         (template_arg): Use it.
17863         (expr_no_commas): Remove commented out undefined extensions.
17864         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
17865         * parse.h, parse.c: Rebuilt.
17866
17867 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
17868
17869         * cp-tree.h (flag_const_strings): Remove.
17870         (warn_parentheses): Likewise.
17871         (warn_format): Likewise.
17872         (common_type): Likewise.
17873         (default_conversion): Likewise.
17874         (build_binary_op): Likewise.
17875         (cp_build_binary_op): New macro.
17876         * call.c (build_new_op): Use cp_build_binary_op instead of
17877         build_binary_op.
17878         * class.c (build_vtable_entry_ref): Likewise.
17879         * decl.c (expand_static_init): Likewise.
17880         (compute_array_index_type): Likewise.
17881         (build_enumerator): Likewise.
17882         * decl2.c (delete_sanity): Likewise.
17883         (start_static_initialization_or_destruction): Likewise.
17884         * error.c (dump_type_suffix): Likewise.
17885         * init.c (resolve_offset_ref): Likewise.
17886         (build_new): Likewise.
17887         (build_new_1): Likewise.
17888         (build_vec_delete_1): Likewise.
17889         (build_vec_init): Likewise.
17890         (build_delete): Likewise.
17891         * rtti.c (synthesize_tinfo_fn): Likewise.
17892         (synthesize_tinfo_var): Likewise.
17893         * search.c (expand_upcast_fixups): Likewise.
17894         (fixup_all_virtual_upcast_offsets): Likewise.
17895         * typeck.c (build_array_ref): Likewise.
17896         (get_member_function_from_ptrfunc): Likewise.
17897         (build_binary_op): Add parameter.
17898         (pointer_int_sum): Use cp_build_binary_op.
17899         (pointer_diff): Likewise.
17900         (build_modify_expr): Likewise.
17901         (get_delta_difference): Likewise.
17902         (build_ptrmemfunc): Likewise.
17903
17904 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
17905
17906         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
17907         * decl.c (create_implicit_typedef): Adjust.
17908         * decl2.c (build_artificial_parm): Adjust.
17909         * method.c (implicitly_declare_fn): Adjust.
17910         * pt.c (push_inline_template_parms_recursive): Adjust.
17911         (process_template_parm): Adjust.
17912         (overloaded_template_name): Adjust.
17913         * semantics.c (finish_template_template_parm): Adjust.
17914
17915 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
17916
17917         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
17918         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
17919         where to emit thunks.
17920         (build_vtt): Adjust call to build_vtt_inits.
17921         (build_vtt_inits): Add parameter to indicate whether or not
17922         sub-VTTs for virtual bases should be included.  Adjust handling of
17923         construction vtables.
17924         (get_matching_base): New function.
17925         (dfs_build_vtt_inits): Rename to ...
17926         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
17927         construction vtables.
17928         (dfs_fixup_binfo_vtbls): Likewise.
17929         (build_ctor_vtbl_groups): Build construction vtables for virtual
17930         bases, too.
17931         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
17932         to build construction vtbls.
17933         (dfs_accumulate_vtbl_inits): Adjust handling of
17934         construction vtables.
17935
17936         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
17937         types correctly.
17938
17939 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
17940
17941         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
17942
17943 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
17944
17945         * search.c (hides): Remove.
17946         (is_subobject_of_p): Add most_derived parameter. Use
17947         CANONICAL_BINFO.
17948         (lookup_field_queue_p): Adjust.
17949         (lookup_field_r): Adjust.
17950
17951 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
17952
17953         * decl2.c (handle_class_head): Bash typedefs to the type's main
17954         decl.
17955
17956 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
17957
17958         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
17959         (begin_global_stmt_expr): ... this.
17960         (genrtl_finish_stmt_expr): Rename to ...
17961         (finish_global_stmt_expr): ... this.
17962         * init.c (begin_init_stmts): Adjust calls.
17963         (finish_init_stmts): Likewise.
17964         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
17965         (begin_global_stmt_expr): ... this.
17966         (genrtl_finish_stmt_expr): Rename to ...
17967         (finish_global_stmt_expr): ... this.
17968
17969 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
17970
17971         * search.c (lookup_member): Fix typo in comment.
17972
17973 2000-06-24  Jason Merrill  <jason@redhat.com>
17974
17975         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
17976         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
17977
17978 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
17979
17980         * parse.y (complex_direct_notype_declarator): Support global_scope.
17981         * Makefile.in: Adjust conflict count.
17982
17983 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
17984
17985         * parse.y (template_arg): Convert TEMPLATE_DECL
17986         that is a template template parameter to
17987         TEMPLATE_TEMPLATE_PARM here.
17988
17989         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
17990         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
17991         (copy_template_template_parm): Adjust prototype.
17992         * decl.c (grokdeclarator): Remove dead code.
17993         * pt.c (process_template_parm): Tidy.
17994         (lookup_template_class): Construct nodes in
17995         copy_template_template_parm.
17996         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
17997         lookup_template_class.  Use TYPE_TI_TEMPLATE.
17998         * tree.c (copy_template_template_parm): Add NEWARGS
17999         parameter.
18000         (mapcar): Adjust call to copy_template_template_parm.
18001         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
18002         * method.c (build_template_template_parm_names): Change error
18003         code to avoid compilation warning.
18004
18005         * gxxint.texi: Document template template parameter
18006         name mangling.
18007
18008 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
18009
18010         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
18011         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
18012         (cp-demangle.o): New rule.
18013         (dyn-string.o): Likewise.
18014         * inc/cxxabi.h (__cxa_demangle): New declaration.
18015
18016 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
18017
18018         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
18019         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
18020         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
18021         a tree, not an int.
18022         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
18023         (make_thunk): Change prototype.
18024         (emit_thunk): Rename to use_thunk.
18025         (mangle_thunk): Change prototype.
18026         * class.c (get_derived_offset): Simplify.
18027         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
18028         BV_GENERATE_THUNK_WITH_VTABLE_P.
18029         (build_primary_vtable): Simplify.
18030         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
18031         (dfs_find_base): Remove.
18032         (update_vtable_entry_for_fn): Correct bug in finding the base
18033         where a virtual function was first declared.  Figure out whether
18034         or not to emit a vcall-thunk with the vtables in which it appears.
18035         Correct logic for deciding whether to use an ordinary thunk, or a
18036         vcall thunk.
18037         (finish_struct_1): Remove unnecssary code.
18038         (build_vtbl_initializer): Use ssize_int for the running counter of
18039         negative indices.
18040         (build_vtbl_initializer): Only use vcall thunks where necessary.
18041         Mark thunks as needing to be emitted with their vtables, or not.
18042         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
18043         indices.  Use size_binop.
18044         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
18045         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
18046         size_binop.
18047         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
18048         (build_vtable_entry): Mark thunks as needing to be emitted with
18049         their vtables, or not.
18050         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
18051         * decl2.c (mark_vtable_entries): Use use_thunk instead of
18052         emit_thunk.
18053         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
18054         information.
18055         * error.c (dump_expr): Use BV_FN.
18056         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
18057         not an int.
18058         * method.c (make_thunk): Likewise.
18059         (emit_thunk): Rename to use_thunk.  Allow callers to decide
18060         whether or not to actually emit the thunk.  Adjust for changes in
18061         representation of vcall offsets.
18062         * search.c (dfs_get_pure_virtuals): Use BV_FN.
18063         * semantics.c (emit_associated_thunks): New function.
18064         (expand_body): Use it.
18065         * ir.texi: Adjust descriptions of thunks.
18066
18067 2000-06-22  Jason Merrill  <jason@redhat.com>
18068
18069         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
18070         (tsubst_friend_function): Copy it here.
18071
18072         * decl.c (grok_op_properties): Fix typo.
18073
18074         * decl2.c (delete_sanity): Clarify warning, avoid failure on
18075         deleting void*.
18076
18077         * pt.c (check_explicit_specialization): Clarify error.
18078
18079         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
18080         an old OVERLOAD when we're declaring a non-function.
18081         (pushdecl, destroy_local_var): Check for error_mark_node.
18082         (warn_extern_redeclared_static): Also bail early if
18083         we're a CONST_DECL.
18084         (push_overloaded_decl): Ignore an old error_mark_node.
18085
18086 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
18087
18088         * call.c (build_x_va_arg): Check if in a template decl.
18089         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
18090
18091 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
18092
18093         * class.c (push_lang_context): TYPE_NAME gets you to the Java
18094         types DECLs.
18095         * decl.c (check_goto): Computed gotos assumed OK.
18096
18097 2000-06-20  Jason Merrill  <jason@redhat.com>
18098
18099         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
18100         for which we don't need to look for instantiations.
18101
18102 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
18103
18104         * parse.y (program): Always call finish_translation_unit.
18105         * parse.c, parse.h: Rebuilt.
18106
18107 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
18108
18109         * method.c: Don't include hard-reg-set.h.
18110
18111 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
18112
18113         * rtti.c (get_base_offset): Cope when vbase field is in a base.
18114
18115 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
18116
18117         * call.c (build_conditional_expr): Use VOID_TYPE_P.
18118         * cvt.c (cp_convert_to_pointer): Likewise.
18119         (convert_to_void): Likewise.
18120         * error.c (dump_expr): Likewise.
18121         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
18122         * init.c (build_delete): Likewise.
18123         * method.c (emit_thunk): Likewise.
18124         * optmize.c (declare_return_variable): Likewise.
18125         * rtti.c (get_tinfo_decl_dynamic): Likewise.
18126         (get_typeid): Likewise.
18127         (build_dynamic_cast_1): Likewise.
18128         * typeck.c (composite_pointer_type): Likewise.
18129         (common_type): Likewise.
18130         (build_indirect_ref): Likewise.
18131         (build_binary_op): Likewise.
18132         (build_x_compound_expr): Likewise.
18133         (check_return_expr): Likewise.
18134         * typeck2.c (add_exception_specifier): Likewise.
18135
18136         * mangle.c (write_method_parms): Use direct comparison for end
18137         of parmlist.
18138
18139 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
18140
18141         * cp-tree.h (genrtl_try_block): Declare function.
18142         (genrtl_handler): Likewise.
18143         (genrtl_catch_block): Likewise.
18144         (genrtl_ctor_stmt): Likewise.
18145         (genrtl_subobject): Likewise.
18146         (genrtl_decl_cleanup): Likewise.
18147         (genrtl_do_poplevel): Likewise.
18148         (genrtl_do_pushlevel): Likewise.
18149         (genrtl_clear_out_block): Likewise.
18150         (genrtl_goto_stmt): Likewise.
18151         (genrtl_expr_stmt): Likewise.
18152         (genrtl_decl_stmt): Likewise.
18153         (genrtl_if_stmt): Likewise.
18154         (genrtl_while_stmt): Likewise.
18155         (genrtl_do_stmt): Likewise.
18156         (genrtl_return_stmt): Likewise.
18157         (genrtl_for_stmt): Likewise.
18158         (genrtl_break_stmt): Likewise.
18159         (genrtl_continue_stmt): Likewise.
18160         (genrtl_scope_stmt): Likewise.
18161         (genrtl_switch_stmt): Likewise.
18162         (genrtl_case_label): Likewise.
18163         (genrtl_begin_compound_stmt): Likewise.
18164         (genrtl_finish_compound_stmt): Likewise.
18165         (genrtl_compound_stmt): Likewise.
18166         (genrtl_asm_stmt): Likewise.
18167         (genrtl_named_return_value): Likewise.
18168         (genrtl_begin_stmt_expr): Likewise.
18169         (genrtl_finish_stmt_expr): Likewise.
18170         (finish_for_stmt): Removed first argument.
18171         (finish_switch_stmt): Likewise.
18172
18173         * semantics.c (genrtl_try_block): Define function.
18174         (genrtl_handler): Likewise.
18175         (genrtl_catch_block): Likewise.
18176         (genrtl_ctor_stmt): Likewise.
18177         (genrtl_subobject): Likewise.
18178         (genrtl_decl_cleanup): Likewise.
18179         (genrtl_do_poplevel): Likewise.
18180         (genrtl_do_pushlevel): Likewise.
18181         (genrtl_clear_out_block): Likewise.
18182         (genrtl_goto_stmt): Likewise.
18183         (genrtl_expr_stmt): Likewise.
18184         (genrtl_decl_stmt): Likewise.
18185         (genrtl_if_stmt): Likewise.
18186         (genrtl_while_stmt): Likewise.
18187         (genrtl_do_stmt): Likewise.
18188         (genrtl_return_stmt): Likewise.
18189         (genrtl_for_stmt): Likewise.
18190         (genrtl_break_stmt): Likewise.
18191         (genrtl_continue_stmt): Likewise.
18192         (genrtl_scope_stmt): Likewise.
18193         (genrtl_switch_stmt): Likewise.
18194         (genrtl_case_label): Likewise.
18195         (genrtl_begin_compound_stmt): Likewise.
18196         (genrtl_finish_compound_stmt): Likewise.
18197         (genrtl_compound_stmt): Likewise.
18198         (genrtl_asm_stmt): Likewise.
18199         (genrtl_named_return_value): Likewise.
18200         (genrtl_begin_stmt_expr): Likewise.
18201         (genrtl_finish_stmt_expr): Likewise.
18202         (finish_for_stmt): Removed first argument and generate rtl
18203         specific code.
18204         (finish_switch_stmt): Likewise.
18205         (do_poplevel): Removed generate rtl specific code.
18206         (do_pushlevel): Likewise.
18207         (add_tree): Likewise.
18208         (finish_goto_stmt): Likewise.
18209         (finish_expr_stmt): Likewise.
18210         (begin_if_stmt): Likewise.
18211         (finish_if_stmt_cond): Likewise.
18212         (finish_then_clause): Likewise.
18213         (begin_else_clause): Likewise.
18214         (finish_else_clause): Likewise.
18215         (finish_if_stmt): Likewise.
18216         (clear_out_block): Likewise.
18217         (begin_while_stmt): Likewise.
18218         (finish_while_stmt_cond): Likewise.
18219         (finish_while_stmt): Likewise.
18220         (begin_do_stmt): Likewise.
18221         (finish_do_body): Likewise.
18222         (finish_do_stmt): Likewise.
18223         (finish_return_stmt): Likewise.
18224         (begin_for_stmt): Likewise.
18225         (finish_for_init_stmt): Likewise.
18226         (finish_for_cond): Likewise.
18227         (finish_for_expr): Likewise.
18228         (finish_break_stmt): Likewise.
18229         (finish_continue_stmt): Likewise.
18230         (begin_switch_stmt): Likewise.
18231         (finish_switch_cond): Likewise.
18232         (finish_case_label): Likewise.
18233         (begin_try_block): Likewise.
18234         (begin_function_try_block): Likewise.
18235         (finish_try_block): Likewise.
18236         (finish_cleanup_try_block): Likewise.
18237         (finish_cleanup): Likewise.
18238         (finish_function_try_block): Likewise.
18239         (finish_handler_sequence): Likewise.
18240         (finish_function_handler_sequence): Likewise.
18241         (begin_handler): Likewise.
18242         (finish_handler_parms): Likewise.
18243         (begin_catch_block): Likewise.
18244         (finish_handler): Likewise.
18245         (begin_compound_stmt): Likewise.
18246         (finish_compound_stmt): Likewise.
18247         (finish_asm_stmt): Likewise.
18248         (finish_label_stmt): Likewise.
18249         (finish_label_decl): Likewise.
18250         (finish_subobject): Likewise.
18251         (finish_decl_cleanup): Likewise.
18252         (finish_named_return_value): Likewise.
18253         (begin_stmt_expr): Likewise.
18254         (finish_stmt_expr): Likewise.
18255
18256         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
18257         to call genrtl_expr_stmt when appropriate.
18258
18259         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
18260         begin_compound_expr to call genrtl_begin_stmt_expr and
18261         genrtl_begin_compound_expr when appropriate.
18262         (finish_init_stmts): Changed calls to finish_compound_expr and
18263         finish_stmt_expr to call genrtl_finish_compound_expr and
18264         genrtl_finish_stmt_expr when appropriate.
18265         (expand_default_init): Changed call to finish_expr_stmt to call
18266         genrtl_expr_stmt when appropriate.
18267         (build_vec_init): Likewise.
18268
18269         * parse.y (simple_stmt): Removed first argument from call to
18270         finish_for_stmt. Removed first argument from call to
18271         finish_switch_stmt.
18272
18273         * parse.c: Regenerated.
18274
18275         * pt.c (tsubst_expr): Removed first argument from call to
18276         finish_for_stmt. Removed first argument from call to
18277         finish_switch_stmt.
18278
18279 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
18280
18281         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
18282         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
18283
18284         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
18285         (cplus_tree_code_length[]): Likewise.
18286         (cplus_tree_code_name[]): Likewise.
18287         (init_parse): Added call to add_c_tree_codes. Changed
18288         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
18289
18290 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
18291
18292         * cp-tree.h (finish_mem_initializers): Declare.
18293         (count_trees): Likewise.
18294         * parse.y (base_init): Use finish_mem_initializers.
18295         * semantics.c (finish_mem_initializers): New function.
18296
18297         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
18298         the number of trees.
18299         (n_trees): Remove.
18300         (count_trees): Don't use it.
18301
18302 2000-06-15  Jason Merrill  <jason@redhat.com>
18303
18304         * tree.c (count_trees): New debugging function.
18305
18306         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
18307         * init.c (build_member_call): Pull out the name of a DECL.
18308
18309         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
18310         * semantics.c (expand_body): Push to TV_INTEGRATION here.
18311         * optimize.c (optimize_function): Not here.
18312         * pt.c (instantiate_decl): Push to TV_PARSE.
18313
18314 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
18315
18316         * cp-tree.h (struct language_function): Remove x_base_init_list
18317         and x_member_init_list.
18318         (current_base_init_list): Remove.
18319         (current_member_init_list): Likewise.
18320         (setup_vtbl_ptr): Change prototype.
18321         (emit_base_init): Likewise.
18322         (expand_member_init): Likewise.
18323         (reinit_parse_for_function): Remove.
18324         * decl.c (save_function_data): Don't clear x_base_init_list and
18325         x_member_init_list.
18326         (mark_language_function): Don't mark them.
18327         * init.c (perform_member_init): Tweak comment.
18328         (sort_member_init): Take the list of initializers as an argument.
18329         (sort_base_init): Likewise.
18330         (emit_base_init): Likewise.
18331         (expand_member_init): Return the initializer.  Don't use global
18332         variables.
18333         * lex.c (reinit_parse_for_function): Remove.
18334         * method.c (build_template_parm_names): Correct substitution.
18335         (do_build_copy_constructor): Don't use current_member_init_list
18336         and current_base_init_list.
18337         (synthesize_method): Likewise.
18338         * parse.y (base_init): Split mem-initializers into
18339         base-initializers and field-initializers.
18340         (member_init_list): Build up the list here.
18341         (member_init): Return the initializer.
18342         (fn.depfn): Don't use reinit_parse_for_function.
18343         * parse.c: Regenerated.
18344         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
18345         ERROR_MARK.
18346         (tsubst_expr): Don't use current_member_init_list
18347         and current_base_init_list.
18348         (tsubst_expr_values): Rename to ...
18349         (tsubst_initializer_list): ... this.  Use convert_from_reference.
18350         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
18351         and current_base_init_list.
18352         (begin_function_definition): Don't call reinit_parse_for_function.
18353
18354         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
18355
18356         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
18357         correctly.
18358
18359         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
18360
18361 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
18362
18363         * cp-tree.h (IF_COND): Move to c-common.h.
18364         (THEN_CLAUSE): Likewise.
18365         (ELSE_CLAUSE): Likewise.
18366         (WHILE_COND): Likewise.
18367         (WHILE_BODY): Likewise.
18368         (DO_COND): Likewise.
18369         (DO_BODY): Likewise.
18370         (RETURN_EXPR): Likewise.
18371         (EXPR_STMT_EXPR): Likewise.
18372         (FOR_INIT_STMT): Likewise.
18373         (FOR_COND): Likewise.
18374         (FOR_EXPR): Likewise.
18375         (FOR_BODY): Likewise.
18376         (SWITCH_COND): Likewise.
18377         (SWITCH_BODY): Likewise.
18378         (CASE_LOW): Likewise.
18379         (CASE_HIGH): Likewise.
18380         (GOTO_DESTINATION): Likewise.
18381         (COMPOUND_BODY): Likewise.
18382         (ASM_CV_QUAL): Likewise.
18383         (ASM_STRING): Likewise.
18384         (ASM_OUTPUTS): Likewise.
18385         (ASM_INPUTS): Likewise.
18386         (ASM_CLOBBERS): Likewise.
18387         (DECL_STMT_DECL): Likewise.
18388         (STMT_EXPR_STMT): Likewise.
18389         (LABEL_STMT_LABEL): Likewise.
18390         (SCOPE_BEGIN_P): Likewise.
18391         (SCOPE_END_P): Likewise.
18392         (SCOPE_STMT_BLOCK): Likewise.
18393         (SCOPE_NULLIFIED_P): Likewise.
18394         (SCOPE_NO_CLEANUPS_P): Likewise.
18395         (SCOPE_PARTIAL_P): Likewise.
18396         (ASM_VOLATILE_P): Likewise.
18397         (STMT_LINENO): Likewise.
18398         (STMT_LINENO_FOR_FN_P): Likewise.
18399
18400         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
18401         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
18402         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
18403         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
18404         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
18405
18406         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
18407
18408         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
18409         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
18410
18411         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
18412         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
18413         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
18414
18415 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
18416
18417         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
18418         * class.c (dfs_find_final_overrider): Set it appropriately.
18419         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
18420         avoid unneeded secondary vptrs.
18421
18422 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
18423
18424         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
18425         (check_bitfield_decl, check_field_decl): Likewise.
18426         (build_vtbl_or_vbase_field, build_base_field): Likewise.
18427         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
18428         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
18429         (xfer_tag, finish_enum): Likewise.
18430         * decl2.c (finish_builtin_type): Likewise.
18431         * init.c (init_init_processing): Likewise.
18432         * pt.c (instantiate_class_template): Likewise.
18433         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
18434         * cp-tree.h (struct lang_type): Add user_align member.
18435         (CLASSTYPE_USER_ALIGN): Define.
18436
18437 2000-06-13  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
18438
18439         * Make-lang.in (c++.install-common): Install g++-cross in
18440         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
18441         $(target_alias)-g++ and $(target_alias)-c++.
18442
18443 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
18444
18445         * class.c (vcall_offset_data_s): Add last_init and fns.
18446         (overrides): Rename to same_signature_p.
18447         (dfs_find_final_overrider): Adjust accordingly.
18448         (mark_overriders): Likewise.
18449         (warn_hidden): Likewise.
18450         (build_vtbl_initializer): Reorganize machinery for building things
18451         at negative offsets.
18452         (build_vcall_and_vbase_vtbl_entries): Likewise.
18453         (build_vbase_offset_vtbl_entries): Likewise.
18454         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
18455         offset entries.  Do not create two entries for functions with the
18456         same signature.
18457         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
18458         (build_rtti_vtbl_entries): Reorganize machinery for building things
18459         at negative offsets.
18460
18461         * optimize.c (expand_call_inline): Don't recurse into the code
18462         used to initialize the parameters more than once.
18463
18464 2000-06-11  Mark Mitchell <mark@codesourcery.com>
18465
18466         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
18467         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
18468         (find_substitution): Only use the `Sa' substitution for
18469         std::allocator, not instantiations of it.
18470         (write_template_prefix): Move comment.  Only use a TREE_LIST to
18471         represent substitutions for a member template.
18472         (write_array_type): Mangle array dimensions correctly.
18473         * optimize.c (maybe_clone_body): Copy more information from the
18474         cloned function.
18475         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
18476         on the regenerated declaration.
18477
18478 2000-06-11  Chip Salzenberg  <chip@valinux.com>
18479             Mark Mitchell <mark@codesourcery.com>
18480
18481         * class.c (build_vtable): Clarify comment.
18482         (build_ctor_vtbl_group): Pass the most derived type to
18483         build_vtable.
18484
18485 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18486
18487         * decl2.c (compare_options): Don't needlessly cast away const-ness.
18488
18489 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
18490
18491         * decl.c (add_binding): Handle duplicate declarations of external
18492         variables.
18493
18494 2000-06-09  Chip Salzenberg  <chip@valinux.com>
18495             Mark Mitchell <mark@codesourcery.com>
18496
18497         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
18498         argument.
18499         (write_signed_number): New macro.
18500         (write_unsigned_number): Likewise.
18501         (write_source_name): Use them.
18502         (write_number): Handle signed and unsigned values.
18503         (write_integer_cst): Use tree_int_cst_sgn, and use
18504         write_unsigned_number or write_signed_number as appropriate.
18505         (write_discriminator): Use write_unsigned_number or
18506         write_signed_number as appropriate.
18507         (write_template_arg_literal): Likewise.
18508         (write_array_type): Use tree_low_cst.
18509         (write_template_parm):  Use write_unsigned_number or
18510         write_signed_number as appropriate.
18511         (write_substitution): Adjust call to write_number.
18512         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
18513         (write_expression): Handle non-type template arguments of
18514         reference type correctly.
18515         (mangle_thunk): Use write_signed_number.
18516
18517 2000-06-09  Chip Salzenberg  <chip@valinux.com>
18518
18519         * mangle.c (find_substition): Don't mangle objects with typename
18520         substitutions (e.g. "cin" as "Si").
18521
18522 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
18523
18524         * call.c (add_candidate): Use ggc_alloc_cleared.
18525         * decl.c (lookup_label): Likewise.
18526         * lex.c (retrofit_lang_decl): Likewise.
18527
18528 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
18529
18530         * semantics.c (expand_body): Push to TV_EXPAND.
18531         * optimize.c (optimize_function): Push to TV_INTEGRATION.
18532         * decl.c (start_function): Always call announce_function.
18533
18534         * tinfo2.cc: Just declare abort.
18535
18536 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
18537
18538         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
18539         whenever @ is a symbolic name.
18540
18541 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
18542
18543         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
18544
18545 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
18546
18547         * decl.c (pushdecl): Look up functions by DECL_NAME, not
18548         DECL_ASSEMBLER_NAME.
18549
18550 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
18551
18552         * decl2.c (c_language): Define.
18553
18554 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
18555
18556         * lex.c (lang_init_options): Tweak.
18557
18558         * decl2.c: Remove #inclusion of diagnostic.h
18559         (lang_decode_option): Move diagnostic formatting options to
18560         toplevel.
18561
18562         * lang-options.h: Remove documentation for diagnostic options.
18563
18564         * Makefile.in (lex.o): Depends upon diagnostic.h
18565
18566 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
18567
18568         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
18569         the same DECL_RESULT, it's not a redefinition.
18570         * pt.c (tsubst_decl): Remove code to handle illegal
18571         specializations.
18572
18573 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
18574
18575         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
18576
18577 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
18578
18579         * search.c (maybe_suppress_debug_info): Don't check
18580         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
18581
18582         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
18583         here if extern_p.
18584
18585         Remember instantiation context in deferred instantiations.
18586         * cp-tree.h (struct tinst_level): Remove.
18587         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
18588         * pt.c (current_tinst_level): Now a tree.
18589         (print_template_context, push_tinst_level, pop_tinst_level,
18590         tinst_for_decl): Adjust.
18591         (reopen_tinst_level): New fn.
18592         (init_pt): Register current_tinst_level as a root.
18593         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
18594         of the pending templates list.
18595         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
18596         * lex.c (extract_interface_info): Adjust.
18597         * decl2.c (warn_if_unknown_interface): Adjust.
18598
18599 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
18600
18601         * class.c (indirect_primary_base_p): New function.
18602         (determine_primary_base): Use it.
18603
18604 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
18605
18606         Update new-abi dynamic cast algorithm.
18607         * tinfo.cc (__class_type_info::__dyncast_result): Add
18608         whole_details. Adjust constructor.
18609         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
18610         Avoid unnecessary searching.
18611         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
18612
18613 2000-06-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18614
18615         * decl.c (init_decl_processing): Don't call record_component_aliases.
18616         * tree.c (build_cplus_array_type_1): Likewise.
18617
18618 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
18619
18620         * ir.texi: Correct typo.
18621         * mangle.c (write_expression): Handle non-type template arguments
18622         with reference type.
18623         * method.c (build_overload_value): Likewise.
18624         * pt.c (convert_nontype_argument): Explicitly represent conversion
18625         to a reference with an ADDR_EXPR.
18626         (unify): Always unify arguments in left-to-right order.
18627
18628 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
18629             Mark Mitchell  <mark@codesourcery.com>
18630
18631         * Make-lang.in (CXX_SRCS): Add mangle.c.
18632         * Makefile.in (CXX_OBJS): Add mangle.o.
18633         (mangle.o): New rule.
18634
18635         * class.c (local_classes): New variable.
18636         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
18637         (get_vtt_name): Use mangle_vtt_name for new ABI.
18638         (init_class_processing): Initialize local_classes.
18639         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
18640         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
18641         (std_identifier): New macro.
18642         (DECL_VOLATILE_MEMFUNC_P): New macro.
18643         (DECL_NAMESPACE_STD_P): Likewise.
18644         (local_classes): Declare.
18645         (get_mostly_instantiated_function_type): Declare.
18646         (init_mangle): Declare.
18647         (mangle_decl): Likewise.
18648         (mangle_type_string): Likewise.
18649         (mangle_type): Likewise.
18650         (mangle_typeinfo_for_type): Likewise.
18651         (mangle_typeinfo_string_for_type): Likewise.
18652         (mangle_vtbl_for_type): Likewise.
18653         (mangle_vtt_for_type): Likewise.
18654         (mangle_ctor_vtbl_for_type): Likewise.
18655         (mangle_thunk): Likewise.
18656         (mangle_conv_op_name_for_type): Likewise.
18657         (mangle_guard_variable): Likewise.
18658         * decl.c (pushtag): Keep track of local classes.
18659         (initialize_predefined_identifiers): Initialize std_identifier.
18660         (init_decl_processing): Use std_identifier.
18661         (start_decl): Don't treat instantiations as specializations.
18662         (grokdeclarator): Likewise.
18663         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
18664         name for fully-instantiated templates.
18665         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
18666         destructors with the new ABI.
18667         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
18668         (grokfield): Use mangle_type for new ABI.
18669         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
18670         (get_sentry): Use mangle_guard_variable for new ABI.
18671         (start_static_initialization_or_destruction): Likewise.
18672         * expr.c (extract_aggr_init): Remove.
18673         (extract_scalar_init): Likewise.
18674         (extract_init): Remove #if 0'd code.
18675         * mangle.c: New function.
18676         * method.c (build_mangled_name): Assert not flag_new_abi.
18677         (build_static_name): Likewise.
18678         (build_decl_overload_real): Likewise.
18679         (build_typename_overload): Likewise.
18680         (build_overload_with_type): Likewise.
18681         (build_overload_name): Likewise.
18682         (get_ctor_vtbl_name): Likewise.
18683         (start_squangling): Likewise.
18684         (get_id_2): Likewise.
18685         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
18686         (init_method): Call init_mangle for new ABI.
18687         (make_thunk): Call mangle_thunk for new ABI.
18688         * operators.def: Correct new ABI manglings for the `%' operator.
18689         Add `::' operator.
18690         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
18691         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
18692         (lookup_template_class): Call mangle_decl for new ABI.
18693         (get_mostly_instantiated_function_type): New function.
18694         (set_mangled_name_for_template_decl): Use it.
18695         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
18696         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
18697         conversion op names.
18698         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
18699         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
18700         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
18701         mangle_typeinfo_string_for_type.
18702
18703 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
18704
18705         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
18706         (INNERMOST_TEMPLATE_ARGS): New macro.
18707         (innermost_args): Remove.
18708         (get_innermost_template_args): New function.
18709         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
18710         * error.c (dump_function_decl): Be caution when using
18711         most_general_template.
18712         * method.c (build_template_parm_names):  Use
18713         INNERMOST_TEMPLATE_ARGS.
18714         * pt.c (add_to_template_args): Tidy comment
18715         (get_innermost_template_args): New function.
18716         (check_explicit_specialization): Clear DECL_INITIAL for a new
18717         specialization.
18718         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
18719         Tidy.
18720         (push_template_decl): Always register specializations of the most
18721         general template.
18722         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
18723         (coerce_template_parms): Likewise.
18724         (lookup_template_class): Likewise.
18725         (innermost_args): Remove.
18726         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
18727         (tsubst_decl): Handle tricky specializations.  Use
18728         get_innermost_template_args.
18729         (instantiate_template): Simplify handling of partial
18730         instantiations.
18731         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
18732         (most_general_template): Reimplement, in a more straightforward
18733         manner.
18734         (regenerate_decl_from_template): Tweak formatting.  Use
18735         TMPL_ARGS_DEPTH for clarity.
18736         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
18737
18738         * dump.c (dequeue_and_dump): Dump information about thunks.
18739
18740 2000-06-01  Richard Henderson  <rth@cygnus.com>
18741
18742         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
18743
18744 2000-06-01  Richard Henderson  <rth@cygnus.com>
18745
18746         * decl2.c (unsupported_options): Fix typo, make const.
18747         (lang_decode_option): Fix bsearch argument order.
18748
18749 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
18750
18751         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
18752         on FIELD_DECLs.
18753
18754 2000-05-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18755
18756         * cp-tree.h (c_get_alias_set): Deleted.
18757         * Makefile.in (decl.o): Include ../expr.h.
18758         * decl.c (expr.h): Include.
18759         (init_decl_processing): Call record_component_aliases for arrays.
18760         (grokdeclarator): Likewise.
18761         Set TREE_ADDRESSABLE for fields that aren't bitfields.
18762         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
18763
18764 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
18765
18766         Remove guiding declaration support.
18767         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
18768         (flag_guiding_decls): Remove.
18769         * call.c (build_user_type_conversion_1): Remove support for
18770         guiding decls.
18771         (build_new_function_call): Likewise.
18772         (build_new_op): Likewise.
18773         (build_new_method_call): Likewise.
18774         * decl.c (start_function): Likewise.
18775         * friend.c (is_friend): Likewise.
18776         (do_friend): Likewise.
18777         * decl2.c ((flag_dump_translation_unit): Make it const.
18778         (flag_guiding_decls): Remove.
18779         (unsupported_options): New variable
18780         (compare_options): New function.
18781         (lang_decode_option): Use them.
18782
18783         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
18784
18785         * method.c (mangle_expression): Adjust test for legal expression
18786         operators.
18787
18788         * pt.c (instantiate_decl): Save and restore the local
18789         specializations list.
18790
18791 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
18792
18793         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
18794
18795 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
18796
18797         * call.c (add_template_candidate_real): Handle member template
18798         constructors for classes with virtual bases.
18799         (build_user_type_conversion_1): Use in_charge_arg_for_name.
18800         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
18801
18802         * ir.texi: Update thunk documentation.
18803
18804         * call.c (joust): Fix handling of overloaded builtin operators.
18805
18806 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
18807
18808         * cp-tree.h (DECL_ANTICIPATED): New macro.
18809         Document new use of DECL_LANG_FLAG_7.
18810         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
18811         in the user namespace.
18812         * lex.c (do_identifier): If the identifier's declaration has
18813         DECL_ANTICIPATED on, it has not yet been declared.  But do not
18814         replace it with an ordinary implicit declaration.
18815
18816         * tinfo2.cc: Include stdlib.h.
18817
18818 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
18819
18820         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
18821         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
18822         CLASSTYPE_ALIGN.
18823
18824 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
18825
18826         * decl2.c (lang_decode_option): Use skip_leading_substring instead
18827         of plain strncmp.
18828
18829 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
18830
18831         * operators.def (<?): Duplicated, should have been...
18832         (>?): this.  Fixed.
18833
18834 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
18835             Mark Mitchell  <mark@codesourcery.com>
18836
18837         * cp-tree.h (ansi_opname): Make it a macro.
18838         (ansi_assopname): Likewise.
18839         (struct lang_decl_flags): Add assignment_operator_p.
18840         (struct lang_decl): Add operator_code.
18841         (DECL_VTT_PARM): Adjust.
18842         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
18843         overloaded operator.
18844         (SET_OVERLOADED_OPERATOR_CODE): New macro.
18845         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
18846         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
18847         (opname_tab): Remove.
18848         (assignop_tab): Likewise.
18849         (operator_name_info_t): New type.
18850         (operator_name_info): New variable.
18851         (assignment_operator_name_info): Likewise.
18852         (build_cp_library_fn): Remove declaration.
18853         (push_cp_library_fn): Likewise.
18854         (operator_name_string): Likewise.
18855         (build_decl_overload): Likewise.
18856         * call.c (print_z_candidates): Simplify.
18857         (build_object_call): Adjust usage of ansi_opname.  Use
18858         DECL_OVERLOADED_OPERATOR_P.
18859         (op_error): Adjust operator name lookup.
18860         (build_conditional_expr): Adjust usage of ansi_opname.
18861         (build_new_op): Likewise.
18862         (build_op_delete_call): Likewise.
18863         (build_over_call): Likewise.
18864         (joust): Use DECL_OVERLOADED_OPERATOR_P.
18865         * decl.c (duplicate_decls): Copy operator_code.
18866         (init_decl_processing): Adjust parameters to push_cp_library_fn.
18867         (builtin_function): Adjust parameters to build_library_fn_1.
18868         (build_library_fn_1): Accept an overloaded operator code.
18869         (build_library_fn): Pass ERROR_MARK.
18870         (build_cp_library_fn): Accept an overloaded operator code.
18871         (push_cp_library_fn): Likewise.
18872         (grokfndecl): Tweak.
18873         (grokdeclarator): Simplify code to compute names of overloaded
18874         operators.  Adjust use of ansi_opname.
18875         (ambi_op_p): Work on tree_codes, not identifiers.
18876         (unary_op_p): Likewise.
18877         (grok_op_properties): Likewise.
18878         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
18879         (lang_mark_tree): Don't try to mark the operator_code.
18880         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
18881         * error.c (dump_decl): Remove special handling for operator
18882         names.
18883         (dump_function_name): Likewise.
18884         (dump_expr): Adjust name lookup of operators.
18885         (op_to_string): Simplify.
18886         (assop_to_string): Likewise.
18887         * init.c (build_new_1): Adjust use of ansi_opname.
18888         * lex.c (opname_tab): Remove.
18889         (assignop_tab): Likewise.
18890         (ansi_opname): Likewise.
18891         (ansi_assopname): Likewise.
18892         (operator_name_string): Likewise.
18893         (reinit_lang_specific): Likewise.
18894         (operator_name_info): New variable.
18895         (assignment_operator_name_info): Likewise.
18896         (init_operators): New function.
18897         (init_parse): Use it.
18898         (do_identifier): Adjust use of ansi_opname.
18899         * method.c (mangle_expression): Don't use ansi_opname for
18900         mangling.
18901         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
18902         (build_decl_overload): Remove.
18903         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
18904         (do_build_assign_ref): Adjust use of ansi_opname.
18905         (synthesize_method): Likewise.
18906         (implicitly_declare_fn): Likewise.
18907         * operators.def: New file.
18908         * parse.y (operator): Adjust use of ansi_opname.
18909         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
18910         (set_mangled_name_for_template_decl): Don't play games with
18911         current_namespace.
18912         (special_function_p): Adjust use of ansi_opname.
18913         * typeck.c (check_return_expr): Likewise.
18914         * Make-lang.in (cc1plus): Depend on operators.def.
18915         * Makefile.in (lex.o): Likewise.
18916         (decl.o): Likewise.
18917
18918 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
18919
18920         * Make-lang.in (cplib2.ready): Eradicate.
18921
18922 2000-05-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18923
18924         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
18925         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
18926         (built_min, cp_tree_equal): Likewise.
18927
18928 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
18929
18930         * class.c (layout_nonempty_base_or_field): Replace
18931         `record_layout_info' with `record_layout_info_s'.
18932
18933 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
18934
18935         Fix goto checking.
18936         * cp-tree.h (struct language_function): x_named_labels is now
18937         a struct named_label_list*.
18938         * decl.c (struct named_label_use_list): Renamed from...
18939         (struct named_label_list): ...this.  New struct.
18940         (push_binding_level): Don't set eh_region.
18941         (note_level_for_eh): New fn.
18942         (pop_label): Take label and old value directly.
18943         (pop_labels): Adjust for new named_labels format.
18944         (lookup_label): Likewise.
18945         (poplevel): Note characteristics of a binding level containing a
18946         named label.  Mess with named label lists earlier.
18947         (mark_named_label_lists): New fn.
18948         (mark_lang_function): Call it.
18949         (use_label): New fn, split out from...
18950         (make_label_decl): ...here.  Don't call it.
18951         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
18952         check_previous_gotos): New fns, split out from...
18953         (define_label): ...here.
18954         (check_switch_goto): New fn.
18955         (define_case_label): Call it.
18956         (check_goto): New fn.
18957         * semantics.c (finish_goto_stmt): Call it and use_label.
18958         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
18959         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
18960
18961 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
18962
18963         * class.c (build_vtable_entry_ref): Correct usage of
18964         get_vtbl_decl_for_binfo.
18965
18966         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
18967         * method.c (implicitly_declare_fn): Not here.
18968
18969 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
18970
18971         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
18972         (CPTI_PTMD_DESC_TYPE): ... here.
18973         (ptmd_desc_type_node): Rename to ...
18974         (ptm_desc_type_node): ... here.
18975         * decl.c: Likewise.
18976         * rtti.c (ptmd_initializer): Rename to ...
18977         (ptm_initializer): ... here.
18978         (sythesize_tinfo_var): Adjust. Deal with pointer to member
18979         function.
18980         (create_tinfo_types): Adjust.
18981
18982 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
18983
18984         Finish implementation of VTTs.
18985         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
18986         CPTI_VTT_PARM_IDENTIFIER.
18987         (vtt_parm_identifier): New macro.
18988         (vtt_parm_type): Likewise.
18989         (BINFO_SUBVTT_INDEX): Likewise.
18990         (BINFO_VPTR_INDEX): Likewise.
18991         (struct lang_decl): Add vtt_parm.
18992         (DECL_VTT_PARM): New macro.
18993         (DECL_USE_VTT_PARM): Likewise.
18994         (DECL_NEEDS_VTT_PARM_P): Likewise.
18995         (get_vtt_name): Declare.
18996         (build_artificial_parm): Likewise.
18997         (fixup_all_virtual_upcast_offsets): Likewise.
18998         (expand_indirect_vtbls_init): Remove.
18999         * call.c (build_new_method_call): Pass the vtt to subobject
19000         constructors and destructors.
19001         * class.c (get_vtt_name): Give it external linkage.
19002         (build_clone): Handle the magic VTT parameters for clones.
19003         (clone_function_decl): Fix typo in comment.
19004         (build_vtt): Keep track of the indices in the VTTs where various
19005         entities are stored.
19006         (build_vtt_inits): Likewise.
19007         (dfs_build_vtt_inits): Likewise.
19008         (build_ctor_vtbl_group): Tweak type of construction vtables.
19009         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
19010         primary bases, when building construction vtables.
19011         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
19012         (initialize_predefined_identifiers): Add vtt_parm_identifier.
19013         (init_decl_processing): Initialize vtt_parm_type.
19014         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
19015         (lang_mark_tree): Make vtt_parm.
19016         * decl2.c (build_artificial_parm): New function.
19017         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
19018         (grokclassfn): Use build_artificial_parm.
19019         * init.c (initialize_vtbl_ptrs): Call
19020         fixup_all_virtual_upcast_offsets directly.
19021         (perform_member_init): Use the complete subobject destructor for
19022         member cleanups.
19023         (build_vtbl_address): New function.
19024         (expand_virtual_init): Handle VTTs.
19025         * optimize (maybe_clone_body): Likewise.
19026         * search.c (fixup_all_virtual_upcast_offsets): Give it external
19027         linkage.
19028         (expand_indirect_vtbls_init): Remove.
19029         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
19030         * tree.c (make_binfo): Make them bigger.
19031
19032 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
19033
19034         * inc/cxxabi.h (__pbase_type_info): Define, based on
19035         __pointer_type_info.
19036         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
19037         (__pointer_to_member_type_info): Likewise.
19038         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
19039         (__pointer_to_member_type_info::__is_pointer_p): Remove.
19040         (__pointer_type_info::__do_catch): Rename to ...
19041         (__pbase_type_info::__do_catch): ... here. Adjust.
19042         (__pbase_type_info::__pointer_catch): Implement.
19043         (__pointer_type_info::__pointer_catch): Adjust.
19044         (__pointer_to_member_type_info::__pointer_catch): Adjust.
19045
19046 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
19047
19048         * tinfo.h (__user_type_info::contained_virtual_p): New
19049         predicate.
19050         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
19051         shaped hierarchy.
19052         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
19053         diamond shaped hierarchy. Add early out for mixed diamond and
19054         duplicate shaped hierarchy.
19055
19056 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
19057
19058         * cp-tree.h (build_delete): Change prototype.
19059         (build_vec_delete): Likewise.
19060         * call.c (build_scoped_method_call): Use special_function_kind
19061         values to indicate the kind of destruction to be done.
19062         (build_method_call): Likewise.
19063         * decl.c (finish_destructor_body): Likewise.
19064         (maybe_build_cleanup_1): Likewise.  Rename to ...
19065         (maybe_build_cleanup): ... this.
19066         * decl2.c (delete_sanity): Use special_function_kind
19067         values to indicate the kind of destruction to be done.
19068         (build_cleanup): Likewise.
19069         * init.c (perform_member_init): Likewise.
19070         (build_vec_delete_1): Likewise.
19071         (build_dtor_call): Simplify.
19072         (build_delete): Use special_function_kind
19073         values to indicate the kind of destruction to be done.
19074         (build_vbase_delete): Likewise.
19075         (build_vec_delete): Likewise.
19076
19077         * init.c (sort_member_init): Fix typo in error message generation
19078         code.
19079
19080 2000-05-15  Donald Lindsay  <dlindsay@cygnus.com>
19081
19082         * semantics.c (begin_class_definition): make the packed
19083         attribute be sensitive to the "-fpack-struct" command line flag
19084
19085 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
19086
19087         Update new-abi upcast algorithm.
19088         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
19089         prototype and meaning of return value.
19090         (__si_class_type_info::__do_upcast): Likewise.
19091         (__vmi_class_type_info::__do_upcast): Likewise.
19092         * tinfo.cc (__class_type_info::__upcast_result): Replace
19093         whole2dst with part2dst. Adjust ctor.
19094         (__class_type_info::__do_upcast): Adjust call of worker function.
19095         (__class_type_info::__do_upcast): Adjust.
19096         (__si_class_type_info::__do_upcast): Adjust. Use parent's
19097         __do_upcast.
19098         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
19099         virtual base in diamond hierarchy bug.
19100
19101 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
19102
19103         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
19104         and bitfield to tinfo_fn_p.
19105         (DECL_TINFO_FN_P): Adjust.
19106         (SET_DECL_TINFO_FN_P): Likewise.
19107         (DECL_MUTABLE_P): Likewise.
19108         (DECL_C_BIT_FIELD): Likewise.
19109         (SET_DECL_C_BIT_FIELD): Likewise.
19110         (CLEAR_DECL_C_BIT_FIELD): Likewise.
19111         (DECL_UNINLINABLE): Likewise.
19112         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
19113         (handle_using_decl): Remove assertion.
19114         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
19115         to build FIELD_DECLs.
19116         (build_base_field): Likewise.
19117         (layout_class_type): Likewise.
19118         * decl.c (init_decl_processing): Likewise.
19119         (build_ptrmemfunc_type): Likewise.
19120         (grokdeclarator): Likewise.
19121         * decl2.c (grok_x_components): Likewise.
19122         * except.c (call_eh_info): Likewise.
19123         * init.c (init_init_processing): Likewise.
19124         * rtti.c (expand_class_desc): Likewise.
19125         (create_pseudo_type_info): Likewise.
19126         (get_vmi_pseudo_type_info): Likewise.
19127         (create_tinfo_types): Likewise.
19128         * ptree.c (print_lang_decl): Adjust.
19129         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
19130         before checking DECL_MUTABLE_P.
19131
19132         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
19133         parameters for template functions.
19134         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
19135         destructors as well as constructors.
19136
19137 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
19138
19139         * class.c (build_ctor_vtbl_group): Set inits.
19140         * optimize.c (maybe_clone_body): Set DECL_INLINE and
19141         DECL_THIS_INLINE appropriately for clones.
19142
19143         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
19144         (DECL_CONV_FN_P): Simplify.
19145         (DECL_OPERATOR): Remove.
19146         (language_to_string): Declare.
19147         * decl.c (duplicate_decls): Fix typo in comment.
19148         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
19149         (grok_op_properties): Use DECL_CONV_FN_P instead of
19150         IDENTIFIER_TYPENAME_P.
19151         * dump.c (dequeue_and_dump): Dump the language linkage of
19152         declarations.
19153         * error.c (language_to_string): Give it external linkage.
19154         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
19155         (implicitly_declare_fn): Set DECL_LANGUAGE.
19156         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
19157         IDENTIFIER_TYPENAME_P.
19158         (tsubst_decl): Likewise.
19159         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
19160         * semantics.c (finish_member_declaration): Don't mark members of
19161         classes declared in an extern "C" region as extern "C".
19162
19163 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19164
19165         * decl2.c (qualified_lookup_using_namespace): Look through
19166         namespace aliases.
19167
19168         * decl.c (push_using_decl): Return the old decl on namespace level.
19169
19170 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
19171
19172         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
19173         (VTT_NAME_PREFIX): New macro.
19174         (CTOR_VTBL_NAME_PREFIX): Likewise.
19175         (get_ctor_vtbl_name): New function.
19176         * class.c (get_vtable_name): Simplify.
19177         (get_vtt_name): New function.
19178         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
19179         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
19180         when a virtual base becomes primary.
19181         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
19182         VTTs.
19183         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
19184         additional parameters.
19185         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
19186         (initialize_array): New function.
19187         (build_vtt): Likewise.
19188         (build_vtt_inits): Likewise.
19189         (dfs_build_vtt_inits): Likewise.
19190         (dfs_fixup_binfo_vtbls): Likewise.
19191         (build_ctor_vtbl_group): Likewise.
19192         (initialize_vtable): Use initialize_array.
19193         (accumulate_vtbl_inits): Reimplement to handle construction
19194         vtables.
19195         (dfs_accumulate_vtbl_inits): Likewise.
19196         (bulid_vtbl_initializer): Adjust parameter name.
19197         * method.c (build_typename_overload): Remove #if 0'd code.
19198         (get_ctor_vtbl_name): New function.
19199         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
19200         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
19201
19202         * cp-tree.h (struct lang_type): Remove search_slot.
19203         (CLASSTYPE_SEARCH_SLOT): Remove.
19204         (emit_base_init): Change prototype.
19205         (initialize_vtbl_ptrs): Likewise.
19206         (expand_indirect_vtbls_init): Likewise.
19207         (clear_search_slots): Remove.
19208         * decl.c (lang_mark_tree): Don't mark search_slot.
19209         * init.c (initialize_vtbl_ptrs): Simplify.
19210         (emit_base_init): Likewise.
19211         * search.c (struct vbase_info): Document decl_ptr.
19212         (convert_pointer_to_single_level): Remove.
19213         (dfs_find_vbases): Remove.
19214         (dfs_init_base_pointers): Simplify.
19215         (dfs_clear_vbase_slots): Remove.
19216         (dfs_vtable_path_unmark): New function.
19217         (init_vbase_pointers): Simplify.
19218         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
19219         (expand_indirect_vtbls_init): Simplify.  Don't call
19220         mark_all_temps_used.
19221         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
19222         initialize_vtbl_ptrs.
19223
19224 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
19225
19226         * except.c: Add static prototypes.
19227
19228 2000-05-20  H.J. Lu  <hjl@gnu.org>
19229
19230         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
19231
19232 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
19233
19234         Don't create a separate copy of virtual bases for the
19235         CLASSTYPE_VBASECLASSES list.
19236         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
19237         (BINFO_FOR_VBASE): Remove.
19238         (CANONICAL_BINFO): Adjust.
19239         (binfo_for_vbase): New function.
19240         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
19241         instead of BINFO_FOR_VBASE.
19242         (build_vbase_pointer): Likewise.
19243         (build_secondary_vtable): Likewise.
19244         (dfs_mark_primary_bases): Likewise.
19245         (mark_primary_bases): Likewise.
19246         (layout_nonempty_base_or_field): Likewise.
19247         (dfs_set_offset_for_shared_vbases): Likewise.
19248         (dfs_set_offset_for_unshared_vbases): Likewise.
19249         (layout_virtual_bases): Likewise.  Adjust for changes to the
19250         CLASSTYPE_VBASECLASSES list.
19251         (dump_class_hierarchy_r): Use binfo_for_vbase
19252         instead of BINFO_FOR_VBASE.
19253         (dump_class_hierarchy): Likewise.
19254         (finish_vtbls): Likewise.
19255         (build_vtbl_initializer): Adjust for changes to the
19256         CLASSTYPE_VBASECLASSES list.
19257         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
19258         * decl.c (finish_destructor_body): Adjust for changes to the
19259         CLASSTYPE_VBASECLASSES list.
19260         * init.c (sort_base_init): Use binfo_for_vbase.
19261         (construct_virtual_bases): Adjust for changes to the
19262         CLASSTYPE_VBASECLASSES list.
19263         (expand_member_init): Use binfo_for_vbase.
19264         (build_vbase_delete):  Adjust for changes to the
19265         CLASSTYPE_VBASECLASSES list.
19266         * method.c (do_build_copy_constructor): Likewise.
19267         * rtti.c (get_base_offset): Use binfo_for_vbase.
19268         (expand_class_desc): Remove #if 0'd code.
19269         * search.c (struct vbase_info): Remove vbase_types.
19270         (get_base_distance):  Use binfo_for_vbase.
19271         (lookup_field_queue_p): Use CANONICAL_BINFO.
19272         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
19273         (get_pure_virtuals): Adjust for changes to the
19274         CLASSTYPE_VBASECLASSES list.
19275         (dfs_find_vbases): Use binfo_for_vbase.
19276         (dfs_init_vbase_pointers): Likewise.
19277         (init_vbase_pointers): Don't initialize vi.vbase_types.
19278         (virtual_context): Use binfo_for_vbase.
19279         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
19280         CLASSTYPE_VBASECLASSES list.
19281         (expand_indirect_vtbls_init): Simplify.
19282         (dfs_get_vbase_types): Don't replicate virtual bases.
19283         (find_vbase_instance): Use binfo_for_vbase.
19284         (binfo_for_vbase): New function.
19285         * typeck.c (get_delta_difference): Use binfo_for_vbase.
19286
19287 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
19288
19289         * decl2.c (finish_anon_union): Generalize error messages to handle
19290         anonymous structures.
19291         * init.c (perform_member_init): Remove `name' parameter.
19292         (build_field_list): New function.
19293         (sort_member_init): Handle anonymous union initialization order
19294         correctly.  Check for multiple initializations of the same union.
19295         (emit_base_init): Don't look up fields by name here.
19296         (expand_member_init): Record the result of name lookup for future
19297         reference.
19298         * typeck.c (build_component_ref): Fix formatting.
19299
19300 2000-05-17  Andrew Cagney  <cagney@b1.cygnus.com>
19301
19302         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
19303         * typeck.c (build_x_compound_expr): Replace warn_unused with
19304         warn_unused_value.
19305
19306         * decl2.c (lang_decode_option): Update -Wall unused flags by
19307         calling set_Wunused.
19308
19309 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
19310
19311         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
19312         * init.c (dfs_vtable_path_unmark): Remove.
19313         * search.c (marked_new_vtable_p): Likewise.
19314         (unmarked_new_vtable_p): Likewise.
19315         (dfs_search_slot_nonempty_p): Likewise.
19316         (dfs_mark): Likewise.
19317         (dfs_vtable_path_unmark): Likewise.
19318         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
19319         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
19320         (dfs_init_vbase_pointers): Remove special-case new ABI code.
19321         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
19322         (init_vbase_pointers): Simplify.
19323         (expand_indirect_vtbls_init): Likewise.
19324
19325         * class.c (copy_virtuals): New function.
19326         (build_primary_table): Use it.
19327         (build_secondary_vtable): Likewise.
19328         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
19329         indicate that no vcall offset is required.
19330         (add_virtual_function): Likewise.
19331         (modify_all_vtables): Likewise.
19332         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
19333         (dfs_accumulate_vtbl_inits): Likewise.
19334         (build_vtbl_initializer): Make changes to handle construction
19335         vtables.
19336         (dfs_build_vcall_offset_vtbl_entries): Likewise.
19337         (build_rtti_vtbl_entries): Likewise.
19338         (build_vtable_entries): Handle a NULL vcall_index.
19339
19340 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
19341
19342         * decl2.c (lang_decode_option): Fix thinko.
19343
19344 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
19345
19346         * except.c (check_handlers): New fn.
19347         * cp-tree.h: Declare it.
19348         * semantics.c (finish_handler_sequence): Call it.
19349         (finish_function_handler_sequence): Likewise.
19350         (finish_handler_parms): Set TREE_TYPE on the handler.
19351         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
19352         * search.c (get_base_distance_recursive): If protect>1, ignore
19353         special access.
19354         (get_base_distance): Don't reduce watch_access.
19355
19356 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
19357
19358         * lex.c: #include diagnostic.h.
19359         (lang_init_options): Set default prefixing rules.
19360
19361         * lang-options.h: Add -fdiagnostics-show-location=.
19362
19363         * decl2.c: #include diagnostic.h.
19364         (lang_decode_option): Handle -fdiagnostics-show-location=.
19365
19366 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
19367
19368         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
19369         * vec.cc: Revert my 2000-05-07 change.
19370
19371 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
19372
19373         * class.c (check_field_decls): Complain about non-static data
19374         members with same name as class in class with constructor.
19375
19376 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
19377
19378         * decl.c (grokdeclarator): Allow non-static data members with
19379         same name as class.
19380
19381 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
19382
19383         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
19384         and pending_inline.filename.  Update prototypes.
19385         * decl.c (define_label): Constify filename parameter.
19386         * decl2.c (warn_if_unknown_interface): Constify local char *.
19387         * input.c Constify input_source.filename. Don't declare
19388         input_filename or lineno.  Constify filename parameter to feed_input.
19389         * lex.c (init_parse): Constify parameter and return value.
19390         (cp_pragma_interface, cp_pragma_implementation): Constify
19391         filename argument.
19392         (reinit_parse_for_method, reinit_parse_for_block,
19393         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
19394         Constify local char *.
19395         * pt.c: Don't declare lineno or input_filename.
19396         (print_template_context, tsubst_friend_function, tsubst_decl,
19397         tsubst, instantiate_decl): Constify local char *.
19398         * semantics.c (expand_body): Constify local char *.
19399         * tree.c (build_srcloc): Constify filename parameter.
19400         * typeck.c (c_expand_asm_operands): Constify filename
19401         parameter.
19402
19403 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
19404
19405         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
19406         offsetof expansion.
19407
19408 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
19409
19410         * inc/cxxabi.h:  Fix typos in comment.
19411         (__base_class_info::__offset): Use a static_cast.
19412
19413 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
19414
19415         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
19416         of std::size_t and std::ptrdiff_t respectively.
19417         * tinfo.cc: Likewise.
19418         * vec.cc: Likewise.
19419
19420 2000-05-06  Richard Henderson  <rth@cygnus.com>
19421
19422         * typeck.c (build_c_cast): Don't warn integer->pointer size
19423         mismatch for constants.
19424
19425 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
19426
19427         * rtti.c (ptmd_initializer): Set non-public, if class is
19428         incomplete.
19429
19430         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
19431         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
19432         __cxa_vec_delete): Likewise.
19433         * tinfo.cc (__dynamic_cast): Likewise.
19434         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
19435         __cxa_vec_delete): Likewise.
19436
19437 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
19438
19439         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
19440         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
19441         (lang_decl_flags): Add vcall_offset.
19442         (THUNK_VCALL_OFFSET): Use it.
19443         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
19444         * method.c (make_thunk): Create the lang_decl here, not in
19445         emit_thunk.
19446         (emit_thunk): Make generic thunks into ordinary functions once
19447         they have been fed to expand_body.
19448         * semantics.c (expand_body): Set current_function_is_thunk here.
19449
19450 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19451
19452         * class.c (update_vtable_entry_for_fn): Prototype.
19453
19454         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
19455         and `tmpl'.
19456
19457         * search.c (dfs_build_inheritance_graph_order): Prototype.
19458
19459 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
19460
19461         * cp-tree.h (special_function_kind): Add various kinds of
19462         destructors.
19463         (special_function_p): New function.
19464         * class.c (overrides): Don't let one kind of destructor override
19465         another.
19466         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
19467         whether or not to instantiate a template.
19468         * tree.c (special_function_p): Define.
19469
19470 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
19471
19472         * cp-tree.def (THUNK_DECL): Remove.
19473         * cp-tree.h (DECL_THUNK_P): New macro.
19474         (DECL_NON_THUNK_FUNCTION_P): Likewise.
19475         (DECL_EXTERN_C_FUNCTION_P): Likewise.
19476         (SET_DECL_THUNK_P): Likewise.
19477         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
19478         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
19479         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
19480         * decl.c (decls_match): Use DECL_EXTERN_C_P.
19481         (duplicate_decls): Likewise.
19482         (pushdecl): Likewise.  Adjust thunk handling.
19483         (grokfndecl): Use DECL_EXTERN_C_P.
19484         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
19485         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
19486         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
19487         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
19488         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
19489         DECL_NO_STATIC_CHAIN.
19490         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
19491         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
19492         * search.c (covariant_return_p): Remove THUNK_DECL handling.
19493         * ir.texi: Update.
19494
19495 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
19496
19497         * tree.c (walk_tree): Set lineno.
19498
19499 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
19500
19501         * exception.cc: Update license notice.
19502         * new.cc: Likewise.
19503         * new1.cc: Likewise.
19504         * new2.cc: Likewise.
19505         * tinfo.cc: Likewise.
19506         * tinfo2.cc: Likewise.
19507         * vec.cc: Likewise.
19508         * inc/cxxabi.h: Likewise.
19509         * inc/exception: Likewise.
19510         * inc/new: Likewise.
19511         * inc/new.h: Likewise.
19512         * inc/typeinfo: Likewise.
19513
19514 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
19515
19516         * tree.c (build_target_expr_with_type): If we already have a
19517         TARGET_EXPR, just return it.
19518
19519         * optimize.c (initialize_inlined_parameters): Don't generate an
19520         EXPR_STMT if we can just use DECL_INITIAL.
19521         * decl.c (emit_local_var): Only make the initialization a
19522         full-expression if stmts_are_full_exprs_p.
19523
19524 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
19525
19526         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
19527         macro.
19528         * call.c (standard_conversion): Use it.
19529         (direct_reference_binding): Likewise.
19530         (build_over_call): Likewise.
19531         (is_properly_derived_from): Likewise.
19532         (compare_ics): Likewise.
19533         * class.c (resolves_to_fixed_type_p): Likewise.
19534         * optimize.c (declare_return_variable): Likewise.
19535         * pt.c (is_specialization_of): Likewise.
19536         (unify): Likewise.
19537         * typeck.c (comp_target_parms): Likeiwse.
19538         (build_static_cast): Likewise.
19539         (build_reinterpret_cast): Likewise.
19540         (build_const_cast): Likewise.
19541         (comp_ptr_ttypes_real): Likewise.
19542         (comp_ptr_ttypes_const): Likewise.
19543         * typeck2.c (process_init_constructor): Likewise.
19544
19545 2000-04-30  Scott Snyder <snyder@fnal.gov>
19546
19547         * decl.c (finish_destructor_body): Use the base destructor when
19548         destroying virtual bases.
19549
19550 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
19551
19552         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
19553         STMT_EXPRs.
19554         * optimize.c (struct inline_data): Add target_exprs field.
19555         (declare_return_variable): When a function returns an aggregate,
19556         use the variable declared in the TARGET_EXPR as the remapped
19557         DECL_RESULT.
19558         (expand_call_inline): Update the pending target_exprs stack.
19559         (optimize_function): Initialize the stack.
19560
19561         * decl2.c (finish_file): Fix typo in comment.
19562
19563         * method.c (emit_thunk): Don't try to return a `void' value.
19564
19565         * optimize.c (initialize_inlined_parameters): If the parameter is
19566         addressable, we need to make a new VAR_DECL, even if the
19567         initializer is constant.
19568
19569 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
19570
19571         * decl.c (grok_op_properties): Add an extra check of argtypes.
19572
19573 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
19574
19575         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
19576         variables.
19577         (initialize_inlined_parameters): Try to avoid creating new
19578         VAR_DECLs.
19579
19580 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
19581
19582         * lex.c (my_get_run_time): Remove.
19583         (init_filename_times): Use get_run_time instead of my_get_run_time.
19584         (check_newline): Likewise.
19585         (dump_time_statistics): Likewise.
19586         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
19587         of computing elapsed time explicitly.
19588
19589 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
19590
19591         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
19592         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
19593         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
19594         before calling decl_constant_value.
19595         * class.c (check_bitfield_decl): Likewise.
19596         * cvt.c (ocp_convert): Likewise.
19597         (convert): Likewise.
19598         * decl.c (compute_array_index_type): Likewise.
19599         (build_enumerator): Likewise.
19600         * decl2.c (check_cp_case_value): Likewise.
19601         * pt.c (convert_nontype_argument): Likewise.
19602         (tsubst): Likewise.
19603         * typeck.c (decay_conversion): Likewise.
19604         (build_compound_expr): Likewise.
19605         (build_reinterpret_cast): Likewise.
19606         (build_c_cast): Likewise.
19607         (convert_for_assignment): Likewise.
19608
19609 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
19610
19611         * decl.c (finish_function): Don't play games with DECL_INLINE.
19612
19613 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
19614
19615         * ir.texi: Correct typo.
19616
19617 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19618
19619         * decl.c (grokdeclarator): Reject VLAs as members.
19620
19621 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
19622
19623         * call.c (standard_conversion): Accept conversion between
19624         COMPLEX_TYPEs.
19625
19626         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
19627
19628 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
19629
19630         * decl2.c (finish_file): Remove double setup for accounting
19631         compile time.
19632
19633 2000-04-24  Robert Lipe <robertlipe@usa.net>
19634
19635         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
19636
19637 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
19638
19639         * new.cc (set_new_handler): Needs to be in std::.
19640
19641 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
19642
19643         * cp-tree.h (lang_decl): Remove pretty_function_p.
19644         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
19645         language-specific node.
19646         * decl.c (cp_make_fname_decl): Use build_decl, not
19647         build_lang_decl, to build the variables.
19648         (grokvardecl): Don't call build_lang_decl for local variables in
19649         templates.
19650         (grokdeclarator): Don't call build_lang_decl for local type
19651         declarations in templates.
19652         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
19653         zero'd memory, rather than calling memset.
19654         * pt.c: Include hashtab.h.
19655         (local_specializations): New variable.
19656         (retrieve_local_specialization): Use it.
19657         (register_local_specialization): Likewise.
19658         (tsubst_decl): Don't assume local variables have
19659         DECL_LANG_SPECIFIC.
19660         (instantiate_decl): Set up local_specializations.
19661         * Makefile.in (HTAB_H): New variable.
19662
19663 2000-04-23  Richard Henderson  <rth@cygnus.com>
19664
19665         * typeck.c (c_expand_asm_operands): Restore the original
19666         contents of the output list.
19667
19668 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
19669
19670         * ir.texi:  Document complex number representation.
19671
19672 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
19673
19674         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
19675         (target_incomplete_p): New function.
19676         (tinfo_base_init): Create comdat NTBS name variable.
19677         (ptr_initializer): Add non_public parameter. Calculate it.
19678         (ptmd_initializer): Likewise.
19679         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
19680         (create_real_tinfo_var): Add non_public parameter. Use it.
19681         Push proxy into global namespace.
19682         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
19683         New enumeration.
19684         * inc/typeinfo (type_info::before, type_info::operator==):
19685         Compare __name addresses.
19686
19687         * tinfo2.cc: Remove new-abi builtins comment.
19688
19689 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
19690
19691         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
19692
19693         * call.c (joust): Exit early if we get the same function, too.
19694
19695         * decl2.c (key_method): Return NULL_TREE for template classes.
19696         (import_export_class): Don't need to check for template classes.
19697
19698 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
19699
19700         * lex.c: Remove references to cccp.c.
19701
19702 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
19703
19704         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
19705         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
19706         (DECL_DESTRUCTOR_P): Use destructor_attr.
19707         (DECL_CONST_MEMFUNC_P): Reimplement.
19708         (DECL_VOLATILE_MEMFUNC_P): Remove.
19709         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
19710         (overrides): Use DECL_DESTRUCTOR_P.
19711         (check_for_override): Likewise.
19712         * decl.c (start_function): Likewise.
19713         * decl2.c (grokfclassfn): Likewise.
19714         (check_classfn): Likewise.
19715         (grok_function_init): Likewise.
19716
19717 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
19718
19719         * decl2.c (grokfield): Issue error on illegal data member
19720         declaration.
19721
19722 2000-04-17  Mark P Mitchell  <mark@codesourcery.com>
19723
19724         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
19725
19726 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
19727
19728         * class.c (build_vtable_entry): Don't build thunks for type-info
19729         functions.
19730
19731 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
19732
19733         * decl.c (decls_match): Allow a redeclaration of a builtin to
19734         specify args while the builtin did not.
19735
19736 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
19737
19738         * cp-tree.def (THUNK_DECL): Add to documentation.
19739         * cp-tree.h (flag_huge_objects): Declare.
19740         * class.c (modify_vtable_entry): Tidy.
19741         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
19742         Calculate delta appropriately for the new ABI.
19743         (dfs_modify_vtables): Use it.
19744         (modify_all_vtables): Fix thinko in code to add overriding copies
19745         of functions to primary vtables.
19746         (build_clone): Fix typo in comment.
19747         (clone_function_decl): Correct order of destructors in vtable.
19748         (build_vbase_offset_vtbl_entries): Adjust comment.
19749         (dfs_vcall_offset_queue_p): Remove.
19750         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
19751         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
19752         (build_vtable_entry): Correct check for pure virtual functions.
19753         Don't declare flag_huge_objects.
19754         * decl.c (flag_huge_objects): Remove declaration.
19755         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
19756         Use int_size_in_bytes.
19757         (emit_thunk): Handle vcall offset thunks.
19758
19759 2000-04-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19760
19761         * decl2.c (parse_time, varconst_time): Delete declarations.
19762         (finish_file): Delete LINENO declaration.
19763         START_TIME and THIS_TIME now long.
19764
19765 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
19766
19767         * class.c (build_base_field): Reformat comment.
19768
19769         * inc/cxxabi.h (stddef.h): Comment inclusion.
19770         (__base_class_info::__offset): Comment shift.
19771
19772 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
19773
19774         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
19775         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
19776         (cp_push_exception_identifier): New macro.
19777         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
19778         (DECL_BASE_DESTRUCTOR_P): Likewise.
19779         (DECL_DELETING_DESTRUCTOR_P): Likewise.
19780         (get_vtbl_decl_for_binfo): Fix formatting.
19781         (in_charge_arg_for_name): New macro.
19782         (maybe_build_cleanup_and_delete): Remove declaration.
19783         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
19784         (in_charge_arg_for_name): New function.
19785         (build_new_method_call): Use it.  Handle cloned destructors.
19786         (build_clone): Don't make the base constructor virtual.
19787         Automatically defer generated functions.
19788         (clone_function_decl): Handle destructors, too.
19789         (clone_constructors_and_destructors): Likewise.
19790         (create_vtable_ptr): Don't create a vtable entry for a cloned
19791         function.
19792         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
19793         (initialize_predefined_identifiers): Update appropriately.
19794         (finish_destructor_body): Simplify.
19795         (maybe_build_cleanup_and_delete): Remove.
19796         * except.c (expand_throw): Handle new-ABI destructors.
19797         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
19798         (build_dtor_call): New function.
19799         (build_delete): Use it.  Simplify.
19800         * optimize.c (maybe_clone_body): Handle destructors.
19801         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
19802
19803         * exception.cc (cleanup_fn): New typedef.
19804         (CALL_CLEANUP): New macro.
19805         (cp_eh_info): Use them.
19806         (__cp_push_exception): Likewise.
19807         (__cp_pop_exception): Likewise.
19808
19809 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
19810
19811         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
19812         (complete_dtor_identifier): New macro.
19813         (CLASSTYPE_FIRST_CONVERSION): Remove.
19814         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
19815         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
19816         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
19817         (CLASSTYPE_CONSTRUCTORS): Likewise.
19818         (CLASSTYPE_DESTRUCTORS): Likewise.
19819         (lang_decl): Add cloned_function.
19820         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
19821         (DECL_BASE_CONSTRUCTOR_P): Likewise.
19822         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
19823         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
19824         (DECL_CLONED_FUNCTION_P): Likewise.
19825         (DECL_CLONED_FUNCTION): Likewise.
19826         (clone_function_decl): Declare.
19827         (maybe_clone_body): Likewise.
19828         * call.c (build_user_type_conversion_1): Call complete object
19829         constructors in the new ABI.
19830         (build_new_method_call): Don't add in-charge parameters under the
19831         new ABI.
19832         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
19833         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
19834         CLASSTYPE_DESTRUCTOR_SLOT.
19835         (build_clone): New function.
19836         (clone_function_decl): Likewise.
19837         (clone_constructors_and_destructors): Likewise.
19838         (check_bases_and_members): Use it.
19839         * decl.c (iniitialize_predefined_identifiers): Initialize
19840         complete_dtor_identifier.
19841         (finish_function): Don't add extra code to a clone.
19842         (lang_mark_tree): Mark cloned_function.
19843         * decl2.c (mark_used): Don't bother trying to instantiate things
19844         we synthesized.
19845         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
19846         * method.c (set_mangled_name_for_decl): Don't treat clones as
19847         constructors.
19848         (synthesize_method): Sythesize cloned functions, not the clones.
19849         * optimize.c (inline_data): Update comment on ret_label.
19850         (remap_block): Don't assume DECL_INITIAL exists.
19851         (copy_body_r): Allow ret_label to be NULL.
19852         (maybe_clone_body): Define.
19853         * pt.c (tsubst_decl): Handle clones.
19854         (instantiate_clone): New function.
19855         (instantiate_template): Use it.
19856         (set_mangled_name_for_template_decl): Don't treat clones as
19857         constructors.
19858         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
19859         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
19860         * semantics.c (expand_body): Clone function bodies as necessary.
19861
19862         * optimize.c (remap_decl): Avoid sharing structure for arrays
19863         whose size is only known at run-time.
19864         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
19865
19866         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
19867         to has_in_charge_parm_p.
19868         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
19869         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
19870         (DECL_COPY_CONSTRUCTOR_P): New macro.
19871         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
19872         (build_user_type_conversion_1): Likewise.
19873         (convert_like_real): Likewise.
19874         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
19875         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
19876         (copy_args_p): Likewise.
19877         (grok_ctor_properties): Likewise.
19878         (start_function): Likewise.
19879         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
19880         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
19881         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
19882         * method.c (do_build_copy_constructor): Use
19883         DECL_HAS_IN_CHARGE_PARM_P.
19884         (synthesize_method): Likewise.
19885         * pt.c (instantiate_template): Remove goto.
19886         * tree.c (build_cplus_method_type): Remove mention of obstacks in
19887         comment.
19888
19889         * cp-tre.h (finish_function): Change prototype.
19890         * decl.c (end_cleanup_fn): Adjust caller.
19891         (finish_function): Take only one parameter.
19892         * decl2.c (finish_objects): Adjust caller.
19893         (finish_static_storage_duration_function): Likewise.
19894         * method.c (emit_thunk): Likewise.
19895         * parse.y: Likewise.
19896         * parse.c: Regenerated.
19897         * pt.c (instantiate_decl): Likewise.
19898         * rtti.c (synthesize_tinfo_fn): Likewise.
19899         * semantics.c (expand_body): Likewise.
19900
19901         * cp-tree.h (copy_decl): New function.
19902         * class.c (finish_struct_1): Use it.
19903         * lex.c (copy_decl): Define it.
19904         * pt.c (tsubst_decl): Likewise.
19905         * tree.c (copy_template_template_parm): Likewise.
19906
19907         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
19908         has_nonpublic_assign_ref.
19909         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
19910         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
19911         * class.c (finish_struct_methods): Don't set
19912         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
19913         (interface_only): Don't declare.
19914         (interface_unknown): Likewise.
19915
19916 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19917
19918         * tree.h (HAVE_TEMPLATES): Remove definition.
19919         * lang-options.h (-fthis-is-variable): Remove documentation.
19920
19921 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
19922
19923         * class.c (instantiate_type): Handle object-relative template-id.
19924
19925         * semantics.c (finish_expr_stmt): Call convert_to_void here.
19926         * decl.c (cplus_expand_expr_stmt): Not here.
19927
19928         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
19929         Initialize exprtype earlier.
19930
19931         * parse.y (fn.def1): Check for defining types in return types.
19932
19933         * decl.c (check_tag_decl): Notice extra fundamental types.
19934         Diagnose empty decls in classes, too.
19935
19936         * decl.c (grokdeclarator): Don't override an anonymous name if no
19937         declarator was given.
19938
19939         * cvt.c (convert_to_void): Call resolve_offset_ref.
19940
19941         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
19942
19943         * decl2.c (decl_namespace): Handle getting a type.
19944
19945         * typeck.c (build_c_cast): Re-enable warning for cast between
19946         pointer and integer of different size.
19947
19948 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
19949
19950         * inc/cxxabi.h (__pointer_type_info): Add restrict and
19951         incomplete flags.
19952         (__pointer_type_info::__pointer_catch): New virtual function.
19953         (__pointer_to_member_type_info): Derive from
19954         __pointer_type_info. Adjust.
19955         (__pointer_to_member_type_info::__do_catch): Remove.
19956         (__pointer_to_member_type_info::__is_pointer_p): Declare.
19957         (__pointer_to_member_type_info::__pointer_catch): Declare.
19958         * rtti.c (qualifier_flags): Add restrict flag.
19959         (ptmd_initializer): Reorder members.
19960         (create_tinfo_types): Expand comments. Reorder
19961         ptmd_desc_type_node members.
19962         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
19963         Implement.
19964         (__pointer_type_info::__do_catch): Move specific code into
19965         __pointer_catch. Call it.
19966         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
19967         specific catch checking. Fix void conversion check.
19968         (__pointer_to_member_type_info::__do_catch): Remove.
19969         (__pointer_to_member_type_info::__pointer_catch): Implement.
19970
19971 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19972
19973         * lex.c (init_parse): Remove traces of classof and headof.
19974         * decl2.c (flag_operator_names): Default to 1.
19975         (lang_decode_option): Do not set it for -ansi.
19976
19977 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
19978
19979         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
19980         (DECL_MAIN_VARIANT): Remove.
19981         * decl.c (duplicate_decls): Don't set it.
19982         (start_function): Likewise.
19983         (lang_mark_tree): Don't mark it.
19984         * decl2.c (defer_fn): Don't use it.
19985         * lex.c (retrofit_lang_decl): Don't set it.
19986         * pt.c (tsubst_decl): Likewise.
19987         * ptree.c (print_lang_decl): Don't print it.
19988         * typeck.c (mark_addressable): Don't use it.
19989
19990 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
19991
19992         * vec.cc: Include <new> and <exception>.
19993         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
19994         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
19995         terminate.
19996         (__cxa_vec_delete): Catch dtor exceptions.
19997
19998 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
19999
20000         Prepend __ to implementation defined names.
20001         * inc/typeinfo (type_info): Rename _name to __name.
20002         (type_info::type_info): Rename parameter.
20003         (type_info::operator==, type_info::operator!=,
20004         type_info::before): Likewise.
20005         (type_info::is_pointer_p, type_info::is_function_p,
20006         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
20007         parameters.
20008         * inc/cxxabi.h
20009         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
20010         (__pointer_type_info::__pointer_type_info): Likewise.
20011         (__pointer_type_info::is_pointer_p,
20012         __pointer_type_info::do_catch): Prepend __. Rename parameters.
20013         (__array_type_info::__array_type_info): Rename parameters.
20014         (__function_type_info::__function_type_info): Likewise.
20015         (__function_type_info::is_function_p): Prepend __.
20016         (__enum_type_info::__enum_type_info): Rename parameters.
20017         (__pointer_to_member_type_info::__pointer_to_member_type_info):
20018         Likewise.
20019         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
20020         parameters.
20021         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
20022         (__class_type_info::__class_type_info): Rename parameters.
20023         (__class_type_info::sub_kind): Prepend __. Adjust member names.
20024         (__class_type_info::upcast_result,
20025         __class_type_info::dyncast_result): Prepend __. Move definition
20026         into tinfo.cc.
20027         (__class_type_info::do_upcast, __class_type_info::do_catch,
20028         __class_type_info::find_public_src,
20029         __class_type_info::do_dyncast,
20030         __class_type_info::do_find_public_src): Prepend __. Rename
20031         parameters.
20032         (__si_class_type_info::__si_class_type_info): Rename parameters.
20033         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
20034         __si_class_type_info::do_find_public_src): Prepent __. Rename
20035         parameters.
20036         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
20037         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
20038         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
20039         parameters.
20040         (__dynamic_cast): Rename parameters.
20041         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
20042         type_info::do_catch, type_info::do_upcast): Prepend __.
20043         (contained_p, public_p, virtual_p, contained_public_p,
20044         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
20045         (__class_type_info::do_catch,
20046         __class_type_info::do_upcast): Prepend __. Adjust.
20047         (__class_type_info::__upcast_result,
20048         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
20049         Adjust.
20050         (__class_type_info::find_public_src): Prepend __. Adjust.
20051         (__class_type_info::do_find_public_src,
20052         __si_class_type_info::do_find_public_src,
20053         __vmi_class_type_info::do_find_public_src): Likewise.
20054         (__class_type_info::do_dyncast,
20055         __si_class_type_info::do_dyncast,
20056         __vmi_class_type_info::do_dyncast): Likewise.
20057         (__class_type_info::do_upcast,
20058         __si_class_type_info::do_upcast,
20059         __vmi_class_type_info::do_upcast): Likewise.
20060         (__dynamic_cast): Adjust.
20061         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
20062         (__function_type_info::is_function_p): Likewise.
20063         (__pointer_type_info::do_catch): Likewise. Adjust.
20064         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
20065         (__throw_type_match_rtti_2): Adjust.
20066         (__is_pointer): Adjust.
20067
20068 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
20069
20070         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
20071         (complete_ctor_identifier): New macro.
20072         (special_function_kind): Add sfk_copy_constructor and
20073         sfk_assignment_operator.
20074         (LOOKUP_HAS_IN_CHARGE): Remove.
20075         (cons_up_default_function): Rename to ...
20076         (implicitly_declare_fn): ... this.
20077         * call.c (build_new_method_call): Add in-charge parameters for
20078         constructors here.
20079         * class.c (add_implicitly_declared_members): Change parameter name
20080         from cant_have_assignment to cant_have_const_assignment.
20081         Replace calls to cons_up_default_function to implicitly_declare_fn.
20082         * cvt.c (ocp_convert): Use complete_ctor_identifier.
20083         * decl.c (initialize_predefined_identifiers): Initialize it.
20084         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
20085         complex expression.
20086         * init.c (expand_default_init): Don't calculate the in-charge
20087         parameter here.
20088         (build_new_1): Likewise.
20089         * lex.c (cons_up_default_function): Move to method.c.
20090         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
20091         (implicitly_declare_fn): New function.
20092         * typeck.c (build_static_cast): Use complete_ctor_identifier.
20093         (build_modify_expr): Likewise.
20094         * typeck2.c (build_functional_cast): Likewise.
20095
20096         Under the new ABI, constructors don't return `this'.
20097         * cp-tree.h (warn_reorder): Declare.
20098         (special_function_kind): New enum.
20099         (global_base_init_list): Remove declaration.
20100         (emit_base_init): Don't return a value.
20101         (check_base_init): Don't declare.
20102         (is_aggr_typedef): Likewise.
20103         * decl.c (check_special_function_return_type): New function.
20104         (return_types): Remove.
20105         (grokdeclarator): Use check_special_function_return_type.
20106         (start_function): Don't initialize ctor_label under the new ABI.
20107         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
20108         * init.c (begin_init_stmts): Move to top of file.
20109         (finish_init_stmts): Likewise.
20110         (warn_reorder): Don't declare.
20111         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
20112         value.
20113         (check_base_init): Remove.
20114         (is_aggr_typedef): Likewise.
20115         (build_new_1): Don't use the return value of a constructor.
20116         * semantics.c (setup_vtbl_ptr): Don't use the return value
20117         of emit_base_init.
20118         * typeck.c (check_return_expr): Don't magically convert return
20119         statements into `return this' in constructors under the new ABI.
20120
20121         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
20122         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
20123         (base_ctor_identifier): New macro.
20124         (base_dtor_identifier): Likewise.
20125         (deleting_dtor_identifier): Likewise.
20126         * decl.c: Don't include obstack.h.
20127         (obstack_chunk_alloc): Don't define.
20128         (obstack_chunk_free): Likewise.
20129         (struct predefined_identifier): New type.
20130         (initialize_predefined_identifiers): New function.
20131         (init_decl_processing): Use it.
20132         (debug_temp_inits): Remove.
20133         (start_method): Don't call preserve_data.
20134         (hack_incomplete_structures): Update comment.
20135         * init.c (init_init_processing): Don't initialize
20136         nelts_identifier.
20137         (build_offset_rf): Remove dead code.
20138         (build_delete): Use CLASSTYPE_N_BASECLASSES.
20139         * search.c (init_search_processing): Don't initialize
20140         vptr_identifier.
20141
20142 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20143
20144         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
20145         some sign_compare warnings.
20146
20147 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
20148
20149         Rename abi::__vmi_class_type_info members.
20150         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
20151         base_list, detail_masks members to vmi_flags, vmi_base_count,
20152         vmi_bases and vmi_flags_masks respectively.
20153         (__vmi_class_type_info::vmi_flags_masks): Rename
20154         details_unknown_mask to flags_unknown_mask.
20155         * tinfo.cc (__class_type_info::do_upcast): Adjust.
20156         (__vmi_class_type_info::do_find_public_src): Adjust.
20157         (__vmi_class_type_info::do_dyncast): Adjust.
20158         (__vmi_class_type_info::do_upcast): Adjust.
20159
20160 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
20161
20162         * tinfo.cc (convert_to_base): New function.
20163         (get_vbase_offset): Remove. Move into convert_to_base.
20164         (__vmi_class_type_info::do_find_public_src): Adjust.
20165         (__vmi_class_type_info::do_dyncast): Adjust.
20166         (__vmi_class_type_info::do_upcast): Adjust.
20167
20168 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
20169
20170         * tinfo.cc (operator=): Use __builtin_strcmp.
20171         * tinfo2.cc (before): Likewise.
20172
20173 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
20174
20175         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
20176         (DECL_SAVED_INLINE): Rename to ...
20177         (DECL_DEFERRED_FN): ... this.
20178         (in_function_p): Remove declaration.
20179         (mark_inline_for_output): Rename to ...
20180         (defer_fn): ... this.
20181         * decl.c (finish_function): Adjust call to mark_inline_for_output.
20182         (in_function_p): Remove definition.
20183         * decl2.c (saved_inlines): Rename to ...
20184         (deferred_fns): ... this.
20185         (saved_inlines_used): Rename to ...
20186         (deferred_fns_used): ... this.
20187         (mark_inline_for_output): Rename to ...
20188         (defer_fn): ... this.
20189         (finish_file): Adjust accordingly.
20190         (init_decl2): Likewise.
20191         * lex.c (cons_up_default_function): Likewise.
20192         * pt.c (mark_decl_instantiated): Likewise.
20193         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
20194         circumstances.
20195         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
20196         * semantics.c (expand_body): Defer more functions.
20197
20198 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
20199
20200         * vec.cc: New file.
20201         * Make-lang.in (CXX_LIB2FUNCS): Add it.
20202         (vec.o): Build it.
20203         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
20204         __cxa_vec_delete): Declare.
20205
20206 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
20207
20208         * rtti.c (dfs_class_hint_mark): New static function.
20209         (dfs_class_hint_unmark): New static function.
20210         (class_hint_flags): Use them.
20211
20212 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
20213
20214         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
20215
20216 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
20217
20218         * cp-tree.h (instantiate_decl): Change prototype.
20219         * decl2.c (mark_used): Adjust call.
20220         * optimize.c (inlinable_function_p): Adjust handling of templates.
20221         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
20222         (do_type_instantiation): Likewise.
20223         (instantiate_decl): Defer more templates.
20224         (instantiate_pending_templates): Adjust logic to handle inline
20225         friend functions.
20226
20227         * Makefile.in (GGC_H): New variable.  Use it throughout in place
20228         of ggc.h.
20229
20230         * call.c: Don't include obstack.h.  Include ggc.h.
20231         (obstack_chunk_alloc): Don't define.
20232         (obstack_chunk_free): Likewise.
20233         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
20234         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
20235         (pop_switch): Free it.
20236
20237         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
20238
20239         * dump.c (dequeue_and_dump): Don't try to print the bit_position
20240         if we don't have a DECL_FIELD_OFFSET.
20241
20242 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
20243
20244         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
20245         special_function_p.
20246
20247 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20248
20249         * cfns.gperf (hash, libc_name_p): Prototype.
20250
20251         * rtti.c (build_dynamic_cast_1): Constification.
20252
20253         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
20254
20255         * semantics.c (deferred_type_access_control): Prototype.
20256
20257 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
20258
20259         Correct many new ABI issues regarding vbase and vcall offset
20260         layout.
20261         * cp-tree.h (BINFO_VTABLE): Document.
20262         (struct lang_type): Tweak formatting.
20263         (BINFO_PRIMARY_BINFO): Add to documentation.
20264         (CLASSTYPE_VSIZE): Fix typo in comment.
20265         (CLASSTYPE_VBASECLASSES): Update documentation.
20266         (BINFO_VBASE_MARKED): Remove.
20267         (SET_BINFO_VBASE_MARKED): Likewise.
20268         (CLEAR_BINFO_VBASE_MARKED): Likewise.
20269         (BINFO_FIELDS_MARKED): Remove.
20270         (SET_BINFO_FIELDS_MARKED): Likewise.
20271         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
20272         (enum access_kind): New enumeration.
20273         (num_extra_vtbl_entries): Remove declaration.
20274         (size_extra_vtbl_entries): Likewise.
20275         (get_vtbl_decl_for_binfo): New function.
20276         (dfs_vbase_unmark): Remove declaration.
20277         (mark_primary_bases): Likewise.
20278         * class.c (SAME_FN): Remove.
20279         (struct vcall_offset_data_s): Move definition.
20280         (build_vbase_pointer): Use `build', not `build_binary_op', to
20281         access the vbase pointer under the new ABI.
20282         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
20283         (build_primary_vtable): Likewise.
20284         (dfs_mark_primary_bases): Move here from search.c.
20285         (mark_primary_bases): Likewise.
20286         (determine_primary_bases): Under the new ABI, don't make a base
20287         class a primary base just because we don't yet have any virtual
20288         functions.
20289         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
20290         (num_vfun_entries): Remove.
20291         (dfs_count_virtuals): Likewise.
20292         (num_extra_vtbl_entries): Likewise.
20293         (size_extra_vtbl_entries): Likewise.
20294         (layout_virtual_bases): Iterate in inheritance graph order under
20295         the new ABI.
20296         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
20297         indicate that a vfield is present.
20298         (init_class_processing): Initialize access_public_node, etc., from
20299         ak_public, etc.
20300         (get_vtbl_decl_for_binfo): New function.
20301         (dump_class_hierarchy_r): Likewise.
20302         (dump_class_hierarchy): Use it.
20303         (finish_vtbls): Build the vtbls in inheritance graph order.
20304         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
20305         (initialize_vtable): Use get_vtbl_decl_for_binfo.
20306         (accumulate_vtbl_inits): Add comments explaining why a pre-order
20307         walk is required.
20308         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
20309         where the vptr points, even for primary vtables.
20310         (build_vtbl_initializer): Adjust handling of vbase and vcall
20311         offsets.
20312         (build_vcall_and_vbase_vtable_entries): New function.
20313         (dfs_build_vbase_offset_vtbl_entries): Remove.
20314         (build_vbase_offset_vtbl_entries): Reimplement.
20315         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
20316         were already handled in a primary base class vtable.
20317         (build_vcall_offset_vtbl_entries): Adjust.
20318         (build_rtti_vtbl_entries): Adjust.
20319         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
20320         * init.c (expand_virtual_init): Simplify.
20321         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
20322         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
20323         * search.c (BINFO_ACCESS): New macro.
20324         (SET_BINFO_ACCESS): Likewise.
20325         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
20326         (access_in_type): Likewise.
20327         (dfs_accessible_p): Likewise.
20328         (protected_accessible_p): Likewise.
20329         (lookup_fnfields_1): Adjust documentation.
20330         (dfs_mark_primary_bases): Move to class.c
20331         (mark_primary_bases): Likewise.
20332         (dfs_vbase_unmark): Remove.
20333         (virtual_context): Use BINFO_FOR_VBASE.
20334         (dfs_get_vbase_types): Simplify.
20335         (dfs_build_inheritance_graph_order): New function.
20336         (get_vbase_types): Use it.
20337         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
20338
20339         * tinfo.cc (get_vbase_offset): New function.
20340         (__vmi_class_type_info::do_find_public_src): Use it.
20341         (__vmi_class_type_info::do_dyncast): Likewise.
20342         (__vmi_class_type_info::do_upcast): Likewise.
20343
20344 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
20345
20346         * lang-specs.h: Pass -fno-show-column to the preprocessor.
20347
20348 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
20349
20350         * rtti.c (class_hint_flags): Rename flags.
20351         (class_initializer): Remove flags.
20352         (synthesize_tinfo_var): Combine offset and flags. Add flags
20353         for __vmi_class_type_info.
20354         (create_tinfo_types): Remove flags from __class_type_info and
20355         __si_class_type_info. Merge flags and offset from
20356         base_class_type_info.
20357         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
20358         (__base_class_info::is_virtual_p): Adjust.
20359         (__base_class_info::is_public_p): Adjust.
20360         (__base_class_info::offset): New accessor.
20361         (__class_type_info::details): Remove member.
20362         (__class_type_info::__class_type_info): Lose details.
20363         (__class_type_info::detail_masks): Remove.
20364         (__si_class_type_info::__si_class_type_info): Lose details.
20365         (__vmi_class_type_info::details): New member.
20366         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
20367         (__vmi_class_type_info::detail_masks): New member.
20368         * tinfo.cc (__class_type_info::do_upcast): Initialize result
20369         with unknown_details_mask.
20370         (__vmi_class_type_info::do_find_public_src): Adjust
20371         (__vmi_class_type_info::do_dyncast): Adjust.
20372         (__vmi_class_type_info::do_upcast): Set result details, if
20373         needed. Adjust.
20374         (__dynamic_cast): Temporarily #if out optimization.
20375
20376 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
20377
20378         * rtti.c (get_tinfo_decl): Mark used.
20379         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
20380         mark as dealt with, if we output it.
20381
20382 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
20383
20384         * class.c: Reorganize to put virtual function table initialization
20385         machinery at the end of the file.
20386
20387 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
20388
20389         * class.c (finish_struct): Use bitsize_zero_node.
20390         * pt.c (instantiate_class_template): Likewise.
20391
20392 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
20393
20394         Put RTTI entries at negative offsets in new ABI.
20395         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
20396         vbase offset at index -3, not -1.
20397         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
20398         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
20399         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
20400         (build_rtti_vtbl_entries): New function.
20401         (set_rtti_entry): Remove.
20402         (build_primary_vtable): Don't use it.
20403         (build_secondary_vtable): Likewise.
20404         (start_vtable): Remove.
20405         (first_vfun_index): New function.
20406         (set_vindex): Likewise.
20407         (add_virtual_function): Don't call start_vtable.  Do call
20408         set_vindex.
20409         (set_primary_base): Rename parameter.
20410         (determine_primary_base): Likewise.
20411         (num_vfun_entries): Don't use skip_rtti_stuff.
20412         (num_extra_vtbl_entries): Include RTTI information.
20413         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
20414         (skip_rtti_stuff): Remove.
20415         (dfs_modify_vtables): Don't use it.
20416         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
20417         (layout_nonempty_base_or_field): Update size handling.
20418         (create_vtable_ptr): Tweak.
20419         (layout_class_type): Adjust parameter names.
20420         (finish_struct_1): Simplify.
20421         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
20422         (skip_rtti_stuff): Remove.
20423         (first_vfun_index): New function.
20424         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
20425         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
20426         (marked_vtable_pathp): Declare.
20427         (unmarked_vtable_pathp): Likewise.
20428         * error.c (dump_expr): Use first_vfun_index to calculate vtable
20429         offsets.
20430         * rtti.c (build_headof): Look for RTTI at negative offsets.
20431         (get_tinfo_decl_dynamic): Likewise.
20432         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
20433         here.
20434         (create_pseudo_type_info): Do it here instead.  Adjust so that
20435         vptr points at first virtual function.
20436         * search.c (marked_vtable_pathp): Make it global.
20437         (unmarked_vtable_pathp): Likewise.
20438         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
20439         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
20440         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
20441         (get_pure_virtuals): Likewise.
20442         (expand_upcast_fixups): Likewise.
20443         * tree.c (debug_binfo): Likewise.
20444         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
20445         negative offset.
20446
20447 2000-03-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
20448
20449         * class.c (check_field_decl): Fix typo.
20450         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
20451         (check_methods): Likewise.
20452         (check_field_decls): Likewise.
20453         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
20454         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
20455         Use DECL_RESULT_FLD, not DECL_RESULT.
20456         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
20457         * lex.c (identifier_type): Likewise.
20458         * pt.c (determine_specialization, lookup_template_class): Likewise.
20459         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
20460         (resolve_overloaded_unification, more_specialized): Likewise.
20461         * semantics.c (finish_member_declaration): Likewise.
20462         * typeck.c (build_x_function_call): Likewise.
20463
20464 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
20465
20466         * class.c (layout_empty_base): Handle empty bases with non-byte
20467         alignment.
20468         (build_base_field): Likewise.
20469         (layout_virtual_bases): Likewise.
20470
20471         * class.c (finish_struct_1): Fix typo in this change:
20472
20473         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
20474
20475 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
20476
20477         * decl.c (grokdeclarator): Count partial specializations when
20478         keeping track of how many template classes have been seen.
20479
20480         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
20481
20482 2000-03-25  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
20483
20484         * class.c (build_vbase_pointer_fields): layout_field now place_field.
20485         (get_vfield_offset): Use byte_position.
20486         (set_rtti_entry): Set OFFSET to ssizetype zero.
20487         (get_binfo_offset_as_int): Deleted.
20488         (dfs_record_base_offsets): Use tree_low_cst.
20489         (dfs_search_base_offsets): Likewise.
20490         (layout_nonempty_base_or_field): Reflect changes in RLI format
20491         and call byte_position.
20492         (layout_empty_base): Convert offset to ssizetype.
20493         (build_base_field): use rli_size_unit_so_far.
20494         (dfs_propagate_binfo_offsets): Do computation in proper type.
20495         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
20496         (layout_class_type): Reflect changes in RLI names and fields.
20497         (finish_struct_1): Set DECL_FIELD_OFFSET.
20498         * dump.c (dequeue_and_dump): Call bit_position.
20499         * expr.c (cplus_expand_constant): Use byte_position.
20500         * rtti.c (expand_class_desc): Use bitsize_one_node.
20501         * typeck.c (build_component_addr): Use byte_position and don't
20502         special case for zero offset.
20503
20504 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
20505
20506         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
20507
20508         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
20509         tinfo object.
20510         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
20511         vtable.
20512
20513 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
20514
20515         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
20516         DECL_P macros.
20517         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
20518         make_typename_type, check_initializer, cp_finish_decl,
20519         xref_tag): Likewise.
20520         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
20521         decl_namespace, arg_assoc_template_arg, arg_assoc,
20522         validate_nonmember_using_decl, do_class_using_decl): Likewise.
20523         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
20524         args_to_string): Likewise.
20525         * friend.c (is_friend): Likewise.
20526         * lex.c (note_got_semicolon, note_list_got_semicolon,
20527         is_global): Likewise.
20528         * method.c (build_overload_nested_name, build_overload_value,
20529         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
20530         * parse.y (typename_sub, typename_sub1): Likewise.
20531         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
20532         process_partial_specialization, convert_template_argument,
20533         template_args_equal, add_pending_template, lookup_template_class,
20534         for_each_template_parm_r, maybe_fold_nontype_arg,
20535         tsubst, instantiate_template, type_unification_real, unify,
20536         instantiate_pending_templates, set_mangled_name_for_template_decl):
20537         Likewise.
20538         * repo.c (repo_get_id, repo_template_used): Likewise.
20539         * search.c (lookup_field_1): Likewise.
20540         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
20541         * xref.c (classname): Likewise.
20542
20543 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
20544
20545         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
20546         (CANONICAL_BINFO): New macro.
20547         (BINFO_NEW_VTABLE_MARKED): Use it.
20548         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
20549         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
20550         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
20551         not TREE_TYPE.
20552         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
20553         (build_secondary_vtable): Likewise.
20554         (dfs_finish_vtbls): Likewise.
20555         (dfs_accumulate_vtbl_inits): Likewise.
20556         (accumulate_vtbl_inits): New function.
20557         (finish_vtbls): Make sure that virtual bases come after
20558         non-virtual bases in the vtable group.
20559         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
20560         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
20561         * search.c (struct vbase_info): Move definition.
20562         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
20563         (unmarked_new_vtable_p): Likewise.
20564         (dfs_mark_vtable_path): Remove.
20565         (dfs_mark_new_vtable): Remove.
20566         (dfs_unmark_new_vtable): Likewise.
20567         (dfs_clear_search_slot): Likewise.
20568         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
20569         (dfs_clear_vbase_slots): Likewise.
20570         (init_vbase_pointers): LIkewise.
20571
20572 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
20573
20574         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
20575         SIZETYPE to a non-SIZETYPE.
20576
20577 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
20578
20579         * class.c (layout_virtual_bases): Adjust names in conditionally
20580         compiled code.
20581
20582         * class.c (record_base_offsets): New function.
20583         (layout_conflict_p): Likewise.
20584         (layout_nonempty_base_or_field): Use it.
20585         (layout_empty_base): New function.
20586         (build_base_field): Use it.
20587         (build_base_fields): Update comment.
20588         (layout_virtual_bases): Fold in a little code form
20589         layout_basetypes.  Use layout_empty_base.
20590         (layout_basetypes): Remove.
20591         (end_of_class): New function.
20592         (layout_class_type): Use it.  Adjust.
20593
20594         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
20595         (fntype_p): Remove.
20596         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
20597         comment.
20598         (dfs_skip_nonprimary_vbases_markedp): Likewise.
20599         * typeck.c (fntype_p): Remove.
20600
20601         * cp-tree.h (TI_SPEC_INFO): Remove.
20602         (CLASSTYPE_TI_SPEC_INFO): Likewise.
20603         * pt.c (process_partial_specialization): Likewise.
20604
20605         * class.c (build_base_field): Fix thinko in computation of binfo
20606         offsets.
20607
20608         * tree.c (mark_local_for_remap_p): Mark variables declared in
20609         TARGET_EXPRs as well.
20610
20611 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
20612
20613         * typeck.c (require_complete_type, complete_type,
20614         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
20615         build_array_ref, convert_arguments, pointer_diff,
20616         build_x_unary_op, build_unary_op, build_c_cast,
20617         build_modify_expr): Use COMPLETE_TYPE_P etc.
20618         * call.c (is_complete, convert_like_real,
20619         build_new_method_call): Likewise.
20620         * class.c (build_vbase_pointer_fields, check_bases,
20621         build_base_field, finish_struct_1, pushclass): Likewise.
20622         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
20623         * decl.c (maybe_process_template_type_declaration, pushtag,
20624         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
20625         layout_var_decl, check_initializer, cp_finish_decl,
20626         grokdeclarator, require_complete_types_for_parms,
20627         grok_op_properties, xref_tag, xref_basetypes,
20628         check_function_type): Likewise.
20629         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
20630         * friend.c (do_friend): Likewise.
20631         * init.c (build_offset_ref): Likewise.
20632         * parse.y (structsp): Likewise.
20633         * pt.c (maybe_process_partial_specialization,
20634         tsubst_friend_function, instantiate_class_template, tsubst,
20635         do_type_instantiation, instantiate_pending_templates): Likewise.
20636         * repo.c (repo_get_id): Likewise.
20637         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
20638         synthesize_tinfo_var, emit_support_tinfos): Likewise.
20639         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
20640         * semantics.c (begin_class_definition): Likewise.
20641         * tree.c (build_cplus_method_type): Likewise.
20642         * typeck2.c (digest_init, build_functional_cast,
20643         add_exception_specifier): Likewise.
20644         * parse.h, parse.c: Regenerated.
20645
20646 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
20647
20648         * inc/cxxabi.h: New header file. Define new-abi entry points.
20649         (__pointer_type_info::target): Rename member to ...
20650         (__pointer_type_info::type): ... here.
20651         (__base_class_info::type): Rename member to ...
20652         (__base_class_info::base): ... here.
20653         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
20654         * cp-tree.h (CPTI_ABI): New global tree enumeration.
20655         (abi_node): New global tree node.
20656         * decl.c (abi_node): Document.
20657         (init_decl_processing): Initialize abi_node.
20658         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
20659         (get_vmi_pseudo_type_info): Likewise.
20660         (create_tinfo_types): Likewise.
20661         (emit_support_tinfos): Likewise.
20662         * tinfo.h (cxxabi.h): Include for new-abi.
20663         Move rtti class definitions to new header file.
20664         * tinfo.cc (abi): Use the namespace.
20665         (std): Move new abi rtti classes from here ...
20666         (__cxxabiv1): ... to here.
20667         * tinfo2.cc (cxxabi.h): Include for new-abi.
20668         Move rtti class definitions to new header file.
20669         (std): Move new abi rtti classes from here ...
20670         (__cxxabiv1): ... to here.
20671         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
20672         namespace.
20673
20674 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
20675             Jason Merrill  <jason@casey.cygnus.com>
20676
20677         * method.c (build_overload_int): Use host_integerp.
20678
20679 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
20680
20681         * init.c (build_offset_ref): Handle the case of a templated member
20682         function.
20683
20684 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
20685
20686         * except.c (expand_exception_blocks): Clear catch_clauses_last.
20687
20688 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
20689
20690         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
20691         * class.c (check_bitfield_decl): Turn illegal bitfields into
20692         non-bitfields.
20693         (dfs_propagate_binfo_offsets): Adjust for new size_binop
20694         semantics.
20695         (dfs_offset_for_unshared_vbases): Likewise.
20696         * cvt.c (cp_convert_to_pointer): Convert NULL to a
20697         pointer-to-member correctly under the new ABI.
20698         * expr.c (cplus_expand_constant): Don't use cp_convert when
20699         turning an offset into a pointer-to-member.
20700         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
20701         when dereferencing them under the new ABI.
20702         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
20703         of pointers-to-members under the new ABI.
20704
20705         * class.c (check_bitfield_decl): Remove restriction on really long
20706         bitfields.
20707         (layout_class_type): Implement new ABI handling of bitfields
20708         longer than their types.
20709
20710 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
20711
20712         * parse.y (extdefs): Call ggc_collect.
20713         * parse.c: Regenerated.
20714
20715 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
20716
20717         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
20718         (note_name_declared_in_class): Use OVL_CURRENT to get at a
20719         potential overload.
20720
20721 2000-03-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
20722
20723         * class.c (build_vbase_path): Use integer_zerop.
20724         (build_vtable_entry): Use tree_low_cst.
20725         (get_vfield_offset): Use bit_position.
20726         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
20727         Use tree_low_cst.
20728         (check_bitfield_decl): Set DECL_SIZE using convert.
20729         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
20730         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
20731         Use tree_low_cst.
20732         (finish_struct_1): Use bit_position.
20733         (dump_class_hierarchy): Use tree_low_cst.
20734         * cp-tree.h (min_precision): Add declaration.
20735         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
20736         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
20737         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
20738         * expr.c (cplus_expand_constant): Use bit_position.
20739         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
20740         * rtti.c (get_base_offset): Use bit_position.
20741         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
20742         host_integerp, and tree_low_cst.
20743         (pointer_int_sum): Use integer_zerop.
20744         (build_component_addr): Use bit_position.
20745
20746 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
20747
20748         * typeck.c (require_complete_type): Don't assume size_zero_node.
20749         (complete_type_or_else): Likewise.
20750
20751 2000-03-16  Steven Grady <grady@digitaldeck.com>
20752             Jason Merrill  <jason@casey.cygnus.com>
20753
20754         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
20755
20756 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
20757
20758         * decl2.c (grokfield): Bail out if type is error_mark_node.
20759
20760 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
20761
20762         * tinfo2.cc (__ptr_to_member_data): Rename to ...
20763         (__pointer_to_member_data): ... here. Adjust.
20764         * rtti.c (create_tinfo_types): Adjust.
20765
20766 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
20767
20768         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
20769         * decl.c (ref_desc_type_node): Undocument.
20770         * rtti.c (ptr_ref_initializer): Rename to ...
20771         (ptr_initializer): ... here. Adjust comments.
20772         (ptmd_initializer): Fix comment thinko.
20773         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
20774         (create_tinfo_types): Remove ref_desc_type_node init.
20775         * tinfo2.cc (__reference_type_info): Remove.
20776
20777 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
20778
20779         * decl.c (cp_finish_decl): Remove obsolete comment.
20780
20781         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
20782
20783 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
20784
20785         * cp-tree.h: Tweak documentation.
20786         * class.c (build_vbase_pointer_fields): Layout the fields, too.
20787         (avoid_overlap): Remove.
20788         (get_binfo_offset_as_int): New function.
20789         (dfs_serach_base_offsets): Likewise.
20790         (layout_nonempty_base_or_field): Likewise.
20791         (build_base_field): Layout fields here.  Avoid placing two objects
20792         of the same type at the same address, under the new ABI.
20793         (build_base_fields): Adjust accordingly.
20794         (create_vtable_ptr): Return the new field, but don't attach it to
20795         TYPE_FIELDS.
20796         (remove_base_field): Remove.
20797         (remove_base_fields): Remove.
20798         (layout_basetypes): Adjust accordingly.
20799         (layout_class_type): Call layout_field for each field, rather than
20800         just making a wholesale call to layout_type.
20801
20802 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
20803
20804         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
20805
20806 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
20807
20808         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
20809
20810         * except.c (dtor_nothrow): New fn.
20811         (do_pop_exception): Use it.  Take type parm.
20812         (push_eh_cleanup): Take type parm.
20813         (expand_start_catch_block): Pass it.
20814         (build_eh_type_type_ref): Accept null type.
20815
20816 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
20817
20818         * cp-tree.h (revert_static_member_fn): Change prototype.
20819         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
20820         (grok_op_properties): Likewise.
20821         (start_function): Likewise.
20822         (revert_static_member_fn): Simplify.
20823         * pt.c (check_explicit_specialization): Adjust call to
20824         revert_static_member_fn.
20825
20826 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
20827
20828         * cp-tree.h (scope_kind): New type.
20829         (tmpl_spec_kind): Likewise.
20830         (declare_pseudo_global_level): Remove.
20831         (pseudo_global_level_p): Rename to template_parm_scope_p.
20832         (pushlevel): Remove declaration.
20833         (begin_scope): New function.
20834         (finish_scope): Likewise.
20835         (current_tmpl_spec_kind): Likewise.
20836         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
20837         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
20838         Add template_spec_p.
20839         (toplevel_bindings_p): Adjust.
20840         (declare_pseudo_global_level): Remove.
20841         (pseudo_global_level_p): Rename to template_parm_scope_p.
20842         (current_tmpl_spec_kind): New function.
20843         (begin_scope): Likewise.
20844         (finish_scope): Likewise.
20845         (maybe_push_to_top_level): Adjust.
20846         (maybe_process_template_type_declaration): Likewise.
20847         (pushtag): Likewise.
20848         (pushdecl_nonclass_level): Likewise.
20849         (lookup_tag): Likewise.
20850         (grokfndecl): Handle member template specializations.  Share
20851         constructor and non-constructor code.
20852         * decl2.c (check_classfn): Handle member template specializations.
20853         * pt.c (begin_template_parm_list): Use begin_scope.
20854         (begin_specialization): Likewise.
20855         (end_specialization): Likewise.
20856         (check_explicit_specialization): Use current_tmpl_spec_kind.
20857         Handle member template specializations.
20858         (end_template_decl): Use finish_scope.  Remove call to
20859         get_pending_sizes.
20860         (push_template_decl_real): Remove bogus error message.
20861         (tsubst_decl): Fix typo in code contained in comment.
20862         (instantiate_template): Handle member template specializations.
20863         (most_general_template): Likewise.
20864
20865 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
20866
20867         * lex.c (whitespace_cr): Compress consecutive calls to warning().
20868         (do_identifier): Ditto for error().
20869
20870         * pt.c (convert_nontype_argument): Ditto for cp_error().
20871         (convert_template_argument): Ditto for cp_pedwarn().
20872
20873 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
20874
20875         * exception.cc (__check_null_eh_spec): New fn.
20876         * except.c (expand_end_eh_spec): Call it if the spec is throw().
20877
20878 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
20879
20880         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
20881         * except.c (expand_end_eh_spec): Add the return type.
20882         * rtti.c (throw_bad_cast): Add the parmtypes.
20883         (throw_bad_typeid): Likewise.
20884
20885         * semantics.c (expand_stmt): Only leave out rtl for unused
20886         artificials, and set DECL_IGNORED_P on them as well.
20887         * decl.c (wrapup_globals_for_namespace): Likewise.
20888
20889 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
20890
20891         * decl.c (maybe_commonize_var): Skip all artificial decls.
20892         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
20893
20894 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
20895
20896         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
20897         * cp-tree.h: Declare flag_enforce_eh_specs.
20898         * decl.c (store_parm_decls, finish_function): Check it.
20899
20900         C library functions don't throw.
20901         * Makefile.in (cfns.h): New target.
20902         (except.o): Depend on it.
20903         * Make-lang.in (cc1plus): Depend on cfns.gperf.
20904         * cfns.gperf: New file.
20905         * cfns.h: Generated.
20906         * except.c: Include it.
20907         (nothrow_libfn_p): New fn.
20908         * decl.c (grokfndecl): Use it.
20909         * cp-tree.h: Declare it.
20910
20911         * decl.c (push_overloaded_decl_1, auto_function,
20912         define_function): Lose.
20913         (build_library_fn_1): New static fn.
20914         (builtin_function): Use it.
20915         (get_atexit_node): Use build_library_fn_ptr.
20916         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
20917         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
20918         push_void_library_fn, push_throw_library_fn): New fns.
20919         * cp-tree.h: Declare them.
20920         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
20921         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
20922         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
20923         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
20924         * rtti.c (build_runtime_decl): Lose.
20925         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
20926         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
20927         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
20928
20929         * call.c (build_call): Remove result_type parm.
20930         Call mark_used on unused artificial fns.
20931         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
20932
20933 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
20934
20935         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
20936         appropriate.
20937         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
20938         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
20939         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
20940         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
20941         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
20942         expand_generic_desc): Likewise.
20943
20944 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
20945
20946         * exception.cc (__cp_pop_exception): Cleanup the original object.
20947
20948 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
20949
20950         * decl.c (grok_op_properties): Merge conversion to void warning
20951         with other silly op warnings.
20952
20953 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
20954
20955         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
20956         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
20957
20958 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
20959
20960         * decl.c (cp_make_fname_decl): New function.
20961         (wrapup_globals_for_namespace): Don't emit unused static vars.
20962         (init_decl_processing): Remove comment about use of
20963         array_domain_type. Set make_fname_decl.
20964         (cp_finish_decl): Remove __FUNCTION__ nadgering.
20965         * semantics.c (begin_compound_stmt): Remove
20966         current_function_name_declared flagging.
20967         (expand_stmt): Don't emit unused local statics.
20968         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
20969         specially.
20970
20971 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
20972
20973         * typeck.c (convert_for_assignment): Don't look at array
20974         initializer.
20975         * call.c (convert_like_real): Likewise.
20976
20977 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
20978
20979         Add initial support for '\uNNNN' specifier.
20980         * lex.c (read_ucs): New fn.
20981         (readescape, skip_white_space): Call it.
20982         (is_extended_char, is_extended_char_1): New fns.
20983         (utf8_extend_token): New fn, #if 0'd out.
20984         (real_yylex): Treat extended chars like letters.
20985
20986         * search.c (note_debug_info_needed): Walk the bases even if we
20987         weren't deferring the type itself.
20988
20989 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20990
20991         * decl2.c (finish_objects): Constify a char*.
20992
20993         * method.c (emit_thunk): Likewise.
20994
20995 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
20996
20997         * typeck.c (dubious_conversion_warnings): Look through
20998         REFERENCE_TYPE.
20999
21000 2000-03-06  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21001
21002         * class.c (dfs_modify_vtables): I is now unsigned.
21003         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
21004         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
21005         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
21006         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
21007         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
21008         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
21009         Call integer_all_onesp.
21010         * typeck2.c (process_init_constructor): Use compare_tree_int.
21011
21012         * lang-specs.h (as): Don't call if -syntax-only.
21013
21014 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
21015
21016         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
21017         RTL_EXPR_HAS_NO_SCOPE after all.
21018
21019 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
21020
21021         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
21022         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
21023         RTL_EXPR_HAS_NO_SCOPE.
21024
21025         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
21026         later.
21027
21028         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
21029
21030 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
21031
21032         * call.c (convert_like): Macrofy.
21033         (convert_like_with_context): New macro.
21034         (convert_like_real): Renamed from convert_like.  Add calling
21035         context parameters, for diagnostics. Add recursive flag.  Call
21036         dubious_conversion_warnings for outer conversion.
21037         (build_user_type_conversion): Use convert_like_with_context.
21038         (build_over_call): Likewise. Don't warn about dubious
21039         conversions here. Adjust convert_default_arg calls.
21040         (convert_default_arg): Add context parameters for diagnostics.
21041         Pass through to convert_like_with_context.
21042         * cp-tree.h (convert_default_arg): Add context parameters.
21043         (dubious_conversion_warnings): Prototype new function.
21044         * typeck.c (convert_arguments): Adjust convert_default_arg call.
21045         (dubious_conversion_warnings): New function, broken
21046         out of convert_for_assignment.
21047         (convert_for_assignment): Adjust.
21048
21049 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
21050
21051         * decl2.c (key_method): Break out from...
21052         (import_export_vtable, import_export_class): ...here.
21053
21054         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
21055         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
21056
21057         * search.c (note_debug_info_needed, dfs_debug_mark,
21058         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
21059         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
21060
21061 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
21062
21063         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
21064         typos.
21065
21066 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
21067
21068         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
21069         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
21070         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
21071         (lang_type): Split gets_new into has_new and has_array_new.
21072         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21073         (TYPE_GETS_NEW): Split into ...
21074         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
21075         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
21076         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
21077         (build_op_new_call): Don't declare.
21078         (build_new_1): Likewise.
21079         * call.c (build_op_new_call): Remove.
21080         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
21081         instead of TYPE_NEEDS_DESTRUCTOR.
21082         (finish_struct_bits): Likewise.
21083         (add_implicitly_declared_members): Likewise.
21084         (check_field_decl): Likewise.
21085         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
21086         correctly under the new ABI.
21087         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
21088         instead of TYPE_NEEDS_DESTRUCTOR.
21089         (initialize_local_var): Likewise.
21090         (destroy_local_var): Likewise.
21091         (cp_finish_decl): Likewise.
21092         (register_dtor_fn): Likewise.
21093         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
21094         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
21095         TYPE_VEC_DELETE_TAKES_SIZE here.
21096         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
21097         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
21098         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21099         (finish_destructor_body): Likewise.
21100         (maybe_build_cleanup_1): Likewise.
21101         * decl2.c (do_static_destruction): Likewise.
21102         * init.c (build_new_1): Make it static.
21103         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21104         (expand_cleanup_for_base): Likewise.
21105         (get_cookie_size): New function.
21106         (build_new_1): Handle array-new cookies correctly under the new
21107         ABI.
21108         (build_vec_delete_1): Likewise.
21109         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21110         (build_delete): Likewise.
21111         (build_vec_delete): Handle array-new cookies correctly under the new
21112         ABI.
21113         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21114         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
21115         TYPE_HAS_ARRAY_NEW_OPERATOR.
21116         * ptree.c (print_lang_type): Check them.
21117         * search.c (context_for_name_lookup): Fix typo in comment.
21118         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
21119         * tree.c (break_out_cleanups): Likewise.
21120         (build_cplus_array_test_1): Likewise.
21121         (cp_build_qualified_type_real): Likewise.
21122         * typeck.c (complete_type): Likewise.
21123
21124         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
21125         the command-line, not the end.
21126
21127 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
21128
21129         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
21130
21131 2000-03-02  Tom Tromey  <tromey@cygnus.com>
21132
21133         * cp-tree.h (build_java_class_ref): Declare.
21134         * init.c (build_java_class_ref): No longer static.
21135         * except.c (expand_throw): Generate a Java-style `throw' if the
21136         thrown object is a "Java" object.
21137         (initialize_handler_parm): Generate a Java-style lookup of
21138         exception info if the caught object is a "Java" object.
21139         (catch_language, catch_language_init): New globals.
21140         (decl_is_java_type): New function.
21141         (expand_start_catch_block): Don't call push_eh_info() or
21142         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
21143         class reference to build_catch_block.
21144
21145 2000-03-02  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21146
21147         * typeck.c (comptypes): Treat sizetype like its language equivalent.
21148
21149 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
21150
21151         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
21152         to merge reference/pointer code and fix incorrect warnings.
21153
21154 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
21155
21156         * search.c (protected_accessible_p): Use context_for_name_lookup.
21157
21158         * init.c (construct_virtual_bases): Fix thinko.
21159         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
21160
21161 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
21162
21163         * decl.c (current_function_decl): Move to toplev.c.
21164
21165 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
21166
21167         * pt.c (fn_type_unification): Unify return type, whenever
21168         provided.
21169         (get_bindings_real): Only pass return type when necessary.
21170         Remove explicit return type check.
21171         * class.c (resolve_address_of_overloaded_function): Pass desired
21172         return type to fn_type_unification.
21173
21174 2000-02-28  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21175
21176         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
21177         DECL_FIELD_SIZE.
21178         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
21179         DECL_FIELD_SIZE.
21180         * rtti.c (expand_class_desc): Likewise.
21181         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
21182         (THUNK_VCALL_OFFSET): Likewise.
21183         (THUNK_DELTA): Reflect changes in ../tree.h.
21184
21185 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
21186
21187         * search.c (protected_accessible_p): Also allow the access if
21188         the member is public in DERIVED.  Lose TYPE parm.
21189         (friend_accessible_p): Lose TYPE parm.
21190         (accessible_p): Adjust.
21191
21192 2000-02-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21193
21194         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
21195         on things that are not sizes; ssize_binop deleted.
21196         Call size_diffop when appropriate.
21197         (dfs_build_vcall_offset_vtbl_entries): Likewise.
21198         (build_primary_vtable, build_secondary_vtable): Likewise.
21199         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
21200         Variable I is HOST_WIDE_INT.
21201         (get_vfield_offset): Pass proper types to size_binop.
21202         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
21203         (finish_struct_1): Likewise.
21204         (skip_rtti_stuff): Arg N is now pointer to signed.
21205         (layout_class_type): Use size_zero_node.
21206         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
21207         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
21208         * decl.c (complete_arry_type): Pass proper types to size_binop.
21209         (xref_basetypes): BINFO_OFFSET is sizetype.
21210         * error.c (dump_expr): Don't use size_binop non-sizes.
21211         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
21212         * init.c (construct_virtual_bases): Fix type error.
21213         (build_vec_delete_1): Pass proper type to size_binop and don't
21214         fold result.
21215         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
21216         * rtti.c (get_base_offset): Pass proper type to size_binop.
21217         * search.c (dfs_find_vbases): Fix type error.
21218         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
21219         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
21220         * tree.c (debug_binfo): Variable N is signed.
21221         Use HOST_WIDE_INT_PRINT_DEC.
21222         * typeck.c (comptypes): sizetype is same as equivalent integer type.
21223         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
21224         size_one_node and size_zero_node.
21225         (c_alignof): Use size_one_node.
21226         (build_component_addr): Pass proper types to size_binop.
21227         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
21228
21229 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
21230
21231         Implement class scope using-declarations for functions.
21232         * class.c (handle_using_decl): Call add_method for used functions.
21233         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
21234         (add_method): Used functions are hidden by local functions.
21235         (check_bases_and_members): Handle using-decls before finalizing
21236         CLASSTYPE_METHOD_VEC.
21237         * call.c (add_function_candidate): Add ctype parm; if nonzero,
21238         override the type of 'this' accordingly.
21239         (add_template_candidate, add_template_candidate_real): Add ctype parm.
21240         (convert_class_to_reference, build_user_type_conversion_1,
21241         build_new_function_call, build_object_call, build_new_op,
21242         build_new_method_call): Pass ctype parm.
21243
21244         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
21245         the baselink.
21246         * call.c (convert_class_to_reference, build_user_type_conversion_1,
21247         build_new_function_call, build_object_call, build_new_op,
21248         build_new_method_call, build_op_delete_call): Don't get basetype_path
21249         from a baselink.
21250         * typeck.c (build_component_ref): Likewise.
21251         * init.c (build_offset_ref): Likewise.
21252         (resolve_offset_ref): Don't call enforce_access.
21253         Call build_scoped_ref.
21254         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
21255         would cause an error or if -pedantic.
21256         * class.c (alter_access): Lose binfo parm.
21257
21258 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
21259
21260         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
21261         types.
21262
21263 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
21264
21265         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
21266         pseudo_type_info creation into the std namespace
21267
21268 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
21269
21270         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
21271         (import_export_class): Remove declaration.
21272         * decl2.c (import_export_class): Make it static.
21273         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
21274         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
21275         EXPR_WITH_FILE_LOCATION.
21276         * lex.c (check_newline): Tweak filename/lineno setting.
21277         * semantics.c (begin_while_stmt): Fix typo in comment.
21278
21279 2000-02-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21280
21281         * lang-options.h (-fmessage-length=): Add missing option.
21282
21283         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
21284
21285 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
21286
21287         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
21288
21289 2000-02-25  Jim Wilson  <wilson@cygnus.com>
21290
21291         * optimize.c (expand_call_inline): Emit the return label before
21292         evaluating the return value.
21293
21294 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
21295
21296         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
21297         than duplicating functionality here.
21298         * optimize.c: Include input.h.
21299         (expand_call_inline): Use push_srcloc and pop_srcloc.
21300         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
21301         * parse.c: Regenerated.
21302         * Makefile.in (lex.o): Depend on input.h.
21303         (optimize.o): Likewise.
21304
21305 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
21306
21307         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
21308         function type, rather than ICE.
21309
21310 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
21311
21312         * decl.c (grokdeclarator): Call decl_type_access_control.
21313         * parse.y (parse_end_decl): Don't call decl_type_access_control if
21314         decl is null.
21315
21316 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
21317
21318         * decl.c (decls_match): Remove obsolete static member nadgering.
21319
21320 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
21321
21322         * decl.c (grokdeclarator): Change ANSI to ISO.
21323         * lex.c (consume_string, readescape, do_identifier): Likewise.
21324         (parse_float, real_yylex): Likewise.
21325         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
21326         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
21327         new_type_id, maybe_label_decls, simple_stmt,
21328         for.init.statement): Likewise.
21329         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
21330         * semantics.c (finish_named_return_value): Likewise.
21331         * parse.c: Regenerate.
21332
21333 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
21334
21335         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
21336         (CPTI_CLASS_STAR_TYPE): Remove.
21337         (vtable_index_type): Likewise.
21338         (class_star_type_node): Remove.
21339         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
21340         (build_binary_op_nodefault): Remove.
21341         * call.c (build_new_op): Use build_binary_op instead of
21342         build_binary_op_nodefault.
21343         * decl.c (init_decl_processing): Remove class_star_type_node
21344         initialization.  Make delta_type_node ptrdiff_type_node under the
21345         new ABI.  Initialize vtable_index_type.
21346         (build_ptrmemfunc_type): Build different structures for the new
21347         ABI.
21348         (build_enumerator): Use build_binary_op instead of
21349         build_binary_op_nodefault.
21350         * method.c (build_overload_value): Mangle pointers-to-members
21351         appropriately under the new ABI.
21352         * typeck.c (build_array_ref): Use build_binary_op instead of
21353         build_binary_op_nodefault.
21354         (get_member_function_from_ptrfunc): Adjust for the new ABI.
21355         (build_binary_op_nodefault): Rename to ...
21356         (build_binary_op): ... this.  Remove old version.  Adjust for
21357         pointer-to-member comparisons under the new ABI.
21358         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
21359         (build_ptrmemfunc): Adjust for the new ABI.
21360         (expand_ptrmemfunc_cst): Likewise.
21361         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
21362         (pfn_from_ptrmemfunc): Adjust for the new ABI.
21363
21364 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
21365
21366         * call.c (build_object_call): Compress consecutive calls to
21367         cp_error.
21368         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
21369         (build_op_delete_call): Adjust message formatting.
21370
21371         * class.c (check_bases): Compress consecutive calls to
21372         cp_pedwarn.
21373         (finish_struct_anon): Say 'ISO C++'.
21374
21375         * decl.c (start_decl): Same here.
21376         (grok_reference_init): Likewise.
21377         (grokfndecl): Correct message formatting.
21378         (grokfndecl): Improve diagnostic.
21379         (check_static_variable_definition): Likewise. Say 'ISO C++'
21380         (compute_array_index_type): Say 'ISO C++'
21381         (create_array_type_for_decl): Compress consecutive calls to
21382         cp_error.
21383         (grokdeclarator): Say 'ISO C++'
21384         (grok_op_properties): Likewise.
21385
21386         * decl2.c (delete_sanity): Clairify diagnostic.
21387         (check_member_template): Same here.
21388         (grok_function_init): Use consistent terminology.
21389
21390         * expr.c (do_case): Say 'ISO C++'
21391
21392         * friend.c (do_friend): Compress consecutive calls to warning.
21393
21394 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
21395
21396         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
21397         * class.c (build_secondary_vtable): Reorganize.  Don't create a
21398         new vtable under the new ABI.
21399         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
21400         computing the size.
21401         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
21402         the initializing elements.
21403         (initialize_vtable): New function.
21404         (dfs_finish_vtbls): Use it.
21405         (dfs_accumulate_vtbl_inits): New function.
21406         (finish_vtbls): Merge primary and secondary vtables under the new
21407         ABI.
21408         (finish_struct_1): Remove redundant call to layout_vtable_decl.
21409         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
21410         aren't VAR_DECLs.
21411
21412         * class.c (build_vtable): New function, split out from ...
21413         (get_vtable_decl): ... here, and ...
21414         (build_secondary_vtable): ... here.
21415
21416         * pt.c (tsubst_decl): Fix formatting.
21417
21418 2000-02-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
21419
21420         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
21421         (avoid_overlap, build_base_field): Likewise.
21422         (build_base_field, build_base_fields, is_empty_class):
21423         Test DECL_SIZE with integer_zero.
21424         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
21425         * cp-tree.h (struct lang_type): New field size_unit.
21426         (CLASSTYPE_SIZE_UNIT): New macro.
21427         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
21428         (cp_finish_decl): Delete -Wlarger-than processing.
21429         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
21430         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
21431         * tree.c (make_binfo): binfo vector is one entry longer.
21432         (walk_tree): Walk DECL_SIZE_UNIT.
21433
21434 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
21435
21436         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
21437         comment.
21438         (build_vtable_entry): Don't assume all vtable entries are
21439         functions.
21440         (build_vtbl_initializer): Adjust accordingly.
21441         (get_vtable_decl): Fix formatting.
21442
21443 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
21444
21445         * semantics.c (deferred_type_access_control): Walk the entire
21446         type_lookups list.
21447         (save_type_access_control): Rename from
21448         initial_deferred_type_access_control.  Just remember the value.
21449         (decl_type_access_control): New fn.
21450         (begin_function_definition): Use deferred_type_access_control, after
21451         we've started the function.  Set type_lookups to error_mark_node.
21452         * parse.y (frob_specs, fn.def1): Adjust.
21453         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
21454         (parse_end_decl, parse_bitfield0, parse_method): New fns.
21455         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
21456         (after_type_component_declarator0): Likewise.
21457         (after_type_component_declarator): Likewise.
21458         (notype_component_declarator): Likewise.
21459         * cp-tree.h: Adjust.
21460
21461         * decl.c (redeclaration_error_message): Allow redeclaration of
21462         namespace-scope decls.
21463
21464 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
21465
21466         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
21467
21468 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
21469
21470         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
21471         * decl2.c (grokclassfn): Likewise.
21472
21473         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
21474
21475         * decl2.c (lang_decode_option): Don't set default message length
21476         here.
21477         * lex.c (lang_init_options): Set it here.
21478
21479 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
21480
21481         Make DECL_CONTEXT mean the class in which a member function was
21482         declared, even for a virtual function.
21483         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
21484         (DECL_FRIEND_CONTEXT): New macro.
21485         (DECL_REAL_CONTEXT): Remove.
21486         (SET_DECL_FRIEND_CONTEXT): Likewise.
21487         (DECL_VIRTUAL_CONTEXT): Adjust.
21488         (DECL_CLASS_SCOPE_P): Use TYPE_P.
21489         (add_friends): Remove.
21490         (hack_decl_function_context): Likewise.
21491         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
21492         CP_DECL_CONTEXT.
21493         (build_over_call): Fix indentation.  Use DECL_CONTEXT
21494         instead of DECL_CLASS_CONTEXT.
21495         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
21496         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
21497         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
21498         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
21499         (build_base_field): Likewise.
21500         (finish_struct_1): Likewise.
21501         (build_self_reference): Likewise.
21502         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
21503         DECL_REAL_CONTEXT.
21504         (pushtag): Use decl_function_context, not
21505         hack_decl_function_context.
21506         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
21507         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
21508         (pushdecl): Remove bogus code.
21509         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
21510         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
21511         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
21512         Use decl_function_context, nothack_decl_function_context.
21513         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
21514         (grokdeclarator): Likewise.  Use decl_function_context, not
21515         hack_decl_function_context.
21516         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
21517         (start_function): Use DECL_FRIEND_CONTEXT, not
21518         DECL_CLASS_CONTEXT.  Use decl_function_context, not
21519         hack_decl_function_context.
21520         (finish_function): Use decl_function_context, not
21521         hack_decl_function_context.
21522         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
21523         DECL_CLASS_CONTEXT.
21524         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
21525         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
21526         (grokfield): Likewise.
21527         (finish_builtin_type): Likewise.
21528         (finish_vtable_vardec): Use decl_function_context, not
21529         hack_decl_function_context.
21530         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
21531         (start_static_initialization_or_destruction): Likewise.
21532         (finish_static_initialization_or_destruction): Likewise.
21533         (mark_used): Adjust logic for deciding when to synthesize methods.
21534         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
21535         DECL_REAL_CONTEXT.
21536         * error.c (dump_function_decl): Use DECL_CONTEXT, not
21537         DECL_CLASS_CONTEXT.
21538         * friend.c (is_friend): Likewise.
21539         (add_friends): Remove.
21540         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
21541         * lex.c (begin_definition_of_inclass_inline): Use
21542         decl_function_context, not hack_decl_function_context.
21543         (process_next_inline): Likewise.
21544         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
21545         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
21546         DECL_CLASSS_CONTEXT.
21547         (hack_identifier): Likewise.
21548         (synthesize_method):  Use decl_function_context, not
21549         hack_decl_function_context.
21550         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
21551         DECL_REAL_CONTEXT.
21552         (is_member_template): Use decl_function_context, not
21553         hack_decl_function_context.  Use DECL_CONTEXT, not
21554         DECL_CLASS_CONTEXT.
21555         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
21556         DECL_CLASS_CONTEXT.
21557         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
21558         DECL_REAL_CONTEXT.
21559         (push_template_decl_real): Likewise.
21560         (instantiate_class_template): Don't call add_friends.
21561         (tsubst_default_argument): Use DECL_CONTEXT, not
21562         DECL_REAL_CONTEXT.
21563         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
21564         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
21565         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
21566         DECL_CLASS_CONTEXT.
21567         * repo.c (repo_inline_used): Likewise.
21568         * search.c (current_scope): Adjust for new _CONTEXT macros.
21569         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
21570         DECL_REAL_CONTEXT.
21571         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
21572         (lookup_fnfields_here):Likewise.
21573         (check_final_overrider): Likewise.
21574         (init_vbase_pointers): Likewise.
21575         (virtual_context): Likewise.
21576         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
21577         (expand_body): Use decl_function_context, not
21578         hack_decl_function_context.
21579         * tree.c (hack_decl_function_context): Remove.
21580         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
21581         DECL_CLASS_CONTEXT.
21582         * typeck2.c (error_not_base_type): Likewise.
21583
21584 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
21585
21586         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
21587
21588 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21589
21590         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
21591
21592 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
21593
21594         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
21595
21596 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
21597
21598         * decl2.c (lang_decode_option): Enable automatic line wrapping.
21599
21600 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
21601
21602         * parse.y (frob_specs): Split out...
21603         (parse_decl): From here.
21604         (fn.def2): Call initial_deferred_type_access_control.
21605         (after_type_component_declarator0): Call frob_specs.
21606         (notype_component_declarator0): Likewise.
21607         * search.c (friend_accessible_p): Nested classes are friends of their
21608         enclosing classes.
21609
21610 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
21611
21612         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
21613         used to create an implicit temporary.
21614
21615         * class.c (dfs_modify_vtables): Tweak calculation of functions to
21616         override.
21617
21618 2000-02-08  Nathan Sidwell  <nathan@acm.org>
21619
21620         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
21621         strip array element qualifiers too.
21622
21623 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
21624
21625         * decl.c (store_parm_decls): Don't build cleanups for parameters
21626         while processing_template_decl.
21627
21628 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
21629
21630         * cp-tree.h (struct saved_scope): Add incomplete field.
21631         (namespace_scope_incomplete): New macro.
21632         * decl.c (pushdecl): Use it.
21633         (hack_incomplete_structures): Use it.  See through artificial
21634         binding levels.
21635         (mark_saved_scope): Mark it.
21636
21637         Implement access control for nested types.
21638         * search.c (type_access_control): New fn.
21639         (accessible_p): Now we do perform access control for types.
21640         * semantics.c (deferred_type_access_control): New fn.
21641         (initial_deferred_type_access_control): New fn.
21642         (begin_function_definition): Call it.  Add lookups parm.
21643         * decl.c (struct binding_level): Add this_class field.
21644         (pushlevel_class): Set it.
21645         (mark_binding_level): Mark it.
21646         (lookup_name_real): Use it.  Call type_access_control.
21647         (mark_saved_scope): Mark lookups field.
21648         * cp-tree.h (flagged_type_tree): Add lookups field.
21649         (struct saved_scope): Add lookups field.
21650         (type_lookups): New macro.
21651         * parse.y (declmods): Now <ftype>.
21652         (parse_decl): Add lookups parm.  Call
21653         initial_deferred_type_access_control.
21654         (lang_extdef): Clear type_lookups.
21655         (typed_declspecs, declmods, typespec): Set lookups field.
21656         (initdcl): Call deferred_type_access_control.
21657         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
21658         component_decl_1, named_parm): Adjust.
21659         * friend.c (is_friend): Nested classes are friends of their
21660         enclosing classes.
21661
21662         * class.c (currently_open_derived_class): New fn.
21663         * method.c (hack_identifier): Use it.
21664
21665         * lex.c (do_identifier): Remove obsolete code.
21666
21667         * parse.y (typed_typespecs): Propagate new_type_flag properly.
21668
21669 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
21670
21671         * tinfo.h: Remove apostrophes from C++ comment (xgettext
21672         thinks this file is plain C).
21673
21674 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21675
21676         * Makefile.in (call.o): Depend on $(EXPR_H).
21677
21678         * call.c: Include "expr.h".
21679
21680         * class.c (dump_class_hierarchy): Add prototype.
21681
21682         * search.c (dfs_get_pure_virtuals): Likewise.
21683
21684 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
21685
21686         * parse.y (simple_stmt): Allow :: token in asm parameter list.
21687         * parse.c: Rebuilt.
21688
21689 2000-01-31  Jim Wilson  <wilson@cygnus.com>
21690
21691         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
21692         Store it in DECL_FCONTEXT.
21693         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
21694
21695 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
21696
21697         * tinfo.h (old abi): #include "tconfig.h".
21698         * tinfo.cc (convert_to_base): Move into old abi section.
21699
21700 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
21701
21702         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
21703         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
21704         (BINFO_PRIMARY_BINFO): New macro.
21705         (BF_DELTA): Rename to ...
21706         (BV_DELTA): ... this.
21707         (BF_VCALL_INDEX): Rename to ...
21708         (BV_VCALL_INDEX): ... this.
21709         (BF_FN): Rename to ...
21710         (BV_FN): ... this.
21711         * class.c (build_vbase_path): Adjust for changes to reverse_path.
21712         (set_rtti_entry): Rename BF_ macros to BV_ variants.
21713         (modify_vtable_entry): Simplify.
21714         (add_virtual_function): Rename BF_ macros to BV_ variants.
21715         (build_vtable_initializer): Likewise.
21716         (get_class_offset_1): Remove.
21717         (dfs_get_class_offset): Likewise.
21718         (get_class_offset): Likewise.
21719         (dfs_find_final_overrider): New function.
21720         (find_final_overrider): Likewise.
21721         (modify_one_vtable): Remove.
21722         (dfs_find_base): New function.
21723         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
21724         find_final_overrider.
21725         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
21726         virtuals.
21727         (dfs_fixup_vtable_deltas): Remove.
21728         (override_one_vtable): Remove.
21729         (merge_overrides): Likewise.
21730         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
21731         unreal chilren of virtual bases.
21732         (finish_struct_1): Don't use merge_overrides.  Don't use
21733         dfs_fixup_vtable_deltas.
21734         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
21735         BINFOs.
21736
21737 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
21738             Jason Merrill  <jason@yorick.cygnus.com>
21739
21740         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
21741
21742 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
21743
21744         * exception.cc (__throw_bad_typeid): Add missing std::.
21745
21746 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21747
21748         * cp-tree.h (make_thunk): PROTO -> PARAMS.
21749
21750 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
21751
21752         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
21753
21754         Runtime support for new-abi rtti.
21755         * inc/typeinfo (type_info::operator!=): Define in class.
21756         (type_info::before, type_info::name, type_info::operator==,
21757         type_info::operator!=): Define new ABI implementations.
21758         (type_info::is_pointer_p, type_info::is_function_p): Declare
21759         new virtual functions.
21760         (type_info::do_catch, type_info::do_upcast): Likewise.
21761
21762         * tinfo.h (__base_class_info): Define new class.
21763         (__class_type_info): Likewise.
21764         (__si_class_type_info): Likewise.
21765         (__vmi_class_type_info): Likewise.
21766         (__dynamic_cast): Prototype.
21767
21768         * tinfo.cc: Conditionalize old and new rtti mechanisms.
21769         (type_info::is_pointer_p): Define new function.
21770         (type_info::is_function_p): Likewise.
21771         (type_info::do_catch): Likewise.
21772         (type_info::do_upcast): Likewise.
21773         (vtable_prefix): New structure for vtable access.
21774         (adjust_pointer): Define new template function.
21775         (contained_p, public_p, virtual_p, contained_public_p,
21776         contained_nonpublic_p, contained_nonvirtual_p): Define new
21777         functions.
21778         (nonvirtual_base_type): New local variable.
21779         (__class_type_info::~__class_type_info): Define.
21780         (__si_class_type_info::~__si_class_type_info): Likewise.
21781         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
21782         (__class_type_info::do_catch): Define new function.
21783         (__class_type_info::do_upcast): Likewise.
21784         (__class_type_info::find_public_src): Likewise.
21785         (__class_type_info::do_find_public_src): Likewise.
21786         (__si_class_type_info::do_find_public_src): Likewise.
21787         (__vmi_class_type_info::do_find_public_src): Likewise.
21788         (__class_type_info::do_dyncast): Likewise.
21789         (__si_class_type_info::do_dyncast): Likewise.
21790         (__vmi_class_type_info::do_dyncast): Likewise.
21791         (__class_type_info::do_upcast): Likewise.
21792         (__si_class_type_info::do_upcast): Likewise.
21793         (__vmi_class_type_info::do_upcast): Likewise.
21794         (__dynamic_cast): Likewise.
21795
21796         * tinfo2.cc (__fundamental_type_info): Define new class.
21797         (__pointer_type_info): Likewise.
21798         (__reference_type_info): Likewise.
21799         (__array_type_info): Likewise.
21800         (__function_type_info): Likewise.
21801         (__enum_type_info): Likewise.
21802         (__ptr_to_member_type_info): Likewise.
21803         (__fundamental_type_info::~__fundamental_type_info): Define.
21804         (__pointer_type_info::~__pointer_type_info): Likewise.
21805         (__reference_type_info::~__reference_type_info): Likewise.
21806         (__array_type_info::~__array_type_info): Likewise.
21807         (__function_type_info::~__function_type_info): Likewise.
21808         (__enum_type_info::~__enum_type_info): Likewise.
21809         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
21810         (__pointer_type_info::do_catch): Define new function.
21811         (__ptr_to_member_type_info::do_catch): Define new function.
21812
21813         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
21814         (__is_pointer): Likewise.
21815
21816         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
21817
21818 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
21819
21820         * cp/class.c (build_vtable): Rename to build_primary_vtable.
21821         (prepare_fresh_vtable): Rename to build_secondary_vtable.
21822         (make_new_vtable): New function.
21823         (modify_vtable_entry): Handle generation of new vtables correctly.
21824         (modify_one_vtable): Remove unused parameter.
21825         (dfs_fixup_vtable_deltas): Likewise.
21826         (override_one_vtable): Use build_secondary_vtable.
21827         (finish_struct_1): Use build_primary_vtable and
21828         build_secondary_vtable.
21829
21830 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
21831
21832         * cp/decl.c: Adjust variable names, comments, help strings.
21833
21834 2000-01-29  Nathan Sidwell  <nathan@acm.org>
21835
21836         * new2.cc (operator delete[]): Use operator delete, don't assume
21837         implementation.
21838
21839 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
21840
21841         * class.c (build_vtbl_initializer): Add argument to
21842         build_vtable_entry call.
21843
21844 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
21845
21846         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
21847         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
21848         (BF_DELTA): New macro.
21849         (BF_VCALL_INDEX): Likewise.
21850         (BF_FN): Likewise.
21851         (THUNK_VCALL_OFFSET): Likewise.
21852         (make_thunk): Change prototype.
21853         * class.c (build_vtable_entry): Integrate
21854         build_vtable_entry_for_fn.  Handle vcall indices.
21855         (build_vtable_entry_for_fn): Remove.
21856         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
21857         BF_VCALL_INDEX, BF_FN.
21858         (modify_vtable_entry): Integrate common code from
21859         modify_one_vtable and dfs_fixup_vtable_deltas.
21860         (add_virtual_function): Set BF_VCALL_INDEX.
21861         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
21862         and BF_FN.
21863         (modify_one_vtable): Simplify.
21864         (dfs_fixup_vtable_deltas): Likewise.
21865         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
21866         * method.c (make_thunk): Handle vcall indices.
21867
21868 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
21869
21870         Compiler side new abi rtti (not enabled).
21871         * cp-tree.h (new_abi_rtti_p): New macro.
21872         (emit_support_tinfos): Prototype new function.
21873         (tinfo_decl_p): Likewise.
21874         (emit_tinfo_decl): Likwise.
21875         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
21876         macros.
21877         (doing_runtime): New local static.
21878         (init_rtti_processing): Add new-abi initializer.
21879         (get_tinfo_decl): Add new-abi logic.
21880         (tinfo_from_decl): Likewise.
21881         (build_dynamic_cast_1): Likewise.
21882         (qualifier_flags): New static function.
21883         (tinfo_base_init): Likewise.
21884         (generic_initializer): Likewise.
21885         (ptr_ref_initializer): Likewise.
21886         (ptmd_initializer): Likewise.
21887         (class_hint_flags): Likewise.
21888         (class_initializer): Likewise.
21889         (synthesize_tinfo_var): Likewise.
21890         (create_real_tinfo_var): Likewise.
21891         (create_pseudo_type_info): Likewise.
21892         (get_vmi_pseudo_type_info): Likewise.
21893         (create_tinfo_types): Likewise.
21894         (emit_support_tinfos): New global function.
21895         (tinfo_decl_p): New global predicate.
21896         (emit_tinfo_decl): New global function.
21897         * class.c (set_rtti_entry): Generalize for old and new rtti.
21898         (build_vtbl_initializer): Likewise.
21899         * decl2.c (finish_file): Likewise.
21900
21901 2000-01-27  Jim Wilson  <wilson@cygnus.com>
21902
21903         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
21904         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
21905
21906 2000-01-27  Mike Stump  <mrs@wrs.com>
21907
21908         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
21909         for scopes.
21910
21911 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
21912
21913         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
21914
21915 2000-01-26  J"orn Rennecke <amylaar@cygnus.co.uk>
21916
21917         * optimize.c (calls_setjmp_r): Supply new argument
21918         to special_function_p.
21919
21920 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21921
21922         * call.c: PROTO -> PARAMS.
21923         * class.c: Likewise.
21924         * cp-tree.h: Likewise.
21925         * cvt.c: Likewise.
21926         * decl.c: Likewise.
21927         * decl.h: Likewise.
21928         * decl2.c: Likewise.
21929         * dump.c: Likewise.
21930         * errfn.c: Likewise.
21931         * error.c: Likewise.
21932         * except.c: Likewise.
21933         * expr.c: Likewise.
21934         * init.c: Likewise.
21935         * input.c: Likewise.
21936         * lex.c: Likewise.
21937         * lex.h: Likewise.
21938         * method.c: Likewise.
21939         * optimize.c: Likewise.
21940         * parse.y: Likewise.
21941         * pt.c: Likewise.
21942         * repo.c: Likewise.
21943         * rtti.c: Likewise.
21944         * search.c: Likewise.
21945         * semantics.c: Likewise.
21946         * spew.c: Likewise.
21947         * tree.c: Likewise.
21948         * typeck.c: Likewise.
21949         * typeck2.c: Likewise.
21950         * xref.c: Likewise.
21951
21952 2000-01-25  Richard Henderson  <rth@cygnus.com>
21953
21954         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
21955
21956 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
21957
21958         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
21959         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
21960         (struct vcall_offset_data_s): New type.
21961         (dfs_vcall_offset_queue_p): New function.
21962         (dfs_build_vcall_offset_vtbl_entries): Likewise.
21963         (build_vcall_offset_vtbl_entries): Likewise.
21964         (layout_vtable_decl): Likewise.
21965         (num_vfun_entries): Likewise.
21966         (num_extra_vtbl_entries): Add the entries for vcall offsets.
21967         (build_vtbl_initializer): Likewise.
21968         (dfs_finish_vtabls): Use layout_vtable_decl.
21969         (modify_one_vtables): Always duplicate vtables under the new ABI.
21970         (finish_struct_1): Use layout_vtable_decl.
21971
21972 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21973
21974         * decl.c (member_function_or_else): Change third arg from a format
21975         specifier to an `enum overload_flags'.  Callers changed.
21976
21977 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
21978
21979         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
21980         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
21981         build_const_cast, get_delta_difference, check_return_expr): Avoid
21982         ANSI string concatenation usage.
21983
21984 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
21985
21986         * class.c (layout_class_type): Put the fields required to make a
21987         class non-empty at the end, not the beginning, of the TYPE_FIELDs
21988         list.
21989
21990 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
21991
21992         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
21993         template.
21994
21995         * decl2.c (mark_used): Do instantiate inlines that have been
21996         explicitly instantiated.
21997
21998 2000-01-24  Richard Henderson  <rth@cygnus.com>
21999
22000         * call.c (build_over_call): Use expand_tree_builtin.
22001         * typeck.c (build_function_call_real): Likewise.
22002         (build_binary_op_nodefault): Handle unordered compares.
22003
22004 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
22005
22006         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
22007         cp_tree_index values.
22008         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
22009         New global node #defines for them.
22010         * rtti.c (call_void_fn): Replace with ...
22011         (build_runtime_decl): ... new static function.
22012         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
22013         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
22014         (build_dynamic_cast_1): Always produce correctly typed result.
22015         Explicitly produce type_info addresses. Use dynamic_cast_node.
22016         * exception.cc (__throw_bad_cast): Return `void *'.
22017         (__throw_bad_typeid): Return `const type_info &'.
22018
22019 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
22020
22021         * cp-tree.h (get_vtable_decl): Prototype new function.
22022         * class.c (get_vtable_decl): New function. Broken out from ...
22023         (build_vtable): ... here. Use it.
22024         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
22025         by get_vtable_decl.
22026
22027 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
22028
22029         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
22030         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
22031         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
22032         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
22033         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
22034         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
22035         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
22036         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
22037         (CPTI_TINFO_VAR_ID): New enumeration.
22038         (__tp_desc_type_node, __access_mode_type_node,
22039         __bltn_desc_type_node, __user_desc_type_node,
22040         __class_desc_type_node, __ptr_desc_type_node,
22041         __attr_desc_type_node, __func_desc_type_node,
22042         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
22043         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
22044         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
22045         enum_desc_type_node, class_desc_type_node,
22046         si_class_desc_type_node, vmi_class_desc_type_node,
22047         ptmd_desc_type_node, base_desc_type_node): New #defines.
22048         (tinfo_fn_id, tinfo_fn_type): Rename to ...
22049         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
22050         (tinfo_var_id): New enumeration.
22051         (DECL_TINFO_FN_P): Augment comment.
22052         * decl.c (cp_global_trees): Adjust documentation.
22053         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
22054         tinfo_decl_type and tinfo_var_id.
22055         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
22056         (build_typeid): Remove unused variable.
22057         (get_tinfo_var): Use tinfo_var_id.
22058         (tinfo_name): New static function.
22059         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
22060         (tinfo_from_decl): Likewise.
22061         (get_base_offset): New static function, broken out of
22062         expand_class_desc.
22063         (expand_si_desc): Use tinfo_name.
22064         (expand_class_desc): Likewise. Lose local static variable.
22065         Use base_desc_type_node. Use get_base_offset.
22066         (expand_ptr_desc): Use tinfo_name.
22067         (expand_attr_desc): Likewise.
22068         (expand_generic_desc): Likewise.
22069
22070         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
22071         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
22072
22073 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
22074
22075         * cp-tree.h (__eprintf): Remove declaration.
22076         * tree.c (__eprintf): Remove definition.
22077
22078 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
22079             Mark Mitchell  <mark@codesourcery.com>
22080
22081         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
22082         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
22083
22084 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
22085
22086         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
22087
22088 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
22089
22090         * cp-tree.h (register_dtor_fn): New function.
22091         * decl.c (destroy_local_static): Rename to ...
22092         (register_dtor_fn): ... this.  Give it external linkage.
22093         (expand_static_init): Use it.
22094         * decl2.c (do_static_initialization): Likewise, if using
22095         __cxa_atexit.
22096         (do_static_destruction): Check that __cxa_atexit is not in use.
22097         (finish_file): Don't call do_static_destruction if using
22098         __cxa_atexit.
22099
22100         * typeck.c (convert_arguments): Restore two-message error
22101         reporting.
22102
22103 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
22104
22105         Remap dynamic cast hint values to be consistent across ABIs.
22106         * search.c (dynamic_cast_base_recurse): Remap generated value.
22107         (get_dynamic_cast_base_type): Adjust documentation.
22108         * tinfo.h (__user_type_info::dyncast): Likewise.
22109         (__user_type_info::find_public_subobj): Remap BOFF meaning.
22110         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
22111         (__class_type_info::do_dyncast): Likewise.
22112         (__class_type_info::do_find_public_subobj): Likewise.
22113         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
22114
22115 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
22116
22117         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
22118
22119         * typeck2.c (incomplete_type_error): Restore previous
22120         cp_error and cp_error_at call sequence.
22121
22122 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
22123
22124         * class.c (dump_class_hierarchy): Make format agree with argument;
22125         cast pointer to unsigned long and print with %lx.
22126
22127 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
22128
22129         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
22130
22131         * typeck.c (composite_pointer_type, common_type,
22132         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
22133         build_function_call_real, convert_arguments,
22134         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
22135         build_unary_op, mark_addressable, build_compound_expr,
22136         build_static_cast, build_reinterpret_cast, build_const_cast,
22137         build_c_cast, build_modify_expr, get_delta_difference,
22138         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
22139         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
22140         into a single one.
22141         * typeck2.c (readonly_error, abstract_virtuals_error,
22142         process_init_constructor, check_for_new_type): Likewise.
22143
22144 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
22145
22146         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
22147         VAR_DECLs.
22148
22149 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
22150
22151         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
22152         (build_x_typeid): Likewise.
22153         (get_tinfo_fn): Likewise.
22154         (get_tinfo_fn_unused): Rename to ...
22155         (get_tinfo_decl): ... here.
22156         * rtti.c (build_headof): Replace logic error with assertion.
22157         (get_tinfo_fn_dynamic): Rename to ...
22158         (get_tinfo_decl_dynamic): ... here. Make static. Use
22159         complete_type_or_else.
22160         (build_x_typeid): Move into ...
22161         (build_typeid): ... here. Adjust call to
22162         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
22163         throw_bad_typeid expression.
22164         (get_tinfo_fn_unused): Rename to ...
22165         (get_tinfo_decl): ... here. Adjust comment.
22166         (get_tinfo_fn): Delete.
22167         (tinfo_from_decl): New static function.
22168         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
22169         (get_typeid): Use complete_type_or_else.
22170         (build_dynamic_cast_1): Adjust calls to
22171         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
22172         * parse.y (primary): Adjust call to build_typeid.
22173         * except.c (build_eh_type_type_ref): Adjust call to
22174         get_tinfo_decl. Mark as used.
22175         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
22176         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
22177         * parse.c: Regenerated.
22178
22179 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
22180
22181         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
22182         calling convention.
22183         (resolves_to_fixed_type_p): Document calling convention.
22184         * rtti.c (build_x_typeid): Initialize NONNULL.
22185
22186         * cp-tree.h (build_shared_int_cst): New function.
22187         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
22188         * class.c (modify_vtable_entry): Likewise.
22189         (add_virtual_function): Split out code to generated shared
22190         INTEGER_CSTs to build_share_int_cst.
22191         (modify_all_vtables): Handle all the overridden functions here.
22192         Add overridden functions from non-primary virtual bases to the
22193         primary vtable.
22194         (finish_struct_1): Adjust call to modify_all_vtables.  Add
22195         overridden functions from non-primary bases to the vtable.
22196         * tree.c (build_shared_int_cst): New function.
22197
22198         * cp-tree.h (scratchalloc): Remove.
22199         (build_scratch_list): Likewise.
22200         * call.c (convert_class_to_reference): Replace build_scratch_list
22201         and build_expr_list with build_tree_list.
22202         (add_candidate): Replace scratchalloc with expralloc.  Note memory
22203         leak.
22204         (build_user_type_conversion_1):  Replace build_scratch_list
22205         and build_expr_list with build_tree_list.
22206         (build_new_op): Likewise.
22207         (build_op_delete_call): Likewise.
22208         (convert_like): Likewise.
22209         * cvt.c (ocp_convert): Likewise.
22210         * decl.c (start_decl): Likewise.
22211         (start_function): Likewise.
22212         (finish_destructor_body): Likewise.
22213         (maybe_build_cleanup_1): Likewise.
22214         * decl2.c (reparse_decl_as_expr): Likewise.
22215         * init.c (perform_member_init): Likewise.
22216         (expand_cleanup_for_base): Likewise.
22217         (build_builtin_delete_call): Likewise.
22218         (build_new_1): Likewise.
22219         (build_delete): Likewise.
22220         * method.c (do_build_assign_ref): Likewise.
22221         * parse.y (already_scoped_stmt): Likewise.
22222         (nontrivial_exprlist): Likewise.
22223         (net_initializer): Likewise.
22224         (initlist): Likewise.
22225         * parse.c: Regenerated.
22226         * rtti.c (build_x_typeid): Likewise.
22227         (build_dynamic_cast_1): Likewise.
22228         * typeck.c (build_x_compound_expr): Likewise.
22229         (build_static_cast): Likewise.
22230         (build_modify_expr): Likewise.
22231
22232         * cp-tree.h (DECL_VINDEX): Add documentation.
22233         * class.c (build_vtable_entry): Likewise.
22234         (start_vtable): Add comment.
22235         (add_virtual_function): Replace pending_hard_virtuals with
22236         overridden_virtuals and pending_virtuals with new_virtuals.
22237         Replace redundant assignments with assertions.
22238         (check_for_override): Add comment.
22239         (check_bases_and_members): Replace pending_hard_virtuals with
22240         overridden_virtuals and pending_virtuals with new_virtuals.
22241         (create_vtbl_ptr): Likewise.
22242         (layout_class_type): Likewise.
22243         (finish_struct_1): Likewise.  Add comments.
22244
22245 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
22246
22247         * class.c (finish_struct_1): Replace redundant code with
22248         assertions.
22249
22250         * cp-tree.h (flag_new_abi): Move.
22251         (flag_use_cxa_atexit): Likewise.
22252         (flag_honor_std): Likewise.
22253         (flag_rtti): Likewise.
22254         (vbase_offsets_in_vtable_p): Define.
22255         (vptrs_present_everywhere_p): Likewise.
22256         (TYPE_CONTAINS_VPTR_P): Likewise.
22257         (dfs_walk_real): Declare.
22258         * class.c (build_vbase_pointer_fields): Check
22259         vbase_offsets_in_vtable_p.
22260         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
22261         BINFO_VPTR_FIELD.
22262         (build_vbase_offset_vtbl_entries): Simplify.
22263         (build_vbase_offset_vtbl_entries): Adjust.
22264         (build_vbase_pointer): Add ability to look up vbase offsets in
22265         vtable.
22266         (start_vtable): New function.
22267         (add_virtual_function): Use it.
22268         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
22269         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
22270         (build_vtbl_initializer): Take the type of the complete object as
22271         input.  Use it to correctly calculate vbase offsets.
22272         (dfs_finish_vtbls): Pass the complete type to
22273         build_vtbl_initializer.
22274         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
22275         (create_vtable_ptr): Create a vtable even if there are no
22276         new virtual functions, under the new ABI.
22277         (finish_struct_1): Likewise.
22278         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
22279         * decl.c (exapnd_static_init): Remove call to
22280         preserve_initializer.
22281         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
22282         vtables.
22283         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
22284         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
22285         (construct_virtual_bases): Don't initialize virtual base pointers
22286         under the new ABI.
22287         (build_aggr_init): Clean up comment.
22288         (expand_aggr_init_1): Likewise.
22289         * rtti.c (expand_class_desc): Store the virtual function table
22290         index where the vbase offset lives in the offset field.
22291         * search.c (dfs_walk_real): Make it global.
22292         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
22293         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
22294
22295         * tinfo.h (USItype): Make it signed under the new ABI.
22296         * tinfo.cc (convert_to_base): New function.  Encapsulate base
22297         conversion logic here.
22298         (__class_type_info::do_upcast): Use it.
22299         (__class_type_info::do_dyncast): Likewise.
22300         (__class_type_info::do_find_public_subobj): Likewise.
22301
22302         * init.c (construct_virtual_bases): Don't look up the addresses of
22303         virtual bases at run-time.
22304
22305         * class.c (build_vbase_pointer): Relocate.
22306         (build_vbase_pointer_fields): Likewise.
22307         (dfs_build_vbase_offset_vtbl_entries): Likewise.
22308         (build_vbase_offset_vtbl_entries): Likewise.
22309
22310         * decl.c (init_decl_processing): Complain if -fnew-abi
22311         -fno-vtable-thunks is used.
22312
22313         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
22314         flag_new_abi.
22315
22316 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
22317
22318         * cp-tree.h (num_extra_vtbl_entries): New function.
22319         (size_extra_vtbl_entries): Likewise.
22320         (dfs_vtable_path_unmark): Likewise.
22321         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
22322         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
22323         * class.c (num_extra_vtbl_entries): New function.
22324         (size_extra_vtbl_entries): Likewise.
22325         (dfs_build_vbase_offset_vtbl_entries): New function.
22326         (build_vbase_offset_vtbl_entries): Likewise.
22327         (build_vtbl_initializer): Use it.
22328         (finish_struct_1): Adjust vtable sizes (using
22329         num_extra_vtbl_entries).
22330         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
22331         THUNK_DECL is non-NULL before expanding it.
22332         * init.c (expand_virtual_init): Adjust the vtable pointer by
22333         size_extra_vtbl_entries before storing it.
22334         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
22335         Handle TREE_LIST parameters here, not in the dfs_* functions.
22336         (dfs_unmarked_real_bases_queue_p): Adjust.
22337         (dfs_marked_real_bases_queue_p): Likewise.
22338         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
22339         (dfs_vtable_path_marked_real_bases_queue_p): New function.
22340         (dfs_vtable_path_unmark): Likewise.
22341
22342 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
22343
22344         * optimize.c (copy_body_r): Clear the operand three of a
22345         TARGET_EXPR when copying it.
22346
22347 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
22348
22349         * method.c (build_decl_overload_real): Check whether we are in ::
22350         before returning __builtin_new/delete.
22351
22352 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
22353
22354         * pt.c (tsubst_friend_function): Improve comment.
22355         (instantiate_decl): Avoid crashing when a "nested" function is
22356         instantiated from the top level.
22357
22358         * dump.c (dqeueue_and_dump): Dump
22359         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
22360
22361 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22362
22363         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
22364
22365 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
22366
22367         * g++spec.c (lang_specific_driver): Add -fnew-abi if
22368         ENABLE_NEW_GXX_ABI defined.
22369         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
22370         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
22371         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
22372
22373 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
22374
22375         * decl.c (start_cleanup_fn): Call pushdecl.
22376
22377         * call.c (convert_class_to_reference): Fix typos.
22378         (build_conditional_expr): Handle errors gracefully.
22379         * class.c (push_nested_class): Likewise.
22380         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
22381         (DECL_THIS_EXTERN): Use it.
22382         (DECL_THIS_STATIC): Likewise.
22383         * cvt.c (convert_to_void): Handle errors gracefully.
22384         (build_expr_type_conversion): Likewise.
22385         * decl.c (maybe_push_decl): Likewise.
22386         (start_decl_1): Likewise.
22387         (require_complete_types_for_parms): Likewise.
22388         * parse.y (structsp): Likewise.
22389         (base_class): Likewise.
22390         * parse.c: Regenerated.
22391         * pt.c (finish_member_template_decl): Likewise.
22392         * typeck.c (decay_conversion): Likewise.
22393
22394         * cp-tree.h (dfs_skip_vbases): New function.
22395         (find_vbase_instance): Likewise.
22396         * class.c (determine_primary_base): Allow a nearly empty base to
22397         serve as a primary base class under the new ABI.
22398         (get_class_offset_1): Rename to ...
22399         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
22400         messages here.
22401         (get_class_offset): Use it.  Issue error messages here.
22402         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
22403         find the right copies of virtual bases.
22404         (fixup_vtable_deltas1): Rename to ...
22405         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
22406         bases as primary bases.
22407         (fixup_vtable_deltas): Remove.
22408         (override_one_vtable): Handle virtual bases as primary bases.
22409         (merge_overrides): Likewise.
22410         (finish_struct_1): Likewise.
22411         (dump_class_hierarchy): Dump primary-ness of bases as well.
22412         * search.c (mark_primary_bases): Use a pre-order traversal to
22413         handle primary virtual bases.
22414         (dfs_skip_vbases): New fiunction.
22415         (expand_upcast_fixups): Adjust to handle primary virtual bases.
22416         (fixup_virtual_upcast_offsets): Likewise.
22417         (fixup_all_virtual_upcast_offsets): Likewise.
22418         (dfs_find_vbase_instances): New function.
22419         (find_vbase_instance): Likewise.
22420
22421 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
22422
22423         * lex.c (DIR_SEPARATOR): Delete macro.
22424
22425 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
22426
22427        * decl2.c (lang_decode_option): Handle automatic line wrapping
22428        option.
22429
22430 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
22431
22432         * friend.c (do_friend): Don't resolve scopes when processing
22433         template declarations, even if the qualifying scope doesn't
22434         involve template parameters.
22435
22436 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
22437
22438         * class.c (dfs_modify_vtables_queue_p): Remove.
22439         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
22440         and dfs_marked_real_bases_queue_p instead of
22441         dfs_modify_vtables_queue_p.
22442
22443         * class.c (build_vbase_path): Simplify.
22444         (dfs_propagate_binfo_offsets): New function.
22445         (propagate_binfo_offsets): Use it.
22446         (remove_base_field): Simplify.
22447         (dfs_set_offset_for_vbases): Remove.
22448         (dfs_set_offset_for_shared_vbases): New function.
22449         (dfs_set_offset_for_unshared_vbases): Likewise.
22450         (layout_virtual_bases): Use them.
22451         (layout_basetypes): Don't call propagate_binfo_offsets.
22452         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
22453         for the vbases.
22454
22455         * class.c (build_base_field): New function, split out from ...
22456         (build_base_fields): ... here.  Use it.  Allocate primary bases
22457         first, under the new ABI.
22458         (get_vtable_entry): Remove.
22459         (remove_base_field): New function, split out from ...
22460         (remove_base_fields): ... here.  Adjust since primary bases come
22461         first under the new ABI.
22462
22463         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
22464         (initialize_vtbl_ptrs): New function.
22465         (expand_indirect_vtbls_init): Change prototype.
22466         (convert_pointer_to_vbase): Declare.
22467         * init.c (expand_direct_vtbls_init): Remove.
22468         (dfs_initialize_vtbl_ptrs): New function.
22469         (initialize_vtbl_ptrs): Likewise.
22470         (emit_base_init): Use initialize_vtbl_ptrs.
22471         * search.c (convert_pointer_to_vbase): Make it global.
22472         (expand_indirect_vtbls_init): Remove vtable initialization code.
22473         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
22474
22475         * class.c (dfs_finish_vtbls): New function.
22476         (finish_vtbls): Use it.
22477         (dump_class_hierarchy): New function.
22478
22479         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
22480         (BINFO_VBASE_PRIMARY_P): New macro.
22481         (BINFO_VIRTUALS): Add to documentation.
22482         (SET_BINFO_PRIMARY_MARKED_P): Remove.
22483         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
22484         (dfs_mark_primary_bases_queue_p): Likewise.
22485         (dfs_unmarked_real_bases_queue_p): New function.
22486         (dfs_marked_real_bases_queue_p): Likewise.
22487         * search.c (dfs_mark_primary_bases): Adjust.
22488         (mark_primary_bases): Likewise.
22489         (get_shared_vbase_if_not_primary): New function.
22490         (dfs_unmarked_real_bases_queue_p): Likewise.
22491         (dfs_marked_real_bases_queue_p): Likewise.
22492         (dfs_get_pure_virtuals): Simplify.
22493         (get_pure_virtuals): Likewise.
22494
22495 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22496
22497         * lex.c: Include tm_p.h.
22498
22499 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
22500
22501         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
22502
22503 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
22504
22505         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
22506         * pt.c (instantiate_decl): Defer comdat templates that might not be
22507         needed.
22508
22509         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
22510         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
22511         (finish_file): Likewise.
22512
22513         * decl2.c (import_export_class): Undo 12/14 change.
22514
22515         * error.c (dump_decl): operator new, not operatornew.
22516
22517         * class.c (field_decl_cmp): A nontype is "greater" than a type.
22518         * search.c (lookup_field_1): Look for the last field with the
22519         desired name.
22520
22521 2000-01-05  Nathan Sidwell  <nathan@acm.org>
22522
22523         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
22524         FUNCTION_DECL.
22525
22526 2000-01-05  Nathan Sidwell  <nathan@acm.org>
22527
22528         * typeck.c (build_static_cast): Don't strip target qualifiers
22529         when casting from a class.
22530
22531 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22532
22533         * class.c (warn_hidden): Initialize variable `fndecl'.
22534
22535 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
22536
22537         * decl.c (flag_isoc9x): New variable to be able to use code in
22538         c-common.c.  For now always zero.
22539
22540 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
22541
22542         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
22543         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
22544         or unshare_base_binfos for virtual bases here.
22545         * search.c (dfs_get_vbase_types): Do it here.
22546         (get_vbase_types): Adjust.
22547
22548 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
22549
22550         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
22551         (BINFO_PRIMARY_MARKED_P): Use flag 5.
22552         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
22553         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
22554         (unmark_primary_bases): Remove declaration.
22555         (unmarkedp): Declare.
22556         (dfs_vbase_unmark): Likewise.
22557         * class.c (determine_primary_base): Return immediately if there
22558         are no base classes.  Call mark_primary_bases here.
22559         (modify_all_direct_vtables): Remove.
22560         (modify_all_indirect_vtables): Remove.
22561         (dfs_modify_vtables_queue_p): New function.
22562         (dfs_modify_vtables): New function.
22563         (modify_all_vtables): Use them.
22564         (build_base_fields): Build FIELD_DECLs for primary virtual base
22565         classes.
22566         (create_vtable_ptr): Don't call determine_primary_base here.
22567         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
22568         (dfs_set_offset_for_vbases): ... this.
22569         (layout_virtual_bases): Use it.
22570         (layout_class_type): Call determine_primary_base here.
22571         * search.c (unmarkedp): Make it global.
22572         (shared_marked_p): Simplify.
22573         (shared_unmarked_p): Likewise.
22574         (dfs_primary_bases_queue_p): Remove.
22575         (dfs_unmark_primary_bases): Likewise.
22576         (unmark_primary_bases): Likewise.
22577         (mark_primary_bases): Simplify.
22578         (get_pure_virtuals): Don't call mark_primary_bases here.
22579         (dfs_vbase_unmark): New function.
22580         (get_vbase_types): Simplify.
22581
22582         * class.c (struct base_info): Remove.
22583         (determine_primary_base): Take has_virtual_p rather than a
22584         base_info as input.  Don't calculate max_has_virtual.
22585         (finish_struct_bits): Remove max_has_virtual argument.
22586         (create_vtable_ptr): Remove max_has_virtual_p argument.
22587         (layout_virtual_bases): Remove max argument.
22588         (layout_basetypes): Likewise.
22589         (layout_class_type): Remove max_has_virtual_p argument.
22590         (finish_struct_1): Remove max_has_virtual.
22591
22592         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
22593         (layout_basetypes): Remove.
22594         * class.c (propagate_binfo_offsets): Moved here from tree.c.
22595         Update to handle primary virtual bases.
22596         (remove_base_fields): New function, split out from
22597         layout_basetypes.
22598         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
22599         (layout_virtual_bases): New function, split out from
22600         layout_basetypes.  Update to handle primary virtual bases.
22601         (layout_basetypes): Moved here from tree.c.  Use
22602         remove_base_fields and layout_virtual_bases.
22603         * search.c (dfs_mark_primary_bases_queue_p): New function.
22604         (mark_primary_bases): Use it.
22605         * tree.c (CEIL): Remove.
22606         (propagate_binfo_offsets): Remove.
22607         (layout_basetypes): Remove.
22608
22609 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
22610
22611         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
22612         (BINFO_PRIMARY_MARKED_P): New macro.
22613         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
22614         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
22615         (mark_primary_bases): New function.
22616         (unmark_primary_bases): Likewise.
22617         * search.c (get_abstract_virtuals_1): Remove.
22618         (dfs_mark_primary_bases): New function.
22619         (mark_primary_bases): Likewise.
22620         (dfs_unmark_primary_bases): Likewise.
22621         (unmark_primary_bases): Likewise.
22622         (dfs_get_pure_virtuals): Likewise.
22623
22624 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
22625
22626         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
22627         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
22628         (modify_one_vtable): Adjust.
22629         (fixup_vtable_deltas1): Likewise.
22630         (override_one_vtable): Likewise.
22631         * search.c (get_abstract_virtuals_1): Likewise.
22632         (get_pure_virtuals): Likewise.
22633         (expand_upcast_fixups): Likewise.
22634         * tree.c (debug_binfo): Likewise.
22635
22636         * class.c (build_vtable): Don't return a value.  Don't rebuild
22637         vtables for bases that have already been handled.
22638         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
22639         already been handled.
22640         (modify_one_vtable): Adjust accordingly.
22641         (fixup_vtable_deltas1): Likewise.
22642         (finish_struct_1): Likewise.
22643
22644 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
22645
22646         * call.c (build_new_method_call): Also check destructors.
22647
22648 See ChangeLog.2 for earlier changes.