Added phi handler
[libfirm] / ir / be / ia32 / bearch_ia32_t.h
index 5cf21fa..142d3f8 100644 (file)
@@ -1,9 +1,12 @@
 #ifndef _BEARCH_IA32_T_H_
 #define _BEARCH_IA32_T_H_
 
+#include "firm_config.h"
+
 #include "debug.h"
 #include "bearch_ia32.h"
 #include "ia32_nodes_attr.h"
+#include "set.h"
 #include "../be.h"
 
 /* some typedefs */
@@ -13,6 +16,7 @@ typedef struct _ia32_optimize_t {
        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 */
+       unsigned extbb     : 1;   /**< do extended basic block scheduling */
 } ia32_optimize_t;
 
 typedef struct _ia32_code_gen_t {
@@ -31,10 +35,16 @@ typedef struct _ia32_code_gen_t {
 
 typedef struct _ia32_isa_t {
        const arch_isa_if_t   *impl;
-       const arch_register_t *sp;            /** The stack pointer register. */
-       const arch_register_t *bp;            /** The base pointer register. */
-       const int              stack_dir;     /** -1 for decreasing, 1 for increasing. */
-       int                    num_codegens;
+       const arch_register_t *sp;            /**< The stack pointer register. */
+       const arch_register_t *bp;            /**< The base pointer register. */
+       const int              stack_dir;     /**< -1 for decreasing, 1 for increasing. */
+       int                    num_codegens;  /**< The number of code generator objects created so far */
+       pmap                  *regs_16bit;    /**< Contains the 16bits names of the gp registers */
+       pmap                  *regs_8bit;     /**< Contains the 8bits names of the gp registers */
+#ifndef NDEBUG
+       struct obstack        *name_obst;     /**< holds the original node names (for debugging) */
+       unsigned long          name_obst_size;
+#endif /* NDEBUG */
 } ia32_isa_t;
 
 typedef struct _ia32_irn_ops_t {