fixed precedence constraint
[libfirm] / ir / be / arm / arm_emitter.c
1 #define SILENCER
2 /* arm emitter */
3 /* $Id$ */
4
5 #ifdef HAVE_CONFIG_H
6 #include "config.h"
7 #endif
8
9 #include <limits.h>
10
11 #include "xmalloc.h"
12 #include "tv.h"
13 #include "iredges.h"
14 #include "debug.h"
15 #include "irgwalk.h"
16 #include "irprintf.h"
17 #include "irop_t.h"
18 #include "irprog_t.h"
19 #include "irargs_t.h"
20
21 #include "../besched.h"
22 #include "../beblocksched.h"
23
24 #include "arm_emitter.h"
25 #include "gen_arm_emitter.h"
26 #include "arm_nodes_attr.h"
27 #include "arm_new_nodes.h"
28 #include "arm_map_regs.h"
29 #include "gen_arm_regalloc_if.h"
30
31 #include "../benode_t.h"
32
33 #define SNPRINTF_BUF_LEN 128
34
35 static const arch_env_t *arch_env = NULL;
36
37 /**
38  * Switch to a new section
39  */
40 void arm_switch_section(FILE *f, sections sec) {
41         static sections curr_sec = NO_SECTION;
42
43         if (curr_sec == sec)
44                 return;
45
46         curr_sec = sec;
47         switch (sec) {
48
49         case NO_SECTION:
50                 break;
51
52         case SECTION_TEXT:
53                 fprintf(f, "\t.text\n");
54                 break;
55
56         case SECTION_DATA:
57                 fprintf(f, "\t.data\n");
58                 break;
59
60         default:
61                 assert(0);
62         }
63 }
64
65 /*************************************************************
66  *             _       _    __   _          _
67  *            (_)     | |  / _| | |        | |
68  *  _ __  _ __ _ _ __ | |_| |_  | |__   ___| |_ __   ___ _ __
69  * | '_ \| '__| | '_ \| __|  _| | '_ \ / _ \ | '_ \ / _ \ '__|
70  * | |_) | |  | | | | | |_| |   | | | |  __/ | |_) |  __/ |
71  * | .__/|_|  |_|_| |_|\__|_|   |_| |_|\___|_| .__/ \___|_|
72  * | |                                       | |
73  * |_|                                       |_|
74  *************************************************************/
75
76 /**
77  * Returns non-zero if a mode has a Immediate attribute.
78  */
79 int is_immediate_node(ir_node *irn) {
80         arm_attr_t *attr = get_arm_attr(irn);
81         return ARM_GET_SHF_MOD(attr) == ARM_SHF_IMM;
82 }
83
84 /**
85  * Return a const or SymConst as string.
86  */
87 static const char *node_const_to_str(ir_node *n, char *buf, int buflen) {
88         if (is_immediate_node(n)) {
89                 snprintf(buf, buflen, "#0x%X", arm_decode_imm_w_shift(get_arm_value(n)));
90                 return buf;
91         }
92         else if (is_arm_SymConst(n))
93                 return get_arm_symconst_label(n);
94
95         assert( 0 && "das ist gar keine Konstante");
96         return NULL;
97 }
98
99 /**
100  * Returns node's offset as string.
101  */
102 static const char *node_offset_to_str(ir_node *n, char *buf, int buflen) {
103         int offset = 0;
104         ir_op *irn_op = get_irn_op(n);
105
106         if (irn_op == op_be_StackParam) {
107                 ir_entity *ent = be_get_frame_entity(n);
108                 offset = get_entity_offset(ent);
109         } else if (irn_op == op_be_Reload || irn_op == op_be_Spill) {
110                 ir_entity *ent = be_get_frame_entity(n);
111                 offset = get_entity_offset(ent);
112         } else if (irn_op == op_be_IncSP) {
113                 offset = - be_get_IncSP_offset(n);
114         } else {
115                 return "node_offset_to_str will fuer diesen Knotentyp noch implementiert werden";
116         }
117         snprintf(buf, buflen, "%d", offset);
118         return buf;
119 }
120
121 /* We always pass the ir_node which is a pointer. */
122 static int arm_get_arg_type(const lc_arg_occ_t *occ) {
123         return lc_arg_type_ptr;
124 }
125
126
127 /**
128  * Returns the register at in position pos.
129  */
130 static const arch_register_t *get_in_reg(const ir_node *irn, int pos) {
131         ir_node                *op;
132         const arch_register_t  *reg = NULL;
133
134         assert(get_irn_arity(irn) > pos && "Invalid IN position");
135
136         /* The out register of the operator at position pos is the
137            in register we need. */
138         op = get_irn_n(irn, pos);
139
140         reg = arch_get_irn_register(arch_env, op);
141
142         assert(reg && "no in register found");
143         return reg;
144 }
145
146 /**
147  * Returns the register at out position pos.
148  */
149 static const arch_register_t *get_out_reg(const ir_node *irn, int pos) {
150         ir_node                *proj;
151         const arch_register_t  *reg = NULL;
152
153         assert(get_irn_n_edges(irn) > pos && "Invalid OUT position");
154
155         /* 1st case: irn is not of mode_T, so it has only                 */
156         /*           one OUT register -> good                             */
157         /* 2nd case: irn is of mode_T -> collect all Projs and ask the    */
158         /*           Proj with the corresponding projnum for the register */
159
160         if (get_irn_mode(irn) != mode_T) {
161                 reg = arch_get_irn_register(arch_env, irn);
162         }
163         else if (is_arm_irn(irn)) {
164                 reg = get_arm_out_reg(irn, pos);
165         }
166         else {
167                 const ir_edge_t *edge;
168
169                 foreach_out_edge(irn, edge) {
170                         proj = get_edge_src_irn(edge);
171                         assert(is_Proj(proj) && "non-Proj from mode_T node");
172                         if (get_Proj_proj(proj) == pos) {
173                                 reg = arch_get_irn_register(arch_env, proj);
174                                 break;
175                         }
176                 }
177         }
178
179         assert(reg && "no out register found");
180         return reg;
181 }
182
183 /**
184  * Returns the number of the in register at position pos.
185  */
186 int get_arm_reg_nr(ir_node *irn, int pos, int in_out) {
187         const arch_register_t *reg;
188
189         if (in_out == 1) {
190                 reg = get_in_reg(irn, pos);
191         }
192         else {
193                 reg = get_out_reg(irn, pos);
194         }
195
196         return arch_register_get_index(reg);
197 }
198
199 /**
200  * Returns the name of the in register at position pos.
201  */
202 const char *get_arm_reg_name(ir_node *irn, int pos, int in_out) {
203         const arch_register_t *reg;
204
205         if (in_out == 1) {
206                 reg = get_in_reg(irn, pos);
207         }
208         else {
209                 reg = get_out_reg(irn, pos);
210         }
211
212         return arch_register_get_name(reg);
213 }
214
215 /**
216  * Get the register name for a node.
217  */
218 static int arm_get_reg_name(lc_appendable_t *app,
219     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
220 {
221         const char *buf;
222         ir_node    *X  = arg->v_ptr;
223         int         nr = occ->width - 1;
224
225         if (!X)
226                 return lc_appendable_snadd(app, "(null)", 6);
227
228         if (occ->conversion == 'S') {
229                 buf = get_arm_reg_name(X, nr, 1);
230         }
231         else { /* 'D' */
232                 buf = get_arm_reg_name(X, nr, 0);
233         }
234
235         lc_appendable_chadd(app, '%');
236         return lc_appendable_snadd(app, buf, strlen(buf));
237 }
238
239 /**
240  * Returns the tarval or offset of an arm node as a string.
241  */
242 static int arm_const_to_str(lc_appendable_t *app,
243     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
244 {
245         char buffer[SNPRINTF_BUF_LEN];
246         const char *buf;
247         ir_node    *X = arg->v_ptr;
248
249         if (!X)
250                 return lc_appendable_snadd(app, "(null)", 6);
251
252         if (occ->conversion == 'C') {
253                 buf = node_const_to_str(X, buffer, sizeof(buffer));
254         }
255         else { /* 'O' */
256                 buf = node_offset_to_str(X, buffer, sizeof(buffer));
257         }
258
259         return lc_appendable_snadd(app, buf, strlen(buf));
260 }
261
262 /**
263  * Returns the tarval or offset of an arm node as a string.
264  */
265 static int arm_shift_str(lc_appendable_t *app,
266     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
267 {
268         char buffer[SNPRINTF_BUF_LEN];
269         ir_node            *irn = arg->v_ptr;
270         arm_shift_modifier mod;
271
272         if (!irn)
273                 return lc_appendable_snadd(app, "(null)", 6);
274
275         mod = get_arm_shift_modifier(irn);
276         if (ARM_HAS_SHIFT(mod)) {
277                 long v = get_tarval_long(get_arm_value(irn));
278
279                 snprintf(buffer, sizeof(buffer), ", %s #%ld", arm_shf_mod_name(mod), v);
280                 return lc_appendable_snadd(app, buffer, strlen(buffer));
281         }
282         return 0;
283 }
284
285 /**
286  * Determines the instruction suffix depending on the mode.
287  */
288 static int arm_get_mode_suffix(lc_appendable_t *app,
289     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
290 {
291         ir_node *irn = arg->v_ptr;
292         arm_attr_t *attr;
293         ir_mode *mode;
294         int bits;
295
296         if (! irn)
297                 return lc_appendable_snadd(app, "(null)", 6);
298
299         attr = get_arm_attr(irn);
300         mode = attr->op_mode ? attr->op_mode : get_irn_mode(irn);
301         bits = get_mode_size_bits(mode);
302
303         if (bits == 32)
304                 return lc_appendable_chadd(app, 's');
305         else if (bits == 64)
306                 return lc_appendable_chadd(app, 'd');
307         else
308                 return lc_appendable_chadd(app, 'e');
309 }
310
311 /**
312  * Return the arm printf arg environment.
313  * We use the firm environment with some additional handlers.
314  */
315 const lc_arg_env_t *arm_get_arg_env(void) {
316         static lc_arg_env_t *env = NULL;
317
318         static const lc_arg_handler_t arm_reg_handler   = { arm_get_arg_type, arm_get_reg_name };
319         static const lc_arg_handler_t arm_const_handler = { arm_get_arg_type, arm_const_to_str };
320         static const lc_arg_handler_t arm_mode_handler  = { arm_get_arg_type, arm_get_mode_suffix };
321         static const lc_arg_handler_t arm_shf_handler   = { arm_get_arg_type, arm_shift_str };
322
323         if (env == NULL) {
324                 /* extend the firm printer */
325                 env = firm_get_arg_env();
326                         //lc_arg_new_env();
327
328                 lc_arg_register(env, "arm:sreg", 'S', &arm_reg_handler);
329                 lc_arg_register(env, "arm:dreg", 'D', &arm_reg_handler);
330                 lc_arg_register(env, "arm:cnst", 'C', &arm_const_handler);
331                 lc_arg_register(env, "arm:offs", 'O', &arm_const_handler);
332                 lc_arg_register(env, "arm:mode", 'M', &arm_mode_handler);
333                 lc_arg_register(env, "arm:shf",  'X', &arm_shf_handler);
334         }
335
336         return env;
337 }
338
339 /**
340  * Formated print of commands and comments.
341  */
342 static void arm_fprintf_format(FILE *F, const char *cmd_buf, const char *cmnt_buf, const ir_node *irn) {
343         lc_efprintf(arm_get_arg_env(), F, "\t%-35s %-60s /* %+F (%G) */\n", cmd_buf, cmnt_buf, irn, irn);
344 }
345
346 /**
347  * Returns a unique label. This number will not be used a second time.
348  */
349 static unsigned get_unique_label(void) {
350         static unsigned id = 0;
351         return ++id;
352 }
353
354 /**
355  * Emit a SymConst
356  */
357 static void emit_arm_SymConst(ir_node *irn, void *env) {
358         arm_emit_env_t *emit_env = env;
359         FILE *F = emit_env->out;
360         SymConstEntry *entry = obstack_alloc(&emit_env->obst, sizeof(*entry));
361         const lc_arg_env_t *arg_env = arm_get_arg_env();
362         char cmd_buf[256];
363
364         entry->label      = get_unique_label();
365         entry->symconst   = irn;
366         entry->next       = emit_env->symbols;
367         emit_env->symbols = entry;
368
369         lc_esnprintf(arg_env, cmd_buf, 256, "ldr %1D, .L%u", irn, entry->label);
370         arm_fprintf_format(F, cmd_buf, "/* indirect SymConst */", irn);
371 }
372
373 /**
374  * Returns the next block in a block schedule.
375  */
376 static ir_node *sched_next_block(ir_node *block) {
377     return get_irn_link(block);
378 }
379
380 /**
381  * Emit a conditional jump.
382  */
383 static void emit_arm_CondJmp(ir_node *irn, void *env) {
384         arm_emit_env_t *emit_env = env;
385         FILE *out = emit_env->out;
386         const ir_edge_t *edge;
387         ir_node *true_block = NULL;
388         ir_node *false_block = NULL;
389         ir_node *op1 = get_irn_n(irn, 0);
390         ir_mode *opmode = get_irn_mode(op1);
391         char *suffix;
392         int proj_num = get_arm_proj_num(irn);
393         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
394
395
396         foreach_out_edge(irn, edge) {
397                 ir_node *proj = get_edge_src_irn(edge);
398                 long nr = get_Proj_proj(proj);
399                 ir_node *block = get_irn_link(proj);
400                 if ( nr == pn_Cond_true) {
401                         true_block = block;
402                 } else if (nr == pn_Cond_false) {
403                         false_block = block;
404                 } else {
405                         assert(0 && "tertium non datur! (CondJmp)");
406                 }
407         }
408
409         if (proj_num == pn_Cmp_False) {
410                 /* always false: should not happen */
411                 fprintf(out, "\tb BLOCK_%ld\t\t\t/* false case */\n", get_irn_node_nr(false_block));
412         } else if (proj_num == pn_Cmp_True) {
413                 /* always true: should not happen */
414                 fprintf(out, "\tb BLOCK_%ld\t\t\t/* true case */\n", get_irn_node_nr(true_block));
415         } else {
416                 ir_node *block = get_nodes_block(irn);
417
418                 if (mode_is_float(opmode)) {
419                         suffix = "ICHWILLIMPLEMENTIERTWERDEN";
420
421                         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "fcmp %1S, %2S", irn, irn);
422                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* Compare(%1S, %2S) -> FCPSR */", irn, irn );
423                         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
424
425                         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "fmstat", irn, irn);
426                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* FCSPR -> CPSR */");
427                         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
428                 } else {
429                         if (true_block == sched_next_block(block)) {
430                                 /* negate it */
431                                 proj_num = get_negated_pnc(proj_num, opmode);
432                         }
433                         switch(proj_num) {
434                                 case pn_Cmp_Eq:  suffix = "eq"; break;
435                                 case pn_Cmp_Lt:  suffix = "lt"; break;
436                                 case pn_Cmp_Le:  suffix = "le"; break;
437                                 case pn_Cmp_Gt:  suffix = "gt"; break;
438                                 case pn_Cmp_Ge:  suffix = "ge"; break;
439                                 case pn_Cmp_Lg:  suffix = "ne"; break;
440                                 case pn_Cmp_Leg: suffix = "al"; break;
441                         default: assert(0 && "komische Dinge geschehen"); suffix = "al";
442                         }
443
444                         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "cmp %1S, %2S", irn, irn);
445                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* Compare(%1S, %2S) -> CPSR */", irn, irn );
446                         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
447                 }
448
449                 if (true_block == sched_next_block(block)) {
450                         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "b%s BLOCK_%d", suffix, get_irn_node_nr(true_block));
451                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* false case */");
452                         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
453
454                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* fallthrough BLOCK_%d */", get_irn_node_nr(false_block));
455                         arm_fprintf_format(out, "", cmnt_buf, irn);
456                 }
457                 else {
458                         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "b%s BLOCK_%d", suffix, get_irn_node_nr(true_block));
459                         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* true case */");
460                         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
461
462             if (false_block == sched_next_block(block)) {
463                 lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* fallthrough BLOCK_%d */", get_irn_node_nr(false_block));
464                 arm_fprintf_format(out, "", cmnt_buf, irn);
465             }
466             else {
467                             lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "b BLOCK_%d", get_irn_node_nr(false_block));
468                             lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* false case */");
469                             arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
470             }
471         }
472         }
473 }
474
475 static void emit_arm_CopyB(ir_node *irn, void *env) {
476         arm_emit_env_t *emit_env = env;
477         FILE *out = emit_env->out;
478         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
479         unsigned int size = get_tarval_long(get_arm_value(irn));
480         const lc_arg_env_t *arg_env = arm_get_arg_env();
481
482         lc_esnprintf(arg_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* MemCopy (%2S)->(%1S) [%d bytes], Use %3S, %4S, %5S and %%r12 */", irn, irn, size, irn, irn, irn);
483
484         assert ( size > 0 && "CopyB needs size > 0" );
485         if (size & 3)
486                 size += 4;
487         size >>= 2;
488         switch(size & 3) {
489         case 0:
490                 break;
491         case 1:
492                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ldr %%r12, [%2S, #0]!", irn);
493                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
494                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "str  %%r12, [%1S, #0]!", irn);
495                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
496                 break;
497         case 2:
498                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ldmia %2S!, {%%r12, %3S}", irn, irn);
499                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
500                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "stmia %1S!, {%%r12, %3S}", irn, irn);
501                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
502                 break;
503         case 3:
504                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ldmia %2S!, {%%r12, %3S, %4S}", irn, irn, irn);
505                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
506                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "stmia %1S!, {%%r12, %3S, %4S}", irn, irn, irn);
507                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
508                 break;
509         }
510         size >>= 2;
511         while (size) {
512                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ldmia %2S!, {%%r12, %3S, %4S, %5S}", irn, irn, irn, irn);
513                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
514                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "stmia %1S!, {%%r12, %3S, %4S, %5S}", irn, irn, irn, irn);
515                 arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
516                 --size;
517         }
518 }
519
520 static void emit_arm_SwitchJmp(ir_node *irn, void *env) {
521         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
522         const ir_edge_t    *edge;
523         ir_node            *proj;
524         arm_emit_env_t *emit_env = env;
525         FILE *out = emit_env->out;
526         int i;
527         ir_node **projs;
528         int n_projs;
529         int block_nr;
530         int default_block_num;
531
532         block_nr = get_irn_node_nr(irn);
533         n_projs = get_arm_n_projs(irn);
534
535         projs = xcalloc(n_projs , sizeof(ir_node*));
536
537         foreach_out_edge(irn, edge) {
538                 proj = get_edge_src_irn(edge);
539                 assert(is_Proj(proj) && "Only proj allowed at SwitchJmp");
540
541                 if (get_Proj_proj(proj) == get_arm_default_proj_num(irn))
542                         default_block_num = get_irn_node_nr(get_irn_link(proj));
543
544                 projs[get_Proj_proj(proj)] = proj;
545         }
546
547         // CMP %1S, n_projs - 1
548         // BHI default
549
550
551
552         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "cmp %1S, #%u", irn, n_projs - 1);
553         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "", irn);
554         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
555
556         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "bhi BLOCK_%d", default_block_num);
557         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "", irn);
558         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
559
560
561         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "ldr %%r12, TABLE_%d_START", block_nr);
562         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "", irn);
563         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
564
565         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %%r12, %%r12, %1S, LSL #2", irn);
566         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "", irn);
567         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
568
569         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "ldr %%r15, [%%r12, #0]");
570         lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "", irn);
571         arm_fprintf_format(out, cmd_buf, cmnt_buf, irn);
572
573         // LDR %r12, .TABLE_X_START
574         // ADD %r12, %r12, [%1S, LSL #2]
575         // LDR %r15, %r12
576
577         fprintf(out, "TABLE_%d_START:\n\t.word\tTABLE_%d\n", block_nr, block_nr);
578         fprintf(out, "\t.align 2\n");
579         fprintf(out, "TABLE_%d:\n", block_nr);
580
581
582         for ( i=0; i<n_projs; i++) {
583                 ir_node *block;
584                 proj = projs[i];
585                 if ( proj ) {
586                         block = get_irn_link(proj);
587                 } else {
588                         block = get_irn_link(projs[get_arm_default_proj_num(irn)]);
589                 }
590                 fprintf(out, "\t.word\tBLOCK_%ld\n",get_irn_node_nr(block));
591         }
592         fprintf(out, "\t.align 2\n");
593
594         xfree(projs);
595 }
596
597 /************************************************************************/
598 /* emit_be                                                              */
599 /************************************************************************/
600
601 static void emit_be_Call(ir_node *irn, void *env) {
602         arm_emit_env_t *emit_env = env;
603         FILE *F = emit_env->out;
604         ir_entity *ent = be_Call_get_entity(irn);
605     char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
606
607     if (ent)
608             lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "bl %s", get_entity_ld_name(ent));
609     else
610         lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "%1D", get_irn_n(irn, be_pos_Call_ptr));
611     lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F (be_Call) */", irn);
612     arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
613 }
614
615 /** Emit an IncSP node */
616 static void emit_be_IncSP(const ir_node *irn, arm_emit_env_t *emit_env) {
617         FILE *F = emit_env->out;
618         int offs = be_get_IncSP_offset(irn);
619
620         if (offs != 0) {
621                 char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
622                 lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1D, %1S, #%O", irn, irn, irn );
623                 lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* IncSP(%O) */", irn);
624                 arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
625         } else {
626                 char cmnt_buf[SNPRINTF_BUF_LEN];
627                 lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* omitted IncSP(%O) */", irn);
628                 arm_fprintf_format(F, "", cmnt_buf, irn);
629         }
630 }
631
632 // void emit_be_AddSP(const ir_node *irn, arm_emit_env_t *emit_env) {
633 //      FILE *F = emit_env->out;
634 //      char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
635 //      lc_esnprintf(arm_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "ADD %1D, %1S, %2S", irn, irn, irn );
636 //      lc_esnprintf(arm_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* AddSP(%2S) */", irn);
637 //      lc_efprintf(arm_get_arg_env(), F, "\t%-35s %-60s /* %+F */\n", cmd_buf, cmnt_buf, irn);
638 // }
639
640 static void emit_be_Copy(const ir_node *irn, arm_emit_env_t *emit_env) {
641         FILE *F    = emit_env->out;
642         ir_mode *mode = get_irn_mode(irn);
643         const lc_arg_env_t *arm_env = arm_get_arg_env();
644         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
645
646         if (get_in_reg(irn, 0) == get_out_reg(irn, 0)) {
647                 lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* omitted Copy: %1S -> %1D */", irn, irn);
648                 lc_efprintf(arm_env, F, "\t%-35s %-60s /* %+F */\n", "", cmnt_buf, irn);
649                 return;
650         }
651
652         if (mode_is_float(mode)) {
653                 if (USE_FPA(emit_env->cg->isa)) {
654                         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "mvf%M %1D, %1S", irn, irn, irn);
655                         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Copy: %1S -> %1D */", irn, irn);
656                         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
657                 }
658                 else {
659                         assert(0 && "move not supported for this mode");
660                 }
661         } else if (mode_is_numP(mode)) {
662                 lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %1S", irn, irn);
663                 lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Copy: %1S -> %1D */", irn, irn);
664                 arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
665         } else {
666                 assert(0 && "move not supported for this mode");
667         }
668 //      emit_arm_Copy(irn, emit_env);
669 }
670
671 /**
672  * Emit code for a Spill.
673  */
674 static void emit_be_Spill(const ir_node *irn, arm_emit_env_t *emit_env) {
675         FILE *F = emit_env->out;
676         ir_mode *mode = get_irn_mode(irn);
677         const lc_arg_env_t *arm_env = arm_get_arg_env();
678         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
679
680         if (mode_is_float(mode)) {
681                 if (USE_FPA(emit_env->cg->isa)) {
682                         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "stf %2S, [%1S, #%O]", irn, irn, irn );
683                         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Spill(%2S) -> (%1S) */", irn, irn);
684                         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
685                 }
686                 else {
687                         assert(0 && "move not supported for this mode");
688                 }
689         } else if (mode_is_dataM(mode)) {
690                 lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "str %2S, [%1S, #%O]", irn, irn, irn );
691                 lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Spill(%2S) -> (%1S) */", irn, irn);
692                 arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
693         } else {
694                 assert(0 && "spill not supported for this mode");
695         }
696 }
697
698 /**
699  * Emit code for a Reload.
700  */
701 static void emit_be_Reload(const ir_node* irn, arm_emit_env_t *emit_env) {
702         FILE *F = emit_env->out;
703         ir_mode *mode = get_irn_mode(irn);
704         const lc_arg_env_t *arm_env = arm_get_arg_env();
705         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
706
707         if (mode_is_float(mode)) {
708                 if (USE_FPA(emit_env->cg->isa)) {
709                         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "ldf %1D, [%1S, #%O]", irn, irn, irn );
710                         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Reload(%1S) -> (%1D) */", irn, irn);
711                         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
712                 }
713                 else {
714                         assert(0 && "move not supported for this mode");
715                 }
716         } else if (mode_is_dataM(mode)) {
717                 lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "ldr %1D, [%1S, #%O]", irn, irn, irn );
718                 lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* Reload(%1S) -> (%1D) */", irn, irn);
719                 arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
720         } else {
721                 assert(0 && "reload not supported for this mode");
722         }
723 }
724
725 static void emit_be_Perm(const ir_node* irn, arm_emit_env_t *emit_env) {
726         FILE *F = emit_env->out;
727         const lc_arg_env_t *arm_env = arm_get_arg_env();
728         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
729
730         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "eor %1S, %1S, %2S", irn, irn, irn);
731         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* begin Perm(%1S, %2S) */", irn, irn);
732         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
733
734         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "eor %2S, %1S, %2S", irn, irn, irn);
735         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, " ");
736         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
737
738         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "eor %1S, %1S, %2S", irn, irn, irn);
739         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* end Perm(%1S, %2S) */", irn, irn);
740         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
741 }
742
743 static void emit_be_StackParam(const ir_node *irn, arm_emit_env_t *emit_env) {
744         FILE *F = emit_env->out;
745         ir_mode *mode = get_irn_mode(irn);
746         const lc_arg_env_t *arm_env = arm_get_arg_env();
747         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
748
749         if (mode_is_float(mode)) {
750                 if (USE_FPA(emit_env->cg->isa)) {
751                         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "ldf %1D, [%1S, #%O]", irn, irn, irn );
752                         lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* StackParam: (%1S + %O) -> %1D */",irn , irn, irn, get_irn_n(irn, 0));
753                         arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
754                 }
755                 else {
756                         assert(0 && "move not supported for this mode");
757                 }
758         } else {
759                 lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "ldr %1D, [%1S, #%O]", irn, irn, irn );
760                 lc_esnprintf(arm_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* StackParam: (%1S + %O) -> %1D */",irn , irn, irn, get_irn_n(irn, 0));
761                 arm_fprintf_format(F, cmd_buf, cmnt_buf, irn);
762         }
763 }
764
765 /************************************************************************/
766 /* emit                                                                 */
767 /************************************************************************/
768
769 static void emit_Jmp(ir_node *irn, void *env) {
770         char cmd_buf[SNPRINTF_BUF_LEN];
771         arm_emit_env_t *emit_env = env;
772         FILE *F = emit_env->out;
773         const ir_edge_t *edge = get_irn_out_edge_first(irn);
774         const lc_arg_env_t *arm_env = arm_get_arg_env();
775         ir_node *target_block = get_edge_src_irn(edge);
776
777         lc_esnprintf(arm_env, cmd_buf, SNPRINTF_BUF_LEN, "b BLOCK_%d", get_irn_node_nr(target_block));
778         arm_fprintf_format(F, cmd_buf, "/* unconditional Jump */", irn);
779 }
780
781 static void emit_arm_fpaDbl2GP(const ir_node *n, arm_emit_env_t *env) {
782   FILE *F = env->out;
783   char cmd_buf[256];
784   const lc_arg_env_t *arg_env = arm_get_arg_env();
785
786   lc_esnprintf(arg_env, cmd_buf, 256, "stfd %1S, [sp, #-8]! ", n);
787   arm_fprintf_format(F, cmd_buf, "/* Push fp to stack */", n);
788
789   lc_esnprintf(arg_env, cmd_buf, 256, "ldmfd sp!, {%2D, %1D} ", n, n);
790   arm_fprintf_format(F, cmd_buf, "/* Pop destination */", n);
791 }
792
793 static void emit_silence(ir_node *irn, void *env) {
794
795 }
796
797
798 /***********************************************************************************
799  *                  _          __                                             _
800  *                 (_)        / _|                                           | |
801  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
802  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
803  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
804  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
805  *
806  ***********************************************************************************/
807
808 /**
809  * Enters the emitter functions for handled nodes into the generic
810  * pointer of an opcode.
811  */
812 static void arm_register_emitters(void) {
813
814 #define ARM_EMIT(a)  op_arm_##a->ops.generic = (op_func)emit_arm_##a
815 #define EMIT(a)      op_##a->ops.generic = (op_func)emit_##a
816 #define BE_EMIT(a)   op_be_##a->ops.generic = (op_func)emit_be_##a
817 #define SILENCE(a)   op_##a->ops.generic = (op_func)emit_silence
818
819         /* first clear the generic function pointer for all ops */
820         clear_irp_opcodes_generic_func();
821
822         /* register all emitter functions defined in spec */
823         arm_register_spec_emitters();
824
825         /* other emitter functions */
826         ARM_EMIT(CondJmp);
827         ARM_EMIT(CopyB);
828 //      ARM_EMIT(CopyB_i);
829 //      ARM_EMIT(Const);
830         ARM_EMIT(SymConst);
831         ARM_EMIT(SwitchJmp);
832         ARM_EMIT(fpaDbl2GP);
833
834         /* benode emitter */
835         BE_EMIT(Call);
836         BE_EMIT(IncSP);
837 //      BE_EMIT(AddSP);
838         BE_EMIT(Copy);
839         BE_EMIT(Spill);
840         BE_EMIT(Reload);
841         BE_EMIT(Perm);
842         BE_EMIT(StackParam);
843
844         /* firm emitter */
845         EMIT(Jmp);
846
847         /* noisy stuff */
848 #ifdef SILENCER
849         SILENCE(Proj);
850         SILENCE(Phi);
851         SILENCE(be_Keep);
852         SILENCE(be_CopyKeep);
853 #endif
854
855 #undef ARM_EMIT
856 #undef BE_EMIT
857 #undef EMIT
858 #undef SILENCE
859 }
860
861 typedef void (node_emitter)(const ir_node *, void *);
862
863 /**
864  * Emits code for a node.
865  */
866 static void arm_emit_node(const ir_node *irn, void *env) {
867         arm_emit_env_t *emit_env = env;
868         FILE           *F        = emit_env->out;
869         ir_op          *op       = get_irn_op(irn);
870         DEBUG_ONLY(firm_dbg_module_t *mod = emit_env->mod;)
871
872         DBG((mod, LEVEL_1, "emitting code for %+F\n", irn));
873
874         if (op->ops.generic) {
875                 node_emitter *emit = (node_emitter *)op->ops.generic;
876                 emit(irn, env);
877         }
878         else {
879                 ir_fprintf(F, "\t%-35s /* %+F %G */\n", "", irn, irn);
880         }
881 }
882
883 /**
884  * Walks over the nodes in a block connected by scheduling edges
885  * and emits code for each node.
886  */
887 void arm_gen_block(ir_node *block, void *env) {
888         ir_node *irn;
889
890         fprintf(((arm_emit_env_t *)env)->out, "BLOCK_%ld:\n", get_irn_node_nr(block));
891         sched_foreach(block, irn) {
892                 arm_emit_node(irn, env);
893         }
894 }
895
896
897 /**
898  * Emits code for function start.
899  */
900 void arm_emit_start(FILE *F, ir_graph *irg) {
901         ir_entity *ent = get_irg_entity(irg);
902         const char *irg_name = get_entity_ld_name(ent);
903         arm_switch_section(F, SECTION_TEXT);
904         fprintf(F, "\t.align  2\n");
905
906         if (get_entity_visibility(ent) == visibility_external_visible)
907                 fprintf(F, "\t.global %s\n", irg_name);
908         fprintf(F, "%s:\n", irg_name);
909 }
910
911 /**
912  * Emits code for function end
913  */
914 void arm_emit_end(FILE *F, ir_graph *irg) {
915         fprintf(F, "\t.ident \"firmcc\"\n");
916 }
917
918 /**
919  * Sets labels for control flow nodes (jump target)
920  * TODO: Jump optimization
921  */
922 void arm_gen_labels(ir_node *block, void *env) {
923         ir_node *pred;
924         int n = get_Block_n_cfgpreds(block);
925
926         for (n--; n >= 0; n--) {
927                 pred = get_Block_cfgpred(block, n);
928                 set_irn_link(pred, block);
929         }
930 }
931
932
933 /**
934  * Main driver. Emits the code for one routine.
935  */
936 void arm_gen_routine(FILE *F, ir_graph *irg, const arm_code_gen_t *cg) {
937         SymConstEntry *entry;
938         arm_emit_env_t emit_env;
939     ir_node **blk_sched;
940     int i, n;
941
942         emit_env.out      = F;
943         emit_env.arch_env = cg->arch_env;
944         emit_env.cg       = cg;
945         emit_env.symbols  = NULL;
946         obstack_init(&emit_env.obst);
947         FIRM_DBG_REGISTER(emit_env.mod, "firm.be.arm.emit");
948
949         /* set the global arch_env (needed by print hooks) */
950         arch_env = cg->arch_env;
951
952         arm_register_emitters();
953
954         /* create the block schedule. For now, we don't need it earlier. */
955         blk_sched = be_create_block_schedule(cg->irg, cg->birg->exec_freq);
956
957         arm_emit_start(F, irg);
958         irg_block_walk_graph(irg, arm_gen_labels, NULL, &emit_env);
959
960         n = ARR_LEN(blk_sched);
961         for (i = 0; i < n;) {
962                 ir_node *block, *next_bl;
963
964                 block   = blk_sched[i];
965                 ++i;
966                 next_bl = i < n ? blk_sched[i] : NULL;
967
968                 /* set here the link. the emitter expects to find the next block here */
969                 set_irn_link(block, next_bl);
970                 arm_gen_block(block, &emit_env);
971         }
972
973         /* emit SymConst values */
974         if (emit_env.symbols)
975                 fprintf(F, "\t.align 2\n");
976
977         for (entry = emit_env.symbols; entry; entry = entry->next) {
978                 fprintf(F, ".L%u:\n", entry->label);
979                 lc_efprintf(arm_get_arg_env(), F, "\t.word\t%C\n", entry->symconst);
980         }
981
982         obstack_free(&emit_env.obst, NULL);
983 }