fixed some bugs
[libfirm] / ir / be / ia32 / bearch_ia32_t.h
index eea7715..5cf21fa 100644 (file)
@@ -4,6 +4,16 @@
 #include "debug.h"
 #include "bearch_ia32.h"
 #include "ia32_nodes_attr.h"
+#include "../be.h"
+
+/* some typedefs */
+
+typedef struct _ia32_optimize_t {
+       unsigned incdec    : 1;   /**< optimize add/sub 1/-1 to inc/dec */
+       unsigned doam      : 1;   /**< do address mode optimizations */
+       unsigned placecnst : 1;   /**< place constants in the blocks where they are used */
+       unsigned immops    : 1;   /**< create operations with immediates */
+} ia32_optimize_t;
 
 typedef struct _ia32_code_gen_t {
        const arch_code_generator_if_t *impl;          /**< implementation */
@@ -13,12 +23,10 @@ typedef struct _ia32_code_gen_t {
        set                            *reg_set;       /**< set to memorize registers for non-ia32 nodes (e.g. phi nodes) */
        firm_dbg_module_t              *mod;           /**< debugging module */
        int                             emit_decls;    /**< flag indicating if decls were already emitted */
-       int                             has_alloca;    /**< indicates whether the irg contains an alloca or not */
-       const ia32_register_req_t     **reg_param_req; /**< hold the requirements for the reg param nodes */
        pmap                           *types;         /**< A map of modes to primitive types */
        pmap                           *tv_ent;        /**< A map of entities that store tarvals */
-       ir_node                        *noreg_gp;      /**< Holds the unique per irg GP NoReg node */
-       ir_node                        *noreg_fp;      /**< Holds the unique per irg FP NoReg node */
+       const be_irg_t                 *birg;          /**< The be-irg (contains additional information about the irg) */
+       ia32_optimize_t                 opt;           /**< contains optimization information */
 } ia32_code_gen_t;
 
 typedef struct _ia32_isa_t {
@@ -27,7 +35,6 @@ typedef struct _ia32_isa_t {
        const arch_register_t *bp;            /** The base pointer register. */
        const int              stack_dir;     /** -1 for decreasing, 1 for increasing. */
        int                    num_codegens;
-       set                   *reg_projnum_map;
 } ia32_isa_t;
 
 typedef struct _ia32_irn_ops_t {
@@ -38,7 +45,6 @@ typedef struct _ia32_irn_ops_t {
 /* this is a struct to minimize the number of parameters
    for transformation walker */
 typedef struct _ia32_transform_env_t {
-       const arch_env_t  *arch_env;   /**< The arch_env */
        firm_dbg_module_t *mod;        /**< The firm debugger */
        dbg_info          *dbg;        /**< The node debug info */
        ir_graph          *irg;        /**< The irg, the node should be created in */
@@ -48,4 +54,14 @@ typedef struct _ia32_transform_env_t {
        ia32_code_gen_t   *cg;         /**< The code generator */
 } ia32_transform_env_t;
 
+/**
+ * Creates the unique per irg GP NoReg node.
+ */
+ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg);
+
+/**
+ * Creates the unique per irg FP NoReg node.
+ */
+ir_node *ia32_new_NoReg_fp(ia32_code_gen_t *cg);
+
 #endif /* _BEARCH_IA32_T_H_ */