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