0eeac8ed2d4a976bbadd9f0c04c35bcb0dc37e3c
[libfirm] / ir / be / beutil.c
1 /**
2  * Contains some useful function for the backend.
3  * @author Sebastian Hack
4  * @cvsid  $Id$
5  */
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include <stdio.h>
11
12 #include "pset.h"
13
14 #include "irgraph.h"
15 #include "irgwalk.h"
16 #include "irdump_t.h"
17 #include "irdom_t.h"
18 #include "ircons.h"
19 #include "iropt.h"
20 #include "irgopt.h"
21 #include "irtools.h"
22 #include "irprintf.h"
23
24 #include "beutil.h"
25 #include "besched_t.h"
26 #include "bearch.h"
27
28 /* Get an always empty set. */
29 pset *be_empty_set(void)
30 {
31         static pset *empty_set = NULL;
32
33         if(!empty_set)
34                 empty_set = pset_new_ptr(1);
35
36         assert(pset_count(empty_set) == 0);
37         return empty_set;
38 }
39
40 struct dump_env {
41         FILE *f;
42         arch_env_t *env;
43 };
44
45 static void dump_allocated_block(ir_node *block, void *data)
46 {
47         int i, n;
48         const ir_node *irn;
49         struct dump_env *dump_env = data;
50         FILE *f = dump_env->f;
51         arch_env_t *env = dump_env->env;
52
53         ir_fprintf(f, "node:{title:\"b%N\"\nlabel:\"", block);
54         sched_foreach(block, irn) {
55                 const char *prefix = "";
56
57                 const arch_register_t *reg = arch_get_irn_register(env, irn);
58
59                 ir_fprintf(f, "\n");
60                 if(reg)
61                         ir_fprintf(f, "%s = ", arch_register_get_name(reg));
62
63                 ir_fprintf(f, "%n(", irn);
64
65                 if(block != get_irg_start_block(get_irn_irg(block))) {
66                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
67                                 ir_node *op = get_irn_n(irn, i);
68                                 if(arch_is_register_operand(dump_env->env, op, -1)) {
69                                         ir_fprintf(f, "%s%s", prefix,
70                                                 arch_register_get_name(arch_get_irn_register(env, op)));
71                                         prefix = ", ";
72                                 }
73                         }
74                 }
75
76                 ir_fprintf(f, ")");
77         }
78         ir_fprintf(f, "\"}\n");
79
80         if(get_irg_start_block(get_irn_irg(block)) != block) {
81                 for(i = 0, n = get_irn_arity(block); i < n; ++i) {
82                         ir_node *pred_bl = get_nodes_block(get_irn_n(block, i));
83                         ir_fprintf(f, "edge:{sourcename:\"b%N\" targetname:\"b%N\"}\n", block, pred_bl);
84                 }
85         }
86 }
87
88 void dump_allocated_irg(arch_env_t *arch_env, ir_graph *irg, char *suffix)
89 {
90         char buf[1024];
91         struct dump_env env;
92
93         env.env = arch_env;
94
95         ir_snprintf(buf, sizeof(buf), "%F-alloc%s.vcg", irg, suffix);
96
97         if((env.f = fopen(buf, "wt")) != NULL) {
98                 fprintf(env.f, "graph:{title:\"prg\"\n");
99                 irg_block_walk_graph(irg, dump_allocated_block, NULL, &env);
100                 fprintf(env.f, "}\n");
101                 fclose(env.f);
102         }
103 }
104
105 /**
106  * Edge hook to dump the schedule edges.
107  */
108 static int sched_edge_hook(FILE *F, ir_node *irn)
109 {
110         if(sched_is_scheduled(irn) && sched_has_prev(irn)) {
111                 ir_node *prev = sched_prev(irn);
112                 fprintf(F, "edge:{sourcename:\"");
113                 PRINT_NODEID(irn);
114                 fprintf(F, "\" targetname:\"");
115                 PRINT_NODEID(prev);
116                 fprintf(F, "\" color:magenta}\n");
117         }
118         return 1;
119 }
120
121 void dump_ir_block_graph_sched(ir_graph *irg, const char *suffix) {
122         DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook();
123
124         dump_consts_local(0);
125         set_dump_node_edge_hook(sched_edge_hook);
126         dump_ir_block_graph(irg, suffix);
127         set_dump_node_edge_hook(old);
128 }
129
130 void dump_ir_extblock_graph_sched(ir_graph *irg, const char *suffix) {
131         DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook();
132
133         dump_consts_local(0);
134         set_dump_node_edge_hook(sched_edge_hook);
135         dump_ir_extblock_graph(irg, suffix);
136         set_dump_node_edge_hook(old);
137 }
138
139 /**
140  * Dumps a graph and numbers all dumps.
141  * @param irg    The graph
142  * @param suffix A suffix to its file name.
143  * @param dumper The dump function
144  */
145 void be_dump(ir_graph *irg, const char *suffix, void (*dumper)(ir_graph *, const char *)) {
146         static ir_graph *last_irg = NULL;
147         static int       nr       = 0;
148         char             buf[128];
149
150         if (irg != last_irg) {
151                 last_irg = irg;
152                 nr       = 0;
153         }
154
155         snprintf(buf, sizeof(buf), "-%02d%s", nr++, suffix);
156         buf[sizeof(buf) - 1] = '\0';
157         dumper(irg, buf);
158 }
159
160
161
162 static void collect_phis(ir_node *irn, void *data)
163 {
164   if(is_Phi(irn)) {
165     ir_node *bl = get_nodes_block(irn);
166     set_irn_link(irn, get_irn_link(bl));
167     set_irn_link(bl, irn);
168   }
169 }
170
171 void be_clear_links(ir_graph *irg)
172 {
173         irg_walk_graph(irg, firm_clear_link, NULL, NULL);
174 }
175
176 void be_collect_phis(ir_graph *irg)
177 {
178         irg_walk_graph(irg, collect_phis, NULL, NULL);
179 }
180
181 static void count_num_reachable_nodes(ir_node *irn, void *env) {
182         int *num = env;
183         (*num)++;
184 }
185
186 unsigned get_num_reachable_nodes(ir_graph *irg) {
187         int num = 0;
188         irg_walk_graph(irg, count_num_reachable_nodes, NULL, &num);
189         return num;
190 }
191
192 /**
193  * Sets all node inputs to BAD node.
194  */
195 void be_kill_node(ir_node *irn) {
196         int      i;
197         ir_graph *irg;
198
199         if (is_Bad(irn))
200                 return;
201
202         irg = get_irn_irg(irn);
203
204         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
205                 set_irn_n(irn, i, get_irg_bad(irg));
206         }
207 }
208
209 /* FIXME: not used. can be deleted? */
210 ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive) {
211         ir_node *irn, *idom;
212
213         /* search the current block */
214         for (irn=sched_prev(start_point_exclusive); irn; irn=sched_prev(irn))
215                 if (pset_find_ptr(accept, irn))
216                         return irn;
217
218         /* FIXME: This is obviously buggy: after the first recursive call idom is a block
219            and get_nodes_block will fail.
220                  Moreover, why not a simple iteration instead of recursion */
221         idom = get_Block_idom(get_nodes_block(start_point_exclusive));
222
223         if (idom)
224                 return dom_up_search(accept, idom); /* continue search in idom-block */
225         else
226                 return NULL; /* this was the start block and we did not find an acceptable irn */
227 }