merge kaps
[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  * @version     $Id$
26  */
27 #include "config.h"
28
29 #include "execfreq.h"
30 #include "beirg.h"
31 #include "absgraph.h"
32 #include "belive.h"
33 #include "bedomfront.h"
34
35 be_lv_t *be_assure_liveness(ir_graph *irg)
36 {
37         be_irg_t *birg = be_birg_from_irg(irg);
38         if (birg->lv != NULL)
39                 return birg->lv;
40
41         return birg->lv = be_liveness(birg->irg);
42 }
43
44 void be_assure_dom_front(ir_graph *irg)
45 {
46         be_irg_t *birg = be_birg_from_irg(irg);
47         if (birg->dom_front != NULL)
48                 return;
49
50         birg->dom_front = be_compute_dominance_frontiers(birg->irg);
51 }
52
53 void be_invalidate_dom_front(ir_graph *irg)
54 {
55         be_irg_t *birg = be_birg_from_irg(irg);
56         if (birg->dom_front == NULL)
57                 return;
58
59         be_free_dominance_frontiers(birg->dom_front);
60         birg->dom_front = NULL;
61 }
62
63 void be_free_birg(ir_graph *irg)
64 {
65         be_irg_t *birg = be_birg_from_irg(irg);
66         free_execfreq(birg->exec_freq);
67         birg->exec_freq = NULL;
68
69         if (birg->dom_front != NULL) {
70                 be_free_dominance_frontiers(birg->dom_front);
71                 birg->dom_front = NULL;
72         }
73         if (birg->lv != NULL) {
74                 be_liveness_free(birg->lv);
75                 birg->lv = NULL;
76         }
77
78         obstack_free(&birg->obst, NULL);
79         irg->be_data = NULL;
80 }