- Bigger refactoring and cleanup in backend:
[libfirm] / ir / be / ppc32 / bearch_ppc32.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 ppc backend driver file.
23  * @author  Moritz Kroll, Jens Mueller
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 "irdump.h"
35
36 #include "bitset.h"
37 #include "debug.h"
38 #include "error.h"
39
40 #include "../bearch.h"                /* the general register allocator interface */
41 #include "../benode.h"
42 #include "../belower.h"
43 #include "../besched.h"
44 #include "be.h"
45 #include "../beabi.h"
46 #include "../bemachine.h"
47 #include "../bemodule.h"
48 #include "../bespillslots.h"
49 #include "../beblocksched.h"
50 #include "../beirg.h"
51 #include "../begnuas.h"
52 #include "../belistsched.h"
53
54 #include "pset.h"
55
56 #include "bearch_ppc32_t.h"
57
58 #include "ppc32_new_nodes.h"           /* ppc nodes interface */
59 #include "gen_ppc32_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
60 #include "ppc32_transform.h"
61 #include "ppc32_transform_conv.h"
62 #include "ppc32_emitter.h"
63 #include "ppc32_map_regs.h"
64
65 #define DEBUG_MODULE "firm.be.ppc.isa"
66
67 int isleaf;
68
69 /* TODO: ugly, but we need it to get access to the registers assigned to Phi nodes */
70 static set *cur_reg_set = NULL;
71
72 /**************************************************
73  *                         _ _              _  __
74  *                        | | |            (_)/ _|
75  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
76  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
77  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
78  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
79  *            __/ |
80  *           |___/
81  **************************************************/
82
83 static arch_irn_class_t ppc32_classify(const ir_node *irn)
84 {
85         (void) irn;
86         return 0;
87 }
88
89 static ir_entity *ppc32_get_frame_entity(const ir_node *irn)
90 {
91         if(!is_ppc32_irn(irn)) return NULL;
92         if(get_ppc32_type(irn)!=ppc32_ac_FrameEntity) return NULL;
93         return get_ppc32_frame_entity(irn);
94 }
95
96 static void ppc32_set_frame_entity(ir_node *irn, ir_entity *ent)
97 {
98         if (! is_ppc32_irn(irn) || get_ppc32_type(irn) != ppc32_ac_FrameEntity)
99                 return;
100         set_ppc32_frame_entity(irn, ent);
101 }
102
103 /**
104  * This function is called by the generic backend to correct offsets for
105  * nodes accessing the stack.
106  */
107 static void ppc32_set_stack_bias(ir_node *irn, int bias)
108 {
109         set_ppc32_offset(irn, bias);
110 }
111
112 static int ppc32_get_sp_bias(const ir_node *irn)
113 {
114         (void) irn;
115         return 0;
116 }
117
118 typedef struct
119 {
120         const be_abi_call_t *call;
121         ir_graph *irg;
122 } ppc32_abi_env;
123
124 /**
125  * Initialize the callback object.
126  * @param call The call object.
127  * @param aenv The architecture environment.
128  * @param irg  The graph with the method.
129  * @return     Some pointer. This pointer is passed to all other callback functions as self object.
130  */
131 static void *ppc32_abi_init(const be_abi_call_t *call, const arch_env_t *aenv, ir_graph *irg)
132 {
133         ppc32_abi_env *env = XMALLOC(ppc32_abi_env);
134         (void) aenv;
135
136         env->call = call;
137         env->irg = irg;
138         return env;
139 }
140
141 /**
142  * Destroy the callback object.
143  * @param self The callback object.
144  */
145 static void ppc32_abi_done(void *self)
146 {
147         free(self);
148 }
149
150 /**
151  * Get the between type for that call.
152  * @param self The callback object.
153  * @return The between type of for that call.
154  */
155 static ir_type *ppc32_abi_get_between_type(void *self)
156 {
157         static ir_type *between_type = NULL;
158         static ir_entity *old_bp_ent = NULL;
159         (void) self;
160
161         if(!between_type) {
162                 ir_entity *ret_addr_ent;
163                 ir_type *ret_addr_type = new_type_primitive(new_id_from_str("return_addr"), mode_P);
164                 ir_type *old_bp_type   = new_type_primitive(new_id_from_str("bp"), mode_P);
165
166                 between_type           = new_type_class(new_id_from_str("ppc32_between_type"));
167                 old_bp_ent             = new_entity(between_type, new_id_from_str("old_bp"), old_bp_type);
168                 ret_addr_ent           = new_entity(between_type, new_id_from_str("old_bp"), ret_addr_type);
169
170                 set_entity_offset(old_bp_ent, 0);
171                 set_entity_offset(ret_addr_ent, get_type_size_bytes(old_bp_type));
172                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
173         }
174
175         return between_type;
176 }
177
178 /**
179  * Generate the prologue.
180  * @param self       The callback object.
181  * @param mem        A pointer to the mem node. Update this if you define new memory.
182  * @param reg_map    A mapping mapping all callee_save/ignore/parameter registers to their defining nodes.
183  * @param stack_bias Points to the current stack bias, can be modified if needed.
184  *
185  * @return        The register which shall be used as a stack frame base.
186  *
187  * All nodes which define registers in @p reg_map must keep @p reg_map current.
188  */
189 static const arch_register_t *ppc32_abi_prologue(void *self, ir_node **mem, pmap *reg_map, int *stack_bias)
190 {
191         ppc32_abi_env *env = (ppc32_abi_env *) self;
192         be_abi_call_flags_t flags = be_abi_call_get_flags(env->call);
193         (void) mem;
194         (void) reg_map;
195         (void) stack_bias;
196         isleaf = flags.bits.irg_is_leaf;
197
198         if (flags.bits.try_omit_fp)
199                 return &ppc32_gp_regs[REG_R1];
200         else
201                 return &ppc32_gp_regs[REG_R31];
202 }
203
204 /**
205  * Generate the epilogue.
206  * @param self    The callback object.
207  * @param mem     Memory one can attach to.
208  * @param reg_map A mapping mapping all callee_save/ignore/return registers to their defining nodes.
209  *
210  * All nodes which define registers in @p reg_map must keep @p reg_map current.
211  * Also, the @p mem variable must be updated, if memory producing nodes are inserted.
212  */
213 static void ppc32_abi_epilogue(void *self, ir_node *bl, ir_node **mem, pmap *reg_map)
214 {
215         (void) self;
216         (void) bl;
217         (void) mem;
218         (void) reg_map;
219 }
220
221 static const be_abi_callbacks_t ppc32_abi_callbacks = {
222         ppc32_abi_init,
223         ppc32_abi_done,
224         ppc32_abi_get_between_type,
225         ppc32_abi_prologue,
226         ppc32_abi_epilogue,
227 };
228
229 /* fill register allocator interface */
230
231 static const arch_irn_ops_t ppc32_irn_ops = {
232         get_ppc32_in_req,
233         get_ppc32_out_req,
234         ppc32_classify,
235         ppc32_get_frame_entity,
236         ppc32_set_frame_entity,
237         ppc32_set_stack_bias,
238         ppc32_get_sp_bias,
239         NULL,    /* get_inverse             */
240         NULL,    /* get_op_estimated_cost   */
241         NULL,    /* possible_memory_operand */
242         NULL,    /* perform_memory_operand  */
243 };
244
245 /**************************************************
246  *                _                         _  __
247  *               | |                       (_)/ _|
248  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
249  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
250  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
251  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
252  *                        __/ |
253  *                       |___/
254  **************************************************/
255
256 static void ppc32_before_abi(void *self) {
257         ppc32_code_gen_t *cg = self;
258         ir_type *frame_type = get_irg_frame_type(cg->irg);
259
260         frame_alloc_area(frame_type, 24, 4, 1);
261
262         ppc32_init_conv_walk();
263         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_conv_walk, cg);
264
265         if (cg->area_size) {
266                 if(cg->area_size < 32) cg->area_size = 32;
267                 cg->area = frame_alloc_area(get_irg_frame_type(cg->irg), cg->area_size+24, 16, 1);
268         }
269 }
270
271 static void ppc32_search_start_successor(ir_node *block, void *env) {
272         ppc32_code_gen_t *cg = env;
273         int n = get_Block_n_cfgpreds(block);
274         ir_node *startblock = get_irg_start_block(cg->irg);
275         if(block == startblock) return;
276
277         for (n--; n >= 0; n--) {
278                 ir_node *predblock = get_irn_n(get_Block_cfgpred(block, n), -1);
279                 if(predblock == startblock)
280                 {
281                         cg->start_succ_block = block;
282                         return;
283                 }
284         }
285 }
286
287 /**
288  * Transforms the standard firm graph into
289  * a ppc firm graph
290  */
291 static void ppc32_prepare_graph(void *self) {
292         ppc32_code_gen_t *cg = self;
293
294         irg_block_walk_graph(cg->irg, NULL, ppc32_search_start_successor, cg);
295         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_pretransform_walk, cg);
296         be_dump(cg->irg, "-pretransformed", dump_ir_block_graph);
297
298         ppc32_register_transformers();
299         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_node, cg);
300         be_dump(cg->irg, "-transformed", dump_ir_block_graph);
301         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_const, cg);
302 }
303
304
305
306 /**
307  * Called immediatly before emit phase.
308  */
309 static void ppc32_finish_irg(void *self) {
310         (void) self;
311         /* TODO: - fix offsets for nodes accessing stack
312                          - ...
313         */
314 }
315
316
317 /**
318  * Called before the register allocator.
319  * Calculate a block schedule here. We need it for the x87
320  * simulator and the emitter.
321  */
322 static void ppc32_before_ra(void *self) {
323         ppc32_code_gen_t *cg = self;
324         cg->blk_sched = be_create_block_schedule(cg->irg, cg->birg->exec_freq);
325 }
326
327 static void ppc32_transform_spill(ir_node *node, void *env)
328 {
329         (void)env;
330
331         if(be_is_Spill(node))
332         {
333                 ir_node  *store, *proj;
334                 dbg_info *dbg   = get_irn_dbg_info(node);
335                 ir_node  *block = get_nodes_block(node);
336
337                 const arch_register_class_t *regclass = arch_get_irn_reg_class(node, 1);
338
339                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
340                 {
341                         store = new_bd_ppc32_Stw(dbg, block,
342                                 get_irn_n(node, 0), get_irn_n(node, 1), new_NoMem());
343                 }
344                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
345                 {
346                         store = new_bd_ppc32_Stfd(dbg, block,
347                                 get_irn_n(node, 0), get_irn_n(node, 1), new_NoMem());
348                 }
349                 else panic("Spill for register class not supported yet!");
350
351                 set_ppc32_frame_entity(store, be_get_frame_entity(node));
352
353                 proj = new_rd_Proj(dbg, block, store, mode_M, pn_Store_M);
354
355                 if (sched_is_scheduled(node)) {
356                         sched_add_after(sched_prev(node), store);
357                         sched_add_after(store, proj);
358
359                         sched_remove(node);
360                 }
361
362                 exchange(node, proj);
363         }
364
365         if(be_is_Reload(node))
366         {
367                 ir_node *load, *proj;
368                 const arch_register_t *reg;
369                 dbg_info *dbg   = get_irn_dbg_info(node);
370                 ir_node  *block = get_nodes_block(node);
371                 ir_mode  *mode  = get_irn_mode(node);
372
373                 const arch_register_class_t *regclass = arch_get_irn_reg_class_out(node);
374
375                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
376                 {
377                         load = new_bd_ppc32_Lwz(dbg, block,     get_irn_n(node, 0), get_irn_n(node, 1));
378                 }
379                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
380                 {
381                         load = new_bd_ppc32_Lfd(dbg, block,     get_irn_n(node, 0), get_irn_n(node, 1));
382                 }
383                 else panic("Reload for register class not supported yet!");
384
385                 set_ppc32_frame_entity(load, be_get_frame_entity(node));
386
387                 proj = new_rd_Proj(dbg, block, load, mode, pn_Load_res);
388
389                 if (sched_is_scheduled(node)) {
390                         sched_add_after(sched_prev(node), load);
391                         sched_add_after(load, proj);
392
393                         sched_remove(node);
394                 }
395
396                 /* copy the register from the old node to the new Load */
397                 reg = arch_get_irn_register(node);
398                 arch_set_irn_register(load, reg);
399
400                 exchange(node, proj);
401         }
402 }
403
404 /**
405  * Some stuff to do immediately after register allocation
406  */
407 static void ppc32_after_ra(void *self) {
408         ppc32_code_gen_t *cg = self;
409         be_coalesce_spillslots(cg->birg);
410         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_spill, NULL);
411 }
412
413 /**
414  * Emits the code, closes the output file and frees
415  * the code generator interface.
416  */
417 static void ppc32_emit_and_done(void *self) {
418         ppc32_code_gen_t *cg = self;
419         ir_graph         *irg = cg->irg;
420
421         dump_ir_block_graph_sched(irg, "-ppc-finished");
422         ppc32_gen_routine(cg, irg);
423
424         cur_reg_set = NULL;
425
426         /* de-allocate code generator */
427         del_set(cg->reg_set);
428         free(self);
429 }
430
431 int is_direct_entity(ir_entity *ent);
432
433 static void *ppc32_cg_init(be_irg_t *birg);
434
435 static const arch_code_generator_if_t ppc32_code_gen_if = {
436         ppc32_cg_init,
437         NULL,                 /* get_pic_base */
438         ppc32_before_abi,
439         ppc32_prepare_graph,
440         NULL,                 /* spill */
441         ppc32_before_ra,      /* before register allocation hook */
442         ppc32_after_ra,
443         ppc32_finish_irg,
444         ppc32_emit_and_done
445 };
446
447 /**
448  * Initializes the code generator.
449  */
450 static void *ppc32_cg_init(be_irg_t *birg) {
451         ppc32_isa_t      *isa = (ppc32_isa_t *)birg->main_env->arch_env;
452         ppc32_code_gen_t *cg  = XMALLOC(ppc32_code_gen_t);
453
454         cg->impl      = &ppc32_code_gen_if;
455         cg->irg       = birg->irg;
456         cg->reg_set   = new_set(ppc32_cmp_irn_reg_assoc, 1024);
457         cg->isa       = isa;
458         cg->birg      = birg;
459         cg->area_size = 0;
460         cg->area      = NULL;
461         cg->start_succ_block = NULL;
462         cg->blk_sched = NULL;
463         FIRM_DBG_REGISTER(cg->mod, "firm.be.ppc.cg");
464
465         cur_reg_set = cg->reg_set;
466
467         return (arch_code_generator_t *)cg;
468 }
469
470
471
472 /*****************************************************************
473  *  ____             _                  _   _____  _____
474  * |  _ \           | |                | | |_   _|/ ____|  /\
475  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
476  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
477  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
478  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
479  *
480  *****************************************************************/
481
482 static ppc32_isa_t ppc32_isa_template = {
483         {
484                 &ppc32_isa_if,           /* isa interface */
485                 &ppc32_gp_regs[REG_R1],  /* stack pointer */
486                 &ppc32_gp_regs[REG_R31], /* base pointer */
487                 &ppc32_reg_classes[CLASS_ppc32_gp],  /* static link pointer class */
488                 -1,                      /* stack is decreasing */
489                 2,                       /* power of two stack alignment for calls, 2^2 == 4 */
490                 NULL,                    /* main environment */
491                 7,                       /* spill costs */
492                 5,                       /* reload costs */
493         },
494         NULL                    /* symbol set */
495 };
496
497 /**
498  * Collects all SymConsts which need to be accessed "indirectly"
499  *
500  * @param node    the firm node
501  * @param env     the symbol set
502  */
503 static void ppc32_collect_symconsts_walk(ir_node *node, void *env) {
504         pset *symbol_set = env;
505
506         if (is_SymConst(node)) {
507                 ir_entity *ent = get_SymConst_entity(node);
508                 set_entity_backend_marked(ent, 1);
509                 if (! is_direct_entity(ent))
510                         pset_insert_ptr(symbol_set, ent);
511         }
512 }
513
514 /**
515  * Initializes the backend ISA and opens the output file.
516  */
517 static arch_env_t *ppc32_init(FILE *file_handle) {
518         static int inited = 0;
519         ppc32_isa_t *isa;
520         int i;
521
522         if (inited)
523                 return NULL;
524
525         isa = XMALLOC(ppc32_isa_t);
526         memcpy(isa, &ppc32_isa_template, sizeof(*isa));
527
528         be_emit_init(file_handle);
529
530         ppc32_register_init();
531         ppc32_create_opcodes(&ppc32_irn_ops);
532
533         inited = 1;
534
535         isa->symbol_set = pset_new_ptr(8);
536         for (i = 0; i < get_irp_n_irgs(); ++i) {
537                 ir_graph *irg = get_irp_irg(i);
538                 irg_walk_blkwise_graph(irg, NULL, ppc32_collect_symconsts_walk, isa->symbol_set);
539         }
540
541         /* we mark referenced global entities, so we can only emit those which
542          * are actually referenced. (Note: you mustn't use the type visited flag
543          * elsewhere in the backend)
544          */
545         inc_master_type_visited();
546
547         return &isa->arch_env;
548 }
549
550 static void ppc32_dump_indirect_symbols(ppc32_isa_t *isa) {
551         ir_entity *ent;
552
553         foreach_pset(isa->symbol_set, ent) {
554                 const char *ld_name = get_entity_ld_name(ent);
555                 be_emit_irprintf(".non_lazy_symbol_pointer\n%s:\n\t.indirect_symbol _%s\n\t.long 0\n\n", ld_name, ld_name);
556                 be_emit_write_line();
557         }
558 }
559
560 /**
561  * Closes the output file and frees the ISA structure.
562  */
563 static void ppc32_done(void *self) {
564         ppc32_isa_t *isa = self;
565
566         be_gas_emit_decls(isa->arch_env.main_env, 1);
567         be_gas_emit_switch_section(GAS_SECTION_DATA);
568         ppc32_dump_indirect_symbols(isa);
569
570         be_emit_exit();
571         del_pset(isa->symbol_set);
572
573         free(self);
574 }
575
576
577
578 static unsigned ppc32_get_n_reg_class(void)
579 {
580         return N_CLASSES;
581 }
582
583 static const arch_register_class_t *ppc32_get_reg_class(unsigned i)
584 {
585         assert(i < N_CLASSES && "Invalid ppc register class requested.");
586         return &ppc32_reg_classes[i];
587 }
588
589
590
591 /**
592  * Get the register class which shall be used to store a value of a given mode.
593  * @param self The this pointer.
594  * @param mode The mode in question.
595  * @return A register class which can hold values of the given mode.
596  */
597 const arch_register_class_t *ppc32_get_reg_class_for_mode(const ir_mode *mode)
598 {
599         if (mode_is_float(mode))
600                 return &ppc32_reg_classes[CLASS_ppc32_fp];
601         else
602                 return &ppc32_reg_classes[CLASS_ppc32_gp];
603 }
604
605
606 /**
607  * Get the ABI restrictions for procedure calls.
608  * @param self        The this pointer.
609  * @param method_type The type of the method (procedure) in question.
610  * @param abi         The abi object to be modified
611  */
612 static void ppc32_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi) {
613         ir_type  *tp;
614         ir_mode  *mode;
615         int       i, n = get_method_n_params(method_type);
616         int               stackoffs = 0, lastoffs = 0, stackparamsize;
617
618         int               gpregi = REG_R3;
619         int               fpregi = REG_F1;
620
621         const arch_register_t *reg;
622         be_abi_call_flags_t call_flags = { { 0, 0, 1, 0, 0, 0, 1 } };
623
624         (void) self;
625         if(get_type_visibility(method_type)!=visibility_external_allocated)
626                 call_flags.bits.call_has_imm = 1;
627
628         /* set stack parameter passing style */
629         be_abi_call_set_flags(abi, call_flags, &ppc32_abi_callbacks);
630
631         for (i = 0; i < n; i++) {
632                 tp   = get_method_param_type(method_type, i);
633                 mode = get_type_mode(tp);
634                 if(is_atomic_type(tp))
635                 {
636                         if(mode_is_float(mode))
637                         {
638                                 if(fpregi <= REG_F13)
639                                 {
640                                         if(get_mode_size_bits(mode) == 32) gpregi++, stackparamsize=4;
641                                         else gpregi += 2, stackparamsize=8;                                                             // mode == irm_D
642                                         reg = &ppc32_fp_regs[fpregi++];
643                                 }
644                                 else
645                                 {
646                                         if(get_mode_size_bits(mode) == 32) stackparamsize=4;
647                                         else stackparamsize=8;                                                          // mode == irm_D
648                                         reg = NULL;
649                                 }
650                         }
651                         else
652                         {
653                                 if(gpregi <= REG_R10)
654                                         reg = &ppc32_gp_regs[gpregi++];
655                                 else
656                                         reg = NULL;
657                                 stackparamsize=4;
658                         }
659
660                         if(reg)
661                                 be_abi_call_param_reg(abi, i, reg);
662                         else
663                         {
664                                 be_abi_call_param_stack(abi, i, mode, 4, stackoffs - lastoffs, 0);
665                                 lastoffs = stackoffs+stackparamsize;
666                         }
667                         stackoffs += stackparamsize;
668                 }
669                 else
670                 {
671                         be_abi_call_param_stack(abi, i, mode, 4, stackoffs - lastoffs, 0);
672                         stackoffs += (get_type_size_bytes(tp)+3) & -4;
673                         lastoffs = stackoffs;
674                 }
675         }
676
677         /* explain where result can be found if any */
678         if (get_method_n_ress(method_type) > 0) {
679                 tp   = get_method_res_type(method_type, 0);
680                 mode = get_type_mode(tp);
681
682                 be_abi_call_res_reg(abi, 0,
683                         mode_is_float(mode) ? &ppc32_fp_regs[REG_F1] : &ppc32_gp_regs[REG_R3]);
684         }
685 }
686
687 int ppc32_to_appear_in_schedule(void *block_env, const ir_node *irn) {
688         (void) block_env;
689         if(!is_ppc32_irn(irn))
690                 return -1;
691
692         return 1;
693 }
694
695 /**
696  * Initializes the code generator interface.
697  */
698 static const arch_code_generator_if_t *ppc32_get_code_generator_if(void *self) {
699         (void) self;
700         return &ppc32_code_gen_if;
701 }
702
703 list_sched_selector_t ppc32_sched_selector;
704
705 /**
706  * Returns the reg_pressure scheduler with to_appear_in_schedule() overloaded
707  */
708 static const list_sched_selector_t *ppc32_get_list_sched_selector(const void *self, list_sched_selector_t *selector) {
709         (void) self;
710         (void) selector;
711         ppc32_sched_selector = trivial_selector;
712         ppc32_sched_selector.to_appear_in_schedule = ppc32_to_appear_in_schedule;
713         return &ppc32_sched_selector;
714 }
715
716 static const ilp_sched_selector_t *ppc32_get_ilp_sched_selector(const void *self) {
717         (void) self;
718         return NULL;
719 }
720
721 /**
722  * Returns the necessary byte alignment for storing a register of given class.
723  */
724 static int ppc32_get_reg_class_alignment(const arch_register_class_t *cls)
725 {
726         ir_mode *mode = arch_register_class_mode(cls);
727         return get_mode_size_bytes(mode);
728 }
729
730 static const be_execution_unit_t ***ppc32_get_allowed_execution_units(const ir_node *irn) {
731         (void) irn;
732         /* TODO */
733         panic("Unimplemented ppc32_get_allowed_execution_units()");
734         return NULL;
735 }
736
737 static const be_machine_t *ppc32_get_machine(const void *self) {
738         (void) self;
739         /* TODO */
740         panic("Unimplemented ppc32_get_machine()");
741         return NULL;
742 }
743
744 /**
745  * Return irp irgs in the desired order.
746  */
747 static ir_graph **ppc32_get_irg_list(const void *self, ir_graph ***irg_list) {
748         (void) self;
749         (void) irg_list;
750         return NULL;
751 }
752
753 /**
754  * Returns the libFirm configuration parameter for this backend.
755  */
756 static const backend_params *ppc32_get_libfirm_params(void) {
757         static backend_params p = {
758                 1,     /* need dword lowering */
759                 0,     /* don't support inline assembler yet */
760                 NULL,  /* will be set later */
761                 NULL,  /* but yet no creator function */
762                 NULL,  /* context for create_intrinsic_fkt */
763                 NULL,  /* no if conversion settings */
764                 NULL,  /* no float arithmetic mode (TODO) */
765                 0,     /* no trampoline support: size 0 */
766                 0,     /* no trampoline support: align 0 */
767                 NULL,  /* no trampoline support: no trampoline builder */
768                 4      /* alignment of stack parameter */
769         };
770
771         return &p;
772 }
773
774 static asm_constraint_flags_t ppc32_parse_asm_constraint(const char **c)
775 {
776         /* no asm support yet */
777         (void) c;
778         return ASM_CONSTRAINT_FLAG_INVALID;
779 }
780
781 static int ppc32_is_valid_clobber(const char *clobber)
782 {
783         /* no asm support yet */
784         (void) clobber;
785         return 0;
786 }
787
788 const arch_isa_if_t ppc32_isa_if = {
789         ppc32_init,
790         ppc32_done,
791         NULL,             /* handle intrinsics */
792         ppc32_get_n_reg_class,
793         ppc32_get_reg_class,
794         ppc32_get_reg_class_for_mode,
795         ppc32_get_call_abi,
796         ppc32_get_code_generator_if,
797         ppc32_get_list_sched_selector,
798         ppc32_get_ilp_sched_selector,
799         ppc32_get_reg_class_alignment,
800         ppc32_get_libfirm_params,
801         ppc32_get_allowed_execution_units,
802         ppc32_get_machine,
803         ppc32_get_irg_list,
804         NULL,                 /* mark remat */
805         ppc32_parse_asm_constraint,
806         ppc32_is_valid_clobber
807 };
808
809 void be_init_arch_ppc32(void)
810 {
811         be_register_isa_if("ppc32", &ppc32_isa_if);
812 }
813
814 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_ppc32);