fixed precedence constraint
[libfirm] / ir / be / beutil.h
index cc6e60b..402ad9e 100644 (file)
@@ -10,6 +10,9 @@
 #include "irnode.h"
 #include "bearch.h"
 
+/* iterate over a list of ir_nodes linked by link field */
+#define foreach_linked_irns(head, iter) for ((iter) = (head); (iter); (iter) = get_irn_link((iter)))
+
 /**
  * Get an empty set.
  * This function always returns the same set.
@@ -64,14 +67,6 @@ static INLINE int is_data_node(const ir_node *irn)
        return 0;
 }
 
-/**
- * Make each constant local to its use.
- * This duplicates all constants in order to simulate a realistic
- * register pressure.
- * @param irg The graph.
- */
-void localize_consts(ir_graph *irg);
-
 /**
  * Dump a vcg graph containing the controlflow graph, the schedule and
  * allocated registers.
@@ -124,6 +119,12 @@ void be_dump(ir_graph *irg, const char *suffix, void (*dumper)(ir_graph *, const
  */
 unsigned get_num_reachable_nodes(ir_graph *irg);
 
+/**
+ * Sets all node inputs to BAD node.
+ * @param irn  The node to be killed.
+ */
+void be_kill_node(ir_node *irn);
+
 /**
  * Search for an irn in @p accept.
  * The search is started at @p start_point_exclusive and continues upwards the dom-tree
@@ -131,4 +132,9 @@ unsigned get_num_reachable_nodes(ir_graph *irg);
  */
 ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive);
 
+/**
+ * Gets the Proj with number pn from irn.
+ */
+ir_node *be_get_Proj_for_pn(const ir_node *irn, long pn);
+
 #endif /* _BEUTIL_H */