added context parameter for create_intrinsic_fkt
[libfirm] / ir / be / ppc32 / bearch_ppc32.c
1 /* The main ppc backend driver file. */
2 /* $Id$ */
3
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
7
8 #include "pseudo_irg.h"
9 #include "irgwalk.h"
10 #include "irprog.h"
11 #include "irprintf.h"
12 #include "ircons.h"
13 #include "irgmod.h"
14 #include "irdump.h"
15
16 #include "bitset.h"
17 #include "debug.h"
18
19 #include "../bearch.h"                /* the general register allocator interface */
20 #include "../benode_t.h"
21 #include "../belower.h"
22 #include "../besched_t.h"
23 #include "../be.h"
24 #include "../beabi.h"
25
26 #include "pset.h"
27
28 #include "bearch_ppc32_t.h"
29
30 #include "ppc32_new_nodes.h"           /* ppc nodes interface */
31 #include "gen_ppc32_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
32 #include "ppc32_gen_decls.h"           /* interface declaration emitter */
33 #include "ppc32_transform.h"
34 #include "ppc32_transform_conv.h"
35 #include "ppc32_emitter.h"
36 #include "ppc32_map_regs.h"
37
38 #define DEBUG_MODULE "firm.be.ppc.isa"
39
40 int isleaf;
41 pset *symbol_pset = NULL;
42
43 /* TODO: ugly, but we need it to get access to the registers assigned to Phi nodes */
44 static set *cur_reg_set = NULL;
45
46 /**************************************************
47  *                         _ _              _  __
48  *                        | | |            (_)/ _|
49  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
50  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
51  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
52  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
53  *            __/ |
54  *           |___/
55  **************************************************/
56
57 static ir_node *my_skip_proj(const ir_node *n) {
58         while (is_Proj(n))
59                 n = get_Proj_pred(n);
60         return (ir_node *)n;
61 }
62
63 /**
64  * Return register requirements for a ppc node.
65  * If the node returns a tuple (mode_T) then the proj's
66  * will be asked for this information.
67  */
68 static const arch_register_req_t *ppc32_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos) {
69         const ppc32_register_req_t *irn_req;
70         long               node_pos = pos == -1 ? 0 : pos;
71         ir_mode           *mode     = get_irn_mode(irn);
72         FIRM_DBG_REGISTER(firm_dbg_module_t *mod, DEBUG_MODULE);
73
74         if (is_Block(irn) || mode == mode_X || mode == mode_M) {
75                 DBG((mod, LEVEL_1, "ignoring block, mode_X or mode_M node %+F\n", irn));
76                 return NULL;
77         }
78
79         if (mode == mode_T && pos < 0) {
80                 DBG((mod, LEVEL_1, "ignoring request for OUT requirements at %+F", irn));
81                 return NULL;
82         }
83
84         DBG((mod, LEVEL_1, "get requirements at pos %d for %+F ... ", pos, irn));
85
86         if (is_Proj(irn)) {
87                 /* in case of a proj, we need to get the correct OUT slot */
88                 /* of the node corresponding to the proj number */
89                 if (pos == -1) {
90                         node_pos = ppc32_translate_proj_pos(irn);
91                 }
92                 else {
93                         node_pos = pos;
94                 }
95
96                 irn = my_skip_proj(irn);
97
98                 DB((mod, LEVEL_1, "skipping Proj, going to %+F at pos %d ... ", irn, node_pos));
99         }
100
101         /* get requirements for our own nodes */
102         if (is_ppc32_irn(irn)) {
103                 if (pos >= 0) {
104                         irn_req = get_ppc32_in_req(irn, pos);
105                 }
106                 else {
107                         irn_req = get_ppc32_out_req(irn, node_pos);
108                 }
109
110                 DB((mod, LEVEL_1, "returning reqs for %+F at pos %d\n", irn, pos));
111
112                 memcpy(req, &(irn_req->req), sizeof(*req));
113
114                 if (arch_register_req_is(&(irn_req->req), should_be_same)) {
115                         assert(irn_req->same_pos >= 0 && "should be same constraint for in -> out NYI");
116                         req->other_same = get_irn_n(irn, irn_req->same_pos);
117                 }
118
119                 if (arch_register_req_is(&(irn_req->req), should_be_different)) {
120                         assert(irn_req->different_pos >= 0 && "should be different constraint for in -> out NYI");
121                         req->other_different = get_irn_n(irn, irn_req->different_pos);
122                 }
123         }
124         /* get requirements for FIRM nodes */
125         else {
126                 /* treat Phi like Const with default requirements */
127                 if (is_Phi(irn)) {
128                         DB((mod, LEVEL_1, "returning standard reqs for %+F\n", irn));
129
130                         if (mode_is_float(mode)) {
131                                 memcpy(req, &(ppc32_default_req_ppc32_fp.req), sizeof(*req));
132                         }
133                         else if (mode_is_int(mode) || mode_is_reference(mode)) {
134                                 memcpy(req, &(ppc32_default_req_ppc32_gp.req), sizeof(*req));
135                         }
136                         else if (mode == mode_T || mode == mode_M) {
137                                 DBG((mod, LEVEL_1, "ignoring Phi node %+F\n", irn));
138                                 return NULL;
139                         }
140                         else {
141                                 assert(0 && "unsupported Phi-Mode");
142                         }
143                 }
144                 else {
145                         DB((mod, LEVEL_1, "returning NULL for %+F (node not supported)\n", irn));
146                         req = NULL;
147                 }
148         }
149
150         return req;
151 }
152
153 static void ppc32_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg) {
154         int pos = 0;
155
156         if (is_Proj(irn)) {
157
158                 if (get_irn_mode(irn) == mode_X) {
159                         return;
160                 }
161
162                 pos = ppc32_translate_proj_pos(irn);
163                 irn = my_skip_proj(irn);
164         }
165
166         if (is_ppc32_irn(irn)) {
167                 const arch_register_t **slots;
168
169                 slots      = get_ppc32_slots(irn);
170                 slots[pos] = reg;
171         }
172         else {
173                 /* here we set the registers for the Phi nodes */
174                 ppc32_set_firm_reg(irn, reg, cur_reg_set);
175         }
176 }
177
178 static const arch_register_t *ppc32_get_irn_reg(const void *self, const ir_node *irn) {
179         int pos = 0;
180         const arch_register_t *reg = NULL;
181
182         if (is_Proj(irn)) {
183
184                 if (get_irn_mode(irn) == mode_X) {
185                         return NULL;
186                 }
187
188                 pos = ppc32_translate_proj_pos(irn);
189                 irn = my_skip_proj(irn);
190         }
191
192         if (is_ppc32_irn(irn)) {
193                 const arch_register_t **slots;
194                 slots = get_ppc32_slots(irn);
195                 reg   = slots[pos];
196         }
197         else {
198                 reg = ppc32_get_firm_reg(irn, cur_reg_set);
199         }
200
201         return reg;
202 }
203
204 static arch_irn_class_t ppc32_classify(const void *self, const ir_node *irn) {
205         irn = my_skip_proj(irn);
206
207         if (is_cfop(irn)) {
208                 return arch_irn_class_branch;
209         }
210         else if (is_ppc32_irn(irn)) {
211                 return arch_irn_class_normal;
212         }
213
214         return 0;
215 }
216
217 static arch_irn_flags_t ppc32_get_flags(const void *self, const ir_node *irn) {
218         irn = my_skip_proj(irn);
219
220         if (is_ppc32_irn(irn)) {
221                 return get_ppc32_flags(irn);
222         }
223         else if (is_Unknown(irn)) {
224                 return arch_irn_flags_ignore;
225         }
226
227         return 0;
228 }
229
230 static entity *ppc32_get_frame_entity(const void *self, const ir_node *irn) {
231         if(!is_ppc32_irn(irn)) return NULL;
232         if(get_ppc32_type(irn)!=ppc32_ac_FrameEntity) return NULL;
233         return get_ppc32_frame_entity(irn);
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 ppc32_set_stack_bias(const void *self, ir_node *irn, int bias) {
241         set_ppc32_offset(irn, bias);
242 }
243
244 typedef struct
245 {
246         const be_abi_call_t *call;
247         ir_graph *irg;
248 } ppc32_abi_env;
249
250 /**
251  * Initialize the callback object.
252  * @param call The call object.
253  * @param aenv The architecture environment.
254  * @param irg  The graph with the method.
255  * @return     Some pointer. This pointer is passed to all other callback functions as self object.
256  */
257 static void *ppc32_abi_init(const be_abi_call_t *call, const arch_env_t *aenv, ir_graph *irg)
258 {
259         ppc32_abi_env *env = xmalloc(sizeof(ppc32_abi_env));
260         env->call = call;
261         env->irg = irg;
262         return env;
263 }
264
265 /**
266  * Destroy the callback object.
267  * @param self The callback object.
268  */
269 static void ppc32_abi_done(void *self)
270 {
271         free(self);
272 }
273
274 /**
275  * Get the between type for that call.
276  * @param self The callback object.
277  * @return The between type of for that call.
278  */
279 static ir_type *ppc32_abi_get_between_type(void *self)
280 {
281         static ir_type *between_type = NULL;
282         static entity *old_bp_ent    = NULL;
283
284         if(!between_type) {
285                 entity *ret_addr_ent;
286                 ir_type *ret_addr_type = new_type_primitive(new_id_from_str("return_addr"), mode_P);
287                 ir_type *old_bp_type   = new_type_primitive(new_id_from_str("bp"), mode_P);
288
289                 between_type           = new_type_class(new_id_from_str("ppc32_between_type"));
290                 old_bp_ent             = new_entity(between_type, new_id_from_str("old_bp"), old_bp_type);
291                 ret_addr_ent           = new_entity(between_type, new_id_from_str("old_bp"), ret_addr_type);
292
293                 set_entity_offset_bytes(old_bp_ent, 0);
294                 set_entity_offset_bytes(ret_addr_ent, get_type_size_bytes(old_bp_type));
295                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
296         }
297
298         return between_type;
299 }
300
301 /**
302  * Put all registers which are saved by the prologue/epilogue in a set.
303  * @param self The callback object.
304  * @param regs A set.
305  */
306 static void ppc32_abi_regs_saved_by_me(void *self, pset *regs)
307 {
308 }
309
310 /**
311  * Generate the prologue.
312  * @param self    The callback object.
313  * @param mem     A pointer to the mem node. Update this if you define new memory.
314  * @param reg_map A mapping mapping all callee_save/ignore/parameter registers to their defining nodes.
315  * @return        The register which shall be used as a stack frame base.
316  *
317  * All nodes which define registers in @p reg_map must keep @p reg_map current.
318  */
319 static const arch_register_t *ppc32_abi_prologue(void *self, ir_node **mem, pmap *reg_map)
320 {
321         ppc32_abi_env *env = (ppc32_abi_env *) self;
322         be_abi_call_flags_t flags = be_abi_call_get_flags(env->call);
323         isleaf = flags.bits.irg_is_leaf;
324
325         if(flags.bits.try_omit_fp)
326                 return &ppc32_gp_regs[REG_R1];
327         else
328                 return &ppc32_gp_regs[REG_R31];
329 }
330
331 /**
332  * Generate the epilogue.
333  * @param self    The callback object.
334  * @param mem     Memory one can attach to.
335  * @param reg_map A mapping mapping all callee_save/ignore/return registers to their defining nodes.
336  *
337  * All nodes which define registers in @p reg_map must keep @p reg_map current.
338  * Also, the @p mem variable must be updated, if memory producing nodes are inserted.
339  */
340 static void ppc32_abi_epilogue(void *self, ir_node *bl, ir_node **mem, pmap *reg_map)
341 {
342 }
343
344 static const be_abi_callbacks_t ppc32_abi_callbacks = {
345         ppc32_abi_init,
346         ppc32_abi_done,
347         ppc32_abi_get_between_type,
348         ppc32_abi_regs_saved_by_me,
349         ppc32_abi_prologue,
350         ppc32_abi_epilogue,
351 };
352
353 /* fill register allocator interface */
354
355 static const arch_irn_ops_if_t ppc32_irn_ops_if = {
356         ppc32_get_irn_reg_req,
357         ppc32_set_irn_reg,
358         ppc32_get_irn_reg,
359         ppc32_classify,
360         ppc32_get_flags,
361         ppc32_get_frame_entity,
362         ppc32_set_stack_bias,
363         NULL
364 };
365
366 ppc32_irn_ops_t ppc32_irn_ops = {
367         &ppc32_irn_ops_if,
368         NULL
369 };
370
371
372
373 /**************************************************
374  *                _                         _  __
375  *               | |                       (_)/ _|
376  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
377  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
378  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
379  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
380  *                        __/ |
381  *                       |___/
382  **************************************************/
383
384 static void ppc32_before_abi(void *self) {
385         ppc32_code_gen_t *cg = self;
386         ir_type *frame_type = get_irg_frame_type(cg->irg);
387
388         frame_alloc_area(frame_type, 24, 4, 1);
389
390         ppc32_init_conv_walk();
391         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_conv_walk, cg);
392
393         if (cg->area_size) {
394                 if(cg->area_size < 32) cg->area_size = 32;
395                 cg->area = frame_alloc_area(get_irg_frame_type(cg->irg), cg->area_size+24, 16, 1);
396         }
397 }
398
399 static void ppc32_search_start_successor(ir_node *block, void *env) {
400         ppc32_code_gen_t *cg = env;
401         int n = get_Block_n_cfgpreds(block);
402         ir_node *startblock = get_irg_start_block(cg->irg);
403         if(block == startblock) return;
404
405         for (n--; n >= 0; n--) {
406                 ir_node *predblock = get_irn_n(get_Block_cfgpred(block, n), -1);
407                 if(predblock == startblock)
408                 {
409                         cg->start_succ_block = block;
410                         return;
411                 }
412         }
413 }
414
415 /**
416  * Transforms the standard firm graph into
417  * a ppc firm graph
418  */
419 static void ppc32_prepare_graph(void *self) {
420         ppc32_code_gen_t *cg = self;
421
422         irg_block_walk_graph(cg->irg, NULL, ppc32_search_start_successor, cg);
423         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_pretransform_walk, cg);
424         be_dump(cg->irg, "-pretransformed", dump_ir_block_graph);
425
426         ppc32_register_transformers();
427         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_node, cg);
428         be_dump(cg->irg, "-transformed", dump_ir_block_graph);
429         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_const, cg);
430 }
431
432
433
434 /**
435  * Called immediatly before emit phase.
436  */
437 static void ppc32_finish_irg(ir_graph *irg, ppc32_code_gen_t *cg) {
438         /* TODO: - fix offsets for nodes accessing stack
439                          - ...
440         */
441 }
442
443
444 /**
445  * These are some hooks which must be filled but are probably not needed.
446  */
447 static void ppc32_before_sched(void *self) {
448         /* Some stuff you need to do after scheduling but before register allocation */
449 }
450
451 /**
452  * Called before the register allocator.
453  * Calculate a block schedule here. We need it for the x87
454  * simulator and the emitter.
455  */
456 static void ppc32_before_ra(void *self) {
457         ppc32_code_gen_t *cg = self;
458         cg->blk_sched = sched_create_block_schedule(cg->irg);
459 }
460
461 static void ppc32_transform_spill(ir_node *node, void *env)
462 {
463         ppc32_code_gen_t *cgenv = (ppc32_code_gen_t *)env;
464
465         if(be_is_Spill(node))
466         {
467                 ir_node  *store, *proj;
468                 dbg_info *dbg   = get_irn_dbg_info(node);
469                 ir_node  *block = get_nodes_block(node);
470
471                 const arch_register_class_t *regclass = arch_get_irn_reg_class(cgenv->arch_env, node, 1);
472
473                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
474                 {
475                         store = new_rd_ppc32_Stw(dbg, current_ir_graph, block,
476                                 get_irn_n(node, 0), get_irn_n(node, 1), new_rd_NoMem(current_ir_graph));
477                 }
478                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
479                 {
480                         store = new_rd_ppc32_Stfd(dbg, current_ir_graph, block,
481                                 get_irn_n(node, 0), get_irn_n(node, 1), new_rd_NoMem(current_ir_graph));
482                 }
483                 else assert(0 && "Spill for register class not supported yet!");
484
485                 set_ppc32_frame_entity(store, be_get_frame_entity(node));
486
487                 proj = new_rd_Proj(dbg, current_ir_graph, block, store, mode_M, pn_Store_M);
488
489                 if (sched_is_scheduled(node)) {
490                         sched_add_after(sched_prev(node), store);
491                         sched_add_after(store, proj);
492
493                         sched_remove(node);
494                 }
495
496                 exchange(node, proj);
497         }
498
499         if(be_is_Reload(node))
500         {
501                 ir_node *load, *proj;
502                 const arch_register_t *reg;
503                 dbg_info *dbg   = get_irn_dbg_info(node);
504                 ir_node  *block = get_nodes_block(node);
505                 ir_mode  *mode  = get_irn_mode(node);
506
507                 const arch_register_class_t *regclass = arch_get_irn_reg_class(cgenv->arch_env, node, -1);
508
509                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
510                 {
511                         load = new_rd_ppc32_Lwz(dbg, current_ir_graph, block,   get_irn_n(node, 0), get_irn_n(node, 1));
512                 }
513                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
514                 {
515                         load = new_rd_ppc32_Lfd(dbg, current_ir_graph, block,   get_irn_n(node, 0), get_irn_n(node, 1));
516                 }
517                 else assert(0 && "Reload for register class not supported yet!");
518
519                 set_ppc32_frame_entity(load, be_get_frame_entity(node));
520
521                 proj = new_rd_Proj(dbg, current_ir_graph, block, load, mode, pn_Load_res);
522
523                 if (sched_is_scheduled(node)) {
524                         sched_add_after(sched_prev(node), load);
525                         sched_add_after(load, proj);
526
527                         sched_remove(node);
528                 }
529
530                 /* copy the register from the old node to the new Load */
531                 reg = arch_get_irn_register(cgenv->arch_env, node);
532                 arch_set_irn_register(cgenv->arch_env, load, reg);
533
534                 exchange(node, proj);
535         }
536 }
537
538 /**
539  * Some stuff to do immediately after register allocation
540  */
541 static void ppc32_after_ra(void *self) {
542         ppc32_code_gen_t *cg = self;
543         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_spill, cg);
544 }
545
546 /**
547  * Emits the code, closes the output file and frees
548  * the code generator interface.
549  */
550 static void ppc32_emit_and_done(void *self) {
551         ppc32_code_gen_t *cg = self;
552         ir_graph           *irg = cg->irg;
553         FILE               *out = cg->isa->out;
554
555         if (cg->emit_decls) {
556                 ppc32_gen_decls(out);
557                 cg->emit_decls = 0;
558         }
559
560         ppc32_finish_irg(irg, cg);
561         dump_ir_block_graph_sched(irg, "-ppc-finished");
562         ppc32_gen_routine(out, irg, cg);
563
564         cur_reg_set = NULL;
565
566         /* de-allocate code generator */
567         del_set(cg->reg_set);
568         free(self);
569
570         if(symbol_pset)
571         {
572                 del_pset(symbol_pset);
573                 symbol_pset = NULL;
574         }
575 }
576
577 int is_direct_entity(entity *ent);
578
579 /**
580  * Collects all SymConsts which need to be accessed "indirectly"
581  *
582  * @param node    the firm node
583  * @param env     the debug module
584  */
585 void ppc32_collect_symconsts_walk(ir_node *node, void *env) {
586         if(get_irn_op(node) == op_SymConst)
587         {
588                 entity *ent = get_SymConst_entity(node);
589                 if(!is_direct_entity(ent))
590                         pset_insert_ptr(symbol_pset, ent);
591         }
592 }
593
594 static void *ppc32_cg_init(const be_irg_t *birg);
595
596 static const arch_code_generator_if_t ppc32_code_gen_if = {
597         ppc32_cg_init,
598         ppc32_before_abi,
599         ppc32_prepare_graph,
600         ppc32_before_sched,   /* before scheduling hook */
601         ppc32_before_ra,      /* before register allocation hook */
602         ppc32_after_ra,
603         ppc32_emit_and_done
604 };
605
606 /**
607  * Initializes the code generator.
608  */
609 static void *ppc32_cg_init(const be_irg_t *birg) {
610         ppc32_isa_t      *isa = (ppc32_isa_t *)birg->main_env->arch_env->isa;
611         ppc32_code_gen_t *cg  = xmalloc(sizeof(*cg));
612
613         cg->impl      = &ppc32_code_gen_if;
614         cg->irg       = birg->irg;
615         cg->reg_set   = new_set(ppc32_cmp_irn_reg_assoc, 1024);
616         cg->arch_env  = birg->main_env->arch_env;
617         cg->isa       = isa;
618         cg->birg      = birg;
619         cg->area_size = 0;
620         cg->area      = NULL;
621         cg->start_succ_block = NULL;
622         cg->blk_sched = NULL;
623         FIRM_DBG_REGISTER(cg->mod, "firm.be.ppc.cg");
624
625         isa->num_codegens++;
626
627         if (isa->num_codegens > 1)
628                 cg->emit_decls = 0;
629         else
630         {
631                 int i;
632                 cg->emit_decls = 1;
633                 symbol_pset = pset_new_ptr(8);
634                 for(i=0; i<get_irp_n_irgs(); i++)
635                 {
636                         cg->irg = get_irp_irg(i);
637                         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_collect_symconsts_walk, cg);
638                 }
639                 cg->irg = birg->irg;
640         }
641
642         cur_reg_set = cg->reg_set;
643
644         ppc32_irn_ops.cg = cg;
645
646         return (arch_code_generator_t *)cg;
647 }
648
649
650
651 /*****************************************************************
652  *  ____             _                  _   _____  _____
653  * |  _ \           | |                | | |_   _|/ ____|  /\
654  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
655  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
656  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
657  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
658  *
659  *****************************************************************/
660
661 static ppc32_isa_t ppc32_isa_template = {
662         &ppc32_isa_if,
663         &ppc32_gp_regs[REG_R1],  // stack pointer
664         &ppc32_gp_regs[REG_R31], // base pointer
665         -1,                                   // stack is decreasing
666         0,                                    // num codegens... ??
667         NULL
668 };
669
670 /**
671  * Initializes the backend ISA and opens the output file.
672  */
673 static void *ppc32_init(FILE *file_handle) {
674         static int inited = 0;
675         ppc32_isa_t *isa;
676
677         if(inited)
678                 return NULL;
679
680         isa = xmalloc(sizeof(*isa));
681         memcpy(isa, &ppc32_isa_template, sizeof(*isa));
682
683         isa->out = file_handle;
684
685         ppc32_register_init(isa);
686         ppc32_create_opcodes();
687
688         inited = 1;
689
690         return isa;
691 }
692
693
694
695 /**
696  * Closes the output file and frees the ISA structure.
697  */
698 static void ppc32_done(void *self) {
699         free(self);
700 }
701
702
703
704 static int ppc32_get_n_reg_class(const void *self) {
705         return N_CLASSES;
706 }
707
708 static const arch_register_class_t *ppc32_get_reg_class(const void *self, int i) {
709         assert(i >= 0 && i < N_CLASSES && "Invalid ppc register class requested.");
710         return &ppc32_reg_classes[i];
711 }
712
713
714
715 /**
716  * Get the register class which shall be used to store a value of a given mode.
717  * @param self The this pointer.
718  * @param mode The mode in question.
719  * @return A register class which can hold values of the given mode.
720  */
721 const arch_register_class_t *ppc32_get_reg_class_for_mode(const void *self, const ir_mode *mode) {
722         if (mode_is_float(mode))
723                 return &ppc32_reg_classes[CLASS_ppc32_fp];
724         else
725                 return &ppc32_reg_classes[CLASS_ppc32_gp];
726 }
727
728
729 /**
730  * Get the ABI restrictions for procedure calls.
731  * @param self        The this pointer.
732  * @param method_type The type of the method (procedure) in question.
733  * @param abi         The abi object to be modified
734  */
735 static void ppc32_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi) {
736         ir_type  *tp;
737         ir_mode  *mode;
738         int       i, n = get_method_n_params(method_type);
739         int               stackoffs = 0, lastoffs = 0, stackparamsize;
740
741         int               gpregi = REG_R3;
742         int               fpregi = REG_F1;
743
744         const arch_register_t *reg;
745         be_abi_call_flags_t call_flags = { { 0, 0, 1, 0, 0, 0, 1 } };
746
747         if(get_type_visibility(method_type)!=visibility_external_allocated)
748                 call_flags.bits.call_has_imm = 1;
749
750         /* set stack parameter passing style */
751         be_abi_call_set_flags(abi, call_flags, &ppc32_abi_callbacks);
752
753         for (i = 0; i < n; i++) {
754                 tp   = get_method_param_type(method_type, i);
755                 if(is_atomic_type(tp))
756                 {
757                         mode = get_type_mode(tp);
758
759                         if(mode_is_float(mode))
760                         {
761                                 if(fpregi <= REG_F13)
762                                 {
763                                         if(get_mode_size_bits(mode) == 32) gpregi++, stackparamsize=4;
764                                         else gpregi += 2, stackparamsize=8;                                                             // mode == irm_D
765                                         reg = &ppc32_fp_regs[fpregi++];
766                                 }
767                                 else
768                                 {
769                                         if(get_mode_size_bits(mode) == 32) stackparamsize=4;
770                                         else stackparamsize=8;                                                          // mode == irm_D
771                                         reg = NULL;
772                                 }
773                         }
774                         else
775                         {
776                                 if(gpregi <= REG_R10)
777                                         reg = &ppc32_gp_regs[gpregi++];
778                                 else
779                                         reg = NULL;
780                                 stackparamsize=4;
781                         }
782
783                         if(reg)
784                                 be_abi_call_param_reg(abi, i, reg);
785                         else
786                         {
787                                 be_abi_call_param_stack(abi, i, 4, stackoffs-lastoffs, 0);
788                                 lastoffs = stackoffs+stackparamsize;
789                         }
790                         stackoffs += stackparamsize;
791                 }
792                 else
793                 {
794                         be_abi_call_param_stack(abi, i, 4, stackoffs-lastoffs, 0);
795                         stackoffs += (get_type_size_bytes(tp)+3) & -4;
796                         lastoffs = stackoffs;
797                 }
798         }
799
800         /* explain where result can be found if any */
801         if (get_method_n_ress(method_type) > 0) {
802                 tp   = get_method_res_type(method_type, 0);
803                 mode = get_type_mode(tp);
804
805                 be_abi_call_res_reg(abi, 0,
806                         mode_is_float(mode) ? &ppc32_fp_regs[REG_F1] : &ppc32_gp_regs[REG_R3]);
807         }
808 }
809
810 static const void *ppc32_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn) {
811         return &ppc32_irn_ops;
812 }
813
814 const arch_irn_handler_t ppc32_irn_handler = {
815         ppc32_get_irn_ops
816 };
817
818 const arch_irn_handler_t *ppc32_get_irn_handler(const void *self) {
819         return &ppc32_irn_handler;
820 }
821
822 int ppc32_to_appear_in_schedule(void *block_env, const ir_node *irn) {
823         return is_ppc32_irn(irn);
824 }
825
826 /**
827  * Initializes the code generator interface.
828  */
829 static const arch_code_generator_if_t *ppc32_get_code_generator_if(void *self) {
830         return &ppc32_code_gen_if;
831 }
832
833 list_sched_selector_t ppc32_sched_selector;
834
835 /**
836  * Returns the reg_pressure scheduler with to_appear_in_schedule() overloaded
837  */
838 static const list_sched_selector_t *ppc32_get_list_sched_selector(const void *self) {
839         memcpy(&ppc32_sched_selector, trivial_selector, sizeof(list_sched_selector_t));
840         ppc32_sched_selector.to_appear_in_schedule = ppc32_to_appear_in_schedule;
841         return &ppc32_sched_selector;
842 }
843
844 /**
845  * Returns the necessary byte alignment for storing a register of given class.
846  */
847 static int ppc32_get_reg_class_alignment(const void *self, const arch_register_class_t *cls) {
848         ir_mode *mode = arch_register_class_mode(cls);
849         return get_mode_size_bytes(mode);
850 }
851
852 /**
853  * Returns the libFirm configuration parameter for this backend.
854  */
855 static const backend_params *ppc32_get_libfirm_params(void) {
856         static arch_dep_params_t ad = {
857                 1,  /* allow subs */
858                 0,      /* Muls are fast enough on ARM */
859                 31, /* shift would be ok */
860                 0,  /* SMUL is needed, only in Arch M*/
861                 0,  /* UMUL is needed, only in Arch M */
862                 32, /* SMUL & UMUL available for 32 bit */
863         };
864         static backend_params p = {
865                 NULL,  /* no additional opcodes */
866                 NULL,  /* will be set later */
867                 1,     /* need dword lowering */
868                 NULL,  /* but yet no creator function */
869                 NULL,  /* context for create_intrinsic_fkt */
870         };
871
872         p.dep_param = &ad;
873         return &p;
874 }
875
876 #ifdef WITH_LIBCORE
877 static void ppc32_register_options(lc_opt_entry_t *ent)
878 {
879 }
880 #endif /* WITH_LIBCORE */
881
882 const arch_isa_if_t ppc32_isa_if = {
883         ppc32_init,
884         ppc32_done,
885         ppc32_get_n_reg_class,
886         ppc32_get_reg_class,
887         ppc32_get_reg_class_for_mode,
888         ppc32_get_call_abi,
889         ppc32_get_irn_handler,
890         ppc32_get_code_generator_if,
891         ppc32_get_list_sched_selector,
892         ppc32_get_reg_class_alignment,
893         ppc32_get_libfirm_params,
894 #ifdef WITH_LIBCORE
895         ppc32_register_options
896 #endif
897 };