1. 02 May, 2011 7 commits
    • Upgrade the utility of timevars. · 575bfb00
      Index: gcc/ChangeLog
      
      2011-04-27  Lawrence Crowl  <crowl@google.com>
      
      	* timevar.h (timevar_cond_start): Remove unused POP_TIMEVAR_AND_RETURN.
      	(timevar_cond_start): New for starting a timer only when it is not
      	already running.
      	(timevar_cond_stop): New for stopping a timer when it was not already
      	running.
      
      	* timevar.c (timevar_stop): Enable start/stop timers to start again.
      	(timevar_cond_start): New as above.
      	(timevar_cond_stop): New as above.
      
      	* timevar.def: Add start/stop timers for compiler phases,
      	TV_PHASE_SETUP, TV_PHASE_PARSING, TV_PHASE_DEFERRED, TV_PHASE_CGRAPH,
      	TV_PHASE_DBGINFO (C), TV_PHASE_CHECK_DBGINFO (C++), TV_PHASE_GENERATE,
      	and TV_PHASE_FINALIZE.
      	Change push/pop timer TV_PARSE to TV_PARSE_GLOBAL.
      	Add push/pop timers TV_PARSE_STRUCT, TV_PARSE_ENUM, TV_PARSE_FUNC,
      	TV_PARSE_INLINE, TV_PARSE_INMETH, TV_TEMPLATE_INST.
      	Change push/pop timer TV_NAME_LOOKUP into a start/stop timer.
      	Make unused TV_OVERLOAD into a start/stop timer.
      
      	Remove unused timers TV_OVERLOAD, TV_TEMPLATE_INSTANTIATION.
      	Mark the strings for TV_NAME_LOOKUP and TV_OVERLOAD with a "|"
      	to indicate that they are start/stop timers.
      
      	* toplev.c (compile_file): Change TV_PARSE to TV_PARSE_GLOBAL.
      	Add start/stop timers TV_PHASE_PARSING and TV_PHASE_GENERATE.
      	Move initialization to do_compile.
      	(do_compile): Add initialization from above.
      	Add start/stop timers TV_PHASE_SETUP and TV_PHASE_FINALIZE.
      
      	* c-decl.c (c_write_global_declarations): Add start/stop of
      	TV_PHASE_DEFERRED, TV_PHASE_CGRAPH, TV_PHASE_DBGINFO.
      
      	* c-parser.c (c_parser_declaration_or_fndef): Push/pop TV_PARSE_FUNC
      	or TV_PARSE_INLINE, as appropriate.
      	(c_parser_enum_specifier): Push/pop TV_PARSE_ENUM.
      	(c_parser_struct_or_union_specifier): Push/pop TV_PARSE_STRUCT.
      
      Index: gcc/cp/ChangeLog
      
      2011-04-27  Lawrence Crowl  <crowl@google.com>
      
      	* decl.c: (push_local_name): Change TV_NAME_LOOKUP to start/stop.
      	(poplevel): Refactor POP_TIMEVAR_AND_RETURN to plain code.
      	Change TV_NAME_LOOKUP to start/stop.
      	(define_label): Refactor timevar calls out to a wrapper function.
      	Change TV_NAME_LOOKUP to start/stop.
      	(xref_tag): Likewise.
      	(lookup_label): Refactor timevar calls out to a wrapper function.
      	Change TV_NAME_LOOKUP to start_cond/stop_cond.
      
              * pt.c: (instantiate_class_template): Add a wrapper to push/pop new
      	TV_TEMPLATE_INST.
      	(instantiate_template): Add a wrapper to push/pop new TV_TEMPLATE_INST.
      	(lookup_template_class): Refactor timevar calls out to a wrapper
      	function.  Change use of TV_NAME_LOOKUP to TV_TEMPLATE_INST.
      	(instantiate_decl): Change TV_PARSE to TV_TEMPLATE_INST.
      
      	* name-lookup.c: (store_bindings): Change TV_NAME_LOOKUP to start/stop.
      	(poplevel_class): Change TV_NAME_LOOKUP to start_cond/stop_cond.
      	(push_namespace): Likewise.
      	(pop_nested_namespace): Likewise.
      	(pushdecl_namespace_level): Likewise.
      	(store_class_bindings): Likewise.
      	(push_to_top_level): Likewise.
      	(identifier_type_value): Refactor timevar calls out to a wrapper
      	function.  Change TV_NAME_LOOKUP to start/stop.
      	(find_binding): Likewise.
      	(push_using_decl): Likewise.
      	(lookup_arg_dependent): Likewise.
      	(push_using_directive): Likewise.
      	(qualified_lookup_using_namespace): Refactor POP_TIMEVAR_AND_RETURN
      	to plain code.  Change TV_NAME_LOOKUP to start/stop.
      	(lookup_type_current_level): Likewise.  Refactor inner return to
      	break.
      	(pushdecl_class_level): Refactor POP_TIMEVAR_AND_RETURN to plain
      	code.  Change TV_NAME_LOOKUP to start_cond/stop_cond.
      	(pushdecl_top_level_1): Likewise.
      	(lookup_using_namespace): Likewise.
      	(pushdecl_with_scope): Refactor timevar calls out to a wrapper
      	function.  Change TV_NAME_LOOKUP to start_cond/stop_cond.
      	(push_overloaded_decl): Likewise.
      	(push_class_level_binding): Likewise.
      	(namespace_binding): Likewise.
      	(set_namespace_binding): Likewise.
      	(supplement_binding): Likewise.
      	(unqualified_namespace_lookup): Likewise.
      	(lookup_name_real): Likewise.
      	(lookup_type_scope): Likewise.
      	(namespace_ancestor): Likewise.
      	(lookup_name_innermost_nonclass_level): Likewise.
      	(pushtag): Likewise.
      	(pop_from_top_level): Likewise.
      	(pushdecl_maybe_friend): Refactor timevar calls out to a wrapper
      	function.  Change TV_NAME_LOOKUP to start_cond/stop_cond.  Wrap long
      	lines.
      	(add_using_namespace): Refactor timevar calls out to a wrapper
      	function.  Change TV_NAME_LOOKUP to start_cond/stop_cond.  Bypass
      	wrapper on call to self.
      
      	* decl2.c: (cp_write_global_declarations):  Add start/stop of
      	new TV_PHASE_DEFERRED, TV_PHASE_CGRAPH, TV_PHASE_CHECK_DBGINFO.
      	Remove push/pop calls to TV_VARCONST.
      
      	* parser.c: Add include of "timevar.h".
      	(cp_parser_explicit_instantiation): Add push/pop calls to
      	TV_TEMPLATE_INST.
      	(cp_parser_enum_specifier): Add push/pop calls to new TV_PARSE_ENUM.
      	(cp_parser_class_specifier): Add wrapper to add push/pop calls to
      	TV_PARSE_STRUCT.
      	(cp_parser_function_definition_from_specifiers_and_declarator): Add
      	push/pop calls to new TV_PARSE_FUNC or TV_PARSE_INLINE.
      	(cp_parser_late_parsing_for_member):  Add push/pop calls to
      	new TV_PARSE_INMETH.
      
      	* call.c: Add include of "timevar.h".
              (convert_class_to_reference): Wrap and add push/pop calls to 
      	TV_OVERLOAD.
      	(build_op_call): Likewise.
      	(build_conditional_expr): Likewise.
      	(build_new_op): Likewise.
      	(build_new_method_call): Likewise.
              (build_user_type_conversion): Reorganize to single return and add
      	push/pop calls to TV_OVERLOAD.
              (perform_overload_resolution): Likewise.
      
      	* Make-lang.in: Add dependence of call.o and parser.o on $(TIMEVAR_H).
      
      From-SVN: r173277
      Lawrence Crowl committed
    • tree.c (build_vec_init_expr): Take complain parm. · 9c69dcea
      	* tree.c (build_vec_init_expr): Take complain parm.
      	(build_vec_init_elt): Likewise.  Free arg vector.
      	(diagnose_non_constexpr_vec_init, build_array_copy): Adjust.
      	* cp-tree.h (VEC_INIT_EXPR_SLOT): Use VEC_INIT_EXPR_CHECK.
      	(VEC_INIT_EXPR_INIT): Likewise.
      	Adjust build_vec_init_expr declaration.
      	* init.c (perform_member_init): Adjust.
      
      From-SVN: r173275
      Jason Merrill committed
    • revert: re PR c++/40975 (ICE in copy_tree_r on array new) · b73a4704
      	Revert:
      	PR c++/40975
      	* cp-tree.def (VEC_INIT_EXPR): Add third operand.
      	* cp-tree.h (VEC_INIT_EXPR_NELTS): New.
      	* cp-gimplify.c (cp_gimplify_expr) [VEC_INIT_EXPR]: Handle it.
      	* tree.c (build_vec_init_expr): Handle getting pointer/nelts.
      	(build_vec_init_elt): Don't expect an array type.
      	(build_array_copy): Adjust.
      	* init.c (perform_member_init): Adjust.
      	(build_new_1): Use build_vec_init_expr.
      
      From-SVN: r173274
      Jason Merrill committed
    • re PR c++/48834 (-fno-exceptions causes wrong code generation on C++ code) · 0a2cdfe6
      	PR c++/48834
      	* tree.c (build_vec_init_expr): Set TREE_SIDE_EFFECTS.
      	Protect an explicit target.
      
      From-SVN: r173272
      Jason Merrill committed
    • re PR c++/48446 (internal compiler error: in gimplify_var_or_parm_decl, at gimplify.c:1946) · 9257f35f
      	PR c++/48446
      	* decl.c (stabilize_save_expr_r, stabilize_vla_size): New.
      	(compute_array_index_type): Revert earlier 48446 changes.
      	(grokdeclarator): Use stabilize_vla_size.
      
      From-SVN: r173264
      Jason Merrill committed
    • parser.c (cp_parser_init_declarator): Set pushed_scope to NULL_TREE instead of… · 6fb380f7
      parser.c (cp_parser_init_declarator): Set pushed_scope to NULL_TREE instead of inappropriate zero values.
      
      	* parser.c (cp_parser_init_declarator): Set pushed_scope to NULL_TREE
      	instead of inappropriate zero values.
      
      Co-Authored-By: Eric Botcazou <ebotcazou@adacore.com>
      
      From-SVN: r173263
      Dmitry Gorbachev committed
    • re PR c++/47969 ([C++0x] ICE: SIGSEGV in compute_array_index_type (cp/decl.c:7522)) · 9fd15228
      /cp
      2011-05-02  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/47969
      	* decl.c (compute_array_index_type): Check build_expr_type_conversion
      	return value for NULL_TREE.
      
      /testsuite
      2011-05-02  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/47969
      	* g++.dg/cpp0x/constexpr-47969.C: New.
      
      From-SVN: r173249
      Paolo Carlini committed
  2. 30 Apr, 2011 1 commit
    • cp-tree.h (LOOKUP_EXPLICIT_TMPL_ARGS): Define. · 2e1df0f0
      cp/ChangeLog
      2011-04-29  Le-Chun Wu  <lcwu@google.com>
      
      	* cp-tree.h (LOOKUP_EXPLICIT_TMPL_ARGS): Define.
      	* call.c (build_new_function_call): Set it for TEMPLATE_ID_EXPRs.
      	(build_over_call): Use it to determine whether to emit a NULL
      	warning for template function instantiations.
      	(build_new_method_call): Set LOOKUP_EXPLICIT_TMPL_ARGS if
      	EXPLICIT_TARGS is set.
      
      2011-04-29  Diego Novillo  <dnovillo@google.com>
      	    Le-Chun Wu  <lcwu@google.com>
      
      	* call.c (conversion_null_warnings): Also handle assignments
      	when warning about NULL conversions.
      
      testsuite/ChangeLog
      2011-04-29  Le-Chun Wu  <lcwu@google.com>
      
      	* g++.dg/warn/Wnull-conversion-1.C: New.
      	* g++.dg/warn/Wnull-conversion-2.C: New.
      
      2011-04-29  Le-Chun Wu  <lcwu@google.com>
      
      	* g++.dg/warn/Wconversion-null-2.C: Do not expect a NULL
      	  warning in implicitly instantiated templates.
      
      2011-04-29  Diego Novillo  <dnovillo@google.com>
      
      	* g++.old-deja/g++.other/null3.C: Expect warning about converting
      	boolean to a pointer.
      
      From-SVN: r173217
      Diego Novillo committed
  3. 29 Apr, 2011 2 commits
    • re PR c++/48606 (g++.dg/init/ctor9.C ICE: tree check: expected class 'type',… · 48e5d119
      re PR c++/48606 (g++.dg/init/ctor9.C ICE: tree check: expected class 'type', have 'exceptional' (error_mark) with -fkeep-inline-functions)
      
      /cp
      2011-04-29  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/48606
      	* init.c (perform_member_init): Check build_value_init return
      	value for error_mark_node.
      
      /testsuite
      2011-04-29  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/48606
      	* g++.dg/init/ctor10.C: New.
      
      From-SVN: r173194
      Paolo Carlini committed
    • In gcc/: 2011-04-29 Nicola Pero <nicola.pero@meta-innovation.com> · a88fdc2a
      In gcc/:
      2011-04-29  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* Makefile.in (ENABLE_MAINTAINER_RULES): New.
      
      In gcc/cp/:
      2011-04-29  Nicola Pero  <nicola.pero@meta-innovation.com>,
      	    Mike Stump <mikestump@comcast.net>
      
      	* Make-lang.in ($(srcdir)/cp/cfns.h): Enable the dependency only
      	in maintainer mode.  Use the --output-file option of gperf instead
      	of > to prevent creating an empty cp/cfns.h when gperf is not
      	available.
      
      From-SVN: r173178
      Nicola Pero committed
  4. 28 Apr, 2011 7 commits
  5. 27 Apr, 2011 4 commits
  6. 26 Apr, 2011 2 commits
    • re PR c++/48530 ([C++0x][SFINAE] Hard errors with deleted d'tors) · 574cfaa4
      	PR c++/48530
      	* decl.c (cxx_maybe_build_cleanup): Add complain parm.
      	* tree.c (force_target_expr): Add complain parm.
      	(build_target_expr_with_type): Likewise.
      	(get_target_expr_sfinae): Split out.
      	(build_vec_init_expr, bot_manip): Adjust.
      	* init.c (build_vec_delete, build_vec_delete_1): Add complain parm.
      	(build_delete, build_dtor_call): Likewise.
      	(perform_direct_initialization_if_possible): Adjust.
      	(build_vec_init): Handle error return.
      	* cvt.c (force_rvalue): Add complain parm.
      	Call build_special_member_call directly.
      	* decl2.c (delete_sanity): Add complain parm.
      	(build_cleanup): Adjust.
      	* pt.c (tsubst_copy_and_build, tsubst_expr): Adjust.
      	* semantics.c (finish_stmt_expr_expr): Adjust.
      	(finish_compound_literal): Adjust.
      	* parser.c (cp_parser_delete_expression): Adjust.
      	* typeck2.c (build_functional_cast): Adjust.
      	* cp-tree.h: Adjust.
      
      From-SVN: r172985
      Jason Merrill committed
    • class.c (cp_fold_obj_type_ref): Remove. · 86262bb1
      2011-04-26  Martin Jambor  <mjambor@suse.cz>
      
      	* class.c (cp_fold_obj_type_ref): Remove.
      	* cp-tree.h (cp_fold_obj_type_ref): Remove declaration.
      
      From-SVN: r172977
      Martin Jambor committed
  7. 25 Apr, 2011 3 commits
    • c-common.c (struct c_common_resword): Add __underlying_type. · 74e883ce
      /gcc
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* c-family/c-common.c (struct c_common_resword): Add
      	__underlying_type.
      	* c-family/c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
      	* doc/extend.texi: Document __underlying_type.
      
      /cp
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* cp-tree.def: Add a new UNDERLYING_TYPE tree code.
      	* cp-tree.h (enum cp_trait_kind): Add CPTK_UNDERLYING_TYPE, tidy.
      	(UNDERLYING_TYPE_TYPE): Add.
      	* cp-objcp-common.c (cp_common_init_ts): Mark UNDERLYING_TYPE
      	as TS_COMMON.
      	* parser.c (cp_lexer_next_token_is_decl_specifier_keyword,
      	cp_parser_simple_type_specifier): Handle UNDERLYING_TYPE.
      	(cp_parser_trait_expr): Deal with RID_UNDERLYING_TYPE; tidy.
      	* semantics.c (finish_underlying_type): New.
      	* typeck.c (structural_comptypes): Handle UNDERLYING_TYPE.
      	* error.c (dump_type, dump_type_prefix, dump_type_suffix): Likewise.
      	* cxx-pretty-print.c (p_cxx_type_id): Likewise.
      	* tree.c (cp_walk_subtrees): Likewise.
      	* pt.c (for_each_template_parm_r, tsubst, unify,
      	dependent_type_p_r): Likewise.
      	* mangle.c (write_type): Sorry for __underlying_type.
      
      /testsuite
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* g++.dg/ext/underlying_type1.C: New.
      	* g++.dg/ext/underlying_type2.C: Likewise.
      	* g++.dg/ext/underlying_type3.C: Likewise.
      	* g++.dg/ext/underlying_type4.C: Likewise.
      	* g++.dg/ext/underlying_type5.C: Likewise.
      	* g++.dg/ext/underlying_type6.C: Likewise.
      	* g++.dg/ext/underlying_type7.C: Likewise.
      	* g++.dg/ext/underlying_type8.C: Likewise.
      	* g++.dg/ext/underlying_type9.C: Likewise.
      	* g++.dg/ext/underlying_type10.C: Likewise.
      
      From-SVN: r172945
      Paolo Carlini committed
    • c-common.c (struct c_common_resword): Add __underlying_type. · a0d260fc
      /gcc
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* c-family/c-common.c (struct c_common_resword): Add
      	__underlying_type.
      	* c-family/c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
      
      /cp
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* cp-tree.def: Add a new UNDERLYING_TYPE tree code.
      	* cp-tree.h (enum cp_trait_kind): Add CPTK_UNDERLYING_TYPE, tidy.
      	(UNDERLYING_TYPE_TYPE): Add.
      	* cp-objcp-common.c (cp_common_init_ts): Mark UNDERLYING_TYPE
      	as TS_COMMON.
      	* parser.c (cp_lexer_next_token_is_decl_specifier_keyword,
      	cp_parser_simple_type_specifier): Handle UNDERLYING_TYPE.
      	(cp_parser_trait_expr): Deal with RID_UNDERLYING_TYPE; tidy.
      	* semantics.c (finish_underlying_type): New.
      	* typeck.c (structural_comptypes): Handle UNDERLYING_TYPE.
      	* error.c (dump_type, dump_type_prefix, dump_type_suffix): Likewise.
      	* cxx-pretty-print.c (p_cxx_type_id): Likewise.
      	* tree.c (cp_walk_subtrees): Likewise.
      	* pt.c (for_each_template_parm_r, tsubst, unify,
      	dependent_type_p_r): Likewise.
      	* mangle.c (write_type): Sorry for __underlying_type.
      	* doc/extend.texi: Document __underlying_type.
      
      /testsuite
      2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* g++.dg/ext/underlying_type1.C: New.
      	* g++.dg/ext/underlying_type2.C: Likewise.
      	* g++.dg/ext/underlying_type3.C: Likewise.
      	* g++.dg/ext/underlying_type4.C: Likewise.
      	* g++.dg/ext/underlying_type5.C: Likewise.
      	* g++.dg/ext/underlying_type6.C: Likewise.
      	* g++.dg/ext/underlying_type7.C: Likewise.
      	* g++.dg/ext/underlying_type8.C: Likewise.
      	* g++.dg/ext/underlying_type9.C: Likewise.
      	* g++.dg/ext/underlying_type10.C: Likewise.
      
      From-SVN: r172943
      Paolo Carlini committed
    • re PR c++/48707 ([c++0x] ICE initializing static const int) · d95f258e
      	PR c++/48707
      	* decl.c (type_dependent_init_p): New.
      	(cp_finish_decl): Check it.
      	* pt.c (any_type_dependent_elements_p): New.
      	* cp-tree.h: Declare it.
      
      From-SVN: r172941
      Jason Merrill committed
  8. 21 Apr, 2011 4 commits
  9. 20 Apr, 2011 4 commits
  10. 18 Apr, 2011 6 commits