make opcode list global
[libfirm] / ir / be / amd64 / amd64_new_nodes.h
index 901e09e..ffc9f9e 100644 (file)
@@ -20,7 +20,6 @@
 /**
  * @file
  * @brief   Function prototypes for the assembler ir node constructors.
- * @version $Id: amd64_new_nodes.h 26549 2009-09-18 17:48:23Z matze $
  */
 #ifndef FIRM_BE_TEMPALTE_amd64_NEW_NODES_H
 #define FIRM_BE_amd64_amd64_NEW_NODES_H
  ***************************************************************************************************/
 
 /**
- * Returns the attributes of an amd64 node.
- */
-amd64_attr_t *get_amd64_attr(ir_node *node);
-
-const amd64_attr_t *get_amd64_attr_const(const ir_node *node);
-
-/**
- * Returns the argument register requirements of an amd64 node.
+ * Sets the input mode of the node.
  */
-const arch_register_req_t **get_amd64_in_req_all(const ir_node *node);
+void set_amd64_ls_mode(ir_node *n, ir_mode *mode);
 
 /**
- * Returns the argument register requirements of an amd64 node.
+ * Returns the attributes of an amd64 node.
  */
-const arch_register_req_t *get_amd64_in_req(const ir_node *node, int pos);
+amd64_attr_t *get_amd64_attr(ir_node *node);
+const amd64_attr_t *get_amd64_attr_const(const ir_node *node);
 
-/**
- * Sets the IN register requirements at position pos.
- */
-void set_amd64_req_in(ir_node *node, const arch_register_req_t *req, int pos);
+const amd64_SymConst_attr_t *get_amd64_SymConst_attr_const(const ir_node *node);
+amd64_SymConst_attr_t *get_amd64_SymConst_attr(ir_node *node);
 
 /* Include the generated headers */
 #include "gen_amd64_new_nodes.h"