1e4e303887cd72883b817226d2bac357300349af
[libfirm] / ir / be / mips / bearch_mips_t.h
1 #ifndef _BEARCH_mips_T_H_
2 #define _BEARCH_mips_T_H_
3
4 #include "debug.h"
5 #include "irgopt.h"
6 #include "bearch_mips.h"
7 #include "mips_nodes_attr.h"
8 #include "../be.h"
9 #include "set.h"
10
11 struct _mips_code_gen_t {
12         const arch_code_generator_if_t *impl;           /**< implementation */
13         ir_graph                       *irg;            /**< current irg */
14         FILE                           *out;            /**< output file */
15         const arch_env_t               *arch_env;       /**< the arch env */
16         set                            *reg_set;        /**< set to memorize registers for FIRM nodes (e.g. phi) */
17         firm_dbg_module_t              *mod;            /**< debugging module */
18         int                             emit_decls;     /**< flag indicating if decls were already emitted */
19         const be_irg_t                 *birg;           /**< The be-irg (contains additional information about the irg) */
20         ir_node                        **bl_list;               /**< The block schedule list. */
21         survive_dce_t                              *bl_list_sdce;       /**< survive dce environment for the block schedule list */
22 };
23
24
25 typedef struct _mips_isa_t {
26         const arch_isa_if_t   *impl;
27         const arch_register_t *sp;            /**< The stack pointer register. */
28         const arch_register_t *fp;            /**< The base pointer register. */
29         const int              stack_dir;     /**< -1 for decreasing, 1 for increasing. */
30         int                  num_codegens;
31 } mips_isa_t;
32
33
34 typedef struct _mips_irn_ops_t {
35         const arch_irn_ops_if_t *impl;
36         mips_code_gen_t     *cg;
37 } mips_irn_ops_t;
38
39
40 /* this is a struct to minimize the number of parameters
41    for transformation walker */
42 typedef struct _mips_transform_env_t {
43         firm_dbg_module_t *mod;      /**< The firm debugger */
44         dbg_info          *dbg;      /**< The node debug info */
45         ir_graph          *irg;      /**< The irg, the node should be created in */
46         ir_node           *block;    /**< The block, the node should belong to */
47         ir_node           *irn;      /**< The irn, to be transformed */
48         ir_mode           *mode;     /**< The mode of the irn */
49         mips_code_gen_t   *cg;       /**< The code generator */
50 } mips_transform_env_t;
51
52 ir_node *mips_new_NoReg(mips_code_gen_t *cg);
53
54 #endif /* _BEARCH_mips_T_H_ */