The big committ:
[libfirm] / ir / be / beutil.c
index 689f9f3..12b2fa1 100644 (file)
@@ -20,6 +20,7 @@
 #include "irgopt.h"
 #include "irtools.h"
 #include "irprintf.h"
+#include "iredges.h"
 
 #include "beutil.h"
 #include "besched_t.h"
@@ -149,7 +150,7 @@ void be_dump(ir_graph *irg, const char *suffix, void (*dumper)(ir_graph *, const
 
        if (irg != last_irg) {
                last_irg = irg;
-               nr       = 0;
+               nr       = strcmp(suffix, "-abi") ? 0 : 1;
        }
 
        snprintf(buf, sizeof(buf), "-%02d%s", nr++, suffix);
@@ -189,6 +190,26 @@ unsigned get_num_reachable_nodes(ir_graph *irg) {
        return num;
 }
 
+/**
+ * Sets all node inputs to BAD node.
+ */
+void be_kill_node(ir_node *irn) {
+       int      i, first;
+       ir_graph *irg;
+
+       assert(!is_Bad(irn));
+
+DEBUG_ONLY(
+       irg   = get_irn_irg(irn);
+       first = 0 - ! is_Block(irn);
+
+       for (i = get_irn_arity(irn) - 1; i >= first; --i) {
+               set_irn_n(irn, i, get_irg_bad(irg));
+       }
+)
+       edges_node_deleted(irn, irg);
+}
+
 /* FIXME: not used. can be deleted? */
 ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive) {
        ir_node *irn, *idom;
@@ -208,3 +229,21 @@ ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive) {
        else
                return NULL; /* this was the start block and we did not find an acceptable irn */
 }
+
+/**
+ * Gets the Proj with number pn from irn.
+ */
+ir_node *be_get_Proj_for_pn(const ir_node *irn, long pn) {
+       const ir_edge_t *edge;
+       ir_node         *proj;
+       assert(get_irn_mode(irn) == mode_T && "need mode_T");
+
+       foreach_out_edge(irn, edge) {
+               proj = get_edge_src_irn(edge);
+
+               if (get_Proj_proj(proj) == pn)
+                       return proj;
+       }
+
+       return NULL;
+}