handle Block_entity like other node attributes
[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 <stdio.h>
30
31 #include "irnode.h"
32 #include "irnodeset.h"
33
34 #include "becopyopt.h"
35 #include "beirg.h"
36
37 typedef struct be_ifg_t {
38         const be_chordal_env_t *env;
39 } be_ifg_t;
40
41 typedef struct nodes_iter_t {
42         const be_chordal_env_t *env;
43         struct obstack         obst;
44         int                    n;
45         int                    curr;
46         ir_node                **nodes;
47 } nodes_iter_t;
48
49 typedef struct neighbours_iter_t {
50         const be_chordal_env_t *env;
51         const ir_node        *irn;
52         int                   valid;
53         ir_nodeset_t          neighbours;
54         ir_nodeset_iterator_t iter;
55 } neighbours_iter_t;
56
57 typedef struct cliques_iter_t {
58         struct obstack ob;
59         const be_chordal_env_t *cenv;
60         ir_node **buf;
61         ir_node **blocks;
62         int n_blocks, blk;
63         struct list_head *bor;
64         pset *living;
65 } cliques_iter_t;
66
67 void     be_ifg_free(be_ifg_t *ifg);
68 int      be_ifg_connected(const be_ifg_t *ifg, const ir_node *a,
69                           const ir_node *b);
70 ir_node *be_ifg_neighbours_begin(const be_ifg_t *ifg, neighbours_iter_t *iter,
71                                  const ir_node *irn);
72 ir_node *be_ifg_neighbours_next(neighbours_iter_t *iter);
73 void     be_ifg_neighbours_break(neighbours_iter_t *iter);
74 ir_node *be_ifg_nodes_begin(const be_ifg_t *ifg, nodes_iter_t *iter);
75 ir_node *be_ifg_nodes_next(nodes_iter_t *iter);
76 void     be_ifg_nodes_break(nodes_iter_t *iter);
77 int      be_ifg_cliques_begin(const be_ifg_t *ifg, cliques_iter_t *iter,
78                               ir_node **buf);
79 int      be_ifg_cliques_next(cliques_iter_t *iter);
80 void     be_ifg_cliques_break(cliques_iter_t *iter);
81 int      be_ifg_degree(const be_ifg_t *ifg, const ir_node *irn);
82
83 #define be_ifg_foreach_neighbour(ifg, iter, irn, pos) \
84         for(pos = be_ifg_neighbours_begin(ifg, iter, irn); pos != NULL; pos = be_ifg_neighbours_next(iter))
85
86 #define be_ifg_foreach_node(ifg, iter, pos) \
87         for(pos = be_ifg_nodes_begin(ifg, iter); pos != NULL; pos = be_ifg_nodes_next(iter))
88
89 #define be_ifg_foreach_clique(ifg, iter, buf, count) \
90         for(*(count) = be_ifg_cliques_begin(ifg, iter, buf); \
91         *(count) != -1 ; \
92         *(count) = be_ifg_cliques_next(iter))
93
94 typedef struct {
95         int n_nodes;
96         int n_edges;
97         int n_comps;
98 } be_ifg_stat_t;
99
100 void be_ifg_stat(ir_graph *irg, be_ifg_t *ifg, be_ifg_stat_t *stat);
101
102 be_ifg_t *be_create_ifg(const be_chordal_env_t *env);
103
104 /*
105      ____                        _
106     |  _ \ _   _ _ __ ___  _ __ (_)_ __   __ _
107     | | | | | | | '_ ` _ \| '_ \| | '_ \ / _` |
108     | |_| | |_| | | | | | | |_) | | | | | (_| |
109     |____/ \__,_|_| |_| |_| .__/|_|_| |_|\__, |
110                           |_|            |___/
111 */
112
113 typedef struct be_ifg_dump_dot_cb_t {
114         int  (*is_dump_node)(void *self, ir_node *irn);
115         void (*graph_attr)(FILE *f, void *self);
116         void (*node_attr)(FILE *f, void *self, ir_node *irn);
117         void (*edge_attr)(FILE *f, void *self, ir_node *from, ir_node *to);
118         void (*at_begin)(FILE *file, void *self);
119         void (*at_end)(FILE *file, void *self);
120 } be_ifg_dump_dot_cb_t;
121
122 void be_ifg_dump_dot(be_ifg_t *ifg, ir_graph *irg, FILE *file, const be_ifg_dump_dot_cb_t *cb, void *self);
123
124 #endif