- removed strange add_irn_dep(get_irg_end(cg->irg), res)
[libfirm] / ir / be / ia32 / ia32_new_nodes.h
index 3ad9bc3..857d359 100644 (file)
@@ -97,6 +97,12 @@ const ia32_call_attr_t *get_ia32_call_attr_const(const ir_node *node);
 ia32_copyb_attr_t *get_ia32_copyb_attr(ir_node *node);
 const ia32_copyb_attr_t *get_ia32_copyb_attr_const(const ir_node *node);
 
+/**
+ * Gets the ClimbFrame node attributes.
+ */
+ia32_climbframe_attr_t *get_ia32_climbframe_attr(ir_node *node);
+const ia32_climbframe_attr_t *get_ia32_climbframe_attr_const(const ir_node *node);
+
 /**
  * Gets the type of an ia32 node.
  */
@@ -157,12 +163,12 @@ int is_ia32_am_sc_sign(const ir_node *node);
 /**
  * Gets the addr mode const.
  */
-int get_ia32_am_scale(const ir_node *node);
+unsigned get_ia32_am_scale(const ir_node *node);
 
 /**
  * Sets the const for addr mode.
  */
-void set_ia32_am_scale(ir_node *node, int scale);
+void set_ia32_am_scale(ir_node *node, unsigned scale);
 
 /**
  * Sets the uses_frame flag.
@@ -283,33 +289,6 @@ void set_ia32_req_out(ir_node *node, const arch_register_req_t *req, int pos);
  */
 void set_ia32_req_in(ir_node *node, const arch_register_req_t *req, int pos);
 
-/**
- * Returns the register flag of an ia32 node.
- */
-arch_irn_flags_t get_ia32_flags(const ir_node *node);
-
-/**
- * Sets the register flag of an ia32 node.
- */
-void set_ia32_flags(ir_node *node, arch_irn_flags_t flags);
-
-void add_ia32_flags(ir_node *node, arch_irn_flags_t flags);
-
-/**
- * Returns the result register slots of an ia32 node.
- */
-const arch_register_t **get_ia32_slots(const ir_node *node);
-
-/**
- * Returns the OUT register at position pos.
- */
-const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos);
-
-/**
- * Returns the number of results.
- */
-int get_ia32_n_res(const ir_node *node);
-
 /**
  * Returns the condition code of a node.
  */
@@ -376,7 +355,7 @@ const char *get_ia32_orig_node(const ir_node *node);
 /**
  * Sets the name of the original ir node.
  */
-void set_ia32_orig_node(ir_node *node, const char *name);
+void set_ia32_orig_node(ir_node *node, const ir_node *old);
 
 #endif /* NDEBUG */
 
@@ -415,16 +394,6 @@ int is_ia32_AddrModeS(const ir_node *node);
  */
 int is_ia32_AddrModeD(const ir_node *node);
 
-/**
- * Checks if node is a Load or fLoad.
- */
-int is_ia32_Ld(const ir_node *node);
-
-/**
- * Checks if node is a Store or fStore.
- */
-int is_ia32_St(const ir_node *node);
-
 /**
  * Swaps left/right input of a node (and adjusts pnc if needed)
  */
@@ -446,6 +415,7 @@ void init_ia32_immediate_attributes(ir_node *node, ir_entity *symconst,
 void init_ia32_call_attributes(ir_node *res, unsigned pop, ir_type *call_tp);
 void init_ia32_copyb_attributes(ir_node *res, unsigned size);
 void init_ia32_condcode_attributes(ir_node *res, long pnc);
+void init_ia32_climbframe_attributes(ir_node *res, unsigned count);
 
 /* Include the generated headers */
 #include "gen_ia32_new_nodes.h"