This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 03/03: Keep dominance info up to date


Hello,

Ping^2. There is a duplication PR about this bug now (46384). Testing was fine, I didn't mention it in the previous ping.

Andrey

On 22.10.2010 11:51, Andrey Belevantsev wrote:
Ping. http://gcc.gnu.org/ml/gcc-patches/2010-10/msg00206.html
Andrey

On 04.10.2010 19:45, Andrey Belevantsev wrote:
Hello,

This main patch uses set_immediate_dominator and iterate_fix_dominators
when updating control flow in selective scheduler. The difficulty I had is
that when an unreachable block may be created, you need to defer the update
until the block is removed, so sometimes we avoid updating dominance info
in sel_redirect_edge_and_branch and postpone it to maybe_tidy_empty_bb
instead. I will add testcase from PR 43603, and I need to minimize one from
PR 44233.

Bootstrapped with the other two patches, testing is in progress. Ok for
trunk if it succeeds? Ok for 4.5/4.4 after a week or two?

Andrey

2010-10-04 Andrey Belevantsev <abel@ispras.ru>

PR target/43603
PR target/44233

* haifa-sched.c (sched_create_recovery_edges): Update
dominator info.
* sel-sched-ir.c (maybe_tidy_empty_bb): Update dominator info
after deleting an empty block.
(sel_remove_bb): Update dominator info after removing a block.
(sel_redirect_edge_and_branch_force): Assert that no unreachable
blocks will be created. Update dominator info.
(sel_redirect_edge_and_branch): Update dominator info when
basic blocks do not become unreachable.
(sel_remove_loop_preheader): Update dominator info.




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]