1. 13 May, 1998 1 commit
    • ghazi's avatar
      Warning patches: · 0ba25c9a
      ghazi authored
              * Makefile.in (lex.o): Depend on output.h.
              * call.c (add_function_candidate): Remove unused variable `cand'.
              (add_conv_candidate): Likewise.
              (build_builtin_candidate): Likewise.
              * cp-tree.h: Add prototype for `types_overlap_p'.
              * decl.c (signal_catch): Mark parameter `sig' with ATTRIBUTE_UNUSED.
              * decl2.c (merge_functions): Remove unused variables `tmp' and
              `tempn'.
              * error.c (expr_as_string): Mark parameter `v' with ATTRIBUTE_UNUSED.
              (code_as_string): Likewise.
              (language_as_string): Likewise.
              (parm_as_string): Likewise.
              (op_as_string): Likewise.
              (assop_as_string): Likewise.
              (cv_as_string): Likewise.
              * lex.c: Include output.h.
              * pt.c (type_unification): Cast first argument of `bzero' to a char*.
              * search.c (dfs_no_overlap_yet): Mark parameter `t' with
              ATTRIBUTE_UNUSED.
              * tinfo.cc (__class_type_info::dcast): Change the type of variable
              `i' from int to size_t.
              * typeck.c (language_lvalue_valid): Mark parameter `exp' with
              ATTRIBUTE_UNUSED.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19707 138bc75d-0d04-0410-961f-82ee72b054a4
      0ba25c9a
  2. 12 May, 1998 1 commit
  3. 11 May, 1998 3 commits
    • mmitchel's avatar
      update documentation · 006ef4f8
      mmitchel authored
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19671 138bc75d-0d04-0410-961f-82ee72b054a4
      006ef4f8
    • mmitchel's avatar
      * pt.c (tsubst): Remove duplicate check for IDENTIFIER_NODE. · 0d3ac06e
      mmitchel authored
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19667 138bc75d-0d04-0410-961f-82ee72b054a4
      0d3ac06e
    • mmitchel's avatar
      * call.c (add_template_candidate): Adjust for changes to · 32b5f03e
      mmitchel authored
      	fn_type_unification.
      	(add_template_candidate_real): Likewise.
      	(add_template_conv_candidate): Likewise.
      	(build_user_type_conversion_1): Likewise.
      	(build_new_function_call): Likewise.
      	(build_object_call): Likewise.
      	(build_new_op): Likewise.
      	(build_new_method_call): Likewise.
      	* class.c (instantiate_type): Likewise.
      	* cp-tree.h (unification_kind_t): New type.
      	(fn_type_unification): Adjust prototype.
      	(type_unificaiton): Likewise.
      	* pt.c (UNIFY_ALLOW_NONE): New macro.
      	(UNIFY_ALLOW_MORE_CV_QUAL): Likewise.
      	(UNIFY_ALLOW_LESS_CV_QUAL): Likewise.
      	(UNIFY_ALLOW_DERIVED): Likewise.
      	(unify): Change prototype.
      	(maybe_adjust_types_for_deduction): New function.
      	(check_cv_quals_for_unify): Likewise.
      	(determine_specialization): Adjust.
      	(fn_type_unification): Likewise.
      	(type_unification): Likewise.
      	(type_unification_real): Likewise.  Use
      	maybe_adjust_types_for_deduction.  Fix mishandling of
      	back-unification of template functions passed as arguments.  Pass
      	appropriate combination of UNIFY_ALLOW_* to unify.
      	(unify): Remove unused NTPARMS parameter.  Use
      	check_cv_quals_for_unify.  Remove bogus code that allowed
      	too-generous unification in order to adhere more closely to standard.
      	(get_bindings_real): Adjust.
      	(get_class_bindings): Likewise.
      	* method.c (build_overload_identifier): Only use the innermost
      	template arguments when mangling.
      	* pt.c (tsubst_template_argument_vector): New function.
      	(complete_template_args): Deal with the situation where the
      	extra_args contain more than one level of arguments.
      	(lookup_template_class): Deal with member template classes, which
      	may have more than one level of arguments.
      	(tsubst): Don't tsbust into the TREE_TYPE of an IDENTIFIER_NODE.
      	Improve handling of member template classes.  Use
      	DECL_PRIMARY_TEMPLATE instead of inline expansion.  Use
      	tsubst_template_argument_vector where appropriate.
      	(regenerate_decl_from_template): Break out from ...
      	(instantiate_decl): Here.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19663 138bc75d-0d04-0410-961f-82ee72b054a4
      32b5f03e
  4. 08 May, 1998 1 commit
  5. 07 May, 1998 1 commit
  6. 06 May, 1998 2 commits
  7. 26 Apr, 1998 3 commits
    • mmitchel's avatar
      * cp-tree.h (CLASSTYPE_IS_TEMPLATE): New macro. · 0f0d5a69
      mmitchel authored
      	(DECL_CLASS_TEMPLATE_P): Likewise.
      	(DECL_PRIMARY_TEMPLATE): Likewise.
      	(PRIMARY_TEMPLATE_P): Use it.
      	(push_template_decl_real): New function.
      	(redeclare_class_template): Take new template parameters as
      	input.
      	(is_specialization_of): New function.
      	(comp_template_args): Declare.
      	* decl.c (pushtag): Handle friend template classes.
      	(xref_tag): Likewise.  Use new calling convention for
      	redeclare_class_template.
      	* decl2.c (grok_x_components): Handle friend templates.
      	* friend.c (is_friend): Use is_specialization_of where
      	appropriate.  Deal with friend class templates.
      	(make_friend_class): Let a class template be friends with itself.
      	* pt.c (comp_template_args): Remove declaration.
      	(tsubst_friend_class): New function.
      	(push_template_decl_real): New function.
      	(push_template_decl): Use it.
      	(redeclare_class_template): Adjust for new calling convention.
      	(comp_template_args): Give it external linkage.
      	(instantiate_class_type): Use tsubst_friend_class to deal
      	with friend templates.
      	* typeck.c (comptypes): Use comp_template_args, rather than
      	expanding it inline.
      	* parse.y (component_decl): Handle a nested template type
      	like other component type declarations.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19418 138bc75d-0d04-0410-961f-82ee72b054a4
      0f0d5a69
    • mmitchel's avatar
      * pt.c (mabybe_get_template_decl_from_type_decl): New function. · 1e5f085c
      mmitchel authored
      	(lookup_template_class): Use it.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19414 138bc75d-0d04-0410-961f-82ee72b054a4
      1e5f085c
    • mmitchel's avatar
      * pt.c (check_explicit_specialization): Handle overloaded · 7c0fe510
      mmitchel authored
      	constructors correctly.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19413 138bc75d-0d04-0410-961f-82ee72b054a4
      7c0fe510
  8. 23 Apr, 1998 2 commits
  9. 22 Apr, 1998 2 commits
  10. 17 Apr, 1998 3 commits
    • mmitchel's avatar
      Fri Apr 17 21:25:00 1998 Mark Mitchell <mmitchell@usa.net> · 232f84bf
      mmitchel authored
      	* cp-tree.h (type_as_string_real): New function.
      	* pt.c (mangle_class_name_for_template): Use it.
      	* error.c (dump_aggr_type): Change prototype.
      	(dump_type_prefix): Likewise.
      	(dump_type_suffix): Likewise.
      	(dump_type_real): Convert from dump_type.  If desired, the
      	"canonica" name of a typedef, i.e., the name of the underlying
      	type, can be printed.
      	(dump_type): Call dump_type_real.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19273 138bc75d-0d04-0410-961f-82ee72b054a4
      232f84bf
    • law's avatar
      * tree.c (avoid_overlap): Add prototype. · 47f75ffb
      law authored
              * spew.c (num_tokens): Add prototype.
              (nth_noken, add_token, consume_token, debug_yychar): Likewise.
              * search.c (dfs_check_overlap): Add prototype.
              (dfs_no_overlap_yet): Likewise.
              * pt.c (original_template): Add prototype.
              (inline_needs_template_parms): Likewise.
              (push_inline_template_parms_recursive): Likewise.
              (retrieve_specialization, register_specialization): Likewise.
              (print_candidates, reduce_template_parm_level): Likewise.
              (build_template_decl, mark_template_parm): Likewise.
              (tsubst_friend_function, get_bindings_real): Likewise.
              * method.c (start_squangling): Add prototype.
              (end_squangling, check_ktype, issue_ktype): Likewise.
              (build_overloaded_scope_ref, check_btype): Likewise.
              (build_mangled_template_parm_index): Likewise.
              * lex.c (init_cpp_parse): Add prototype.
              (handle_cp_pragma, handle_sysv_pragma): Likewise.
              (reduce_cmp, token_cmp): Likewise.
              * except.c (call_eh_info): Add prototype.
              (push_eh_info, get_eh_info, get_eh_value, get_eh_type): Likewise.
              (get_eh_caught, get_eh_handlers, do_pop_exception): Likewise.
              * decl2.c (is_namespace_ancestor): Add prototype.
              (namespace_ancestor, add_using_namespace): Likewise.
              (ambiguous_decl): Likewise.
              * decl.c (indent): Add prototype.
              * call.c (add_template_candidate_real): Add prototype.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19259 138bc75d-0d04-0410-961f-82ee72b054a4
      47f75ffb
    • jason's avatar
      * decl.c (duplicate_decls): Fix check for when it's safe to free · 0c7b8acc
      jason authored
      	the new decl.
      	* pt.c (mangle_class_name_for_template): Don't pass a typedef type
      	to type_as_string.
      	From Mark Mitchell:
      	(unify): Use comptypes to compare type args.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19252 138bc75d-0d04-0410-961f-82ee72b054a4
      0c7b8acc
  11. 16 Apr, 1998 1 commit
  12. 09 Apr, 1998 1 commit
    • bkoz's avatar
      d · f468434d
      bkoz authored
      Thu Apr  9 22:16:57 1998  Per Bothner  <bothner@cygnus.com>
              * cp-tree.h (start_decl):  Update prototype.
              * decl.c (start_decl):  Like the C version, new parameters
              for the attributes.  Call cplus_decl_attributes here,
              (pushdecl):  Like C version, do build_type_copy if TYPE_DECL,
              (grokdeclarator):  Pass NULL for new start_decl arguments.
              * pt.c (tsubst_expr):  Likewise.
              * parse.y:  Merge cplus_decl_attribute calls into start_decl calls.
      	* typeck.c (common_type): Check TYPE_MAIN_VARIANT.
      	* lex.c (build_lang_decl): Add lang_name_java.
      	* class.c (push_lang_context): Add lang_name_java.
      	* method.c (build_mangled_name): Check for is_java_type.
      Thu Apr  9 22:16:57 1998  Benjamin Kosnik  <bkoz@loony.cygnus.com>
      	* decl.c (grokdeclarator): Check TYPE_MAIN_VARIANT.
      	* call.c (build_scoped_method_call): Check for TREE_CODE for
      	VOID_TYPE instead of type ==  void_type_node.
      	(build_method_call): Ditto.
      	* decl.c (lookup_name_real): Ditto.
      	(grokdeclarator): Ditto.
      	(start_decl): Ditto.
      	(grokparms): Ditto.
      	(start_function): Ditto.
      	(finish_function): Ditto.
      	(start_method): Ditto.
      also fixes g++/15415
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19071 138bc75d-0d04-0410-961f-82ee72b054a4
      f468434d
  13. 02 Apr, 1998 1 commit
    • jason's avatar
      * cp-tree.h: Lose CLASSTYPE_VBASE_SIZE, some unused stuff. · 745f5bd2
      jason authored
      	* decl.c, decl2.c, pt.c, ptree.c, lex.c: Likewise.
      	* class.c (duplicate_tag_error): Likewise.
      	(finish_struct_1): Set CLASSTYPE_SIZE, CLASSTYPE_MODE, CLASSTYPE_ALIGN.
      	* tree.c (layout_vbasetypes): Update from layout_record, remove
      	var_size support, use CLASSTYPE_SIZE instead of CLASSTYPE_VBASE_SIZE.
      	(layout_basetypes): Likewise.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18965 138bc75d-0d04-0410-961f-82ee72b054a4
      745f5bd2
  14. 31 Mar, 1998 1 commit
    • law's avatar
      * call.c: Include system.h. Remove includes, declarations and · b3ef7553
      law authored
              defines provided by system.h.
              * class.c, cvt.c, decl.c, decl2.c, errfn.c error.c: Likewise.
              * except.c, expr.c friend.c, g++spec.c, init.c, input.c: Likewise.
              * lex.c, parse.y, pt.c, ptree.c repo.c rtti.c, search.c: Likewise.
              * semantics.c, sig.c, spew.c, tree.c, typeck.c: Likewise.
              * typeck2.c, xref.c: Likewise.
              * Makefile.in: Dependencies updated as appropriate.
              * Make-lang.in: Likewise.
      system.h cutover from the cp subdir
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18917 138bc75d-0d04-0410-961f-82ee72b054a4
      b3ef7553
  15. 30 Mar, 1998 2 commits
  16. 28 Mar, 1998 1 commit
    • mmitchel's avatar
      * pt.c (tsubst): Clear TREE_USED for new FUNCTION_DECLs. · 01b3f071
      mmitchel authored
      	* pt.c (instantiate_class_template): Make sure template
      	arguments are permanent.
      	* init.c (resolve_offset_ref): Don't go looking around in
      	template types.
      	* semantics.c: Add routines to handle expressions, and some
      	declaration processing.
      	* parse.y: Use them.
      	(current_class_depth): Move declaration to cp-tree.h.
      	* parse.c: Regenerated.
      	* cp-tree.h: Use them.
      	(current_class_depth): Declare.
      	* pt.c (tsubst_copy): Use begin_stmt_expr and finish_stmt_expr.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18882 138bc75d-0d04-0410-961f-82ee72b054a4
      01b3f071
  17. 27 Mar, 1998 1 commit
  18. 26 Mar, 1998 1 commit
  19. 24 Mar, 1998 2 commits
    • mmitchel's avatar
      · b1dcc417
      mmitchel authored
      	* tree.c (mapcar): When dealing with a DECL, use it's constant
      	value, if any.
      	* pt.c (lookup_template_class): Don't mangle the names of template
      	classes whose arguments are unknown.
      	* pt.c (tsubst_expr): Handle GOTO_STMT correctly.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18804 138bc75d-0d04-0410-961f-82ee72b054a4
      b1dcc417
    • mmitchel's avatar
      * cplus-dem.c (optable): Add sizeof. · c906a2a7
      mmitchel authored
      	(demangle_template_value_parm): New function containing code
      	previously found in demangle_template.
      	(demangle_integral_value): New function which handles complicated
      	integral expressions.
      	(demangle_template): Use them.
      	* error.c (dump_expr): Remove unused variable `l'.
      	* pt.c (for_each_template_parm): New function, created by
      	converting uses_template_parms.
      	(tree_fn_t): New typedef.
      	(uses_template_parms): Use it.
      	(mark_template_parm): New function.
      	(push_template_decl): Check that the argument list of a partial
      	specialization uses all the template parameters.
      	* Make-lang.in (c++filt): Don't delete cxxmain.c after we're done
      	with it; we might want it for debugging.
      	* cp-tree.h (type_unification): Change interface.
      	* class.c (finish_struct_1): Skip nested template types, just like
      	ordinary nested types.
      	(instantiate_type): Use new interface to type_unification.
      	* lex.c (init_lex): Add __sz as opname for sizeof.
      	* method.c (build_overload_scope_ref): New function.
      	(build_overload_int): Handle complex expressions.  Set
      	numeric_output_need_bar if necessary.
      	(build_overload_value): Handle non-PARM_DECL nodes; this
      	routine is now used by build_overload_int.  Remove some
      	assignments to numeric_output_need_bar.  Use
      	build_overload_scope_ref.
      	(build_qualified_name): Note that some template mangled names end
      	with digits, and set numeric_output_need_bar appropriately.  Use
      	build_underscore_int.
      	* pt.c (unify): Change interface.
      	(type_unification_real): Likewise.
      	(determine_specialization): Use new interfaces.
      	(tsubst): Deal gracefully with situations in which the argument
      	vector is not fully filled.
      	(fn_type_unification): Use new interfaces.
      	(type_unification): Likewise.  Remove NOP_EXPR hack.
      	(type_unification_real): Likewise.
      	(unify): Likewise.  Deal with unification of complex expresions.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18795 138bc75d-0d04-0410-961f-82ee72b054a4
      c906a2a7
  20. 23 Mar, 1998 1 commit
  21. 20 Mar, 1998 2 commits
  22. 19 Mar, 1998 4 commits
  23. 18 Mar, 1998 3 commits