ee2194656752dc484f65b3fc5feef1e922b11a5c
[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 "debug.h"
7 #include "bearch_ia32.h"
8 #include "ia32_nodes_attr.h"
9 #include "set.h"
10 #include "../be.h"
11
12 /* some typedefs */
13
14 typedef struct _ia32_optimize_t {
15         unsigned incdec    : 1;   /**< optimize add/sub 1/-1 to inc/dec */
16         unsigned doam      : 1;   /**< do address mode optimizations */
17         unsigned placecnst : 1;   /**< place constants in the blocks where they are used */
18         unsigned immops    : 1;   /**< create operations with immediates */
19 } ia32_optimize_t;
20
21 typedef struct _ia32_code_gen_t {
22         const arch_code_generator_if_t *impl;          /**< implementation */
23         ir_graph                       *irg;           /**< current irg */
24         FILE                           *out;           /**< output file */
25         const arch_env_t               *arch_env;      /**< the arch env */
26         set                            *reg_set;       /**< set to memorize registers for non-ia32 nodes (e.g. phi nodes) */
27         firm_dbg_module_t              *mod;           /**< debugging module */
28         int                             emit_decls;    /**< flag indicating if decls were already emitted */
29         pmap                           *types;         /**< A map of modes to primitive types */
30         pmap                           *tv_ent;        /**< A map of entities that store tarvals */
31         const be_irg_t                 *birg;          /**< The be-irg (contains additional information about the irg) */
32         ia32_optimize_t                 opt;           /**< contains optimization information */
33 } ia32_code_gen_t;
34
35 typedef struct _ia32_isa_t {
36         const arch_isa_if_t   *impl;
37         const arch_register_t *sp;            /**< The stack pointer register. */
38         const arch_register_t *bp;            /**< The base pointer register. */
39         const int              stack_dir;     /**< -1 for decreasing, 1 for increasing. */
40         int                    num_codegens;  /**< The number of code generator objects created so far */
41         pmap                  *regs_16bit;    /**< Contains the 16bits names of the gp registers */
42         pmap                  *regs_8bit;     /**< Contains the 8bits names of the gp registers */
43 #ifndef NDEBUG
44         struct obstack        *name_obst;     /**< holds the original node names (for debugging) */
45         unsigned long          name_obst_size;
46 #endif /* NDEBUG */
47 } ia32_isa_t;
48
49 typedef struct _ia32_irn_ops_t {
50         const arch_irn_ops_if_t *impl;
51         ia32_code_gen_t         *cg;
52 } ia32_irn_ops_t;
53
54 /* this is a struct to minimize the number of parameters
55    for transformation walker */
56 typedef struct _ia32_transform_env_t {
57         firm_dbg_module_t *mod;        /**< The firm debugger */
58         dbg_info          *dbg;        /**< The node debug info */
59         ir_graph          *irg;        /**< The irg, the node should be created in */
60         ir_node           *block;      /**< The block, the node should belong to */
61         ir_node           *irn;        /**< The irn, to be transformed */
62         ir_mode           *mode;       /**< The mode of the irn */
63         ia32_code_gen_t   *cg;         /**< The code generator */
64 } ia32_transform_env_t;
65
66 /**
67  * Creates the unique per irg GP NoReg node.
68  */
69 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg);
70
71 /**
72  * Creates the unique per irg FP NoReg node.
73  */
74 ir_node *ia32_new_NoReg_fp(ia32_code_gen_t *cg);
75
76 #endif /* _BEARCH_IA32_T_H_ */