Removed the irn_handler stack.
[libfirm] / ir / be / bearch.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       Processor architecture specification.
23  * @author      Sebastian Hack
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_BEARCH_H
27 #define FIRM_BE_BEARCH_H
28
29 #include "firm_types.h"
30 #include "bitset.h"
31 #include "be.h"
32 #include "obst.h"
33
34 typedef struct arch_register_class_t     arch_register_class_t;
35 typedef struct arch_register_req_t       arch_register_req_t;
36 typedef struct arch_register_t           arch_register_t;
37 typedef struct arch_flag_t               arch_flag_t;
38 typedef struct arch_inverse_t            arch_inverse_t;
39 typedef struct arch_isa_if_t             arch_isa_if_t;
40 typedef struct arch_isa_t                arch_isa_t;
41 typedef struct arch_env_t                arch_env_t;
42 typedef struct arch_irn_ops_if_t         arch_irn_ops_if_t;
43 typedef struct arch_irn_ops_t            arch_irn_ops_t;
44 typedef struct arch_code_generator_t     arch_code_generator_t;
45 typedef struct arch_code_generator_if_t  arch_code_generator_if_t;
46
47 typedef enum arch_register_class_flags_t {
48         arch_register_class_flag_none      = 0,
49         arch_register_class_flag_manual_ra = 1,  /**< don't do automatic register allocation for this class */
50         arch_register_class_flag_state     = 2
51 } arch_register_class_flags_t;
52
53 typedef enum arch_register_type_t {
54         arch_register_type_none         = 0,
55         arch_register_type_caller_save  = 1,  /**< The register must be saved by the caller
56                                              upon a function call. It thus can be overwritten
57                                              in the called function. */
58         arch_register_type_callee_save  = 2,  /**< The register must be saved by the caller
59                                              upon a function call. It thus can be overwritten
60                                              in the called function. */
61         arch_register_type_ignore       = 4,  /**< Do not consider this register when allocating. */
62         arch_register_type_joker        = 8,  /**< The emitter can choose an arbitrary register */
63         arch_register_type_virtual      = 16, /**< This is just a virtual register.Virtual registers have
64                                                nearly no constraints, it is a allowed to have multiple
65                                                                                            definition for the same register at a point) */
66         arch_register_type_state        = 32, /**< The register represents a state that should be handled by
67                                                    bestate code */
68 } arch_register_type_t;
69
70 /**
71  * Put all registers in a class into a bitset.
72  * @param cls The class.
73  * @param bs The bitset. May be NULL.
74  * @return The number of registers in the class.
75  */
76 extern int arch_register_class_put(const arch_register_class_t *cls, bitset_t *bs);
77
78 typedef enum arch_operand_type_t {
79         arch_operand_type_invalid,
80         arch_operand_type_memory,
81         arch_operand_type_register,
82         arch_operand_type_immediate,
83         arch_operand_type_symconst,
84         arch_operand_type_last
85 } arch_operand_type_t;
86
87 /**
88  * Different types of register allocation requirements.
89  */
90 typedef enum arch_register_req_type_t {
91         arch_register_req_type_none                = 0,  /**< No register requirement. */
92         arch_register_req_type_normal              = 1,  /**< All registers in the class are allowed. */
93         arch_register_req_type_limited             = 2,  /**< Only a real subset of the class is allowed. */
94         arch_register_req_type_should_be_same      = 4,  /**< The register should be equal to another one at the node. */
95         arch_register_req_type_should_be_different = 8,  /**< The register must be unequal from some other at the node. */
96 } arch_register_req_type_t;
97
98 extern const arch_register_req_t *arch_no_register_req;
99
100 /**
101  * Format a register requirements information into a string.
102  * @param buf The string where to put it to.
103  * @param len The size of @p buf.
104  * @param req The requirements structure to format.
105  * @return    A pointer to buf.
106  */
107 extern char *arch_register_req_format(char *buf, size_t len, const arch_register_req_t *req, const ir_node *node);
108
109 /**
110  * Certain node classes which are relevant for the register allocator.
111  */
112 typedef enum arch_irn_class_t {
113         arch_irn_class_normal     = 1 << 0,
114         arch_irn_class_spill      = 1 << 1,
115         arch_irn_class_reload     = 1 << 2,
116         arch_irn_class_copy       = 1 << 3,
117         arch_irn_class_perm       = 1 << 4,
118         arch_irn_class_branch     = 1 << 5,
119         arch_irn_class_call       = 1 << 6,
120         arch_irn_class_load       = 1 << 7,
121         arch_irn_class_store      = 1 << 8,
122         arch_irn_class_stackparam = 1 << 9,
123 } arch_irn_class_t;
124
125 /**
126  * Some flags describing a node in more detail.
127  */
128 typedef enum arch_irn_flags_t {
129         arch_irn_flags_none             = 0, /**< Node flags. */
130         arch_irn_flags_dont_spill       = 1, /**< This must not be spilled. */
131         arch_irn_flags_rematerializable = 2, /**< This can be replicated instead of spilled/reloaded. */
132         arch_irn_flags_ignore           = 4, /**< Ignore node during register allocation. */
133         arch_irn_flags_modify_sp        = 8, /**< I modify the stack pointer. */
134         arch_irn_flags_modify_flags     = 16, /**< I modify flags. */
135         arch_irn_flags_last             = arch_irn_flags_modify_flags
136 } arch_irn_flags_t;
137
138 /**
139  * Get the string representation of a flag.
140  * This functions does not handle or'ed bitmasks of flags.
141  * @param flag The flag.
142  * @return The flag as a string.
143  */
144 extern const char *arch_irn_flag_str(arch_irn_flags_t flag);
145
146 extern const arch_irn_ops_t *arch_get_irn_ops(const arch_env_t *env,
147                                               const ir_node *irn);
148
149 extern void arch_set_frame_offset(const arch_env_t *env, ir_node *irn, int bias);
150
151 extern ir_entity *arch_get_frame_entity(const arch_env_t *env, const ir_node *irn);
152 extern void arch_set_frame_entity(const arch_env_t *env, ir_node *irn, ir_entity *ent);
153 extern int arch_get_sp_bias(const arch_env_t *env, ir_node *irn);
154
155 extern int arch_get_op_estimated_cost(const arch_env_t *env, const ir_node *irn);
156 extern arch_inverse_t *arch_get_inverse(const arch_env_t *env, const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obstack);
157 extern int arch_possible_memory_operand(const arch_env_t *env, const ir_node *irn, unsigned int i);
158 extern void arch_perform_memory_operand(const arch_env_t *env, ir_node *irn, ir_node *spill, unsigned int i);
159
160 /**
161  * Get the register requirements for a node.
162  * @param env The architecture environment.
163  * @param req A pointer to a requirements structure, where the data can
164  *            be put into.
165  * @param irn The node.
166  * @param pos The position of the operand you're interested in.
167  * @return    A pointer to the register requirements which may <b>not</b>
168  *            neccessarily be equal to @p req. If NULL is returned, the
169  *            operand was no register operand.
170  */
171 extern const arch_register_req_t *
172 arch_get_register_req(const arch_env_t *env, const ir_node *irn, int pos);
173
174 /**
175  * Check if an operand is a register operand.
176  * @param env The environment.
177  * @param irn The node.
178  * @param pos The position of the operand.
179  * @return 1, if the operand is significant for register allocation, 0
180  * if not.
181  */
182 extern int arch_is_register_operand(const arch_env_t *env,
183     const ir_node *irn, int pos);
184
185 /**
186  * Get the number of allocatable registers concerning
187  * a register class for an operand of a node.
188  * @param env The environment.
189  * @param irn The node.
190  * @param pos The postition of the node's operand.
191  * @param bs  The bitset all allocatable registers shall be put into.
192  *            Note, that you can also pass NULL here. If you don't,
193  *            make sure, the bitset is as large as the register class
194  *            has registers.
195  * @return    The amount of registers allocatable for that operand.
196  */
197 extern int arch_get_allocatable_regs(const arch_env_t *env, const ir_node *irn, int pos, bitset_t *bs);
198
199 /**
200  * Put all registers which shall not be ignored by the register
201  * allocator in a bit set.
202  * @param env The arch env.
203  * @param cls The register class to consider.
204  * @param bs  The bit set to put the registers to.
205  */
206 extern void arch_put_non_ignore_regs(const arch_env_t *env, const arch_register_class_t *cls, bitset_t *bs);
207
208 /**
209  * Check, if a register is assignable to an operand of a node.
210  * @param env The architecture environment.
211  * @param irn The node.
212  * @param pos The position of the operand.
213  * @param reg The register.
214  * @return    1, if the register might be allocated to the operand 0 if not.
215  */
216 extern int arch_reg_is_allocatable(const arch_env_t *env,
217     const ir_node *irn, int pos, const arch_register_t *reg);
218
219 /**
220  * Get the register class of an operand of a node.
221  * @param env The architecture environment.
222  * @param irn The node.
223  * @param pos The position of the operand, -1 for the output.
224  * @return    The register class of the operand or NULL, if
225  *            operand is a non-register operand.
226  */
227 extern const arch_register_class_t *
228 arch_get_irn_reg_class(const arch_env_t *env, const ir_node *irn, int pos);
229
230 /**
231  * Get the register allocated at a certain output operand of a node.
232  * @param env The arch environment.
233  * @param irn The node.
234  * @return    The register allocated for this operand
235  */
236 extern const arch_register_t *
237 arch_get_irn_register(const arch_env_t *env, const ir_node *irn);
238
239 /**
240  * Set the register for a certain output operand.
241  * @param env The architecture environment.
242  * @param irn The node.
243  * @param idx The index of the output operand.
244  * @param reg The register.
245  */
246 extern void arch_set_irn_register(const arch_env_t *env, ir_node *irn,
247                 const arch_register_t *reg);
248
249 /**
250  * Classify a node.
251  * @param env The architecture environment.
252  * @param irn The node.
253  * @return A classification of the node.
254  */
255 extern arch_irn_class_t arch_irn_classify(const arch_env_t *env, const ir_node *irn);
256
257 #define arch_irn_class_is(env, irn, irn_class) ((arch_irn_classify(env, irn) & arch_irn_class_ ## irn_class) != 0)
258
259 /**
260  * Get the flags of a node.
261  * @param env The architecture environment.
262  * @param irn The node.
263  * @return The flags.
264  */
265 extern arch_irn_flags_t arch_irn_get_flags(const arch_env_t *env, const ir_node *irn);
266
267 #define arch_irn_is(env, irn, flag) ((arch_irn_get_flags(env, irn) & arch_irn_flags_ ## flag) != 0)
268
269 #define arch_irn_has_reg_class(env, irn, pos, cls) \
270         ((cls) == arch_get_irn_reg_class(env, irn, pos))
271
272 #define arch_irn_consider_in_reg_alloc(env, cls, irn) \
273         (arch_irn_has_reg_class(env, irn, -1, cls) && !arch_irn_is(env, irn, ignore))
274
275 /**
276  * Get the operations of an irn.
277  * @param self The handler from which the method is invoked.
278  * @param irn Some node.
279  * @return Operations for that irn.
280  */
281 typedef const void *(arch_get_irn_ops_t)(const ir_node *irn);
282
283 /**
284  * Initialize the architecture environment struct.
285  * @param isa           The isa which shall be put into the environment.
286  * @param file_handle   The file handle
287  * @return The environment.
288  */
289 extern arch_env_t *arch_env_init(arch_env_t *env, const arch_isa_if_t *isa,
290                                  FILE *file_handle, be_main_env_t *main_env);
291
292 /**
293  * Set the architectural node handler to the environment.
294  * @param env The environment.
295  * @param handler The node handler for the selected architecture.
296  * @return The environment itself.
297  */
298 extern void arch_env_set_irn_handler(arch_env_t *env, arch_get_irn_ops_t *handler);
299
300 /**
301  * Register an instruction set architecture
302  */
303 void be_register_isa_if(const char *name, const arch_isa_if_t *isa);
304
305 #endif /* FIRM_BE_BEARCH_H */