146f05411ab7f986855b0865cd3993e553a205c6
[libfirm] / ir / be / beifg.h
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       Interface for interference graphs.
23  * @author      Sebastian Hack
24  * @date        18.11.2005
25  */
26 #ifndef FIRM_BE_BEIFG_H
27 #define FIRM_BE_BEIFG_H
28
29 #include "be_types.h"
30 #include "bechordal.h"
31 #include "irnodeset.h"
32
33 struct be_ifg_t {
34         const be_chordal_env_t *env;
35 };
36
37 typedef struct nodes_iter_t {
38         const be_chordal_env_t *env;
39         struct obstack         obst;
40         int                    n;
41         int                    curr;
42         ir_node                **nodes;
43 } nodes_iter_t;
44
45 typedef struct neighbours_iter_t {
46         const be_chordal_env_t *env;
47         const ir_node        *irn;
48         int                   valid;
49         ir_nodeset_t          neighbours;
50         ir_nodeset_iterator_t iter;
51 } neighbours_iter_t;
52
53 typedef struct cliques_iter_t {
54         struct obstack ob;
55         const be_chordal_env_t *cenv;
56         ir_node **buf;
57         ir_node **blocks;
58         int n_blocks, blk;
59         struct list_head *bor;
60         pset *living;
61 } cliques_iter_t;
62
63 void     be_ifg_free(be_ifg_t *ifg);
64 int      be_ifg_connected(const be_ifg_t *ifg, const ir_node *a,
65                           const ir_node *b);
66 ir_node *be_ifg_neighbours_begin(const be_ifg_t *ifg, neighbours_iter_t *iter,
67                                  const ir_node *irn);
68 ir_node *be_ifg_neighbours_next(neighbours_iter_t *iter);
69 void     be_ifg_neighbours_break(neighbours_iter_t *iter);
70 ir_node *be_ifg_nodes_begin(const be_ifg_t *ifg, nodes_iter_t *iter);
71 ir_node *be_ifg_nodes_next(nodes_iter_t *iter);
72 void     be_ifg_nodes_break(nodes_iter_t *iter);
73 int      be_ifg_cliques_begin(const be_ifg_t *ifg, cliques_iter_t *iter,
74                               ir_node **buf);
75 int      be_ifg_cliques_next(cliques_iter_t *iter);
76 void     be_ifg_cliques_break(cliques_iter_t *iter);
77 int      be_ifg_degree(const be_ifg_t *ifg, const ir_node *irn);
78
79 #define be_ifg_foreach_neighbour(ifg, iter, irn, pos) \
80         for(pos = be_ifg_neighbours_begin(ifg, iter, irn); pos != NULL; pos = be_ifg_neighbours_next(iter))
81
82 #define be_ifg_foreach_node(ifg, iter, pos) \
83         for(pos = be_ifg_nodes_begin(ifg, iter); pos != NULL; pos = be_ifg_nodes_next(iter))
84
85 #define be_ifg_foreach_clique(ifg, iter, buf, count) \
86         for(*(count) = be_ifg_cliques_begin(ifg, iter, buf); \
87         *(count) != -1 ; \
88         *(count) = be_ifg_cliques_next(iter))
89
90 typedef struct {
91         int n_nodes;
92         int n_edges;
93         int n_comps;
94 } be_ifg_stat_t;
95
96 void be_ifg_stat(ir_graph *irg, be_ifg_t *ifg, be_ifg_stat_t *stat);
97
98 be_ifg_t *be_create_ifg(const be_chordal_env_t *env);
99
100 #endif