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