From: Vladimir Makarov Date: Thu, 10 May 2012 19:58:01 +0000 (+0000) Subject: re PR rtl-optimization/53125 (Very slow compilation on SPARC) X-Git-Tag: upstream/12.2.0~76379 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8d7e3e701e666524c9db3423a93ff84883e4a1e;p=platform%2Fupstream%2Fgcc.git re PR rtl-optimization/53125 (Very slow compilation on SPARC) 2012-05-10 Vladimir Makarov PR rtl-optimization/53125 * ira.c (ira): Call find_moveable_pseudos or move_unallocated_pseudos if only ira_conflicts_p is true. From-SVN: r187373 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06834ad..1809d7c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-10 Vladimir Makarov + + PR rtl-optimization/53125 + * ira.c (ira): Call find_moveable_pseudos or + move_unallocated_pseudos if only ira_conflicts_p is true. + 2012-05-10 Uros Bizjak * config/i386/i386.md (*movoi_internal_avx): Handle diff --git a/gcc/ira.c b/gcc/ira.c index 456c5f0..f0d885c 100644 --- a/gcc/ira.c +++ b/gcc/ira.c @@ -4125,7 +4125,12 @@ ira (FILE *f) } allocated_reg_info_size = max_reg_num (); - find_moveable_pseudos (); + + /* It is not worth to do such improvement when we use a simple + allocation because of -O0 usage or because the function is too + big. */ + if (ira_conflicts_p) + find_moveable_pseudos (); max_regno_before_ira = max_reg_num (); ira_setup_eliminable_regset (); @@ -4234,7 +4239,10 @@ ira (FILE *f) max_regno * sizeof (struct ira_spilled_reg_stack_slot)); } allocate_initial_values (reg_equivs); - move_unallocated_pseudos (); + + /* See comment for find_moveable_pseudos call. */ + if (ira_conflicts_p) + move_unallocated_pseudos (); } static void