1 /* Loop optimizer initialization routines.
2 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 #include "coretypes.h"
26 #include "hard-reg-set.h"
27 #include "basic-block.h"
29 #include "cfglayout.h"
31 /* Initialize loop optimizer. */
34 loop_optimizer_init (FILE *dumpfile
)
36 struct loops
*loops
= xcalloc (1, sizeof (struct loops
));
38 static bool first_time
= true;
46 /* Avoid annoying special cases of edges going to exit
48 for (e
= EXIT_BLOCK_PTR
->pred
; e
; e
= e
->pred_next
)
49 if ((e
->flags
& EDGE_FALLTHRU
) && e
->src
->succ
->succ_next
)
54 if (flow_loops_find (loops
, LOOP_TREE
) <= 1)
57 flow_loops_free (loops
);
63 /* Not going to update these. */
64 free (loops
->cfg
.rc_order
);
65 loops
->cfg
.rc_order
= NULL
;
66 free (loops
->cfg
.dfs_order
);
67 loops
->cfg
.dfs_order
= NULL
;
69 /* Create pre-headers. */
70 create_preheaders (loops
, CP_SIMPLE_PREHEADERS
);
72 /* Force all latches to have only single successor. */
73 force_single_succ_latches (loops
);
75 /* Mark irreducible loops. */
76 mark_irreducible_loops (loops
);
79 flow_loops_dump (loops
, dumpfile
, NULL
, 1);
81 #ifdef ENABLE_CHECKING
82 verify_dominators (CDI_DOMINATORS
);
83 verify_loop_structure (loops
);
89 /* Finalize loop optimizer. */
91 loop_optimizer_finalize (struct loops
*loops
, FILE *dumpfile
)
98 for (i
= 1; i
< loops
->num
; i
++)
100 free_simple_loop_desc (loops
->parray
[i
]);
103 flow_loops_dump (loops
, dumpfile
, NULL
, 1);
106 flow_loops_free (loops
);
110 #ifdef ENABLE_CHECKING