mirror of git://gcc.gnu.org/git/gcc.git
predict.c (tree_estimate_probability_driver): Normalize the loop when initializing the loop optimizer.
2012-07-31 Dehao Chen <dehao@google.com> * predict.c (tree_estimate_probability_driver): Normalize the loop when initializing the loop optimizer. From-SVN: r190015
This commit is contained in:
parent
86d4e13f06
commit
aa36f90b55
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-07-31 Dehao Chen <dehao@google.com>
|
||||||
|
|
||||||
|
* predict.c (tree_estimate_probability_driver): Normalize the
|
||||||
|
loop when initializing the loop optimizer.
|
||||||
|
|
||||||
2012-07-31 Richard Guenther <rguenther@suse.de>
|
2012-07-31 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
* tree-flow.h (struct var_ann_d): Remove need_phi_state
|
* tree-flow.h (struct var_ann_d): Remove need_phi_state
|
||||||
|
|
|
||||||
|
|
@ -2200,7 +2200,7 @@ tree_estimate_probability_driver (void)
|
||||||
{
|
{
|
||||||
unsigned nb_loops;
|
unsigned nb_loops;
|
||||||
|
|
||||||
loop_optimizer_init (0);
|
loop_optimizer_init (LOOPS_NORMAL);
|
||||||
if (dump_file && (dump_flags & TDF_DETAILS))
|
if (dump_file && (dump_flags & TDF_DETAILS))
|
||||||
flow_loops_dump (dump_file, NULL, 0);
|
flow_loops_dump (dump_file, NULL, 0);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2012-07-31 Dehao Chen <dehao@google.com>
|
||||||
|
|
||||||
|
* gcc.dg/predict-7.c: New test.
|
||||||
|
|
||||||
2012-07-31 Janus Weil <janus@gcc.gnu.org>
|
2012-07-31 Janus Weil <janus@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/54134
|
PR fortran/54134
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
/* { dg-do compile } */
|
||||||
|
/* { dg-options "-O2 -fdump-tree-profile_estimate" } */
|
||||||
|
|
||||||
|
extern int global;
|
||||||
|
|
||||||
|
int bar (int);
|
||||||
|
|
||||||
|
void foo (int base)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
while (global < 10)
|
||||||
|
for (i = base; i < 10; i++)
|
||||||
|
bar (i);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* { dg-final { scan-tree-dump-times "loop branch heuristics" 0 "profile_estimate"} } */
|
||||||
|
/* { dg-final { cleanup-tree-dump "profile_estimate" } } */
|
||||||
Loading…
Reference in New Issue