remove some unnecessary/confusing flags
[libfirm] / ir / ir / irnode.c
index 6462ffc..3269e20 100644 (file)
@@ -39,6 +39,7 @@
 #include "iredgekinds.h"
 #include "iredges_t.h"
 #include "ircons.h"
+#include "error.h"
 
 #include "irhooks.h"
 #include "irtools.h"
@@ -127,6 +128,15 @@ void init_irnode(void)
        forbid_new_data = 1;
 }
 
+struct struct_align {
+       char c;
+       struct s {
+               int i;
+               float f;
+               double d;
+       } s;
+};
+
 /*
  * irnode constructor.
  * Create a new irnode in irg, with an op, mode, arity and
@@ -137,7 +147,9 @@ ir_node *new_ir_node(dbg_info *db, ir_graph *irg, ir_node *block, ir_op *op,
                      ir_mode *mode, int arity, ir_node **in)
 {
        ir_node *res;
-       size_t node_size = offsetof(ir_node, attr) + op->attr_size + firm_add_node_size;
+       unsigned align = offsetof(struct struct_align, s) - 1;
+       unsigned add_node_size = (firm_add_node_size + align) & ~align;
+       size_t node_size = offsetof(ir_node, attr) + op->attr_size + add_node_size;
        char *p;
        int i;
 
@@ -146,7 +158,7 @@ ir_node *new_ir_node(dbg_info *db, ir_graph *irg, ir_node *block, ir_op *op,
        assert(mode);
        p = obstack_alloc(irg->obst, node_size);
        memset(p, 0, node_size);
-       res = (ir_node *)(p + firm_add_node_size);
+       res = (ir_node *)(p + add_node_size);
 
        res->kind     = k_ir_node;
        res->op       = op;
@@ -188,25 +200,6 @@ ir_node *new_ir_node(dbg_info *db, ir_graph *irg, ir_node *block, ir_op *op,
        if (get_irg_phase_state(irg) == phase_backend) {
                be_info_new_node(res);
        }
-       // Init the VRP structures
-       res->vrp.range_type = VRP_UNDEFINED;
-       res->vrp.valid = 0;
-       if (mode_is_int(mode)) {
-               // We are assuming that 0 is always represented as 0x0000
-               res->vrp.bits_set = new_tarval_from_long(0, mode);
-               res->vrp.bits_not_set = new_tarval_from_long(0, mode);
-               res->vrp.range_bottom = get_tarval_top();
-               res->vrp.range_top = get_tarval_top();
-       } else {
-               res->vrp.bits_set = get_tarval_bad();
-               res->vrp.bits_not_set = get_tarval_bad();
-               res->vrp.range_bottom = get_tarval_bad();
-               res->vrp.range_top = get_tarval_bad();
-       }
-       res->vrp.bits_node = NULL;
-       res->vrp.range_node = NULL;
-       res->vrp.range_op = VRP_NONE;
-
 
        return res;
 }
@@ -218,18 +211,6 @@ int (is_ir_node)(const void *thing)
        return _is_ir_node(thing);
 }
 
-int (get_irn_intra_arity)(const ir_node *node)
-{
-       return _get_irn_intra_arity(node);
-}
-
-int (get_irn_inter_arity)(const ir_node *node)
-{
-       return _get_irn_inter_arity(node);
-}
-
-int (*_get_irn_arity)(const ir_node *node) = _get_irn_intra_arity;
-
 int (get_irn_arity)(const ir_node *node)
 {
        return _get_irn_arity(node);
@@ -243,18 +224,6 @@ int (get_irn_arity)(const ir_node *node)
    consecutive. */
 ir_node **get_irn_in(const ir_node *node)
 {
-       assert(node);
-#ifdef INTERPROCEDURAL_VIEW
-       if (get_interprocedural_view()) { /* handle Filter and Block specially */
-               if (get_irn_opcode(node) == iro_Filter) {
-                       assert(node->attr.filter.in_cg);
-                       return node->attr.filter.in_cg;
-               } else if (get_irn_opcode(node) == iro_Block && node->attr.block.in_cg) {
-                       return node->attr.block.in_cg;
-               }
-               /* else fall through */
-       }
-#endif /* INTERPROCEDURAL_VIEW */
        return node->in;
 }
 
@@ -264,21 +233,7 @@ void set_irn_in(ir_node *node, int arity, ir_node **in)
        ir_node *** pOld_in;
        ir_graph *irg = get_irn_irg(node);
 
-       assert(node);
-#ifdef INTERPROCEDURAL_VIEW
-       if (get_interprocedural_view()) { /* handle Filter and Block specially */
-               ir_opcode code = get_irn_opcode(node);
-               if (code  == iro_Filter) {
-                       assert(node->attr.filter.in_cg);
-                       pOld_in = &node->attr.filter.in_cg;
-               } else if (code == iro_Block && node->attr.block.in_cg) {
-                       pOld_in = &node->attr.block.in_cg;
-               } else {
-                       pOld_in = &node->in;
-               }
-       } else
-#endif /* INTERPROCEDURAL_VIEW */
-               pOld_in = &node->in;
+       pOld_in = &node->in;
 
 
        for (i = 0; i < arity; i++) {
@@ -301,18 +256,6 @@ void set_irn_in(ir_node *node, int arity, ir_node **in)
        memcpy((*pOld_in) + 1, in, sizeof(ir_node *) * arity);
 }
 
-ir_node *(get_irn_intra_n)(const ir_node *node, int n)
-{
-       return _get_irn_intra_n(node, n);
-}
-
-ir_node *(get_irn_inter_n)(const ir_node *node, int n)
-{
-       return _get_irn_inter_n(node, n);
-}
-
-ir_node *(*_get_irn_n)(const ir_node *node, int n) = _get_irn_intra_n;
-
 ir_node *(get_irn_n)(const ir_node *node, int n)
 {
        return _get_irn_n(node, n);
@@ -320,37 +263,17 @@ ir_node *(get_irn_n)(const ir_node *node, int n)
 
 void set_irn_n(ir_node *node, int n, ir_node *in)
 {
+       ir_graph *irg = get_irn_irg(node);
        assert(node && node->kind == k_ir_node);
        assert(-1 <= n);
        assert(n < get_irn_arity(node));
        assert(in && in->kind == k_ir_node);
 
-#ifdef INTERPROCEDURAL_VIEW
-       if ((n == -1) && (get_irn_opcode(node) == iro_Filter)) {
-               /* Change block pred in both views! */
-               node->in[n + 1] = in;
-               assert(node->attr.filter.in_cg);
-               node->attr.filter.in_cg[n + 1] = in;
-               return;
-       }
-       if (get_interprocedural_view()) { /* handle Filter and Block specially */
-               if (get_irn_opcode(node) == iro_Filter) {
-                       assert(node->attr.filter.in_cg);
-                       node->attr.filter.in_cg[n + 1] = in;
-                       return;
-               } else if (get_irn_opcode(node) == iro_Block && node->attr.block.in_cg) {
-                       node->attr.block.in_cg[n + 1] = in;
-                       return;
-               }
-               /* else fall through */
-       }
-#endif /* INTERPROCEDURAL_VIEW */
-
        /* Call the hook */
        hook_set_irn_n(node, n, in, node->in[n + 1]);
 
        /* Here, we rely on src and tgt being in the current ir graph */
-       edges_notify_edge(node, n, in, node->in[n + 1], current_ir_graph);
+       edges_notify_edge(node, n, in, node->in[n + 1], irg);
 
        node->in[n + 1] = in;
 }
@@ -555,92 +478,6 @@ long get_irn_node_nr(const ir_node *node)
        return node->node_nr;
 }
 
-const_attr *get_irn_const_attr(ir_node *node)
-{
-       assert(is_Const(node));
-       return &node->attr.con;
-}
-
-long get_irn_proj_attr(ir_node *node)
-{
-       /* BEWARE: check for true Proj node here, no Filter */
-       assert(node->op == op_Proj);
-       return node->attr.proj;
-}
-
-alloc_attr *get_irn_alloc_attr(ir_node *node)
-{
-       assert(is_Alloc(node));
-       return &node->attr.alloc;
-}
-
-free_attr *get_irn_free_attr(ir_node *node)
-{
-       assert(is_Free(node));
-       return &node->attr.free;
-}
-
-symconst_attr *get_irn_symconst_attr(ir_node *node)
-{
-       assert(is_SymConst(node));
-       return &node->attr.symc;
-}
-
-call_attr *get_irn_call_attr(ir_node *node)
-{
-       assert(is_Call(node));
-       return &node->attr.call;
-}
-
-sel_attr *get_irn_sel_attr(ir_node *node)
-{
-       assert(is_Sel(node));
-       return &node->attr.sel;
-}
-
-phi_attr *get_irn_phi_attr(ir_node *node)
-{
-       return &node->attr.phi;
-}
-
-block_attr *get_irn_block_attr(ir_node *node)
-{
-       assert(is_Block(node));
-       return &node->attr.block;
-}
-
-load_attr *get_irn_load_attr(ir_node *node)
-{
-       assert(is_Load(node));
-       return &node->attr.load;
-}
-
-store_attr *get_irn_store_attr(ir_node *node)
-{
-       assert(is_Store(node));
-       return &node->attr.store;
-}
-
-except_attr *get_irn_except_attr(ir_node *node)
-{
-       assert(node->op == op_Div || node->op == op_Quot ||
-              node->op == op_DivMod || node->op == op_Mod || node->op == op_Call || node->op == op_Alloc || node->op == op_Bound);
-       return &node->attr.except;
-}
-
-divmod_attr *get_irn_divmod_attr(ir_node *node)
-{
-       assert(node->op == op_Div || node->op == op_Quot ||
-              node->op == op_DivMod || node->op == op_Mod);
-       return &node->attr.divmod;
-}
-
-builtin_attr *get_irn_builtin_attr(ir_node *node)
-{
-       assert(is_Builtin(node));
-       return &node->attr.builtin;
-}
-
 void *(get_irn_generic_attr)(ir_node *node)
 {
        assert(is_ir_node(node));
@@ -671,11 +508,9 @@ int get_irn_pred_pos(ir_node *node, ir_node *arg)
 
 /** manipulate fields of individual nodes **/
 
-/* this works for all except Block */
-ir_node *get_nodes_block(const ir_node *node)
+ir_node *(get_nodes_block)(const ir_node *node)
 {
-       assert(node->op != op_Block);
-       return get_irn_n(node, -1);
+       return _get_nodes_block(node);
 }
 
 void set_nodes_block(ir_node *node, ir_node *block)
@@ -684,13 +519,6 @@ void set_nodes_block(ir_node *node, ir_node *block)
        set_irn_n(node, -1, block);
 }
 
-/* this works for all except Block */
-ir_node *get_nodes_MacroBlock(const ir_node *node)
-{
-       assert(node->op != op_Block);
-       return get_Block_MacroBlock(get_irn_n(node, -1));
-}
-
 /* Test whether arbitrary node is frame pointer, i.e. Proj(pn_Start_P_frame_base)
  * from Start.  If so returns frame type, else Null. */
 ir_type *is_frame_pointer(const ir_node *n)
@@ -777,7 +605,6 @@ void (set_Block_block_visited)(ir_node *node, ir_visited_t visit)
        _set_Block_block_visited(node, visit);
 }
 
-/* For this current_ir_graph must be set. */
 void (mark_Block_block_visited)(ir_node *node)
 {
        _mark_Block_block_visited(node);
@@ -788,70 +615,6 @@ int (Block_block_visited)(const ir_node *node)
        return _Block_block_visited(node);
 }
 
-ir_node *get_Block_graph_arr(ir_node *node, int pos)
-{
-       assert(is_Block(node));
-       return node->attr.block.graph_arr[pos+1];
-}
-
-void set_Block_graph_arr(ir_node *node, int pos, ir_node *value)
-{
-       assert(is_Block(node));
-       node->attr.block.graph_arr[pos+1] = value;
-}
-
-#ifdef INTERPROCEDURAL_VIEW
-void set_Block_cg_cfgpred_arr(ir_node *node, int arity, ir_node *in[])
-{
-       assert(is_Block(node));
-       if (node->attr.block.in_cg == NULL || arity != ARR_LEN(node->attr.block.in_cg) - 1) {
-               node->attr.block.in_cg = NEW_ARR_D(ir_node *, current_ir_graph->obst, arity + 1);
-               node->attr.block.in_cg[0] = NULL;
-               node->attr.block.cg_backedge = new_backedge_arr(current_ir_graph->obst, arity);
-               {
-                       /* Fix backedge array.  fix_backedges() operates depending on
-                          interprocedural_view. */
-                       int ipv = get_interprocedural_view();
-                       set_interprocedural_view(1);
-                       fix_backedges(current_ir_graph->obst, node);
-                       set_interprocedural_view(ipv);
-               }
-       }
-       memcpy(node->attr.block.in_cg + 1, in, sizeof(ir_node *) * arity);
-}
-
-void set_Block_cg_cfgpred(ir_node *node, int pos, ir_node *pred)
-{
-       assert(is_Block(node) && node->attr.block.in_cg &&
-              0 <= pos && pos < ARR_LEN(node->attr.block.in_cg) - 1);
-       node->attr.block.in_cg[pos + 1] = pred;
-}
-
-ir_node **get_Block_cg_cfgpred_arr(ir_node *node)
-{
-       assert(is_Block(node));
-       return node->attr.block.in_cg == NULL ? NULL : node->attr.block.in_cg  + 1;
-}
-
-int get_Block_cg_n_cfgpreds(const ir_node *node)
-{
-       assert(is_Block(node));
-       return node->attr.block.in_cg == NULL ? 0 : ARR_LEN(node->attr.block.in_cg) - 1;
-}
-
-ir_node *get_Block_cg_cfgpred(const ir_node *node, int pos)
-{
-       assert(is_Block(node) && node->attr.block.in_cg);
-       return node->attr.block.in_cg[pos + 1];
-}
-
-void remove_Block_cg_cfgpred_arr(ir_node *node)
-{
-       assert(is_Block(node));
-       node->attr.block.in_cg = NULL;
-}
-#endif /* INTERPROCEDURAL_VIEW */
-
 ir_node *(set_Block_dead)(ir_node *block)
 {
        return _set_Block_dead(block);
@@ -878,39 +641,6 @@ void set_Block_extbb(ir_node *block, ir_extblk *extblk)
        block->attr.block.extblk = extblk;
 }
 
-/* Returns the macro block header of a block.*/
-ir_node *get_Block_MacroBlock(const ir_node *block)
-{
-       ir_node *mbh;
-       assert(is_Block(block));
-       mbh = get_irn_n(block, -1);
-       /* once macro block header is respected by all optimizations,
-          this assert can be removed */
-       assert(mbh != NULL);
-       return mbh;
-}
-
-/* Sets the macro block header of a block. */
-void set_Block_MacroBlock(ir_node *block, ir_node *mbh)
-{
-       assert(is_Block(block));
-       mbh = skip_Id(mbh);
-       assert(is_Block(mbh));
-       set_irn_n(block, -1, mbh);
-}
-
-/* returns the macro block header of a node. */
-ir_node *get_irn_MacroBlock(const ir_node *n)
-{
-       if (! is_Block(n)) {
-               n = get_nodes_block(n);
-               /* if the Block is Bad, do NOT try to get it's MB, it will fail. */
-               if (is_Bad(n))
-                       return (ir_node *)n;
-       }
-       return get_Block_MacroBlock(n);
-}
-
 /* returns the graph of a Block. */
 ir_graph *(get_Block_irg)(const ir_node *block)
 {
@@ -1109,56 +839,6 @@ void free_End(ir_node *end)
                             in array afterwards ... */
 }
 
-/* Return the target address of an IJmp */
-ir_node *get_IJmp_target(const ir_node *ijmp)
-{
-       assert(is_IJmp(ijmp));
-       return get_irn_n(ijmp, 0);
-}
-
-/** Sets the target address of an IJmp */
-void set_IJmp_target(ir_node *ijmp, ir_node *tgt)
-{
-       assert(is_IJmp(ijmp));
-       set_irn_n(ijmp, 0, tgt);
-}
-
-ir_node *get_Cond_selector(const ir_node *node)
-{
-       assert(is_Cond(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Cond_selector(ir_node *node, ir_node *selector)
-{
-       assert(is_Cond(node));
-       set_irn_n(node, 0, selector);
-}
-
-long get_Cond_default_proj(const ir_node *node)
-{
-       assert(is_Cond(node));
-       return node->attr.cond.default_proj;
-}
-
-void set_Cond_default_proj(ir_node *node, long defproj)
-{
-       assert(is_Cond(node));
-       node->attr.cond.default_proj = defproj;
-}
-
-ir_node *get_Return_mem(const ir_node *node)
-{
-       assert(is_Return(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Return_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Return(node));
-       set_irn_n(node, 0, mem);
-}
-
 int get_Return_n_ress(const ir_node *node)
 {
        assert(is_Return(node));
@@ -1194,17 +874,6 @@ void set_Return_res(ir_node *node, int pos, ir_node *res)
        set_irn_n(node, pos + RETURN_RESULT_OFFSET, res);
 }
 
-tarval *(get_Const_tarval)(const ir_node *node)
-{
-       return _get_Const_tarval(node);
-}
-
-void set_Const_tarval(ir_node *node, tarval *con)
-{
-       assert(is_Const(node));
-       node->attr.con.tv = con;
-}
-
 int (is_Const_null)(const ir_node *node)
 {
        return _is_Const_null(node);
@@ -1224,7 +893,7 @@ int (is_Const_all_one)(const ir_node *node)
 /* The source language type.  Must be an atomic type.  Mode of type must
    be mode of node. For tarvals from entities type must be pointer to
    entity type. */
-ir_type *get_Const_type(ir_node *node)
+ir_type *get_Const_type(const ir_node *node)
 {
        assert(is_Const(node));
        return node->attr.con.tp;
@@ -1270,18 +939,6 @@ void set_SymConst_type(ir_node *node, ir_type *tp)
        node->attr.symc.sym.type_p = tp;
 }
 
-ident *get_SymConst_name(const ir_node *node)
-{
-       assert(is_SymConst(node) && SYMCONST_HAS_ID(get_SymConst_kind(node)));
-       return node->attr.symc.sym.ident_p;
-}
-
-void set_SymConst_name(ir_node *node, ident *name)
-{
-       assert(is_SymConst(node) && SYMCONST_HAS_ID(get_SymConst_kind(node)));
-       node->attr.symc.sym.ident_p = name;
-}
-
 
 /* Only to access SymConst of kind symconst_addr_ent.  Else assertion: */
 ir_entity *get_SymConst_entity(const ir_node *node)
@@ -1321,7 +978,7 @@ void set_SymConst_symbol(ir_node *node, union symconst_symbol sym)
        node->attr.symc.sym = sym;
 }
 
-ir_type *get_SymConst_value_type(ir_node *node)
+ir_type *get_SymConst_value_type(const ir_node *node)
 {
        assert(is_SymConst(node));
        return node->attr.symc.tp;
@@ -1333,30 +990,6 @@ void set_SymConst_value_type(ir_node *node, ir_type *tp)
        node->attr.symc.tp = tp;
 }
 
-ir_node *get_Sel_mem(const ir_node *node)
-{
-       assert(is_Sel(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Sel_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Sel(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Sel_ptr(const ir_node *node)
-{
-       assert(is_Sel(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Sel_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_Sel(node));
-       set_irn_n(node, 1, ptr);
-}
-
 int get_Sel_n_indexs(const ir_node *node)
 {
        assert(is_Sel(node));
@@ -1384,24 +1017,6 @@ void set_Sel_index(ir_node *node, int pos, ir_node *index)
        set_irn_n(node, pos + SEL_INDEX_OFFSET, index);
 }
 
-ir_entity *get_Sel_entity(const ir_node *node)
-{
-       assert(is_Sel(node));
-       return node->attr.sel.entity;
-}
-
-/* need a version without const to prevent warning */
-static ir_entity *_get_Sel_entity(ir_node *node)
-{
-       return get_Sel_entity(node);
-}
-
-void set_Sel_entity(ir_node *node, ir_entity *ent)
-{
-       assert(is_Sel(node));
-       node->attr.sel.entity = ent;
-}
-
 
 /* For unary and binary arithmetic operations the access to the
    operands can be factored out.  Left is the first, right the
@@ -1411,30 +1026,6 @@ void set_Sel_entity(ir_node *node, ir_entity *ent)
    Shr, Shrs, Rotate, Cmp */
 
 
-ir_node *get_Call_mem(const ir_node *node)
-{
-       assert(is_Call(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Call_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Call(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Call_ptr(const ir_node *node)
-{
-       assert(is_Call(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Call_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_Call(node));
-       set_irn_n(node, 1, ptr);
-}
-
 ir_node **get_Call_param_arr(ir_node *node)
 {
        assert(is_Call(node));
@@ -1459,96 +1050,34 @@ void set_Call_param(ir_node *node, int pos, ir_node *param)
        set_irn_n(node, pos + CALL_PARAM_OFFSET, param);
 }
 
-ir_type *get_Call_type(ir_node *node)
-{
-       assert(is_Call(node));
-       return node->attr.call.type;
-}
-
-void set_Call_type(ir_node *node, ir_type *tp)
-{
-       assert(is_Call(node));
-       assert((get_unknown_type() == tp) || is_Method_type(tp));
-       node->attr.call.type = tp;
-}
-
-unsigned get_Call_tail_call(const ir_node *node)
-{
-       assert(is_Call(node));
-       return node->attr.call.tail_call;
-}
-
-void set_Call_tail_call(ir_node *node, unsigned tail_call)
-{
-       assert(is_Call(node));
-       node->attr.call.tail_call = tail_call != 0;
-}
-
-ir_node *get_Builtin_mem(const ir_node *node)
+ir_node **get_Builtin_param_arr(ir_node *node)
 {
        assert(is_Builtin(node));
-       return get_irn_n(node, 0);
+       return &get_irn_in(node)[BUILDIN_PARAM_OFFSET + 1];
 }
 
-void set_Builin_mem(ir_node *node, ir_node *mem)
+int get_Builtin_n_params(const ir_node *node)
 {
        assert(is_Builtin(node));
-       set_irn_n(node, 0, mem);
+       return (get_irn_arity(node) - BUILDIN_PARAM_OFFSET);
 }
 
-ir_builtin_kind get_Builtin_kind(const ir_node *node)
+ir_node *get_Builtin_param(const ir_node *node, int pos)
 {
        assert(is_Builtin(node));
-       return node->attr.builtin.kind;
+       return get_irn_n(node, pos + BUILDIN_PARAM_OFFSET);
 }
 
-void set_Builtin_kind(ir_node *node, ir_builtin_kind kind)
+void set_Builtin_param(ir_node *node, int pos, ir_node *param)
 {
        assert(is_Builtin(node));
-       node->attr.builtin.kind = kind;
+       set_irn_n(node, pos + BUILDIN_PARAM_OFFSET, param);
 }
 
-ir_node **get_Builtin_param_arr(ir_node *node)
+/* Returns a human readable string for the ir_builtin_kind. */
+const char *get_builtin_kind_name(ir_builtin_kind kind)
 {
-       assert(is_Builtin(node));
-       return &get_irn_in(node)[BUILDIN_PARAM_OFFSET + 1];
-}
-
-int get_Builtin_n_params(const ir_node *node)
-{
-       assert(is_Builtin(node));
-       return (get_irn_arity(node) - BUILDIN_PARAM_OFFSET);
-}
-
-ir_node *get_Builtin_param(const ir_node *node, int pos)
-{
-       assert(is_Builtin(node));
-       return get_irn_n(node, pos + BUILDIN_PARAM_OFFSET);
-}
-
-void set_Builtin_param(ir_node *node, int pos, ir_node *param)
-{
-       assert(is_Builtin(node));
-       set_irn_n(node, pos + BUILDIN_PARAM_OFFSET, param);
-}
-
-ir_type *get_Builtin_type(ir_node *node)
-{
-       assert(is_Builtin(node));
-       return node->attr.builtin.type;
-}
-
-void set_Builtin_type(ir_node *node, ir_type *tp)
-{
-       assert(is_Builtin(node));
-       assert((get_unknown_type() == tp) || is_Method_type(tp));
-       node->attr.builtin.type = tp;
-}
-
-/* Returns a human readable string for the ir_builtin_kind. */
-const char *get_builtin_kind_name(ir_builtin_kind kind)
-{
-#define X(a)    case a: return #a;
+#define X(a)    case a: return #a
        switch (kind) {
                X(ir_bk_trap);
                X(ir_bk_debugbreak);
@@ -1591,9 +1120,11 @@ ir_entity *get_Call_callee(const ir_node *node, int pos)
 
 void set_Call_callee_arr(ir_node *node, const int n, ir_entity ** arr)
 {
+       ir_graph *irg = get_irn_irg(node);
+
        assert(is_Call(node));
        if (node->attr.call.callee_arr == NULL || get_Call_n_callees(node) != n) {
-               node->attr.call.callee_arr = NEW_ARR_D(ir_entity *, current_ir_graph->obst, n);
+               node->attr.call.callee_arr = NEW_ARR_D(ir_entity *, irg->obst, n);
        }
        memcpy(node->attr.call.callee_arr, arr, n * sizeof(ir_entity *));
 }
@@ -1604,30 +1135,6 @@ void remove_Call_callee_arr(ir_node *node)
        node->attr.call.callee_arr = NULL;
 }
 
-ir_node *get_CallBegin_ptr(const ir_node *node)
-{
-       assert(is_CallBegin(node));
-       return get_irn_n(node, 0);
-}
-
-void set_CallBegin_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_CallBegin(node));
-       set_irn_n(node, 0, ptr);
-}
-
-ir_node *get_CallBegin_call(const ir_node *node)
-{
-       assert(is_CallBegin(node));
-       return node->attr.callbegin.call;
-}
-
-void set_CallBegin_call(ir_node *node, ir_node *call)
-{
-       assert(is_CallBegin(node));
-       node->attr.callbegin.call = call;
-}
-
 /*
  * Returns non-zero if a Call is surely a self-recursive Call.
  * Beware: if this functions returns 0, the call might be self-recursive!
@@ -1645,124 +1152,6 @@ int is_self_recursive_Call(const ir_node *call)
        return 0;
 }
 
-#define BINOP(OP)                                      \
-ir_node * get_##OP##_left(const ir_node *node) {       \
-  assert(is_##OP(node));                               \
-  return get_irn_n(node, node->op->op_index);          \
-}                                                      \
-void set_##OP##_left(ir_node *node, ir_node *left) {   \
-  assert(is_##OP(node));                               \
-  set_irn_n(node, node->op->op_index, left);           \
-}                                                      \
-ir_node *get_##OP##_right(const ir_node *node) {       \
-  assert(is_##OP(node));                               \
-  return get_irn_n(node, node->op->op_index + 1);      \
-}                                                      \
-void set_##OP##_right(ir_node *node, ir_node *right) { \
-  assert(is_##OP(node));                               \
-  set_irn_n(node, node->op->op_index + 1, right);      \
-}
-
-#define UNOP(OP)                                  \
-ir_node *get_##OP##_op(const ir_node *node) {     \
-  assert(is_##OP(node));                          \
-  return get_irn_n(node, node->op->op_index);     \
-}                                                 \
-void set_##OP##_op(ir_node *node, ir_node *op) {  \
-  assert(is_##OP(node));                          \
-  set_irn_n(node, node->op->op_index, op);        \
-}
-
-#define BINOP_MEM(OP)                         \
-BINOP(OP)                                     \
-                                              \
-ir_node *                                     \
-get_##OP##_mem(const ir_node *node) {         \
-  assert(is_##OP(node));                      \
-  return get_irn_n(node, 0);                  \
-}                                             \
-                                              \
-void                                          \
-set_##OP##_mem(ir_node *node, ir_node *mem) { \
-  assert(is_##OP(node));                      \
-  set_irn_n(node, 0, mem);                    \
-}
-
-#define DIVOP(OP)                                       \
-BINOP_MEM(OP)                                           \
-                                                        \
-ir_mode *get_##OP##_resmode(const ir_node *node) {      \
-  assert(is_##OP(node));                                \
-  return node->attr.divmod.resmode;                     \
-}                                                       \
-                                                        \
-void set_##OP##_resmode(ir_node *node, ir_mode *mode) { \
-  assert(is_##OP(node));                                \
-  node->attr.divmod.resmode = mode;                     \
-}
-
-
-BINOP(Add)
-BINOP(Borrow)
-BINOP(Carry)
-BINOP(Sub)
-UNOP(Minus)
-BINOP(Mul)
-BINOP(Mulh)
-DIVOP(Quot)
-DIVOP(DivMod)
-DIVOP(Div)
-DIVOP(Mod)
-UNOP(Abs)
-BINOP(And)
-BINOP(Or)
-BINOP(Eor)
-UNOP(Not)
-BINOP(Shl)
-BINOP(Shr)
-BINOP(Shrs)
-BINOP(Rotl)
-BINOP(Cmp)
-UNOP(Conv)
-UNOP(Cast)
-
-int get_Div_no_remainder(const ir_node *node)
-{
-       assert(is_Div(node));
-       return node->attr.divmod.no_remainder;
-}
-
-void set_Div_no_remainder(ir_node *node, int no_remainder)
-{
-       assert(is_Div(node));
-       node->attr.divmod.no_remainder = no_remainder;
-}
-
-int get_Conv_strict(const ir_node *node)
-{
-       assert(is_Conv(node));
-       return node->attr.conv.strict;
-}
-
-void set_Conv_strict(ir_node *node, int strict_flag)
-{
-       assert(is_Conv(node));
-       node->attr.conv.strict = (char)strict_flag;
-}
-
-ir_type *get_Cast_type(ir_node *node)
-{
-       assert(is_Cast(node));
-       return node->attr.cast.type;
-}
-
-void set_Cast_type(ir_node *node, ir_type *to_tp)
-{
-       assert(is_Cast(node));
-       node->attr.cast.type = to_tp;
-}
-
-
 /* Checks for upcast.
  *
  * Returns true if the Cast node casts a class type to a super type.
@@ -1871,7 +1260,7 @@ int is_Phi0(const ir_node *n)
 
 ir_node **get_Phi_preds_arr(ir_node *node)
 {
-  assert(node->op == op_Phi);
+  assert(is_Phi(node));
   return (ir_node **)&(get_irn_in(node)[1]);
 }
 
@@ -1881,13 +1270,6 @@ int get_Phi_n_preds(const ir_node *node)
        return (get_irn_arity(node));
 }
 
-/*
-void set_Phi_n_preds(ir_node *node, int n_preds)
-{
-       assert(node->op == op_Phi);
-}
-*/
-
 ir_node *get_Phi_pred(const ir_node *node, int pos)
 {
        assert(is_Phi(node) || is_Phi0(node));
@@ -1940,42 +1322,6 @@ void set_memop_ptr(ir_node *node, ir_node *ptr)
        set_irn_n(node, 1, ptr);
 }
 
-ir_node *get_Load_mem(const ir_node *node)
-{
-       assert(is_Load(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Load_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Load(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Load_ptr(const ir_node *node)
-{
-       assert(is_Load(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Load_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_Load(node));
-       set_irn_n(node, 1, ptr);
-}
-
-ir_mode *get_Load_mode(const ir_node *node)
-{
-       assert(is_Load(node));
-       return node->attr.load.mode;
-}
-
-void set_Load_mode(ir_node *node, ir_mode *mode)
-{
-       assert(is_Load(node));
-       node->attr.load.mode = mode;
-}
-
 ir_volatility get_Load_volatility(const ir_node *node)
 {
        assert(is_Load(node));
@@ -2001,42 +1347,6 @@ void set_Load_align(ir_node *node, ir_align align)
 }
 
 
-ir_node *get_Store_mem(const ir_node *node)
-{
-       assert(is_Store(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Store_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Store(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Store_ptr(const ir_node *node)
-{
-       assert(is_Store(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Store_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_Store(node));
-       set_irn_n(node, 1, ptr);
-}
-
-ir_node *get_Store_value(const ir_node *node)
-{
-       assert(is_Store(node));
-       return get_irn_n(node, 2);
-}
-
-void set_Store_value(ir_node *node, ir_node *value)
-{
-       assert(is_Store(node));
-       set_irn_n(node, 2, value);
-}
-
 ir_volatility get_Store_volatility(const ir_node *node)
 {
        assert(is_Store(node));
@@ -2062,115 +1372,6 @@ void set_Store_align(ir_node *node, ir_align align)
 }
 
 
-ir_node *get_Alloc_mem(const ir_node *node)
-{
-       assert(is_Alloc(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Alloc_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Alloc(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Alloc_size(const ir_node *node)
-{
-       assert(is_Alloc(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Alloc_size(ir_node *node, ir_node *size)
-{
-       assert(is_Alloc(node));
-       set_irn_n(node, 1, size);
-}
-
-ir_type *get_Alloc_type(ir_node *node)
-{
-       assert(is_Alloc(node));
-       return node->attr.alloc.type;
-}
-
-void set_Alloc_type(ir_node *node, ir_type *tp)
-{
-       assert(is_Alloc(node));
-       node->attr.alloc.type = tp;
-}
-
-ir_where_alloc get_Alloc_where(const ir_node *node)
-{
-       assert(is_Alloc(node));
-       return node->attr.alloc.where;
-}
-
-void set_Alloc_where(ir_node *node, ir_where_alloc where)
-{
-       assert(is_Alloc(node));
-       node->attr.alloc.where = where;
-}
-
-
-ir_node *get_Free_mem(const ir_node *node)
-{
-       assert(is_Free(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Free_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Free(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Free_ptr(const ir_node *node)
-{
-       assert(is_Free(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Free_ptr(ir_node *node, ir_node *ptr)
-{
-       assert(is_Free(node));
-       set_irn_n(node, 1, ptr);
-}
-
-ir_node *get_Free_size(const ir_node *node)
-{
-       assert(is_Free(node));
-       return get_irn_n(node, 2);
-}
-
-void set_Free_size(ir_node *node, ir_node *size)
-{
-       assert(is_Free(node));
-       set_irn_n(node, 2, size);
-}
-
-ir_type *get_Free_type(ir_node *node)
-{
-       assert(is_Free(node));
-       return node->attr.free.type;
-}
-
-void set_Free_type(ir_node *node, ir_type *tp)
-{
-       assert(is_Free(node));
-       node->attr.free.type = tp;
-}
-
-ir_where_alloc get_Free_where(const ir_node *node)
-{
-       assert(is_Free(node));
-       return node->attr.free.where;
-}
-
-void set_Free_where(ir_node *node, ir_where_alloc where)
-{
-       assert(is_Free(node));
-       node->attr.free.where = where;
-}
-
 ir_node **get_Sync_preds_arr(ir_node *node)
 {
        assert(is_Sync(node));
@@ -2210,7 +1411,7 @@ void add_Sync_pred(ir_node *node, ir_node *pred)
 }
 
 /* Returns the source language type of a Proj node. */
-ir_type *get_Proj_type(ir_node *n)
+ir_type *get_Proj_type(const ir_node *n)
 {
        ir_type *tp   = firm_unknown_type;
        ir_node *pred = get_Proj_pred(n);
@@ -2243,55 +1444,18 @@ ir_type *get_Proj_type(ir_node *n)
        return tp;
 }
 
-ir_node *get_Proj_pred(const ir_node *node)
-{
-       assert(is_Proj(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Proj_pred(ir_node *node, ir_node *pred)
-{
-       assert(is_Proj(node));
-       set_irn_n(node, 0, pred);
-}
-
 long get_Proj_proj(const ir_node *node)
 {
-#ifdef INTERPROCEDURAL_VIEW
-       ir_opcode code = get_irn_opcode(node);
-
-       if (code == iro_Proj) {
-               return node->attr.proj;
-       }
-       else {
-               assert(code == iro_Filter);
-               return node->attr.filter.proj;
-       }
-#else
        assert(is_Proj(node));
        return node->attr.proj;
-#endif /* INTERPROCEDURAL_VIEW */
 }
 
 void set_Proj_proj(ir_node *node, long proj)
 {
-#ifdef INTERPROCEDURAL_VIEW
-       ir_opcode code = get_irn_opcode(node);
-
-       if (code == iro_Proj) {
-               node->attr.proj = proj;
-       }
-       else {
-               assert(code == iro_Filter);
-               node->attr.filter.proj = proj;
-       }
-#else
        assert(is_Proj(node));
        node->attr.proj = proj;
-#endif /* INTERPROCEDURAL_VIEW */
 }
 
-/* Returns non-zero if a node is a routine parameter. */
 int (is_arg_Proj)(const ir_node *node)
 {
        return _is_arg_Proj(node);
@@ -2309,13 +1473,6 @@ int get_Tuple_n_preds(const ir_node *node)
        return get_irn_arity(node);
 }
 
-/*
-void set_Tuple_n_preds(ir_node *node, int n_preds)
-{
-       assert(is_Tuple(node));
-}
-*/
-
 ir_node *get_Tuple_pred(const ir_node *node, int pos)
 {
   assert(is_Tuple(node));
@@ -2328,392 +1485,28 @@ void set_Tuple_pred(ir_node *node, int pos, ir_node *pred)
        set_irn_n(node, pos, pred);
 }
 
-ir_node *get_Id_pred(const ir_node *node)
-{
-       assert(is_Id(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Id_pred(ir_node *node, ir_node *pred)
-{
-       assert(is_Id(node));
-       set_irn_n(node, 0, pred);
-}
-
-ir_node *get_Confirm_value(const ir_node *node)
-{
-       assert(is_Confirm(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Confirm_value(ir_node *node, ir_node *value)
-{
-       assert(is_Confirm(node));
-       set_irn_n(node, 0, value);
-}
-
-ir_node *get_Confirm_bound(const ir_node *node)
-{
-       assert(is_Confirm(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Confirm_bound(ir_node *node, ir_node *bound)
-{
-       assert(is_Confirm(node));
-       set_irn_n(node, 0, bound);
-}
-
-pn_Cmp get_Confirm_cmp(const ir_node *node)
-{
-       assert(is_Confirm(node));
-       return node->attr.confirm.cmp;
-}
-
-void set_Confirm_cmp(ir_node *node, pn_Cmp cmp)
-{
-       assert(is_Confirm(node));
-       node->attr.confirm.cmp = cmp;
-}
-
-ir_node *get_Filter_pred(ir_node *node)
-{
-       assert(is_Filter(node));
-       return node->in[1];
-}
-
-void set_Filter_pred(ir_node *node, ir_node *pred)
-{
-       assert(is_Filter(node));
-       node->in[1] = pred;
-}
-
-long get_Filter_proj(ir_node *node)
-{
-       assert(is_Filter(node));
-       return node->attr.filter.proj;
-}
-
-void set_Filter_proj(ir_node *node, long proj)
-{
-       assert(is_Filter(node));
-       node->attr.filter.proj = proj;
-}
-
-/* Don't use get_irn_arity, get_irn_n in implementation as access
-   shall work independent of view!!! */
-void set_Filter_cg_pred_arr(ir_node *node, int arity, ir_node ** in)
-{
-       assert(is_Filter(node));
-       if (node->attr.filter.in_cg == NULL || arity != ARR_LEN(node->attr.filter.in_cg) - 1) {
-               ir_graph *irg = get_irn_irg(node);
-               node->attr.filter.in_cg = NEW_ARR_D(ir_node *, current_ir_graph->obst, arity + 1);
-               node->attr.filter.backedge = new_backedge_arr(irg->obst, arity);
-               node->attr.filter.in_cg[0] = node->in[0];
-       }
-       memcpy(node->attr.filter.in_cg + 1, in, sizeof(ir_node *) * arity);
-}
-
-void set_Filter_cg_pred(ir_node * node, int pos, ir_node * pred)
-{
-       assert(is_Filter(node) && node->attr.filter.in_cg &&
-              0 <= pos && pos < ARR_LEN(node->attr.filter.in_cg) - 1);
-       node->attr.filter.in_cg[pos + 1] = pred;
-}
-
-int get_Filter_n_cg_preds(ir_node *node)
-{
-       assert(is_Filter(node) && node->attr.filter.in_cg);
-       return (ARR_LEN(node->attr.filter.in_cg) - 1);
-}
-
-ir_node *get_Filter_cg_pred(ir_node *node, int pos)
-{
-       int arity;
-       assert(is_Filter(node) && node->attr.filter.in_cg &&
-              0 <= pos);
-       arity = ARR_LEN(node->attr.filter.in_cg);
-       assert(pos < arity - 1);
-       return node->attr.filter.in_cg[pos + 1];
-}
-
-/* Mux support */
-ir_node *get_Mux_sel(const ir_node *node)
-{
-       assert(is_Mux(node));
-       return node->in[1];
-}
-
-void set_Mux_sel(ir_node *node, ir_node *sel)
-{
-       assert(is_Mux(node));
-       node->in[1] = sel;
-}
-
-ir_node *get_Mux_false(const ir_node *node)
-{
-       assert(is_Mux(node));
-       return node->in[2];
-}
-
-void set_Mux_false(ir_node *node, ir_node *ir_false)
-{
-       assert(is_Mux(node));
-       node->in[2] = ir_false;
-}
-
-ir_node *get_Mux_true(const ir_node *node)
-{
-       assert(is_Mux(node));
-       return node->in[3];
-}
-
-void set_Mux_true(ir_node *node, ir_node *ir_true)
-{
-       assert(is_Mux(node));
-       node->in[3] = ir_true;
-}
-
-/* CopyB support */
-ir_node *get_CopyB_mem(const ir_node *node)
-{
-       assert(is_CopyB(node));
-       return get_irn_n(node, 0);
-}
-
-void set_CopyB_mem(ir_node *node, ir_node *mem)
-{
-       assert(node->op == op_CopyB);
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_CopyB_dst(const ir_node *node)
-{
-       assert(is_CopyB(node));
-       return get_irn_n(node, 1);
-}
-
-void set_CopyB_dst(ir_node *node, ir_node *dst)
-{
-       assert(is_CopyB(node));
-       set_irn_n(node, 1, dst);
-}
-
-ir_node *get_CopyB_src(const ir_node *node)
-{
-  assert(is_CopyB(node));
-  return get_irn_n(node, 2);
-}
-
-void set_CopyB_src(ir_node *node, ir_node *src)
-{
-       assert(is_CopyB(node));
-       set_irn_n(node, 2, src);
-}
-
-ir_type *get_CopyB_type(ir_node *node)
-{
-       assert(is_CopyB(node));
-       return node->attr.copyb.type;
-}
-
-void set_CopyB_type(ir_node *node, ir_type *data_type)
-{
-       assert(is_CopyB(node) && data_type);
-       node->attr.copyb.type = data_type;
-}
-
-
-ir_type *get_InstOf_type(ir_node *node)
-{
-       assert(node->op == op_InstOf);
-       return node->attr.instof.type;
-}
-
-void set_InstOf_type(ir_node *node, ir_type *type)
-{
-       assert(node->op == op_InstOf);
-       node->attr.instof.type = type;
-}
-
-ir_node *get_InstOf_store(const ir_node *node)
-{
-       assert(node->op == op_InstOf);
-       return get_irn_n(node, 0);
-}
-
-void set_InstOf_store(ir_node *node, ir_node *obj)
-{
-       assert(node->op == op_InstOf);
-       set_irn_n(node, 0, obj);
-}
-
-ir_node *get_InstOf_obj(const ir_node *node)
-{
-       assert(node->op == op_InstOf);
-       return get_irn_n(node, 1);
-}
-
-void set_InstOf_obj(ir_node *node, ir_node *obj)
-{
-       assert(node->op == op_InstOf);
-       set_irn_n(node, 1, obj);
-}
-
-/* Returns the memory input of a Raise operation. */
-ir_node *get_Raise_mem(const ir_node *node)
-{
-       assert(is_Raise(node));
-       return get_irn_n(node, 0);
-}
-
-void set_Raise_mem(ir_node *node, ir_node *mem)
-{
-       assert(is_Raise(node));
-       set_irn_n(node, 0, mem);
-}
-
-ir_node *get_Raise_exo_ptr(const ir_node *node)
-{
-       assert(is_Raise(node));
-       return get_irn_n(node, 1);
-}
-
-void set_Raise_exo_ptr(ir_node *node, ir_node *exo_ptr)
-{
-       assert(is_Raise(node));
-       set_irn_n(node, 1, exo_ptr);
-}
-
-/* Bound support */
-
-/* Returns the memory input of a Bound operation. */
-ir_node *get_Bound_mem(const ir_node *bound)
-{
-       assert(is_Bound(bound));
-       return get_irn_n(bound, 0);
-}
-
-void set_Bound_mem(ir_node *bound, ir_node *mem)
-{
-       assert(is_Bound(bound));
-       set_irn_n(bound, 0, mem);
-}
-
-/* Returns the index input of a Bound operation. */
-ir_node *get_Bound_index(const ir_node *bound)
-{
-       assert(is_Bound(bound));
-       return get_irn_n(bound, 1);
-}
-
-void set_Bound_index(ir_node *bound, ir_node *idx)
-{
-       assert(is_Bound(bound));
-       set_irn_n(bound, 1, idx);
-}
-
-/* Returns the lower bound input of a Bound operation. */
-ir_node *get_Bound_lower(const ir_node *bound)
-{
-       assert(is_Bound(bound));
-       return get_irn_n(bound, 2);
-}
-
-void set_Bound_lower(ir_node *bound, ir_node *lower)
-{
-       assert(is_Bound(bound));
-       set_irn_n(bound, 2, lower);
-}
-
-/* Returns the upper bound input of a Bound operation. */
-ir_node *get_Bound_upper(const ir_node *bound)
-{
-       assert(is_Bound(bound));
-       return get_irn_n(bound, 3);
-}
-
-void set_Bound_upper(ir_node *bound, ir_node *upper)
-{
-       assert(is_Bound(bound));
-       set_irn_n(bound, 3, upper);
-}
-
-/* Return the operand of a Pin node. */
-ir_node *get_Pin_op(const ir_node *pin)
-{
-       assert(is_Pin(pin));
-       return get_irn_n(pin, 0);
-}
-
-void set_Pin_op(ir_node *pin, ir_node *node)
-{
-       assert(is_Pin(pin));
-       set_irn_n(pin, 0, node);
-}
-
-/* Return the assembler text of an ASM pseudo node. */
-ident *get_ASM_text(const ir_node *node)
-{
-       assert(is_ASM(node));
-       return node->attr.assem.asm_text;
-}
-
-/* Return the number of input constraints for an ASM node. */
 int get_ASM_n_input_constraints(const ir_node *node)
 {
        assert(is_ASM(node));
-       return ARR_LEN(node->attr.assem.inputs);
-}
-
-/* Return the input constraints for an ASM node. This is a flexible array. */
-const ir_asm_constraint *get_ASM_input_constraints(const ir_node *node)
-{
-       assert(is_ASM(node));
-       return node->attr.assem.inputs;
+       return ARR_LEN(node->attr.assem.input_constraints);
 }
 
-/* Return the number of output constraints for an ASM node.  */
 int get_ASM_n_output_constraints(const ir_node *node)
 {
        assert(is_ASM(node));
-       return ARR_LEN(node->attr.assem.outputs);
+       return ARR_LEN(node->attr.assem.output_constraints);
 }
 
-/* Return the output constraints for an ASM node. */
-const ir_asm_constraint *get_ASM_output_constraints(const ir_node *node)
-{
-       assert(is_ASM(node));
-       return node->attr.assem.outputs;
-}
-
-/* Return the number of clobbered registers for an ASM node.  */
 int get_ASM_n_clobbers(const ir_node *node)
 {
        assert(is_ASM(node));
-       return ARR_LEN(node->attr.assem.clobber);
-}
-
-/* Return the list of clobbered registers for an ASM node. */
-ident **get_ASM_clobbers(const ir_node *node)
-{
-       assert(is_ASM(node));
-       return node->attr.assem.clobber;
+       return ARR_LEN(node->attr.assem.clobbers);
 }
 
 /* returns the graph of a node */
-ir_graph *get_irn_irg(const ir_node *node)
+ir_graph *(get_irn_irg)(const ir_node *node)
 {
-       /*
-        * Do not use get_nodes_Block() here, because this
-        * will check the pinned state.
-        * However even a 'wrong' block is always in the proper
-        * irg.
-        */
-       if (! is_Block(node))
-               node = get_irn_n(node, -1);
-       /* note that get_Block_irg() can handle Bad nodes */
-       return get_Block_irg(node);
+       return _get_irn_irg(node);
 }
 
 
@@ -2749,25 +1542,19 @@ skip_Proj_const(const ir_node *node)
 ir_node *skip_Tuple(ir_node *node)
 {
   ir_node *pred;
-  ir_op   *op;
 
 restart:
        if (is_Proj(node)) {
            pred = get_Proj_pred(node);
-           op   = get_irn_op(pred);
 
-               /*
-                * Looks strange but calls get_irn_op() only once
-                * in most often cases.
-                */
-               if (op == op_Proj) { /* nested Tuple ? */
+               if (is_Proj(pred)) { /* nested Tuple ? */
                    pred = skip_Tuple(pred);
 
                        if (is_Tuple(pred)) {
                                node = get_Tuple_pred(pred, get_Proj_proj(node));
                                goto restart;
                        }
-               } else if (op == op_Tuple) {
+               } else if (is_Tuple(pred)) {
                        node = get_Tuple_pred(pred, get_Proj_proj(node));
                        goto restart;
                }
@@ -2823,8 +1610,6 @@ ir_node *skip_HighLevel_ops(ir_node *node)
  *
  * Note: This function takes 10% of mostly ANY the compiler run, so it's
  * a little bit "hand optimized".
- *
- * Moreover, it CANNOT be switched off using get_opt_normalize() ...
  */
 ir_node *skip_Id(ir_node *node)
 {
@@ -2849,7 +1634,7 @@ ir_node *skip_Id(ir_node *node)
 
                node->in[0+1] = node;   /* turn us into a self referencing Id:  shorten Id cycles. */
                res = skip_Id(rem_pred);
-               if (res->op == op_Id) /* self-loop */ return node;
+               if (is_Id(res)) /* self-loop */ return node;
 
                node->in[0+1] = res;    /* Turn Id chain into Ids all referencing the chain end. */
                return res;
@@ -2858,27 +1643,11 @@ ir_node *skip_Id(ir_node *node)
        }
 }
 
-void skip_Id_and_store(ir_node **node)
-{
-       ir_node *n = *node;
-
-       if (!n || (n->op != op_Id)) return;
-
-       /* Don't use get_Id_pred():  We get into an endless loop for
-          self-referencing Ids. */
-       *node = skip_Id(n);
-}
-
 int (is_strictConv)(const ir_node *node)
 {
        return _is_strictConv(node);
 }
 
-int (is_no_Block)(const ir_node *node)
-{
-       return _is_no_Block(node);
-}
-
 /* Returns true if node is a SymConst node with kind symconst_addr_ent. */
 int (is_SymConst_addr_ent)(const ir_node *node)
 {
@@ -2891,13 +1660,6 @@ int is_cfop(const ir_node *node)
        return is_op_cfopcode(get_irn_op(node));
 }
 
-/* Returns true if the operation manipulates interprocedural control flow:
-   CallBegin, EndReg, EndExcept */
-int is_ip_cfop(const ir_node *node)
-{
-       return is_ip_cfopcode(get_irn_op(node));
-}
-
 /* Returns true if the operation can change the control flow because
    of an exception. */
 int is_fragile_op(const ir_node *node)
@@ -2925,9 +1687,8 @@ ir_node *get_fragile_op_mem(ir_node *node)
        case iro_Bad   :
        case iro_Unknown:
                return node;
-       default: ;
-               assert(0 && "should not be reached");
-               return NULL;
+       default:
+               panic("should not be reached");
        }
 }
 
@@ -2939,9 +1700,8 @@ ir_mode *get_divop_resmod(const ir_node *node)
        case iro_DivMod: return get_DivMod_resmode(node);
        case iro_Div   : return get_Div_resmode(node);
        case iro_Mod   : return get_Mod_resmode(node);
-       default: ;
-               assert(0 && "should not be reached");
-               return NULL;
+       default:
+               panic("should not be reached");
        }
 }
 
@@ -2951,9 +1711,9 @@ int (is_irn_forking)(const ir_node *node)
        return _is_irn_forking(node);
 }
 
-void (copy_node_attr)(const ir_node *old_node, ir_node *new_node)
+void (copy_node_attr)(ir_graph *irg, const ir_node *old_node, ir_node *new_node)
 {
-       _copy_node_attr(old_node, new_node);
+       _copy_node_attr(irg, old_node, new_node);
 }
 
 /* Return the type associated with the value produced by n
@@ -3027,7 +1787,7 @@ int (is_irn_cse_neutral)(const ir_node *node)
 /* Gets the string representation of the jump prediction .*/
 const char *get_cond_jmp_predicate_name(cond_jmp_predicate pred)
 {
-#define X(a)    case a: return #a;
+#define X(a)    case a: return #a
        switch (pred) {
                X(COND_JMP_PRED_NONE);
                X(COND_JMP_PRED_TRUE);
@@ -3037,20 +1797,8 @@ const char *get_cond_jmp_predicate_name(cond_jmp_predicate pred)
 #undef X
 }
 
-/* Returns the conditional jump prediction of a Cond node. */
-cond_jmp_predicate (get_Cond_jmp_pred)(const ir_node *cond)
-{
-       return _get_Cond_jmp_pred(cond);
-}
-
-/* Sets a new conditional jump prediction. */
-void (set_Cond_jmp_pred)(ir_node *cond, cond_jmp_predicate pred)
-{
-       _set_Cond_jmp_pred(cond, pred);
-}
-
 /** the get_type operation must be always implemented and return a firm type */
-static ir_type *get_Default_type(ir_node *n)
+static ir_type *get_Default_type(const ir_node *n)
 {
        (void) n;
        return get_unknown_type();
@@ -3074,7 +1822,7 @@ ir_op_ops *firm_set_default_get_type(ir_opcode code, ir_op_ops *ops)
 }
 
 /** Return the attribute type of a SymConst node if exists */
-static ir_type *get_SymConst_attr_type(ir_node *self)
+static ir_type *get_SymConst_attr_type(const ir_node *self)
 {
        symconst_kind kind = get_SymConst_kind(self);
        if (SYMCONST_HAS_TYPE(kind))
@@ -3083,7 +1831,7 @@ static ir_type *get_SymConst_attr_type(ir_node *self)
 }
 
 /** Return the attribute entity of a SymConst node if exists */
-static ir_entity *get_SymConst_attr_entity(ir_node *self)
+static ir_entity *get_SymConst_attr_entity(const ir_node *self)
 {
        symconst_kind kind = get_SymConst_kind(self);
        if (SYMCONST_HAS_ENT(kind))
@@ -3092,7 +1840,7 @@ static ir_entity *get_SymConst_attr_entity(ir_node *self)
 }
 
 /** the get_type_attr operation must be always implemented */
-static ir_type *get_Null_type(ir_node *n)
+static ir_type *get_Null_type(const ir_node *n)
 {
        (void) n;
        return firm_unknown_type;
@@ -3117,7 +1865,7 @@ ir_op_ops *firm_set_default_get_type_attr(ir_opcode code, ir_op_ops *ops)
 }
 
 /** the get_entity_attr operation must be always implemented */
-static ir_entity *get_Null_ent(ir_node *n)
+static ir_entity *get_Null_ent(const ir_node *n)
 {
        (void) n;
        return NULL;
@@ -3128,7 +1876,7 @@ ir_op_ops *firm_set_default_get_entity_attr(ir_opcode code, ir_op_ops *ops)
 {
        switch (code) {
        case iro_SymConst: ops->get_entity_attr = get_SymConst_attr_entity; break;
-       case iro_Sel:      ops->get_entity_attr = _get_Sel_entity; break;
+       case iro_Sel:      ops->get_entity_attr = get_Sel_entity; break;
        default:
                /* not allowed to be NULL */
                if (! ops->get_entity_attr)
@@ -3175,11 +1923,11 @@ unsigned firm_default_hash(const ir_node *node)
        int i, irn_arity;
 
        /* hash table value = 9*(9*(9*(9*(9*arity+in[0])+in[1])+ ...)+mode)+code */
-       h = irn_arity = get_irn_intra_arity(node);
+       h = irn_arity = get_irn_arity(node);
 
        /* consider all in nodes... except the block if not a control flow. */
        for (i = is_cfop(node) ? -1 : 0;  i < irn_arity;  ++i) {
-               ir_node *pred = get_irn_intra_n(node, i);
+               ir_node *pred = get_irn_n(node, i);
                if (is_irn_cse_neutral(pred))
                        h *= 9;
                else