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