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