Remove the unused parameter const arch_env_t *env from arch_set_frame_offset().
[libfirm] / ir / be / bearch.c
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 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <string.h>
31
32 #include "bearch_t.h"
33 #include "benode_t.h"
34 #include "ircons_t.h"
35 #include "irnode_t.h"
36
37 #include "bitset.h"
38 #include "pset.h"
39 #include "raw_bitset.h"
40
41 #include "irprintf.h"
42
43 /* Initialize the architecture environment struct. */
44 arch_env_t *arch_env_init(const arch_isa_if_t *isa_if, FILE *file_handle, be_main_env_t *main_env)
45 {
46         arch_env_t *arch_env = isa_if->init(file_handle);
47         arch_env->main_env   = main_env;
48         return arch_env;
49 }
50
51 /**
52  * Put all registers in a class into a bitset.
53  * @param cls The class.
54  * @param bs The bitset.
55  * @return The number of registers in the class.
56  */
57 static int arch_register_class_put(const arch_register_class_t *cls, bitset_t *bs)
58 {
59         int i, n = cls->n_regs;
60         for (i = n - 1; i >= 0; --i)
61                 bitset_set(bs, i);
62         return n;
63 }
64
65 /**
66  * Get the isa responsible for a node.
67  * @param irn The node to get the responsible isa for.
68  * @return The irn operations given by the responsible isa.
69  */
70 static INLINE const arch_irn_ops_t *get_irn_ops(const ir_node *irn)
71 {
72         const ir_op          *ops;
73         const arch_irn_ops_t *be_ops;
74
75         if (is_Proj(irn)) {
76                 irn = get_Proj_pred(irn);
77                 assert(!is_Proj(irn));
78         }
79
80         ops    = get_irn_op(irn);
81         be_ops = get_op_ops(ops)->be_ops;
82
83         assert(be_ops);
84         return be_ops;
85 }
86
87 const arch_register_req_t *arch_get_register_req(const ir_node *irn, int pos)
88 {
89         const arch_irn_ops_t *ops = get_irn_ops(irn);
90         return ops->get_irn_reg_req(irn, pos);
91 }
92
93 void arch_set_frame_offset(ir_node *irn, int offset)
94 {
95         const arch_irn_ops_t *ops = get_irn_ops(irn);
96         ops->set_frame_offset(irn, offset);
97 }
98
99 ir_entity *arch_get_frame_entity(const arch_env_t *env, const ir_node *irn)
100 {
101         const arch_irn_ops_t *ops = get_irn_ops(irn);
102         (void)env; // TODO remove parameter
103         return ops->get_frame_entity(irn);
104 }
105
106 void arch_set_frame_entity(const arch_env_t *env, ir_node *irn, ir_entity *ent)
107 {
108         const arch_irn_ops_t *ops = get_irn_ops(irn);
109         (void)env; // TODO remove parameter
110         ops->set_frame_entity(irn, ent);
111 }
112
113 int arch_get_sp_bias(const arch_env_t *env, ir_node *irn)
114 {
115         const arch_irn_ops_t *ops = get_irn_ops(irn);
116         (void)env; // TODO remove parameter
117         return ops->get_sp_bias(irn);
118 }
119
120 arch_inverse_t *arch_get_inverse(const arch_env_t *env, const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obstack)
121 {
122         const arch_irn_ops_t *ops = get_irn_ops(irn);
123         (void)env; // TODO remove parameter
124
125         if(ops->get_inverse) {
126                 return ops->get_inverse(irn, i, inverse, obstack);
127         } else {
128                 return NULL;
129         }
130 }
131
132 int arch_possible_memory_operand(const arch_env_t *env, const ir_node *irn, unsigned int i) {
133         const arch_irn_ops_t *ops = get_irn_ops(irn);
134         (void)env; // TODO remove parameter
135
136         if(ops->possible_memory_operand) {
137                 return ops->possible_memory_operand(irn, i);
138         } else {
139                 return 0;
140         }
141 }
142
143 void arch_perform_memory_operand(const arch_env_t *env, ir_node *irn, ir_node *spill, unsigned int i) {
144         const arch_irn_ops_t *ops = get_irn_ops(irn);
145         (void)env; // TODO remove parameter
146
147         if(ops->perform_memory_operand) {
148                 ops->perform_memory_operand(irn, spill, i);
149         } else {
150                 return;
151         }
152 }
153
154 int arch_get_op_estimated_cost(const arch_env_t *env, const ir_node *irn)
155 {
156         const arch_irn_ops_t *ops = get_irn_ops(irn);
157         (void)env; // TODO remove parameter
158
159         if(ops->get_op_estimated_cost) {
160                 return ops->get_op_estimated_cost(irn);
161         } else {
162                 return 1;
163         }
164 }
165
166 int arch_is_possible_memory_operand(const arch_env_t *env, const ir_node *irn, int i)
167 {
168         const arch_irn_ops_t *ops = get_irn_ops(irn);
169         (void)env; // TODO remove parameter
170
171         if(ops->possible_memory_operand) {
172                 return ops->possible_memory_operand(irn, i);
173         } else {
174                 return 0;
175         }
176 }
177
178 int arch_get_allocatable_regs(const arch_env_t *env, const ir_node *irn, int pos, bitset_t *bs)
179 {
180         const arch_irn_ops_t *ops = get_irn_ops(irn);
181         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
182         (void)env; // TODO remove parameter
183
184         if(req->type == arch_register_req_type_none) {
185                 bitset_clear_all(bs);
186                 return 0;
187         }
188
189         if(arch_register_req_is(req, limited)) {
190                 rbitset_copy_to_bitset(req->limited, bs);
191                 return bitset_popcnt(bs);
192         }
193
194         arch_register_class_put(req->cls, bs);
195         return req->cls->n_regs;
196 }
197
198 void arch_put_non_ignore_regs(const arch_register_class_t *cls, bitset_t *bs)
199 {
200         unsigned i;
201
202         for(i = 0; i < cls->n_regs; ++i) {
203                 if(!arch_register_type_is(&cls->regs[i], ignore))
204                         bitset_set(bs, i);
205         }
206 }
207
208 int arch_is_register_operand(const arch_env_t *env,
209     const ir_node *irn, int pos)
210 {
211         const arch_irn_ops_t *ops = get_irn_ops(irn);
212         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
213         (void)env; // TODO remove parameter
214
215         return req != NULL;
216 }
217
218 int arch_reg_is_allocatable(const arch_env_t *env, const ir_node *irn,
219     int pos, const arch_register_t *reg)
220 {
221         const arch_register_req_t *req = arch_get_register_req(irn, pos);
222         (void)env; // TODO remove parameter
223
224         if(req->type == arch_register_req_type_none)
225                 return 0;
226
227         if(arch_register_req_is(req, limited)) {
228                 assert(arch_register_get_class(reg) == req->cls);
229                 return rbitset_is_set(req->limited, arch_register_get_index(reg));
230         }
231
232         return req->cls == reg->reg_class;
233 }
234
235 const arch_register_class_t *
236 arch_get_irn_reg_class(const arch_env_t *env, const ir_node *irn, int pos)
237 {
238         const arch_irn_ops_t *ops = get_irn_ops(irn);
239         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
240         (void)env; // TODO remove parameter
241
242         assert(req->type != arch_register_req_type_none || req->cls == NULL);
243
244         return req->cls;
245 }
246
247 extern const arch_register_t *
248 arch_get_irn_register(const arch_env_t *env, const ir_node *irn)
249 {
250         const arch_irn_ops_t *ops = get_irn_ops(irn);
251         (void)env; // TODO remove parameter
252         return ops->get_irn_reg(irn);
253 }
254
255 extern void arch_set_irn_register(const arch_env_t *env,
256     ir_node *irn, const arch_register_t *reg)
257 {
258         const arch_irn_ops_t *ops = get_irn_ops(irn);
259         (void)env; // TODO remove parameter
260         ops->set_irn_reg(irn, reg);
261 }
262
263 extern arch_irn_class_t arch_irn_classify(const arch_env_t *env, const ir_node *irn)
264 {
265         const arch_irn_ops_t *ops = get_irn_ops(irn);
266         (void)env; // TODO remove parameter
267         return ops->classify(irn);
268 }
269
270 extern arch_irn_flags_t arch_irn_get_flags(const arch_env_t *env, const ir_node *irn)
271 {
272         const arch_irn_ops_t *ops = get_irn_ops(irn);
273         (void)env; // TODO remove parameter
274         return ops->get_flags(irn);
275 }
276
277 extern const char *arch_irn_flag_str(arch_irn_flags_t fl)
278 {
279         switch(fl) {
280 #define XXX(x) case arch_irn_flags_ ## x: return #x;
281                 XXX(dont_spill);
282                 XXX(ignore);
283                 XXX(rematerializable);
284                 XXX(modify_sp);
285                 XXX(modify_flags);
286                 XXX(none);
287 #undef XXX
288         }
289         return "n/a";
290 }
291
292 extern char *arch_register_req_format(char *buf, size_t len,
293                                       const arch_register_req_t *req,
294                                       const ir_node *node)
295 {
296         char tmp[128];
297         snprintf(buf, len, "class: %s", req->cls->name);
298
299         if(arch_register_req_is(req, limited)) {
300                 unsigned n_regs = req->cls->n_regs;
301                 unsigned i;
302
303                 strncat(buf, " limited:", len);
304                 for(i = 0; i < n_regs; ++i) {
305                         if(rbitset_is_set(req->limited, i)) {
306                                 const arch_register_t *reg = &req->cls->regs[i];
307                                 strncat(buf, " ", len);
308                                 strncat(buf, reg->name, len);
309                         }
310                 }
311         }
312
313         if(arch_register_req_is(req, should_be_same)) {
314                 const unsigned other = req->other_same;
315                 int i;
316
317                 ir_snprintf(tmp, sizeof(tmp), " same to:");
318                 for (i = 0; 1U << i <= other; ++i) {
319                         if (other & (1U << i)) {
320                                 ir_snprintf(tmp, sizeof(tmp), " %+F", get_irn_n(skip_Proj_const(node), i));
321                                 strncat(buf, tmp, len);
322                         }
323                 }
324         }
325
326         if (arch_register_req_is(req, must_be_different)) {
327                 const unsigned other = req->other_different;
328                 int i;
329
330                 ir_snprintf(tmp, sizeof(tmp), " different from:");
331                 for (i = 0; 1U << i <= other; ++i) {
332                         if (other & (1U << i)) {
333                                 ir_snprintf(tmp, sizeof(tmp), " %+F", get_irn_n(skip_Proj_const(node), i));
334                                 strncat(buf, tmp, len);
335                         }
336                 }
337         }
338
339         return buf;
340 }
341
342 static const arch_register_req_t no_requirement = {
343         arch_register_req_type_none,
344         NULL,
345         NULL,
346         0,
347         0
348 };
349 const arch_register_req_t *arch_no_register_req = &no_requirement;