backend_marked was a buggy/wrong concept, removed it
[libfirm] / ir / be / TEMPLATE / TEMPLATE_new_nodes.h
index e35d5b7..a714812 100644 (file)
@@ -50,69 +50,16 @@ const TEMPLATE_attr_t *get_TEMPLATE_attr_const(const ir_node *node);
  */
 const arch_register_req_t **get_TEMPLATE_in_req_all(const ir_node *node);
 
-/**
- * Returns the result register requirements of an TEMPLATE node.
- */
-const arch_register_req_t **get_TEMPLATE_out_req_all(const ir_node *node);
-
 /**
  * Returns the argument register requirements of an TEMPLATE node.
  */
 const arch_register_req_t *get_TEMPLATE_in_req(const ir_node *node, int pos);
 
-/**
- * Returns the result register requirements of an TEMPLATE node.
- */
-const arch_register_req_t *get_TEMPLATE_out_req(const ir_node *node, int pos);
-
-/**
- * Sets the OUT register requirements at position pos.
- */
-void set_TEMPLATE_req_out(ir_node *node, const arch_register_req_t *req, int pos);
-
 /**
  * Sets the IN register requirements at position pos.
  */
 void set_TEMPLATE_req_in(ir_node *node, const arch_register_req_t *req, int pos);
 
-/**
- * Returns the register flag of an TEMPLATE node.
- */
-arch_irn_flags_t get_TEMPLATE_flags(const ir_node *node);
-
-/**
- * Sets the register flag of an TEMPLATE node.
- */
-void set_TEMPLATE_flags(ir_node *node, arch_irn_flags_t flags);
-
-/**
- * Returns the result register slots of an TEMPLATE node.
- */
-const arch_register_t **get_TEMPLATE_slots(ir_node *node);
-
-const arch_register_t * const *get_TEMPLATE_slots_const(const ir_node *node);
-
-/**
- * Returns the name of the OUT register at position pos.
- */
-const char *get_TEMPLATE_out_reg_name(const ir_node *node, int pos);
-
-/**
- * Returns the index of the OUT register at position pos within its register class.
- */
-int get_TEMPLATE_out_regnr(const ir_node *node, int pos);
-
-/**
- * Returns the OUT register at position pos.
- */
-const arch_register_t *get_TEMPLATE_out_reg(const ir_node *node, int pos);
-
-/**
- * Returns the number of results.
- */
-int get_TEMPLATE_n_res(const ir_node *node);
-
-
 /* Include the generated headers */
 #include "gen_TEMPLATE_new_nodes.h"