new header for internal usage
[libfirm] / ir / be / ia32 / ia32_new_nodes.h
index 58a73d2..82f1b3f 100644 (file)
 
 #include "ia32_nodes_attr.h"
 
+/**
+ * Returns the name of a firm symconst.
+ */
+const char *get_sc_name(ir_node *symc);
+
+
+
+/***************************************************************************************************
+ *        _   _                   _       __        _                    _   _               _
+ *       | | | |                 | |     / /       | |                  | | | |             | |
+ *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
+ *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
+ * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
+ *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
+ *                                        __/ |
+ *                                       |___/
+ ***************************************************************************************************/
+
+/**
+ * Returns the attributes of an ia32 node.
+ */
 asmop_attr *get_ia32_attr(const ir_node *node);
 
-ir_node *get_ia32_old_ir(const ir_node *node);
+/**
+ * Gets the type of an ia32 node.
+ */
+asmop_type_t get_ia32_op_type(const ir_node *node);
+
+/**
+ * Sets the type of an ia32 node.
+ */
+void set_ia32_op_type(const ir_node *node, asmop_type_t tp);
 
-void    set_ia32_Immop_attr(ir_node *node, ir_node *imm);
+/**
+ * Gets the addr mode type of an ia32 node
+ */
+addrmode_type_t get_ia32_am_type(const ir_node *node);
+
+/**
+ * Sets the addr mode type of an ia32 node
+ */
+void set_ia32_am_type(const ir_node *node, addrmode_type_t am_tp);
+
+/**
+ * Gets the addr mode offset.
+ */
+tarval *get_ia32_am_offs(const ir_node *node);
+
+/**
+ * Sets the offset for addr mode.
+ */
+void set_ia32_am_offs(ir_node *node, tarval *am_offs);
+
+/**
+ * Gets the addr mode const.
+ */
+tarval *get_ia32_am_const(const ir_node *node);
+
+/**
+ * Sets the const for addr mode.
+ */
+void set_ia32_am_const(ir_node *node, tarval *am_const);
+
+/**
+ * Return the tarval of an immediate operation or NULL in case of SymConst
+ */
 tarval *get_ia32_Immop_tarval(const ir_node *node);
-void    set_ia32_Immop_tarval(ir_node *node, tarval *tv);
 
-void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst);
-void set_ia32_Const_type(ir_node *node, int type);
+/**
+ * Sets the attributes of an immediate operation to the specified tarval
+ */
+void set_ia32_Immop_tarval(ir_node *node, tarval *tv);
 
-void    set_ia32_offs(ir_node *node, tarval *offs);
-tarval *get_ia32_offs(const ir_node *node);
-void    set_ia32_n_res(ir_node *node, int n_res);
-int     get_ia32_n_res(const ir_node *node);
+/**
+ * Return the old_ir attribute.
+ */
+ir_node *get_ia32_old_ir(const ir_node *node);
 
-void set_ia32_DivMod_flavour(ir_node *node, divmod_flavour_t dm_flav);
+/**
+ * Sets the old_ir attribute.
+ */
+void set_ia32_old_ir(ir_node *node, ir_node *old_ir);
+
+/**
+ * Returns the argument register requirements of an ia32 node.
+ */
+const arch_register_req_t **get_ia32_in_req_all(const ir_node *node);
+
+/**
+ * Returns the result register requirements of an ia32 node.
+ */
+const arch_register_req_t **get_ia32_out_req_all(const ir_node *node);
 
-arch_irn_flags_t            get_ia32_flags(const ir_node *node);
-const arch_register_req_t **get_ia32_in_req(const ir_node *node);
-const arch_register_req_t **get_ia32_out_req(const ir_node *node);
-const arch_register_t     **get_ia32_slots(const ir_node *node);
+/**
+ * Returns the argument register requirements of an ia32 node.
+ */
+const arch_register_req_t *get_ia32_in_req(const ir_node *node, int pos);
+
+/**
+ * Returns the result register requirements of an ia32 node.
+ */
+const arch_register_req_t *get_ia32_out_req(const ir_node *node, int pos);
+
+/**
+ * Sets the OUT register requirements at position pos.
+ */
+void set_ia32_req_out(ir_node *node, const arch_register_req_t *req, int pos);
+
+/**
+ * Sets the IN register requirements at position pos.
+ */
+void set_ia32_req_in(ir_node *node, const arch_register_req_t *req, int pos);
 
-const char *get_ia32_in_reg_name(const ir_node *node, 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(const 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 name of the OUT register at position pos.
+ */
 const char *get_ia32_out_reg_name(const ir_node *node, int pos);
 
-int get_ia32_in_regnr(const ir_node *node, int pos);
+/**
+ * Returns the index of the OUT register at position pos within its register class.
+ */
 int get_ia32_out_regnr(const ir_node *node, int pos);
 
+/**
+ * Returns the OUT register at position pos.
+ */
+const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos);
+
+/**
+ * Sets the number of results.
+ */
+void set_ia32_n_res(ir_node *node, int n_res);
+
+/**
+ * Returns the number of results.
+ */
+int get_ia32_n_res(const ir_node *node);
+
+/**
+ * Returns the flavour of an ia32 DivMod,
+ */
+divmod_flavour_t get_ia32_DivMod_flavour(const ir_node *node);
+
+/**
+ * Sets the flavour of an ia32 DivMod node to flavour_Div/Mod/DivMod.
+ */
+void set_ia32_DivMod_flavour(ir_node *node, divmod_flavour_t dm_flav);
+
+/**
+ * Returns the projnum code.
+ */
+long get_ia32_pncode(const ir_node *node);
+
+/**
+ * Sets the projnum code
+ */
+void set_ia32_pncode(ir_node *node, long code);
+
+
+
+/******************************************************************************************************
+ *                      _       _         _   _           __                  _   _
+ *                     (_)     | |       | | | |         / _|                | | (_)
+ *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
+ * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
+ * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
+ * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
+ *     | |
+ *     |_|
+ ******************************************************************************************************/
+
+/**
+ * Gets the type of an ia32_Const.
+ */
+unsigned get_ia32_Const_type(ir_node *node);
+
+/**
+ * Sets the type of an ia32_Const.
+ */
+void set_ia32_Const_type(ir_node *node, int type);
+
+/**
+ * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
+ */
+void set_ia32_Immop_attr(ir_node *node, ir_node *cnst);
+
+/**
+ * Copy the attributes from a Const to an ia32_Const
+ */
+void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst);
+
+/**
+ * Sets the AddrMode attribute
+ */
+void set_ia32_AddrMode(ir_node *node);
+
+/**
+ * Returns whether or not the node is an AddrMode node.
+ */
+int is_ia32_AddrMode(ir_node *node);
+
+/**
+ * Checks whether or not an ir_node is an ia32 node
+ */
 int is_ia32_irn(const ir_node *node);
 
-/* Inlcude the generated headers */
-#include "gen_ia32_new_nodes.h.inl"
+/* Include the generated headers */
+#include "gen_ia32_new_nodes.h"
 
 #endif /* _IA32_NEW_NODES_H_ */