X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_draw.c;h=140c7f3d79a8393795b10a1a9ef7de536dac39ec;hb=291696bb30d5430ed99ae56e09f944baf0684269;hp=15be9cd46edfaad6247a3f61ea42d2a012d97dd8;hpb=6501a9e9a930ede7b9bd2a9035a0f4bb845e1e38;p=libfirm diff --git a/ir/be/bechordal_draw.c b/ir/be/bechordal_draw.c index 15be9cd46..140c7f3d7 100644 --- a/ir/be/bechordal_draw.c +++ b/ir/be/bechordal_draw.c @@ -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,32 @@ 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; } @@ -134,7 +137,7 @@ static void ps_box(plotter_t *_self, const rect_t *rect) rect->x, rect->y, rect->w, rect->h); } -void ps_text(plotter_t *_self, int x, int y, const char *str) +static void ps_text(plotter_t *_self, int x, int y, const char *str) { decl_self(ps_plotter_t, _self); @@ -148,7 +151,7 @@ static void ps_finish(plotter_t *_self) fclose(self->f); } -const plotter_if_t ps_plotter_vtab = { +static const plotter_if_t ps_plotter_vtab = { ps_begin, ps_setcolor, get_color, @@ -240,7 +243,7 @@ const draw_chordal_opts_t draw_chordal_def_opts = { 10, 10, 30, 8, 10, 10 }; -typedef struct _draw_chordal_env_t { +typedef struct draw_chordal_env_t { const be_chordal_env_t *chordal_env; const arch_register_class_t *cls; pmap *block_dims; @@ -262,13 +265,12 @@ struct block_dims { static void block_dims_walker(ir_node *block, void *data) { - draw_chordal_env_t *env = data; + draw_chordal_env_t *env = (draw_chordal_env_t*)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) { @@ -296,7 +298,7 @@ static void block_dims_walker(ir_node *block, void *data) static void layout(const draw_chordal_env_t *env, ir_node *bl, int x) { const draw_chordal_opts_t *opts = env->opts; - struct block_dims *dims = pmap_get(env->block_dims, bl); + struct block_dims *dims = (struct block_dims*)pmap_get(env->block_dims, bl); rect_t *rect = &dims->subtree_box; int h_space = 0; int v_space = 0; @@ -306,7 +308,7 @@ static void layout(const draw_chordal_env_t *env, ir_node *bl, int x) rect->x = x; dominates_for_each(bl, sub) { - struct block_dims *bl_dim = pmap_get(env->block_dims, sub); + struct block_dims *bl_dim = (struct block_dims*)pmap_get(env->block_dims, sub); layout(env, sub, rect->x + rect->w); @@ -328,12 +330,12 @@ static void layout(const draw_chordal_env_t *env, ir_node *bl, int x) static void set_y(const draw_chordal_env_t *env, ir_node *bl, int up) { const draw_chordal_opts_t *opts = env->opts; - struct block_dims *dims = pmap_get(env->block_dims, bl); + struct block_dims *dims = (struct block_dims*)pmap_get(env->block_dims, bl); int max_height = dims->subtree_box.h - dims->box.h - opts->v_gap; ir_node *sub; dominates_for_each(bl, sub) { - struct block_dims *bl_dim = pmap_get(env->block_dims, sub); + struct block_dims *bl_dim = (struct block_dims*)pmap_get(env->block_dims, sub); int height_diff = max_height - bl_dim->subtree_box.h; set_y(env, sub, up + height_diff); @@ -375,12 +377,12 @@ static color_t *reg_to_color(const draw_chordal_env_t *env, 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); + const draw_chordal_env_t *env = (const draw_chordal_env_t*)data; + const be_lv_t *lv = be_get_irg_liveness(env->chordal_env->irg); 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); + struct block_dims *dims = (struct block_dims*)pmap_get(env->block_dims, bl); char buf[64]; border_t *b; int idx; @@ -419,7 +421,7 @@ static void draw_block(ir_node *bl, void *data) } if (dom) { - struct block_dims *dom_dims = pmap_get(env->block_dims, dom); + struct block_dims *dom_dims = (struct block_dims*)pmap_get(env->block_dims, dom); be_lv_foreach(lv, bl, be_lv_state_in, idx) { ir_node *irn = be_lv_get_irn(lv, bl, idx); @@ -452,7 +454,7 @@ static void draw(draw_chordal_env_t *env, const rect_t *start_box) bbox.w = start_box->w + 2 * env->opts->x_margin; bbox.h = start_box->h + 2 * env->opts->y_margin; - lv = be_assure_liveness(env->chordal_env->birg); + lv = be_assure_liveness(env->chordal_env->irg); be_liveness_assure_sets(lv); be_liveness_assure_chk(lv); @@ -461,7 +463,9 @@ 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); @@ -477,7 +481,7 @@ void draw_interval_tree(const draw_chordal_opts_t *opts, const be_chordal_env_t irg_block_walk_graph(chordal_env->irg, block_dims_walker, NULL, &env); layout(&env, start_block, opts->x_margin); set_y(&env, start_block, opts->y_margin); - start_dims = pmap_get(env.block_dims, start_block); + start_dims = (struct block_dims*)pmap_get(env.block_dims, start_block); draw(&env, &start_dims->subtree_box); pmap_destroy(env.block_dims);