X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbenode.c;h=5960b6fa38efbfb38235a964b323d269c718101a;hb=a81908ffad4959b183b228d61c3375553a769cc0;hp=63b685dd64be07f3daa509dbb1902ca5c16a2411;hpb=94af2d05de84a5329886bb265f99c2ad7f0a1005;p=libfirm diff --git a/ir/be/benode.c b/ir/be/benode.c index 63b685dd6..5960b6fa3 100644 --- a/ir/be/benode.c +++ b/ir/be/benode.c @@ -37,19 +37,19 @@ #define DBG_LEVEL 0 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_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 { @@ -112,82 +112,82 @@ static be_node_attr_t *init_node_attr(ir_node *irn, 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, ir_node *ctx) + const arch_register_class_t *cls, + ir_graph *irg, ir_node *bl, ir_node *node_to_spill, ir_node *ctx) { be_spill_attr_t *attr; ir_node *irn; - ir_node *in[1]; - ir_op *op = get_op(factory, cls, node_kind_spill)->op; + ir_node *in[1]; + ir_op *op = get_op(factory, cls, node_kind_spill)->op; - assert(op && "Spill opcode must be present for this register class"); - in[0] = node_to_spill; + 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); attr = (be_spill_attr_t *) init_node_attr(irn, factory, 0); attr->spill_ctx = ctx; - return irn; + return irn; } 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 *irn, *in[1]; - ir_op *op = get_op(factory, cls, node_kind_reload)->op; + ir_node *irn, *in[1]; + ir_op *op = get_op(factory, cls, node_kind_reload)->op; - 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; + 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); + irn = new_ir_node(NULL, irg, bl, op, mode, 1, in); init_node_attr(irn, factory, 1); 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_node *irn; - ir_op *op = get_op(factory, cls, node_kind_perm)->op; + ir_op *op = get_op(factory, cls, node_kind_perm)->op; - irn = 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, factory, 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 *irn, *ins[1]; - ir_op *op = get_op(factory, cls, node_kind_copy)->op; + ir_node *irn, *ins[1]; + ir_op *op = get_op(factory, cls, node_kind_copy)->op; - ins[0] = in; + ins[0] = in; - irn = new_ir_node(NULL, irg, bl, op, get_irn_mode(in), 1, ins); + irn = new_ir_node(NULL, irg, bl, op, get_irn_mode(in), 1, ins); init_node_attr(irn, factory, 1); return irn; @@ -198,11 +198,11 @@ ir_node *be_spill( const arch_env_t *arch_env, ir_node *irn, ir_node *ctx) { - const arch_register_class_t *cls = arch_get_irn_reg_class(arch_env, irn, -1); + 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 *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; /* @@ -215,27 +215,27 @@ ir_node *be_spill( insert = sched_next(insert); sched_add_before(insert, spill); - return spill; + return spill; } 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) + 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); + ir_node *bl = get_nodes_block(irn); + ir_graph *irg = get_irn_irg(bl); assert(is_Spill(factory, spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M)); - reload = new_Reload(factory, cls, irg, bl, mode, spill); + reload = new_Reload(factory, cls, irg, bl, mode, spill); set_irn_n(irn, pos, reload); - sched_add_before(irn, reload); - return reload; + sched_add_before(irn, reload); + return reload; } /** @@ -249,14 +249,14 @@ ir_node *be_reload(const be_node_factory_t *factory, */ 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) + 1); - } + 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 * @@ -295,7 +295,7 @@ be_node_get_irn_reg_req(const arch_irn_ops_t *_self, void be_node_set_irn_reg(const arch_irn_ops_t *_self, ir_node *irn, - const arch_register_t *reg) + const arch_register_t *reg) { int pos; be_op_t *bo; @@ -345,14 +345,13 @@ be_node_get_irn_reg(const arch_irn_ops_t *_self, const ir_node *irn) 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); + const be_node_factory_t *factory = container_of(_self, const be_node_factory_t, irn_ops); - be_op_t *bo; - int idx; + be_op_t *bo; + int idx; - idx = redir_proj(&irn, 0); - bo = pmap_get(factory->irn_op_map, get_irn_op(irn)); + 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; @@ -365,7 +364,7 @@ arch_irn_class_t be_node_classify(const arch_irn_ops_t *_self, const ir_node *ir return 0; } - return 0; + return 0; } arch_irn_class_t be_node_get_flags(const arch_irn_ops_t *_self, const ir_node *irn) @@ -376,91 +375,91 @@ arch_irn_class_t be_node_get_flags(const arch_irn_ops_t *_self, const ir_node *i 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) { - be_op_t *bo; - bo = pmap_get(f->irn_op_map, get_irn_op(irn)); - return bo != NULL && bo->kind == node_kind_spill; + be_op_t *bo; + bo = pmap_get(f->irn_op_map, get_irn_op(irn)); + return bo != NULL && bo->kind == node_kind_spill; } be_node_factory_t *be_node_factory_init(be_node_factory_t *factory, const arch_isa_t *isa) { - 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, + 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(arch_register_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; + 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 int dump_node(ir_node *irn, FILE *f, dump_reason_t reason) { be_node_attr_t *attr = (be_node_attr_t *) &irn->attr; - be_op_t *bo = pmap_get(attr->factory->irn_op_map, get_irn_op(irn)); + be_op_t *bo = pmap_get(attr->factory->irn_op_map, get_irn_op(irn)); int i; @@ -491,22 +490,22 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason) } 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) + const arch_register_class_t *cls, + dom_front_info_t *dom_front, + ir_node *pos) { - 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("firm.be.node"); + 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("firm.be.node"); - irn_live_t *li; - ir_node *curr, *irn, *perm, **nodes; - int i, n; + irn_live_t *li; + ir_node *curr, *irn, *perm, **nodes; + int i, n; - firm_dbg_set_mask(dbg, DBG_LEVEL); - DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos)); + firm_dbg_set_mask(dbg, DBG_LEVEL); + DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos)); live_foreach(bl, li) { @@ -515,59 +514,59 @@ ir_node *insert_Perm_after(const be_main_env_t *env, pset_insert_ptr(live, irn); } - sched_foreach_reverse(bl, irn) { - ir_node *x; + 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; + 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)); + 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); + 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); + 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); - } - } + 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])); + 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; - } + 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); + 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); + 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); + 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; + sched_add_after(curr, proj); + curr = proj; - copies[0] = proj; - be_introduce_copies(dom_front, perm_op, array_size(copies), copies); - } - return perm; + copies[0] = proj; + be_introduce_copies(dom_front, perm_op, array_size(copies), copies); + } + return perm; }