make code a bit more readble
[libfirm] / ir / be / beabi.c
index 57f1674..8c75e0d 100644 (file)
@@ -35,6 +35,7 @@
 #include "benode_t.h"
 #include "belive_t.h"
 #include "besched_t.h"
+#include "beirg.h"
 
 typedef struct _be_abi_call_arg_t {
        unsigned is_res   : 1;  /**< 1: the call argument is a return value. 0: it's a call parameter. */
@@ -43,23 +44,24 @@ typedef struct _be_abi_call_arg_t {
 
        int pos;
        const arch_register_t *reg;
-       entity *stack_ent;
+       ir_entity *stack_ent;
        unsigned alignment;
        unsigned space_before;
        unsigned space_after;
 } be_abi_call_arg_t;
 
 struct _be_abi_call_t {
-       be_abi_call_flags_t flags;
-       const be_abi_callbacks_t *cb;
-       ir_type *between_type;
-       set *params;
+       be_abi_call_flags_t         flags;
+       const be_abi_callbacks_t    *cb;
+       ir_type                     *between_type;
+       set                         *params;
+       const arch_register_class_t *cls_addr;
 };
 
 struct _be_abi_irg_t {
        struct obstack       obst;
        be_stack_layout_t    *frame;        /**< The stack frame model. */
-       const be_irg_t       *birg;         /**< The back end IRG. */
+       be_irg_t             *birg;         /**< The back end IRG. */
        const arch_isa_t     *isa;          /**< The isa. */
        survive_dce_t        *dce_survivor;
 
@@ -160,10 +162,18 @@ static INLINE be_abi_call_arg_t *get_call_arg(be_abi_call_t *call, int is_res, i
 /* Set the flags for a call. */
 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb)
 {
-       call->flags        = flags;
-       call->cb           = cb;
+       call->flags = flags;
+       call->cb    = cb;
 }
 
+
+/* Set register class for call address */
+void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls)
+{
+       call->cls_addr = cls;
+}
+
+
 void be_abi_call_param_stack(be_abi_call_t *call, int arg_pos, unsigned alignment, unsigned space_before, unsigned space_after)
 {
        be_abi_call_arg_t *arg = get_or_set_call_arg(call, 0, arg_pos, 1);
@@ -199,14 +209,17 @@ be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call)
  *
  * @return the new ABI call object
  */
-static be_abi_call_t *be_abi_call_new(void)
+static be_abi_call_t *be_abi_call_new(const arch_register_class_t *cls_addr)
 {
        be_abi_call_t *call = xmalloc(sizeof(call[0]));
+
        call->flags.val  = 0;
        call->params     = new_set(cmp_call_arg, 16);
        call->cb         = NULL;
+       call->cls_addr   = cls_addr;
 
        call->flags.bits.try_omit_fp = be_omit_fp;
+
        return call;
 }
 
@@ -236,10 +249,10 @@ static void be_abi_call_free(be_abi_call_t *call)
      and the spills.
 */
 
-static int get_stack_entity_offset(be_stack_layout_t *frame, entity *ent, int bias)
+static int get_stack_entity_offset(be_stack_layout_t *frame, ir_entity *ent, int bias)
 {
        ir_type *t = get_entity_owner(ent);
-       int ofs    = get_entity_offset_bytes(ent);
+       int ofs    = get_entity_offset(ent);
 
        int i, index;
 
@@ -265,13 +278,13 @@ static int get_stack_entity_offset(be_stack_layout_t *frame, entity *ent, int bi
 /**
  * Retrieve the entity with given offset from a frame type.
  */
-static entity *search_ent_with_offset(ir_type *t, int offset)
+static ir_entity *search_ent_with_offset(ir_type *t, int offset)
 {
        int i, n;
 
        for(i = 0, n = get_compound_n_members(t); i < n; ++i) {
-               entity *ent = get_compound_member(t, i);
-               if(get_entity_offset_bytes(ent) == offset)
+               ir_entity *ent = get_compound_member(t, i);
+               if(get_entity_offset(ent) == offset)
                        return ent;
        }
 
@@ -280,10 +293,11 @@ static entity *search_ent_with_offset(ir_type *t, int offset)
 
 static int stack_frame_compute_initial_offset(be_stack_layout_t *frame)
 {
-       ir_type *base = frame->stack_dir < 0 ? frame->between_type : frame->frame_type;
-       entity *ent   = search_ent_with_offset(base, 0);
-       frame->initial_offset = 0;
-       frame->initial_offset = get_stack_entity_offset(frame, ent, 0);
+       ir_type  *base = frame->stack_dir < 0 ? frame->between_type : frame->frame_type;
+       ir_entity *ent = search_ent_with_offset(base, 0);
+
+       frame->initial_offset = ent ? get_stack_entity_offset(frame, ent, 0) : 0;
+
        return frame->initial_offset;
 }
 
@@ -301,7 +315,7 @@ static int stack_frame_compute_initial_offset(be_stack_layout_t *frame)
  */
 static be_stack_layout_t *stack_frame_init(be_stack_layout_t *frame, ir_type *args,
                                            ir_type *between, ir_type *locals, int stack_dir,
-                                           entity *param_map[])
+                                           ir_entity *param_map[])
 {
        frame->arg_type       = args;
        frame->between_type   = between;
@@ -334,7 +348,7 @@ static void stack_layout_dump(FILE *file, be_stack_layout_t *frame)
 
                ir_fprintf(file, "type %d: %F size: %d\n", j, t, get_type_size_bytes(t));
                for (i = 0, n = get_compound_n_members(t); i < n; ++i) {
-                       entity *ent = get_compound_member(t, i);
+                       ir_entity *ent = get_compound_member(t, i);
                        ir_fprintf(file, "\t%F int ofs: %d glob ofs: %d\n", ent, get_entity_offset_bytes(ent), get_stack_entity_offset(frame, ent, 0));
                }
        }
@@ -373,7 +387,6 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
 {
        ir_graph *irg             = env->birg->irg;
        const arch_isa_t *isa     = env->birg->main_env->arch_env->isa;
-       be_abi_call_t *call       = be_abi_call_new();
        ir_type *mt               = get_Call_type(irn);
        ir_node *call_ptr         = get_Call_ptr(irn);
        int n_params              = get_method_n_params(mt);
@@ -384,6 +397,7 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
        int stack_size            = 0;
        int stack_dir             = arch_isa_stack_dir(isa);
        const arch_register_t *sp = arch_isa_sp(isa);
+       be_abi_call_t *call       = be_abi_call_new(sp->reg_class);
        ir_mode *mach_mode        = sp->reg_class->mode;
        struct obstack *obst      = &env->obst;
        int no_alloc              = call->flags.bits.frame_is_setup_on_call;
@@ -438,11 +452,11 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
 
                /*
                 * Reverse list of stack parameters if call arguments are from left to right.
-                * We must them reverse again in they are pushed (not stored) and the stack
+                * We must them reverse again if they are pushed (not stored) and the stack
                 * direction is downwards.
                 */
                if (call->flags.bits.left_to_right ^ (do_seq && stack_dir < 0)) {
-                       for(i = 0; i < n_pos >> 1; ++i) {
+                       for (i = 0; i < n_pos >> 1; ++i) {
                                int other  = n_pos - i - 1;
                                int tmp    = pos[i];
                                pos[i]     = pos[other];
@@ -622,11 +636,13 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
                                       get_Call_type(irn));
 
        /*
-               TODO:
-               Set the register class of the call address to the same as the stack pointer's.
-               That' probably buggy for some architectures.
+               Set the register class of the call address to
+               the backend provided class (default: stack pointer class)
        */
-       be_node_set_reg_class(low_call, be_pos_Call_ptr, sp->reg_class);
+       be_node_set_reg_class(low_call, be_pos_Call_ptr, call->cls_addr);
+
+       /* Set input requirement for stack pointer. */
+       be_node_set_reg_class(low_call, be_pos_Call_sp, arch_get_irn_reg_class(isa->main_env->arch_env, curr_sp, -1));
 
        DBG((env->dbg, LEVEL_3, "\tcreated backend call %+F\n", low_call));
 
@@ -640,13 +656,18 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
        }
 
        /* Set the register constraints of the results. */
-       for(i = 0; res_projs[i]; ++i) {
-               ir_node *irn                 = res_projs[i];
-               int proj                     = get_Proj_proj(irn);
+       for (i = 0; res_projs[i]; ++i) {
+               ir_node *irn = res_projs[i];
+               int     proj = get_Proj_proj(irn);
 
                /* Correct Proj number since it has been adjusted! (see above) */
                const be_abi_call_arg_t *arg = get_call_arg(call, 1, proj - pn_Call_max);
 
+               /* correct mode */
+               const arch_register_class_t *cls = arch_register_get_class(arg->reg);
+               ir_mode *mode = arch_register_class_mode(cls);
+               set_irn_mode(irn, mode);
+
                assert(arg->in_reg);
                be_set_constr_single_reg(low_call, BE_OUT_POS(proj), arg->reg);
        }
@@ -654,29 +675,37 @@ static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp, i
        exchange(irn, low_call);
 
        /* redirect the result projs to the lowered call instead of the Proj_T */
-       for(i = 0; res_projs[i]; ++i)
+       for (i = 0; res_projs[i]; ++i)
                set_Proj_pred(res_projs[i], low_call);
 
        /* Make additional projs for the caller save registers
           and the Keep node which keeps them alive. */
-       if(pset_count(caller_save) > 0) {
+       if (pset_count(caller_save) > 0) {
                const arch_register_t *reg;
-               ir_node **in, *keep;
-               int i, n;
+               ir_node               **in, *keep;
+               int                   i, n;
 
-               for(reg = pset_first(caller_save), n = 0; reg; reg = pset_next(caller_save), ++n) {
+               for (reg = pset_first(caller_save), n = 0; reg; reg = pset_next(caller_save), ++n) {
                        ir_node *proj = new_r_Proj(irg, bl, low_call, reg->reg_class->mode, curr_res_proj);
 
                        /* memorize the register in the link field. we need afterwards to set the register class of the keep correctly. */
                        be_set_constr_single_reg(low_call, BE_OUT_POS(curr_res_proj), reg);
+
+                       /* a call can produce ignore registers, in this case set the flag and register for the Proj */
+                       if (arch_register_type_is(reg, ignore)) {
+                               arch_set_irn_register(env->birg->main_env->arch_env, proj, reg);
+                               be_node_set_flags(low_call, BE_OUT_POS(curr_res_proj), arch_irn_flags_ignore);
+                       }
+
                        set_irn_link(proj, (void *) reg);
                        obstack_ptr_grow(obst, proj);
                        curr_res_proj++;
                }
 
+               /* create the Keep for the caller save registers */
                in   = (ir_node **) obstack_finish(obst);
                keep = be_new_Keep(NULL, irg, bl, n, in);
-               for(i = 0; i < n; ++i) {
+               for (i = 0; i < n; ++i) {
                        const arch_register_t *reg = get_irn_link(in[i]);
                        be_node_set_reg_class(keep, i, reg->reg_class);
                }
@@ -900,7 +929,7 @@ static int cmp_call_dependecy(const void *c1, const void *c2)
  */
 static void link_calls_in_block_walker(ir_node *irn, void *data)
 {
-       opcode code = get_irn_opcode(irn);
+       ir_opcode code = get_irn_opcode(irn);
 
        if (code == iro_Call ||
                (code == iro_Alloc && get_Alloc_where(irn) == stack_alloc) ||
@@ -1083,7 +1112,7 @@ static void clearup_frame(be_abi_irg_t *env, ir_node *ret, pmap *reg_map, struct
  *
  * @return the stack argument layout type
  */
-static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type *method_type, entity ***param_map)
+static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type *method_type, ir_entity ***param_map)
 {
        int dir  = env->call->flags.bits.left_to_right ? 1 : -1;
        int inc  = env->birg->main_env->arch_env->isa->stack_dir * dir;
@@ -1096,9 +1125,9 @@ static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type
        int i;
        ir_type *val_param_tp = get_method_value_param_type(method_type);
        ident *id = get_entity_ident(get_irg_entity(env->birg->irg));
-       entity **map;
+       ir_entity **map;
 
-       *param_map = map = obstack_alloc(&env->obst, n * sizeof(entity *));
+       *param_map = map = obstack_alloc(&env->obst, n * sizeof(ir_entity *));
        res = new_type_struct(mangle_u(id, new_id_from_chars("arg_type", 8)));
        for (i = 0; i < n; ++i, curr += inc) {
                ir_type *param_type    = get_method_param_type(method_type, curr);
@@ -1121,7 +1150,7 @@ static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type
                        }
                        ofs += arg->space_before;
                        ofs = round_up2(ofs, arg->alignment);
-                       set_entity_offset_bytes(arg->stack_ent, ofs);
+                       set_entity_offset(arg->stack_ent, ofs);
                        ofs += arg->space_after;
                        ofs += get_type_size_bytes(param_type);
                        map[i] = arg->stack_ent;
@@ -1381,7 +1410,7 @@ static ir_node *create_be_return(be_abi_irg_t *env, ir_node *irn, ir_node *bl, i
 
 typedef struct lower_frame_sels_env_t {
        be_abi_irg_t *env;
-       entity       *value_param_list;  /**< the list of all value param entities */
+       ir_entity    *value_param_list;  /**< the list of all value param entities */
 } lower_frame_sels_env_t;
 
 /**
@@ -1400,7 +1429,7 @@ static void lower_frame_sels_walker(ir_node *irn, void *data)
 
                if (ptr == frame || ptr == param_base) {
                        be_abi_irg_t *env = ctx->env;
-                       entity       *ent = get_Sel_entity(irn);
+                       ir_entity    *ent = get_Sel_entity(irn);
                        ir_node      *bl  = get_nodes_block(irn);
                        ir_node      *nw;
 
@@ -1427,10 +1456,10 @@ static void lower_frame_sels_walker(ir_node *irn, void *data)
  * In the default case we move the entity to the frame type and create
  * a backing store into the first block.
  */
-static void fix_address_of_parameter_access(be_abi_irg_t *env, entity *value_param_list) {
+static void fix_address_of_parameter_access(be_abi_irg_t *env, ir_entity *value_param_list) {
        be_abi_call_t *call = env->call;
        ir_graph *irg       = env->birg->irg;
-       entity *ent, *next_ent, *new_list;
+       ir_entity *ent, *next_ent, *new_list;
        ir_type *frame_tp;
        DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
 
@@ -1516,13 +1545,44 @@ static void fix_address_of_parameter_access(be_abi_irg_t *env, entity *value_par
                        add_class_member(frame_tp, ent);
                        /* must be automatic to set a fixed layout */
                        set_entity_allocation(ent, allocation_automatic);
-                       set_entity_offset_bytes(ent, offset);
+                       set_entity_offset(ent, offset);
                        offset += get_type_size_bytes(tp);
                }
                set_type_size_bytes(frame_tp, offset);
        }
 }
 
+/**
+ * The start block has no jump, instead it has an initial exec Proj.
+ * The backend wants to handle all blocks the same way, so we replace
+ * the out cfg edge with a real jump.
+ */
+static void fix_start_block(ir_node *block, void *env) {
+       int      *done = env;
+       int      i;
+       ir_node  *start_block;
+       ir_graph *irg;
+
+       /* we processed the start block, return */
+       if (*done)
+               return;
+
+       irg         = get_irn_irg(block);
+       start_block = get_irg_start_block(irg);
+
+       for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i) {
+               ir_node *pred       = get_Block_cfgpred(block, i);
+               ir_node *pred_block = get_nodes_block(pred);
+
+               /* ok, we are in the block, having start as cfg predecessor */
+               if (pred_block == start_block) {
+                       ir_node *jump = new_r_Jmp(irg, pred_block);
+                       set_Block_cfgpred(block, i, jump);
+                       *done = 1;
+               }
+       }
+}
+
 /**
  * Modify the irg itself and the frame type.
  */
@@ -1539,7 +1599,7 @@ static void modify_irg(be_abi_irg_t *env)
        pset *dont_save           = pset_new_ptr(8);
 
        int n_params;
-       int i, j, n;
+       int i, j, n, temp;
 
        reg_node_map_t *rm;
        const arch_register_t *fp_reg;
@@ -1548,10 +1608,11 @@ static void modify_irg(be_abi_irg_t *env)
        ir_node *reg_params_bl;
        ir_node **args;
        ir_node *arg_tuple;
+       ir_node *value_param_base;
        const ir_edge_t *edge;
        ir_type *arg_type, *bet_type;
        lower_frame_sels_env_t ctx;
-       entity **param_map;
+       ir_entity **param_map;
 
        bitset_t *used_proj_nr;
        DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
@@ -1563,6 +1624,11 @@ static void modify_irg(be_abi_irg_t *env)
        ctx.value_param_list = NULL;
        irg_walk_graph(irg, lower_frame_sels_walker, NULL, &ctx);
 
+       /* value_param_base anchor is not needed anymore now */
+       value_param_base = get_irg_value_param_base(irg);
+       set_Proj_pred(value_param_base, new_r_Bad(irg));
+       set_irg_value_param_base(irg, new_r_Bad(irg));
+
        env->frame = obstack_alloc(&env->obst, sizeof(env->frame[0]));
        env->regs  = pmap_create();
 
@@ -1637,8 +1703,7 @@ static void modify_irg(be_abi_irg_t *env)
        rm = reg_map_to_arr(&env->obst, env->regs);
        for(i = 0, n = pmap_count(env->regs); i < n; ++i) {
                arch_register_t *reg = (void *) rm[i].reg;
-               ir_node *arg_proj    = rm[i].irn;
-               ir_mode *mode        = arg_proj ? get_irn_mode(arg_proj) : reg->reg_class->mode;
+               ir_mode *mode        = reg->reg_class->mode;
                long nr              = i;
                int pos              = BE_OUT_POS((int) nr);
                int flags            = 0;
@@ -1721,10 +1786,15 @@ static void modify_irg(be_abi_irg_t *env)
                        }
 
                        assert(repl != NULL);
-                       edges_reroute(args[i], repl, irg);
+                       exchange(args[i], repl);
                }
        }
 
+       /* the arg proj is not needed anymore now */
+       assert(get_irn_n_edges(arg_tuple) == 0);
+       set_irn_n(arg_tuple, 0, new_rd_Bad(irg));
+       set_irg_args(irg, new_rd_Bad(irg));
+
        /* All Return nodes hang on the End node, so look for them there. */
        for (i = 0, n = get_Block_n_cfgpreds(end); i < n; ++i) {
                ir_node *irn = get_Block_cfgpred(end, i);
@@ -1739,6 +1809,10 @@ static void modify_irg(be_abi_irg_t *env)
 
        del_pset(dont_save);
        obstack_free(&env->obst, args);
+
+       /* handle start block here (place a jump in the block) */
+       temp = 0;
+       irg_block_walk_graph(irg, fix_start_block, NULL, &temp);
 }
 
 be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
@@ -1757,7 +1831,7 @@ be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
 
        env->isa           = birg->main_env->arch_env->isa;
        env->method_type   = get_entity_type(get_irg_entity(irg));
-       env->call          = be_abi_call_new();
+       env->call          = be_abi_call_new(env->isa->sp->reg_class);
        arch_isa_get_call_abi(env->isa, env->method_type, env->call);
 
        env->ignore_regs      = pset_new_ptr_default();
@@ -1792,8 +1866,8 @@ be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
        pmap_destroy(env->keep_map);
 
        /* reroute the stack origin of the calls to the true stack origin. */
-       edges_reroute(dummy, env->init_sp, irg);
-       edges_reroute(old_frame, get_irg_frame(irg), irg);
+       exchange(dummy, env->init_sp);
+       exchange(old_frame, get_irg_frame(irg));
 
        /* Make some important node pointers survive the dead node elimination. */
        survive_dce_register_irn(env->dce_survivor, &env->init_sp);
@@ -1865,22 +1939,23 @@ static void collect_stack_nodes_walker(ir_node *irn, void *data)
 
 void be_abi_fix_stack_nodes(be_abi_irg_t *env, be_lv_t *lv)
 {
-       dom_front_info_t *df;
        pset *stack_nodes = pset_new_ptr(16);
        struct fix_stack_walker_info info;
+       int collect_phis;
 
        info.nodes = stack_nodes;
        info.aenv  = env->birg->main_env->arch_env;
 
-       /* We need dominance frontiers for fix up */
-       df = be_compute_dominance_frontiers(env->birg->irg);
+       be_assure_dom_front(env->birg);
+
+
        irg_walk_graph(env->birg->irg, collect_stack_nodes_walker, NULL, &info);
        pset_insert_ptr(stack_nodes, env->init_sp);
-       be_ssa_constr_set_phis(df, lv, stack_nodes, env->stack_phis);
+       collect_phis = 1;
+       if (env->call->cb->collect_stack_phis)
+               collect_phis = env->call->cb->collect_stack_phis(env->cb);
+       be_ssa_constr_set_phis(env->birg->dom_front, lv, stack_nodes, collect_phis ? env->stack_phis : NULL);
        del_pset(stack_nodes);
-
-       /* free these dominance frontiers */
-       be_free_dominance_frontiers(df);
 }
 
 static int process_stack_bias(be_abi_irg_t *env, ir_node *bl, int bias)
@@ -1896,7 +1971,7 @@ static int process_stack_bias(be_abi_irg_t *env, ir_node *bl, int bias)
                   If so, set the true offset (including the bias) for that
                   node.
                 */
-               entity *ent = arch_get_frame_entity(arch_env, irn);
+               ir_entity *ent = arch_get_frame_entity(arch_env, irn);
                if(ent) {
                        int offset = get_stack_entity_offset(env->frame, ent, bias);
                        arch_set_frame_offset(arch_env, irn, offset);
@@ -2059,12 +2134,12 @@ static arch_irn_flags_t abi_get_flags(const void *_self, const ir_node *irn)
        return arch_irn_flags_ignore | arch_irn_flags_modify_sp;
 }
 
-static entity *abi_get_frame_entity(const void *_self, const ir_node *irn)
+static ir_entity *abi_get_frame_entity(const void *_self, const ir_node *irn)
 {
        return NULL;
 }
 
-static void abi_set_frame_entity(const void *_self, ir_node *irn, entity *ent)
+static void abi_set_frame_entity(const void *_self, ir_node *irn, ir_entity *ent)
 {
 }