Fixed name mangling for private entities
[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"
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"
59 #include "gen_ppc32_regalloc_if.h"
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(mode_P);
164                 ir_type *old_bp_type   = new_type_primitive(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         ppc32_classify,
234         ppc32_get_frame_entity,
235         ppc32_set_frame_entity,
236         ppc32_set_stack_bias,
237         ppc32_get_sp_bias,
238         NULL,    /* get_inverse             */
239         NULL,    /* get_op_estimated_cost   */
240         NULL,    /* possible_memory_operand */
241         NULL,    /* perform_memory_operand  */
242 };
243
244 /**************************************************
245  *                _                         _  __
246  *               | |                       (_)/ _|
247  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
248  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
249  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
250  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
251  *                        __/ |
252  *                       |___/
253  **************************************************/
254
255 static void ppc32_before_abi(void *self) {
256         ppc32_code_gen_t *cg = self;
257         ir_type *frame_type = get_irg_frame_type(cg->irg);
258
259         frame_alloc_area(frame_type, 24, 4, 1);
260
261         ppc32_init_conv_walk();
262         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_conv_walk, cg);
263
264         if (cg->area_size) {
265                 if(cg->area_size < 32) cg->area_size = 32;
266                 cg->area = frame_alloc_area(get_irg_frame_type(cg->irg), cg->area_size+24, 16, 1);
267         }
268 }
269
270 static void ppc32_search_start_successor(ir_node *block, void *env) {
271         ppc32_code_gen_t *cg = env;
272         int n = get_Block_n_cfgpreds(block);
273         ir_node *startblock = get_irg_start_block(cg->irg);
274         if(block == startblock) return;
275
276         for (n--; n >= 0; n--) {
277                 ir_node *predblock = get_irn_n(get_Block_cfgpred(block, n), -1);
278                 if(predblock == startblock)
279                 {
280                         cg->start_succ_block = block;
281                         return;
282                 }
283         }
284 }
285
286 /**
287  * Transforms the standard firm graph into
288  * a ppc firm graph
289  */
290 static void ppc32_prepare_graph(void *self) {
291         ppc32_code_gen_t *cg = self;
292
293         irg_block_walk_graph(cg->irg, NULL, ppc32_search_start_successor, cg);
294         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_pretransform_walk, cg);
295         be_dump(cg->irg, "-pretransformed", dump_ir_block_graph);
296
297         ppc32_register_transformers();
298         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_node, cg);
299         be_dump(cg->irg, "-transformed", dump_ir_block_graph);
300         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_const, cg);
301 }
302
303
304
305 /**
306  * Called immediatly before emit phase.
307  */
308 static void ppc32_finish_irg(void *self) {
309         (void) self;
310         /* TODO: - fix offsets for nodes accessing stack
311                          - ...
312         */
313 }
314
315
316 /**
317  * Called before the register allocator.
318  * Calculate a block schedule here. We need it for the x87
319  * simulator and the emitter.
320  */
321 static void ppc32_before_ra(void *self) {
322         ppc32_code_gen_t *cg = self;
323         cg->blk_sched = be_create_block_schedule(cg->irg, cg->birg->exec_freq);
324 }
325
326 static void ppc32_transform_spill(ir_node *node, void *env)
327 {
328         (void)env;
329
330         if(be_is_Spill(node))
331         {
332                 ir_node  *store, *proj;
333                 dbg_info *dbg   = get_irn_dbg_info(node);
334                 ir_node  *block = get_nodes_block(node);
335
336                 const arch_register_class_t *regclass = arch_get_irn_reg_class(node, 1);
337
338                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
339                 {
340                         store = new_bd_ppc32_Stw(dbg, block,
341                                 get_irn_n(node, 0), get_irn_n(node, 1), new_NoMem());
342                 }
343                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
344                 {
345                         store = new_bd_ppc32_Stfd(dbg, block,
346                                 get_irn_n(node, 0), get_irn_n(node, 1), new_NoMem());
347                 }
348                 else panic("Spill for register class not supported yet!");
349
350                 set_ppc32_frame_entity(store, be_get_frame_entity(node));
351
352                 proj = new_rd_Proj(dbg, block, store, mode_M, pn_Store_M);
353
354                 if (sched_is_scheduled(node)) {
355                         sched_add_after(sched_prev(node), store);
356                         sched_add_after(store, proj);
357
358                         sched_remove(node);
359                 }
360
361                 exchange(node, proj);
362         }
363
364         if(be_is_Reload(node))
365         {
366                 ir_node *load, *proj;
367                 const arch_register_t *reg;
368                 dbg_info *dbg   = get_irn_dbg_info(node);
369                 ir_node  *block = get_nodes_block(node);
370                 ir_mode  *mode  = get_irn_mode(node);
371
372                 const arch_register_class_t *regclass = arch_get_irn_reg_class_out(node);
373
374                 if (regclass == &ppc32_reg_classes[CLASS_ppc32_gp])
375                 {
376                         load = new_bd_ppc32_Lwz(dbg, block,     get_irn_n(node, 0), get_irn_n(node, 1));
377                 }
378                 else if (regclass == &ppc32_reg_classes[CLASS_ppc32_fp])
379                 {
380                         load = new_bd_ppc32_Lfd(dbg, block,     get_irn_n(node, 0), get_irn_n(node, 1));
381                 }
382                 else panic("Reload for register class not supported yet!");
383
384                 set_ppc32_frame_entity(load, be_get_frame_entity(node));
385
386                 proj = new_rd_Proj(dbg, block, load, mode, pn_Load_res);
387
388                 if (sched_is_scheduled(node)) {
389                         sched_add_after(sched_prev(node), load);
390                         sched_add_after(load, proj);
391
392                         sched_remove(node);
393                 }
394
395                 /* copy the register from the old node to the new Load */
396                 reg = arch_get_irn_register(node);
397                 arch_set_irn_register(load, reg);
398
399                 exchange(node, proj);
400         }
401 }
402
403 /**
404  * Some stuff to do immediately after register allocation
405  */
406 static void ppc32_after_ra(void *self) {
407         ppc32_code_gen_t *cg = self;
408         be_coalesce_spillslots(cg->birg);
409         irg_walk_blkwise_graph(cg->irg, NULL, ppc32_transform_spill, NULL);
410 }
411
412 /**
413  * Emits the code, closes the output file and frees
414  * the code generator interface.
415  */
416 static void ppc32_emit_and_done(void *self) {
417         ppc32_code_gen_t *cg = self;
418         ir_graph         *irg = cg->irg;
419
420         dump_ir_block_graph_sched(irg, "-ppc-finished");
421         ppc32_gen_routine(cg, irg);
422
423         cur_reg_set = NULL;
424
425         /* de-allocate code generator */
426         del_set(cg->reg_set);
427         free(self);
428 }
429
430 int is_direct_entity(ir_entity *ent);
431
432 static void *ppc32_cg_init(be_irg_t *birg);
433
434 static const arch_code_generator_if_t ppc32_code_gen_if = {
435         ppc32_cg_init,
436         NULL,                 /* get_pic_base */
437         ppc32_before_abi,
438         ppc32_prepare_graph,
439         NULL,                 /* spill */
440         ppc32_before_ra,      /* before register allocation hook */
441         ppc32_after_ra,
442         ppc32_finish_irg,
443         ppc32_emit_and_done
444 };
445
446 /**
447  * Initializes the code generator.
448  */
449 static void *ppc32_cg_init(be_irg_t *birg) {
450         ppc32_isa_t      *isa = (ppc32_isa_t *)birg->main_env->arch_env;
451         ppc32_code_gen_t *cg  = XMALLOC(ppc32_code_gen_t);
452
453         cg->impl      = &ppc32_code_gen_if;
454         cg->irg       = birg->irg;
455         cg->reg_set   = new_set(ppc32_cmp_irn_reg_assoc, 1024);
456         cg->isa       = isa;
457         cg->birg      = birg;
458         cg->area_size = 0;
459         cg->area      = NULL;
460         cg->start_succ_block = NULL;
461         cg->blk_sched = NULL;
462         FIRM_DBG_REGISTER(cg->mod, "firm.be.ppc.cg");
463
464         cur_reg_set = cg->reg_set;
465
466         return (arch_code_generator_t *)cg;
467 }
468
469
470
471 /*****************************************************************
472  *  ____             _                  _   _____  _____
473  * |  _ \           | |                | | |_   _|/ ____|  /\
474  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
475  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
476  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
477  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
478  *
479  *****************************************************************/
480
481 static ppc32_isa_t ppc32_isa_template = {
482         {
483                 &ppc32_isa_if,           /* isa interface */
484                 &ppc32_gp_regs[REG_R1],  /* stack pointer */
485                 &ppc32_gp_regs[REG_R31], /* base pointer */
486                 &ppc32_reg_classes[CLASS_ppc32_gp],  /* static link pointer class */
487                 -1,                      /* stack is decreasing */
488                 2,                       /* power of two stack alignment for calls, 2^2 == 4 */
489                 NULL,                    /* main environment */
490                 7,                       /* spill costs */
491                 5,                       /* reload costs */
492         },
493         NULL                    /* symbol set */
494 };
495
496 /**
497  * Collects all SymConsts which need to be accessed "indirectly"
498  *
499  * @param node    the firm node
500  * @param env     the symbol set
501  */
502 static void ppc32_collect_symconsts_walk(ir_node *node, void *env) {
503         pset *symbol_set = env;
504
505         if (is_SymConst(node)) {
506                 ir_entity *ent = get_SymConst_entity(node);
507                 pset_insert_ptr(symbol_set, ent);
508         }
509 }
510
511 /**
512  * Initializes the backend ISA and opens the output file.
513  */
514 static arch_env_t *ppc32_init(FILE *file_handle) {
515         static int inited = 0;
516         ppc32_isa_t *isa;
517         int i;
518
519         if (inited)
520                 return NULL;
521
522         isa = XMALLOC(ppc32_isa_t);
523         memcpy(isa, &ppc32_isa_template, sizeof(*isa));
524
525         be_emit_init(file_handle);
526
527         ppc32_register_init();
528         ppc32_create_opcodes(&ppc32_irn_ops);
529
530         inited = 1;
531
532         isa->symbol_set = pset_new_ptr(8);
533         for (i = 0; i < get_irp_n_irgs(); ++i) {
534                 ir_graph *irg = get_irp_irg(i);
535                 irg_walk_blkwise_graph(irg, NULL, ppc32_collect_symconsts_walk, isa->symbol_set);
536         }
537
538         /* we mark referenced global entities, so we can only emit those which
539          * are actually referenced. (Note: you mustn't use the type visited flag
540          * elsewhere in the backend)
541          */
542         inc_master_type_visited();
543
544         return &isa->arch_env;
545 }
546
547 static void ppc32_dump_indirect_symbols(ppc32_isa_t *isa) {
548         ir_entity *ent;
549
550         foreach_pset(isa->symbol_set, ent) {
551                 const char *ld_name = get_entity_ld_name(ent);
552                 be_emit_irprintf(".non_lazy_symbol_pointer\n%s:\n\t.indirect_symbol _%s\n\t.long 0\n\n", ld_name, ld_name);
553                 be_emit_write_line();
554         }
555 }
556
557 /**
558  * Closes the output file and frees the ISA structure.
559  */
560 static void ppc32_done(void *self) {
561         ppc32_isa_t *isa = self;
562
563         be_gas_emit_decls(isa->arch_env.main_env);
564         be_gas_emit_switch_section(GAS_SECTION_DATA);
565         ppc32_dump_indirect_symbols(isa);
566
567         be_emit_exit();
568         del_pset(isa->symbol_set);
569
570         free(self);
571 }
572
573
574
575 static unsigned ppc32_get_n_reg_class(void)
576 {
577         return N_CLASSES;
578 }
579
580 static const arch_register_class_t *ppc32_get_reg_class(unsigned i)
581 {
582         assert(i < N_CLASSES && "Invalid ppc register class requested.");
583         return &ppc32_reg_classes[i];
584 }
585
586
587
588 /**
589  * Get the register class which shall be used to store a value of a given mode.
590  * @param self The this pointer.
591  * @param mode The mode in question.
592  * @return A register class which can hold values of the given mode.
593  */
594 const arch_register_class_t *ppc32_get_reg_class_for_mode(const ir_mode *mode)
595 {
596         if (mode_is_float(mode))
597                 return &ppc32_reg_classes[CLASS_ppc32_fp];
598         else
599                 return &ppc32_reg_classes[CLASS_ppc32_gp];
600 }
601
602
603 /**
604  * Get the ABI restrictions for procedure calls.
605  * @param self        The this pointer.
606  * @param method_type The type of the method (procedure) in question.
607  * @param abi         The abi object to be modified
608  */
609 static void ppc32_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi) {
610         ir_type  *tp;
611         ir_mode  *mode;
612         int       i, n = get_method_n_params(method_type);
613         int               stackoffs = 0, lastoffs = 0, stackparamsize;
614
615         int               gpregi = REG_R3;
616         int               fpregi = REG_F1;
617
618         const arch_register_t *reg;
619         be_abi_call_flags_t call_flags = { { 0, 0, 1, 0, 0, 0, 1 } };
620
621         (void) self;
622         call_flags.bits.call_has_imm = 1;
623
624         /* set stack parameter passing style */
625         be_abi_call_set_flags(abi, call_flags, &ppc32_abi_callbacks);
626
627         for (i = 0; i < n; i++) {
628                 tp   = get_method_param_type(method_type, i);
629                 mode = get_type_mode(tp);
630                 if(is_atomic_type(tp))
631                 {
632                         if(mode_is_float(mode))
633                         {
634                                 if(fpregi <= REG_F13)
635                                 {
636                                         if(get_mode_size_bits(mode) == 32) gpregi++, stackparamsize=4;
637                                         else gpregi += 2, stackparamsize=8;                                                             // mode == irm_D
638                                         reg = &ppc32_fp_regs[fpregi++];
639                                 }
640                                 else
641                                 {
642                                         if(get_mode_size_bits(mode) == 32) stackparamsize=4;
643                                         else stackparamsize=8;                                                          // mode == irm_D
644                                         reg = NULL;
645                                 }
646                         }
647                         else
648                         {
649                                 if(gpregi <= REG_R10)
650                                         reg = &ppc32_gp_regs[gpregi++];
651                                 else
652                                         reg = NULL;
653                                 stackparamsize=4;
654                         }
655
656                         if(reg)
657                                 be_abi_call_param_reg(abi, i, reg);
658                         else
659                         {
660                                 be_abi_call_param_stack(abi, i, mode, 4, stackoffs - lastoffs, 0);
661                                 lastoffs = stackoffs+stackparamsize;
662                         }
663                         stackoffs += stackparamsize;
664                 }
665                 else
666                 {
667                         be_abi_call_param_stack(abi, i, mode, 4, stackoffs - lastoffs, 0);
668                         stackoffs += (get_type_size_bytes(tp)+3) & -4;
669                         lastoffs = stackoffs;
670                 }
671         }
672
673         /* explain where result can be found if any */
674         if (get_method_n_ress(method_type) > 0) {
675                 tp   = get_method_res_type(method_type, 0);
676                 mode = get_type_mode(tp);
677
678                 be_abi_call_res_reg(abi, 0,
679                         mode_is_float(mode) ? &ppc32_fp_regs[REG_F1] : &ppc32_gp_regs[REG_R3]);
680         }
681 }
682
683 int ppc32_to_appear_in_schedule(void *block_env, const ir_node *irn) {
684         (void) block_env;
685         if(!is_ppc32_irn(irn))
686                 return -1;
687
688         return 1;
689 }
690
691 /**
692  * Initializes the code generator interface.
693  */
694 static const arch_code_generator_if_t *ppc32_get_code_generator_if(void *self) {
695         (void) self;
696         return &ppc32_code_gen_if;
697 }
698
699 list_sched_selector_t ppc32_sched_selector;
700
701 /**
702  * Returns the reg_pressure scheduler with to_appear_in_schedule() overloaded
703  */
704 static const list_sched_selector_t *ppc32_get_list_sched_selector(const void *self, list_sched_selector_t *selector) {
705         (void) self;
706         (void) selector;
707         ppc32_sched_selector = trivial_selector;
708         ppc32_sched_selector.to_appear_in_schedule = ppc32_to_appear_in_schedule;
709         return &ppc32_sched_selector;
710 }
711
712 static const ilp_sched_selector_t *ppc32_get_ilp_sched_selector(const void *self) {
713         (void) self;
714         return NULL;
715 }
716
717 /**
718  * Returns the necessary byte alignment for storing a register of given class.
719  */
720 static int ppc32_get_reg_class_alignment(const arch_register_class_t *cls)
721 {
722         ir_mode *mode = arch_register_class_mode(cls);
723         return get_mode_size_bytes(mode);
724 }
725
726 static const be_execution_unit_t ***ppc32_get_allowed_execution_units(const ir_node *irn) {
727         (void) irn;
728         /* TODO */
729         panic("Unimplemented ppc32_get_allowed_execution_units()");
730         return NULL;
731 }
732
733 static const be_machine_t *ppc32_get_machine(const void *self) {
734         (void) self;
735         /* TODO */
736         panic("Unimplemented ppc32_get_machine()");
737         return NULL;
738 }
739
740 /**
741  * Return irp irgs in the desired order.
742  */
743 static ir_graph **ppc32_get_irg_list(const void *self, ir_graph ***irg_list) {
744         (void) self;
745         (void) irg_list;
746         return NULL;
747 }
748
749 /**
750  * Returns the libFirm configuration parameter for this backend.
751  */
752 static const backend_params *ppc32_get_libfirm_params(void) {
753         static backend_params p = {
754                 1,     /* need dword lowering */
755                 0,     /* don't support inline assembler yet */
756                 NULL,  /* will be set later */
757                 NULL,  /* but yet no creator function */
758                 NULL,  /* context for create_intrinsic_fkt */
759                 NULL,  /* no if conversion settings */
760                 NULL,  /* no float arithmetic mode (TODO) */
761                 0,     /* no trampoline support: size 0 */
762                 0,     /* no trampoline support: align 0 */
763                 NULL,  /* no trampoline support: no trampoline builder */
764                 4      /* alignment of stack parameter */
765         };
766
767         return &p;
768 }
769
770 static asm_constraint_flags_t ppc32_parse_asm_constraint(const char **c)
771 {
772         /* no asm support yet */
773         (void) c;
774         return ASM_CONSTRAINT_FLAG_INVALID;
775 }
776
777 static int ppc32_is_valid_clobber(const char *clobber)
778 {
779         /* no asm support yet */
780         (void) clobber;
781         return 0;
782 }
783
784 const arch_isa_if_t ppc32_isa_if = {
785         ppc32_init,
786         ppc32_done,
787         NULL,             /* handle intrinsics */
788         ppc32_get_n_reg_class,
789         ppc32_get_reg_class,
790         ppc32_get_reg_class_for_mode,
791         ppc32_get_call_abi,
792         ppc32_get_code_generator_if,
793         ppc32_get_list_sched_selector,
794         ppc32_get_ilp_sched_selector,
795         ppc32_get_reg_class_alignment,
796         ppc32_get_libfirm_params,
797         ppc32_get_allowed_execution_units,
798         ppc32_get_machine,
799         ppc32_get_irg_list,
800         NULL,                 /* mark remat */
801         ppc32_parse_asm_constraint,
802         ppc32_is_valid_clobber
803 };
804
805 void be_init_arch_ppc32(void)
806 {
807         be_register_isa_if("ppc32", &ppc32_isa_if);
808 }
809
810 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_ppc32);