Remove the unused parameter const arch_env_t *env from arch_get_register_req().
[libfirm] / ir / be / ia32 / ia32_new_nodes.h
index 44758a2..56fc5ac 100644 (file)
@@ -86,6 +86,12 @@ const ia32_immediate_attr_t *get_ia32_immediate_attr_const(const ir_node *node);
 ia32_condcode_attr_t *get_ia32_condcode_attr(ir_node *node);
 const ia32_condcode_attr_t *get_ia32_condcode_attr_const(const ir_node *node);
 
+/**
+ * Gets the Call node attributes.
+ */
+ia32_call_attr_t *get_ia32_call_attr(ir_node *node);
+const ia32_call_attr_t *get_ia32_call_attr_const(const ir_node *node);
+
 /**
  * Gets the CopyB node attributes.
  */
@@ -103,17 +109,14 @@ ia32_op_type_t get_ia32_op_type(const ir_node *node);
 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp);
 
 /**
- * Gets the supported addrmode of an ia32 node
+ * Gets the supported address mode of an ia32 node
  */
 ia32_am_type_t get_ia32_am_support(const ir_node *node);
 
-ia32_am_arity_t get_ia32_am_arity(const ir_node *node);
-
 /**
  * Sets the supported addrmode of an ia32 node
  */
-void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp,
-                         ia32_am_arity_t am_arity);
+void set_ia32_am_support(ir_node *node, ia32_am_type_t am_arity);
 
 /**
  * Gets the addressmode offset as long.
@@ -212,6 +215,15 @@ void clear_ia32_need_stackent(ir_node *node);
  */
 int is_ia32_need_stackent(const ir_node *node);
 
+void set_ia32_is_reload(ir_node *node);
+int is_ia32_is_reload(const ir_node *node);
+
+void set_ia32_is_spill(ir_node *node);
+int is_ia32_is_spill(const ir_node *node);
+
+void set_ia32_is_remat(ir_node *node);
+int is_ia32_is_remat(const ir_node *node);
+
 /**
  * Gets the mode of the stored/loaded value (only set for Store/Load)
  */
@@ -448,6 +460,7 @@ void init_ia32_x87_attributes(ir_node *node);
 void init_ia32_asm_attributes(ir_node *node);
 void init_ia32_immediate_attributes(ir_node *node, ir_entity *symconst,
                                     int symconst_sign, long offset);
+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);