1. 10 Nov, 2013 3 commits
  2. 09 Nov, 2013 6 commits
    • function.c (NAME__MAIN): Move to... · 8a6ce562
      2013-11-09  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
      
      	* function.c (NAME__MAIN): Move to...
      	* cfgexpand.c (NAME__MAIN): ...here.
      
      [BR]: http://gcc.gnu.org/ml/gcc-patches/2013-11/msg01003.html
      
      From-SVN: r204620
      Jan-Benedict Glaw committed
    • c-common.c (atomic_size_supported_p): New function. · 6b28e197
      	* c-common.c (atomic_size_supported_p): New function.
      	(resolve_overloaded_atomic_exchange)
      	(resolve_overloaded_atomic_compare_exchange)
      	(resolve_overloaded_atomic_load, resolve_overloaded_atomic_store):
      	Use it instead of comparing size with a local list of sizes.
      
      From-SVN: r204618
      Joseph Myers committed
    • runtime: Correct flag (FlagNoGC => FlagNoInvokeGC). · 86dedeba
      From-SVN: r204617
      Ian Lance Taylor committed
    • re PR libstdc++/58982 (std::vector<std::atomic<int>> vai(10); does not compile anymore) · 5275f3e5
      	PR libstdc++/58982
      	* include/bits/stl_algobase.h (__copy_move::__copy_m): Use assertion
      	to prevent using memmove() on non-assignable types.
      	(__copy_move_backward::__copy_move_b): Likewise.
      	* include/bits/stl_uninitialized.h (uninitialized_copy
      	uninitialized_copy_n, uninitialized_fill, uninitialized_fill_n,
      	__uninitialized_default, __uninitialized_default_n): Check for
      	assignable as well as trivial.
      	* testsuite/20_util/specialized_algorithms/uninitialized_copy/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_copy_n/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_fill/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_fill_n/
      	58982.cc: New.
      	* testsuite/25_algorithms/copy/58982.cc: New.
      	* testsuite/25_algorithms/copy_n/58982.cc: New.
      
      From-SVN: r204615
      Jonathan Wakely committed
    • target.def (can_use_doloop_p): New hook. · 1d0216c8
      gcc/
      	* target.def (can_use_doloop_p): New hook.
      	* doc/tm.texi.in (TARGET_CAN_USE_DOLOOP_P): Add.
      	* doc/tm.texi: Regenerate.
      	* doc/md.texi (doloop_begin, doloop_end): Update documentation.
      	* hooks.h (hook_bool_dint_dint_uint_true): Declare.
      	* hooks.c (hook_bool_dint_dint_uint_true): New function.
      	* targhooks.h (can_use_doloop_if_innermost): Declare.
      	* targhooks.c (can_use_doloop_if_innermost): New function.
      	* target.h: Include double-int.h.
      	* loop-doloop.c (doloop_optimize): Call targetm.can_use_doloop_p.
      	Remove iteration count, maximum iteration count, loop depth and
      	enter-at-top inputs from doloop_begin and doloop_end.
      	* config/arc/arc.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/arc/arc.c (arc_can_use_doloop_p): New function.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/arm/thumb2.md (doloop_end): Update for new interface.
      	* config/arm/arm.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/bfin/bfin.md (doloop_end): Update for new interface.
      	* config/bfin/bfin.c (bfin_can_use_doloop_p): New function.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/c6x/c6x.md (doloop_end): Update for new interface.
      	* config/ia64/ia64.md (doloop_end): Update for new interface.
      	* config/ia64/ia64.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/mep/mep.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/mep/mep.c (mep_emit_doloop): Likewise.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/rs6000/rs6000.md (doloop_end): Update for new interface.
      	* config/rs6000/rs6000.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/s390/s390.md (doloop_end): Update for new interface.
      	* config/sh/sh.md (doloop_end): Likewise.
      	* config/spu/spu.md (doloop_end): Likewise.
      	* config/spu/spu.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/tilegx/tilegx.md (doloop_end): Update for new interface.
      	* config/tilegx/tilegx.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/tilepro/tilepro.md (doloop_end): Update for new interface.
      	* config/tilepro/tilepro.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/v850/v850.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/v850/v850.c (TARGET_CAN_USE_DOLOOP_P): Define.
      
      From-SVN: r204614
      Richard Sandiford committed
    • Daily bump. · 12929715
      From-SVN: r204611
      GCC Administrator committed
  3. 08 Nov, 2013 22 commits
    • Re-factor tree.h - Part 1. · 862d0b35
      This is the first patch in a series of patches to cleanup tree.h to
      reduce the exposure it has all over the compiler.
      
      In this patch, I'm moving functions that are used once into the files
      that use them, and make them private to that file. These functions
      were declared extern in tree.h and called from exactly one place.
      
      The patch does not move EVERY function. This usually happens
      when the function uses private state from its original file, and
      moving that private state would mean moving other functions that made
      no sense to move.
      
      Additionally, the patch removes functions that were never used.
      
      In subsequent patches, I will be moving out of tree.h extern definitions
      that should be grouped in other files (e.g., all functions defined in
      some FOO.c will be moved to the corresponding FOO.h). This will allow
      me to remove the inclusion of tree.h from some files.
      
          * attribs.c (lookup_scoped_attribute_spec): Make static.
          (get_attribute_namespace): Likewise.
          * builtins.c (more_const_call_expr_args_p): Move from
          tree.h.
          (validate_arglist): Move earlier in the file. Make static.
          (expand_stack_restore): Move from stmt.c
          (expand_stack_save): Move from stmt.c
          (rewrite_call_expr_array): Move earlier in the file.
          (rewrite_call_expr_valist): Likewise.
          * cfgexpand.c: Include hard-reg-set.h before tree.h
          Include recog.h.
          Include output.h.
          (expand_asm_loc): Move from stmt.c.
          (n_occurrences): Move from stmt.c.
          (check_operand_nalternatives): Move from stmt.c.
          (tree_conflicts_with_clobbers_p): Move from stmt.c.
          (expand_asm_operands): Move from stmt.c
          (expand_asm_stmt): Move from stmt.c
          (expand_computed_goto): Move from stmt.c
          (expand_goto): Move from stmt.c
          (expand_null_return_1): Move from stmt.c
          (expand_null_return): Move from stmt.c
          (expand_value_return): Move from stmt.c
          (expand_return): Move from stmt.c
          (expand_main_function): Move from function.c
          (stack_protect_prologue): Move from function.c
          * cgraphclones.c (build_function_type_skip_args): Move from tree.c.
          (build_function_decl_skip_args): Move from tree.c.
          * explow.c (tree_expr_size): Move from tree.c.
          * expr.c (addr_expr_of_non_mem_decl_p): Remove.
          (fields_length): Move from tree.c.
          * fold-const.c (size_low_cst): Move from tree.c.
          (tree_expr_nonzero_warnv_p): Make static. Move earlier in the file.
          (tree_expr_nonzero_p): Make static. Move earlier in the file.
          (fold_build3_initializer_loc): Remove.
          (tree_invalid_nonnegative_warnv_p): Make static.
          * function.c (expand_main_function): Move to cfgexpand.c.
          (stack_protect_prologue): Move to cfgexpand.c.
          (set_insn_locations): Move earlier in the file.
          * gimple-fold.c: Include langhooks.h.
          (truth_type_for): Move from tree.c.
          * print-tree.c (print_vec_tree): Remove.
          * stmt.c (expand_computed_goto): Move to cfgexpand.c.
          (expand_goto): Move to cfgexpand.c.
          (n_occurrences): Move to cfgexpand.c.
          (expand_asm_loc): Move to cfgexpand.c
          (tree_conflicts_with_clobbers_p): Move to cfgexpand.c.
          (expand_asm_operands): Move to cfgexpand.c.
          (expand_asm_stmt): Move to cfgexpand.c.
          (check_operand_nalternatives): Move to cfgexpand.c
          (expand_null_return): Move to cfgexpand.c.
          (expand_value_return): Move to cfgexpand.c.
          (expand_null_return_1): Move to cfgexpand.c.
          (expand_return): Move to cfgexpand.c.
          (expand_stack_save): Move to builtins.c.
          (expand_stack_restore): Move to builtins.c
          * symtab.c: Include output.h.
          (decl_assembler_name_hash): Move from tree.c.
          (decl_assembler_name_equal): Move from tree.c.
          * trans-mem.c (is_tm_safe_or_pure): Move from tree.h.
          * tree-eh.c (in_array_bounds_p): Move from tree.c.
          (range_in_array_bounds_p): Move from tree.c.
          * tree-object-size.c (fini_object_sizes): Make static.
          * tree-ssa-dom.c (iterative_hash_exprs_commutative): Move from tree.h.
          * tree-vrp.c (ssa_name_nonnegative_p): Remove.
          * tree.c (decl_assembler_name_equal): Move to symtab.c.
          (tree_expr_size): Move to explow.c.
          (decl_assembler_name_hash): Move to symtab.c.
          (real_twop): Remove.
          (tree_expr_size): Move to explow.c.
          (stabilize_reference_1): Move earlier in the file. Make static.
          (omp_remove_redundant_declare_simd_attrs): Remove.
          (simple_cst_list_equal): Move earlier in the file. Make static.
          (size_low_cst): Move to fold-const.c.
          (build_type_no_quals): Remove.
          (build_function_type_skip_args): Move to cgraphclones.c.
          (build_function_decl_skip_args): Move to cgraphclones.c.
          (in_array_bounds_p): Move to tree-eh.c.
          (range_in_array_bounds_p): Move to tree-eh.c.
          (truth_type_for): Move to gimple-fold.c.
          (list_equal_p): remove.
          * tree.h (decl_assembler_name_equal): Remove.
          (decl_assembler_name_hash): Remove.
          (truth_type_for): Remove.
          (build_type_no_quals): Remove.
          (build_function_decl_skip_args): Remove.
          (in_array_bounds_p): Remove.
          (range_in_array_bounds_p): Remove.
          (size_low_cst): Remove.
          (omp_remove_redundant_declare_simd_attrs): Remove.
          (tree_expr_size): Remove.
          (fields_length): Remove.
          (stabilize_reference_1): Remove.
          (expand_goto): Remove.
          (expand_stack_save): Remove.
          (expand_stack_restore): Remove.
          (expand_return): Remove.
          (fold_build3_initializer_loc): Remove.
          (tree_expr_nonzero_p): Remove.
          (tree_invalid_nonnegative_warnv_p): Remove.
          (tree_expr_nonzero_warnv_p): Remove.
          (fold_builtin_snprintf_chk): Remove.
          (validate_arglist): Remove.
          (iterative_hash_exprs_commutative): Move to tree-ssa-dom.c.
          (simple_cst_list_equal): Remove.
          (real_twop): Remove.
          (expand_main_function): Remove.
          (stack_protect_prologue): Remove.
          (print_vec_tree): Remove.
          (lookup_scoped_attribute_spec): Remove.
          (get_attribute_namespace): Remove.
          (expand_computed_goto): Remove.
          (expand_asm_stmt): Remove.
          (list_equal_p): Remove.
          (ssa_name_nonnegative_p): Remove.
          (fini_object_sizes): Remove.
          (addr_expr_of_non_mem_decl_p): Remove.
          (is_tm_safe_or_pure): Move to trans-mem.c.
          (more_const_call_expr_args_p): Remove.
          (save_vtable_map_decl): Remove.
      
      From-SVN: r204606
      Diego Novillo committed
    • Move Cilk Plus Builtins node before Other Builtins node · f0e56cd6
      	PR other/59055
      	* doc/extend.texi: Move Cilk Plus Builtins node before Other
      	Builtins node.
      
      From-SVN: r204604
      H.J. Lu committed
    • [multiple changes] · 39b2468c
      2013-11-08  Andrew MacLeod  <amacleod@redhat.com>
      	    Joseph Myers  <joseph@codesourcery.com>
      
      	* ginclude/stdatomic.h: New file.
      	* Makefile.in (USER_H): Add stdatomic.h.
      
      testsuite:
      2013-11-08  Joseph Myers  <joseph@codesourcery.com>
      
      	* gcc.dg/atomic/stdatomic-compare-exchange-1.c,
      	gcc.dg/atomic/stdatomic-compare-exchange-2.c,
      	gcc.dg/atomic/stdatomic-compare-exchange-3.c,
      	gcc.dg/atomic/stdatomic-compare-exchange-4.c,
      	gcc.dg/atomic/stdatomic-exchange-1.c,
      	gcc.dg/atomic/stdatomic-exchange-2.c,
      	gcc.dg/atomic/stdatomic-exchange-3.c,
      	gcc.dg/atomic/stdatomic-exchange-4.c,
      	gcc.dg/atomic/stdatomic-fence.c, gcc.dg/atomic/stdatomic-flag.c,
      	gcc.dg/atomic/stdatomic-generic.c,
      	gcc.dg/atomic/stdatomic-kill-dep.c,
      	gcc.dg/atomic/stdatomic-load-1.c,
      	gcc.dg/atomic/stdatomic-load-2.c,
      	gcc.dg/atomic/stdatomic-load-3.c,
      	gcc.dg/atomic/stdatomic-load-4.c,
      	gcc.dg/atomic/stdatomic-lockfree.c,
      	gcc.dg/atomic/stdatomic-op-1.c, gcc.dg/atomic/stdatomic-op-2.c,
      	gcc.dg/atomic/stdatomic-op-3.c, gcc.dg/atomic/stdatomic-op-4.c,
      	gcc.dg/atomic/stdatomic-store-1.c,
      	gcc.dg/atomic/stdatomic-store-2.c,
      	gcc.dg/atomic/stdatomic-store-3.c,
      	gcc.dg/atomic/stdatomic-store-4.c, gcc.dg/c11-stdatomic-1.c: New
      	tests.
      
      From-SVN: r204603
      Joseph Myers committed
    • safe_iterator.h (_BeforeBeginHelper<>::_S_Is): Take only a const safe iterator reference. · 9fc0e24b
      2013-11-08  François Dumont  <fdumont@gcc.gnu.org>
      
      	* include/debug/safe_iterator.h (_BeforeBeginHelper<>::_S_Is):
      	Take only a const safe iterator reference.
      	(_BeforeBeginHelper<>::_S_Is_beginnest): Likewise.
      	(__get_distance): Take only one type of iterator.
      	(_Safe_iterator<>::_M_valid_range<>): Not template anymore.
      	(_Safe_iterator<>::_M_get_sequence()): Return pointer to const
      	sequence from a const_iterator and a pointer to sequence from an
      	iterator.
      	* include/debug/safe_iterator.tcc: Adapt.
      	* include/debug/safe_local_iterator.h
      	(_Safe_local_iterator<>::_M_valid_range<>): Not template anymore.
      	(_Safe_local_iterator<>::_M_get_sequence()): Return pointer to
      	const sequence from a const_iterator and a pointer to sequence
      	from an iterator.
      	* include/debug/safe_local_iterator.tcc: Adapt.
      	* include/debug/forward_list
      	(_BeforeBeginHelper<std::__debug::forward_list<>>): Adapt.
      
      From-SVN: r204598
      François Dumont committed
    • +2013-11-08 Balaji V. · d53b3432
      +2013-11-08  Balaji V. Iyer  <balaji.v.iyer@intel.com>
      +
      +       PR c/59039
      +       * runtime/cilk_fiber-unix.cpp: Fixed a crash in run() function
      +       when optimization is turned on.
      +
      
      From-SVN: r204592
      Balaji V. Iyer committed
    • re PR tree-optimization/58508 ([Missed-Optimization] Redundant vector load of… · 3361dd3a
      re PR tree-optimization/58508 ([Missed-Optimization] Redundant vector load of "actual" loop invariant in loop body.)
      
      2013-11-08  Cong Hou  <congh@google.com>
      
      	PR tree-optimization/58508
      	* gcc.dg/vect/pr58508.c: Update.
      
      From-SVN: r204590
      Cong Hou committed
    • arm.c (arm_new_rtx_costs): Break after handling comparisons. · 438a7ecd
      
      	* config/arm/arm.c (arm_new_rtx_costs): Break after handling
      	comparisons.
      
      From-SVN: r204584
      Kyrylo Tkachov committed
    • compiler: Fix bogus init loop error with struct composite literal. · 68607055
      This should eventually be bug482.go in the master testsuite.
      
      From-SVN: r204583
      Ian Lance Taylor committed
    • regex_compiler.h (__detail::__has_contiguous_iter): vector<bool> storage is not contiguous. · e15c474a
      	* include/bits/regex_compiler.h (__detail::__has_contiguous_iter):
      	vector<bool> storage is not contiguous.
      
      From-SVN: r204582
      Jonathan Wakely committed
    • tree-ssa-threadupdate.h (delete_thread_path): Declare. · f0bc3cc0
             * tree-ssa-threadupdate.h (delete_thread_path): Declare.
              * tree-ssa-threadupdate.c (delete_thread_path): New function.
              (ssa_redirect_edges, thread_block_1): Use it.
              (thread_through_loop_header, mark_threaded_blocks): Likewise.
              (thread_through_all_blocks, register_jump_thread): Likewise.
              * tree-ssa-threadedge.c (thread_across_edge): Likewise.
      
      From-SVN: r204579
      Jeff Law committed
    • [ARM, AArch64] Make aarch-common.c files more robust. · df023e0f
      gcc/
      	* config/arm/aarch-common.c
      	(search_term): New typedef.
      	(shift_rtx_costs): New array.
      	(arm_rtx_shift_left_p): New.
      	(arm_find_sub_rtx_with_search_term): Likewise.
      	(arm_find_sub_rtx_with_code): Likewise.
      	(arm_early_load_addr_dep): Add sanity checking.
      	(arm_no_early_alu_shift_dep): Likewise.
      	(arm_no_early_alu_shift_value_dep): Likewise.
      	(arm_no_early_mul_dep): Likewise.
      	(arm_no_early_store_addr_dep): Likewise.
      
      From-SVN: r204575
      James Greenhalgh committed
    • regex_compiler.h (__detail::__compile_nfa): Overload so that… · 34d1ff06
      regex_compiler.h (__detail::__compile_nfa): Overload so that std::basic_string<C> and std::vector<C> iterators dispatch to...
      
      	* include/bits/regex_compiler.h (__detail::__compile_nfa): Overload
      	so that std::basic_string<C> and std::vector<C> iterators dispatch to
      	the const C* compiler.
      
      From-SVN: r204574
      Jonathan Wakely committed
    • regex_compiler.h (__detail::_AnyMatcher, [...]): Remove redundant _CharT template parameters. · bb038ece
      	* include/bits/regex_compiler.h (__detail::_AnyMatcher,
      	__detail::_CharMatcher, __detail::_BracketMatcher): Remove redundant
      	_CharT template parameters.
      	* include/bits/regex_compiler.tcc: Likewise.
      
      From-SVN: r204573
      Jonathan Wakely committed
    • regex_automaton.h (__detail::_State, [...]): Remove redundant _CharT template parameters. · 68e69ce2
      	* include/bits/regex_automaton.h (__detail::_State, __detail::_NFA,
      	__detail::_StateSeq): Remove redundant _CharT template parameters.
      	* include/bits/regex_automaton.tcc: Likewise.
      	* include/bits/regex_compiler.h (__detail::_Compiler): Likewise.
      	(__compile_nfa): Add object generator for _Compiler.
      	* include/bits/regex_compiler.tcc: Remove _CharT template parameters.
      	* include/bits/regex_executor.h: Likewise.
      	* include/bits/regex_executor.tcc: Likewise.
      	* include/bits/regex.h (basic_regex): Assert char_type matches. Use
      	__compile_nfa object generator. Remove _CharT template parameter.
      
      From-SVN: r204572
      Jonathan Wakely committed
    • regex_automaton.h (__detail::_State): Split non-dependent parts into new _State_base. · 7d9d2185
      	* include/bits/regex_automaton.h (__detail::_State): Split
      	non-dependent parts into new _State_base.
      	(__detail::_NFA): Likewise for _NFA_base. Use std::move() to avoid
      	copies when inserting _MatcherT and _StateT objects.
      	* include/bits/regex_automaton.tcc: Move member definitions to base
      	class. Qualify dependent names.
      	* include/bits/regex_compiler.h (__detail::_Compiler::_M_get_nfa): Make
      	non-const and use std::move to avoid copying.
      	* include/bits/regex_compiler.tcc: Likewise.
      	* include/bits/regex_executor.h (__detail::_Executor::_M_is_word): Use
      	array, so past-the-end iterator is valid.
      
      From-SVN: r204571
      Jonathan Wakely committed
    • re PR tree-optimization/59047 (wrong code for bitfields at -O3 on x86_64-linux-gnu) · cb3d1e3e
      2013-11-08  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/59047
      	* tree-predcom.c (ref_at_iteration): Handle bitfield accesses
      	properly.
      
      	* gcc.dg/torture/pr59047.c: New testcase.
      
      From-SVN: r204566
      Richard Biener committed
    • common.opt (fcheck-pointer-bounds): Move to ... · 05ff7470
              * common.opt (fcheck-pointer-bounds): Move to ...
              * c-family/c.opt: ... here.
              * langhooks-def.h (LANG_HOOKS_CHKP_SUPPORTED): Remove.
              (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_CHKP_SUPPORTED.
              * langhooks.h (lang_hooks): Remove chkp_supported field.
              * toplev.c (process_options): Remove chkp_supported check.
      
      From-SVN: r204563
      Ilya Enkovich committed
    • libgcc: check for fenv.h in dfp configure check · ac088ba1
      uClibc can be built without fenv support, extend the configure check for
      decimal floating point to probe the existance of fenv.h, too.
      
      libgcc/ChangeLog:
      
      2013-03-24  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
      
      	* configure.ac (libgcc_cv_dfp): Extend check to probe fenv.h
      	availability.
      	* configure: Regenerate
      
      From-SVN: r204562
      Bernhard Reutner-Fischer committed
    • re PR tree-optimization/59038 (r204398 causes 186.crafty init.c to be miscompiled) · 2cf19e26
      2013-11-08  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/59038
      	PR tree-optimization/58955
      	* tree-loop-distribution.c (pg_add_dependence_edges): Revert
      	previous change.  Handle known dependences correctly.
      
      	* gcc.dg/torture/pr59038.c: New testcase.
      
      From-SVN: r204561
      Richard Biener committed
    • Remove duplicate contents in gcc/config/rs6000/t-xilinx · 26e3d0ae
      2013-11-08  Tom de Vries  <tom@codesourcery.com>
      
      	* config/rs6000/t-xilinx: Remove duplicate contents.
      
      From-SVN: r204555
      Tom de Vries committed
    • Daily bump. · a5bebf9e
      From-SVN: r204554
      GCC Administrator committed
  4. 07 Nov, 2013 9 commits
    • runtime: Fixes for Alpha. · f671b589
      From-SVN: r204551
      Ian Lance Taylor committed
    • re PR fortran/58471 (ICE on invalid with missing type constructor and -Wall) · 50c7654b
      2013-11-07  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/58471
      	* primary.c (gfc_expr_attr): Check for result symbol.
      
      2013-11-07  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/58471
      	* gfortran.dg/constructor_9.f90: New.
      
      From-SVN: r204547
      Janus Weil committed
    • sfp-exceptions.c (__sfp_handle_exceptions): Rewrite FP_EX_INEXACT handling. · 9de84e84
      	* config/i386/sfp-exceptions.c (__sfp_handle_exceptions): Rewrite
      	FP_EX_INEXACT handling.
      
      From-SVN: r204546
      Uros Bizjak committed
    • atomic-compare-exchange-1.c, [...]: Declare main as returning int. · 722516b8
      	* gcc.dg/atomic-compare-exchange-1.c,
      	gcc.dg/atomic-compare-exchange-2.c,
      	gcc.dg/atomic-compare-exchange-3.c,
      	gcc.dg/atomic-compare-exchange-4.c,
      	gcc.dg/atomic-compare-exchange-5.c, gcc.dg/atomic-exchange-1.c,
      	gcc.dg/atomic-exchange-2.c, gcc.dg/atomic-exchange-3.c,
      	gcc.dg/atomic-exchange-4.c, gcc.dg/atomic-exchange-5.c,
      	gcc.dg/atomic-fence.c, gcc.dg/atomic-flag.c,
      	gcc.dg/atomic-generic.c, gcc.dg/atomic-invalid.c,
      	gcc.dg/atomic-load-1.c, gcc.dg/atomic-load-2.c,
      	gcc.dg/atomic-load-3.c, gcc.dg/atomic-load-4.c,
      	gcc.dg/atomic-load-5.c, gcc.dg/atomic-lockfree.c,
      	gcc.dg/atomic-noinline.c, gcc.dg/atomic-op-1.c,
      	gcc.dg/atomic-op-2.c, gcc.dg/atomic-op-3.c, gcc.dg/atomic-op-4.c,
      	gcc.dg/atomic-op-5.c, gcc.dg/atomic-param.c,
      	gcc.dg/atomic-store-1.c, gcc.dg/atomic-store-2.c,
      	gcc.dg/atomic-store-3.c, gcc.dg/atomic-store-4.c,
      	gcc.dg/atomic-store-5.c: Declare main as returning int.
      	* gcc.dg/atomic-exchange-1.c, gcc.dg/atomic-exchange-2.c,
      	gcc.dg/atomic-exchange-3.c, gcc.dg/atomic-exchange-4.c,
      	gcc.dg/atomic-exchange-5.c: Separate increments of count from
      	expression using value of count.
      
      From-SVN: r204545
      Joseph Myers committed
    • tree-core.h (enum cv_qualifier): Add TYPE_QUAL_ATOMIC. · 267bac10
      gcc:
      2013-11-05  Andrew MacLeod  <amacleod@redhat.com>
      	    Joseph Myers  <joseph@codesourcery.com>
      
      	* tree-core.h (enum cv_qualifier): Add TYPE_QUAL_ATOMIC.
      	(enum tree_index): Add TI_ATOMICQI_TYPE, TI_ATOMICHI_TYPE,
      	TI_ATOMICSI_TYPE, TI_ATOMICDI_TYPE and TI_ATOMICTI_TYPE.
      	(struct tree_base): Add atomic_flag field.
      	* tree.h (TYPE_ATOMIC): New accessor macro.
      	(TYPE_QUALS, TYPE_QUALS_NO_ADDR_SPACE): Add TYPE_QUAL_ATOMIC.
      	(TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC): New macro.
      	(atomicQI_type_node, atomicHI_type_node, atomicSI_type_node)
      	(atomicDI_type_node, atomicTI_type_node): New macros for type
      	nodes.
      	* tree.c (set_type_quals): Set TYPE_ATOMIC.
      	(find_atomic_core_type): New function.
      	(build_qualified_type): Adjust alignment for qualified types.
      	(build_atomic_base): New function
      	(build_common_tree_nodes): Build atomicQI_type_node,
      	atomicHI_type_node, atomicSI_type_node, atomicDI_type_node and
      	atomicTI_type_node.
      	* print-tree.c (print_node): Print atomic qualifier.
      	* tree-pretty-print.c (dump_generic_node): Print atomic type
      	attribute.
      	* target.def (atomic_assign_expand_fenv): New hook.
      	* doc/tm.texi.in (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New @hook.
      	* doc/tm.texi: Regenerate.
      	* targhooks.c (default_atomic_assign_expand_fenv): New function.
      	* targhooks.h (default_atomic_assign_expand_fenv): Declare.
      	* sync-builtins.def (__atomic_feraiseexcept): New built-in
      	function.
      	* config/i386/i386-builtin-types.def (VOID_FTYPE_PUSHORT): New
      	function type.
      	* config/i386/i386.c (enum ix86_builtins): Add
      	IX86_BUILTIN_FNSTENV, IX86_BUILTIN_FLDENV, IX86_BUILTIN_FNSTSW and
      	IX86_BUILTIN_FNCLEX.
      	(bdesc_special_args): Add __builtin_ia32_fnstenv,
      	__builtin_ia32_fldenv, __builtin_ia32_fnstsw and
      	__builtin_ia32_fnclex.
      	(ix86_expand_builtin): Handle the new built-in functions.
      	(ix86_atomic_assign_expand_fenv): New function.
      	(TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New macro.
      	* config/i386/i386.md (UNSPECV_FNSTENV, UNSPECV_FLDENV)
      	(UNSPECV_FNSTSW, UNSPECV_FNCLEX): New unspecs.
      	(fnstenv, fldenv, fnstsw, fnclex): New insns.
      
      gcc/c-family:
      2013-11-05  Andrew MacLeod  <amacleod@redhat.com>
      	    Joseph Myers  <joseph@codesourcery.com>
      
      	* c-common.h (enum rid): Add RID_ATOMIC.
      	* c-common.c (c_common_reswords): Add _Atomic.
      	(sync_resolve_params): Use TYPE_MAIN_VARIANT on pointer argument.
      	(keyword_is_type_qualifier): Accept RID_ATOMIC.
      	* c-format.c (check_format_types): Check for extra _Atomic
      	qualifiers in format argument.
      	* c-pretty-print.c (pp_c_cv_qualifiers): Handle atomic qualifier.
      	(pp_c_type_qualifier_list): Mention _Atomic in comment.
      
      gcc/c:
      2013-11-05  Joseph Myers  <joseph@codesourcery.com>
      	    Andrew MacLeod  <amacleod@redhat.com>
      
      	* c-aux-info.c (gen_type): Handle atomic qualifier.
      	* c-decl.c (validate_proto_after_old_defn): Do not remove atomic
      	qualifiers when compating types.
      	(shadow_tag_warned): Handle atomic_p in declspecs.
      	(quals_from_declspecs): Likewise.
      	(start_decl): Use c_type_promotes_to when promoting argument
      	types.
      	(grokdeclarator): Handle _Atomic.
      	(get_parm_info): Diagnose any qualifier on "void" as only
      	parameter.
      	(store_parm_decls_oldstyle): Do not remove atomic qualifiers when
      	comparing types.  Use c_type_promotes_to when promoting argument
      	types.
      	(finish_function): Use c_type_promotes_to when promoting argument
      	types.
      	(build_null_declspecs): Handle atomic_p in declspecs.
      	(declspecs_add_qual): Handle RID_ATOMIC.
      	* c-parser.c (c_token_starts_typename, c_token_is_qualifier)
      	(c_token_starts_declspecs): Handle RID_ATOMIC.
      	(c_parser_declspecs): Handle atomic type specifiers and
      	qualifiers.
      	(c_parser_typeof_specifier): Remove const and _Atomic qualifiers
      	from types of expressions with atomic type.
      	(c_parser_direct_declarator_inner): Use convert_lvalue_to_rvalue.
      	(c_parser_attribute_any_word): Handle RID_ATOMIC.
      	(c_parser_initializer, c_parser_initelt, c_parser_initval)
      	(c_parser_statement_after_labels, c_parser_switch_statement)
      	(c_parser_for_statement, c_parser_expr_no_commas)
      	(c_parser_conditional_expression, c_parser_binary_expression)
      	(c_parser_cast_expression, c_parser_unary_expression)
      	(c_parser_postfix_expression)
      	(c_parser_postfix_expression_after_primary, c_parser_expression):
      	Use convert_lvalue_to_rvalue.
      	(c_parser_expression_conv, c_parser_expr_list): Document
      	conversion of lvalues to rvalues.  Use convert_lvalue_to_rvalue.
      	(c_parser_objc_synchronized_statement): Use
      	convert_lvalue_to_rvalue.
      	(c_parser_objc_selector): Handle RID_ATOMIC.
      	(c_parser_objc_receiver, c_parser_array_notation): Use
      	convert_lvalue_to_rvalue.
      	* c-tree.h (ctsk_typeof): Adjust comment to mention use for
      	_Atomic (type-name).
      	(struct c_declspecs): Add atomic_p field.
      	(convert_lvalue_to_rvalue): Declare.
      	* c-typeck.c (c_type_promotes_to): Promote atomic types to
      	corresponding atomic types.
      	(qualify_type): Don't add _Atomic qualifiers from second argument.
      	(comp_target_types): Do not allow _Atomic mismatches.
      	(type_lists_compatible_p): Do not remove atomic qualifiers when
      	comparing types.
      	(really_atomic_lvalue, convert_lvalue_to_rvalue)
      	(build_atomic_assign): New functions.
      	(build_unary_op): Use build_atomic_assign for atomic increment and
      	decrement.
      	(build_conditional_expr): Do not treat _Atomic void as a qualified
      	version of void.
      	(build_modify_expr): Use build_atomic_assign for atomic LHS.
      	(find_anonymous_field_with_type, convert_to_anonymous_field)
      	(convert_for_assignment): Do not remove atomic qualifiers when
      	comparing types.
      	(digest_init): Do not accept initialization of arrays of atomic
      	elements by string constants.
      	(build_asm_expr): Use convert_lvalue_to_rvalue.
      	(build_binary_op): Do not treat _Atomic void as a qualified
      	version of void.
      
      gcc/objc:
      2013-11-05  Andrew MacLeod  <amacleod@redhat.com>
      
      	* objc-act.c (objc_push_parm): Handle atomic qualifier.
      
      gcc/testsuite:
      2013-11-05  Joseph Myers  <joseph@codesourcery.com>
      
      	* lib/target-supports.exp
      	(check_effective_target_fenv_exceptions): New function.
      	* lib/atomic-dg.exp, gcc.dg/atomic/atomic.exp: New files.
      	* gcc.dg/atomic/c11-atomic-exec-1.c,
      	gcc.dg/atomic/c11-atomic-exec-2.c,
      	gcc.dg/atomic/c11-atomic-exec-3.c,
      	gcc.dg/atomic/c11-atomic-exec-4.c,
      	gcc.dg/atomic/c11-atomic-exec-5.c, gcc.dg/c11-atomic-1.c,
      	gcc.dg/c11-atomic-2.c, gcc.dg/c11-atomic-3.c,
      	gcc.dg/c90-atomic-1.c, gcc.dg/c99-atomic-1.c: New tests.
      
      libatomic:
      2013-11-05  Joseph Myers  <joseph@codesourcery.com>
      
      	* fenv.c: New file.
      	* libatomic.map (LIBATOMIC_1.1): New symbol version.  Include
      	__atomic_feraiseexcept.
      	* configure.ac (libtool_VERSION): Change to 2:0:1.
      	(fenv.h): Test for header.
      	* Makefile.am (libatomic_la_SOURCES): Add fenv.c.
      	* Makefile.in, auto-config.h.in, configure: Regenerate.
      
      From-SVN: r204544
      Joseph Myers committed
    • mti-linux.h (SYSROOT_SUFFIX_SPEC): Add fp64 directory. · 07cb5010
      2013-11-07  Steve Ellcey  <sellcey@mips.com>
      
      	* config/mips/mti-linux.h (SYSROOT_SUFFIX_SPEC): Add fp64 directory.
      	* config/mips/t-mti-linux (MULTILIB_OPTIONS): Add -mfp64 flag.
      	(MULTILIB_DIRNAMES): Add fp64 directory.
      	(MULTILIB_EXCEPTIONS): Add new exclusions.
      
      From-SVN: r204542
      Steve Ellcey committed
    • gimplify.c (gimple_regimplify_operands): Do not set SSA_NAME_DEF_STMT. · b3b6e1f2
      	* gimplify.c (gimple_regimplify_operands): Do not set
      	SSA_NAME_DEF_STMT.
      	* graphite-sese-to-poly.c (remove_simple_copy_phi): Same.
      	(rewrite_close_phi_out_of_ssa): Same.
      	(rewrite_phi_out_of_ssa): Same.
      	(rewrite_degenerate_phi): Same.
      	(handle_scalar_deps_crossing_scop_limits): Same.
      	* tree-if-conv.c (predicate_scalar_phi): Same.
      	* tree-parloops.c (create_loads_for_reductions): Same.
      	(create_final_loads_for_reduction): Same.
      	(create_loads_and_stores_for_name): Same.
      	(transform_to_exit_first_loop): Same.
      	(create_parallel_loop): Same.
      	* tree-ssa-loop-im.c
      	(move_computations_dom_walker::before_dom_children): Same.
      	* tree-ssa-loop-manip.c (rewrite_phi_with_iv): Same.
      	* tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
      	Same.
      	* tree-ssa-propagate.c (substitute_and_fold): Same.
      	* tree-vect-loop.c (vect_finalize_reduction): Same.
      	* tree-vect-stmts.c (vectorizable_call): Same.
      
      From-SVN: r204541
      Aldy Hernandez committed
    • sfp-exceptions.c (__sfp_handle_exceptions): Handle FP_EX_DENORM. · d59a8fcc
      	* config/i386/sfp-exceptions.c (__sfp_handle_exceptions): Handle
      	FP_EX_DENORM.  Store result to volatile location after SSE division
      	to close interrupt window.  Remove unneeded fwait after x87
      	division since interrupt window will be closed by emitted fstp.
      
      From-SVN: r204540
      Uros Bizjak committed
    • pdp11.c: Include dbxout.h. · f6de942e
      	* config/pdp11/pdp11.c: Include dbxout.h.
      	* config/picochip/picochip.c: Likewise.
      
      From-SVN: r204539
      Mike Stump committed