Remove the unused before_sched callback.
[libfirm] / ir / be / mips / bearch_mips.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 mips backend driver file.
23  * @author  Matthias Braun, Mehdi
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include "pseudo_irg.h"
29 #include "irgwalk.h"
30 #include "irprog.h"
31 #include "irprintf.h"
32 #include "ircons.h"
33 #include "irgmod.h"
34 #include "irgopt.h"
35 #include "irgwalk.h"
36 #include "iredges.h"
37 #include "irdump.h"
38 #include "irextbb.h"
39 #include "irtools.h"
40 #include "error.h"
41
42 #include "bitset.h"
43 #include "debug.h"
44
45 #include "../bearch_t.h"
46 #include "../benode_t.h"
47 #include "../belower.h"
48 #include "../besched_t.h"
49 #include "../beblocksched.h"
50 #include "../beirg_t.h"
51 #include "be.h"
52 #include "../beabi.h"
53 #include "../bemachine.h"
54 #include "../bemodule.h"
55 #include "../bespillslots.h"
56 #include "../beemitter.h"
57 #include "../begnuas.h"
58
59 #include "bearch_mips_t.h"
60
61 #include "mips_new_nodes.h"
62 #include "gen_mips_regalloc_if.h"
63 #include "mips_transform.h"
64 #include "mips_emitter.h"
65 #include "mips_map_regs.h"
66 #include "mips_util.h"
67 #include "mips_scheduler.h"
68
69 #define DEBUG_MODULE "firm.be.mips.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 mips 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
91 arch_register_req_t *mips_get_irn_reg_req(const ir_node *node, 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 || mode == mode_M) {
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                 /* in case of a proj, we need to get the correct OUT slot */
106                 /* of the node corresponding to the proj number */
107                 if (pos == -1) {
108                         node_pos = mips_translate_proj_pos(node);
109                 }
110                 else {
111                         node_pos = pos;
112                 }
113
114                 node = skip_Proj_const(node);
115         }
116
117         /* get requirements for our own nodes */
118         if (is_mips_irn(node)) {
119                 const arch_register_req_t *req;
120                 if (pos >= 0) {
121                         req = get_mips_in_req(node, pos);
122                 } else {
123                         req = get_mips_out_req(node, node_pos);
124                 }
125
126                 return req;
127         }
128
129         /* unknown should be translated by now */
130         assert(!is_Unknown(node));
131
132         return arch_no_register_req;
133 }
134
135 static void mips_set_irn_reg(ir_node *irn, const arch_register_t *reg)
136 {
137         int pos = 0;
138
139         if (is_Proj(irn)) {
140
141                 if (get_irn_mode(irn) == mode_X) {
142                         return;
143                 }
144
145                 pos = mips_translate_proj_pos(irn);
146                 irn = skip_Proj(irn);
147         }
148
149         if (is_mips_irn(irn)) {
150                 const arch_register_t **slots;
151
152                 slots      = get_mips_slots(irn);
153                 slots[pos] = reg;
154         } else {
155                 /* here we set the registers for the Phi nodes */
156                 mips_set_firm_reg(irn, reg, cur_reg_set);
157         }
158 }
159
160 static const arch_register_t *mips_get_irn_reg(const ir_node *irn)
161 {
162         int pos = 0;
163         const arch_register_t *reg = NULL;
164
165         if (is_Proj(irn)) {
166
167                 if (get_irn_mode(irn) == mode_X) {
168                         return NULL;
169                 }
170
171                 pos = mips_translate_proj_pos(irn);
172                 irn = skip_Proj_const(irn);
173         }
174
175         if (is_mips_irn(irn)) {
176                 const arch_register_t **slots;
177                 slots = get_mips_slots(irn);
178                 reg   = slots[pos];
179         }
180         else {
181                 reg = mips_get_firm_reg(irn, cur_reg_set);
182         }
183
184         return reg;
185 }
186
187 static arch_irn_class_t mips_classify(const ir_node *irn)
188 {
189         irn = skip_Proj_const(irn);
190
191         if (is_cfop(irn)) {
192                 return arch_irn_class_branch;
193         }
194
195         return 0;
196 }
197
198 static arch_irn_flags_t mips_get_flags(const ir_node *irn)
199 {
200         irn = skip_Proj_const(irn);
201
202         if (!is_mips_irn(irn))
203                 return 0;
204
205         return get_mips_flags(irn);
206 }
207
208 int mips_is_Load(const ir_node *node)
209 {
210         return is_mips_lw(node) || is_mips_lh(node) || is_mips_lhu(node) ||
211                 is_mips_lb(node) || is_mips_lbu(node);
212 }
213
214 int mips_is_Store(const ir_node *node)
215 {
216         return is_mips_sw(node) || is_mips_sh(node) || is_mips_sb(node);
217 }
218
219 static ir_entity *mips_get_frame_entity(const ir_node *node)
220 {
221         const mips_load_store_attr_t *attr;
222
223         if(!is_mips_irn(node))
224                 return NULL;
225         if(!mips_is_Load(node) && !mips_is_Store(node))
226                 return NULL;
227
228         attr = get_mips_load_store_attr_const(node);
229         return attr->stack_entity;
230 }
231
232 static void mips_set_frame_entity(ir_node *node, ir_entity *entity)
233 {
234         mips_load_store_attr_t *attr;
235
236         if(!is_mips_irn(node)) {
237                 panic("trying to set frame entity on non load/store node %+F", node);
238         }
239         if(!mips_is_Load(node) && !mips_is_Store(node)) {
240                 panic("trying to set frame entity on non load/store node %+F", node);
241         }
242
243         attr = get_irn_generic_attr(node);
244         attr->stack_entity = entity;
245 }
246
247 /**
248  * This function is called by the generic backend to correct offsets for
249  * nodes accessing the stack.
250  */
251 static void mips_set_frame_offset(ir_node *node, int offset)
252 {
253         mips_load_store_attr_t *attr;
254
255         if(!is_mips_irn(node)) {
256                 panic("trying to set frame offset on non load/store node %+F", node);
257         }
258         if(!mips_is_Load(node) && !mips_is_Store(node)) {
259                 panic("trying to set frame offset on non load/store node %+F", node);
260         }
261
262         attr = get_irn_generic_attr(node);
263         attr->offset += offset;
264
265         if(attr->offset < -32768 || attr->offset > 32767) {
266                 panic("Out of stack space! (mips supports only 16bit offsets)");
267         }
268 }
269
270 static int mips_get_sp_bias(const ir_node *irn)
271 {
272         (void) irn;
273         return 0;
274 }
275
276 /* fill register allocator interface */
277
278 static const arch_irn_ops_t mips_irn_ops = {
279         mips_get_irn_reg_req,
280         mips_set_irn_reg,
281         mips_get_irn_reg,
282         mips_classify,
283         mips_get_flags,
284         mips_get_frame_entity,
285         mips_set_frame_entity,
286         mips_set_frame_offset,
287         mips_get_sp_bias,
288         NULL,    /* get_inverse             */
289         NULL,    /* get_op_estimated_cost   */
290         NULL,    /* possible_memory_operand */
291         NULL,    /* perform_memory_operand  */
292 };
293
294 /**************************************************
295  *                _                         _  __
296  *               | |                       (_)/ _|
297  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
298  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
299  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
300  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
301  *                        __/ |
302  *                       |___/
303  **************************************************/
304
305 /**
306  * Transforms the standard firm graph into
307  * a mips firm graph
308  */
309 static void mips_prepare_graph(void *self) {
310         mips_code_gen_t *cg = self;
311
312         /* do local optimizations */
313         optimize_graph_df(cg->irg);
314
315         /* TODO: we often have dead code reachable through out-edges here. So for
316          * now we rebuild edges (as we need correct user count for code selection)
317          */
318 #if 1
319         edges_deactivate(cg->irg);
320         edges_activate(cg->irg);
321 #endif
322
323         // walk the graph and transform firm nodes into mips nodes where possible
324         mips_transform_graph(cg);
325         dump_ir_block_graph_sched(cg->irg, "-transformed");
326
327         /* do local optimizations (mainly CSE) */
328         optimize_graph_df(cg->irg);
329
330         /* do code placement, to optimize the position of constants */
331         place_code(cg->irg);
332
333         be_dump(cg->irg, "-place", dump_ir_block_graph_sched);
334 }
335
336 /**
337  * Called immediately before emit phase.
338  */
339 static void mips_finish_irg(void *self) {
340         mips_code_gen_t *cg = self;
341         ir_graph        *irg = cg->irg;
342
343         /* create block schedule, this also removes empty blocks which might
344          * produce critical edges */
345         cg->block_schedule = be_create_block_schedule(irg, cg->birg->exec_freq);
346
347         dump_ir_block_graph_sched(irg, "-mips-finished");
348 }
349
350
351 static void mips_before_ra(void *self)
352 {
353         (void) self;
354 }
355
356 static void mips_after_ra(void* self)
357 {
358         mips_code_gen_t *cg = self;
359         be_coalesce_spillslots(cg->birg);
360         irg_walk_blkwise_graph(cg->irg, NULL, mips_after_ra_walker, self);
361 }
362
363 /**
364  * Emits the code, closes the output file and frees
365  * the code generator interface.
366  */
367 static void mips_emit_and_done(void *self)
368 {
369         mips_code_gen_t *cg  = self;
370         ir_graph        *irg = cg->irg;
371         (void) self;
372
373         mips_gen_routine(cg, irg);
374
375         cur_reg_set = NULL;
376
377         /* de-allocate code generator */
378         del_set(cg->reg_set);
379         free(cg);
380 }
381
382 static void *mips_cg_init(be_irg_t *birg);
383
384 static const arch_code_generator_if_t mips_code_gen_if = {
385         mips_cg_init,
386         NULL,                /* get_pic_base */
387         NULL,                /* before abi introduce */
388         mips_prepare_graph,
389         NULL,                /* spill */
390         mips_before_ra,      /* before register allocation hook */
391         mips_after_ra,
392         mips_finish_irg,
393         mips_emit_and_done
394 };
395
396 /**
397  * Initializes the code generator.
398  */
399 static void *mips_cg_init(be_irg_t *birg)
400 {
401         const arch_env_t *arch_env = be_get_birg_arch_env(birg);
402         mips_isa_t       *isa      = (mips_isa_t *) arch_env;
403         mips_code_gen_t  *cg       = XMALLOCZ(mips_code_gen_t);
404
405         cg->impl     = &mips_code_gen_if;
406         cg->irg      = be_get_birg_irg(birg);
407         cg->reg_set  = new_set(mips_cmp_irn_reg_assoc, 1024);
408         cg->isa      = isa;
409         cg->birg     = birg;
410
411         cur_reg_set = cg->reg_set;
412
413         isa->cg = cg;
414
415         return (arch_code_generator_t *)cg;
416 }
417
418
419 /*****************************************************************
420  *  ____             _                  _   _____  _____
421  * |  _ \           | |                | | |_   _|/ ____|  /\
422  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
423  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
424  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
425  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
426  *
427  *****************************************************************/
428
429 static mips_isa_t mips_isa_template = {
430         {
431                 &mips_isa_if,
432                 &mips_gp_regs[REG_SP],
433                 &mips_gp_regs[REG_FP],
434                 -1,             /* stack direction */
435                 2,      /* power of two stack alignment for calls, 2^2 == 4 */
436                 NULL,   /* main environment */
437                 7,      /* spill costs */
438                 5,      /* reload costs */
439         },
440         NULL,          /* cg */
441 };
442
443 /**
444  * Initializes the backend ISA and opens the output file.
445  */
446 static arch_env_t *mips_init(FILE *file_handle) {
447         static int inited = 0;
448         mips_isa_t *isa;
449
450         if(inited)
451                 return NULL;
452         inited = 1;
453
454         isa = XMALLOC(mips_isa_t);
455         memcpy(isa, &mips_isa_template, sizeof(isa[0]));
456
457         be_emit_init(file_handle);
458
459         mips_register_init();
460         mips_create_opcodes(&mips_irn_ops);
461         // mips_init_opcode_transforms();
462
463         /* we mark referenced global entities, so we can only emit those which
464          * are actually referenced. (Note: you mustn't use the type visited flag
465          * elsewhere in the backend)
466          */
467         inc_master_type_visited();
468
469         return &isa->arch_env;
470 }
471
472 /**
473  * Closes the output file and frees the ISA structure.
474  */
475 static void mips_done(void *self)
476 {
477         mips_isa_t *isa = self;
478
479         be_gas_emit_decls(isa->arch_env.main_env, 1);
480
481         be_emit_exit();
482         free(isa);
483 }
484
485 static unsigned mips_get_n_reg_class(const void *self)
486 {
487         (void) self;
488         return N_CLASSES;
489 }
490
491 static const arch_register_class_t *mips_get_reg_class(const void *self,
492                                                        unsigned i)
493 {
494         (void) self;
495         assert(i < N_CLASSES);
496         return &mips_reg_classes[i];
497 }
498
499
500
501 /**
502  * Get the register class which shall be used to store a value of a given mode.
503  * @param self The this pointer.
504  * @param mode The mode in question.
505  * @return A register class which can hold values of the given mode.
506  */
507 const arch_register_class_t *mips_get_reg_class_for_mode(const void *self,
508                                                          const ir_mode *mode)
509 {
510         (void) self;
511         (void) mode;
512         ASSERT_NO_FLOAT(mode);
513         return &mips_reg_classes[CLASS_mips_gp];
514 }
515
516 typedef struct {
517         be_abi_call_flags_bits_t flags;
518         const arch_env_t *arch_env;
519         ir_graph *irg;
520         // do special handling to support debuggers
521         int debug;
522 } mips_abi_env_t;
523
524 static void *mips_abi_init(const be_abi_call_t *call, const arch_env_t *arch_env, ir_graph *irg)
525 {
526         mips_abi_env_t *env    = XMALLOC(mips_abi_env_t);
527         be_abi_call_flags_t fl = be_abi_call_get_flags(call);
528         env->flags             = fl.bits;
529         env->irg               = irg;
530         env->arch_env          = arch_env;
531         env->debug             = 1;
532         return env;
533 }
534
535 static void mips_abi_dont_save_regs(void *self, pset *s)
536 {
537         mips_abi_env_t *env = self;
538
539         if(env->flags.try_omit_fp)
540                 pset_insert_ptr(s, env->arch_env->bp);
541 }
542
543 static const arch_register_t *mips_abi_prologue(void *self, ir_node** mem, pmap *reg_map, int *stack_bias)
544 {
545         mips_abi_env_t *env = self;
546         ir_graph *irg = env->irg;
547         ir_node *block = get_irg_start_block(env->irg);
548         ir_node *sp = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_SP]);
549         ir_node *fp = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_FP]);
550         int initialstackframesize;
551
552         (void) stack_bias;
553
554         if (env->debug) {
555                 /*
556                  * The calling conventions wants a stack frame of at least 24bytes size with
557                  *   a0-a3 saved in offset 0-12
558                  *   fp saved in offset 16
559                  *   ra saved in offset 20
560                  */
561                 ir_node *mm[6];
562                 ir_node *sync, *reg, *store;
563                 initialstackframesize = 24;
564
565                 // - setup first part of stackframe
566                 sp = new_rd_mips_addu(NULL, irg, block, sp,
567                                       mips_create_Immediate(initialstackframesize));
568                 mips_set_irn_reg(sp, &mips_gp_regs[REG_SP]);
569                 set_mips_flags(sp, arch_irn_flags_ignore);
570
571                 /* TODO: where to get an edge with a0-a3
572                 int i;
573                 for(i = 0; i < 4; ++i) {
574                         ir_node *reg = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_A0 + i]);
575                         ir_node *store = new_rd_mips_store_r(dbg, irg, block, *mem, sp, reg, mode_T);
576                         attr = get_mips_attr(store);
577                         attr->load_store_mode = mode_Iu;
578                         attr->tv = new_tarval_from_long(i * 4, mode_Is);
579
580                         mm[i] = new_r_Proj(irg, block, store, mode_M, pn_Store_M);
581                 }
582                 */
583
584                 reg = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_FP]);
585                 store = new_rd_mips_sw(NULL, irg, block, sp, reg, *mem, NULL, 16);
586
587                 mm[4] = store;
588
589                 reg = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_RA]);
590                 store = new_rd_mips_sw(NULL, irg, block, sp, reg, *mem, NULL, 20);
591
592                 mm[5] = store;
593
594                 /* Note: ideally we would route these mem edges directly towards the
595                  * epilogue, but this is currently not supported so we sync all mems
596                  * together */
597                 sync = new_r_Sync(irg, block, 2, mm+4);
598                 *mem = sync;
599         } else {
600                 ir_node *reg, *store;
601                 initialstackframesize = 4;
602
603                 // save old framepointer
604                 sp = new_rd_mips_addu(NULL, irg, block, sp,
605                                       mips_create_Immediate(-initialstackframesize));
606                 mips_set_irn_reg(sp, &mips_gp_regs[REG_SP]);
607                 set_mips_flags(sp, arch_irn_flags_ignore);
608
609                 reg = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_FP]);
610                 store = new_rd_mips_sw(NULL, irg, block, sp, reg, *mem, NULL, 0);
611
612                 *mem = store;
613         }
614
615         // setup framepointer
616         fp = new_rd_mips_addu(NULL, irg, block, sp,
617                               mips_create_Immediate(-initialstackframesize));
618         mips_set_irn_reg(fp, &mips_gp_regs[REG_FP]);
619         set_mips_flags(fp, arch_irn_flags_ignore);
620
621         be_abi_reg_map_set(reg_map, &mips_gp_regs[REG_FP], fp);
622         be_abi_reg_map_set(reg_map, &mips_gp_regs[REG_SP], sp);
623
624         return &mips_gp_regs[REG_SP];
625 }
626
627 static void mips_abi_epilogue(void *self, ir_node *block, ir_node **mem, pmap *reg_map)
628 {
629         mips_abi_env_t   *env = self;
630
631         ir_graph *irg = env->irg;
632         ir_node *sp = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_SP]);
633         ir_node *fp = be_abi_reg_map_get(reg_map, &mips_gp_regs[REG_FP]);
634         ir_node *load;
635         int initial_frame_size = env->debug ? 24 : 4;
636         int fp_save_offset = env->debug ? 16 : 0;
637
638         // copy fp to sp
639         sp = new_rd_mips_or(NULL, irg, block, fp, mips_create_zero());
640         mips_set_irn_reg(sp, &mips_gp_regs[REG_SP]);
641         set_mips_flags(sp, arch_irn_flags_ignore);
642
643         // 1. restore fp
644         load = new_rd_mips_lw(NULL, irg, block, sp, *mem, NULL,
645                               fp_save_offset - initial_frame_size);
646         set_mips_flags(load, arch_irn_flags_ignore);
647
648         fp = new_r_Proj(irg, block, load, mode_Iu, pn_mips_lw_res);
649         *mem = new_r_Proj(irg, block, load, mode_Iu, pn_mips_lw_M);
650         arch_set_irn_register(fp, &mips_gp_regs[REG_FP]);
651
652         be_abi_reg_map_set(reg_map, &mips_gp_regs[REG_FP], fp);
653         be_abi_reg_map_set(reg_map, &mips_gp_regs[REG_SP], sp);
654 }
655
656 /**
657  * Produces the type which sits between the stack args and the locals on the stack.
658  * it will contain the return address and space to store the old frame pointer.
659  * @return The Firm type modelling the ABI between type.
660  */
661 static ir_type *mips_abi_get_between_type(void *self) {
662         mips_abi_env_t *env = self;
663
664         static ir_type *debug_between_type = NULL;
665         static ir_type *opt_between_type = NULL;
666         static ir_entity *old_fp_ent    = NULL;
667
668         if(env->debug && debug_between_type == NULL) {
669                 ir_entity *a0_ent, *a1_ent, *a2_ent, *a3_ent;
670                 ir_entity *ret_addr_ent;
671                 ir_type *ret_addr_type = new_type_primitive(new_id_from_str("return_addr"), mode_P);
672                 ir_type *old_fp_type   = new_type_primitive(new_id_from_str("fp"), mode_P);
673                 ir_type *old_param_type = new_type_primitive(new_id_from_str("param"), mode_Iu);
674
675                 debug_between_type     = new_type_class(new_id_from_str("mips_between_type"));
676                 a0_ent                             = new_entity(debug_between_type, new_id_from_str("a0_ent"), old_param_type);
677                 a1_ent                             = new_entity(debug_between_type, new_id_from_str("a1_ent"), old_param_type);
678                 a2_ent                             = new_entity(debug_between_type, new_id_from_str("a2_ent"), old_param_type);
679                 a3_ent                             = new_entity(debug_between_type, new_id_from_str("a3_ent"), old_param_type);
680                 old_fp_ent             = new_entity(debug_between_type, new_id_from_str("old_fp"), old_fp_type);
681                 ret_addr_ent           = new_entity(debug_between_type, new_id_from_str("ret_addr"), ret_addr_type);
682
683                 set_entity_offset(a0_ent, 0);
684                 set_entity_offset(a1_ent, 4);
685                 set_entity_offset(a2_ent, 8);
686                 set_entity_offset(a3_ent, 12);
687                 set_entity_offset(old_fp_ent, 16);
688                 set_entity_offset(ret_addr_ent, 20);
689
690                 set_type_size_bytes(debug_between_type, 24);
691         } else if(!env->debug && opt_between_type == NULL) {
692                 ir_type *old_fp_type   = new_type_primitive(new_id_from_str("fp"), mode_P);
693                 ir_entity *old_fp_ent;
694
695                 opt_between_type       = new_type_class(new_id_from_str("mips_between_type"));
696                 old_fp_ent             = new_entity(opt_between_type, new_id_from_str("old_fp"), old_fp_type);
697                 set_entity_offset(old_fp_ent, 0);
698                 set_type_size_bytes(opt_between_type, 4);
699         }
700
701         return env->debug ? debug_between_type : opt_between_type;
702 }
703
704 static const be_abi_callbacks_t mips_abi_callbacks = {
705         mips_abi_init,
706         free,
707         mips_abi_get_between_type,
708         mips_abi_dont_save_regs,
709         mips_abi_prologue,
710         mips_abi_epilogue,
711 };
712
713 /**
714  * Get the ABI restrictions for procedure calls.
715  * @param self        The this pointer.
716  * @param method_type The type of the method (procedure) in question.
717  * @param abi         The abi object to be modified
718  */
719 static void mips_get_call_abi(const void *self, ir_type *method_type,
720                               be_abi_call_t *abi)
721 {
722         ir_type  *tp;
723         ir_mode  *mode;
724         int       n = get_method_n_params(method_type);
725         int result_count;
726         int       i;
727         ir_mode **modes;
728         const arch_register_t *reg;
729         be_abi_call_flags_t call_flags;
730         (void) self;
731
732         memset(&call_flags, 0, sizeof(call_flags));
733         call_flags.bits.left_to_right         = 0;
734         call_flags.bits.store_args_sequential = 0;
735         call_flags.bits.try_omit_fp           = 1;
736         call_flags.bits.fp_free               = 0;
737         call_flags.bits.call_has_imm          = 1;
738
739         /* set stack parameter passing style */
740         be_abi_call_set_flags(abi, call_flags, &mips_abi_callbacks);
741
742         /* collect the mode for each type */
743         modes = alloca(n * sizeof(modes[0]));
744         for (i = 0; i < n; i++) {
745                 tp       = get_method_param_type(method_type, i);
746                 modes[i] = get_type_mode(tp);
747         }
748
749         // assigns parameters to registers or stack
750         for (i = 0; i < n; i++) {
751                 // first 4 params in $a0-$a3, the others on the stack
752                 if(i < 4) {
753                         reg = &mips_gp_regs[REG_A0 + i];
754                         be_abi_call_param_reg(abi, i, reg);
755                 } else {
756                         /* default: all parameters on stack */
757                         be_abi_call_param_stack(abi, i, modes[i], 4, 0, 0);
758                 }
759         }
760
761         /* set return register */
762         /* default: return value is in R0 (and maybe R1) */
763         result_count = get_method_n_ress(method_type);
764         assert(result_count <= 2 && "More than 2 result values not supported");
765         for(i = 0; i < result_count; ++i) {
766                 const arch_register_t* reg;
767                 tp   = get_method_res_type(method_type, i);
768                 mode = get_type_mode(tp);
769                 ASSERT_NO_FLOAT(mode);
770
771                 reg = &mips_gp_regs[REG_V0 + i];
772                 be_abi_call_res_reg(abi, i, reg);
773         }
774 }
775
776 /**
777  * Initializes the code generator interface.
778  */
779 static const arch_code_generator_if_t *mips_get_code_generator_if(void *self)
780 {
781         (void) self;
782         return &mips_code_gen_if;
783 }
784
785 /**
786  * Returns the necessary byte alignment for storing a register of given class.
787  */
788 static int mips_get_reg_class_alignment(const void *self,
789                                         const arch_register_class_t *cls)
790 {
791         ir_mode *mode = arch_register_class_mode(cls);
792         (void) self;
793         return get_mode_size_bytes(mode);
794 }
795
796 static const be_execution_unit_t ***mips_get_allowed_execution_units(
797                 const void *self, const ir_node *irn)
798 {
799         (void) self;
800         (void) irn;
801         /* TODO */
802         panic("Unimplemented mips_get_allowed_execution_units()");
803 }
804
805 static const be_machine_t *mips_get_machine(const void *self)
806 {
807         (void) self;
808         /* TODO */
809         panic("Unimplemented mips_get_machine()");
810 }
811
812 /**
813  * Return irp irgs in the desired order.
814  */
815 static ir_graph **mips_get_irg_list(const void *self, ir_graph ***irg_list)
816 {
817         (void) self;
818         (void) irg_list;
819         return NULL;
820 }
821
822 /**
823  * Returns the libFirm configuration parameter for this backend.
824  */
825 static const backend_params *mips_get_libfirm_params(void) {
826         static backend_params p = {
827                 1,     /* need dword lowering */
828                 0,     /* don't support inline assembler yet */
829                 0,     /* no immediate floating point mode. */
830                 NULL,  /* no additional opcodes */
831                 NULL,  /* will be set later */
832                 NULL,  /* but yet no creator function */
833                 NULL,  /* context for create_intrinsic_fkt */
834                 NULL,  /* no if conversion settings */
835                 NULL   /* no immediate fp mode */
836         };
837
838         return &p;
839 }
840
841 static asm_constraint_flags_t mips_parse_asm_constraint(const void *self,
842                                                         const char **c)
843 {
844         (void) self;
845         (void) c;
846         return ASM_CONSTRAINT_FLAG_INVALID;
847 }
848
849 static int mips_is_valid_clobber(const void *self, const char *clobber)
850 {
851         (void) self;
852         (void) clobber;
853         return 0;
854 }
855
856 const arch_isa_if_t mips_isa_if = {
857         mips_init,
858         mips_done,
859         mips_get_n_reg_class,
860         mips_get_reg_class,
861         mips_get_reg_class_for_mode,
862         mips_get_call_abi,
863         mips_get_code_generator_if,
864         mips_get_list_sched_selector,
865         mips_get_ilp_sched_selector,
866         mips_get_reg_class_alignment,
867         mips_get_libfirm_params,
868         mips_get_allowed_execution_units,
869         mips_get_machine,
870         mips_get_irg_list,
871         NULL,                /* mark remat */
872         mips_parse_asm_constraint,
873         mips_is_valid_clobber
874 };
875
876 void be_init_arch_mips(void)
877 {
878         be_register_isa_if("mips", &mips_isa_if);
879 }
880
881 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_mips);