ia32: Use a more logical specification of operand sizes in the binary emitter.
[libfirm] / ir / be / bechordal_draw.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       Paint chordal graphs.
23  * @author      Sebastian Hack
24  * @date        12.05.2005
25  */
26 #include "config.h"
27
28 #include <limits.h>
29
30 #include "pmap.h"
31 #include "pset.h"
32
33 #include "irgwalk.h"
34 #include "irprintf.h"
35 #include "iredges_t.h"
36 #include "util.h"
37
38 #include "bearch.h"
39 #include "belive_t.h"
40 #include "bechordal_t.h"
41 #include "besched.h"
42 #include "bechordal_draw.h"
43 #include "beirg.h"
44
45 typedef struct {
46         be_chordal_env_t *env;
47         plotter_t inh;
48         const color_t *color;
49         int width;
50 } base_plotter_t;
51
52 #define decl_self(type, from) \
53   type *self = (type *) from
54
55 static void set_color(plotter_t *_self, const color_t *color)
56 {
57         decl_self(base_plotter_t, _self);
58         self->color = color;
59 }
60
61 static const color_t *get_color(const plotter_t *_self)
62 {
63         decl_self(const base_plotter_t, _self);
64         return self->color;
65 }
66
67 static void set_width(plotter_t *_self, int width)
68 {
69         decl_self(base_plotter_t, _self);
70         self->width = width;
71 }
72
73 static int get_width(const plotter_t *_self)
74 {
75         decl_self(const base_plotter_t, _self);
76         return self->width;
77 }
78
79 static void plotter_default_free(plotter_t *self)
80 {
81         (void) self;
82 }
83
84 typedef struct {
85         base_plotter_t inh;
86         const char     *filename;
87         FILE           *f;
88 } ps_plotter_t;
89
90
91 /*
92   ____  ____    ____  _       _   _
93  |  _ \/ ___|  |  _ \| | ___ | |_| |_ ___ _ __
94  | |_) \___ \  | |_) | |/ _ \| __| __/ _ \ '__|
95  |  __/ ___) | |  __/| | (_) | |_| ||  __/ |
96  |_|   |____/  |_|   |_|\___/ \__|\__\___|_|
97
98 */
99
100 static void ps_begin(plotter_t *_self, const rect_t *vis)
101 {
102         FILE *f;
103         decl_self(ps_plotter_t, _self);
104
105         f = self->f = fopen(self->filename, "wt");
106         fprintf(f, "%%!PS-Adobe-2.0\n");
107         fprintf(f, "%%%%BoundingBox: %d %d %d %d\n", vis->x, vis->y, vis->w, vis->h);
108 #if 0
109         fprintf(f, "/mainfont /Courier findfont %f scalefont def\n", 10.0);
110         fprintf(f, "mainfont setfont\n");
111 #endif /* if 0 */
112 }
113
114 static void ps_setcolor(plotter_t *_self, const color_t *color)
115 {
116         decl_self(ps_plotter_t, _self);
117         set_color(_self, color);
118
119         fprintf(self->f, "%.2f %.2f %.2f setrgbcolor\n",
120                 color->r, color->g, color->b);
121 }
122
123 static void ps_line(plotter_t *_self, int x1, int y1, int x2, int y2)
124 {
125         decl_self(ps_plotter_t, _self);
126
127         fprintf(self->f, "%d %d moveto\n", x1, y1);
128         fprintf(self->f, "%d %d lineto\n", x2, y2);
129         fprintf(self->f, "stroke\n");
130 }
131
132 static void ps_box(plotter_t *_self, const rect_t *rect)
133 {
134         decl_self(ps_plotter_t, _self);
135
136         fprintf(self->f, "%d %d %d %d rectstroke\n",
137                 rect->x, rect->y, rect->w, rect->h);
138 }
139
140 static void ps_text(plotter_t *_self, int x, int y, const char *str)
141 {
142         decl_self(ps_plotter_t, _self);
143
144         fprintf(self->f, "%d %d moveto\n", x, y);
145         fprintf(self->f, "(%s) show\n", str);
146 }
147
148 static void ps_finish(plotter_t *_self)
149 {
150         decl_self(ps_plotter_t, _self);
151         fclose(self->f);
152 }
153
154 static const plotter_if_t ps_plotter_vtab = {
155         ps_begin,
156         ps_setcolor,
157         get_color,
158         set_width,
159         get_width,
160         ps_line,
161         ps_box,
162         ps_text,
163         ps_finish,
164         plotter_default_free
165 };
166
167 plotter_t *new_plotter_ps(const char *filename)
168 {
169         ps_plotter_t *ps_plotter = XMALLOC(ps_plotter_t);
170         plotter_t *p = (plotter_t *) ps_plotter;
171
172         ps_plotter->filename = filename;
173         p->vtab = &ps_plotter_vtab;
174         return p;
175 }
176
177 extern void plotter_free(plotter_t *self)
178 {
179         self->vtab->free(self);
180         free(self);
181 }
182
183 const draw_chordal_opts_t draw_chordal_def_opts = {
184         10, 10, 30, 8, 10, 10
185 };
186
187 typedef struct draw_chordal_env_t {
188         const be_chordal_env_t      *chordal_env;
189         const arch_register_class_t *cls;
190         pmap                        *block_dims;
191         plotter_t                   *plotter;
192         const draw_chordal_opts_t   *opts;
193         struct obstack              obst;
194         int                         max_color;
195 } draw_chordal_env_t;
196
197 struct block_dims {
198         unsigned max_step;
199         int      min_step;
200         int      max_color;
201         rect_t   box;
202         rect_t   subtree_box;
203 };
204
205 #define doz(a, b) MAX((a) - (b), 0)
206
207 static void block_dims_walker(ir_node *block, void *data)
208 {
209         draw_chordal_env_t        *env  = (draw_chordal_env_t*)data;
210         struct list_head          *head = get_block_border_head(env->chordal_env, block);
211         const draw_chordal_opts_t *opts = env->opts;
212         struct block_dims         *dims = OALLOCZ(&env->obst, struct block_dims);
213
214         dims->min_step = INT_MAX;
215
216         foreach_border_head(head, b) {
217                 ir_node               *irn = b->irn;
218                 const arch_register_t *reg = arch_get_irn_register(irn);
219                 int                    col = reg->index;
220
221                 dims->max_step  = MAX(dims->max_step, b->step);
222                 dims->max_color = MAX(dims->max_color, col);
223                 env->max_color  = MAX(env->max_color, col);
224         }
225
226         dims->min_step = 1;
227
228 #if 1
229         dims->box.w = (dims->max_color + 2) * opts->h_inter_gap;
230         dims->box.h = dims->max_step * opts->v_inter_gap;
231 #else /* ! if 1 */
232         dims->box.w = dims->box.h = 10;
233 #endif /* if 1 */
234
235         pmap_insert(env->block_dims, block, dims);
236 }
237
238 static void layout(const draw_chordal_env_t *env, ir_node *bl, int x)
239 {
240         const draw_chordal_opts_t *opts   = env->opts;
241         struct block_dims         *dims   = pmap_get(struct block_dims, env->block_dims, bl);
242         rect_t                    *rect   = &dims->subtree_box;
243         int                       h_space = 0;
244         int                       v_space = 0;
245         ir_node                   *sub;
246
247         memset(rect, 0, sizeof(*rect));
248         rect->x = x;
249
250         dominates_for_each(bl, sub) {
251                 struct block_dims *bl_dim = pmap_get(struct block_dims, env->block_dims, sub);
252
253                 layout(env, sub, rect->x + rect->w);
254
255                 rect->w += h_space + bl_dim->subtree_box.w;
256                 rect->h  = MAX(rect->h, bl_dim->subtree_box.h);
257
258                 h_space = opts->h_gap;
259                 v_space = opts->v_gap;
260         }
261
262         rect->w = MAX(rect->w, dims->box.w + opts->h_gap);
263
264         dims->box.x = x + doz(rect->w, dims->box.w) / 2;
265         dims->box.y = rect->h + v_space;
266
267         rect->h = dims->box.y + dims->box.h;
268 }
269
270 static void set_y(const draw_chordal_env_t *env, ir_node *bl, int up)
271 {
272         const draw_chordal_opts_t *opts      = env->opts;
273         struct block_dims         *dims      = pmap_get(struct block_dims, env->block_dims, bl);
274         int                       max_height = dims->subtree_box.h - dims->box.h - opts->v_gap;
275         ir_node                   *sub;
276
277         dominates_for_each(bl, sub) {
278                 struct block_dims *bl_dim = pmap_get(struct block_dims, env->block_dims, sub);
279                 int height_diff = max_height - bl_dim->subtree_box.h;
280
281                 set_y(env, sub, up + height_diff);
282         }
283
284         dims->subtree_box.y += up;
285         dims->box.y         += up;
286 }
287
288 static color_t *reg_to_color(const draw_chordal_env_t *env,
289                                                          ir_node *rel_bl, ir_node *irn, color_t *color)
290 {
291         int phi_arg = 0;
292         (void) env;
293         (void) rel_bl;
294
295         foreach_out_edge(irn, edge)
296                 phi_arg |= is_Phi(edge->src);
297
298 #if 1
299         color->r = is_Phi(irn) ? 0.5 : 0.0;
300         color->g = phi_arg ? 0.5 : 0.0;
301         color->b = 0.0;
302 #else /* ! if 1 */
303         {
304                 int live_in  = is_live_in(rel_bl, irn);
305                 int live_out = is_live_out(rel_bl, irn);
306
307                 color->r = live_in;
308                 color->g = live_out;
309                 color->b = 0.0;
310         }
311 #endif /* if 1 */
312
313         return color;
314 }
315
316 static void draw_block(ir_node *bl, void *data)
317 {
318         static const color_t      black    = { 0, 0, 0 };
319         const draw_chordal_env_t  *env     = (const draw_chordal_env_t*)data;
320         const be_lv_t             *lv      = be_get_irg_liveness(env->chordal_env->irg);
321         struct list_head          *head    = get_block_border_head(env->chordal_env, bl);
322         ir_node                   *dom     = get_Block_idom(bl);
323         const draw_chordal_opts_t *opts    = env->opts;
324         struct block_dims         *dims    = pmap_get(struct block_dims, env->block_dims, bl);
325         char                      buf[64];
326
327         ir_snprintf(buf, sizeof(buf), "%F", bl);
328
329         env->plotter->vtab->set_color(env->plotter, &black);
330         env->plotter->vtab->box(env->plotter, &dims->box);
331
332 #if 1
333         env->plotter->vtab->text(env->plotter, dims->box.x, dims->box.y, buf);
334 #endif
335
336         foreach_border_head(head, b) {
337                 if (b->is_def) {
338                         const arch_register_t *reg = arch_get_irn_register(b->irn);
339                         int live_out = be_is_live_out(lv, bl, b->irn);
340                         int x        = (reg->index + 1) * opts->h_inter_gap;
341                         int ystart   = (b->step) * opts->v_inter_gap;
342                         int ystop    = (b->other_end->step) * opts->v_inter_gap + (live_out ? 0 : opts->v_inter_gap / 2);
343
344                         color_t color;
345                         reg_to_color(env, bl, b->irn, &color);
346
347                         x      += dims->box.x;
348                         ystart += dims->box.y;
349                         ystop  += dims->box.y;
350
351                         env->plotter->vtab->set_color(env->plotter, &color);
352                         env->plotter->vtab->line(env->plotter, x, ystart, x, ystop);
353
354                         env->plotter->vtab->line(env->plotter, x - 2, ystart, x + 2, ystart);
355                         env->plotter->vtab->line(env->plotter, x - 2, ystop, x + 2, ystop);
356                 }
357         }
358
359         if (dom) {
360                 struct block_dims *dom_dims = pmap_get(struct block_dims, env->block_dims, dom);
361
362                 be_lv_foreach_cls(lv, bl, be_lv_state_in, env->cls, irn) {
363                         const arch_register_t *reg = arch_get_irn_register(irn);
364                         int                    x   = (reg->index + 1) * opts->h_inter_gap;
365                         color_t                color;
366
367                         reg_to_color(env, bl, irn, &color);
368
369                         env->plotter->vtab->set_color(env->plotter, &color);
370                         env->plotter->vtab->line(env->plotter,
371                                 dims->box.x + x,
372                                 dims->box.y + dims->box.h,
373                                 dom_dims->box.x + x,
374                                 dom_dims->box.y);
375                 }
376         }
377 }
378
379 static void draw(draw_chordal_env_t *env, const rect_t *start_box)
380 {
381         ir_graph  *irg = env->chordal_env->irg;
382         plotter_t *p = env->plotter;
383         rect_t bbox;
384
385         bbox.x = bbox.y = 0;
386         bbox.w = start_box->w + 2 * env->opts->x_margin;
387         bbox.h = start_box->h + 2 * env->opts->y_margin;
388
389         be_assure_live_sets(irg);
390         be_assure_live_chk(irg);
391
392         p->vtab->begin(p, &bbox);
393         irg_block_walk_graph(env->chordal_env->irg, draw_block, NULL, env);
394         p->vtab->finish(p);
395 }
396
397 void draw_interval_tree(const draw_chordal_opts_t *opts,
398                         const be_chordal_env_t *chordal_env, plotter_t *plotter)
399 {
400         draw_chordal_env_t env;
401         struct block_dims  *start_dims;
402         ir_node            *start_block = get_irg_start_block(chordal_env->irg);
403
404         env.opts        = opts;
405         env.block_dims  = pmap_create();
406         env.plotter     = plotter;
407         env.cls         = chordal_env->cls;
408         env.max_color   = 0;
409         env.chordal_env = chordal_env;
410         obstack_init(&env.obst);
411
412         irg_block_walk_graph(chordal_env->irg, block_dims_walker, NULL, &env);
413         layout(&env, start_block, opts->x_margin);
414         set_y(&env, start_block, opts->y_margin);
415         start_dims = pmap_get(struct block_dims, env.block_dims, start_block);
416         draw(&env, &start_dims->subtree_box);
417
418         pmap_destroy(env.block_dims);
419         obstack_free(&env.obst, NULL);
420 }