Remove the unused parameter const arch_env_t *env from arch_get_sp_bias().
[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 ir_node *irn)
100 {
101         const arch_irn_ops_t *ops = get_irn_ops(irn);
102         return ops->get_frame_entity(irn);
103 }
104
105 void arch_set_frame_entity(ir_node *irn, ir_entity *ent)
106 {
107         const arch_irn_ops_t *ops = get_irn_ops(irn);
108         ops->set_frame_entity(irn, ent);
109 }
110
111 int arch_get_sp_bias(ir_node *irn)
112 {
113         const arch_irn_ops_t *ops = get_irn_ops(irn);
114         return ops->get_sp_bias(irn);
115 }
116
117 arch_inverse_t *arch_get_inverse(const arch_env_t *env, const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obstack)
118 {
119         const arch_irn_ops_t *ops = get_irn_ops(irn);
120         (void)env; // TODO remove parameter
121
122         if(ops->get_inverse) {
123                 return ops->get_inverse(irn, i, inverse, obstack);
124         } else {
125                 return NULL;
126         }
127 }
128
129 int arch_possible_memory_operand(const arch_env_t *env, const ir_node *irn, unsigned int i) {
130         const arch_irn_ops_t *ops = get_irn_ops(irn);
131         (void)env; // TODO remove parameter
132
133         if(ops->possible_memory_operand) {
134                 return ops->possible_memory_operand(irn, i);
135         } else {
136                 return 0;
137         }
138 }
139
140 void arch_perform_memory_operand(const arch_env_t *env, ir_node *irn, ir_node *spill, unsigned int i) {
141         const arch_irn_ops_t *ops = get_irn_ops(irn);
142         (void)env; // TODO remove parameter
143
144         if(ops->perform_memory_operand) {
145                 ops->perform_memory_operand(irn, spill, i);
146         } else {
147                 return;
148         }
149 }
150
151 int arch_get_op_estimated_cost(const arch_env_t *env, const ir_node *irn)
152 {
153         const arch_irn_ops_t *ops = get_irn_ops(irn);
154         (void)env; // TODO remove parameter
155
156         if(ops->get_op_estimated_cost) {
157                 return ops->get_op_estimated_cost(irn);
158         } else {
159                 return 1;
160         }
161 }
162
163 int arch_is_possible_memory_operand(const arch_env_t *env, const ir_node *irn, int i)
164 {
165         const arch_irn_ops_t *ops = get_irn_ops(irn);
166         (void)env; // TODO remove parameter
167
168         if(ops->possible_memory_operand) {
169                 return ops->possible_memory_operand(irn, i);
170         } else {
171                 return 0;
172         }
173 }
174
175 int arch_get_allocatable_regs(const arch_env_t *env, const ir_node *irn, int pos, bitset_t *bs)
176 {
177         const arch_irn_ops_t *ops = get_irn_ops(irn);
178         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
179         (void)env; // TODO remove parameter
180
181         if(req->type == arch_register_req_type_none) {
182                 bitset_clear_all(bs);
183                 return 0;
184         }
185
186         if(arch_register_req_is(req, limited)) {
187                 rbitset_copy_to_bitset(req->limited, bs);
188                 return bitset_popcnt(bs);
189         }
190
191         arch_register_class_put(req->cls, bs);
192         return req->cls->n_regs;
193 }
194
195 void arch_put_non_ignore_regs(const arch_register_class_t *cls, bitset_t *bs)
196 {
197         unsigned i;
198
199         for(i = 0; i < cls->n_regs; ++i) {
200                 if(!arch_register_type_is(&cls->regs[i], ignore))
201                         bitset_set(bs, i);
202         }
203 }
204
205 int arch_is_register_operand(const arch_env_t *env,
206     const ir_node *irn, int pos)
207 {
208         const arch_irn_ops_t *ops = get_irn_ops(irn);
209         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
210         (void)env; // TODO remove parameter
211
212         return req != NULL;
213 }
214
215 int arch_reg_is_allocatable(const arch_env_t *env, const ir_node *irn,
216     int pos, const arch_register_t *reg)
217 {
218         const arch_register_req_t *req = arch_get_register_req(irn, pos);
219         (void)env; // TODO remove parameter
220
221         if(req->type == arch_register_req_type_none)
222                 return 0;
223
224         if(arch_register_req_is(req, limited)) {
225                 assert(arch_register_get_class(reg) == req->cls);
226                 return rbitset_is_set(req->limited, arch_register_get_index(reg));
227         }
228
229         return req->cls == reg->reg_class;
230 }
231
232 const arch_register_class_t *
233 arch_get_irn_reg_class(const arch_env_t *env, const ir_node *irn, int pos)
234 {
235         const arch_irn_ops_t *ops = get_irn_ops(irn);
236         const arch_register_req_t *req = ops->get_irn_reg_req(irn, pos);
237         (void)env; // TODO remove parameter
238
239         assert(req->type != arch_register_req_type_none || req->cls == NULL);
240
241         return req->cls;
242 }
243
244 extern const arch_register_t *
245 arch_get_irn_register(const arch_env_t *env, const ir_node *irn)
246 {
247         const arch_irn_ops_t *ops = get_irn_ops(irn);
248         (void)env; // TODO remove parameter
249         return ops->get_irn_reg(irn);
250 }
251
252 extern void arch_set_irn_register(const arch_env_t *env,
253     ir_node *irn, const arch_register_t *reg)
254 {
255         const arch_irn_ops_t *ops = get_irn_ops(irn);
256         (void)env; // TODO remove parameter
257         ops->set_irn_reg(irn, reg);
258 }
259
260 extern arch_irn_class_t arch_irn_classify(const arch_env_t *env, const ir_node *irn)
261 {
262         const arch_irn_ops_t *ops = get_irn_ops(irn);
263         (void)env; // TODO remove parameter
264         return ops->classify(irn);
265 }
266
267 extern arch_irn_flags_t arch_irn_get_flags(const arch_env_t *env, const ir_node *irn)
268 {
269         const arch_irn_ops_t *ops = get_irn_ops(irn);
270         (void)env; // TODO remove parameter
271         return ops->get_flags(irn);
272 }
273
274 extern const char *arch_irn_flag_str(arch_irn_flags_t fl)
275 {
276         switch(fl) {
277 #define XXX(x) case arch_irn_flags_ ## x: return #x;
278                 XXX(dont_spill);
279                 XXX(ignore);
280                 XXX(rematerializable);
281                 XXX(modify_sp);
282                 XXX(modify_flags);
283                 XXX(none);
284 #undef XXX
285         }
286         return "n/a";
287 }
288
289 extern char *arch_register_req_format(char *buf, size_t len,
290                                       const arch_register_req_t *req,
291                                       const ir_node *node)
292 {
293         char tmp[128];
294         snprintf(buf, len, "class: %s", req->cls->name);
295
296         if(arch_register_req_is(req, limited)) {
297                 unsigned n_regs = req->cls->n_regs;
298                 unsigned i;
299
300                 strncat(buf, " limited:", len);
301                 for(i = 0; i < n_regs; ++i) {
302                         if(rbitset_is_set(req->limited, i)) {
303                                 const arch_register_t *reg = &req->cls->regs[i];
304                                 strncat(buf, " ", len);
305                                 strncat(buf, reg->name, len);
306                         }
307                 }
308         }
309
310         if(arch_register_req_is(req, should_be_same)) {
311                 const unsigned other = req->other_same;
312                 int i;
313
314                 ir_snprintf(tmp, sizeof(tmp), " same to:");
315                 for (i = 0; 1U << i <= other; ++i) {
316                         if (other & (1U << i)) {
317                                 ir_snprintf(tmp, sizeof(tmp), " %+F", get_irn_n(skip_Proj_const(node), i));
318                                 strncat(buf, tmp, len);
319                         }
320                 }
321         }
322
323         if (arch_register_req_is(req, must_be_different)) {
324                 const unsigned other = req->other_different;
325                 int i;
326
327                 ir_snprintf(tmp, sizeof(tmp), " different from:");
328                 for (i = 0; 1U << i <= other; ++i) {
329                         if (other & (1U << i)) {
330                                 ir_snprintf(tmp, sizeof(tmp), " %+F", get_irn_n(skip_Proj_const(node), i));
331                                 strncat(buf, tmp, len);
332                         }
333                 }
334         }
335
336         return buf;
337 }
338
339 static const arch_register_req_t no_requirement = {
340         arch_register_req_type_none,
341         NULL,
342         NULL,
343         0,
344         0
345 };
346 const arch_register_req_t *arch_no_register_req = &no_requirement;