1. 02 Oct, 2015 18 commits
  2. 01 Oct, 2015 22 commits
    • use sese_l throughout scop-detection · 0afd32be
      Use sese_l throughout SCoP detection and create vec<scop_p> at the very end when
      all SCoPs have been identified. 'struct sese_l' is very lightweight (two
      pointers) compared to 'struct scop'.
      
      No functional change intended. Passes regtest and bootstrap.
      
      gcc/ChangeLog:
      
      2015-10-01  Aditya Kumar  <hiraditya@msn.com>
      
              * graphite-scop-detection.c (struct sese_l): New conversion constructor
                so that this type can be pushed into a vec.
              (class scop_builder): use sese_l to collect scops.
              (get_scops): New getter function.
              (remove_intersecting_scops): Use sese_l instead of scops_p.
              (intersects): Same.
              (add_scop): Same.
              (subsumes): Same.
              (remove_subscops): Same.
              (build_scops): Add scops to vec<scops_p> once all the scops have been
              detected.
      
      From-SVN: r228359
      Aditya Kumar committed
    • Rename gimple_bb to gimple_poly_bb · 65ef70d6
      Renaming gimple_bb to gimple_poly_bb because there is a function gimple_bb
      by the same name in gimple.h. No functional change intended.
      Passes regtest and bootstrap.
      
      gcc/ChangeLog:
      
      2015-10-01  Aditya Kumar  <hiraditya@msn.com>
      
              * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
      	Renamed type from gimple_bb_p to gimple_poly_bb_p.
              (translate_isl_ast_node_user): Same.
              * graphite-poly.c (new_poly_bb): Same.
              * graphite-poly.h (gbb_from_bb): Same.
              * sese.h: Same.
              * graphite-sese-to-poly.c (new_gimple_bb): gimple_bb_p -> gimple_poly_bb_p
              (build_scop_scattering): Same.
              (find_params_in_bb): Same.
              (add_conditions_to_domain): Same.
              (sese_dom_walker::before_dom_children): Same.
              (analyze_drs_in_stmts): Same.
              (new_pbb_from_pbb): Same.
              (free_data_refs_aux): New pointer to type base_alias_pair.
              * graphite-sese-to-poly.h: Same.
              * sese.c (if_region_set_false_region): Fixed Indentation.
              (move_sese_in_condition): Same.
      
      From-SVN: r228358
      Aditya Kumar committed
    • correctly handle non affine data references · 6652875f
      2015-10-01  Sebastian Pop  <s.pop@samsung.com>
                  Aditya Kumar  <aditya.k7@samsung.com>
              PR tree-optimization/66980
              * graphite-scop-detection.c (stmt_has_simple_data_refs_p): Return false
              when data reference analysis has failed.
      
      Co-Authored-By: Aditya Kumar <aditya.k7@samsung.com>
      
      From-SVN: r228357
      Sebastian Pop committed
    • re PR c++/54430 ([C++11] For-Loop: Scope of iterating variable begins too early) · 55fec44d
      PR c++/54430
      
      /cp
      2015-10-01  Ville Voutilainen  <ville.voutilainen@gmail.com>
      
      	PR c++/54430
      	* name-lookup.c (push_binding): Make non-static.
      	* name-lookup.h (push_binding): Declare it.
      	* parser.c (cp_parser_range_for): Use it, get the range
      	declaration away from the scope until the range expression
      	has been parsed, then restore the declaration.
      
      /testsuite
      2015-10-01  Ville Voutilainen  <ville.voutilainen@gmail.com>
      
      	PR c++/54430
      	* g++.dg/cpp0x/range-for30.C: New.
      
      From-SVN: r228354
      Ville Voutilainen committed
    • Do not describe -std=c11 etc. as experimental in c.opt help text. · 0d1a8f75
      I noticed that c.opt still described -std=c11 and related options as
      experimental in the --help text.  This patch fixes this.
      
      Bootstrapped with no regressions on x86_64-pc-linux-gnu.
      
      	* c.opt (std=c11): Do not describe as experimental.
      	(std=gnu11): Likewise.
      	(std=iso9899:2011): Likewise.
      
      From-SVN: r228349
      Joseph Myers committed
    • * doc/html/manual/errno.html: Add new file. · 7b8089a3
      From-SVN: r228348
      Jonathan Wakely committed
    • call scev analysis in scop-detection as in sese-to-poly · 95ad2417
      Before our rewrite of the scop detection, we used to not have a valid SESE
      region under hand, and so we used to do more ad-hoc analysis of data references
      by trying to prove that at all levels of a loop nest the data references would
      be still valid.
      
      Now that we have a valid SESE region, we can call the scev analysis in the same
      way on the same computed loop nest in the scop-detection as in the sese-to-poly.
      
      Next step will be to cache the data references analyzed in the scop detection
      and not compute the same info in sese-to-poly.
      
      The patch fixes block-1.f90 that used to ICE on x86_64-linux when compiled with
      -m32.  Patch passed bootstrap with BOOT_CFLAGS="-g -O2 -fgraphite-identity
      -floop-nest-optimize" and check on x86_64-linux using ISL-0.15.
      
      2015-09-28  Sebastian Pop  <s.pop@samsung.com>
      	Aditya Kumar  <aditya.k7@samsung.com>
      
      	PR tree-optimization/67754
      	* graphite-scop-detection.c (stmt_has_simple_data_refs_p): Call
      	scev analysis on the same loop nest as analyze_drs_in_stmts.
      	* graphite-sese-to-poly.c (outermost_loop_in_sese_1): Moved and renamed...
      	(try_generate_gimple_bb): Call outermost_loop_in_sese.
      	(analyze_drs_in_stmts): Same.
      	* sese.c (outermost_loop_in_sese): ...here.
      
      Co-Authored-By: Aditya Kumar <aditya.k7@samsung.com>
      
      From-SVN: r228347
      Sebastian Pop committed
    • add recursion on the inner loops · cf72400f
      We now check that all data references in the current loop and inner loops
      contained within loop are valid in an outer region before declaring that the
      outer loop is a valid scop.
      
      2015-09-30  Sebastian Pop  <s.pop@samsung.com>
      	    Aditya Kumar  <aditya.k7@samsung.com>
      
      	PR tree-optimization/67754
      	* graphite-scop-detection.c (loop_body_is_valid_scop): Add missing
      	recursion on the inner loops.
      
      Co-Authored-By: Aditya Kumar <aditya.k7@samsung.com>
      
      From-SVN: r228346
      Sebastian Pop committed
    • remove many typedefs · 526ceb68
      gcc/ChangeLog:
      
      2015-10-01  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* cfganal.c, compare-elim.c, coverage.c, cprop.c, df-scan.c,
      	function.c, read-rtl.c, statistics.c, trans-mem.c, tree-if-conv.c,
      	tree-into-ssa.c, tree-loop-distribution.c, tree-ssa-coalesce.c,
      	tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-strlen.c,
      	tree-ssa-tail-merge.c, tree-vrp.c, var-tracking.c: Remove
      unneeded typedefs.
      
      From-SVN: r228344
      Trevor Saunders committed
    • re PR c/65345 (ICE with _Generic selection on _Atomic int) · f6f69fb0
      	PR c/65345
      	* config/i386/i386.c (ix86_atomic_assign_expand_fenv): Adjust to use
      	create_tmp_var_raw rather than create_tmp_var.
      
      	* gcc.dg/atomic/pr65345-4.c: New test.
      	* gcc.dg/pr65345-3.c: New test.
      
      From-SVN: r228343
      Marek Polacek committed
    • re PR go/66870 (split stack issues on ppc64le and ppc64) · 209919e2
      	PR go/66870
      	* gospec.c (lang_specific_driver): Only look for OPT_m32 if
      	TARGET_CAN_SPLIT_STACK_64BIT is defined.
      
      From-SVN: r228342
      Ian Lance Taylor committed
    • re PR tree-optimization/67769 (VRP pass does wrong optimization) · 9edaabf3
      	PR tree-optimization/67769
      	* tree-ssa-phiopt.c (conditional_replacement): Call
      	reset_flow_sensitive_info_in_bb.
      	(minmax_replacement): Likewise.
      	(abs_replacement): Likewise.
      
      	* gcc.dg/torture/pr67769.c: New test.
      
      From-SVN: r228341
      Marek Polacek committed
    • builtins.c: Don't include gomp-constants.h. · 48126138
      	* builtins.c: Don't include gomp-constants.h.
      	(fold_builtin_1): Don't fold acc_on_device here.
      	* gimple-fold.c: Include gomp-constants.h.
      	(gimple_fold_builtin_acc_on_device): New.
      	(gimple_fold_builtin): Call it.
      
      From-SVN: r228340
      Nathan Sidwell committed
    • Enable bt and and movzx for Lakemont · d878e79b
      	* config/i386/x86-tune.def (X86_TUNE_USE_BT): Enable for
      	Lakemont.
      	(X86_TUNE_ZERO_EXTEND_WITH_AND): Disable for Lakemont.
      
      From-SVN: r228337
      H.J. Lu committed
    • pr55113_0.c: Skip on all x86 targets. · 91470073
      	* gcc.dg/lto/pr55113_0.c: Skip on all x86 targets.
      
      From-SVN: r228334
      Uros Bizjak committed
    • Fix typo in ChangeLog. · 7e623de5
      From-SVN: r228333
      Oleg Endo committed
    • re PR target/54236 ([SH] Improve addc and subc insn utilization) · 298b0f3f
      gcc/testsuite/
      	PR target/54236
      	* gcc.target/sh/pr54236-6.c: Fix assembler-no string.
      
      From-SVN: r228332
      Oleg Endo committed
    • Save-and-restore errno more carefully in libstdc++ · f14decaf
      	* doc/xml/manual/diagnostics.xml: Document use of errno.
      	* doc/html/*: Regenerate.
      	* config/locale/generic/c_locale.cc (_Save_errno): New helper.
      	(__convert_to_v): Use _Save_errno.
      	* include/ext/string_conversions.h (__stoa): Only restore errno when
      	it isn't set to non-zero.
      
      From-SVN: r228328
      Jonathan Wakely committed
    • * c-typeck.c (convert_for_assignment): Improve commentary. · aabef2de
      From-SVN: r228327
      Marek Polacek committed
    • pr65105-1.c: Require sse2 effective target. · 228ae470
      	* gcc.target/i386/pr65105-1.c: Require sse2 effective target.
      	(main): Rename to sse2_test.  Abort if count != 5.
      	(dg-options): Add -save-temps.  Use "-msse2 -mtune=slm" instead
      	of -march=slm.
      	* gcc.target/i386/pr46865-2.c (dg-options): Remove -save-temps.
      
      From-SVN: r228326
      Uros Bizjak committed
    • [ChangeLog] Fix typo in 228324. · 295bdf5c
      s/Liekwise/Likewise/
      
      From-SVN: r228325
      James Greenhalgh committed
    • [Patch 2/2 ARM/AArch64] Add a new Cortex-A53 scheduling model · cdc1afa3
      	* config/arm/aarch-common-protos.h
      	(aarch_accumulator_forwarding): New.
      	(aarch_forward_to_shift_is_not_shifted_reg): Likewise.
      	* config/arm/aarch-common.c (aarch_accumulator_forwarding): New.
      	(aarch_forward_to_shift_is_not_shifted_reg): Liekwise.
      	* config/arm/cortex-a53.md: Rewrite.
      
      From-SVN: r228324
      James Greenhalgh committed