make opcode list global
[libfirm] / ir / be / beirg.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Backend irg - a ir_graph with additional analysis information.
23  * @author      Matthias Braun
24  * @date        13.12.2006
25  */
26 #include "config.h"
27
28 #include "execfreq.h"
29 #include "beirg.h"
30 #include "absgraph.h"
31 #include "belive.h"
32 #include "bedomfront.h"
33
34 be_lv_t *be_assure_liveness(ir_graph *irg)
35 {
36         be_irg_t *birg = be_birg_from_irg(irg);
37         if (birg->lv != NULL)
38                 return birg->lv;
39
40         return birg->lv = be_liveness(birg->irg);
41 }
42
43 void be_assure_dom_front(ir_graph *irg)
44 {
45         be_irg_t *birg = be_birg_from_irg(irg);
46         if (birg->dom_front != NULL)
47                 return;
48
49         birg->dom_front = be_compute_dominance_frontiers(birg->irg);
50 }
51
52 void be_invalidate_dom_front(ir_graph *irg)
53 {
54         be_irg_t *birg = be_birg_from_irg(irg);
55         if (birg->dom_front == NULL)
56                 return;
57
58         be_free_dominance_frontiers(birg->dom_front);
59         birg->dom_front = NULL;
60 }
61
62 void be_free_birg(ir_graph *irg)
63 {
64         be_irg_t *birg = be_birg_from_irg(irg);
65         free_execfreq(birg->exec_freq);
66         birg->exec_freq = NULL;
67
68         if (birg->dom_front != NULL) {
69                 be_free_dominance_frontiers(birg->dom_front);
70                 birg->dom_front = NULL;
71         }
72         if (birg->lv != NULL) {
73                 be_liveness_free(birg->lv);
74                 birg->lv = NULL;
75         }
76
77         obstack_free(&birg->obst, NULL);
78         irg->be_data = NULL;
79 }