48524a0d01229bf1141a062e9f68c2ffddfec002
[libfirm] / ir / be / TEMPLATE / TEMPLATE_emitter.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   emit assembler for a backend graph
23  * @version $Id$
24  */
25 #include "config.h"
26
27 #include <limits.h>
28
29 #include "xmalloc.h"
30 #include "tv.h"
31 #include "iredges.h"
32 #include "debug.h"
33 #include "irgwalk.h"
34 #include "irprintf.h"
35 #include "irop_t.h"
36 #include "irargs_t.h"
37 #include "irprog.h"
38
39 #include "../besched.h"
40 #include "../begnuas.h"
41
42 #include "TEMPLATE_emitter.h"
43 #include "gen_TEMPLATE_emitter.h"
44 #include "TEMPLATE_nodes_attr.h"
45 #include "TEMPLATE_new_nodes.h"
46
47 #define SNPRINTF_BUF_LEN 128
48
49 /**
50  * Returns the register at in position pos.
51  */
52 static const arch_register_t *get_in_reg(const ir_node *node, int pos)
53 {
54         ir_node                *op;
55         const arch_register_t  *reg = NULL;
56
57         assert(get_irn_arity(node) > pos && "Invalid IN position");
58
59         /* The out register of the operator at position pos is the
60            in register we need. */
61         op = get_irn_n(node, pos);
62
63         reg = arch_get_irn_register(op);
64
65         assert(reg && "no in register found");
66         return reg;
67 }
68
69 /**
70  * Returns the register at out position pos.
71  */
72 static const arch_register_t *get_out_reg(const ir_node *node, int pos)
73 {
74         ir_node                *proj;
75         const arch_register_t  *reg = NULL;
76
77         /* 1st case: irn is not of mode_T, so it has only                 */
78         /*           one OUT register -> good                             */
79         /* 2nd case: irn is of mode_T -> collect all Projs and ask the    */
80         /*           Proj with the corresponding projnum for the register */
81
82         if (get_irn_mode(node) != mode_T) {
83                 reg = arch_get_irn_register(node);
84         } else if (is_TEMPLATE_irn(node)) {
85                 reg = arch_irn_get_register(node, pos);
86         } else {
87                 const ir_edge_t *edge;
88
89                 foreach_out_edge(node, edge) {
90                         proj = get_edge_src_irn(edge);
91                         assert(is_Proj(proj) && "non-Proj from mode_T node");
92                         if (get_Proj_proj(proj) == pos) {
93                                 reg = arch_get_irn_register(proj);
94                                 break;
95                         }
96                 }
97         }
98
99         assert(reg && "no out register found");
100         return reg;
101 }
102
103 /*************************************************************
104  *             _       _    __   _          _
105  *            (_)     | |  / _| | |        | |
106  *  _ __  _ __ _ _ __ | |_| |_  | |__   ___| |_ __   ___ _ __
107  * | '_ \| '__| | '_ \| __|  _| | '_ \ / _ \ | '_ \ / _ \ '__|
108  * | |_) | |  | | | | | |_| |   | | | |  __/ | |_) |  __/ |
109  * | .__/|_|  |_|_| |_|\__|_|   |_| |_|\___|_| .__/ \___|_|
110  * | |                                       | |
111  * |_|                                       |_|
112  *************************************************************/
113
114 void TEMPLATE_emit_immediate(const ir_node *node)
115 {
116         (void) node;
117         /* TODO */
118 }
119
120 void TEMPLATE_emit_source_register(const ir_node *node, int pos)
121 {
122         const arch_register_t *reg = get_in_reg(node, pos);
123         be_emit_string(arch_register_get_name(reg));
124 }
125
126 void TEMPLATE_emit_dest_register(const ir_node *node, int pos)
127 {
128         const arch_register_t *reg = get_out_reg(node, pos);
129         be_emit_string(arch_register_get_name(reg));
130 }
131
132 /**
133  * Returns the target label for a control flow node.
134  */
135 static void TEMPLATE_emit_cfop_target(const ir_node *node)
136 {
137         ir_node *block = get_irn_link(node);
138         be_gas_emit_block_name(block);
139 }
140
141 /***********************************************************************************
142  *                  _          __                                             _
143  *                 (_)        / _|                                           | |
144  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
145  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
146  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
147  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
148  *
149  ***********************************************************************************/
150
151 /**
152  * Emits code for a unconditional jump.
153  */
154 static void emit_Jmp(const ir_node *node)
155 {
156         ir_node *block;
157
158         /* for now, the code works for scheduled and non-schedules blocks */
159         block = get_nodes_block(node);
160
161         be_emit_cstring("\tjmp ");
162         TEMPLATE_emit_cfop_target(node);
163         be_emit_finish_line_gas(node);
164 }
165
166 /**
167  * Enters the emitter functions for handled nodes into the generic
168  * pointer of an opcode.
169  */
170 static void TEMPLATE_register_emitters(void)
171 {
172
173 /* some convienience macros to register additional emitter functions
174    (other than the generated ones) */
175 #define TEMPLATE_EMIT(a) op_TEMPLATE_##a->ops.generic = (op_func)emit_TEMPLATE_##a
176 #define EMIT(a)          op_##a->ops.generic = (op_func)emit_##a
177 #define BE_EMIT(a)       op_be_##a->ops.generic = (op_func)emit_be_##a
178
179         /* first clear the generic function pointer for all ops */
180         clear_irp_opcodes_generic_func();
181
182         /* register all emitter functions defined in spec */
183         TEMPLATE_register_spec_emitters();
184
185         /* register addtional emitter functions if needed */
186         EMIT(Jmp);
187
188 #undef TEMPLATE_EMIT
189 #undef BE_EMIT
190 #undef EMIT
191 }
192
193 typedef void (*emit_func_ptr) (const ir_node *);
194
195 /**
196  * Emits code for a node.
197  */
198 static void TEMPLATE_emit_node(const ir_node *node)
199 {
200         ir_op               *op       = get_irn_op(node);
201
202         if (op->ops.generic) {
203                 emit_func_ptr func = (emit_func_ptr) op->ops.generic;
204                 (*func) (node);
205         } else {
206                 ir_fprintf(stderr, "No emitter for node %+F\n", node);
207         }
208 }
209
210 /**
211  * Walks over the nodes in a block connected by scheduling edges
212  * and emits code for each node.
213  */
214 static void TEMPLATE_gen_block(ir_node *block, void *data)
215 {
216         ir_node *node;
217         (void) data;
218
219         if (! is_Block(block))
220                 return;
221
222         be_gas_emit_block_name(block);
223         be_emit_cstring(":\n");
224         be_emit_write_line();
225
226         sched_foreach(block, node) {
227                 TEMPLATE_emit_node(node);
228         }
229 }
230
231
232 /**
233  * Emits code for function start.
234  */
235 static void TEMPLATE_emit_func_prolog(ir_graph *irg)
236 {
237         const char *irg_name = get_entity_name(get_irg_entity(irg));
238
239         /* TODO: emit function header */
240         be_emit_cstring("/* start of ");
241         be_emit_string(irg_name);
242         be_emit_cstring(" */\n");
243         be_emit_write_line();
244 }
245
246 /**
247  * Emits code for function end
248  */
249 static void TEMPLATE_emit_func_epilog(ir_graph *irg)
250 {
251         const char *irg_name = get_entity_name(get_irg_entity(irg));
252
253         /* TODO: emit function end */
254         be_emit_cstring("/* end of ");
255         be_emit_string(irg_name);
256         be_emit_cstring(" */\n");
257         be_emit_write_line();
258 }
259
260 /**
261  * Sets labels for control flow nodes (jump target)
262  */
263 static void TEMPLATE_gen_labels(ir_node *block, void *env)
264 {
265         ir_node *pred;
266         int n = get_Block_n_cfgpreds(block);
267         (void) env;
268
269         for (n--; n >= 0; n--) {
270                 pred = get_Block_cfgpred(block, n);
271                 set_irn_link(pred, block);
272         }
273 }
274
275 /**
276  * Main driver
277  */
278 void TEMPLATE_gen_routine(const TEMPLATE_code_gen_t *cg, ir_graph *irg)
279 {
280         (void)cg;
281
282         /* register all emitter functions */
283         TEMPLATE_register_emitters();
284
285         TEMPLATE_emit_func_prolog(irg);
286         irg_block_walk_graph(irg, TEMPLATE_gen_labels, NULL, NULL);
287         irg_walk_blkwise_graph(irg, NULL, TEMPLATE_gen_block, NULL);
288         TEMPLATE_emit_func_epilog(irg);
289 }