X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_draw.c;h=30128dea11637d4432f353844f9cd34b5b6f4458;hb=7f0a53a0ab98e5c4123bb7937170e89df5d61eb8;hp=d9a6e72a2793beec6d33b6fb7c28c0e2ebf4265d;hpb=3c2f7c0c9e0bff5d97a973bc224579922bb7df81;p=libfirm diff --git a/ir/be/bechordal_draw.c b/ir/be/bechordal_draw.c index d9a6e72a2..30128dea1 100644 --- a/ir/be/bechordal_draw.c +++ b/ir/be/bechordal_draw.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -24,9 +24,7 @@ * @date 12.05.2005 * @version $Id$ */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include @@ -40,9 +38,9 @@ #include "belive_t.h" #include "bechordal_t.h" -#include "besched_t.h" +#include "besched.h" #include "bechordal_draw.h" -#include "beirg_t.h" +#include "beirg.h" typedef struct { be_chordal_env_t *env; @@ -54,27 +52,33 @@ typedef struct { #define decl_self(type, from) \ type *self = (type *) from -static void set_color(plotter_t *_self, const color_t *color) { +static void set_color(plotter_t *_self, const color_t *color) +{ decl_self(base_plotter_t, _self); self->color = color; } -static const color_t *get_color(const plotter_t *_self) { +static const color_t *get_color(const plotter_t *_self) +{ decl_self(const base_plotter_t, _self); return self->color; } -static void set_width(plotter_t *_self, int width) { +static void set_width(plotter_t *_self, int width) +{ decl_self(base_plotter_t, _self); self->width = width; } -static int get_width(const plotter_t *_self) { +static int get_width(const plotter_t *_self) +{ decl_self(const base_plotter_t, _self); return self->width; } -static void plotter_default_free(plotter_t *self) { +static void plotter_default_free(plotter_t *self) +{ + (void) self; } typedef struct { @@ -162,7 +166,7 @@ const plotter_if_t ps_plotter_vtab = { plotter_t *new_plotter_ps(const char *filename) { - ps_plotter_t *ps_plotter = xmalloc(sizeof(*ps_plotter)); + ps_plotter_t *ps_plotter = XMALLOC(ps_plotter_t); plotter_t *p = (plotter_t *) ps_plotter; ps_plotter->filename = filename; @@ -241,7 +245,6 @@ const draw_chordal_opts_t draw_chordal_def_opts = { typedef struct _draw_chordal_env_t { const be_chordal_env_t *chordal_env; - const arch_env_t *arch_env; const arch_register_class_t *cls; pmap *block_dims; plotter_t *plotter; @@ -265,15 +268,14 @@ static void block_dims_walker(ir_node *block, void *data) draw_chordal_env_t *env = data; struct list_head *head = get_block_border_head(env->chordal_env, block); const draw_chordal_opts_t *opts = env->opts; - struct block_dims *dims = obstack_alloc(&env->obst, sizeof(*dims)); + struct block_dims *dims = OALLOCZ(&env->obst, struct block_dims); border_t *b; - memset(dims, 0, sizeof(*dims)); dims->min_step = INT_MAX; list_for_each_entry_reverse(border_t, b, head, list) { ir_node *irn = b->irn; - const arch_register_t *reg = arch_get_irn_register(env->arch_env, irn); + const arch_register_t *reg = arch_get_irn_register(irn); int col = arch_register_get_index(reg); dims->max_step = MAX(dims->max_step, b->step); @@ -322,7 +324,7 @@ static void layout(const draw_chordal_env_t *env, ir_node *bl, int x) dims->box.x = x + doz(rect->w, dims->box.w) / 2; dims->box.y = rect->h + v_space; - rect->h += dims->box.h + v_space; + rect->h = dims->box.y + dims->box.h; } static void set_y(const draw_chordal_env_t *env, ir_node *bl, int up) @@ -348,6 +350,8 @@ static color_t *reg_to_color(const draw_chordal_env_t *env, { int phi_arg = 0; const ir_edge_t *edge; + (void) env; + (void) rel_bl; foreach_out_edge(irn, edge) phi_arg |= is_Phi(edge->src); @@ -375,27 +379,26 @@ static void draw_block(ir_node *bl, void *data) static const color_t black = { 0, 0, 0 }; const draw_chordal_env_t *env = data; const be_lv_t *lv = be_get_birg_liveness(env->chordal_env->birg); - pset *live_in = be_lv_pset_put_in(lv, bl, pset_new_ptr_default()); struct list_head *head = get_block_border_head(env->chordal_env, bl); ir_node *dom = get_Block_idom(bl); const draw_chordal_opts_t *opts = env->opts; struct block_dims *dims = pmap_get(env->block_dims, bl); char buf[64]; - ir_node *irn; border_t *b; + int idx; ir_snprintf(buf, sizeof(buf), "%F", bl); env->plotter->vtab->set_color(env->plotter, &black); env->plotter->vtab->box(env->plotter, &dims->box); -#if 0 +#if 1 env->plotter->vtab->text(env->plotter, dims->box.x, dims->box.y, buf); #endif list_for_each_entry(border_t, b, head, list) { if (b->is_def) { - const arch_register_t *reg = arch_get_irn_register(env->arch_env, b->irn); + const arch_register_t *reg = arch_get_irn_register(b->irn); int col = arch_register_get_index(reg); int live_out = be_is_live_out(lv, bl, b->irn); int x = (col + 1) * opts->h_inter_gap; @@ -420,9 +423,10 @@ static void draw_block(ir_node *bl, void *data) if (dom) { struct block_dims *dom_dims = pmap_get(env->block_dims, dom); - for (irn = pset_first(live_in); irn; irn = pset_next(live_in)) { - if (arch_irn_has_reg_class(env->arch_env, irn, -1, env->cls)) { - const arch_register_t *reg = arch_get_irn_register(env->arch_env, irn); + be_lv_foreach(lv, bl, be_lv_state_in, idx) { + ir_node *irn = be_lv_get_irn(lv, bl, idx); + if (arch_irn_consider_in_reg_alloc(env->cls, irn)) { + const arch_register_t *reg = arch_get_irn_register(irn); int col = arch_register_get_index(reg); int x = (col + 1) * opts->h_inter_gap; color_t color; @@ -438,8 +442,6 @@ static void draw_block(ir_node *bl, void *data) } } } - - del_pset(live_in); } static void draw(draw_chordal_env_t *env, const rect_t *start_box) @@ -461,12 +463,12 @@ static void draw(draw_chordal_env_t *env, const rect_t *start_box) p->vtab->finish(p); } -void draw_interval_tree(const draw_chordal_opts_t *opts, const be_chordal_env_t *chordal_env, plotter_t *plotter) { +void draw_interval_tree(const draw_chordal_opts_t *opts, const be_chordal_env_t *chordal_env, plotter_t *plotter) +{ draw_chordal_env_t env; struct block_dims *start_dims; ir_node *start_block = get_irg_start_block(chordal_env->irg); - env.arch_env = chordal_env->birg->main_env->arch_env; env.opts = opts; env.block_dims = pmap_create(); env.plotter = plotter;