1. 19 Apr, 2012 12 commits
  2. 18 Apr, 2012 17 commits
    • fix accidentally checked-in assert. · 809e5f82
      From-SVN: r186580
      Steven Bosscher committed
    • targhooks.c (default_case_values_threshold): Fix code style nit. · 0cd2402d
      gcc/
      	* targhooks.c (default_case_values_threshold): Fix code style nit.
      
      	* stmt.c (add_case_node, expand_case): Move logic to remove/reduce
      	case range and type folding from here...
      	* gimplify.c (gimplify_switch_expr): ... to here.  Expect NULL_TREE
      	type, as documented in tree.def
      
      fortran/
      	* trans-decl.c (gfc_trans_entry_master_switch): Build SWITCH_EXPR
      	with NULL_TREE type instead of void_type_node.
      	* trans-io.c (io_result): Likewise.
      	* trans-stmt.c (gfc_trans_integer_select,
      	gfc_trans_character_select): Likewise.
      
      go/
      	* go-gcc.cc (Gcc_backend::switch_statement): Build SWITCH_EXPR
      	with NULL_TREE type instead of void_type_node.
      
      From-SVN: r186579
      Steven Bosscher committed
    • cgraph.h (verify_symtab, [...]): Declare. · 474ffc72
      	* cgraph.h (verify_symtab, verify_symtab_node, verify_symtab_base):
      	Declare.
      	* cgraphunit.c (verify_cgraph_node): Verify symtab base; do not verify 
      	cgraph hash and same comdat groups.
      	(cgraph_optimize); Verify symbol table.
      	* ipa.c (cgraph_remove_unreachable_nodes): Verify symbol table.
      	(dissolve_same_comdat_group_list): Work on symtab nodes.
      	(function_and_variable_visibility): Dissolve variable same comdat group
      	lists, too.
      	* symtab.c: Include timevar.h
      	(verify_symtab_base, verify_symtab_node, verify_symtab): New functions.
      
      From-SVN: r186578
      Jan Hubicka committed
    • tree-switch-conversion.c (info): Remove global pass info. · fade902a
      	* tree-switch-conversion.c (info): Remove global pass info.
      	(check_range, check_process_case, check_final_bb, create_temp_arrays,
      	free_temp_arrays, gather_default_values, build_constructors,
      	array_value_type, build_one_array, build_arrays, gen_def_assigns,
      	fix_phi_nodes, gen_inbound_check): Pass info around from ...
      	(process_switch): ... here.  Unify message format.  Return a const
      	char pointer to the failure reason message.
      	(do_switchconv): Unify message format.  Update process_switch usage.
      
      From-SVN: r186576
      Steven Bosscher committed
    • tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands. · 308e3ba6
      	* tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
      	* tree-cfg.c (edge_to_cases): Fix documentation.
      
      From-SVN: r186575
      Steven Bosscher committed
    • sync.md (fetchop_name): Change ior attribute to "or". · 27dd0a95
      	* config/alpha/sync.md (fetchop_name): Change ior attribute to "or".
      
      From-SVN: r186572
      Uros Bizjak committed
    • re PR tree-optimization/52976 (Revision 186384 breaks the polyhedron tests… · b59eee40
      re PR tree-optimization/52976 (Revision 186384 breaks the polyhedron tests aermod.f90 and doduc.f90 at -O3 -ffast-math)
      
      gcc:
      
      2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/52976
      	* tree-ssa-reassoc.c (add_to_ops_vec_max_rank): Delete.
      	(possibly_move_powi): New function.
      	(rewrite_expr_tree): Call possibly_move_powi.
      	(rewrite_expr_tree_parallel): Likewise.
      	(attempt_builtin_powi): Change call of add_to_ops_vec_max_rank to
      	call add_to_ops_vec instead.
      
      
      gcc/testsuite:
      
      2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/52976
      	gfortran.dg/reassoc_11.f: New test.
      
      From-SVN: r186568
      Bill Schmidt committed
    • re PR tree-optimization/52976 (Revision 186384 breaks the polyhedron tests… · c2723bde
      re PR tree-optimization/52976 (Revision 186384 breaks the polyhedron tests aermod.f90 and doduc.f90 at -O3 -ffast-math)
      
      gcc:
      
      2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/52976
      	* tree-ssa-reassoc.c (stmt_is_power_of_op): New function.
      	(decrement_power): Likewise.
      	(propagate_op_to_single_use): Likewise.
      	(zero_one_operation): Handle __builtin_pow* calls in linearized
      	expression trees; factor logic into propagate_op_to_single_use.
      	(undistribute_ops_list): Allow operands with repeat counts > 1.
      
      
      gcc/testsuite:
      
      2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/52976
      	gfortran.dg/reassoc_7.f: New test.
      	gfortran.dg/reassoc_8.f: Likewise.
      	gfortran.dg/reassoc_9.f: Likewise.
      	gfortran.dg/reassoc_10.f: Likewise.
      
      From-SVN: r186567
      Bill Schmidt committed
    • re PR tree-optimization/44688 (Excessive code-size growth at -O3) · 03fd03d5
      2012-04-18  Richard Guenther  <rguenther@suse.de>
      
      	PR tree-optimization/44688
      	* cfgloop.h (record_niter_bound): Declare.
      	* tree-ssa-loop-niter.c (record_niter_bound): Export.
      	Update the estimation with the upper bound here...
      	(estimate_numbers_of_iterations_loop): ... instead of here.
      	Do not forcefully reset a recorded upper bound.
      	* tree-vect-loop-manip.c (vect_do_peeling_for_alignment):
      	Record the maximum number of loop iterations of the
      	prologue loop.
      
      From-SVN: r186566
      Richard Guenther committed
    • re PR c++/52422 ([C++11][SFINAE] Hard errors with void or arithmetic expressions) · 89fcabaf
      /cp
      2012-04-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/52422
      	* cp-tree.h (build_addr_func, decay_conversion,
      	get_member_function_from_ptrfunc,
      	build_m_component_ref, convert_member_func_to_ptr):
      	Add tsubst_flags_t parameter.
      	* typeck.c (cp_default_conversion): Add.
      	(decay_conversion, default_conversion,
      	get_member_function_from_ptrfunc, convert_member_func_to_ptr):
      	Add tsubst_flags_t parameter and use it throughout.
      	(cp_build_indirect_ref, cp_build_array_ref,
      	cp_build_function_call_vec, convert_arguments, build_x_binary_op,
      	cp_build_binary_op, cp_build_unary_op, build_reinterpret_cast_1,
      	build_const_cast_1, expand_ptrmemfunc_cst,
      	convert_for_initialization): Adjust.
      	* init.c (build_vec_init): Adjust.
      	* decl.c (grok_reference_init, get_atexit_node): Likewise.
      	* rtti.c (build_dynamic_cast_1, tinfo_base_init): Likewise.
      	* except.c (build_throw): Likewise.
      	* typeck2.c (build_x_arrow): Likewise.
      	(build_m_component_ref): Add tsubst_flags_t parameter and
      	use it throughout.
      	* pt.c (convert_nontype_argument): Adjust.
      	* semantics.c (finish_asm_stmt, maybe_add_lambda_conv_op): Likewise.
      	* decl2.c (build_offset_ref_call_from_tree): Likewise.
      	* call.c (build_addr_func): Add tsubst_flags_t parameter and
      	use it throughout.
      	(build_call_a, build_conditional_expr_1, build_new_op_1,
      	convert_like_real, convert_arg_to_ellipsis, build_over_call,
      	build_special_member_call): Adjust.
      	* cvt.c (cp_convert_to_pointer, force_rvalue,
      	build_expr_type_conversion): Likewise.
      
      /testsuite
      2012-04-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/52422
      	* g++.dg/cpp0x/sfinae33.C: New.
      	* g++.dg/cpp0x/sfinae34.C: Likewise.
      
      From-SVN: r186565
      Paolo Carlini committed
    • lto-symtab.c (lto_cgraph_replace_node): Update. · 5932a4d4
      
      	* lto-symtab.c (lto_cgraph_replace_node): Update.
      	* cgraphbuild.c (record_reference, record_type_list,
      	record_eh_tables, mark_address, mark_load, mark_store): Update.
      	* cgraph.c (cgraph_same_body_alias, dump_cgraph_node,
      	cgraph_create_virtual_clone, cgraph_for_node_thunks_and_aliases):
      	Update.
      	* cgraph.h (symtab_node_def, symtab_node, const_symtab_node): Remove.
      	(cgraph_alias_aliased_node, varpool_alias_aliased_node): Update.
      	* reload.c: Fix typo in comment.
      	* rtlanal.c: Likewise.
      	* tree-emultls.c (gen_emutls_addr): Update.
      	* ipa-reference.c (analyze_function): Update.
      	* cgraphunit.c (cgraph_analyze_function,
      	cgraph_process_same_body_aliases, assemble_thunks_and_aliases):
      	Update.
      	* ipa-ref.c (ipa_record_reference): Reorg to avoid reference types.
      	(ipa_remove_reference): Likewise.
      	(ipa_remove_all_refering): Rename to ...
      	(ipa_remove_all_referring): ... this one; update.
      	(ipa_dump_references): Update.
      	(ipa_dump_referring): Update.
      	(ipa_clone_references): Update.
      	(ipa_clone_refering): Rename to ...
      	(ipa_clone_referring): ... this one; update.
      	(ipa_ref_cannot_lead_to_return): Update.
      	(ipa_ref_has_aliases_p): Update.
      	* ipa-ref.h (symtab_node_def, symtab_node, const_symtab_node): New
      	forward typedefs.
      	(ipa_ref_type): Remove.
      	(ipa_ref_ptr_u): Remove.
      	(ipa_ref): Remove referencing, refered, refered_index, refering_type
      	and refered_type; add referring, referred and referred_index.
      	(ipa_ref_list): Rename refering to referring.
      	(ipa_record_reference, ipa_remove_all_referring, ipa_dump_referring,
      	ipa_clone_references, ipa_clone_referring): Update prototypes.
      	* lto-cgraph.c (referenced_from_other_partition_p): Update.
      	(lto_output_ref): Update.
      	(add_references): Update.
      	(input_varpool_node): Update.
      	(input_refs): Update.
      	* ipa-ref-inline.h (ipa_ref_node): Update.
      	(ipa_ref_varpool_node): Update.
      	(ipa_ref_referring_node); Update.
      	(ipa_ref_referring_varpool_node): Update.
      	(ipa_ref_referring_ref_list); Update.
      	(ipa_ref_referred_ref_list): Update.
      	(ipa_ref_list_first_referring): Update.
      	(ipa_empty_ref_list): Update.
      	(ipa_ref_list_refering_iterate): Rename to ...
      	(ipa_ref_list_referring_iterate): ... this one.
      	* cse.c: Update comment.
      	* ipa-utils.c (ipa_reverse_postorder): Update.
      	* tree-ssa-alias.c: Update.
      	* ipa-inline.c (reset_edge_caches): Update.
      	(update_caller_keys): Update.
      	* ipa-inline.h: Update comments.
      	* jump.c: Update comment.
      	* alias.c: Likewise.
      	* ipa.c (process_references): Update.
      	(cgraph_remove_unreachable_nodes): Likewise.
      	(ipa_discover_readonly_nonaddressable_var): Likewise.
      	(cgraph_address_taken_from_non_vtable_p): Likewise.
      	* trans-mem.c (ipa_tm_execute): Update.
      	* simplify-rtx.c: Fix comment.
      	* rtl.c: Fix comment.
      	* symtab.c (symtab_unregister_node): Update.
      	* varpool.c (dump_varpool_node): Update.
      	(varpool_analyze_pending_decls): Update.
      	(assemble_aliases): Update.
      	(varpool_for_node_and_aliases): Update.
      
      From-SVN: r186564
      Jan Hubicka committed
    • thumb1-imm.c: Skip it in non-thumb1 target. · f3148620
      2012-04-18  Joey Ye  <joey.ye@arm.com>
      
              * gcc.target/arm/thumb1-imm.c: Skip it in non-thumb1 target.
      
      From-SVN: r186563
      Joey Ye committed
    • cfgloop.h (estimate_numbers_of_iterations_loop): Remove use_undefined_p parameter. · 421e6082
      2012-04-18  Richard Guenther  <rguenther@suse.de>
      
      	* cfgloop.h (estimate_numbers_of_iterations_loop): Remove
      	use_undefined_p parameter.
      	* tree-flow.h (estimate_numbers_of_iterations): Likewise.
      	* tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
      	Likewise.
      	(estimate_numbers_of_iterations): Likewise.
      	(estimated_loop_iterations): Adjust.
      	(max_loop_iterations): Likewise.
      	(scev_probably_wraps_p): Likewise.
      	* tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise.
      	* tree-vrp.c (adjust_range_with_scev): Use max_stmt_executions,
      	not max_loop_iterations.
      	(execute_vrp): Remove explicit number of iterations estimation.
      
      From-SVN: r186562
      Richard Guenther committed
    • test_passing_unions.c: Avoid undefined array access. · dcc186d6
      2012-04-18  Richard Guenther  <rguenther@suse.de>
      
      	* gcc.target/x86_64/abi/test_passing_unions.c: Avoid undefined
      	array access.
      	* gcc.target/x86_64/abi/test_passing_structs.c: Likewise.
      	* gcc.target/i386/avx256-unaligned-load-4.c: Fix array sizes.
      
      From-SVN: r186561
      Richard Guenther committed
    • linux-common.h: New. · 6acc8a3c
      2012-04-18  Enkovich Ilya  <ilya.enkovich@intel.com>
      
             * config/i386/linux-common.h: New.
      
             * config.gcc: Add i386/linux-common.h before
             all i386/linux.h and i386/linux64.h usages.
      
             * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): New.
             (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
             * config/i386/gnu-user64.h: Likewise.
      
             * config/i386/gnu-user.common.h (GNU_USER_TARGET_CC1_SPEC): New.
             (CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC.
             (GNU_USER_TARGET_MATHFILE_SPEC): New.
             (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC.
      
      From-SVN: r186560
      Enkovich Ilya committed
    • cgraph.c (cgraph_node_name): Remove. · 8f940ee6
      
      	* cgraph.c (cgraph_node_name): Remove.
      	(dump_cgraph_node): Use dump_symtab_base; reformat.
      	* cgraph.h (symtab_node_asm_name, symtab_node_name, dump_symtab,
      	debug_symtab, dump_symtab_node, debug_symtab_node, dump_symtab_base):
      	Declare.
      	(cgraph_node_name, varpool_node_name): Remove.
      	(cgraph_node_asm_name, varpool_node_asm_name,
      	cgraph_node_name, varpool_node_name): New.
      	* tree-pass.h (TODO_dump_cgraph): Rename to ...
      	(TODO_dump_symtab): ... this one.
      	* ipa-cp (pass_ipa_cp): Update.
      	* ia-reference.c (generate_summary, read_write_all_from_decl,
      	propagate, ipa_reference_read_optimization_summary): Update.
      	* cgraphunit.c (cgraph_analyze_functions): Update.
      	(cgraph_optimize): Update.
      	* ipa-ref.c (ipa_dump_references): Update.
      	(ipa_dump_refering): Update.
      	* ipa-inline.c (pass_ipa_inline): Update.
      	* matrix-reorg.c (pass_ipa_matrix_reorg): Update.
      	* ipa.c (pass_ipa_function_visibility,
      	pass_ipa_whole_program_visibility): Update.
      	* tree-sra.c (pass_early_ipa_sra): Update.
      	* symtab.c: Include langhooks.h
      	(symtab_node_asm_name): New.
      	(symtab_node_name): New.
      	(symtab_type_names): New static var.
      	(dump_symtab_base): New.
      	(dump_symtab_node, dump_symtab): New.
      	(debug_symtab_node,  debug_symtab): New.
      	* tree-ssa-structalias.c: Dump symbol table.
      	* pases.c (execute_todo): Handle TODO_dump_symtab instead
      	of TODO_dump_cgraph.
      	* varpoo.c (varpool_node_name): Remove.
      	(dump_varpool_node): Use dump_symtab_base; reformat.
      
      From-SVN: r186559
      Jan Hubicka committed
    • Daily bump. · cc8e7b1f
      From-SVN: r186557
      GCC Administrator committed
  3. 17 Apr, 2012 11 commits