Do not mark the transformed as visited. It makes no sense at all.
[libfirm] / ir / be / arm / bearch_arm.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   The main arm backend driver file.
23  * @author  Oliver Richter, Tobias Gneist
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "lc_opts.h"
31 #include "lc_opts_enum.h"
32
33 #include "pseudo_irg.h"
34 #include "irgwalk.h"
35 #include "irprog.h"
36 #include "irprintf.h"
37 #include "ircons.h"
38 #include "irgmod.h"
39 #include "irgopt.h"
40 #include "iroptimize.h"
41 #include "lowering.h"
42 #include "error.h"
43
44 #include "bitset.h"
45 #include "debug.h"
46 #include "array_t.h"
47 #include "irtools.h"
48
49 #include "../bearch_t.h"                /* the general register allocator interface */
50 #include "../benode_t.h"
51 #include "../belower.h"
52 #include "../besched_t.h"
53 #include "be.h"
54 #include "../beabi.h"
55 #include "../bemachine.h"
56 #include "../beilpsched.h"
57 #include "../bemodule.h"
58 #include "../beirg_t.h"
59 #include "../bespillslots.h"
60 #include "../begnuas.h"
61
62 #include "bearch_arm_t.h"
63
64 #include "arm_new_nodes.h"           /* arm nodes interface */
65 #include "gen_arm_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
66 #include "arm_transform.h"
67 #include "arm_optimize.h"
68 #include "arm_emitter.h"
69 #include "arm_map_regs.h"
70
71 #define DEBUG_MODULE "firm.be.arm.isa"
72
73 /* TODO: ugly, but we need it to get access to the registers assigned to Phi nodes */
74 static set *cur_reg_set = NULL;
75
76 /**************************************************
77  *                         _ _              _  __
78  *                        | | |            (_)/ _|
79  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
80  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
81  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
82  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
83  *            __/ |
84  *           |___/
85  **************************************************/
86
87 /**
88  * Return register requirements for a arm node.
89  * If the node returns a tuple (mode_T) then the proj's
90  * will be asked for this information.
91  */
92 static const arch_register_req_t *arm_get_irn_reg_req(const ir_node *node,
93                                                       int pos)
94 {
95         long               node_pos = pos == -1 ? 0 : pos;
96         ir_mode           *mode     = get_irn_mode(node);
97
98         if (is_Block(node) || mode == mode_X) {
99                 return arch_no_register_req;
100         }
101
102         if (mode == mode_T && pos < 0) {
103                 return arch_no_register_req;
104         }
105
106         if (is_Proj(node)) {
107                 if(mode == mode_M)
108                         return arch_no_register_req;
109
110                 if(pos >= 0) {
111                         return arch_no_register_req;
112                 }
113
114                 node_pos = (pos == -1) ? get_Proj_proj(node) : pos;
115                 node     = skip_Proj_const(node);
116         }
117
118         /* get requirements for our own nodes */
119         if (is_arm_irn(node)) {
120                 const arch_register_req_t *req;
121                 if (pos >= 0) {
122                         req = get_arm_in_req(node, pos);
123                 } else {
124                         req = get_arm_out_req(node, node_pos);
125                 }
126
127                 return req;
128         }
129
130         /* unknown should be transformed by now */
131         assert(!is_Unknown(node));
132         return arch_no_register_req;
133 }
134
135 static void arm_set_irn_reg(ir_node *irn, const arch_register_t *reg)
136 {
137         int pos = 0;
138
139         if (get_irn_mode(irn) == mode_X) {
140                 return;
141         }
142
143         if (is_Proj(irn)) {
144                 pos = get_Proj_proj(irn);
145                 irn = skip_Proj(irn);
146         }
147
148         if (is_arm_irn(irn)) {
149                 const arch_register_t **slots;
150
151                 slots      = get_arm_slots(irn);
152                 slots[pos] = reg;
153         }
154         else {
155                 /* here we set the registers for the Phi nodes */
156                 arm_set_firm_reg(irn, reg, cur_reg_set);
157         }
158 }
159
160 static const arch_register_t *arm_get_irn_reg(const ir_node *irn)
161 {
162         int pos = 0;
163         const arch_register_t *reg = NULL;
164
165         if (is_Proj(irn)) {
166
167                 if (get_irn_mode(irn) == mode_X) {
168                         return NULL;
169                 }
170
171                 pos = get_Proj_proj(irn);
172                 irn = skip_Proj_const(irn);
173         }
174
175         if (is_arm_irn(irn)) {
176                 const arch_register_t **slots;
177                 slots = get_arm_slots(irn);
178                 reg   = slots[pos];
179         }
180         else {
181                 reg = arm_get_firm_reg(irn, cur_reg_set);
182         }
183
184         return reg;
185 }
186
187 static arch_irn_class_t arm_classify(const ir_node *irn)
188 {
189         irn = skip_Proj_const(irn);
190
191         if (is_cfop(irn)) {
192                 return arch_irn_class_branch;
193         }
194         else if (is_arm_irn(irn)) {
195                 return arch_irn_class_normal;
196         }
197
198         return 0;
199 }
200
201 static arch_irn_flags_t arm_get_flags(const ir_node *irn)
202 {
203         arch_irn_flags_t flags = arch_irn_flags_none;
204
205         if(is_Unknown(irn)) {
206                 return arch_irn_flags_ignore;
207         }
208
209         if (is_Proj(irn) && mode_is_datab(get_irn_mode(irn))) {
210                 ir_node *pred = get_Proj_pred(irn);
211                 if (is_arm_irn(pred)) {
212                         flags = get_arm_out_flags(pred, get_Proj_proj(irn));
213                 }
214                 irn = pred;
215         }
216
217         if (is_arm_irn(irn)) {
218                 flags |= get_arm_flags(irn);
219         }
220
221         return flags;
222 }
223
224 static ir_entity *arm_get_frame_entity(const ir_node *irn) {
225         /* we do NOT transform be_Spill or be_Reload nodes, so we never
226            have frame access using ARM nodes. */
227         (void) irn;
228         return NULL;
229 }
230
231 static void arm_set_frame_entity(ir_node *irn, ir_entity *ent) {
232         (void) irn;
233         (void) ent;
234         panic("arm_set_frame_entity() called. This should not happen.");
235 }
236
237 /**
238  * This function is called by the generic backend to correct offsets for
239  * nodes accessing the stack.
240  */
241 static void arm_set_stack_bias(ir_node *irn, int bias)
242 {
243         (void) irn;
244         (void) bias;
245         /* TODO: correct offset if irn accesses the stack */
246 }
247
248 static int arm_get_sp_bias(const ir_node *irn)
249 {
250         (void) irn;
251         return 0;
252 }
253
254 /* fill register allocator interface */
255
256 static const arch_irn_ops_t arm_irn_ops = {
257         arm_get_irn_reg_req,
258         arm_set_irn_reg,
259         arm_get_irn_reg,
260         arm_classify,
261         arm_get_flags,
262         arm_get_frame_entity,
263         arm_set_frame_entity,
264         arm_set_stack_bias,
265         arm_get_sp_bias,
266         NULL,    /* get_inverse             */
267         NULL,    /* get_op_estimated_cost   */
268         NULL,    /* possible_memory_operand */
269         NULL,    /* perform_memory_operand  */
270 };
271
272 /**************************************************
273  *                _                         _  __
274  *               | |                       (_)/ _|
275  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
276  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
277  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
278  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
279  *                        __/ |
280  *                       |___/
281  **************************************************/
282
283 /**
284  * Transforms the standard Firm graph into
285  * a ARM firm graph.
286  */
287 static void arm_prepare_graph(void *self) {
288         arm_code_gen_t *cg = self;
289
290         /* transform nodes into assembler instructions */
291         arm_transform_graph(cg);
292
293         /* do local optimizations (mainly CSE) */
294         local_optimize_graph(cg->irg);
295
296         if (cg->dump)
297                 be_dump(cg->irg, "-transformed", dump_ir_block_graph_sched);
298
299         /* do code placement, to optimize the position of constants */
300         place_code(cg->irg);
301
302         if (cg->dump)
303                 be_dump(cg->irg, "-place", dump_ir_block_graph_sched);
304 }
305
306 /**
307  * Called immediately before emit phase.
308  */
309 static void arm_finish_irg(void *self)
310 {
311         arm_code_gen_t *cg = self;
312
313         /* do peephole optimizations and fix stack offsets */
314         arm_peephole_optimization(cg);
315 }
316
317
318 /**
319  * These are some hooks which must be filled but are probably not needed.
320  */
321 static void arm_before_sched(void *self)
322 {
323         (void) self;
324         /* Some stuff you need to do after scheduling but before register allocation */
325 }
326
327 static void arm_before_ra(void *self)
328 {
329         (void) self;
330         /* Some stuff you need to do immediately after register allocation */
331 }
332
333 /**
334  * We transform Spill and Reload here. This needs to be done before
335  * stack biasing otherwise we would miss the corrected offset for these nodes.
336  */
337 static void arm_after_ra(void *self)
338 {
339         arm_code_gen_t *cg = self;
340         be_coalesce_spillslots(cg->birg);
341 }
342
343 /**
344  * Emits the code, closes the output file and frees
345  * the code generator interface.
346  */
347 static void arm_emit_and_done(void *self) {
348         arm_code_gen_t *cg = self;
349         ir_graph       *irg = cg->irg;
350
351         arm_gen_routine(cg, irg);
352
353         cur_reg_set = NULL;
354
355         /* de-allocate code generator */
356         del_set(cg->reg_set);
357         free(self);
358 }
359
360 /**
361  * Move a double floating point value into an integer register.
362  * Place the move operation into block bl.
363  *
364  * Handle some special cases here:
365  * 1.) A constant: simply split into two
366  * 2.) A load: simply split into two
367  */
368 static ir_node *convert_dbl_to_int(ir_node *bl, ir_node *arg, ir_node *mem,
369                                    ir_node **resH, ir_node **resL) {
370         if (is_Const(arg)) {
371                 tarval *tv = get_Const_tarval(arg);
372                 unsigned v;
373
374                 /* get the upper 32 bits */
375                 v =            get_tarval_sub_bits(tv, 7);
376                 v = (v << 8) | get_tarval_sub_bits(tv, 6);
377                 v = (v << 8) | get_tarval_sub_bits(tv, 5);
378                 v = (v << 8) | get_tarval_sub_bits(tv, 4);
379                 *resH = new_Const_long(mode_Is, v);
380
381                 /* get the lower 32 bits */
382                 v =            get_tarval_sub_bits(tv, 3);
383                 v = (v << 8) | get_tarval_sub_bits(tv, 2);
384                 v = (v << 8) | get_tarval_sub_bits(tv, 1);
385                 v = (v << 8) | get_tarval_sub_bits(tv, 0);
386                 *resL = new_Const_long(mode_Is, v);
387         } else if (is_Load(skip_Proj(arg))) {
388                 /* FIXME: handling of low/high depends on LE/BE here */
389                 panic("Unimplemented convert_dbl_to_int() case");
390         }
391         else {
392                 ir_graph *irg = current_ir_graph;
393                 ir_node *conv;
394
395                 conv = new_rd_arm_fpaDbl2GP(NULL, irg, bl, arg, mem);
396                 /* move high/low */
397                 *resL = new_r_Proj(irg, bl, conv, mode_Is, pn_arm_fpaDbl2GP_low);
398                 *resH = new_r_Proj(irg, bl, conv, mode_Is, pn_arm_fpaDbl2GP_high);
399                 mem   = new_r_Proj(irg, bl, conv, mode_M,  pn_arm_fpaDbl2GP_M);
400         }
401         return mem;
402 }
403
404 /**
405  * Move a single floating point value into an integer register.
406  * Place the move operation into block bl.
407  *
408  * Handle some special cases here:
409  * 1.) A constant: simply move
410  * 2.) A load: simply load
411  */
412 static ir_node *convert_sng_to_int(ir_node *bl, ir_node *arg)
413 {
414         (void) bl;
415
416         if (is_Const(arg)) {
417                 tarval *tv = get_Const_tarval(arg);
418                 unsigned v;
419
420                 /* get the lower 32 bits */
421                 v =            get_tarval_sub_bits(tv, 3);
422                 v = (v << 8) | get_tarval_sub_bits(tv, 2);
423                 v = (v << 8) | get_tarval_sub_bits(tv, 1);
424                 v = (v << 8) | get_tarval_sub_bits(tv, 0);
425                 return new_Const_long(mode_Is, v);
426         } else if (is_Load(skip_Proj(arg))) {
427                 ir_node *load;
428
429                 load = skip_Proj(arg);
430         }
431         panic("Unimplemented convert_sng_to_int() case");
432 }
433
434 /**
435  * Convert the arguments of a call to support the
436  * ARM calling convention of general purpose AND floating
437  * point arguments.
438  */
439 static void handle_calls(ir_node *call, void *env)
440 {
441         arm_code_gen_t *cg = env;
442         int i, j, n, size, idx, flag, n_param, n_res, first_variadic;
443         ir_type *mtp, *new_mtd, *new_tp[5];
444         ir_node *new_in[5], **in;
445         ir_node *bl;
446
447         if (! is_Call(call))
448                 return;
449
450         /* check, if we need conversions */
451         n = get_Call_n_params(call);
452         mtp = get_Call_type(call);
453         assert(get_method_n_params(mtp) == n);
454
455         /* it's always enough to handle the first 4 parameters */
456         if (n > 4)
457                 n = 4;
458         flag = size = idx = 0;
459         bl = get_nodes_block(call);
460         for (i = 0; i < n; ++i) {
461                 ir_type *param_tp = get_method_param_type(mtp, i);
462
463                 if (is_compound_type(param_tp)) {
464                         /* an aggregate parameter: bad case */
465                         assert(0);
466                 }
467                 else {
468                         /* a primitive parameter */
469                         ir_mode *mode = get_type_mode(param_tp);
470
471                         if (mode_is_float(mode)) {
472                                 if (get_mode_size_bits(mode) > 32) {
473                                         ir_node *mem = get_Call_mem(call);
474
475                                         /* Beware: ARM wants the high part first */
476                                         size += 2 * 4;
477                                         new_tp[idx]   = cg->int_tp;
478                                         new_tp[idx+1] = cg->int_tp;
479                                         mem = convert_dbl_to_int(bl, get_Call_param(call, i), mem, &new_in[idx], &new_in[idx+1]);
480                                         idx += 2;
481                                         set_Call_mem(call, mem);
482                                 }
483                                 else {
484                                         size += 4;
485                                         new_tp[idx] = cg->int_tp;
486                                         new_in[idx] = convert_sng_to_int(bl, get_Call_param(call, i));
487                                         ++idx;
488                                 }
489                                 flag = 1;
490                         }
491                         else {
492                                 size += 4;
493                                 new_tp[idx] = param_tp;
494                                 new_in[idx] = get_Call_param(call, i);
495                                 ++idx;
496                         }
497                 }
498
499                 if (size >= 16)
500                         break;
501         }
502
503         /* if flag is NOT set, no need to translate the method type */
504         if (! flag)
505                 return;
506
507         /* construct a new method type */
508         n       = i;
509         n_param = get_method_n_params(mtp) - n + idx;
510         n_res   = get_method_n_ress(mtp);
511         new_mtd = new_d_type_method(get_type_ident(mtp), n_param, n_res, get_type_dbg_info(mtp));
512
513         for (i = 0; i < idx; ++i)
514                 set_method_param_type(new_mtd, i, new_tp[i]);
515         for (i = n, j = idx; i < get_method_n_params(mtp); ++i)
516                 set_method_param_type(new_mtd, j++, get_method_param_type(mtp, i));
517         for (i = 0; i < n_res; ++i)
518                 set_method_res_type(new_mtd, i, get_method_res_type(mtp, i));
519
520         set_method_calling_convention(new_mtd, get_method_calling_convention(mtp));
521         first_variadic = get_method_first_variadic_param_index(mtp);
522         if (first_variadic >= 0)
523                 set_method_first_variadic_param_index(new_mtd, first_variadic);
524
525         if (is_lowered_type(mtp)) {
526                 mtp = get_associated_type(mtp);
527         }
528         set_lowered_type(mtp, new_mtd);
529
530         set_Call_type(call, new_mtd);
531
532         /* calculate new in array of the Call */
533         NEW_ARR_A(ir_node *, in, n_param + 2);
534         for (i = 0; i < idx; ++i)
535                 in[2 + i] = new_in[i];
536         for (i = n, j = idx; i < get_method_n_params(mtp); ++i)
537                 in[2 + j++] = get_Call_param(call, i);
538
539         in[0] = get_Call_mem(call);
540         in[1] = get_Call_ptr(call);
541
542         /* finally, change the call inputs */
543         set_irn_in(call, n_param + 2, in);
544 }
545
546 /**
547  * Handle graph transformations before the abi converter does its work.
548  */
549 static void arm_before_abi(void *self) {
550         arm_code_gen_t *cg = self;
551
552         irg_walk_graph(cg->irg, NULL, handle_calls, cg);
553 }
554
555 /* forward */
556 static void *arm_cg_init(be_irg_t *birg);
557
558 static const arch_code_generator_if_t arm_code_gen_if = {
559         arm_cg_init,
560         NULL,               /* get_pic_base */
561         arm_before_abi,     /* before abi introduce */
562         arm_prepare_graph,
563         NULL,               /* spill */
564         arm_before_sched,   /* before scheduling hook */
565         arm_before_ra,      /* before register allocation hook */
566         arm_after_ra,
567         arm_finish_irg,
568         arm_emit_and_done,
569 };
570
571 /**
572  * Initializes the code generator.
573  */
574 static void *arm_cg_init(be_irg_t *birg) {
575         static ir_type *int_tp = NULL;
576         arm_isa_t      *isa = (arm_isa_t *)birg->main_env->arch_env;
577         arm_code_gen_t *cg;
578
579         if (! int_tp) {
580                 /* create an integer type with machine size */
581                 int_tp = new_type_primitive(new_id_from_chars("int", 3), mode_Is);
582         }
583
584         cg = XMALLOC(arm_code_gen_t);
585         cg->impl         = &arm_code_gen_if;
586         cg->irg          = birg->irg;
587         cg->reg_set      = new_set(arm_cmp_irn_reg_assoc, 1024);
588         cg->arch_env     = birg->main_env->arch_env;
589         cg->isa          = isa;
590         cg->birg         = birg;
591         cg->int_tp       = int_tp;
592         cg->have_fp_insn = 0;
593         cg->unknown_gp   = NULL;
594         cg->unknown_fpa  = NULL;
595         cg->dump         = (birg->main_env->options->dump_flags & DUMP_BE) ? 1 : 0;
596
597         FIRM_DBG_REGISTER(cg->mod, "firm.be.arm.cg");
598
599         cur_reg_set = cg->reg_set;
600
601         /* enter the current code generator */
602         isa->cg = cg;
603
604         return (arch_code_generator_t *)cg;
605 }
606
607
608 /**
609  * Maps all intrinsic calls that the backend support
610  * and map all instructions the backend did not support
611  * to runtime calls.
612  */
613 static void arm_handle_intrinsics(void) {
614         ir_type *tp, *int_tp, *uint_tp;
615         i_record records[8];
616         int n_records = 0;
617
618         runtime_rt rt_iDiv, rt_uDiv, rt_iMod, rt_uMod;
619
620 #define ID(x) new_id_from_chars(x, sizeof(x)-1)
621
622         int_tp  = new_type_primitive(ID("int"), mode_Is);
623         uint_tp = new_type_primitive(ID("uint"), mode_Iu);
624
625         /* ARM has neither a signed div instruction ... */
626         {
627                 i_instr_record *map_Div = &records[n_records++].i_instr;
628
629                 tp = new_type_method(ID("rt_iDiv"), 2, 1);
630                 set_method_param_type(tp, 0, int_tp);
631                 set_method_param_type(tp, 1, int_tp);
632                 set_method_res_type(tp, 0, int_tp);
633
634                 rt_iDiv.ent             = new_entity(get_glob_type(), ID("__divsi3"), tp);
635                 set_entity_ld_ident(rt_iDiv.ent, ID("__divsi3"));
636                 rt_iDiv.mode            = mode_T;
637                 rt_iDiv.res_mode        = mode_Is;
638                 rt_iDiv.mem_proj_nr     = pn_Div_M;
639                 rt_iDiv.regular_proj_nr = pn_Div_X_regular;
640                 rt_iDiv.exc_proj_nr     = pn_Div_X_except;
641                 rt_iDiv.exc_mem_proj_nr = pn_Div_M;
642                 rt_iDiv.res_proj_nr     = pn_Div_res;
643
644                 set_entity_visibility(rt_iDiv.ent, visibility_external_allocated);
645
646                 map_Div->kind     = INTRINSIC_INSTR;
647                 map_Div->op       = op_Div;
648                 map_Div->i_mapper = (i_mapper_func)i_mapper_RuntimeCall;
649                 map_Div->ctx      = &rt_iDiv;
650         }
651         /* ... nor an unsigned div instruction ... */
652         {
653                 i_instr_record *map_Div = &records[n_records++].i_instr;
654
655                 tp = new_type_method(ID("rt_uDiv"), 2, 1);
656                 set_method_param_type(tp, 0, uint_tp);
657                 set_method_param_type(tp, 1, uint_tp);
658                 set_method_res_type(tp, 0, uint_tp);
659
660                 rt_uDiv.ent             = new_entity(get_glob_type(), ID("__udivsi3"), tp);
661                 set_entity_ld_ident(rt_uDiv.ent, ID("__udivsi3"));
662                 rt_uDiv.mode            = mode_T;
663                 rt_uDiv.res_mode        = mode_Iu;
664                 rt_uDiv.mem_proj_nr     = pn_Div_M;
665                 rt_uDiv.regular_proj_nr = pn_Div_X_regular;
666                 rt_uDiv.exc_proj_nr     = pn_Div_X_except;
667                 rt_uDiv.exc_mem_proj_nr = pn_Div_M;
668                 rt_uDiv.res_proj_nr     = pn_Div_res;
669
670                 set_entity_visibility(rt_uDiv.ent, visibility_external_allocated);
671
672                 map_Div->kind     = INTRINSIC_INSTR;
673                 map_Div->op       = op_Div;
674                 map_Div->i_mapper = (i_mapper_func)i_mapper_RuntimeCall;
675                 map_Div->ctx      = &rt_uDiv;
676         }
677         /* ... nor a signed mod instruction ... */
678         {
679                 i_instr_record *map_Mod = &records[n_records++].i_instr;
680
681                 tp = new_type_method(ID("rt_iMod"), 2, 1);
682                 set_method_param_type(tp, 0, int_tp);
683                 set_method_param_type(tp, 1, int_tp);
684                 set_method_res_type(tp, 0, int_tp);
685
686                 rt_iMod.ent             = new_entity(get_glob_type(), ID("__modsi3"), tp);
687                 set_entity_ld_ident(rt_iMod.ent, ID("__modsi3"));
688                 rt_iMod.mode            = mode_T;
689                 rt_iMod.res_mode        = mode_Is;
690                 rt_iMod.mem_proj_nr     = pn_Mod_M;
691                 rt_iMod.regular_proj_nr = pn_Mod_X_regular;
692                 rt_iMod.exc_proj_nr     = pn_Mod_X_except;
693                 rt_iMod.exc_mem_proj_nr = pn_Mod_M;
694                 rt_iMod.res_proj_nr     = pn_Mod_res;
695
696                 set_entity_visibility(rt_iMod.ent, visibility_external_allocated);
697
698                 map_Mod->kind     = INTRINSIC_INSTR;
699                 map_Mod->op       = op_Mod;
700                 map_Mod->i_mapper = (i_mapper_func)i_mapper_RuntimeCall;
701                 map_Mod->ctx      = &rt_iMod;
702         }
703         /* ... nor an unsigned mod. */
704         {
705                 i_instr_record *map_Mod = &records[n_records++].i_instr;
706
707                 tp = new_type_method(ID("rt_uMod"), 2, 1);
708                 set_method_param_type(tp, 0, uint_tp);
709                 set_method_param_type(tp, 1, uint_tp);
710                 set_method_res_type(tp, 0, uint_tp);
711
712                 rt_uMod.ent             = new_entity(get_glob_type(), ID("__umodsi3"), tp);
713                 set_entity_ld_ident(rt_uMod.ent, ID("__umodsi3"));
714                 rt_uMod.mode            = mode_T;
715                 rt_uMod.res_mode        = mode_Iu;
716                 rt_uMod.mem_proj_nr     = pn_Mod_M;
717                 rt_uMod.regular_proj_nr = pn_Mod_X_regular;
718                 rt_uMod.exc_proj_nr     = pn_Mod_X_except;
719                 rt_uMod.exc_mem_proj_nr = pn_Mod_M;
720                 rt_uMod.res_proj_nr     = pn_Mod_res;
721
722                 set_entity_visibility(rt_uMod.ent, visibility_external_allocated);
723
724                 map_Mod->kind     = INTRINSIC_INSTR;
725                 map_Mod->op       = op_Mod;
726                 map_Mod->i_mapper = (i_mapper_func)i_mapper_RuntimeCall;
727                 map_Mod->ctx      = &rt_uMod;
728         }
729
730         if (n_records > 0)
731                 lower_intrinsics(records, n_records, /*part_block_used=*/0);
732 }
733
734 /*****************************************************************
735  *  ____             _                  _   _____  _____
736  * |  _ \           | |                | | |_   _|/ ____|  /\
737  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
738  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
739  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
740  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
741  *
742  *****************************************************************/
743
744 static arm_isa_t arm_isa_template = {
745         {
746                 &arm_isa_if,           /* isa interface */
747                 &arm_gp_regs[REG_SP],  /* stack pointer */
748                 &arm_gp_regs[REG_R11], /* base pointer */
749                 -1,                    /* stack direction */
750                 2,                     /* power of two stack alignment for calls, 2^2 == 4 */
751                 NULL,                  /* main environment */
752                 7,                     /* spill costs */
753                 5,                     /* reload costs */
754         },
755         0,                     /* use generic register names instead of SP, LR, PC */
756         ARM_FPU_ARCH_FPE,      /* FPU architecture */
757         NULL,                  /* current code generator */
758 };
759
760 /**
761  * Initializes the backend ISA and opens the output file.
762  */
763 static arch_env_t *arm_init(FILE *file_handle) {
764         static int inited = 0;
765         arm_isa_t *isa;
766
767         if (inited)
768                 return NULL;
769
770         isa = XMALLOC(arm_isa_t);
771         memcpy(isa, &arm_isa_template, sizeof(*isa));
772
773         arm_register_init();
774
775         isa->cg  = NULL;
776         be_emit_init(file_handle);
777
778         arm_create_opcodes(&arm_irn_ops);
779         arm_handle_intrinsics();
780
781         /* needed for the debug support */
782         be_gas_emit_switch_section(GAS_SECTION_TEXT);
783         be_emit_cstring(".Ltext0:\n");
784         be_emit_write_line();
785
786         /* we mark referenced global entities, so we can only emit those which
787          * are actually referenced. (Note: you mustn't use the type visited flag
788          * elsewhere in the backend)
789          */
790         inc_master_type_visited();
791
792         inited = 1;
793         return &isa->arch_env;
794 }
795
796
797
798 /**
799  * Closes the output file and frees the ISA structure.
800  */
801 static void arm_done(void *self) {
802         arm_isa_t *isa = self;
803
804         be_gas_emit_decls(isa->arch_env.main_env, 1);
805
806         be_emit_exit();
807         free(self);
808 }
809
810
811 /**
812  * Report the number of register classes.
813  * If we don't have fp instructions, report only GP
814  * here to speed up register allocation (and makes dumps
815  * smaller and more readable).
816  */
817 static unsigned arm_get_n_reg_class(const void *self) {
818         (void) self;
819         return N_CLASSES;
820 }
821
822 /**
823  * Return the register class with requested index.
824  */
825 static const arch_register_class_t *arm_get_reg_class(const void *self,
826                                                       unsigned i) {
827         (void) self;
828         assert(i < N_CLASSES);
829         return &arm_reg_classes[i];
830 }
831
832 /**
833  * Get the register class which shall be used to store a value of a given mode.
834  * @param self The this pointer.
835  * @param mode The mode in question.
836  * @return A register class which can hold values of the given mode.
837  */
838 const arch_register_class_t *arm_get_reg_class_for_mode(const void *self, const ir_mode *mode) {
839         (void) self;
840         if (mode_is_float(mode))
841                 return &arm_reg_classes[CLASS_arm_fpa];
842         else
843                 return &arm_reg_classes[CLASS_arm_gp];
844 }
845
846 /**
847  * Produces the type which sits between the stack args and the locals on the stack.
848  * it will contain the return address and space to store the old base pointer.
849  * @return The Firm type modeling the ABI between type.
850  */
851 static ir_type *arm_get_between_type(void *self) {
852         static ir_type *between_type = NULL;
853         static ir_entity *old_bp_ent = NULL;
854         (void) self;
855
856         if (between_type == NULL) {
857                 ir_entity *ret_addr_ent;
858                 ir_type *ret_addr_type = new_type_primitive(new_id_from_str("return_addr"), mode_P);
859                 ir_type *old_bp_type   = new_type_primitive(new_id_from_str("bp"), mode_P);
860
861                 between_type           = new_type_class(new_id_from_str("arm_between_type"));
862                 old_bp_ent             = new_entity(between_type, new_id_from_str("old_bp"), old_bp_type);
863                 ret_addr_ent           = new_entity(between_type, new_id_from_str("old_bp"), ret_addr_type);
864
865                 set_entity_offset(old_bp_ent, 0);
866                 set_entity_offset(ret_addr_ent, get_type_size_bytes(old_bp_type));
867                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
868         }
869
870         return between_type;
871 }
872
873
874 typedef struct {
875         be_abi_call_flags_bits_t flags;
876         const arch_env_t *arch_env;
877         ir_graph *irg;
878 } arm_abi_env_t;
879
880 static void *arm_abi_init(const be_abi_call_t *call, const arch_env_t *arch_env, ir_graph *irg)
881 {
882         arm_abi_env_t       *env = XMALLOC(arm_abi_env_t);
883         be_abi_call_flags_t  fl  = be_abi_call_get_flags(call);
884         env->flags    = fl.bits;
885         env->irg      = irg;
886         env->arch_env = arch_env;
887         return env;
888 }
889
890 /**
891  * Put all registers which are saved by the prologue/epilogue in a set.
892  *
893  * @param self  The callback object.
894  * @param s     The result set.
895  */
896 static void arm_abi_dont_save_regs(void *self, pset *s)
897 {
898         arm_abi_env_t *env = self;
899         if (env->flags.try_omit_fp)
900                 pset_insert_ptr(s, env->arch_env->bp);
901 }
902
903 /**
904  * Generate the routine prologue.
905  *
906  * @param self       The callback object.
907  * @param mem        A pointer to the mem node. Update this if you define new memory.
908  * @param reg_map    A map mapping all callee_save/ignore/parameter registers to their defining nodes.
909  * @param stack_bias Points to the current stack bias, can be modified if needed.
910  *
911  * @return        The register which shall be used as a stack frame base.
912  *
913  * All nodes which define registers in @p reg_map must keep @p reg_map current.
914  */
915 static const arch_register_t *arm_abi_prologue(void *self, ir_node **mem, pmap *reg_map, int *stack_bias) {
916         arm_abi_env_t         *env = self;
917         ir_node               *keep, *store;
918         ir_graph              *irg;
919         ir_node               *block;
920         arch_register_class_t *gp;
921
922         ir_node               *fp, *ip, *lr, *pc;
923         ir_node               *sp = be_abi_reg_map_get(reg_map, env->arch_env->sp);
924
925         (void) stack_bias;
926
927         if (env->flags.try_omit_fp)
928                 return env->arch_env->sp;
929
930         fp = be_abi_reg_map_get(reg_map, env->arch_env->bp);
931         ip = be_abi_reg_map_get(reg_map, &arm_gp_regs[REG_R12]);
932         lr = be_abi_reg_map_get(reg_map, &arm_gp_regs[REG_LR]);
933         pc = be_abi_reg_map_get(reg_map, &arm_gp_regs[REG_PC]);
934
935         gp    = &arm_reg_classes[CLASS_arm_gp];
936         irg   = env->irg;
937         block = get_irg_start_block(irg);
938
939         ip = be_new_Copy(gp, irg, block, sp);
940         arch_set_irn_register(env->arch_env, ip, &arm_gp_regs[REG_R12]);
941         be_set_constr_single_reg(ip, BE_OUT_POS(0), &arm_gp_regs[REG_R12] );
942
943         store = new_rd_arm_StoreStackM4Inc(NULL, irg, block, sp, fp, ip, lr, pc, *mem);
944
945         sp = new_r_Proj(irg, block, store, env->arch_env->sp->reg_class->mode, pn_arm_StoreStackM4Inc_ptr);
946         arch_set_irn_register(env->arch_env, sp, env->arch_env->sp);
947         *mem = new_r_Proj(irg, block, store, mode_M, pn_arm_StoreStackM4Inc_M);
948
949         keep = be_new_CopyKeep_single(gp, irg, block, ip, sp, get_irn_mode(ip));
950         be_node_set_reg_class(keep, 1, gp);
951         arch_set_irn_register(env->arch_env, keep, &arm_gp_regs[REG_R12]);
952         be_set_constr_single_reg(keep, BE_OUT_POS(0), &arm_gp_regs[REG_R12] );
953
954         fp = new_rd_arm_Sub_i(NULL, irg, block, keep, get_irn_mode(fp), 4);
955         arch_set_irn_register(env->arch_env, fp, env->arch_env->bp);
956         fp = be_new_Copy(gp, irg, block, fp); // XXX Gammelfix: only be_ nodes can have the ignore flag set
957         arch_set_irn_register(env->arch_env, fp, env->arch_env->bp);
958         be_node_set_flags(fp, BE_OUT_POS(0), arch_irn_flags_ignore);
959
960         be_abi_reg_map_set(reg_map, env->arch_env->bp, fp);
961         be_abi_reg_map_set(reg_map, &arm_gp_regs[REG_R12], keep);
962         be_abi_reg_map_set(reg_map, env->arch_env->sp, sp);
963         be_abi_reg_map_set(reg_map, &arm_gp_regs[REG_LR], lr);
964         be_abi_reg_map_set(reg_map, &arm_gp_regs[REG_PC], pc);
965
966         return env->arch_env->bp;
967 }
968
969 /**
970  * Builds the ARM epilogue
971  */
972 static void arm_abi_epilogue(void *self, ir_node *bl, ir_node **mem, pmap *reg_map) {
973         arm_abi_env_t *env = self;
974         ir_node *curr_sp = be_abi_reg_map_get(reg_map, env->arch_env->sp);
975         ir_node *curr_bp = be_abi_reg_map_get(reg_map, env->arch_env->bp);
976         ir_node *curr_pc = be_abi_reg_map_get(reg_map, &arm_gp_regs[REG_PC]);
977         ir_node *curr_lr = be_abi_reg_map_get(reg_map, &arm_gp_regs[REG_LR]);
978
979         // TODO: Activate Omit fp in epilogue
980         if (env->flags.try_omit_fp) {
981                 curr_sp = be_new_IncSP(env->arch_env->sp, env->irg, bl, curr_sp, BE_STACK_FRAME_SIZE_SHRINK, 0);
982                 add_irn_dep(curr_sp, *mem);
983
984                 curr_lr = be_new_CopyKeep_single(&arm_reg_classes[CLASS_arm_gp], env->irg, bl, curr_lr, curr_sp, get_irn_mode(curr_lr));
985                 be_node_set_reg_class(curr_lr, 1, &arm_reg_classes[CLASS_arm_gp]);
986                 arch_set_irn_register(env->arch_env, curr_lr, &arm_gp_regs[REG_LR]);
987                 be_set_constr_single_reg(curr_lr, BE_OUT_POS(0), &arm_gp_regs[REG_LR] );
988
989                 curr_pc = be_new_Copy(&arm_reg_classes[CLASS_arm_gp], env->irg, bl, curr_lr );
990                 arch_set_irn_register(env->arch_env, curr_pc, &arm_gp_regs[REG_PC]);
991                 be_set_constr_single_reg(curr_pc, BE_OUT_POS(0), &arm_gp_regs[REG_PC] );
992                 be_node_set_flags(curr_pc, BE_OUT_POS(0), arch_irn_flags_ignore);
993         } else {
994                 ir_node *sub12_node;
995                 ir_node *load_node;
996                 sub12_node = new_rd_arm_Sub_i(NULL, env->irg, bl, curr_bp, mode_Iu, 12);
997                 // FIXME
998                 //set_arm_req_out_all(sub12_node, sub12_req);
999                 arch_set_irn_register(env->arch_env, sub12_node, env->arch_env->sp);
1000                 load_node = new_rd_arm_LoadStackM3( NULL, env->irg, bl, sub12_node, *mem );
1001                 // FIXME
1002                 //set_arm_req_out(load_node, &arm_default_req_arm_gp_r11, 0);
1003                 //set_arm_req_out(load_node, &arm_default_req_arm_gp_sp, 1);
1004                 //set_arm_req_out(load_node, &arm_default_req_arm_gp_pc, 2);
1005                 curr_bp = new_r_Proj(env->irg, bl, load_node, env->arch_env->bp->reg_class->mode, pn_arm_LoadStackM3_res0);
1006                 curr_sp = new_r_Proj(env->irg, bl, load_node, env->arch_env->sp->reg_class->mode, pn_arm_LoadStackM3_res1);
1007                 curr_pc = new_r_Proj(env->irg, bl, load_node, mode_Iu, pn_arm_LoadStackM3_res2);
1008                 *mem    = new_r_Proj(env->irg, bl, load_node, mode_M, pn_arm_LoadStackM3_M);
1009                 arch_set_irn_register(env->arch_env, curr_bp, env->arch_env->bp);
1010                 arch_set_irn_register(env->arch_env, curr_sp, env->arch_env->sp);
1011                 arch_set_irn_register(env->arch_env, curr_pc, &arm_gp_regs[REG_PC]);
1012         }
1013         be_abi_reg_map_set(reg_map, env->arch_env->sp, curr_sp);
1014         be_abi_reg_map_set(reg_map, env->arch_env->bp, curr_bp);
1015         be_abi_reg_map_set(reg_map, &arm_gp_regs[REG_LR], curr_lr);
1016         be_abi_reg_map_set(reg_map, &arm_gp_regs[REG_PC], curr_pc);
1017 }
1018
1019 static const be_abi_callbacks_t arm_abi_callbacks = {
1020         arm_abi_init,
1021         free,
1022         arm_get_between_type,
1023         arm_abi_dont_save_regs,
1024         arm_abi_prologue,
1025         arm_abi_epilogue,
1026 };
1027
1028
1029 /**
1030  * Get the ABI restrictions for procedure calls.
1031  * @param self        The this pointer.
1032  * @param method_type The type of the method (procedure) in question.
1033  * @param abi         The abi object to be modified
1034  */
1035 void arm_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi) {
1036         ir_type  *tp;
1037         ir_mode  *mode;
1038         int       i;
1039         int       n = get_method_n_params(method_type);
1040         be_abi_call_flags_t call_flags = be_abi_call_get_flags(abi);
1041         (void) self;
1042
1043         /* set abi flags for calls */
1044         call_flags.bits.left_to_right         = 0;
1045         call_flags.bits.store_args_sequential = 0;
1046         /* call_flags.bits.try_omit_fp     don't change this we can handle both */
1047         call_flags.bits.fp_free               = 0;
1048         call_flags.bits.call_has_imm          = 1;  /* IA32 calls can have immediate address */
1049
1050         /* set stack parameter passing style */
1051         be_abi_call_set_flags(abi, call_flags, &arm_abi_callbacks);
1052
1053         for (i = 0; i < n; i++) {
1054                 /* reg = get reg for param i;          */
1055                 /* be_abi_call_param_reg(abi, i, reg); */
1056                 if (i < 4) {
1057                         be_abi_call_param_reg(abi, i, arm_get_RegParam_reg(i));
1058                 } else {
1059                         tp   = get_method_param_type(method_type, i);
1060                         mode = get_type_mode(tp);
1061                         be_abi_call_param_stack(abi, i, mode, 4, 0, 0);
1062                 }
1063         }
1064
1065         /* set return registers */
1066         n = get_method_n_ress(method_type);
1067
1068         assert(n <= 2 && "more than two results not supported");
1069
1070         /* In case of 64bit returns, we will have two 32bit values */
1071         if (n == 2) {
1072                 tp   = get_method_res_type(method_type, 0);
1073                 mode = get_type_mode(tp);
1074
1075                 assert(!mode_is_float(mode) && "two FP results not supported");
1076
1077                 tp   = get_method_res_type(method_type, 1);
1078                 mode = get_type_mode(tp);
1079
1080                 assert(!mode_is_float(mode) && "mixed INT, FP results not supported");
1081
1082                 be_abi_call_res_reg(abi, 0, &arm_gp_regs[REG_R0]);
1083                 be_abi_call_res_reg(abi, 1, &arm_gp_regs[REG_R1]);
1084         } else if (n == 1) {
1085                 const arch_register_t *reg;
1086
1087                 tp   = get_method_res_type(method_type, 0);
1088                 assert(is_atomic_type(tp));
1089                 mode = get_type_mode(tp);
1090
1091                 reg = mode_is_float(mode) ? &arm_fpa_regs[REG_F0] : &arm_gp_regs[REG_R0];
1092                 be_abi_call_res_reg(abi, 0, reg);
1093         }
1094 }
1095
1096 int arm_to_appear_in_schedule(void *block_env, const ir_node *irn) {
1097         (void) block_env;
1098         if(!is_arm_irn(irn))
1099                 return -1;
1100
1101         return 1;
1102 }
1103
1104 /**
1105  * Initializes the code generator interface.
1106  */
1107 static const arch_code_generator_if_t *arm_get_code_generator_if(void *self) {
1108         (void) self;
1109         return &arm_code_gen_if;
1110 }
1111
1112 list_sched_selector_t arm_sched_selector;
1113
1114 /**
1115  * Returns the reg_pressure scheduler with to_appear_in_schedule() over\loaded
1116  */
1117 static const list_sched_selector_t *arm_get_list_sched_selector(const void *self, list_sched_selector_t *selector) {
1118         (void) self;
1119         memcpy(&arm_sched_selector, selector, sizeof(arm_sched_selector));
1120         /* arm_sched_selector.exectime              = arm_sched_exectime; */
1121         arm_sched_selector.to_appear_in_schedule = arm_to_appear_in_schedule;
1122         return &arm_sched_selector;
1123
1124 }
1125
1126 static const ilp_sched_selector_t *arm_get_ilp_sched_selector(const void *self) {
1127         (void) self;
1128         return NULL;
1129 }
1130
1131 /**
1132  * Returns the necessary byte alignment for storing a register of given class.
1133  */
1134 static int arm_get_reg_class_alignment(const void *self, const arch_register_class_t *cls) {
1135         (void) self;
1136         (void) cls;
1137         /* ARM is a 32 bit CPU, no need for other alignment */
1138         return 4;
1139 }
1140
1141 static const be_execution_unit_t ***arm_get_allowed_execution_units(const void *self, const ir_node *irn) {
1142         (void) self;
1143         (void) irn;
1144         /* TODO */
1145         panic("Unimplemented arm_get_allowed_execution_units()");
1146 }
1147
1148 static const be_machine_t *arm_get_machine(const void *self) {
1149         (void) self;
1150         /* TODO */
1151         panic("Unimplemented arm_get_machine()");
1152 }
1153
1154 /**
1155  * Return irp irgs in the desired order.
1156  */
1157 static ir_graph **arm_get_irg_list(const void *self, ir_graph ***irg_list) {
1158         (void) self;
1159         (void) irg_list;
1160         return NULL;
1161 }
1162
1163 /**
1164  * Allows or disallows the creation of Psi nodes for the given Phi nodes.
1165  * @return 1 if allowed, 0 otherwise
1166  */
1167 static int arm_is_psi_allowed(ir_node *sel, ir_node *phi_list, int i, int j) {
1168         ir_node *cmp, *cmp_a, *phi;
1169         ir_mode *mode;
1170
1171
1172         /* currently Psi support is not implemented */
1173         return 0;
1174
1175 /* we don't want long long Psi */
1176 #define IS_BAD_PSI_MODE(mode) (!mode_is_float(mode) && get_mode_size_bits(mode) > 32)
1177
1178         if (get_irn_mode(sel) != mode_b)
1179                 return 0;
1180
1181         cmp   = get_Proj_pred(sel);
1182         cmp_a = get_Cmp_left(cmp);
1183         mode  = get_irn_mode(cmp_a);
1184
1185         if (IS_BAD_PSI_MODE(mode))
1186                 return 0;
1187
1188         /* check the Phi nodes */
1189         for (phi = phi_list; phi; phi = get_irn_link(phi)) {
1190                 ir_node *pred_i = get_irn_n(phi, i);
1191                 ir_node *pred_j = get_irn_n(phi, j);
1192                 ir_mode *mode_i = get_irn_mode(pred_i);
1193                 ir_mode *mode_j = get_irn_mode(pred_j);
1194
1195                 if (IS_BAD_PSI_MODE(mode_i) || IS_BAD_PSI_MODE(mode_j))
1196                         return 0;
1197         }
1198
1199 #undef IS_BAD_PSI_MODE
1200
1201         return 1;
1202 }
1203
1204 static asm_constraint_flags_t arm_parse_asm_constraint(const void *self, const char **c)
1205 {
1206         /* asm not supported */
1207         (void) self;
1208         (void) c;
1209         return ASM_CONSTRAINT_FLAG_INVALID;
1210 }
1211
1212 static int arm_is_valid_clobber(const void *self, const char *clobber)
1213 {
1214         (void) self;
1215         (void) clobber;
1216         return 0;
1217 }
1218
1219 /**
1220  * Returns the libFirm configuration parameter for this backend.
1221  */
1222 static const backend_params *arm_get_libfirm_params(void) {
1223         static const ir_settings_if_conv_t ifconv = {
1224                 4,                    /* maxdepth, doesn't matter for Psi-conversion */
1225                 arm_is_psi_allowed   /* allows or disallows Psi creation for given selector */
1226         };
1227         static ir_settings_arch_dep_t ad = {
1228                 1,    /* allow subs */
1229                 1,        /* Muls are fast enough on ARM but ... */
1230                 31,   /* ... one shift would be possible better */
1231                 NULL, /* no evaluator function */
1232                 0,    /* SMUL is needed, only in Arch M */
1233                 0,    /* UMUL is needed, only in Arch M */
1234                 32,   /* SMUL & UMUL available for 32 bit */
1235         };
1236         static backend_params p = {
1237                 1,     /* need dword lowering */
1238                 0,     /* don't support inline assembler yet */
1239                 0,     /* no immediate floating point mode. */
1240                 NULL,  /* no additional opcodes */
1241                 NULL,  /* will be set later */
1242                 NULL,  /* but yet no creator function */
1243                 NULL,  /* context for create_intrinsic_fkt */
1244                 NULL,  /* will be set below */
1245                 NULL   /* no immediate fp mode */
1246         };
1247
1248         p.dep_param    = &ad;
1249         p.if_conv_info = &ifconv;
1250         return &p;
1251 }
1252
1253 /* fpu set architectures. */
1254 static const lc_opt_enum_int_items_t arm_fpu_items[] = {
1255         { "softfloat", ARM_FPU_ARCH_SOFTFLOAT },
1256         { "fpe",       ARM_FPU_ARCH_FPE },
1257         { "fpa",       ARM_FPU_ARCH_FPA },
1258         { "vfp1xd",    ARM_FPU_ARCH_VFP_V1xD },
1259         { "vfp1",      ARM_FPU_ARCH_VFP_V1 },
1260         { "vfp2",      ARM_FPU_ARCH_VFP_V2 },
1261         { NULL,        0 }
1262 };
1263
1264 static lc_opt_enum_int_var_t arch_fpu_var = {
1265         &arm_isa_template.fpu_arch, arm_fpu_items
1266 };
1267
1268 static const lc_opt_table_entry_t arm_options[] = {
1269         LC_OPT_ENT_ENUM_INT("fpunit",    "select the floating point unit", &arch_fpu_var),
1270         LC_OPT_ENT_BOOL("gen_reg_names", "use generic register names", &arm_isa_template.gen_reg_names),
1271         LC_OPT_LAST
1272 };
1273
1274 const arch_isa_if_t arm_isa_if = {
1275         arm_init,
1276         arm_done,
1277         arm_get_n_reg_class,
1278         arm_get_reg_class,
1279         arm_get_reg_class_for_mode,
1280         arm_get_call_abi,
1281         arm_get_code_generator_if,
1282         arm_get_list_sched_selector,
1283         arm_get_ilp_sched_selector,
1284         arm_get_reg_class_alignment,
1285         arm_get_libfirm_params,
1286         arm_get_allowed_execution_units,
1287         arm_get_machine,
1288         arm_get_irg_list,
1289         NULL,               /* mark remat */
1290         arm_parse_asm_constraint,
1291         arm_is_valid_clobber
1292 };
1293
1294 void be_init_arch_arm(void)
1295 {
1296         lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
1297         lc_opt_entry_t *arm_grp = lc_opt_get_grp(be_grp, "arm");
1298
1299         lc_opt_add_table(arm_grp, arm_options);
1300
1301         be_register_isa_if("arm", &arm_isa_if);
1302
1303         arm_init_transform();
1304         arm_init_emitter();
1305 }
1306
1307 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_arm);