fixed some bugs
[libfirm] / ir / be / bearch.h
1 #ifndef _FIRM_BEARCH_H
2 #define _FIRM_BEARCH_H
3
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
7
8
9 #ifdef WITH_LIBCORE
10 #include <libcore/lc_opts.h>
11 #endif
12
13 #include "type.h"
14
15 #include "irnode.h"
16 #include "irmode.h"
17
18 #include "bitset.h"
19 #include "hashptr.h"
20 #include "fourcc.h"
21 #include "set.h"
22 #include "list.h"
23 #include "ident.h"
24
25 #include "belistsched.h"
26 #include "beabi_t.h"
27 #include "be_t.h"
28
29 typedef struct _arch_register_class_t     arch_register_class_t;
30 typedef struct _arch_register_t           arch_register_t;
31 typedef struct _arch_isa_if_t             arch_isa_if_t;
32 typedef struct _arch_isa_t                arch_isa_t;
33 typedef struct _arch_env_t                arch_env_t;
34 typedef struct _arch_irn_ops_if_t         arch_irn_ops_if_t;
35 typedef struct _arch_irn_ops_t            arch_irn_ops_t;
36 typedef struct _arch_irn_handler_t        arch_irn_handler_t;
37 typedef struct _arch_code_generator_t     arch_code_generator_t;
38 typedef struct _arch_code_generator_if_t  arch_code_generator_if_t;
39
40 struct _be_node_factory_t;
41
42 typedef enum _arch_register_type_t {
43   arch_register_type_none = 0,
44   arch_register_type_caller_save  = 1, /**< The register must be saved by the caller
45                                             upon a function call. It thus can be overwritten
46                                             in the called function. */
47   arch_register_type_callee_save  = 2, /**< The register must be saved by the caller
48                                             upon a function call. It thus can be overwritten
49                                             in the called function. */
50   arch_register_type_ignore = 4,       /**< Do not consider this register when allocating. */
51 } arch_register_type_t;
52
53 /**
54  * Convenience macro to check for register type.
55  * @param req   A pointer to register.
56  * @param kind  The kind of type to check for (see arch_register_type_t).
57  * @return      1, If register is of given kind, 0 if not.
58  */
59 #define arch_register_type_is(reg, kind) \
60         (((reg)->type & arch_register_type_ ## kind) != 0)
61
62 /**
63  * A register.
64  */
65 struct _arch_register_t {
66   const char *name;                         /**< The name of the register. */
67   const arch_register_class_t *reg_class;   /**< The class the register belongs to. */
68   int index;                                /**< The index of the register in the class. */
69   arch_register_type_t type;                /**< The type of the register. */
70   void *data;                               /**< Custom data. */
71 };
72
73 static INLINE const arch_register_class_t *
74 _arch_register_get_class(const arch_register_t *reg)
75 {
76   return reg->reg_class;
77 }
78
79 static INLINE int _arch_register_get_index(const arch_register_t *reg)
80 {
81   return reg->index;
82 }
83
84 #define arch_register_get_class(reg)      _arch_register_get_class(reg)
85 #define arch_register_get_index(reg)      _arch_register_get_index(reg)
86 #define arch_register_get_name(reg)       ((reg)->name)
87
88 /**
89  * A class of registers.
90  * Like general purpose or floating point.
91  */
92 struct _arch_register_class_t {
93   const char *name;               /**< The name of the register class. */
94   int n_regs;                     /**< Number of registers in this class. */
95   ir_mode *mode;                  /**< The mode of the register class. */
96   const arch_register_t *regs;    /**< The array of registers. */
97 };
98
99 #define arch_register_class_n_regs(cls) ((cls)->n_regs)
100
101 /**
102  * Put all registers in a class into a bitset.
103  * @param cls The class.
104  * @param bs The bitset. May be NULL.
105  * @return The number of registers in the class.
106  */
107 extern int arch_register_class_put(const arch_register_class_t *cls, bitset_t *bs);
108
109 static INLINE const arch_register_t *
110 _arch_register_for_index(const arch_register_class_t *cls, int idx)
111 {
112   assert(0 <= idx && idx < cls->n_regs);
113   return &cls->regs[idx];
114 }
115
116 #define arch_register_for_index(cls, idx) \
117   _arch_register_for_index(cls, idx)
118
119 typedef enum _arch_operand_type_t {
120   arch_operand_type_invalid,
121   arch_operand_type_memory,
122   arch_operand_type_register,
123   arch_operand_type_immediate,
124   arch_operand_type_symconst,
125   arch_operand_type_last
126 } arch_operand_type_t;
127
128 /**
129  * Different types of register allocation requirements.
130  */
131 typedef enum _arch_register_req_type_t {
132   arch_register_req_type_none = 0,        /**< No register requirement. */
133
134   arch_register_req_type_normal = 1,      /**< All registers in the class
135                                                are allowed. */
136
137   arch_register_req_type_limited = 2,     /**< Only a real subset of
138                                                the class is allowed. */
139
140   arch_register_req_type_should_be_same = 4,       /**< The register should be equal
141                                                         another one at the node. */
142
143   arch_register_req_type_should_be_different = 8,  /**< The register must be unequal
144                                                         to some other at the node. */
145
146 } arch_register_req_type_t;
147
148 /**
149  * Convenience macro to check for set constraints.
150  * @param req   A pointer to register requirements.
151  * @param kind  The kind of constraint to check for (see arch_register_req_type_t).
152  * @return      1, If the kind of constraint is present, 0 if not.
153  */
154 #define arch_register_req_is(req, kind) \
155         (((req)->type & (arch_register_req_type_ ## kind)) != 0)
156
157 /**
158  * Expresses requirements to register allocation for an operand.
159  */
160 typedef struct _arch_register_req_t {
161         arch_register_req_type_t type;          /**< The type of the constraint. */
162         const arch_register_class_t *cls;       /**< The register class this constraint belongs to. */
163
164         void (*limited)(void *limited_env, bitset_t *bs);
165                                           /**< In case of the 'limited'
166                                             constraint, this function
167                                             must put all allowable
168                                             registers in the bitset and
169                                             return the number of registers
170                                             in the bitset. */
171
172         void *limited_env;                    /**< This must passed to limited. */
173
174         ir_node *other_same;                      /**< The other which shall have the same reg
175                                                                                     as this one. (for case should_be_same). */
176
177         ir_node *other_different;             /**< The other node from which this one's register
178                                                                                     must be different (case must_be_different). */
179 } arch_register_req_t;
180
181 /**
182  * Format a register requirements information into a string.
183  * @param buf The string where to put it to.
184  * @param len The size of @p buf.
185  * @param req The requirements structure to format.
186  * @return    A pointer to buf.
187  */
188 extern char *arch_register_req_format(char *buf, size_t len, const arch_register_req_t *req);
189
190
191 /**
192  * Certain node classes which are relevant for the register allocator.
193  */
194 typedef enum _arch_irn_class_t {
195   arch_irn_class_normal,
196   arch_irn_class_spill,
197   arch_irn_class_reload,
198   arch_irn_class_copy,
199   arch_irn_class_perm,
200   arch_irn_class_branch,
201   arch_irn_class_call
202 } arch_irn_class_t;
203
204 /**
205  * Some flags describing a node in more detail.
206  */
207 typedef enum _arch_irn_flags_t {
208         arch_irn_flags_none             = 0, /**< Node flags. */
209         arch_irn_flags_dont_spill       = 1, /**< This must not be spilled. */
210         arch_irn_flags_rematerializable = 2, /**< This should be replicated instead of spilled/reloaded. */
211         arch_irn_flags_ignore           = 4, /**< Ignore node during register allocation. */
212         arch_irn_flags_last             = arch_irn_flags_ignore
213 } arch_irn_flags_t;
214
215 /**
216  * Get the string representation of a flag.
217  * This functions does not handle or'ed bitmasks of flags.
218  * @param flag The flag.
219  * @return The flag as a string.
220  */
221 extern const char *arch_irn_flag_str(arch_irn_flags_t flag);
222
223 struct _arch_irn_ops_if_t {
224
225   /**
226    * Get the register requirements for a given operand.
227    * @param self The self pointer.
228    * @param irn The node.
229    * @param pos The operand's position
230          *                                              (-1 for the result of the node, 0..n for the input
231          *                                              operands).
232    * @return    The register requirements for the selected operand.
233    *            The pointer returned is never NULL.
234    */
235   const arch_register_req_t *(*get_irn_reg_req)(const void *self,
236       arch_register_req_t *req, const ir_node *irn, int pos);
237
238   /**
239    * Set the register for an output operand.
240    * @param irn The node.
241    * @param reg The register allocated to that operand.
242    * @note      If the operand is not a register operand,
243    *            the call is ignored.
244    */
245   void (*set_irn_reg)(const void *self, ir_node *irn, const arch_register_t *reg);
246
247   /**
248    * Get the register allocated for an output operand.
249    * @param irn The node.
250    * @return    The register allocated at that operand. NULL, if
251    *            the operand was no register operand or
252    *            @c arch_register_invalid, if no register has yet been
253    *            allocated for this node.
254    */
255   const arch_register_t *(*get_irn_reg)(const void *self, const ir_node *irn);
256
257   /**
258    * Classify the node.
259    * @param irn The node.
260    * @return A classification.
261    */
262   arch_irn_class_t (*classify)(const void *self, const ir_node *irn);
263
264   /**
265    * Get the flags of a node.
266    * @param self The irn ops themselves.
267    * @param irn The node.
268    * @return A set of flags.
269    */
270   arch_irn_flags_t (*get_flags)(const void *self, const ir_node *irn);
271
272   /**
273    * Get the entity on the stack frame this node depends on.
274    * @param self The this pointer.
275    * @param irn  The node in question.
276    * @return The entity on the stack frame or NULL, if the node does not has a stack frame entity.
277    */
278   entity *(*get_frame_entity)(const void *self, const ir_node *irn);
279
280   /**
281    * Set the offset of a node carrying an entity on the stack frame.
282    * @param self The this pointer.
283    * @param irn  The node.
284    * @param offset The offset of the node's stack frame entity.
285    */
286   void (*set_frame_offset)(const void *self, ir_node *irn, int offset);
287 };
288
289 /**
290  * irn_ops base class.
291  */
292 struct _arch_irn_ops_t {
293         const arch_irn_ops_if_t *impl;
294 };
295
296 extern void arch_set_frame_offset(const arch_env_t *env, ir_node *irn, int bias);
297
298 extern entity *arch_get_frame_entity(const arch_env_t *env, ir_node *irn);
299
300 /**
301  * Get the register requirements for a node.
302  * @param env The architecture environment.
303  * @param req A pointer to a requirements structure, where the data can
304  *            be put into.
305  * @param irn The node.
306  * @param pos The position of the operand you're interested in.
307  * @return    A pointer to the register requirements which may <b>not</b>
308  *            neccessarily be equal to @p req. If NULL is returned, the
309  *            operand was no register operand.
310  */
311 extern const arch_register_req_t *
312 arch_get_register_req(const arch_env_t *env, arch_register_req_t *req,
313     const ir_node *irn, int pos);
314
315 /**
316  * Check if an operand is a register operand.
317  * @param env The environment.
318  * @param irn The node.
319  * @param pos The position of the operand.
320  * @return 1, if the operand is significant for register allocation, 0
321  * if not.
322  */
323 extern int arch_is_register_operand(const arch_env_t *env,
324     const ir_node *irn, int pos);
325
326 /**
327  * Get the number of allocatable registers concerning
328  * a register class for an operand of a node.
329  * @param env The environment.
330  * @param irn The node.
331  * @param pos The postition of the node's operand.
332  * @param bs  The bitset all allocatable registers shall be put into.
333  *            Note, that you can also pass NULL here. If you don't,
334  *            make sure, the bitset is as large as the register class
335  *            has registers.
336  * @return    The amount of registers allocatable for that operand.
337  */
338 extern int arch_get_allocatable_regs(const arch_env_t *env, const ir_node *irn, int pos, bitset_t *bs);
339
340 /**
341  * Put all registers which shall not be ignored by the register
342  * allocator in a bit set.
343  * @param env The arch env.
344  * @param cls The register class to consider.
345  * @param bs  The bit set to put the registers to.
346  */
347 extern void arch_put_non_ignore_regs(const arch_env_t *env, const arch_register_class_t *cls, bitset_t *bs);
348
349 /**
350  * Check, if a register is assignable to an operand of a node.
351  * @param env The architecture environment.
352  * @param irn The node.
353  * @param pos The position of the operand.
354  * @param reg The register.
355  * @return    1, if the register might be allocated to the operand 0 if not.
356  */
357 extern int arch_reg_is_allocatable(const arch_env_t *env,
358     const ir_node *irn, int pos, const arch_register_t *reg);
359
360 /**
361  * Get the register class of an operand of a node.
362  * @param env The architecture environment.
363  * @param irn The node.
364  * @param pos The position of the operand.
365  * @return    The register class of the operand or NULL, if
366  *            operand is a non-register operand.
367  */
368 extern const arch_register_class_t *
369 arch_get_irn_reg_class(const arch_env_t *env, const ir_node *irn, int pos);
370
371 /**
372  * Get the register allocated at a certain output operand of a node.
373  * @param env The arch environment.
374  * @param irn The node.
375  * @return    The register allocated for this operand
376  */
377 extern const arch_register_t *
378 arch_get_irn_register(const arch_env_t *env, const ir_node *irn);
379
380 /**
381  * Set the register for a certain output operand.
382  * @param env The architecture environment.
383  * @param irn The node.
384  * @param idx The index of the output operand.
385  * @param reg The register.
386  */
387 extern void arch_set_irn_register(const arch_env_t *env, ir_node *irn,
388                 const arch_register_t *reg);
389
390 /**
391  * Classify a node.
392  * @param env The architecture environment.
393  * @param irn The node.
394  * @return A classification of the node.
395  */
396 extern arch_irn_class_t arch_irn_classify(const arch_env_t *env, const ir_node *irn);
397
398 /**
399  * Get the flags of a node.
400  * @param env The architecture environment.
401  * @param irn The node.
402  * @return The flags.
403  */
404 extern arch_irn_flags_t arch_irn_get_flags(const arch_env_t *env, const ir_node *irn);
405
406 #define arch_irn_is_ignore(env, irn) ((arch_irn_get_flags(env, irn) & arch_irn_flags_ignore) != 0)
407
408 #define arch_irn_has_reg_class(env, irn, pos, cls) \
409   ((cls) == arch_get_irn_reg_class(env, irn, pos))
410
411 #define arch_irn_consider_in_reg_alloc(env, cls, irn) \
412         (arch_irn_has_reg_class(env, irn, -1, cls) && !arch_irn_is_ignore(env, irn))
413
414 /**
415  * Somebody who can be asked about nodes.
416  */
417 struct _arch_irn_handler_t {
418
419   /**
420     * Get the operations of an irn.
421     * @param self The handler from which the method is invoked.
422     * @param irn Some node.
423     * @return Operations for that irn.
424     */
425   const void *(*get_irn_ops)(const arch_irn_handler_t *handler,
426       const ir_node *irn);
427
428 };
429
430 /**
431  * The code generator.
432  */
433 struct _arch_code_generator_if_t {
434
435
436         /**
437          * Initialize the code generator.
438          * @param file The file to dump to.
439          * @param birg A backend IRG session.
440          * @return     A newly created code generator.
441          */
442         void *(*init)(FILE *file, const be_irg_t *birg);
443
444         /**
445          * Called, when the graph is being normalized.
446          */
447         void (*prepare_graph)(void *self);
448
449         /**
450          * Called before scheduling.
451          */
452         void (*before_sched)(void *self);
453
454         /**
455          * Called before register allocation.
456          */
457         void (*before_ra)(void *self);
458
459         /**
460          * Called after register allocation.
461          */
462         void (*after_ra)(void *self);
463
464         /**
465          * Called after everything happened.
466          * The code generator must also be de-allocated here.
467          */
468         void (*done)(void *self);
469
470 };
471
472 #define _arch_cg_call(cg, func) \
473 do { \
474         if((cg)->impl->func) \
475                 (cg)->impl->func(cg); \
476 } while(0)
477
478 #define arch_code_generator_prepare_graph(cg)   _arch_cg_call(cg, prepare_graph)
479 #define arch_code_generator_before_sched(cg)    _arch_cg_call(cg, before_sched)
480 #define arch_code_generator_before_ra(cg)       _arch_cg_call(cg, before_ra)
481 #define arch_code_generator_after_ra(cg)        _arch_cg_call(cg, after_ra)
482 #define arch_code_generator_done(cg)            _arch_cg_call(cg, done)
483
484 /**
485  * Code generator base class.
486  */
487 struct _arch_code_generator_t {
488         const arch_code_generator_if_t *impl;
489 };
490
491 /**
492  * ISA base class.
493  */
494 struct _arch_isa_t {
495         const arch_isa_if_t *impl;
496         const arch_register_t *sp;  /** The stack pointer register. */
497         const arch_register_t *bp;  /** The base pointer register. */
498         const int stack_dir;        /** -1 for decreasing, 1 for increasing. */
499 };
500
501 #define arch_isa_stack_dir(isa)  ((isa)->stack_dir)
502 #define arch_isa_sp(isa)         ((isa)->sp)
503 #define arch_isa_bp(isa)         ((isa)->bp)
504
505 /**
506  * Architecture interface.
507  */
508 struct _arch_isa_if_t {
509
510 #ifdef WITH_LIBCORE
511   void (*register_options)(lc_opt_entry_t *grp);
512 #endif
513
514   /**
515    * Initialize the isa interface.
516    */
517   void *(*init)(void);
518
519   /**
520    * Free the isa instance.
521    */
522   void (*done)(void *self);
523
524   /**
525    * Get the the number of register classes in the isa.
526    * @return The number of register classes.
527    */
528   int (*get_n_reg_class)(const void *self);
529
530   /**
531    * Get the i-th register class.
532    * @param i The number of the register class.
533    * @return The register class.
534    */
535   const arch_register_class_t *(*get_reg_class)(const void *self, int i);
536
537   /**
538    * Get the register class which shall be used to store a value of a given mode.
539    * @param self The this pointer.
540    * @param mode The mode in question.
541    * @return A register class which can hold values of the given mode.
542    */
543   const arch_register_class_t *(*get_reg_class_for_mode)(const void *self, const ir_mode *mode);
544
545   /**
546    * Get the ABI restrictions for procedure calls.
547    * @param self        The this pointer.
548    * @param method_type The type of the method (procedure) in question.
549    * @param p           The array of parameter locations to be filled.
550    */
551   void (*get_call_abi)(const void *self, ir_type *method_type, be_abi_call_t *abi);
552
553   /**
554    * The irn handler for this architecture.
555    * The irn handler is registered by the Firm back end
556    * when the architecture is initialized.
557    * (May be NULL).
558    */
559   const arch_irn_handler_t *(*get_irn_handler)(const void *self);
560
561   /**
562    * Get the code generator interface.
563    * @param self The this pointer.
564    * @return     Some code generator interface.
565    */
566   const arch_code_generator_if_t *(*get_code_generator_if)(void *self);
567
568   /**
569    * Get the list scheduler to use.
570    * @param self  The isa object.
571    * @return      The list scheduler selector.
572    */
573   const list_sched_selector_t *(*get_list_sched_selector)(const void *self);
574
575 };
576
577 #define arch_isa_get_n_reg_class(isa)                       ((isa)->impl->get_n_reg_class(isa))
578 #define arch_isa_get_reg_class(isa,i)                       ((isa)->impl->get_reg_class(isa, i))
579 #define arch_isa_get_irn_handler(isa)                               ((isa)->impl->get_irn_handler(isa))
580 #define arch_isa_get_call_abi(isa,tp,abi)                   ((isa)->impl->get_call_abi((isa), (tp), (abi)))
581 #define arch_isa_get_reg_class_for_mode(isa,mode)           ((isa)->impl->get_reg_class_for_mode((isa), (mode)))
582 #define arch_isa_make_code_generator(isa,irg)               ((isa)->impl->make_code_generator(isa, irg))
583
584 #define ARCH_MAX_HANDLERS         8
585
586 /**
587  * Environment for the architecture infrastructure.
588  * Keep this everywhere you're going.
589  */
590 struct _arch_env_t {
591   const struct _be_node_factory_t *node_factory;  /**< The node factory for be nodes. */
592   arch_isa_t *isa;                                /**< The isa about which everything is. */
593
594   arch_irn_handler_t const *handlers[ARCH_MAX_HANDLERS]; /**< The handlers are organized as
595                                                            a stack. */
596
597   int handlers_tos;                                   /**< The stack pointer of the handler
598                                                         stack. */
599 };
600
601 /**
602  * Get the isa of an arch environment.
603  * @param env The environment.
604  * @return The isa with which the env was initialized with.
605  */
606 #define arch_env_get_isa(env)   ((env)->isa)
607
608 /**
609  * Initialize the architecture environment struct.
610  * @param isa The isa which shall be put into the environment.
611  * @return The environment.
612  */
613 extern arch_env_t *arch_env_init(arch_env_t *env, const arch_isa_if_t *isa);
614
615 /**
616  * Add a node handler to the environment.
617  * @param env The environment.
618  * @param handler A node handler.
619  * @return The environment itself.
620  */
621 extern arch_env_t *arch_env_push_irn_handler(arch_env_t *env, const arch_irn_handler_t *handler);
622
623 /**
624  * Remove a node handler from the handler stack.
625  * @param env The architecture environment.
626  * @return The popped handler.
627  */
628 extern const arch_irn_handler_t *arch_env_pop_irn_handler(arch_env_t *env);
629
630 #endif /* _FIRM_BEARCH_H */