besched: Add and use sched_replace().
[libfirm] / ir / be / ia32 / bearch_ia32_t.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       This is the main ia32 firm backend driver.
23  * @author      Christian Wuerdig
24  */
25 #ifndef FIRM_BE_IA32_BEARCH_IA32_T_H
26 #define FIRM_BE_IA32_BEARCH_IA32_T_H
27
28 #include "config.h"
29 #include "pmap.h"
30 #include "debug.h"
31 #include "ia32_nodes_attr.h"
32 #include "set.h"
33 #include "pdeq.h"
34
35 #include "be.h"
36 #include "beemitter.h"
37 #include "beirg.h"
38 #include "gen_ia32_regalloc_if.h"
39
40 #ifdef NDEBUG
41 #define SET_IA32_ORIG_NODE(n, o)
42 #else  /* ! NDEBUG */
43 #define SET_IA32_ORIG_NODE(n, o) set_ia32_orig_node(n, o)
44 #endif /* NDEBUG */
45
46 typedef struct ia32_isa_t            ia32_isa_t;
47 typedef struct ia32_irn_ops_t        ia32_irn_ops_t;
48 typedef struct ia32_intrinsic_env_t  ia32_intrinsic_env_t;
49
50 typedef struct ia32_irg_data_t {
51         ir_node  **blk_sched;     /**< an array containing the scheduled blocks */
52         unsigned do_x87_sim:1;    /**< set to 1 if x87 simulation should be enforced */
53         unsigned dump:1;          /**< set to 1 if graphs should be dumped */
54         ir_node  *noreg_gp;       /**< unique NoReg_GP node */
55         ir_node  *noreg_fp;       /**< unique NoReg_FP node */
56         ir_node  *noreg_xmm;      /**< unique NoReg_XMM node */
57
58         ir_node  *fpu_trunc_mode; /**< truncate fpu mode */
59         ir_node  *get_eip;        /**< get eip node */
60 } ia32_irg_data_t;
61
62 /**
63  * IA32 ISA object
64  */
65 struct ia32_isa_t {
66         arch_env_t             base;     /**< must be derived from arch_env_t */
67         pmap                  *tv_ent;   /**< A map of entities that store const tarvals */
68         int                    fpu_arch; /**< FPU architecture */
69 };
70
71 /**
72  * A helper type collecting needed info for IA32 intrinsic lowering.
73  */
74 struct ia32_intrinsic_env_t {
75         ir_entity  *divdi3;  /**< entity for __divdi3 library call */
76         ir_entity  *moddi3;  /**< entity for __moddi3 library call */
77         ir_entity  *udivdi3; /**< entity for __udivdi3 library call */
78         ir_entity  *umoddi3; /**< entity for __umoddi3 library call */
79 };
80
81 typedef enum transformer_t {
82         TRANSFORMER_DEFAULT,
83 #ifdef FIRM_GRGEN_BE
84         TRANSFORMER_PBQP,
85         TRANSFORMER_RAND
86 #endif
87 } transformer_t;
88
89 #ifdef FIRM_GRGEN_BE
90 /** The selected transformer. */
91 extern transformer_t be_transformer;
92
93 #else
94 #define be_transformer TRANSFORMER_DEFAULT
95 #endif
96
97 /** The mode for the floating point control word. */
98 extern ir_mode *ia32_mode_fpcw;
99 /** extended floatingpoint mode */
100 extern ir_mode *ia32_mode_E;
101 extern ir_type *ia32_type_E;
102
103 static inline ia32_irg_data_t *ia32_get_irg_data(const ir_graph *irg)
104 {
105         return (ia32_irg_data_t*) be_birg_from_irg(irg)->isa_link;
106 }
107
108 static inline void ia32_request_x87_sim(ir_graph const *const irg)
109 {
110         ia32_irg_data_t *const d = ia32_get_irg_data(irg);
111         d->do_x87_sim = true;
112 }
113
114 /**
115  * Returns the unique per irg GP NoReg node.
116  */
117 ir_node *ia32_new_NoReg_gp(ir_graph *irg);
118 ir_node *ia32_new_NoReg_xmm(ir_graph *irg);
119 ir_node *ia32_new_NoReg_fp(ir_graph *irg);
120
121 /**
122  * Returns the unique per irg FPU truncation mode node.
123  */
124 ir_node *ia32_new_Fpu_truncate(ir_graph *irg);
125
126 /**
127  * Split instruction with source AM into Load and separate instruction.
128  * @return result of the Load
129  */
130 ir_node *ia32_turn_back_am(ir_node *node);
131
132 /**
133  * Maps all intrinsic calls that the backend support
134  * and map all instructions the backend did not support
135  * to runtime calls.
136  */
137 void ia32_handle_intrinsics(void);
138
139 /**
140  * Ia32 implementation.
141  *
142  * @param method   the method type of the emulation function entity
143  * @param op       the emulated ir_op
144  * @param imode    the input mode of the emulated opcode
145  * @param omode    the output mode of the emulated opcode
146  * @param context  the context parameter
147  */
148 ir_entity *ia32_create_intrinsic_fkt(ir_type *method, const ir_op *op,
149                                      const ir_mode *imode, const ir_mode *omode,
150                                      void *context);
151
152 /**
153  * Return the stack entity that contains the return address.
154  */
155 ir_entity *ia32_get_return_address_entity(ir_graph *irg);
156
157 /**
158  * Return the stack entity that contains the frame address.
159  */
160 ir_entity *ia32_get_frame_address_entity(ir_graph *irg);
161
162 #endif