1. 21 Jun, 2009 7 commits
    • Fix 40359 · c64c5552
      Co-Authored-By: Revital Eres <eres@il.ibm.com>
      
      From-SVN: r148762
      Ira Rosen committed
    • re PR middle-end/38729 (long time needed in tree canonical iv) · 2cee1509
      2009-06-21  Richard Guenther  <rguenther@suse.de>
      
      	PR tree-optimization/38729
      	* tree-ssa-loop-niter.c (find_loop_niter_by_eval): Restrict
      	to loops with a single exit if -fno-expensive-optimizations.
      
      From-SVN: r148761
      Richard Guenther committed
    • var-tracking.c (struct shared_hash_def, [...]): New types. · d24686d7
      	* var-tracking.c (struct shared_hash_def, shared_hash): New types.
      	(dataflow_set): Change vars type from htab_t to shared_hash.
      	(shared_hash_pool, empty_shared_hash): New variables.
      	(vars_clear): Removed.
      	(shared_hash_shared, shared_hash_htab, shared_hash_copy,
      	shared_hash_find_slot_unshare, shared_hash_find_slot,
      	shared_hash_find_slot_noinsert, shared_hash_find): New
      	static inlines.
      	(shared_hash_unshare, shared_hash_destroy): New functions.
      	(unshare_variable): Unshare set->vars if shared, use
      	shared_hash_htab.
      	(vars_copy): Use htab_traverse_noresize instead of htab_traverse.
      	(get_init_value, find_src_set_src, dump_dataflow_set,
      	clobber_variable_part, emit_notes_for_differences): Use
      	shared_hash_htab.
      	(dataflow_set_init): Remove second argument, set vars to
      	empty_shared_hash instead of creating a new htab.
      	(dataflow_set_clear): Call shared_hash_destroy and set vars
      	to empty_shared_hash instead of calling vars_clear.
      	(dataflow_set_copy): Don't call vars_copy, instead just share
      	the src htab with dst.
      	(variable_union): Use shared_hash_*, use initially NO_INSERT
      	lookup if set->vars is shared.  Don't keep slot cleared before
      	calling unshare_variable.  Unshare set->vars if needed.
      	Even ->refcount == 1 vars must be unshared if set->vars is shared
      	and var needs to be modified.
      	(variable_canonicalize): New function.
      	(dataflow_set_union): If dst->vars is empty, just share src->vars
      	with dst->vars and traverse with variable_canonicalize to canonicalize
      	and unshare what is needed.
      	(dataflow_set_different): If old_set and new_set use the same shared
      	htab, they aren't different.  If number of htab elements is different,
      	htabs are different.  Use shared_hash_*.
      	(dataflow_set_destroy): Call shared_hash_destroy instead of
      	htab_delete.
      	(compute_bb_dataflow, emit_notes_in_bb, vt_emit_notes): Don't pass
      	second argument to dataflow_set_init.
      	(vt_initialize): Likewise.  Initialize shared_hash_pool and
      	empty_shared_hash, move bb in/out initialization afterwards.
      	Use variable_htab_free instead of NULL as changed_variables del hook.
      	(variable_was_changed): Change type of second argument to pointer to
      	dataflow_set.  When inserting var into changed_variables, bump
      	refcount.  Unshare set->vars if set is shared htab and slot needs to
      	be cleared.
      	(set_variable_part): Use shared_hash_*, use initially NO_INSERT
      	lookup if set->vars is shared.  Unshare set->vars if needed.
      	Even ->refcount == 1 vars must be unshared if set->vars is shared
      	and var needs to be modified.  Adjust variable_was_changed caller.
      	(delete_variable_part): Use shared_hash_*.  Even ->refcount == 1
      	vars must be unshared if set->vars is shared and var needs to be
      	modified.  Adjust variable_was_changed caller.
      	(emit_note_insn_var_location): Don't pool_free var.
      	(emit_notes_for_differences_1): Initialize empty_var->refcount to 0
      	instead of 1.
      	(vt_finalize): Call htab_delete on empty_shared_hash->htab and
      	free_alloc_pool on shared_hash_pool.
      
      From-SVN: r148760
      Jakub Jelinek committed
    • hashtab.c (htab_traverse): Don't call htab_expand for nearly empty hashtabs with sizes 7, 13 or 31. · a46f975b
      	* hashtab.c (htab_traverse): Don't call htab_expand for
      	nearly empty hashtabs with sizes 7, 13 or 31.
      
      From-SVN: r148759
      Jakub Jelinek committed
    • re PR testsuite/40475 (gcc.dg/vect/vect-nest-cycle-[12].c) · 3d25028c
      
      	PR testsuite/40475
      	* gcc.dg/vect/vect-nest-cycle-1.c: Fail to vectorize on targets 
      	without misalignment support.
      	* gcc.dg/vect/vect-nest-cycle-2.c: Likewise.
      
      From-SVN: r148758
      Ira Rosen committed
    • 2009-06-20 Paolo Carlini <paolo.carlini@oracle.com> · 1a9e603e
      	* Revert last Change.
      
      From-SVN: r148756
      Paolo Carlini committed
    • Daily bump. · 299dd728
      From-SVN: r148755
      GCC Administrator committed
  2. 20 Jun, 2009 11 commits
  3. 19 Jun, 2009 22 commits
    • re PR fortran/40440 (Automatic deallocation component of DT function return value) · 47f71eb9
      2009-06-19  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/40440
      	* trans-expr.c (gfc_conv_procedure_call): Do not deallocate
      	allocatable components if the argument is a pointer.
      
      2009-06-19  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/40440
      	* gfortran.dg/alloc_comp_result_2.f90: New test.
      
      From-SVN: r148731
      Paul Thomas committed
    • tree.c (substitute_in_expr): Tweak and reformat. · 6569d386
      	* tree.c (substitute_in_expr) <COMPONENT_REF>: Tweak and reformat.
      	<tcc_vl_exp>: Call process_call_operands on the new CALL_EXPR.
      	Propagate the TREE_READONLY flag without overwriting it.
      	(substitute_placeholder_in_expr) <tcc_vl_exp>: Likewise.
      	Propagate the TREE_READONLY flag onto the result.
      	(process_call_operands): Move around.  Use correct constant value.
      
      From-SVN: r148729
      Eric Botcazou committed
    • Fix PR 40482 2009-06-19 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> · ce41c38b
      Fix PR 40482
      2009-06-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
      
      	    PR target/40482
      	    * config/arm/arm.c (thumb_shiftable_const): Truncate val to 
      	    32 bits.
      	    * config/arm/arm.md: Likewise.
      
      2009-06-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
      
      	    PR target/40482
      	    * gcc.target/arm/pr40482.c: New test.
      
      From-SVN: r148728
      Ramana Radhakrishnan committed
    • tree-cfg.c (gimple_redirect_edge_and_branch): Change ERROR_MARK to GIMPLE_ERROR_MARK. · d130ae11
      ./:	* tree-cfg.c (gimple_redirect_edge_and_branch): Change ERROR_MARK
      	to GIMPLE_ERROR_MARK.
      
      	* c-typeck.c (build_conditional_expr): Add op1_original_type and
      	op2_original_type parameters.  Warn about using different enum
      	types.
      	* c-parser.c (c_parser_conditional_expression): Pass original
      	types to build_conditional_expr.
      	* c-tree.h (build_conditional_expr): Update declaration.
      testsuite/:
      	* gcc.dg/Wcxx-compat-18.c: New testcase.
      
      From-SVN: r148727
      Ian Lance Taylor committed
    • trans.c (emit_check): Do not wrap up the result in a SAVE_EXPR. · 502c4bb9
      	* gcc-interface/trans.c (emit_check): Do not wrap up the result
      	in a SAVE_EXPR.
      	(protect_multiple_eval): Always protect complex expressions.
      
      From-SVN: r148723
      Eric Botcazou committed
    • i386.c (ix86_function_specific_save): Test that fields match values... · d4aa4f4b
      	* config/i386/i386.c (ix86_function_specific_save): Test that
      	fields match values, rather than testing the values are in a
      	certain range.
      
      From-SVN: r148721
      Ian Lance Taylor committed
    • random.h (_Adaptor): Simplify for _DInputType always a floating point type. · 9b88236b
      2009-06-19  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* include/bits/random.h (_Adaptor): Simplify for _DInputType always
      	a floating point type.
      	(uniform_int_distribution<>::uniform_int_distribution(_IntType,
      	_IntType)): Fix second default argument.
      	(uniform_int_distribution<>::_M_call): Remove.
      	(uniform_int_distribution<>::operator()(_UniformRandomNumberGenerator&,
      	const param_type&)): Only declare.
      	* include/bits/random.tcc (uniform_int_distribution<>::_M_call(
      	_UniformRandomNumberGenerator&, result_type, result_type, true_type):
      	Remove.
      	uniform_int_distribution<>::operator()(_UniformRandomNumberGenerator&,
      	const param_type&): Define here.
      	(geometric_distribution<>::operator()(_UniformRandomNumberGenerator&,
      	const param_type&), discrete_distribution<>::operator()
      	(_UniformRandomNumberGenerator&, const param_type&), 
      	piecewise_constant_distribution<>::operator()
      	(_UniformRandomNumberGenerator&, const param_type&),
      	piecewise_linear_distribution<>::operator()
      	(_UniformRandomNumberGenerator&, const param_type&)): Use double as
      	the second template argument of _Adaptor.
      	* testsuite/26_numerics/random/uniform_int_distribution/cons/
      	default.cc: Adjust.
      
      From-SVN: r148720
      Paolo Carlini committed
    • random.tcc (discrete_distribution<>::param_type:: param_type(size_t, double,… · f8dd9e0d
      random.tcc (discrete_distribution<>::param_type:: param_type(size_t, double, double, _Func), [...]): Tidy.
      
      2009-06-19  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* include/bits/random.tcc (discrete_distribution<>::param_type::
            	param_type(size_t, double, double, _Func),
      	discrete_distribution<>::operator()(_UniformRandomNumberGenerator&,
      	const param_type&)): Tidy.
      	(piecewise_constant_distribution<>::param_type::_M_initialize):
      	Use reserve, fix.
      	(piecewise_constant_distribution<>::param_type::
      	param_type(initializer_list<>, _Func),
      	piecewise_constant_distribution<>::param_type::
      	param_type(size_t, _RealType, _RealType, _Func),
             	piecewise_linear_distribution<>::param_type::
      	param_type(initializer_list<>, _Func),
             	piecewise_linear_distribution<>::param_type::
      	param_type(size_t, _RealType, _RealType, _Func)): Use reserve, tidy.
      	(piecewise_constant_distribution<>::param_type::
      	param_type(_InputIteratorB, _InputIteratorB, _InputIteratorW),
      	piecewise_constant_distribution<>::
      	operator()(_UniformRandomNumberGenerator&, const param_type&),
            	piecewise_linear_distribution<>::
      	operator()(_UniformRandomNumberGenerator&, const param_type&)): Fix.
      	(operator>>(std::basic_istream<>&,
      	piecewise_constant_distribution<>&),
      	operator>>(std::basic_istream<>&, piecewise_linear_distribution<>&)):
      	Use reserve.
      	* include/bits/random.h: Minor cosmetic changes.
      
      From-SVN: r148719
      Paolo Carlini committed
    • tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Handle ADDR_EXPR pointers. · 779704e7
      2009-06-19  Richard Guenther  <rguenther@suse.de>
      
      	* tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Handle
      	ADDR_EXPR pointers.
      	(ptr_derefs_may_alias_p): Likewise.
      	(ptr_deref_may_alias_ref_p_1): New function.
      	(ptr_deref_may_alias_ref_p): Likewise.
      	(ref_maybe_used_by_call_p_1): Handle builtins that are not
      	covered by looking at the ESCAPED solution.
      	(call_may_clobber_ref_p_1): Likewise.
      	* tree-ssa-structalias.c (get_constraint_for_ptr_offset):
      	Handle NULL_TREE offset.  Do not produce redundant constraints.
      	(process_all_all_constraints): New helper function.
      	(do_structure_copy): Use it.
      	(handle_lhs_call): Likewise.
      	(find_func_aliases): Handle some builtins with pointer arguments
      	and/or return values explicitly.
      
      	* gcc.c-torture/execute/20090618-1.c: New testcase.
      
      From-SVN: r148718
      Richard Guenther committed
    • * rtl.h (SUBREG_PROMOTED_UNSIGNED_P): Add cast to int. · 50ae5fea
      From-SVN: r148712
      Ian Lance Taylor committed
    • gfortran.h (gfc_expr): Use mpc_t to represent complex numbers. · eb6f9a86
      	* gfortran.h (gfc_expr): Use mpc_t to represent complex numbers.
      
      	* arith.c, dump-parse-tree.c, expr.c, module.c, resolve.c,
      	simplify.c, target-memory.c, target-memory.h, trans-const.c,
      	trans-expr.c: Convert to mpc_t throughout.
      
      From-SVN: r148711
      Kaveh R. Ghazi committed
    • ggc-page.c (ggc_pch_write_object): Initialize emptyBytes. · 642324bb
      ./:	* ggc-page.c (ggc_pch_write_object): Initialize emptyBytes.
      	* sdbout.c (sdb_debug_hooks): Initialize non-SDB_DEBUGGING_INFO
      	version.
      
      	* c-decl.c (finish_decl): If -Wc++-compat, warn about
      	uninitialized const.
      testsuite/:
      	* gcc.dg/Wcxx-compat-17.c: New testcase.
      
      From-SVN: r148710
      Ian Lance Taylor committed
    • dse.c (struct store_info): Rename bitmap field to bmap. · dc491a25
      ./:	* dse.c (struct store_info): Rename bitmap field to bmap.  Change
      	all uses.
      
      	* c-decl.c (in_struct, struct_types): Remove.
      	(struct c_binding): Add in_struct field.
      	(c_binding_ptr): Define type, along with VEC.
      	(struct c_struct_parse_info): Define.
      	(struct_parse_info): New static variable.
      	(bind): Initialize in_struct field.
      	(start_struct): Remove enclosing_in_struct and
      	enclosing_struct_types parameters.  Add
      	enclosing_struct_parse_info parameter.  Change all callers.  Set
      	struct_parse_info rather than in_struct and struct_types.
      	(grokfield): If -Wc++-compat and there is a symbol binding for the
      	field name, set the in_struct flag and push it on the
      	struct_parse_info->fields vector.
      	(warn_cxx_compat_finish_struct): New static function.
      	(finish_struct): Remove enclosing_in_struct and
      	enclosing_struct_types parameters.  Add
      	enclosing_struct_parse_info parameter.  Change all callers.  Don't
      	set C_TYPE_DEFINED_IN_STRUCT here.  Call
      	warn_cxx_compat_finish_struct.  Free struct_parse_info and set to
      	parameter.  Only push on struct_types if warn_cxx_compat.
      	(finish_enum): Only push on struct_types if warn_cxx_compat.
      	(declspecs_add_type): Add loc parameter.  Change all callers.
      	Change all error calls to error_at.  Pass loc, not input_location,
      	to pedwarn calls.  Warn if -Wc++-compat and a typedef name is
      	defined in a struct.  If -Wc++-compat and parsing a struct, record
      	that a typedef name was used.
      	* c-parser.c (c_parser_declspecs): Get location to pass to
      	declspecs_add_type.
      	(c_parser_struct_or_union_specifier): Update calls to start_struct
      	and finish_struct.
      	* c-tree.h (struct c_struct_parse_info): Declare.
      	(finish_struct, start_struct): Update declarations.
      	(declspecs_add_type): Update declaration.
      objc/:
      	* objc-act.c (objc_in_struct, objc_struct_types): Remove.
      	(objc_struct_info): New static variable.
      	(objc_start_struct): Pass &objc_struct_info, not &objc_in_struct
      	and &objc_struct_types, to start_struct.
      	(objc_finish_struct): Likewise for finish_struct.
      objcp/:
      	* objcp-decl.h (start_struct): Remove in_struct and struct_types
      	parameters.  Add struct_info parameter.
      	(finish_struct): Likewise.
      testsuite/:
      	* gcc.dg/Wcxx-compat-15.c: New testcase.
      
      From-SVN: r148709
      Ian Lance Taylor committed
    • c-decl.c (grokdeclarator): If -Wc++-compat, warn about a global variable with an anonymous type. · 88eeff6f
      ./:	* c-decl.c (grokdeclarator): If -Wc++-compat, warn about a global
      	variable with an anonymous type.
      fortran/:
      	* cpp.c (struct gfc_cpp_option_data): Give this struct, used for
      	the global variable gfc_cpp_option, a name.
      testsuite/:
      	* gcc.dg/Wcxx-compat-16.c: New testcase.
      
      From-SVN: r148708
      Ian Lance Taylor committed
    • see.c: Remove for real. · 28a876a4
      	* see.c: Remove for real.
      
      From-SVN: r148707
      Uros Bizjak committed
    • re PR testsuite/40491 (Revision 148663 caused extra failures) · dc6707b8
      	* optabs.h (enum optab_index): Add new OTI_significand.
      	(significand_optab): Define corresponding macro.
      	* optabs.c (init_optabs): Initialize significand_optab.
      	* genopinit.c (optabs): Implement significand_optab using
      	significand?f2 patterns.
      	* builtins.c (expand_builtin_mathfn): Handle
      	BUILT_IN_SIGNIFICAND{,F,L}.
      	(expand_builtin): Expand BUILT_IN_SIGNIFICAND{,F,L} using
      	expand_builtin_mathfn if flag_unsafe_math_optimizations is set.
      
      	* config/i386/i386.md (significandxf2, significand<mode>2): New
      	expanders to implement significandf, significand and significandl
      	built-ins as inline x87 intrinsics.
      
      testsuite/ChangeLog:
      
      	* gcc.dg/builtins-34.c: Add significand cases.
      
      	PR testsuite/40491
      	* testsuite/gcc.dg/20080522-1.c: Remove testcase for real.
      	* testsuite/gcc.dg/20080528-1.c: Ditto.
      
      From-SVN: r148705
      Uros Bizjak committed
    • Update comments. · 4646d048
      From-SVN: r148703
      Arnaud Charlet committed
    • Minor reformatting. · 1313f39c
      From-SVN: r148702
      Arnaud Charlet committed
    • [multiple changes] · 659819b9
      2009-06-19  Emmanuel Briot  <briot@adacore.com>
      
      	* prj-ext.adb, makeutl.adb, makeutl.ads (Executable_Prefix_Path): Now
      	make sure we always return a name ending with a path separator.
      
      2009-06-19  Javier Miranda  <miranda@adacore.com>
      
      	* sem_ch12.adb (Instantiate_Package_Body, Instantiate_Subprogram_Body):
      	Save and restore the visibility of the parent when installed.
      
      2009-06-19  Jose Ruiz  <ruiz@adacore.com>
      
      	* s-tposen.ads (Protection_Entry): Replace fields L, Ceiling, and Owner
      	by Common which contains all these fields.
      
      	* s-tposen.adb (Initialize_Protection_Entry, Lock_Entry,
      	Lock_Read_Only_Entry, Timed_Protected_Single_Entry_Call, Unlock_Entry):
      	Remove code duplication in this package by means of calling the
      	equivalent code in s-taprob.
      
      2009-06-19  Robert Dewar  <dewar@adacore.com>
      
      	* a-einuoc.ads: Minor reformatting
      
      From-SVN: r148701
      Arnaud Charlet committed
    • a-einuoc.ads, [...]: Code clean up. · 0eed21bd
      2009-06-19  Ed Falis  <falis@adacore.com>
      
      	* a-einuoc.ads, s-osinte-vxworks.ads, s-vxwext.ads, s-vxwext-kernel.adb,
      	s-vxwext-kernel.ads, s-vxwext-rtp.ads: Code clean up.
      
      From-SVN: r148698
      Ed Falis committed
    • [multiple changes] · 93c3fca7
      2009-06-19  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* einfo.ads (Handling of Type'Size Values): Fix Object_Size values.
      
      2009-06-19  Robert Dewar  <dewar@adacore.com>
      
      	* a-nudira.adb (Need_64): Handle negative ranges and also dynamic
      	ranges
      
      	* checks.adb (Determine_Range): Move the test for generic types later.
      
      	* sem_eval.adb (Compile_Time_Compare): Improve circuitry to catch more
      	cases.
      	(Eval_Relational_Op): Fold more cases including string compares
      
      	* sem_util.ads, sem_util.adb (References_Generic_Formal_Type): New
      	function.
      
      From-SVN: r148697
      Arnaud Charlet committed