move domfront from be to ana
[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
33 void be_invalidate_live_sets(ir_graph *irg)
34 {
35         be_irg_t *birg = be_birg_from_irg(irg);
36         be_liveness_invalidate_sets(birg->lv);
37 }
38
39 void be_invalidate_live_chk(ir_graph *irg)
40 {
41         be_irg_t *birg = be_birg_from_irg(irg);
42         be_liveness_invalidate_chk(birg->lv);
43 }
44
45 void be_assure_live_sets(ir_graph *irg)
46 {
47         be_irg_t *birg = be_birg_from_irg(irg);
48         be_liveness_compute_sets(birg->lv);
49 }
50
51 void be_assure_live_chk(ir_graph *irg)
52 {
53         be_irg_t *birg = be_birg_from_irg(irg);
54         be_liveness_compute_chk(birg->lv);
55 }
56
57 void be_free_birg(ir_graph *irg)
58 {
59         be_irg_t *birg = be_birg_from_irg(irg);
60         free_execfreq(birg->exec_freq);
61         birg->exec_freq = NULL;
62
63         if (birg->lv != NULL) {
64                 be_liveness_free(birg->lv);
65                 birg->lv = NULL;
66         }
67
68         obstack_free(&birg->obst, NULL);
69         irg->be_data = NULL;
70 }