create push ebp/pop ebp for frame pointer setups
[libfirm] / ir / be / ia32 / bearch_ia32_t.h
1 #ifndef _BEARCH_IA32_T_H_
2 #define _BEARCH_IA32_T_H_
3
4 #include "firm_config.h"
5
6 #include "pmap.h"
7 #include "debug.h"
8 #include "bearch_ia32.h"
9 #include "ia32_nodes_attr.h"
10 #include "set.h"
11 #include "../be.h"
12
13 #ifdef NDEBUG
14 #define SET_IA32_ORIG_NODE(n, o)
15 #else
16 #define SET_IA32_ORIG_NODE(n, o) set_ia32_orig_node(n, o);
17 #endif /* NDEBUG */
18
19 /* some typedefs */
20
21 /**
22  * Bitmask for the backend optimization settings.
23  */
24 typedef enum _ia32_optimize_t {
25         IA32_OPT_INCDEC    = 1,   /**< optimize add/sub 1/-1 to inc/dec */
26         IA32_OPT_DOAM      = 2,   /**< do address mode optimizations */
27         IA32_OPT_PLACECNST = 4,   /**< place constants in the blocks where they are used */
28         IA32_OPT_IMMOPS    = 8,   /**< create operations with immediate operands */
29         IA32_OPT_EXTBB     = 16,  /**< do extended basic block scheduling */
30 } ia32_optimize_t;
31
32 /** architectures */
33 typedef enum cpu_support {
34         arch_i386,          /**< i386 */
35         arch_i486,          /**< i486 */
36         arch_pentium,       /**< Pentium */
37         arch_pentium_pro,   /**< Pentium Pro */
38         arch_pentium_mmx,   /**< Pentium MMX */
39         arch_pentium_2,     /**< Pentium II */
40         arch_pentium_3,     /**< Pentium III */
41         arch_pentium_4,     /**< Pentium IV */
42         arch_pentium_m,     /**< Pentium M */
43         arch_core,          /**< Core */
44         arch_k6,            /**< K6 */
45         arch_athlon,        /**< Athlon */
46         arch_athlon_64,     /**< Athlon64 */
47         arch_opteron,       /**< Opteron */
48 } cpu_support;
49
50 /** floating point support */
51 typedef enum fp_support {
52         fp_none,  /**< no floating point instructions are used */
53         fp_x87,   /**< use x87 instructions */
54         fp_sse2   /**< use SSE2 instructions */
55 } fp_support;
56
57 typedef struct _ia32_isa_t ia32_isa_t;
58
59 /**
60  * IA32 code generator
61  */
62 typedef struct _ia32_code_gen_t {
63         const arch_code_generator_if_t *impl;          /**< implementation */
64         ir_graph                       *irg;           /**< current irg */
65         const arch_env_t               *arch_env;      /**< the arch env */
66         set                            *reg_set;       /**< set to memorize registers for non-ia32 nodes (e.g. phi nodes) */
67         ia32_isa_t                     *isa;           /**< for fast access to the isa object */
68         const be_irg_t                 *birg;          /**< The be-irg (contains additional information about the irg) */
69         ir_node                        **blk_sched;    /**< an array containing the scheduled blocks */
70         ia32_optimize_t                 opt;           /**< contains optimization information */
71         entity                         *fp_to_gp;      /**< allocated entity for fp to gp conversion */
72         entity                         *gp_to_fp;      /**< allocated entity for gp to fp conversion */
73         int                             arch;          /**< instruction architecture */
74         int                             opt_arch;      /**< optimize for architecture */
75         int                             fp_kind;       /**< floating point kind */
76         char                            used_fp;       /**< which floating point unit used in this graph */
77         DEBUG_ONLY(firm_dbg_module_t   *mod;)          /**< debugging module */
78 } ia32_code_gen_t;
79
80 /**
81  * IA32 ISA object
82  */
83 struct _ia32_isa_t {
84   arch_isa_t            arch_isa;       /**< must be derived from arch_isa_t */
85         pmap                  *regs_16bit;    /**< Contains the 16bits names of the gp registers */
86         pmap                  *regs_8bit;     /**< Contains the 8bits names of the gp registers */
87         pmap                  *types;         /**< A map of modes to primitive types */
88         pmap                  *tv_ent;        /**< A map of entities that store const tarvals */
89         ia32_optimize_t        opt;           /**< contains optimization information */
90         int                    arch;          /**< instruction architecture */
91         int                    opt_arch;      /**< optimize for architecture */
92         int                    fp_kind;       /**< floating point kind */
93         ia32_code_gen_t       *cg;            /**< the current code generator */
94         FILE                  *out;           /**< output file */
95 #ifndef NDEBUG
96         struct obstack        *name_obst;     /**< holds the original node names (for debugging) */
97         unsigned long          name_obst_size;
98 #endif /* NDEBUG */
99 };
100
101 typedef struct _ia32_irn_ops_t {
102         const arch_irn_ops_if_t *impl;
103         ia32_code_gen_t         *cg;
104 } ia32_irn_ops_t;
105
106 /* this is a struct to minimize the number of parameters
107    for transformation walker */
108 typedef struct _ia32_transform_env_t {
109         dbg_info          *dbg;        /**< The node debug info */
110         ir_graph          *irg;        /**< The irg, the node should be created in */
111         ir_node           *block;      /**< The block, the node should belong to */
112         ir_node           *irn;        /**< The irn, to be transformed */
113         ir_mode           *mode;       /**< The mode of the irn */
114         ia32_code_gen_t   *cg;         /**< The code generator */
115         DEBUG_ONLY(firm_dbg_module_t *mod;) /**< The firm debugger */
116 } ia32_transform_env_t;
117
118 /**
119  * Creates the unique per irg GP NoReg node.
120  */
121 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg);
122
123 /**
124  * Creates the unique per irg FP NoReg node.
125  */
126 ir_node *ia32_new_NoReg_fp(ia32_code_gen_t *cg);
127
128 #endif /* _BEARCH_IA32_T_H_ */