use xmalloc instead of malloc
[libfirm] / ir / be / benode_t.h
index 365ab5b..a0c1997 100644 (file)
@@ -299,7 +299,8 @@ enum {
 };
 ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, int n, ir_node *in_keep[], ir_mode *mode);
 ir_node *be_new_CopyKeep_single(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, ir_node *keep, ir_mode *mode);
-
+ir_node *be_get_CopyKeep_op(const ir_node *cpy);
+void be_set_CopyKeep_op(ir_node *cpy, ir_node *op);
 
 /**
  * Get the backend opcode of a backend node.
@@ -340,6 +341,10 @@ entity *be_get_spill_entity(const ir_node *irn);
 
 ir_node *be_get_Spill_context(const ir_node *irn);
 
+
+ir_node* be_get_Reload_mem(const ir_node *irn);
+ir_node* be_get_Reload_frame(const ir_node* irn);
+
 /**
  * Set the entities of a Reload to the ones of the Spill it is pointing to.
  * @param irg The graph.