0b3d499e15b5e058c9acc075bd213b2c0d23b208
[libfirm] / ir / be / bearch.h
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       Processor architecture specification.
23  * @author      Sebastian Hack
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_BEARCH_H
27 #define FIRM_BE_BEARCH_H
28
29 #include <stdbool.h>
30
31 #include "firm_types.h"
32 #include "bitset.h"
33 #include "obst.h"
34 #include "raw_bitset.h"
35 #include "irop_t.h"
36
37 #include "be_types.h"
38 #include "beinfo.h"
39 #include "be.h"
40 #include "beirg.h"
41
42 typedef enum arch_register_class_flags_t {
43         arch_register_class_flag_none      = 0,
44         /**< don't do automatic register allocation for this class */
45         arch_register_class_flag_manual_ra = 1U << 0,
46         /**< the register models an abstract state (example: fpu rounding mode) */
47         arch_register_class_flag_state     = 1U << 1
48 } arch_register_class_flags_t;
49
50 typedef enum arch_register_type_t {
51         arch_register_type_none         = 0,
52         /** The register must be saved by the caller upon a function call. It thus
53          * can be overwritten in the called function. */
54         arch_register_type_caller_save  = 1U << 0,
55         /** The register must be saved by the caller upon a function call. It thus
56          * can be overwritten in the called function. */
57         arch_register_type_callee_save  = 1U << 1,
58         /** Do not consider this register when allocating. */
59         arch_register_type_ignore       = 1U << 2,
60         /** The emitter can choose an arbitrary register. The register fulfills any
61          * register constraints as long as the register class matches */
62         arch_register_type_joker        = 1U << 3,
63         /** This is just a virtual register. Virtual registers fulfill any register
64          * constraints as long as the register class matches. It is a allowed to
65          * have multiple definitions for the same virtual register at a point */
66         arch_register_type_virtual      = 1U << 4,
67         /** The register represents a state that should be handled by bestate
68          * code */
69         arch_register_type_state        = 1U << 5,
70 } arch_register_type_t;
71
72 /**
73  * Different types of register allocation requirements.
74  */
75 typedef enum arch_register_req_type_t {
76         /** No register requirement. */
77         arch_register_req_type_none              = 0,
78         /** All registers in the class are allowed. */
79         arch_register_req_type_normal            = 1U << 0,
80         /** Only a real subset of the class is allowed. */
81         arch_register_req_type_limited           = 1U << 1,
82         /** The register should be equal to another one at the node. */
83         arch_register_req_type_should_be_same    = 1U << 2,
84         /** The register must be unequal from some other at the node. */
85         arch_register_req_type_must_be_different = 1U << 3,
86         /** ignore while allocating registers */
87         arch_register_req_type_ignore            = 1U << 4,
88         /** the output produces a new value for the stack pointer
89          * (this is not really a constraint but a marker to guide the stackpointer
90          * rewiring logic) */
91         arch_register_req_type_produces_sp       = 1U << 5,
92 } arch_register_req_type_t;
93
94 extern const arch_register_req_t *arch_no_register_req;
95
96 /**
97  * Print information about a register requirement in human readable form
98  * @param F   output stream/file
99  * @param req The requirements structure to format.
100  */
101 void arch_dump_register_req(FILE *F, const arch_register_req_t *req,
102                             const ir_node *node);
103
104 void arch_dump_register_reqs(FILE *F, const ir_node *node);
105 void arch_dump_reqs_and_registers(FILE *F, const ir_node *node);
106
107 /**
108  * Node classification. Used for statistics and for detecting reload nodes.
109  */
110 typedef enum arch_irn_class_t {
111         arch_irn_class_spill  = 1 << 0,
112         arch_irn_class_reload = 1 << 1,
113         arch_irn_class_remat  = 1 << 2,
114         arch_irn_class_copy   = 1 << 3,
115         arch_irn_class_perm   = 1 << 4
116 } arch_irn_class_t;
117
118 void arch_set_frame_offset(ir_node *irn, int bias);
119
120 ir_entity *arch_get_frame_entity(const ir_node *irn);
121 void       arch_set_frame_entity(ir_node *irn, ir_entity *ent);
122 int        arch_get_sp_bias(ir_node *irn);
123
124 int             arch_get_op_estimated_cost(const ir_node *irn);
125 arch_inverse_t *arch_get_inverse(const ir_node *irn, int i,
126                                  arch_inverse_t *inverse,
127                                  struct obstack *obstack);
128 int             arch_possible_memory_operand(const ir_node *irn,
129                                              unsigned int i);
130 void            arch_perform_memory_operand(ir_node *irn, ir_node *spill,
131                                             unsigned int i);
132
133 /**
134  * Get the register requirements for a node.
135  * @note Deprecated API! Preferably use
136  *       arch_get_in_register_req and
137  *       arch_get_out_register_req.
138  *
139  * @param irn The node.
140  * @param pos The position of the operand you're interested in.
141  * @return    A pointer to the register requirements.  If NULL is returned, the
142  *            operand was no register operand.
143  */
144 const arch_register_req_t *arch_get_register_req(const ir_node *irn, int pos);
145
146 /**
147  * Put all registers which shall not be ignored by the register
148  * allocator in a bit set.
149  * @param cls The register class to consider.
150  * @param bs  The bit set to put the registers to.
151  */
152 extern void arch_put_non_ignore_regs(const arch_register_class_t *cls,
153                                      bitset_t *bs);
154
155 /**
156  * Check, if a register is assignable to an operand of a node.
157  * @param irn The node.
158  * @param pos The position of the operand.
159  * @param reg The register.
160  * @return    1, if the register might be allocated to the operand 0 if not.
161  */
162 int arch_reg_is_allocatable(const ir_node *irn, int pos,
163                             const arch_register_t *reg);
164
165 #define arch_reg_out_is_allocatable(irn, reg) arch_reg_is_allocatable(irn, -1, reg)
166
167 /**
168  * Get the register class of an operand of a node.
169  * @param irn The node.
170  * @param pos The position of the operand, -1 for the output.
171  * @return    The register class of the operand or NULL, if
172  *            operand is a non-register operand.
173  */
174 const arch_register_class_t *arch_get_irn_reg_class(const ir_node *irn,
175                                                     int pos);
176
177 #define arch_get_irn_reg_class_out(irn) arch_get_irn_reg_class(irn, -1)
178
179 /**
180  * Get the register allocated at a certain output operand of a node.
181  * @param irn The node.
182  * @return    The register allocated for this operand
183  */
184 const arch_register_t *arch_get_irn_register(const ir_node *irn);
185 const arch_register_t *arch_irn_get_register(const ir_node *irn, int pos);
186
187 /**
188  * Set the register for a certain output operand.
189  * @param irn The node.
190  * @param reg The register.
191  */
192 void arch_set_irn_register(ir_node *irn, const arch_register_t *reg);
193 void arch_irn_set_register(ir_node *irn, int pos, const arch_register_t *reg);
194
195 /**
196  * Classify a node.
197  * @param irn The node.
198  * @return A classification of the node.
199  */
200 arch_irn_class_t arch_irn_classify(const ir_node *irn);
201
202 /**
203  * Get the flags of a node.
204  * @param irn The node.
205  * @return The flags.
206  */
207 arch_irn_flags_t arch_irn_get_flags(const ir_node *irn);
208
209 void arch_irn_set_flags(ir_node *node, arch_irn_flags_t flags);
210 void arch_irn_add_flags(ir_node *node, arch_irn_flags_t flags);
211
212 #define arch_irn_is(irn, flag) ((arch_irn_get_flags(irn) & arch_irn_flags_ ## flag) != 0)
213
214 /**
215  * Get the operations of an irn.
216  * @param self The handler from which the method is invoked.
217  * @param irn Some node.
218  * @return Operations for that irn.
219  */
220 typedef const void *(arch_get_irn_ops_t)(const ir_node *irn);
221
222 /**
223  * Initialize the architecture environment struct.
224  * @param isa           The isa which shall be put into the environment.
225  * @param file_handle   The file handle
226  * @return The environment.
227  */
228 extern arch_env_t *arch_env_init(const arch_isa_if_t *isa,
229                                  FILE *file_handle, be_main_env_t *main_env);
230
231 /**
232  * Register an instruction set architecture
233  */
234 void be_register_isa_if(const char *name, const arch_isa_if_t *isa);
235
236 /**
237  * A register.
238  */
239 struct arch_register_t {
240         const char                  *name;       /**< The name of the register. */
241         const arch_register_class_t *reg_class;  /**< The class of the register */
242         unsigned                     index;      /**< The index of the register in
243                                                       the class. */
244         arch_register_type_t         type;       /**< The type of the register. */
245         /** register constraint allowing just this register */
246         const arch_register_req_t   *single_req;
247 };
248
249 static inline const arch_register_class_t *_arch_register_get_class(
250                 const arch_register_t *reg)
251 {
252         return reg->reg_class;
253 }
254
255 static inline unsigned _arch_register_get_index(const arch_register_t *reg)
256 {
257         return reg->index;
258 }
259
260 static inline const char *_arch_register_get_name(const arch_register_t *reg)
261 {
262         return reg->name;
263 }
264
265 #define arch_register_get_class(reg)        _arch_register_get_class(reg)
266 #define arch_register_get_index(reg)        _arch_register_get_index(reg)
267 #define arch_register_get_name(reg)         _arch_register_get_name(reg)
268
269 /**
270  * Convenience macro to check for register type.
271  * @param req   A pointer to register.
272  * @param kind  The kind of type to check for (see arch_register_type_t).
273  * @return      1, If register is of given kind, 0 if not.
274  */
275 #define arch_register_type_is(reg, kind) \
276   (((reg)->type & arch_register_type_ ## kind) != 0)
277
278 /**
279  * A class of registers.
280  * Like general purpose or floating point.
281  */
282 struct arch_register_class_t {
283         unsigned                     index;   /**< index of this register class */
284         const char                  *name;    /**< The name of the register class.*/
285         unsigned                     n_regs;  /**< Number of registers in this
286                                                    class. */
287         ir_mode                     *mode;    /**< The mode of the register class.*/
288         const arch_register_t       *regs;    /**< The array of registers. */
289         arch_register_class_flags_t  flags;   /**< register class flags. */
290         const arch_register_req_t   *class_req;
291 };
292
293 /** return the number of registers in this register class */
294 #define arch_register_class_n_regs(cls) ((cls)->n_regs)
295
296 /** return the largest mode of this register class */
297 #define arch_register_class_mode(cls) ((cls)->mode)
298
299 /** return the name of this register class */
300 #define arch_register_class_name(cls) ((cls)->name)
301
302 /** return the index of this register class */
303 #define arch_register_class_index(cls)  ((cls)->index)
304
305 /** return the register class flags */
306 #define arch_register_class_flags(cls) ((cls)->flags)
307
308 static inline const arch_register_t *_arch_register_for_index(
309                 const arch_register_class_t *cls, unsigned idx)
310 {
311         assert(idx < cls->n_regs);
312         return &cls->regs[idx];
313 }
314
315 #define arch_register_for_index(cls, idx)   _arch_register_for_index(cls, idx)
316
317 /**
318  * Convenience macro to check for set constraints.
319  * @param req   A pointer to register requirements.
320  * @param kind  The kind of constraint to check for
321  *              (see arch_register_req_type_t).
322  * @return      1, If the kind of constraint is present, 0 if not.
323  */
324 #define arch_register_req_is(req, kind) \
325         (((req)->type & (arch_register_req_type_ ## kind)) != 0)
326
327 /**
328  * Expresses requirements to register allocation for an operand.
329  */
330 struct arch_register_req_t {
331         arch_register_req_type_t     type; /**< The type of the constraint. */
332         const arch_register_class_t *cls;  /**< The register class this constraint
333                                                 belongs to. */
334         const unsigned *limited;            /**< allowed register bitset */
335         unsigned other_same;                /**< Bitmask of ins which should use the
336                                                  same register (should_be_same). */
337         unsigned other_different;           /**< Bitmask of ins which shall use a
338                                                  different register
339                                                  (must_be_different) */
340 };
341
342 static inline int reg_reqs_equal(const arch_register_req_t *req1,
343                                  const arch_register_req_t *req2)
344 {
345         if (req1 == req2)
346                 return 1;
347
348         if (req1->type != req2->type
349                         || req1->cls != req2->cls
350                         || req1->other_same != req2->other_same
351                         || req1->other_different != req2->other_different)
352                 return 0;
353
354         if (req1->limited != NULL) {
355                 size_t n_regs;
356
357                 if (req2->limited == NULL)
358                         return 0;
359
360                 n_regs = arch_register_class_n_regs(req1->cls);
361                 if (!rbitsets_equal(req1->limited, req2->limited, n_regs))
362                         return 0;
363         }
364
365         return 1;
366 }
367
368 /**
369  * An inverse operation returned by the backend
370  */
371 struct arch_inverse_t {
372         int      n;       /**< count of nodes returned in nodes array */
373         int      costs;   /**< costs of this remat */
374
375         /** nodes for this inverse operation. shall be in schedule order.
376          * last element is the target value */
377         ir_node  **nodes;
378 };
379
380 struct arch_irn_ops_t {
381
382         /**
383          * Get the register requirements for a given operand.
384          * @param irn The node.
385          * @param pos The operand's position
386          * @return    The register requirements for the selected operand.
387          *            The pointer returned is never NULL.
388          */
389         const arch_register_req_t *(*get_irn_reg_req_in)(const ir_node *irn,
390                                                          int pos);
391
392         /**
393          * Classify the node.
394          * @param irn The node.
395          * @return A classification.
396          */
397         arch_irn_class_t (*classify)(const ir_node *irn);
398
399         /**
400          * Get the entity on the stack frame this node depends on.
401          * @param irn  The node in question.
402          * @return The entity on the stack frame or NULL, if the node does not have
403          *         a stack frame entity.
404          */
405         ir_entity *(*get_frame_entity)(const ir_node *irn);
406
407         /**
408          * Set the entity on the stack frame this node depends on.
409          * @param irn  The node in question.
410          * @param ent  The entity to set
411          */
412         void (*set_frame_entity)(ir_node *irn, ir_entity *ent);
413
414         /**
415          * Set the offset of a node carrying an entity on the stack frame.
416          * @param irn  The node.
417          * @param offset The offset of the node's stack frame entity.
418          */
419         void (*set_frame_offset)(ir_node *irn, int offset);
420
421         /**
422          * Returns the delta of the stackpointer for nodes that increment or
423          * decrement the stackpointer with a constant value. (push, pop
424          * nodes on most architectures).
425          * A positive value stands for an expanding stack area, a negative value for
426          * a shrinking one.
427          *
428          * @param irn       The node
429          * @return          0 if the stackpointer is not modified with a constant
430          *                  value, otherwise the increment/decrement value
431          */
432         int (*get_sp_bias)(const ir_node *irn);
433
434         /**
435          * Returns an inverse operation which yields the i-th argument
436          * of the given node as result.
437          *
438          * @param irn       The original operation
439          * @param i         Index of the argument we want the inverse operation to
440          *                  yield
441          * @param inverse   struct to be filled with the resulting inverse op
442          * @param obstack   The obstack to use for allocation of the returned nodes
443          *                  array
444          * @return          The inverse operation or NULL if operation invertible
445          */
446         arch_inverse_t *(*get_inverse)(const ir_node *irn, int i,
447                                        arch_inverse_t *inverse,
448                                        struct obstack *obstack);
449
450         /**
451          * Get the estimated cycle count for @p irn.
452          *
453          * @param irn  The node.
454          * @return     The estimated cycle count for this operation
455          */
456         int (*get_op_estimated_cost)(const ir_node *irn);
457
458         /**
459          * Asks the backend whether operand @p i of @p irn can be loaded form memory
460          * internally
461          *
462          * @param irn  The node.
463          * @param i    Index of the argument we would like to know whether @p irn
464          *             can load it form memory internally
465          * @return     nonzero if argument can be loaded or zero otherwise
466          */
467         int (*possible_memory_operand)(const ir_node *irn, unsigned int i);
468
469         /**
470          * Ask the backend to assimilate @p reload of operand @p i into @p irn.
471          *
472          * @param irn    The node.
473          * @param spill  The spill.
474          * @param i      The position of the reload.
475          */
476         void (*perform_memory_operand)(ir_node *irn, ir_node *spill,
477                                        unsigned int i);
478 };
479
480 /**
481  * The code generator interface.
482  */
483 struct arch_code_generator_if_t {
484         /**
485          * Initialize the code generator.
486          * @param birg A backend IRG session.
487          * @return     A newly created code generator.
488          */
489         void *(*init)(be_irg_t *birg);
490
491         /**
492          * return node used as base in pic code addresses
493          */
494         ir_node* (*get_pic_base)(void *self);
495
496         /**
497          * Called before abi introduce.
498          */
499         void (*before_abi)(void *self);
500
501         /**
502          * Called, when the graph is being normalized.
503          */
504         void (*prepare_graph)(void *self);
505
506         /**
507          * Backend may provide an own spiller.
508          * This spiller needs to spill all register classes.
509          */
510         void (*spill)(void *self, be_irg_t *birg);
511
512         /**
513          * Called before register allocation.
514          */
515         void (*before_ra)(void *self);
516
517         /**
518          * Called after register allocation.
519          */
520         void (*after_ra)(void *self);
521
522         /**
523          * Called directly before done is called. This should be the last place
524          * where the irg is modified.
525          */
526         void (*finish)(void *self);
527
528         /**
529          * Called after everything happened. This call should emit the final
530          * assembly code but avoid changing the irg.
531          * The code generator must also be de-allocated here.
532          */
533         void (*done)(void *self);
534 };
535
536 /**
537  * helper macro: call function func from the code generator
538  * if it's implemented.
539  */
540 #define _arch_cg_call(cg, func) \
541 do { \
542         if((cg)->impl->func) \
543                 (cg)->impl->func(cg); \
544 } while(0)
545
546 #define _arch_cg_call_env(cg, env, func) \
547 do { \
548         if((cg)->impl->func) \
549                 (cg)->impl->func(cg, env); \
550 } while(0)
551
552 #define arch_code_generator_before_abi(cg)      _arch_cg_call(cg, before_abi)
553 #define arch_code_generator_prepare_graph(cg)   _arch_cg_call(cg, prepare_graph)
554 #define arch_code_generator_before_ra(cg)       _arch_cg_call(cg, before_ra)
555 #define arch_code_generator_after_ra(cg)        _arch_cg_call(cg, after_ra)
556 #define arch_code_generator_finish(cg)          _arch_cg_call(cg, finish)
557 #define arch_code_generator_done(cg)            _arch_cg_call(cg, done)
558 #define arch_code_generator_spill(cg, birg)     _arch_cg_call_env(cg, birg, spill)
559 #define arch_code_generator_has_spiller(cg)     ((cg)->impl->spill != NULL)
560 #define arch_code_generator_get_pic_base(cg)    \
561         ((cg)->impl->get_pic_base != NULL ? (cg)->impl->get_pic_base(cg) : NULL)
562
563 /**
564  * Code generator base class.
565  */
566 struct arch_code_generator_t {
567         const arch_code_generator_if_t *impl;
568 };
569
570 /**
571  * Architecture interface.
572  */
573 struct arch_isa_if_t {
574         /**
575          * Initialize the isa interface.
576          * @param file_handle  the file handle to write the output to
577          * @return a new isa instance
578          */
579         arch_env_t *(*init)(FILE *file_handle);
580
581         /**
582          * Free the isa instance.
583          */
584         void (*done)(void *self);
585
586         /**
587          * Called directly after initialization. Backend should handle all
588          * intrinsics here.
589          */
590         void (*handle_intrinsics)(void);
591
592         /**
593          * Get the the number of register classes in the isa.
594          * @return The number of register classes.
595          */
596         unsigned (*get_n_reg_class)(void);
597
598         /**
599          * Get the i-th register class.
600          * @param i The number of the register class.
601          * @return The register class.
602          */
603         const arch_register_class_t *(*get_reg_class)(unsigned i);
604
605         /**
606          * Get the register class which shall be used to store a value of a given
607          * mode.
608          * @param self The this pointer.
609          * @param mode The mode in question.
610          * @return A register class which can hold values of the given mode.
611          */
612         const arch_register_class_t *(*get_reg_class_for_mode)(const ir_mode *mode);
613
614         /**
615          * Get the ABI restrictions for procedure calls.
616          * @param self        The this pointer.
617          * @param call_type   The call type of the method (procedure) in question.
618          * @param p           The array of parameter locations to be filled.
619          */
620         void (*get_call_abi)(const void *self, ir_type *call_type,
621                              be_abi_call_t *abi);
622
623         /**
624          * Get the code generator interface.
625          * @param self The this pointer.
626          * @return     Some code generator interface.
627          */
628         const arch_code_generator_if_t *(*get_code_generator_if)(void *self);
629
630         /**
631          * Get the list scheduler to use. There is already a selector given, the
632          * backend is free to modify and/or ignore it.
633          *
634          * @param self     The isa object.
635          * @param selector The selector given by options.
636          * @return         The list scheduler selector.
637          */
638         const list_sched_selector_t *(*get_list_sched_selector)(const void *self,
639                         list_sched_selector_t *selector);
640
641         /**
642          * Get the ILP scheduler to use.
643          * @param self  The isa object.
644          * @return      The ILP scheduler selector
645          */
646         const ilp_sched_selector_t *(*get_ilp_sched_selector)(const void *self);
647
648         /**
649          * Get the necessary alignment for storing a register of given class.
650          * @param self  The isa object.
651          * @param cls   The register class.
652          * @return      The alignment in bytes.
653          */
654         int (*get_reg_class_alignment)(const arch_register_class_t *cls);
655
656         /**
657          * A "static" function, returns the frontend settings
658          * needed for this backend.
659          */
660         const backend_params *(*get_params)(void);
661
662         /**
663          * Returns an 2-dim array of execution units, @p irn can be executed on.
664          * The first dimension is the type, the second the allowed units of this
665          * type.
666          * Each dimension is a NULL terminated list.
667          * @param self  The isa object.
668          * @param irn   The node.
669          * @return An array of allowed execution units.
670          *         exec_unit = {
671          *                       { unit1_of_tp1, ..., unitX1_of_tp1, NULL },
672          *                       ...,
673          *                       { unit1_of_tpY, ..., unitXn_of_tpY, NULL },
674          *                       NULL
675          *                     };
676          */
677         const be_execution_unit_t ***(*get_allowed_execution_units)(
678                         const ir_node *irn);
679
680         /**
681          * Return the abstract machine for this isa.
682          * @param self  The isa object.
683          */
684         const be_machine_t *(*get_machine)(const void *self);
685
686         /**
687          * Return an ordered list of irgs where code should be generated for.
688          * If NULL is returned, all irg will be taken into account and they will be
689          * generated in an arbitrary order.
690          * @param self   The isa object.
691          * @param irgs   A flexible array ARR_F of length 0 where the backend can
692          *               append the desired irgs.
693          * @return A flexible array ARR_F containing all desired irgs in the
694          *         desired order.
695          */
696         ir_graph **(*get_backend_irg_list)(const void *self, ir_graph ***irgs);
697
698         /**
699          * mark node as rematerialized
700          */
701         void (*mark_remat)(ir_node *node);
702
703         /**
704          * parse an assembler constraint part and set flags according to its nature
705          * advances the *c pointer to point to the last parsed character (so if you
706          * parse a single character don't advance c)
707          */
708         asm_constraint_flags_t (*parse_asm_constraint)(const char **c);
709
710         /**
711          * returns true if the string is a valid clobbered (register) in this
712          * backend
713          */
714         int (*is_valid_clobber)(const char *clobber);
715 };
716
717 #define arch_env_done(env)                             ((env)->impl->done(env))
718 #define arch_env_handle_intrinsics(env)                \
719         do { if((env)->impl->handle_intrinsics != NULL) (env)->impl->handle_intrinsics(); } while(0)
720 #define arch_env_get_n_reg_class(env)                  ((env)->impl->get_n_reg_class())
721 #define arch_env_get_reg_class(env,i)                  ((env)->impl->get_reg_class(i))
722 #define arch_env_get_reg_class_for_mode(env,mode)      ((env)->impl->get_reg_class_for_mode((mode)))
723 #define arch_env_get_call_abi(env,tp,abi)              ((env)->impl->get_call_abi((env), (tp), (abi)))
724 #define arch_env_get_code_generator_if(env)            ((env)->impl->get_code_generator_if((env)))
725 #define arch_env_get_list_sched_selector(env,selector) ((env)->impl->get_list_sched_selector((env), (selector)))
726 #define arch_env_get_ilp_sched_selector(env)           ((env)->impl->get_ilp_sched_selector(env))
727 #define arch_env_get_reg_class_alignment(env,cls)      ((env)->impl->get_reg_class_alignment((cls)))
728 #define arch_env_get_params(env)                       ((env)->impl->get_params())
729 #define arch_env_get_allowed_execution_units(env,irn)  ((env)->impl->get_allowed_execution_units((irn)))
730 #define arch_env_get_machine(env)                      ((env)->impl->get_machine(env))
731 #define arch_env_get_backend_irg_list(env,irgs)        ((env)->impl->get_backend_irg_list((env), (irgs)))
732 #define arch_env_parse_asm_constraint(env,c)           ((env)->impl->parse_asm_constraint((c))
733 #define arch_env_is_valid_clobber(env,clobber)         ((env)->impl->is_valid_clobber((clobber))
734 #define arch_env_mark_remat(env,node) \
735         do { if ((env)->impl->mark_remat != NULL) (env)->impl->mark_remat((node)); } while(0)
736
737 /**
738  * ISA base class.
739  */
740 struct arch_env_t {
741         const arch_isa_if_t   *impl;
742         const arch_register_t *sp;               /**< The stack pointer register. */
743         const arch_register_t *bp;               /**< The base pointer register. */
744         const arch_register_class_t *link_class; /**< The static link pointer
745                                                       register class. */
746         int                    stack_dir;        /**< -1 for decreasing, 1 for
747                                                       increasing. */
748         int                    stack_alignment;  /**< power of 2 stack alignment */
749         const be_main_env_t   *main_env;         /**< the be main environment */
750         int                    spill_cost;       /**< cost for a be_Spill node */
751         int                    reload_cost;      /**< cost for a be_Reload node */
752 };
753
754 static inline unsigned arch_irn_get_n_outs(const ir_node *node)
755 {
756         backend_info_t *info = be_get_info(node);
757         if (info->out_infos == NULL)
758                 return 0;
759
760         return ARR_LEN(info->out_infos);
761 }
762
763 static inline const arch_irn_ops_t *get_irn_ops_simple(const ir_node *node)
764 {
765         const ir_op          *ops    = get_irn_op(node);
766         const arch_irn_ops_t *be_ops = get_op_ops(ops)->be_ops;
767         assert(!is_Proj(node));
768         return be_ops;
769 }
770
771 static inline const arch_register_req_t *arch_get_register_req_out(
772                 const ir_node *irn)
773 {
774         int             pos = 0;
775         backend_info_t *info;
776
777         if (is_Proj(irn)) {
778                 pos = get_Proj_proj(irn);
779                 irn = get_Proj_pred(irn);
780         } else if (get_irn_mode(irn) == mode_T) {
781                 /* TODO: find out who does this and fix the caller! */
782                 return arch_no_register_req;
783         }
784         info = be_get_info(irn);
785         if (info->out_infos == NULL)
786                 return arch_no_register_req;
787
788         return info->out_infos[pos].req;
789 }
790
791 static inline bool arch_irn_is_ignore(const ir_node *irn)
792 {
793         const arch_register_req_t *req = arch_get_register_req_out(irn);
794         return !!(req->type & arch_register_req_type_ignore);
795 }
796
797 static inline bool arch_irn_consider_in_reg_alloc(
798                 const arch_register_class_t *cls, const ir_node *node)
799 {
800         const arch_register_req_t *req = arch_get_register_req_out(node);
801         return
802                 req->cls == cls &&
803                 !(req->type & arch_register_req_type_ignore);
804 }
805
806 /**
807  * Get register constraints for an operand at position @p
808  */
809 static inline const arch_register_req_t *arch_get_in_register_req(
810                 const ir_node *node, int pos)
811 {
812         const arch_irn_ops_t *ops = get_irn_ops_simple(node);
813         return ops->get_irn_reg_req_in(node, pos);
814 }
815
816 /**
817  * Get register constraint for a produced result (the @p pos result)
818  */
819 static inline const arch_register_req_t *arch_get_out_register_req(
820                 const ir_node *node, int pos)
821 {
822         const backend_info_t *info = be_get_info(node);
823         if (info->out_infos == NULL)
824                 return arch_no_register_req;
825         return info->out_infos[pos].req;
826 }
827
828 static inline void arch_set_out_register_req(ir_node *node, int pos,
829                 const arch_register_req_t *req)
830 {
831         backend_info_t *info = be_get_info(node);
832         assert(pos < (int) arch_irn_get_n_outs(node));
833         info->out_infos[pos].req = req;
834 }
835
836 #endif