Removed C99 features and fixed 2 wrong assertions.
[libfirm] / ir / be / sparc / sparc_new_nodes.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   This file implements the creation of the achitecture specific firm
23  *          opcodes and the coresponding node constructors for the sparc
24  *          assembler irg.
25  * @version $Id: TEMPLATE_new_nodes.c 26673 2009-10-01 16:43:13Z matze $
26  */
27 #include "config.h"
28
29 #include <stdlib.h>
30
31 #include "irprog_t.h"
32 #include "irgraph_t.h"
33 #include "irnode_t.h"
34 #include "irmode_t.h"
35 #include "ircons_t.h"
36 #include "iropt_t.h"
37 #include "irop.h"
38 #include "irvrfy_t.h"
39 #include "irprintf.h"
40 #include "xmalloc.h"
41
42 #include "../bearch.h"
43
44 #include "sparc_nodes_attr.h"
45 #include "sparc_new_nodes.h"
46 #include "gen_sparc_regalloc_if.h"
47
48 /**
49  * Dumper interface for dumping sparc nodes in vcg.
50  * @param n        the node to dump
51  * @param F        the output file
52  * @param reason   indicates which kind of information should be dumped
53  * @return 0 on success or != 0 on failure
54  */
55 static int sparc_dump_node(ir_node *n, FILE *F, dump_reason_t reason)
56 {
57         ir_mode *mode = NULL;
58
59         switch (reason) {
60                 case dump_node_opcode_txt:
61                         fprintf(F, "%s", get_irn_opname(n));
62                 break;
63
64                 case dump_node_mode_txt:
65                         mode = get_irn_mode(n);
66
67                         if (mode) {
68                                 fprintf(F, "[%s]", get_mode_name(mode));
69                         } else {
70                                 fprintf(F, "[?NOMODE?]");
71                         }
72                 break;
73
74                 case dump_node_nodeattr_txt:
75
76                         /* TODO: dump some attributes which should show up */
77                         /* in node name in dump (e.g. consts or the like)  */
78
79                 break;
80
81                 case dump_node_info_txt:
82                         arch_dump_reqs_and_registers(F, n);
83                 break;
84         }
85
86         return 0;
87 }
88
89 /* ATTRIBUTE INIT SETTERS / HELPERS */
90 static void sparc_set_attr_imm(ir_node *res, int immediate_value)
91 {
92         sparc_attr_t *attr = get_irn_generic_attr(res);
93         attr->immediate_value = immediate_value;
94 }
95
96 static void set_sparc_jmp_cond_proj_num(ir_node *node, int proj_num)
97 {
98         sparc_jmp_cond_attr_t *attr = get_sparc_jmp_cond_attr(node);
99         attr->proj_num = proj_num;
100 }
101
102 static void set_sparc_jmp_switch_n_projs(ir_node *node, int n_projs)
103 {
104         sparc_jmp_switch_attr_t *attr = get_sparc_jmp_switch_attr(node);
105         attr->n_projs = n_projs;
106 }
107
108 static void set_sparc_jmp_switch_default_proj_num(ir_node *node, long def_proj_num)
109 {
110         sparc_jmp_switch_attr_t *attr = get_sparc_jmp_switch_attr(node);
111         attr->default_proj_num = def_proj_num;
112 }
113
114
115 /* ATTRIBUTE GETTERS */
116 sparc_attr_t *get_sparc_attr(ir_node *node)
117 {
118         assert(is_sparc_irn(node) && "need sparc node to get attributes");
119         return (sparc_attr_t *)get_irn_generic_attr(node);
120 }
121
122 const sparc_attr_t *get_sparc_attr_const(const ir_node *node)
123 {
124         assert(is_sparc_irn(node) && "need sparc node to get attributes");
125         return (const sparc_attr_t *)get_irn_generic_attr_const(node);
126 }
127
128
129
130 sparc_load_store_attr_t *get_sparc_load_store_attr(ir_node *node)
131 {
132         assert(is_sparc_irn(node) && "need sparc node to get attributes");
133         return (sparc_load_store_attr_t *)get_irn_generic_attr_const(node);
134 }
135
136 const sparc_load_store_attr_t *get_sparc_load_store_attr_const(const ir_node *node)
137 {
138         assert(is_sparc_irn(node) && "need sparc node to get attributes");
139         return (const sparc_load_store_attr_t *)get_irn_generic_attr_const(node);
140 }
141
142
143
144 sparc_symconst_attr_t *get_sparc_symconst_attr(ir_node *node)
145 {
146         assert((is_sparc_SymConst(node)  || is_sparc_FrameAddr(node)) && "need sparc SymConst/FrameAddr node to get attributes");
147         return (sparc_symconst_attr_t *)get_irn_generic_attr_const(node);
148 }
149
150 const sparc_symconst_attr_t *get_sparc_symconst_attr_const(const ir_node *node)
151 {
152         assert((is_sparc_SymConst(node)  || is_sparc_FrameAddr(node)) && "need sparc SymConst/FrameAddr node to get attributes");
153         return (const sparc_symconst_attr_t *)get_irn_generic_attr_const(node);
154 }
155
156
157 sparc_jmp_cond_attr_t *get_sparc_jmp_cond_attr(ir_node *node)
158 {
159         assert(is_sparc_Branch(node) && "need sparc B node to get attributes");
160         return (sparc_jmp_cond_attr_t *)get_irn_generic_attr_const(node);
161 }
162
163 const sparc_jmp_cond_attr_t *get_sparc_jmp_cond_attr_const(const ir_node *node)
164 {
165         assert(is_sparc_Branch(node) && "need sparc B node to get attributes");
166         return (const sparc_jmp_cond_attr_t *)get_irn_generic_attr_const(node);
167 }
168
169
170 sparc_jmp_switch_attr_t *get_sparc_jmp_switch_attr(ir_node *node)
171 {
172         assert(is_sparc_SwitchJmp(node) && "need sparc SwitchJmp node to get attributes");
173         return (sparc_jmp_switch_attr_t *)get_irn_generic_attr_const(node);
174 }
175
176 const sparc_jmp_switch_attr_t *get_sparc_jmp_switch_attr_const(const ir_node *node)
177 {
178         assert(is_sparc_SwitchJmp(node) && "need sparc SwitchJmp node to get attributes");
179         return (const sparc_jmp_switch_attr_t *)get_irn_generic_attr_const(node);
180 }
181
182
183 sparc_cmp_attr_t *get_sparc_cmp_attr(ir_node *node)
184 {
185         assert(is_sparc_irn(node) && "need sparc node to get attributes");
186         return (sparc_cmp_attr_t *)get_irn_generic_attr_const(node);
187 }
188
189 const sparc_cmp_attr_t *get_sparc_cmp_attr_const(const ir_node *node)
190 {
191         assert(is_sparc_irn(node) && "need sparc node to get attributes");
192         return (const sparc_cmp_attr_t *)get_irn_generic_attr_const(node);
193 }
194
195 /**
196  * Returns the argument register requirements of a sparc node.
197  */
198 const arch_register_req_t **get_sparc_in_req_all(const ir_node *node)
199 {
200         const sparc_attr_t *attr = get_sparc_attr_const(node);
201         return attr->in_req;
202 }
203
204 /**
205  * Returns the argument register requirement at position pos of an sparc node.
206  */
207 const arch_register_req_t *get_sparc_in_req(const ir_node *node, int pos)
208 {
209         const sparc_attr_t *attr = get_sparc_attr_const(node);
210         return attr->in_req[pos];
211 }
212
213 /**
214  * Sets the IN register requirements at position pos.
215  */
216 void set_sparc_req_in(ir_node *node, const arch_register_req_t *req, int pos)
217 {
218         sparc_attr_t *attr  = get_sparc_attr(node);
219         attr->in_req[pos] = req;
220 }
221
222 /**
223  * Initializes the nodes attributes.
224  */
225 void init_sparc_attributes(ir_node *node, arch_irn_flags_t flags,
226                                 const arch_register_req_t **in_reqs,
227                                 const be_execution_unit_t ***execution_units,
228                                 int n_res)
229 {
230         ir_graph        *irg  = get_irn_irg(node);
231         struct obstack  *obst = get_irg_obstack(irg);
232         sparc_attr_t *attr = get_sparc_attr(node);
233         backend_info_t  *info;
234         (void) execution_units;
235
236         arch_irn_set_flags(node, flags);
237         attr->in_req  = in_reqs;
238         attr->is_load_store = false;
239
240         info            = be_get_info(node);
241         info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_res);
242         memset(info->out_infos, 0, n_res * sizeof(info->out_infos[0]));
243 }
244
245 /* CUSTOM ATTRIBUTE INIT FUNCTIONS */
246 static void init_sparc_load_store_attributes(ir_node *res, ir_mode *ls_mode,
247                                                                                         ir_entity *entity,
248                                                                                         int entity_sign, long offset,
249                                                                                         bool is_frame_entity)
250 {
251         sparc_load_store_attr_t *attr = get_irn_generic_attr(res);
252     attr->load_store_mode    = ls_mode;
253         attr->entity             = entity;
254         attr->entity_sign        = entity_sign;
255         attr->is_frame_entity    = is_frame_entity;
256         attr->offset             = offset;
257         attr->base.is_load_store = true;
258 }
259
260 static void init_sparc_cmp_attr(ir_node *res, bool ins_permuted, bool is_unsigned)
261 {
262         sparc_cmp_attr_t *attr = get_irn_generic_attr(res);
263         attr->ins_permuted = ins_permuted;
264         attr->is_unsigned  = is_unsigned;
265 }
266
267 static void init_sparc_symconst_attributes(ir_node *res, ir_entity *entity)
268 {
269         sparc_symconst_attr_t *attr = get_irn_generic_attr(res);
270         attr->entity    = entity;
271         attr->fp_offset = 0;
272 }
273
274 /**
275  * copies sparc attributes of  node
276  */
277 static void sparc_copy_attr(const ir_node *old_node, ir_node *new_node) {
278         ir_graph          *irg     = get_irn_irg(new_node);
279         struct obstack    *obst    = get_irg_obstack(irg);
280          const sparc_attr_t *attr_old = get_sparc_attr_const(old_node);
281         sparc_attr_t       *attr_new = get_sparc_attr(new_node);
282         backend_info_t    *old_info = be_get_info(old_node);
283         backend_info_t    *new_info = be_get_info(new_node);
284
285         /* copy the attributes */
286         memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
287         /* copy out flags */
288         new_info->out_infos =
289                 DUP_ARR_D(reg_out_info_t, obst, old_info->out_infos);
290 }
291
292
293 /**
294  * compare some node's attributes
295  */
296 static int cmp_attr_sparc(ir_node *a, ir_node *b)
297 {
298         const sparc_attr_t *attr_a = get_sparc_attr_const(a);
299         const sparc_attr_t *attr_b = get_sparc_attr_const(b);
300         (void) attr_a;
301         (void) attr_b;
302
303         return 0;
304 }
305
306
307 /* CUSTOM ATTRIBUTE CMP FUNCTIONS */
308 static int cmp_attr_sparc_load_store(ir_node *a, ir_node *b)
309 {
310         return 0;
311 }
312
313 static int cmp_attr_sparc_symconst(ir_node *a, ir_node *b)
314 {
315         return 0;
316 }
317
318 static int cmp_attr_sparc_jmp_cond(ir_node *a, ir_node *b)
319 {
320         return 0;
321 }
322
323 static int cmp_attr_sparc_jmp_switch(ir_node *a, ir_node *b)
324 {
325         return 0;
326 }
327
328 static int cmp_attr_sparc_cmp(ir_node *a, ir_node *b)
329 {
330         return 0;
331 }
332
333 /* Include the generated constructor functions */
334 #include "gen_sparc_new_nodes.c.inl"