X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbenode.c;h=b8e3090050648a5cf6196c4448e0f3a7cb706dbe;hb=0d841728a12986b13b56bc5c019ff9466f1bd3ae;hp=b76c7995045a3d8310abf1f09f10a64d6baf6271;hpb=f8f5b704fc42a419106796cebc03e6cbb562c9d6;p=libfirm diff --git a/ir/be/benode.c b/ir/be/benode.c index b76c79950..b8e309005 100644 --- a/ir/be/benode.c +++ b/ir/be/benode.c @@ -5,9 +5,12 @@ * * Backend node support. * + * This file provdies Perm, Copy, Spill and Reload nodes. + * * Copyright (C) 2005 Universitaet Karlsruhe * Released under the GPL */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -19,11 +22,13 @@ #include "pmap.h" #include "util.h" #include "debug.h" +#include "fourcc.h" #include "irop_t.h" #include "irmode_t.h" #include "irnode_t.h" #include "ircons_t.h" +#include "irprintf.h" #include "be_t.h" #include "belive_t.h" @@ -34,119 +39,341 @@ #define DBG_LEVEL 0 +#define BENODE_MAGIC FOURCC('B', 'E', 'N', 'O') + typedef enum _node_kind_t { - node_kind_spill, - node_kind_reload, - node_kind_perm, - node_kind_copy, - node_kind_last + node_kind_spill, + node_kind_reload, + node_kind_perm, + node_kind_copy, + node_kind_kill, + node_kind_last } node_kind_t; typedef struct { - node_kind_t kind; - const arch_register_class_t *cls; - ir_op *op; - int n_pos; - int *pos; + node_kind_t kind; + const arch_register_class_t *cls; + ir_op *op; + int n_pos; + int *pos; } be_op_t; +typedef struct { + const arch_register_t *reg; + arch_register_req_t req; +} be_reg_data_t; + +typedef struct { + unsigned magic; + const be_op_t *op; + int n_regs; + be_reg_data_t reg_data[1]; +} be_node_attr_t; + +typedef struct { + be_node_attr_t attr; + ir_node *spill_ctx; /**< The node in whose context this spill was introduced. */ + unsigned offset; /**< The offset of the memory location the spill writes to + in the spill area. */ +} be_spill_attr_t; + + +ir_node *new_Keep(ir_graph *irg, ir_node *bl, int n, ir_node *in[]) +{ + static ir_op *keep_op = NULL; + ir_node *irn; + + if(!keep_op) + keep_op = new_ir_op(get_next_ir_opcode(), "Keep", op_pin_state_pinned, + irop_flag_keep, oparity_variable, 0, 0, NULL); + + irn = new_ir_node(NULL, irg, bl, keep_op, mode_ANY, n, in); + keep_alive(irn); + + return irn; +} + static int templ_pos_Spill[] = { - arch_pos_make_in(0) + 0 }; static int templ_pos_Reload[] = { - arch_pos_make_out(0) + -1 }; static int templ_pos_Copy[] = { - arch_pos_make_in(0), - arch_pos_make_out(0) + 0, -1 }; +static int templ_pos_Kill[] = { + 0 +}; + +static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason); + +static const ir_op_ops be_node_ops = { + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + dump_node, + NULL +}; + +static INLINE int is_be_node(const ir_node *irn) +{ + const be_node_attr_t *attr = (const be_node_attr_t *) &irn->attr; + return attr->magic == BENODE_MAGIC; +} + +static INLINE int is_be_kind(const ir_node *irn, node_kind_t kind) +{ + const be_node_attr_t *a = (const be_node_attr_t *) &irn->attr; + return a->magic == BENODE_MAGIC && a->op && a->op->kind == kind; +} + +static INLINE void *get_attr_and_check(ir_node *irn, node_kind_t kind) +{ + is_be_kind(irn, kind); + return &irn->attr; +} + +static be_node_attr_t *init_node_attr(ir_node *irn, + const be_op_t *op, + const arch_register_class_t *cls, + int n_regs) + +{ + be_node_attr_t *attr = (be_node_attr_t *) &irn->attr; + int i; + + attr->magic = BENODE_MAGIC; + attr->n_regs = n_regs; + attr->op = op; + + for(i = 0; i < n_regs; ++i) { + be_reg_data_t *rd = attr->reg_data + i; + + memset(&rd->req, 0, sizeof(rd->req)); + rd->reg = NULL; + rd->req.cls = cls; + rd->req.type = arch_register_req_type_normal; + } + + return attr; +} + #define ARRSIZE(x) (sizeof(x) / sizeof(x[0])) static int cmp_op_map(const void *a, const void *b, size_t size) { - const be_op_t *x = a; - const be_op_t *y = b; + const be_op_t *x = a; + const be_op_t *y = b; - return !(x->kind == y->kind && x->cls == y->cls); + return !(x->kind == y->kind && x->cls == y->cls); } static be_op_t *get_op(const be_node_factory_t *fact, - const arch_register_class_t *cls, node_kind_t kind) + const arch_register_class_t *cls, node_kind_t kind) { - be_op_t templ; + be_op_t templ; - templ.kind = kind; - templ.cls = cls; + templ.kind = kind; + templ.cls = cls; - return set_insert(fact->ops, &templ, sizeof(templ), - HASH_PTR(cls) + 7 * kind); + return set_insert(fact->ops, &templ, sizeof(templ), + HASH_PTR(cls) + 7 * kind); } + + ir_node *new_Spill(const be_node_factory_t *factory, - const arch_register_class_t *cls, - ir_graph *irg, ir_node *bl, ir_node *node_to_spill) + const arch_register_class_t *cls, + ir_graph *irg, ir_node *bl, ir_node *node_to_spill, ir_node *ctx) { - ir_node *in[1]; - ir_op *op = get_op(factory, cls, node_kind_spill)->op; + be_spill_attr_t *a; + ir_node *irn; + ir_node *in[1]; + be_op_t *bop = get_op(factory, cls, node_kind_spill); + ir_op *op = bop->op; + + assert(op && "Spill opcode must be present for this register class"); + in[0] = node_to_spill; + irn = new_ir_node(NULL, irg, bl, op, mode_M, 1, in); + a = (be_spill_attr_t *) init_node_attr(irn, bop, cls, 0); + a->spill_ctx = ctx; + a->offset = 0; + + return irn; +} - assert(op && "Spill opcode must be present for this register class"); - in[0] = node_to_spill; +void set_Spill_offset(ir_node *irn, unsigned offset) +{ + be_spill_attr_t *a = (be_spill_attr_t *) &irn->attr; + assert(is_be_kind(irn, node_kind_spill)); + a->offset = offset; +} - return new_ir_node(NULL, irg, bl, op, mode_M, 1, in); +static ir_node *find_a_spill_walker(ir_node *irn, unsigned visited_nr) +{ + if(get_irn_visited(irn) < visited_nr) { + set_irn_visited(irn, visited_nr); + + if(is_Phi(irn)) { + int i, n; + for(i = 0, n = get_irn_arity(irn); i < n; ++i) { + ir_node *n = find_a_spill_walker(get_irn_n(irn, i), visited_nr); + if(n != NULL) + return n; + } + } + + else if(is_be_kind(irn, node_kind_spill)) + return irn; + } + + return NULL; +} + +ir_node *get_Spill_context(const ir_node *irn) { + be_spill_attr_t *a = (be_spill_attr_t *) &irn->attr; + assert(is_be_kind(irn, node_kind_spill)); + return a->spill_ctx; +} + +/** + * Finds a spill for a reload. + * If the reload is directly using the spill, this is simple, + * else we perform DFS from the reload (over all PhiMs) and return + * the first spill node we find. + */ +static INLINE ir_node *find_a_spill(ir_node *irn) +{ + ir_graph *irg = get_irn_irg(irn); + unsigned visited_nr = get_irg_visited(irg) + 1; + + assert(is_be_kind(irn, node_kind_reload)); + set_irg_visited(irg, visited_nr); + return find_a_spill_walker(irn, visited_nr); +} + + +unsigned get_Spill_offset(ir_node *irn) +{ + be_node_attr_t *a = (be_node_attr_t *) &irn->attr; + assert(is_be_node(irn)); + + switch(a->op->kind) { + case node_kind_reload: + assert(0 && "not yet implemented"); + return get_Spill_offset(find_a_spill(irn)); + case node_kind_spill: + return ((be_spill_attr_t *) a)->offset; + default: + assert(0 && "Illegal node kind (spill/reload required)"); + } + + return 0; } ir_node *new_Reload(const be_node_factory_t *factory, - const arch_register_class_t *cls, ir_graph *irg, - ir_node *bl, ir_mode *mode, ir_node *spill_node) + const arch_register_class_t *cls, ir_graph *irg, + ir_node *bl, ir_mode *mode, ir_node *spill_node) { - ir_node *in[1]; - ir_op *op = get_op(factory, cls, node_kind_reload)->op; + ir_node *irn, *in[1]; + be_op_t *bop = get_op(factory, cls, node_kind_reload); + ir_op *op = bop->op; + + assert(op && "Reload opcode must be present for this register class"); + in[0] = spill_node; - assert(op && "Reload opcode must be present for this register class"); - // assert(is_Spill(factory, spill_node) && "Operand of Reload must be a Spill"); - in[0] = spill_node; + irn = new_ir_node(NULL, irg, bl, op, mode, 1, in); + init_node_attr(irn, bop, cls, 1); - return new_ir_node(NULL, irg, bl, op, mode, 1, in); + return irn; } ir_node *new_Perm(const be_node_factory_t *factory, - const arch_register_class_t *cls, - ir_graph *irg, ir_node *bl, int arity, ir_node **in) + const arch_register_class_t *cls, + ir_graph *irg, ir_node *bl, int arity, ir_node **in) { - ir_op *op = get_op(factory, cls, node_kind_perm)->op; + ir_node *irn; + be_op_t *bop = get_op(factory, cls, node_kind_perm); + ir_op *op = bop->op; - return new_ir_node(NULL, irg, bl, op, mode_T, arity, in); + irn = new_ir_node(NULL, irg, bl, op, mode_T, arity, in); + init_node_attr(irn, bop, cls, arity); + + return irn; } ir_node *new_Copy(const be_node_factory_t *factory, - const arch_register_class_t *cls, - ir_graph *irg, ir_node *bl, ir_node *in) + const arch_register_class_t *cls, + ir_graph *irg, ir_node *bl, ir_node *in) { - ir_node *ins[1]; - ir_op *op = get_op(factory, cls, node_kind_copy)->op; + ir_node *irn, *ins[1]; + be_op_t *bop = get_op(factory, cls, node_kind_copy); + ir_op *op = bop->op; + + ins[0] = in; - ins[0] = in; + irn = new_ir_node(NULL, irg, bl, op, get_irn_mode(in), 1, ins); + init_node_attr(irn, bop, cls, 1); - return new_ir_node(NULL, irg, bl, op, get_irn_mode(in), 1, ins); + return irn; } -#if 0 -ir_node *be_spill(const be_node_factory_t *factory, ir_node *irn) +ir_node *be_spill( + const be_node_factory_t *factory, + const arch_env_t *arch_env, + ir_node *irn, ir_node *ctx) { - ir_node *bl = get_nodes_block(irn); - ir_graph *irg = get_irn_irg(bl); - ir_node *spill = - new_Spill(factory, arch_get_irn_reg_class(irn), irg, bl, irn); - sched_add_after(irn, spill); - return spill; + const arch_register_class_t *cls = arch_get_irn_reg_class(arch_env, irn, -1); + + ir_node *bl = get_nodes_block(irn); + ir_graph *irg = get_irn_irg(bl); + ir_node *spill = new_Spill(factory, cls, irg, bl, irn, ctx); + ir_node *insert; + + /* + * search the right insertion point. a spill of a phi cannot be put + * directly after the phi, if there are some phis behind the one which + * is spilled. + */ + insert = sched_next(irn); + while(is_Phi(insert) && !sched_is_end(insert)) + insert = sched_next(insert); + + sched_add_before(insert, spill); + return spill; } -#endif +ir_node *be_reload(const be_node_factory_t *factory, + const arch_env_t *arch_env, + const arch_register_class_t *cls, + ir_node *irn, int pos, ir_mode *mode, ir_node *spill) +{ + ir_node *reload; + + ir_node *bl = get_nodes_block(irn); + ir_graph *irg = get_irn_irg(bl); + assert(be_is_Spill(spill) + || (is_Phi(spill) && get_irn_mode(spill) == mode_M)); + reload = new_Reload(factory, cls, irg, bl, mode, spill); + + set_irn_n(irn, pos, reload); + sched_add_before(irn, reload); + return reload; +} /** * If the node is a proj, reset the node to the proj's target and return @@ -159,332 +386,359 @@ ir_node *be_spill(const be_node_factory_t *factory, ir_node *irn) */ static int redir_proj(const ir_node **node, int def) { - const ir_node *n = *node; + const ir_node *n = *node; - if(is_Proj(n)) { - *node = get_Proj_pred(n); - def = get_Proj_proj(n); - } + if(is_Proj(n)) { + *node = get_Proj_pred(n); + def = -(get_Proj_proj(n) + 1); + } - return def; + return def; } static const arch_register_req_t * be_node_get_irn_reg_req(const arch_irn_ops_t *_self, - arch_register_req_t *req, const ir_node *irn, int pos) + arch_register_req_t *req, const ir_node *irn, int pos) { - be_op_t *bo; - const be_node_factory_t *factory = - container_of(_self, const be_node_factory_t, irn_ops); - - pos = arch_pos_make_out(redir_proj(&irn, arch_pos_get_index(pos))); - - bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); - - if(bo) { - int i; + /* We cannot get output requirements for tuple nodes. */ + if(get_irn_mode(irn) == mode_T && pos < 0) + return NULL; - req->type = arch_register_req_type_normal; - req->cls = bo->cls; - - for(i = 0; i < bo->n_pos; ++pos) - if(pos == bo->pos[i]) - return req; - } - - return NULL; + /* + * if we're interested in an output operand (pos < 0), so let's resolve projs. + */ + if(pos < 0) + pos = redir_proj((const ir_node **) &irn, pos); + + if(is_be_node(irn)) { + const be_node_attr_t *a = (const be_node_attr_t *) &irn->attr; + const be_op_t *bo = a->op; + int i; + + for(i = 0; i < bo->n_pos; ++i) { + if(pos == bo->pos[i]) { + + /* be nodes have no input constraints. + so return normal register requirements. */ + if(pos >= 0) { + memset(req, 0, sizeof(req[0])); + req->cls = bo->cls; + req->type = arch_register_req_type_normal; + } + + /* + * if an output requirement is requested, + * return the one stored in the node. + */ + else + *req = a->reg_data[-pos - 1].req; + + return req; + } + } + } + + return NULL; } -static int -be_node_get_n_operands(const arch_irn_ops_t *_self, const ir_node *irn, int in_out) +void be_set_Perm_out_req(ir_node *irn, int pos, const arch_register_req_t *req) { - be_op_t *bo; - int i, res = 0; - const be_node_factory_t *factory = - container_of(_self, const be_node_factory_t, irn_ops); - - redir_proj(&irn, 0); - bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); - - for(i = 0; i < bo->n_pos; ++i) - res += (bo->pos[i] ^ in_out) > 0; - - return res; + be_node_attr_t *a = get_attr_and_check(irn, node_kind_perm); + assert(pos >= 0 && pos < get_irn_arity(irn) && "position out of range"); + a->reg_data[pos].req = *req; } void be_node_set_irn_reg(const arch_irn_ops_t *_self, ir_node *irn, - int idx, const arch_register_t *reg) + const arch_register_t *reg) { - const arch_register_t **regs; + int pos; + be_op_t *bo; + be_node_attr_t *attr; + const be_node_factory_t *factory = + container_of(_self, const be_node_factory_t, irn_ops); + + if(get_irn_mode(irn) == mode_T) + return; - idx = redir_proj((const ir_node **) &irn, idx); - regs = (const arch_register_t **) &irn->attr; - regs[idx] = reg; + pos = redir_proj((const ir_node **) &irn, -1); + bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); + + if(!bo) + return; + + attr = (be_node_attr_t *) &irn->attr; + attr->reg_data[-pos - 1].reg = reg; } const arch_register_t * -be_node_get_irn_reg(const arch_irn_ops_t *_self, const ir_node *irn, int idx) +be_node_get_irn_reg(const arch_irn_ops_t *_self, const ir_node *irn) { - const arch_register_t **regs; + int i, pos; + be_op_t *bo; + const be_node_factory_t *factory = + container_of(_self, const be_node_factory_t, irn_ops); + + if(get_irn_mode(irn) == mode_T) + return NULL; + + pos = redir_proj((const ir_node **) &irn, -1); + bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); - idx = redir_proj(&irn, idx); - regs = (const arch_register_t **) &irn->attr; - return regs[idx]; + if(!bo) + return NULL; + + for(i = 0; i < bo->n_pos; ++i) { + if(bo->pos[i] == pos) { + be_node_attr_t *attr = (be_node_attr_t *) &irn->attr; + return attr->reg_data[-pos - 1].reg; + } + } + + return NULL; } arch_irn_class_t be_node_classify(const arch_irn_ops_t *_self, const ir_node *irn) { - const be_node_factory_t *factory = - container_of(_self, const be_node_factory_t, irn_ops); - - be_op_t *bo; - int idx; - - idx = redir_proj(&irn, 0); - bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); + const be_node_factory_t *factory = container_of(_self, const be_node_factory_t, irn_ops); + + be_op_t *bo; + int idx; + + idx = redir_proj(&irn, 0); + bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); + + switch(bo->kind) { +#define XXX(a) case node_kind_ ## a: return arch_irn_class_ ## a; + XXX(spill) + XXX(reload) + XXX(perm) + XXX(copy) +#undef XXX + default: + return 0; + } + + return 0; +} - return 0; +arch_irn_class_t be_node_get_flags(const arch_irn_ops_t *_self, const ir_node *irn) +{ + return 0; } static const arch_irn_ops_t * be_node_get_irn_ops(const arch_irn_handler_t *_self, const ir_node *irn) { - be_op_t *bo; - const be_node_factory_t *factory = - container_of(_self, const be_node_factory_t, handler); + be_op_t *bo; + const be_node_factory_t *factory = + container_of(_self, const be_node_factory_t, handler); - redir_proj(&irn, 0); - bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); + redir_proj(&irn, 0); + bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); - return bo ? &factory->irn_ops : NULL; + return bo ? &factory->irn_ops : NULL; } const arch_irn_handler_t *be_node_get_irn_handler(const be_node_factory_t *f) { - return &f->handler; + return &f->handler; } -int is_Spill(const be_node_factory_t *f, const ir_node *irn) +int be_is_Spill(const ir_node *irn) { - be_op_t *bo; - bo = pmap_get(f->irn_op_map, get_irn_op(irn)); - return bo->kind == node_kind_spill; + return is_be_kind(irn, node_kind_spill); } -be_node_factory_t *be_node_factory_init(be_node_factory_t *factory, - const arch_isa_if_t *isa) +int be_is_Reload(const ir_node *irn) { - char buf[256]; - int i, j, n; - - factory->ops = new_set(cmp_op_map, 64); - factory->irn_op_map = pmap_create(); - obstack_init(&factory->obst); - - factory->handler.get_irn_ops = be_node_get_irn_ops; - - factory->irn_ops.get_irn_reg_req = be_node_get_irn_reg_req; - factory->irn_ops.get_n_operands = be_node_get_n_operands; - factory->irn_ops.set_irn_reg = be_node_set_irn_reg; - factory->irn_ops.get_irn_reg = be_node_get_irn_reg; - factory->irn_ops.classify = be_node_classify; - - for(i = 0, n = isa->get_n_reg_class(); i < n; ++i) { - const arch_register_class_t *cls = isa->get_reg_class(i); - be_op_t *ent; - - ent = get_op(factory, cls, node_kind_spill); - snprintf(buf, sizeof(buf), "Spill_%s", cls->name); - ent->op = new_ir_op(get_next_ir_opcode(), buf, op_pin_state_pinned, - 0, 0, oparity_unary, 0); - ent->n_pos = ARRSIZE(templ_pos_Spill); - ent->pos = templ_pos_Spill; - pmap_insert(factory->irn_op_map, ent->op, ent); - - ent = get_op(factory, cls, node_kind_reload); - snprintf(buf, sizeof(buf), "Reload_%s", cls->name); - ent->op = new_ir_op(get_next_ir_opcode(), buf, op_pin_state_pinned, 0, 0, - oparity_unary, sizeof(const arch_register_t *)); - ent->n_pos = ARRSIZE(templ_pos_Reload); - ent->pos = templ_pos_Reload; - pmap_insert(factory->irn_op_map, ent->op, ent); - - ent = get_op(factory, cls, node_kind_copy); - snprintf(buf, sizeof(buf), "Copy_%s", cls->name); - ent->op = new_ir_op(get_next_ir_opcode(), buf, op_pin_state_pinned, 0, 0, - oparity_unary, sizeof(const arch_register_t *)); - ent->n_pos = ARRSIZE(templ_pos_Copy); - ent->pos = templ_pos_Copy; - pmap_insert(factory->irn_op_map, ent->op, ent); - - ent = get_op(factory, cls, node_kind_perm); - snprintf(buf, sizeof(buf), "Perm_%s", cls->name); - ent->op = new_ir_op(get_next_ir_opcode(), buf, op_pin_state_pinned, 0, 0, - oparity_variable, sizeof(const arch_register_t) * cls->n_regs); - ent->n_pos = 2 * cls->n_regs; - ent->pos = obstack_alloc(&factory->obst, sizeof(ent->pos[0]) * ent->n_pos); - for(j = 0; j < ent->n_pos; j += 2) { - ent->pos[j] = arch_pos_make_in(j); - ent->pos[j + 1] = arch_pos_make_out(j); - } - pmap_insert(factory->irn_op_map, ent->op, ent); - - } - - return factory; + return is_be_kind(irn, node_kind_reload); } -ir_node *insert_Perm_after(const be_main_session_env_t *env, - const arch_register_class_t *cls, ir_node *pos) +int be_is_Copy(const ir_node *irn) { - const arch_env_t *arch_env = env->main_env->arch_env; - ir_node *bl = is_Block(pos) ? pos : get_nodes_block(pos); - ir_graph *irg = get_irn_irg(bl); - pset *live = put_live_end(bl, pset_new_ptr_default()); - ir_node *curr, *irn, *perm, **nodes; - firm_dbg_module_t *dbg = firm_dbg_register("firm.be.node"); - int i, n; - - firm_dbg_set_mask(dbg, DBG_LEVEL); - DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos)); - - sched_foreach_reverse(bl, irn) { - ir_node *x; - - /* - * If we encounter the node we want to insert the Perm after, - * exit immediately, so that this node is still live - */ - if(irn == pos) - break; - - DBG((dbg, LEVEL_1, "%+F\n", irn)); - for(x = pset_first(live); x; x = pset_next(live)) - DBG((dbg, LEVEL_1, "\tlive: %+F\n", x)); - - if(arch_irn_has_reg_class(arch_env, irn, arch_pos_make_out(0), cls)) - pset_remove_ptr(live, irn); - - for(i = 0, n = get_irn_arity(irn); i < n; ++i) { - ir_node *op = get_irn_n(irn, i); - - if(arch_irn_has_reg_class(arch_env, op, arch_pos_make_out(0), cls)) - pset_insert_ptr(live, op); - } - } - - n = pset_count(live); - nodes = malloc(n * sizeof(nodes[0])); - - DBG((dbg, LEVEL_1, "live:\n")); - for(irn = pset_first(live), i = 0; irn; irn = pset_next(live), i++) { - DBG((dbg, LEVEL_1, "\t%+F\n", irn)); - nodes[i] = irn; - } - - perm = new_Perm(env->main_env->node_factory, cls, irg, bl, n, nodes); - sched_add_after(pos, perm); - free(nodes); - - curr = perm; - for(i = 0; i < n; ++i) { - ir_node *copies[1]; - ir_node *perm_op = get_irn_n(perm, i); - const arch_register_t *reg = arch_get_irn_register(arch_env, perm_op, 0); - - ir_mode *mode = get_irn_mode(perm_op); - ir_node *proj = new_r_Proj(irg, bl, perm, mode, i); - arch_set_irn_register(arch_env, proj, 0, reg); - - sched_add_after(curr, proj); - curr = proj; + return is_be_kind(irn, node_kind_copy); +} - copies[0] = proj; - be_introduce_copies(env->dom_front, perm_op, array_size(copies), copies); - } - return perm; +int be_is_Perm(const ir_node *irn) +{ + return is_be_kind(irn, node_kind_perm); } -typedef struct _phi_perm_info_t { - const be_main_session_env_t *env; - const arch_register_class_t *cls; - pmap *perm_map; -} phi_perm_info_t; -static void clear_link(ir_node *irn, void *data) +be_node_factory_t *be_node_factory_init(be_node_factory_t *factory, const arch_isa_t *isa) { - set_irn_link(irn, NULL); + int i, j, n; + + factory->ops = new_set(cmp_op_map, 64); + factory->irn_op_map = pmap_create(); + obstack_init(&factory->obst); + + factory->handler.get_irn_ops = be_node_get_irn_ops; + + factory->irn_ops.get_irn_reg_req = be_node_get_irn_reg_req; + factory->irn_ops.set_irn_reg = be_node_set_irn_reg; + factory->irn_ops.get_irn_reg = be_node_get_irn_reg; + factory->irn_ops.classify = be_node_classify; + factory->irn_ops.get_flags = be_node_get_flags; + + for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) { + const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i); + be_op_t *ent; + + ent = get_op(factory, cls, node_kind_spill); + ent->op = new_ir_op(get_next_ir_opcode(), "Spill", op_pin_state_pinned, + 0, oparity_unary, 0, sizeof(be_spill_attr_t), &be_node_ops); + ent->n_pos = ARRSIZE(templ_pos_Spill); + ent->pos = templ_pos_Spill; + pmap_insert(factory->irn_op_map, ent->op, ent); + + ent = get_op(factory, cls, node_kind_reload); + ent->op = new_ir_op(get_next_ir_opcode(), "Reload", op_pin_state_pinned, 0, + oparity_unary, 0, sizeof(be_node_attr_t), &be_node_ops); + ent->n_pos = ARRSIZE(templ_pos_Reload); + ent->pos = templ_pos_Reload; + pmap_insert(factory->irn_op_map, ent->op, ent); + + ent = get_op(factory, cls, node_kind_copy); + ent->op = new_ir_op(get_next_ir_opcode(), "Copy", op_pin_state_pinned, 0, + oparity_unary, 0, sizeof(be_node_attr_t), &be_node_ops); + ent->n_pos = ARRSIZE(templ_pos_Copy); + ent->pos = templ_pos_Copy; + pmap_insert(factory->irn_op_map, ent->op, ent); + + ent = get_op(factory, cls, node_kind_perm); + ent->op = new_ir_op(get_next_ir_opcode(), "Perm", op_pin_state_pinned, 0, + oparity_variable, 0, + sizeof(be_node_attr_t) + + sizeof(be_reg_data_t) * cls->n_regs, &be_node_ops); + ent->n_pos = 2 * cls->n_regs; + ent->pos = obstack_alloc(&factory->obst, sizeof(ent->pos[0]) * ent->n_pos); + for(j = 0; j < ent->n_pos; j += 2) { + int k = j / 2; + ent->pos[j] = k; + ent->pos[j + 1] = -(k + 1); + } + pmap_insert(factory->irn_op_map, ent->op, ent); + + } + + return factory; } -static void collect_phis(ir_node *irn, void *data) +static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason) { - phi_perm_info_t *pi = data; - if(is_Phi(irn) && arch_irn_has_reg_class(pi->env->main_env->arch_env, - irn, arch_pos_make_out(0), pi->cls)) { - - ir_node *bl = get_nodes_block(irn); - set_irn_link(irn, get_irn_link(bl)); - set_irn_link(bl, irn); - } + be_node_attr_t *at = (be_node_attr_t *) &irn->attr; + const be_op_t *bo; + int i; + + assert(is_be_node(irn)); + bo = at->op; + + switch(reason) { + case dump_node_opcode_txt: + fprintf(f, get_op_name(bo->op)); + break; + case dump_node_mode_txt: + fprintf(f, get_mode_name(get_irn_mode(irn))); + break; + case dump_node_nodeattr_txt: + fprintf(f, "%s ", bo->cls->name); + break; + case dump_node_info_txt: + for(i = 0; i < at->n_regs; ++i) { + const arch_register_t *reg = at->reg_data[i].reg; + fprintf(f, "reg #%d: %s\n", i, reg ? reg->name : "n/a"); + } + + if(bo->kind == node_kind_spill) { + be_spill_attr_t *a = (be_spill_attr_t *) at; + ir_fprintf(f, "spill context: %+F\n", a->spill_ctx); + ir_fprintf(f, "spill offset: %u\n", a->offset); + } + break; + } + + return 0; } -/* This is only semi-ugly :-) */ -#define INT_TO_PTR(i) ((void *) ((char *) 0 + (i))) -#define PTR_TO_INT(p) ((int) ((char *) (p) - (char *) 0)) - -static void insert_phi_perms(ir_node *bl, void *data) +ir_node *insert_Perm_after(const be_main_env_t *env, + const arch_register_class_t *cls, + dom_front_info_t *dom_front, + ir_node *pos) { - phi_perm_info_t *pi = data; - ir_graph *irg = pi->env->irg; - - assert(is_Block(bl)); - - /* If the link flag is NULL, this block has no phis. */ - if(get_irn_link(bl)) { - int i, n; - - /* Look at all predecessors of the phi block */ - for(i = 0, n = get_irn_arity(bl); i < n; ++i) { - ir_node *pred_bl = get_Block_cfgpred_block(bl, i); - ir_node *phi, *perm; - ir_node **in; - int n_phis = 0; - int j; - - for(phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) - n_phis++; + const arch_env_t *arch_env = env->arch_env; + ir_node *bl = is_Block(pos) ? pos : get_nodes_block(pos); + ir_graph *irg = get_irn_irg(bl); + pset *live = pset_new_ptr_default(); + firm_dbg_module_t *dbg = firm_dbg_register("be.node"); - in = malloc(n_phis * sizeof(in[0])); + irn_live_t *li; + ir_node *curr, *irn, *perm, **nodes; + int i, n; - /* Look at all phis in this block */ - j = 0; - for(phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) - in[j++] = get_irn_n(phi, i); + DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos)); - perm = new_Perm(pi->env->main_env->node_factory, pi->cls, irg, pred_bl, n_phis, in); - j = 0; - for(phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) { - ir_node *proj = new_r_Proj(irg, pred_bl, perm, get_irn_mode(phi), j++); - set_irn_n(phi, i, proj); - } + live_foreach(bl, li) { + ir_node *irn = (ir_node *) li->irn; + if(live_is_end(li) && arch_irn_has_reg_class(arch_env, irn, -1, cls)) + pset_insert_ptr(live, irn); + } - free(in); - } - } -} - -void be_insert_phi_perms(const be_main_session_env_t *env, - const arch_register_class_t *cls) -{ - phi_perm_info_t pi; - - pi.env = env; - pi.cls = cls; - pi.perm_map = pmap_create(); + sched_foreach_reverse(bl, irn) { + ir_node *x; - irg_walk_graph(env->irg, clear_link, collect_phis, &pi); - irg_block_walk_graph(env->irg, insert_phi_perms, NULL, &pi); - pmap_destroy(pi.perm_map); + /* + * If we encounter the node we want to insert the Perm after, + * exit immediately, so that this node is still live + */ + if(irn == pos) + break; + + DBG((dbg, LEVEL_1, "%+F\n", irn)); + for(x = pset_first(live); x; x = pset_next(live)) + DBG((dbg, LEVEL_1, "\tlive: %+F\n", x)); + + if(arch_irn_has_reg_class(arch_env, irn, -1, cls)) + pset_remove_ptr(live, irn); + + for(i = 0, n = get_irn_arity(irn); i < n; ++i) { + ir_node *op = get_irn_n(irn, i); + + if(arch_irn_has_reg_class(arch_env, op, -1, cls)) + pset_insert_ptr(live, op); + } + } + + n = pset_count(live); + nodes = malloc(n * sizeof(nodes[0])); + + DBG((dbg, LEVEL_1, "live:\n")); + for(irn = pset_first(live), i = 0; irn; irn = pset_next(live), i++) { + DBG((dbg, LEVEL_1, "\t%+F\n", irn)); + nodes[i] = irn; + } + + perm = new_Perm(env->node_factory, cls, irg, bl, n, nodes); + sched_add_after(pos, perm); + free(nodes); + + curr = perm; + for(i = 0; i < n; ++i) { + ir_node *copies[1]; + ir_node *perm_op = get_irn_n(perm, i); + const arch_register_t *reg = arch_get_irn_register(arch_env, perm_op); + + ir_mode *mode = get_irn_mode(perm_op); + ir_node *proj = new_r_Proj(irg, bl, perm, mode, i); + arch_set_irn_register(arch_env, proj, reg); + + sched_add_after(curr, proj); + curr = proj; + + copies[0] = proj; + be_introduce_copies(dom_front, perm_op, array_size(copies), copies); + } + return perm; }