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