test/error/2010_11_26_07_30_30
tag53bafc9dadaa316dddfa6e64c9e7f5bc772ba252
object 7a51e8e8d61ae8f757b091cc8b159827dd93e57e
authorTobias Grosser <grosser@fim.uni-passau.de>
Fri, 26 Nov 2010 06:50:30 +0000 (26 07:50 +0100)
/n/16/grosser/daily_git_builds/log/2010_11_26_07_30_30/info.log
07:32 => Start run 2010_11_26_07_30_30
07:32 => GIT build
commit 7a51e8e8d61ae8f757b091cc8b159827dd93e57e
http://gitorious.org/~graphite-tester/graphite/graphite-test-results/commits/7a51e8e8d61ae8f757b091cc8b159827dd93e57e
Author: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Fri Nov 26 06:29:10 2010 +0000

    Avoid the analysis of data references after the translation out of SSA.

    2010-11-26  Sebastian Pop  <sebastian.pop@amd.com>

     * graphite-sese-to-poly.c (analyze_drs): Removed.
     (build_scop_drs): Do not call analyze_drs.
     (analyze_drs_in_stmts): New.
     (insert_stmts): New.
     (insert_out_of_ssa_copy): Call analyze_drs_in_stmts.
     (insert_out_of_ssa_copy_on_edge): Same.
     (rewrite_close_phi_out_of_ssa): Call insert_stmts.
     (rewrite_phi_out_of_ssa): Same.
     (rewrite_cross_bb_scalar_dependence): Same.
     (split_reduction_stmt): Move data references in the new basic blocks.
     (translate_scalar_reduction_to_array_for_stmt): Call insert_stmts.

    http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167165
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@167165 138bc75d-0d04-0410-961f-82ee72b054a4

commit 97455b7b3b7ffef41c550d82d40976840d634992
http://gitorious.org/~graphite-tester/graphite/graphite-test-results/commits/97455b7b3b7ffef41c550d82d40976840d634992
Author: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Fri Nov 26 06:29:03 2010 +0000

    LHS cannot be an ADDR_EXPR.

    2010-11-26  Sebastian Pop  <sebastian.pop@amd.com>

     * sese.c (rename_uses): Do not handle ADDR_EXPR in LHS of assignments.

    http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167164
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@167164 138bc75d-0d04-0410-961f-82ee72b054a4

commit dcc7c7b523b7da6cc7585509f567a41551034b2e
http://gitorious.org/~graphite-tester/graphite/graphite-test-results/commits/dcc7c7b523b7da6cc7585509f567a41551034b2e
Author: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Mon Nov 22 23:17:25 2010 +0000

    Postpone the rewrite out of SSA to the end of the translation to polyhedral representation.

    2010-11-22  Sebastian Pop  <sebastian.pop@amd.com>

     PR middle-end/45297
     * graphite-poly.c (new_poly_bb): Returns a poly_bb_p.  Do not take
     the reduction bool in parameter.  Clear PBB_IS_REDUCTION.  Set GBB_PBB.
     * graphite-poly.h (new_poly_bb): Update declaration.
     (gbb_from_bb): Moved here...
     (pbb_from_bb): New.
     * graphite-sese-to-poly.c (var_used_in_not_loop_header_phi_node):
     Removed.
     (graphite_stmt_p): Removed.
     (try_generate_gimple_bb): Returns a gimple_bb_p.  Do not pass in
     sbitmap reductions.  Always build a gimple_bb_p.  Do not call
     new_poly_bb.
     (build_scop_bbs_1): Do not pass in sbitmap reductions.
     (build_scop_bbs): Same.
     (gbb_from_bb): ... from here.
     (add_conditions_to_constraints): Moved up.
     (analyze_drs): New.
     (build_scop_drs): Call analyze_drs.  Remove all the PBBs that do
     not contain data references.
     (new_pbb_from_pbb): New.
     (insert_out_of_ssa_copy_on_edge): Call new_pbb_from_pbb after a
     block is split.
     (rewrite_close_phi_out_of_ssa): Update call to
     insert_out_of_ssa_copy_on_edge.
     (rewrite_reductions_out_of_ssa): Now static.
     (rewrite_cross_bb_scalar_deps_out_of_ssa): Same.
     (split_pbb): New.
     (split_reduction_stmt): Call split_pbb.
     (translate_scalar_reduction_to_array): Pass in the scop, do not
     pass in the sbitmap reductions.
     (rewrite_commutative_reductions_out_of_ssa_close_phi): Same.
     (rewrite_commutative_reductions_out_of_ssa_loop): Same.
     (rewrite_commutative_reductions_out_of_ssa): Same.
     (build_poly_scop): Call build_scop_bbs,
     rewrite_commutative_reductions_out_of_ssa,
     rewrite_reductions_out_of_ssa, and
     rewrite_cross_bb_scalar_deps_out_of_ssa.  Move build_scop_drs
     before scop_to_lst.
     * graphite-sese-to-poly.h (rewrite_commutative_reductions_out_of_ssa):
     Removed declaration.
     (rewrite_reductions_out_of_ssa): Same.
     (rewrite_cross_bb_scalar_deps_out_of_ssa): Same.
     (build_scop_bbs): Same.
     * graphite.c (graphite_transform_loops): Do not initialize reductions.
     Do not call build_scop_bbs,
     rewrite_commutative_reductions_out_of_ssa,
     rewrite_reductions_out_of_ssa, and
     rewrite_cross_bb_scalar_deps_out_of_ssa.
     * sese.h (struct gimple_bb): Add field pbb.
     (GBB_PBB): New.

     * gcc.dg/graphite/pr45297.c: New.

    http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167060
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@167060 138bc75d-0d04-0410-961f-82ee72b054a4

commit b4dec826302b22f8f84732619e989d6e4970d088
http://gitorious.org/~graphite-tester/graphite/graphite-test-results/commits/b4dec826302b22f8f84732619e989d6e4970d088
Author: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Mon Nov 22 23:17:15 2010 +0000

    Do not rewrite out of SSA scalar dependences crossing the limits of the scop.

    2010-11-22  Sebastian Pop  <sebastian.pop@amd.com>

     * graphite-sese-to-poly.c (handle_scalar_deps_crossing_scop_limits):
     New.
     (rewrite_cross_bb_scalar_deps): Pass in the scop.  Call
     handle_scalar_deps_crossing_scop_limits.
     (rewrite_cross_bb_scalar_deps_out_of_ssa): Create an empty BB
     after the scop.  Update call to rewrite_cross_bb_scalar_deps.

    http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167059
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@167059 138bc75d-0d04-0410-961f-82ee72b054a4

commit e9a6de777b249ce29664486901a12e523a33ae5f
http://gitorious.org/~graphite-tester/graphite/graphite-test-results/commits/e9a6de777b249ce29664486901a12e523a33ae5f
Author: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Mon Nov 22 23:17:08 2010 +0000

    Call recompute_tree_invariant_for_addr_expr when replacing a constant in an ADDR_EXPR.

    2010-11-22  Sebastian Pop  <sebastian.pop@amd.com>

     * sese.c (rename_uses): Call recompute_tree_invariant_for_addr_expr
     when replacing a constant in an ADDR_EXPR.

    http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167058
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@167058 138bc75d-0d04-0410-961f-82ee72b054a4
07:33 => Configure
07:33 => Build
07:50 => Build
BUILD FAILED