remove morgan spiller, it's unused and the coming bespill changes won't support morga...
[libfirm] / ir / be / beutil.c
1 /*
2  * Copyright (C) 1995-2007 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       Contains some useful function for the backend.
23  * @author      Sebastian Hack
24  * @version     $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <stdio.h>
31
32 #include "pset.h"
33
34 #include "irgraph.h"
35 #include "irgwalk.h"
36 #include "irdump_t.h"
37 #include "irdom_t.h"
38 #include "ircons.h"
39 #include "iropt.h"
40 #include "irgopt.h"
41 #include "irtools.h"
42 #include "irprintf.h"
43 #include "iredges.h"
44
45 #include "beutil.h"
46 #include "besched_t.h"
47 #include "bearch_t.h"
48
49 /* Get an always empty set. */
50 pset *be_empty_set(void)
51 {
52         static pset *empty_set = NULL;
53
54         if(!empty_set)
55                 empty_set = pset_new_ptr(1);
56
57         assert(pset_count(empty_set) == 0);
58         return empty_set;
59 }
60
61 struct dump_env {
62         FILE *f;
63         arch_env_t *env;
64 };
65
66 static void dump_allocated_block(ir_node *block, void *data)
67 {
68         int i, n;
69         const ir_node *irn;
70         struct dump_env *dump_env = data;
71         FILE *f = dump_env->f;
72         arch_env_t *env = dump_env->env;
73
74         ir_fprintf(f, "node:{title:\"b%N\"\nlabel:\"", block);
75         sched_foreach(block, irn) {
76                 const char *prefix = "";
77
78                 const arch_register_t *reg = arch_get_irn_register(env, irn);
79
80                 ir_fprintf(f, "\n");
81                 if(reg)
82                         ir_fprintf(f, "%s = ", arch_register_get_name(reg));
83
84                 ir_fprintf(f, "%n(", irn);
85
86                 if(block != get_irg_start_block(get_irn_irg(block))) {
87                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
88                                 ir_node *op = get_irn_n(irn, i);
89                                 if(arch_is_register_operand(dump_env->env, op, -1)) {
90                                         ir_fprintf(f, "%s%s", prefix,
91                                                 arch_register_get_name(arch_get_irn_register(env, op)));
92                                         prefix = ", ";
93                                 }
94                         }
95                 }
96
97                 ir_fprintf(f, ")");
98         }
99         ir_fprintf(f, "\"}\n");
100
101         if(get_irg_start_block(get_irn_irg(block)) != block) {
102                 for(i = 0, n = get_irn_arity(block); i < n; ++i) {
103                         ir_node *pred_bl = get_nodes_block(get_irn_n(block, i));
104                         ir_fprintf(f, "edge:{sourcename:\"b%N\" targetname:\"b%N\"}\n", block, pred_bl);
105                 }
106         }
107 }
108
109 void dump_allocated_irg(arch_env_t *arch_env, ir_graph *irg, char *suffix)
110 {
111         char buf[1024];
112         struct dump_env env;
113
114         env.env = arch_env;
115
116         ir_snprintf(buf, sizeof(buf), "%F-alloc%s.vcg", irg, suffix);
117
118         if((env.f = fopen(buf, "wt")) != NULL) {
119                 fprintf(env.f, "graph:{title:\"prg\"\n");
120                 irg_block_walk_graph(irg, dump_allocated_block, NULL, &env);
121                 fprintf(env.f, "}\n");
122                 fclose(env.f);
123         }
124 }
125
126 /**
127  * Edge hook to dump the schedule edges.
128  */
129 static int sched_edge_hook(FILE *F, ir_node *irn)
130 {
131         if (is_Proj(irn))
132                 return 1;
133         if (sched_is_scheduled(irn) && sched_has_prev(irn)) {
134                 ir_node *prev = sched_prev(irn);
135                 fprintf(F, "edge:{sourcename:\"");
136                 PRINT_NODEID(irn);
137                 fprintf(F, "\" targetname:\"");
138                 PRINT_NODEID(prev);
139                 fprintf(F, "\" color:magenta}\n");
140         }
141         return 1;
142 }
143
144 void dump_ir_block_graph_sched(ir_graph *irg, const char *suffix) {
145         DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook();
146
147         dump_consts_local(0);
148         set_dump_node_edge_hook(sched_edge_hook);
149         dump_ir_block_graph(irg, suffix);
150         set_dump_node_edge_hook(old);
151 }
152
153 void dump_ir_extblock_graph_sched(ir_graph *irg, const char *suffix) {
154         DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook();
155
156         dump_consts_local(0);
157         set_dump_node_edge_hook(sched_edge_hook);
158         dump_ir_extblock_graph(irg, suffix);
159         set_dump_node_edge_hook(old);
160 }
161
162 /**
163  * Dumps a graph and numbers all dumps.
164  * @param irg    The graph
165  * @param suffix A suffix to its file name.
166  * @param dumper The dump function
167  */
168 void be_dump(ir_graph *irg, const char *suffix, void (*dumper)(ir_graph *, const char *)) {
169         static ir_graph *last_irg = NULL;
170         static int       nr       = 0;
171         char             buf[128];
172
173         if (irg != last_irg) {
174                 last_irg = irg;
175                 nr       = strcmp(suffix, "-abi") ? 0 : 1;
176         }
177
178         snprintf(buf, sizeof(buf), "-%02d%s", nr++, suffix);
179         buf[sizeof(buf) - 1] = '\0';
180         dumper(irg, buf);
181 }
182
183
184
185 static void collect_phis(ir_node *irn, void *data)
186 {
187         (void) data;
188         if(is_Phi(irn)) {
189                 ir_node *bl = get_nodes_block(irn);
190                 set_irn_link(irn, get_irn_link(bl));
191                 set_irn_link(bl, irn);
192         }
193 }
194
195 void be_clear_links(ir_graph *irg)
196 {
197         set_using_irn_link(irg);
198         irg_walk_graph(irg, firm_clear_link, NULL, NULL);
199         clear_using_irn_link(irg);
200 }
201
202 void be_collect_phis(ir_graph *irg)
203 {
204         irg_walk_graph(irg, collect_phis, NULL, NULL);
205 }
206
207 static void count_num_reachable_nodes(ir_node *irn, void *env)
208 {
209         int *num = env;
210         (*num)++;
211         (void) irn;
212 }
213
214 unsigned get_num_reachable_nodes(ir_graph *irg) {
215         int num = 0;
216         irg_walk_graph(irg, count_num_reachable_nodes, NULL, &num);
217         return num;
218 }
219
220 /**
221  * Sets all node inputs to BAD node.
222  */
223 void be_kill_node(ir_node *irn) {
224         ir_graph *irg = get_irn_irg(irn);
225
226         assert(!is_Bad(irn));
227
228 #ifdef DEBUG_libfirm
229         {
230         int i, first;
231         first = 0 - ! is_Block(irn);
232
233         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
234                 set_irn_n(irn, i, get_irg_bad(irg));
235         }
236         }
237 #endif
238
239         edges_node_deleted(irn, irg);
240 }
241
242 /**
243  * Gets the Proj with number pn from irn.
244  */
245 ir_node *be_get_Proj_for_pn(const ir_node *irn, long pn) {
246         const ir_edge_t *edge;
247         ir_node         *proj;
248         assert(get_irn_mode(irn) == mode_T && "need mode_T");
249
250         foreach_out_edge(irn, edge) {
251                 proj = get_edge_src_irn(edge);
252
253                 if (get_Proj_proj(proj) == pn)
254                         return proj;
255         }
256
257         return NULL;
258 }
259
260 FILE *be_ffopen(const char *base, const char *ext, const char *mode) {
261         FILE *out;
262         char buf[1024];
263
264         snprintf(buf, sizeof(buf), "%s.%s", base, ext);
265         buf[sizeof(buf) - 1] = '\0';
266         if (! (out = fopen(buf, mode))) {
267                 fprintf(stderr, "Cannot open file %s in mode %s\n", buf, mode);
268                 return NULL;
269         }
270         return out;
271 }