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