OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
index 7821a08..cb625ed 100644 (file)
@@ -1,3 +1,357 @@
+2001-05-02  Mark Mitchell  <mark@codesourcery.com>
+
+       * decl.c (compute_array_index_type): Don't try to do anything with
+       the indices when processing a template.
+
+2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * call.c: NULL_PTR -> NULL.
+       * class.c: Likewise.
+       * cvt.c: Likewise.
+       * decl.c: Likewise.
+       * decl2.c: Likewise.
+       * except.c: Likewise.
+       * init.c: Likewise.
+       * rtti.c: Likewise.
+       * search.c: Likewise.
+       * tree.c: Likewise.
+       * typeck.c: Likewise.
+       * typeck2.c: Likewise.
+
+2001-05-02  Mark Mitchell  <mark@codesourcery.com>
+
+       * decl2.c (do_using_directive): Revert previous patch.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * cp-tree.def (USING_STMT): New statement node.
+       * cp-tree.h (USING_STMT_NAMESPACE): New macro.
+       * decl2.c (do_using_directive): Add USING_STMT to statement
+       tree. Don't emit errors when processing template decl.
+       * pt.c (tsubst_expr, USING_STMT case): New case.
+       * semantics.c (cp_expand_stmt, USING_STMT case): New case.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * call.c (build_new_op): Convert args from reference here.
+       (build_conditional_expr): Don't convert here.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * spew.c (last_token_id): New static variable.
+       (read_token): Set it here.
+       (yyerror): Use it here.
+
+2001-04-30  Richard Henderson  <rth@redhat.com>
+
+        * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
+       * decl.c: Likewise.
+
+2001-04-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * gxxint.texi: Remove.
+       * Make-lang.in: Remove all traces of gxxint.texi.
+
+Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
+
+       * decl2.c (start_static_initialization_or_destruction): Correct
+       logic to handle the -fno-use-cxa-atexit case.
+
+2001-04-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * optimize.c (update_cloned_parm): New function.
+       (maybe_clone_body): Use it.  Update the `this' parameter too.
+
+2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+       * decl2.c (unsupported_options): Add new-abi.
+       * lang-options.h: Remove no longer supported options.
+
+2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * except.c (can_convert_eh): Don't check template parms,
+       typename types etc.
+
+2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * optimize.c (maybe_clone_body): Copy parameter names and locations.
+
+2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * cp-tree.h (adjust_clone_args): Prototype new function.
+       * class.c (adjust_clone_args): New function.
+       * decl.c (start_function): Call it for in charge ctors.
+
+2001-04-26  Mark Mitchell  <mark@codesourcery.com>
+
+       * method.c (use_thunk): Make sure that thunks really are emitted
+       when requested.
+
+2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
+
+       * mangle.c (write_chars): New macro.
+       (hwint_to_ascii): New function
+       (write_number): Use it.
+       (write_integer_cst): Deal with really big numbers.
+
+2001-04-25  Mark Mitchell  <mark@codesourcery.com>
+
+       * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
+       the clone.
+
+2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * decl.c (grokdeclarator): Set context of namespace scope
+       TYPE_DECLS.
+
+2001-04-24  Zack Weinberg  <zackw@stanford.edu>
+
+       * cp/optimize.c: Include hashtab.h.
+       (struct inline_data): Add tree_pruner.
+       (expand_call_inline, expand_calls_inline): Use it when calling
+       walk_tree.
+       (optimize_function): Initialize and free tree_pruner.
+
+2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
+
+       Lazy __FUNCTION__ generation.
+       * cp-tree.def (FUNCTION_NAME): Remove.
+       * cp-tree.h (function_name_declared_p): Remove.
+       (cp_fname_init): Prototype.
+       * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
+       don't call declare_function_name. Call start_fname_decls.
+       (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
+       clobber the line number.
+       (cp_fname_init): New function.
+       (start_function): Call start_fname_decls.
+       (finish_function): Call finish_fname_decls.
+       * lex.c (reswords): Add slots for __FUNCTION__ et al.
+       (rid_to_yy): Add mappings for __FUNCTION__ et al.
+       * optimize.c (maybe_clone_body): Remove function_name_declared_p.
+       * parse.y (VAR_FUNC_NAME): New token.
+       (primary): Add VAR_FUNC_NAME.
+       * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
+       generation.
+       (tsubst, FUNCTION_NAME case): Remove.
+       (tsubst_copy, FUNCTION_NAME case): Remove.
+       (tsubst_expr, DECL_STMT case): Be careful with a
+       DECL_PRETTY_FUNCTION_P.
+       (instantiate_decl): Remove function_name_declared_p.
+       * semantics.c (begin_compound_statement): Don't call
+       declare_function_name here.
+       (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
+       (finish_translation_unit): Call finish_fname_decls.
+       (expand_body): Remove function_name_declared_p.
+       * typeck2.c (digest_init): Allow any ERROR_MARK.
+
+2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * pt.c (tsubst_decl): Use VOID_TYPE_P.
+       * semantics.c: Fix some typos.
+
+2001-04-23  Phil Edwards  <pme@sources.redhat.com>
+
+       * cp/decl2.c (flag_honor_std):  Always initialize to 1.
+
+2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
+
+2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
+
+       * except.c (build_throw): Wrap the initialization of the exception
+       object in a MUST_NOT_THROW_EXPR.
+       (do_free_exception): #if 0.
+
+2001-04-20  Mark Mitchell  <mark@codesourcery.com>
+
+       * cp-tree.h (finish_enum): Change prototype.
+       * decl.c (finish_enum): Reorganize.
+       * parse.y (structsp): Adjust calls to finish_enum.
+
+2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * tree.c (cp_tree_equal): Adjust final switch formatting. Add
+       't' case.
+
+2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
+       (layout_empty_base): Return at end flag.
+       (build_base_field): Likewise.
+       (build_base_fields): Likewise.
+       (layout_virtual_bases): Don't add 1 to eoc value.
+       (end_of_class): Use full size for empty bases.
+       (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
+       empty bases. Don't add 1 to eoc value. Only add trailing padding
+       if we're an empty class with no empty bases.
+       (dump_class_hierarchy): Dump size and alignment.
+
+2001-04-20  Jakub Jelinek  <jakub@redhat.com>
+
+       * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
+       ICS_BAD_FLAG.
+
+2001-04-20  Jakub Jelinek  <jakub@redhat.com>
+
+       * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
+       is found, look first if name does not match the structure name.
+
+2001-04-19  Mark Mitchell  <mark@codesourcery.com>
+
+       * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
+       set.
+       (SET_DECL_LANGUAGE): New macro.
+       * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
+       (pushdecl): Likewise.
+       (build_library_fn_1): Likewise.
+       (build_cp_library_fn): Likewise.
+       (grokfndecl): Likewise.
+       (grokvardecl): Mark `extern "C"' variables as having C linkage.
+       * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
+       * lex.c (retrofit_lang_decl): Likewise.
+       * mangle.c (mangle_decl_string): Don't mangle the names of
+       variables declared with C language linkage.
+       * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
+
+2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * semantics.c (simplify_aggr_init_exprs_r): Don't restore
+       flag_access_control from uninitialized storage.
+
+2001-04-15  Mark Mitchell  <mark@codesourcery.com>
+
+       * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
+       * mangle.c (write_pointer_to_member_type): Fix mangling of
+       pointers to cv-qualified member function types.
+
+       * init.c (build_delete): Create a SAVE_EXPR for the address if
+       we're going to use it more than once.
+
+2001-04-13  Mark Mitchell  <mark@codesourcery.com>
+
+       * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
+       (expand_ptremfunc_cst): Change prototype.
+       (delta2_from_ptrmemfunc): Remove.
+       * expr.c (cplus_expand_constant): Adjust call to
+       expand_ptrmemfunc_cst.
+       * typeck.c (build_ptrmemfunc1): Simplify.
+       (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
+       results in a constant.
+       (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
+       (delta2_from_ptrmemfunc): Remove.
+       (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
+
+2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
+
+       * cp-tree.h (decl_namespace_list): New macro.
+       (struct saved_scope): Add decl_ns_list.
+       * decl.c (mark_saved_scope): Mark it.
+       * decl2.c: Lose static decl_namespace_list.
+       (init_decl2): Don't save it.
+
+2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * cp-tree.h (warn_return_type, yylex): Delete redundant
+       declarations.
+
+       * decl.c (current_class_depth, global_namespace): Likewise.
+
+       * decl2.c (current_class_depth, flag_gnu_xref): Likewise
+
+       * repo.c (flag_use_repository): Likewise.
+
+2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
+       set_block, pushdecl, getdecls, gettags, init_decl_processing,
+       maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
+       lvalue_or_else, print_lang_statistics, comp_target_types,
+       unsigned_type, signed_type, signed_or_unsigned_type,
+       build_function_call, mark_addressable, incomplete_type_error):
+       Delete redundant declarations.
+
+2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
+
+       * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
+       (TYPE_ANONYMOUS_P): New macro.
+       (TAGGED_TYPE_P): New macro.
+       * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
+       (grokfndecl, grokvardecl, grokdeclarator): Likewise.
+       * tree.c (no_linkage_helper): Likewise.
+       * semantics.c (begin_class_definition): Likewise.
+       * pt.c (convert_template_argument): Likewise.
+       * lex.c (check_for_missing_semicolon): Likewise.
+
+2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * class.c (dfs_unshared_virtual_bases): New function.
+       (mark_primary_bases): Call it.
+       (check_bases): Ignore virtual bases when determining
+       nearly-emptiness.
+
+2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
+
+2001-04-11  Mark Mitchell  <mark@codesourcery.com>
+
+       * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
+       cloned function to the clone.
+
+2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
+
+       * semantics.c: Include expr.h.
+
+2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * method.c (implicitly_declare_fn): Commonize code for copy ctor
+       and assignment op. Set TREE_USED for parameter.
+
+2001-04-10  Mark Mitchell  <mark@codesourcery.com>
+
+       * class.c (find_final_overrider_data): Add `candidates'.
+       (dfs_find_final_overrider): Don't issue error messages
+       prematurely.
+       (find_final_overrider): Issue error messages here.
+       (build_base_field): Don't warn about amgibuous direct bases here.
+       (warn_about_ambiguous_direct_bases): New function.
+       (layout_class_type): Use it.
+
+2001-04-10  Richard Henderson  <rth@redhat.com>
+
+       * typeck.c (build_array_ref): Push the array reference inside
+       COMPOUND_EXPR and COND_EXPR.
+
+2001-04-05  Mark Mitchell  <mark@codesourcery.com>
+
+       * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
+       * decl.c (duplicate_decls): Adjust accordingly.
+       (maybe_commonize_var): Likewise.
+       (grokfndecl): Likewise.
+       (start_function): Likewise.
+       (start_method): Likewise.
+       * decl2.c (key_method): Likewise.
+       (import_export_decl): Likewise.
+       * method.c (implicitly_declare_fn): Likewise.
+       * optimize.c (maybe_clone_body): Likewise.
+
+2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * lang-specs.h: Add __DEPRECATED.
+
+Thu Apr  5 16:54:29 2001  J"orn Rennecke <amylaar@redhat.com>
+
+       * search.c (get_dynamic_cast_base_type): When building a new
+       constant, set its type to ssizetype.
+
+2001-04-04  Jakub Jelinek  <jakub@redhat.com>
+
+       * optimize.c (expand_call_inline): Only add newly inlined statements
+       into inlined_stmts.
+
 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
 
        * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
 
 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
 
-       * decl2.c (import_export_decl): Don't call import_export_class 
+       * decl2.c (import_export_decl): Don't call import_export_class
        when processing an inline member function.
        * semantics.c (expand_body): Call import_export_decl before
        emitting inline functions.
        (struct cp_language_function): Rename x_eh_spec_try_block
        to x_eh_spec_block.
        (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
-       * decl.c (current_binding_level): If no current function 
+       * decl.c (current_binding_level): If no current function
        bindings, revert to scope_chain.
        (initialize_predefined_identifiers): Remove __cp_push_exception.
        (store_parm_decls): Use begin_eh_spec_block.
        rest_of_compilation.  Clear DECL_RTL for local variables
        afterwards.
        (clear_decl_rtl): New function.
-               
+
 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
 
        Implement DR 209
        * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
        by setting TYPE_JAVA_INTERFACE.
        * call.c (java_iface_lookup_fn): New static.
-       (build_over_call): If calling a method declared in a 
+       (build_over_call): If calling a method declared in a
        TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
        expression which resolves the function address.
        (build_java_interface_fn_ref): New function.
        * search.c (looup_field_1): Likewise.
        * semantics.c (finish_named_return_value): Likewise.
        * tree.c (init_tree): Set lang_set_decl_assembler_name.
-       
+
 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
 
        Correct semantics restrictions checking in throw-expression.
        (expand_body): Likewise.
        (genrtl_finish_function): Likewise.
        * tree.c (cp_tree_equal): Likewise.
-       
+
 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
 
        * call.c (convert_like_real): Add extra semantics to INNER
        (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
        (get_matching_base): Remove.
        (get_original_base): New function.
-       (build_vtbl_initializer): Initialize vid.rtti_binfo. 
+       (build_vtbl_initializer): Initialize vid.rtti_binfo.
        Use a virtual thunk for a ctor vtable with an index
        (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
        primary base within a constructor vtable. Only set
 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
 
        * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
-       
+
        * decl.c (mark_inlined_fns): Prototype.
 
 2001-02-22  Mark Mitchell  <mark@codesourcery.com>