removed critical_edges flag. Other code depends on remove_critical_edges() doing...
[libfirm] / ir / ir / irnode_t.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irnode_t.h
4  * Purpose:     Representation of an intermediate operation -- private header.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14  * @file irnode_t.h
15  *
16  * Declarations of an ir node.
17  *
18  * @author Martin Trapp, Christian Schaefer
19  */
20
21 # ifndef _IRNODE_T_H_
22 # define _IRNODE_T_H_
23
24 #include "firm_config.h"
25 #include "irnode.h"
26 #include "irop_t.h"
27 #include "irgraph_t.h"
28 #include "irflag_t.h"
29 #include "firm_common_t.h"
30 #include "irdom_t.h" /* For size of struct dom_info. */
31 #include "dbginfo.h"
32 #include "irloop.h"
33 #include "array.h"
34
35 #include "set.h"
36 #include "list.h"
37 #include "entity_t.h"
38 #include "type_t.h"
39 #include "tv_t.h"
40 #include "irextbb_t.h"
41
42
43 /** ir node attributes **/
44
45 /** Block attributes */
46 typedef struct {
47   /* General attributes */
48   ir_graph *irg;
49   unsigned long block_visited;  /**< for the walker that walks over all blocks. */
50   /* Attributes private to construction: */
51   unsigned matured:1;         /**< if set, all in-nodes of the block are fixed */
52   unsigned dead:1;            /**< if set, the block is dead (and could be replace by a Bad */
53   ir_node **graph_arr;        /**< array to store all parameters */
54   /* Attributes holding analyses information */
55   dom_info dom;               /**< Datastructure that holds information about dominators.
56                                    @@@ @todo
57                                    Eventually overlay with graph_arr as only valid
58                                    in different phases.  Eventually inline the whole
59                                    datastructure. */
60   dom_info pdom;              /**< Datastructure that holds information about post-dominators. */
61   ir_node ** in_cg;           /**< array with predecessors in
62                                * interprocedural_view, if they differ
63                                * from intraprocedural predecessors */
64   int *backedge;              /**< Field n set to true if pred n is backedge.
65                                    @@@ @todo Ev. replace by bit field! */
66   int *cg_backedge;           /**< Field n set to true if pred n is interprocedural backedge.
67                                    @@@ @todo Ev. replace by bit field! */
68   ir_extblk *extblk;          /**< the extended basic block this block belongs to */
69
70   struct list_head succ_head; /**< A list head for all successor edges of a block. */
71
72 } block_attr;
73
74 /** Start attributes */
75 typedef struct {
76   char dummy;
77   /*   ir_graph *irg;   @@@ now in block */
78 } start_attr;
79
80 /** Cond attributes */
81 typedef struct {
82   cond_kind kind;           /**< flavor of Cond */
83   long default_proj;        /**< only for non-binary Conds: biggest Proj number, i.e. the one used for default. */
84   cond_jmp_predicate pred;  /**< only for binary Conds: The jump predication. */
85 } cond_attr;
86
87 /** Const attributes */
88 typedef struct {
89   tarval  *tv;       /**< the target value */
90   ir_type *tp;       /**< the source type, for analyses. default: type_unknown. */
91 } const_attr;
92
93 typedef struct {
94   symconst_symbol sym;  // old tori
95   symconst_kind num;
96   ir_type *tp;       /**< the source type, for analyses. default: type_unknown. */
97 } symconst_attr;
98
99 /** Sel attributes */
100 typedef struct {
101   entity *ent;          /**< entity to select */
102 } sel_attr;
103
104 /** Exception attributes */
105 typedef struct {
106   op_pin_state   pin_state;     /**< the pin state for operations that might generate a exception:
107                                      If it's know that no exception will be generated, could be set to
108                                      op_pin_state_floats. */
109 #if PRECISE_EXC_CONTEXT
110   struct ir_node **frag_arr;    /**< For Phi node construction in case of exception */
111 #endif
112 } except_attr;
113
114 /** Call attributes */
115 typedef struct {
116   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
117   ir_type *cld_tp;              /**< type of called procedure */
118   entity ** callee_arr;         /**< result of callee analysis */
119 } call_attr;
120
121 /** Alloc attributes */
122 typedef struct {
123   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
124   ir_type *type;                /**< Type of the allocated object.  */
125   where_alloc where;            /**< stack, heap or other managed part of memory */
126 } alloc_attr;
127
128 /** Free attributes */
129 typedef struct {
130   ir_type *type;                /**< Type of the allocated object.  */
131   where_alloc where;            /**< stack, heap or other managed part of memory */
132 } free_attr;
133
134 /** InstOf attributes */
135 typedef struct {
136   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
137   ir_type *type;                /**< the type of which the object pointer must be */
138 } io_attr;
139
140 /** Filter attributes */
141 typedef struct {
142   long proj;                 /**< contains the result position to project (Proj) */
143   ir_node ** in_cg;          /**< array with interprocedural predecessors (Phi) */
144   int *backedge;              /**< Field n set to true if pred n is backedge.
145                      @todo Ev. replace by bitfield! */
146 } filter_attr;
147
148 /** EndReg/EndExcept attributes */
149 typedef struct {
150   char dummy;
151 } end_attr;
152
153 /** CallBegin attributes */
154 typedef struct {
155   ir_node * call;               /**< Associated Call-operation. */
156 } callbegin_attr;
157
158 /** Cast attributes */
159 typedef struct {
160   ir_type *totype;              /**< Type of the casted node. */
161 } cast_attr;
162
163 /** Load attributes */
164 typedef struct {
165   except_attr    exc;           /**< The exception attribute. MUST be the first one. */
166   ir_mode        *load_mode;    /**< The mode of this Load operation. */
167   ent_volatility volatility;      /**< The volatility of a Load/Store operation. */
168 } load_attr;
169
170 /** Store attributes */
171 typedef struct {
172   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
173   ent_volatility volatility;      /**< the volatility of a Store operation */
174 } store_attr;
175
176 typedef pn_Cmp confirm_attr;    /**< Attribute to hold compare operation */
177
178 /** CopyB attribute */
179 typedef struct {
180   except_attr    exc;           /**< The exception attribute. MUST be the first one. */
181   ir_type        *data_type;    /**< Type of the copied entity. */
182 } copyb_attr;
183
184 /** Bound attribute */
185 typedef struct {
186   except_attr    exc;           /**< The exception attribute. MUST be the first one. */
187 } bound_attr;
188
189 /**
190  * Edge info to put into an irn.
191  */
192 typedef struct _irn_edge_info_t {
193   struct list_head outs_head;  /**< The list of all outs. */
194   int out_count;               /**< Number of outs in the list. */
195 } irn_edge_info_t;
196
197
198 /** Some IR-nodes just have one attribute, these are stored here,
199    some have more. Their name is 'irnodename_attr' */
200 typedef union {
201   start_attr     start; /**< For Start */
202   block_attr     block; /**< For Block: Fields needed to construct it */
203   cond_attr      c;     /**< For Cond. */
204   const_attr     con;   /**< For Const: contains the value of the constant and a type */
205   symconst_attr  i;     /**< For SymConst. */
206   sel_attr       s;     /**< For Sel. */
207   call_attr      call;  /**< For Call: pointer to the type of the method to call */
208   callbegin_attr callbegin; /**< For CallBegin */
209   alloc_attr     a;    /**< For Alloc. */
210   free_attr      f;    /**< For Free. */
211   io_attr        io;    /**< For InstOf */
212   cast_attr      cast;  /**< For Cast. */
213   load_attr      load;  /**< For Load. */
214   store_attr     store;  /**< For Store. */
215   int            phi0_pos;  /**< For Phi. Used to remember the value defined by
216                    this Phi node.  Needed when the Phi is completed
217                    to call get_r_internal_value to find the
218                    predecessors. If this attribute is set, the Phi
219                    node takes the role of the obsolete Phi0 node,
220                    therefore the name. */
221   int *phi_backedge;    /**< For Phi after construction.
222                            Field n set to true if pred n is backedge.
223                            @todo Ev. replace by bitfield! */
224   long           proj;          /**< For Proj: contains the result position to project */
225   confirm_attr   confirm_cmp;   /**< For Confirm: compare operation */
226   filter_attr    filter;        /**< For Filter */
227   end_attr       end;           /**< For EndReg, EndExcept */
228   except_attr    except;        /**< For Phi node construction in case of exceptions */
229   copyb_attr     copyb;         /**< For CopyB operation */
230   bound_attr     bound;         /**< For Bound operation */
231 } attr;
232
233
234 /** common structure of an irnode
235     if the node has some attributes, they are stored in attr */
236 struct ir_node {
237   /* ------- Basics of the representation  ------- */
238   firm_kind kind;          /**< distinguishes this node from others */
239   ir_op *op;               /**< Opcode of this node. */
240   ir_mode *mode;           /**< Mode of this node. */
241   struct ir_node **in;     /**< array with predecessors / operands */
242   unsigned long visited;   /**< visited counter for walks of the graph */
243   void *link;              /**< to attach additional information to the node, e.g.
244                               used while construction to link Phi0 nodes and
245                               during optimization to link to nodes that
246                               shall replace a node. */
247   /* ------- Fields for optimizations / analysis information ------- */
248   struct ir_node **out;    /**< @deprecated array of out edges. */
249   struct dbg_info* dbi;    /**< A pointer to information for debug support. */
250   /* ------- For debugging ------- */
251 #ifdef DEBUG_libfirm
252         int out_valid;
253   long node_nr;            /**< a unique node number for each node to make output
254                               readable. */
255 #endif
256   /* ------- For analyses -------- */
257   ir_loop *loop;           /**< the loop the node is in. Access routines in irloop.h */
258 #ifdef  DO_HEAPANALYSIS
259   struct abstval *av;      /**< the abstract value of this node */
260   struct section *sec;
261 #endif
262 #if FIRM_EDGES_INPLACE
263   irn_edge_info_t edge_info;  /**< everlasting out edges */
264 #endif
265   /* ------- Opcode depending fields -------- */
266   attr attr;               /**< attribute of this node. Depends on opcode.
267                               Must be last field of struct ir_node. */
268 };
269
270
271 /**
272  * Returns the array with the ins.  The content of the array may not be
273  * changed.
274  * Note that this function returns the whole in array including the
275  * block predecessor. So, it is NOT symmetric with set_irn_in().
276  */
277 ir_node     **get_irn_in            (const ir_node *node);
278
279 /** @{ */
280 /** access attributes directly */
281 const_attr    get_irn_const_attr    (ir_node *node);
282 long          get_irn_proj_attr     (ir_node *node);
283 alloc_attr    get_irn_alloc_attr    (ir_node *node);
284 free_attr     get_irn_free_attr     (ir_node *node);
285 symconst_attr get_irn_symconst_attr (ir_node *node);
286 ir_type      *get_irn_call_attr     (ir_node *node);
287 ir_type      *get_irn_funccall_attr (ir_node *node);
288 sel_attr      get_irn_sel_attr      (ir_node *node);
289 int           get_irn_phi_attr      (ir_node *node);
290 block_attr    get_irn_block_attr    (ir_node *node);
291 load_attr     get_irn_load_attr     (ir_node *node);
292 store_attr    get_irn_store_attr    (ir_node *node);
293 except_attr   get_irn_except_attr   (ir_node *node);
294 /** @} */
295
296 /**
297  * The amount of additional space for custom data to be allocated upon creating a new node.
298  */
299 extern unsigned firm_add_node_size;
300
301 /**
302  * Sets the get_type operation for an ir_op_ops.
303  *
304  * @param code   the opcode for the default operation
305  * @param ops    the operations initialized
306  *
307  * @return
308  *    The operations.
309  */
310 ir_op_ops *firm_set_default_get_type(opcode code, ir_op_ops *ops);
311
312 /**
313  * Sets the get_type_attr operation for an ir_op_ops.
314  *
315  * @param code   the opcode for the default operation
316  * @param ops    the operations initialized
317  *
318  * @return
319  *    The operations.
320  */
321 ir_op_ops *firm_set_default_get_type_attr(opcode code, ir_op_ops *ops);
322
323 /**
324  * Sets the get_entity_attr operation for an ir_op_ops.
325  *
326  * @param code   the opcode for the default operation
327  * @param ops    the operations initialized
328  *
329  * @return
330  *    The operations.
331  */
332 ir_op_ops *firm_set_default_get_entity_attr(opcode code, ir_op_ops *ops);
333
334 /*-------------------------------------------------------------------*/
335 /*  These function are most used in libfirm.  Give them as static    */
336 /*  functions so they can be inlined.                                */
337 /*-------------------------------------------------------------------*/
338
339 /**
340  * Checks whether a pointer points to a ir node.
341  * Intern version for libFirm.
342  */
343 static INLINE int
344 _is_ir_node (const void *thing) {
345   return (get_kind(thing) == k_ir_node);
346 }
347
348 /**
349  * Gets the op of a node.
350  * Intern version for libFirm.
351  */
352 static INLINE ir_op *
353 _get_irn_op (const ir_node *node) {
354   assert (node);
355   return node->op;
356 }
357
358 /** Copies all attributes stored in the old node  to the new node.
359     Assumes both have the same opcode and sufficient size. */
360 static INLINE void
361 copy_node_attr(const ir_node *old_node, ir_node *new_node) {
362   ir_op *op = _get_irn_op(old_node);
363
364   /* must always exist */
365   op->ops.copy_attr(old_node, new_node);
366 }
367
368 /**
369  * Gets the opcode of a node.
370  * Intern version for libFirm.
371  */
372 static INLINE opcode
373 _get_irn_opcode (const ir_node *node) {
374   assert (k_ir_node == get_kind(node));
375   assert (node->op);
376   return node->op->code;
377 }
378
379 /**
380  * Returns the number of predecessors without the block predecessor.
381  * Intern version for libFirm.
382  */
383 static INLINE int
384 _get_irn_intra_arity (const ir_node *node) {
385   assert(node);
386   return ARR_LEN(node->in) - 1;
387 }
388
389 /**
390  * Returns the number of predecessors without the block predecessor.
391  * Intern version for libFirm.
392  */
393 static INLINE int
394 _get_irn_inter_arity (const ir_node *node) {
395   assert(node);
396   if (_get_irn_op(node) == op_Filter) {
397     assert(node->attr.filter.in_cg);
398     return ARR_LEN(node->attr.filter.in_cg) - 1;
399   } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
400     return ARR_LEN(node->attr.block.in_cg) - 1;
401   }
402   return _get_irn_intra_arity(node);
403 }
404
405 /**
406  * Returns the number of predecessors without the block predecessor.
407  * Intern version for libFirm.
408  */
409 extern int (*_get_irn_arity)(const ir_node *node);
410
411 /**
412  * Intern version for libFirm.
413  */
414 static INLINE ir_node *
415 _get_irn_intra_n (const ir_node *node, int n) {
416   ir_node *nn;
417
418   assert(node); assert(-1 <= n && n < _get_irn_intra_arity(node));
419
420   nn = node->in[n + 1];
421   if (!nn || (nn->op != op_Id)) return nn;
422
423   return (node->in[n + 1] = skip_Id(nn));
424 }
425
426 /**
427  * Intern version for libFirm.
428  */
429 static INLINE ir_node*
430 _get_irn_inter_n (const ir_node *node, int n) {
431   assert(node); assert(-1 <= n && n < _get_irn_inter_arity(node));
432
433   /* handle Filter and Block specially */
434   if (_get_irn_op(node) == op_Filter) {
435     assert(node->attr.filter.in_cg);
436     return (node->attr.filter.in_cg[n + 1] = skip_Id(node->attr.filter.in_cg[n + 1]));
437   } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
438     return (node->attr.block.in_cg[n + 1] = skip_Id(node->attr.block.in_cg[n + 1]));
439   }
440
441   return _get_irn_intra_n (node, n);
442 }
443
444 /**
445  * Access to the predecessors of a node.
446  * To iterate over the operands iterate from 0 to i < get_irn_arity(),
447  * to iterate including the Block predecessor iterate from i = -1 to
448  * i < get_irn_arity.
449  * If it is a block, the entry -1 is NULL.
450  * Intern version for libFirm.
451  */
452 extern ir_node *(*_get_irn_n)(const ir_node *node, int n);
453
454 /**
455  * Gets the mode of a node.
456  * Intern version for libFirm.
457  */
458 static INLINE ir_mode *
459 _get_irn_mode (const ir_node *node)
460 {
461   assert (node);
462   return node->mode;
463 }
464
465 /**
466  * Sets the mode of a node.
467  * Intern version of libFirm.
468  */
469 static INLINE void
470 _set_irn_mode (ir_node *node, ir_mode *mode)
471 {
472   assert (node);
473   node->mode = mode;
474 }
475
476 /**
477  * Gets the visited counter of a node.
478  * Intern version for libFirm.
479  */
480 static INLINE unsigned long
481 _get_irn_visited (const ir_node *node)
482 {
483   assert (node);
484   return node->visited;
485 }
486
487 /**
488  * Sets the visited counter of a node.
489  * Intern version for libFirm.
490  */
491 static INLINE void
492 _set_irn_visited (ir_node *node, unsigned long visited)
493 {
494   assert (node);
495   node->visited = visited;
496 }
497
498 /**
499  * Mark a node as visited in a graph.
500  * Intern version for libFirm.
501  */
502 static INLINE void
503 _mark_irn_visited (ir_node *node) {
504   assert (node);
505   node->visited = current_ir_graph->visited;
506 }
507
508 /**
509  * Returns non-zero if a node of was visited.
510  * Intern version for libFirm.
511  */
512 static INLINE int
513 _irn_visited(const ir_node *node) {
514   assert (node);
515   return (node->visited >= current_ir_graph->visited);
516 }
517
518 /**
519  * Returns non-zero if a node of was NOT visited.
520  * Intern version for libFirm.
521  */
522 static INLINE int
523 _irn_not_visited(const ir_node *node) {
524   assert (node);
525   return (node->visited < current_ir_graph->visited);
526 }
527
528 /**
529  * Sets the link of a node.
530  * Intern version of libFirm.
531  */
532 static INLINE void
533 _set_irn_link(ir_node *node, void *link) {
534   assert (node);
535   /* Link field is used for Phi construction and various optimizations
536      in iropt. */
537   assert(get_irg_phase_state(get_irn_irg(node)) != phase_building);
538
539   node->link = link;
540 }
541
542 /**
543  * Returns the link of a node.
544  * Intern version of libFirm.
545  */
546 static INLINE void *
547 _get_irn_link(const ir_node *node) {
548   assert (node && _is_ir_node(node));
549   return node->link;
550 }
551
552 /**
553  * Returns whether the node _always_ must be pinned.
554  * I.e., the node is not floating after global cse.
555  *
556  * Intern version of libFirm.
557  */
558 static INLINE op_pin_state
559 _get_irn_pinned(const ir_node *node) {
560   op_pin_state state;
561   assert(node && _is_ir_node(node));
562   /* Check opcode */
563   state = _get_op_pinned(_get_irn_op(node));
564
565   if (state >= op_pin_state_exc_pinned)
566     return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned;
567   return state;
568 }
569
570 static INLINE op_pin_state
571 _is_irn_pinned_in_irg(const ir_node *node) {
572   if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats)
573     return get_irn_pinned(node);
574   return op_pin_state_pinned;
575 }
576
577 static INLINE int
578 _is_unop(const ir_node *node) {
579   assert(node && _is_ir_node(node));
580   return (node->op->opar == oparity_unary);
581 }
582
583 static INLINE int
584 _is_binop(const ir_node *node) {
585   assert(node && _is_ir_node(node));
586   return (node->op->opar == oparity_binary);
587 }
588
589 static INLINE int
590 _is_Bad(const ir_node *node) {
591   assert(node);
592   return (node && _get_irn_op(node) == op_Bad);
593 }
594
595 static INLINE int
596 _is_Const(const ir_node *node) {
597   assert(node);
598   return (node && _get_irn_op(node) == op_Const);
599 }
600
601 static INLINE int
602 _is_Unknown (const ir_node *node) {
603   assert(node);
604   return (node && _get_irn_op(node) == op_Unknown);
605 }
606
607 static INLINE int
608 _is_Return (const ir_node *node) {
609   assert(node);
610   return (node && _get_irn_op(node) == op_Return);
611 }
612
613 static INLINE int
614 _is_Call (const ir_node *node) {
615   assert(node);
616   return (node && _get_irn_op(node) == op_Call);
617 }
618
619 static INLINE int
620 _is_Sel (const ir_node *node) {
621   assert(node);
622   return (node && _get_irn_op(node) == op_Sel);
623 }
624
625 static INLINE int
626 _is_no_Block(const ir_node *node) {
627   assert(node && _is_ir_node(node));
628   return (_get_irn_op(node) != op_Block);
629 }
630
631 static INLINE int
632 _is_Block(const ir_node *node) {
633   assert(node && _is_ir_node(node));
634   return (_get_irn_op(node) == op_Block);
635 }
636
637 static INLINE int
638 _get_Block_n_cfgpreds (ir_node *node) {
639   assert(_is_Block(node));
640   return _get_irn_arity(node);
641 }
642
643 static INLINE ir_node *
644 _get_Block_cfgpred (ir_node *node, int pos) {
645   assert(0 <= pos && pos < get_irn_arity(node));
646   assert(_is_Block(node));
647   return _get_irn_n(node, pos);
648 }
649
650 /* Get the predecessor block.
651  *
652  *  Returns the block corresponding to the predecessor pos.
653  *
654  *  There are several ambiguities we resolve with this function:
655  *  - The direct predecessor can be a Proj, which is not pinned.
656  *    We walk from the predecessor to the next pinned node
657  *    (skip_Proj) and return the block that node is in.
658  *  - If we encounter the Bad node, this function does not return
659  *    Start, but the Bad node.
660  */
661 static INLINE ir_node  *
662 _get_Block_cfgpred_block(ir_node *node, int pos) {
663   ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
664   if (!is_Bad(res))
665     res = get_nodes_block(res);
666   return res;
667 }
668
669 static INLINE unsigned long
670 _get_Block_block_visited (ir_node *node) {
671   assert (node->op == op_Block);
672   return node->attr.block.block_visited;
673 }
674
675 static INLINE void
676 _set_Block_block_visited (ir_node *node, unsigned long visit) {
677   assert (node->op == op_Block);
678   node->attr.block.block_visited = visit;
679 }
680
681 /* For this current_ir_graph must be set. */
682 static INLINE void
683 _mark_Block_block_visited (ir_node *node) {
684   assert (node->op == op_Block);
685   node->attr.block.block_visited = get_irg_block_visited(current_ir_graph);
686 }
687
688 static INLINE int
689 _Block_not_block_visited(ir_node *node) {
690   assert (node->op == op_Block);
691   return (node->attr.block.block_visited < get_irg_block_visited(current_ir_graph));
692 }
693
694 static INLINE ir_node *
695 _set_Block_dead(ir_node *block) {
696   assert(_get_irn_op(block) == op_Block);
697   block->attr.block.dead = 1;
698   return block;
699 }
700
701 static INLINE int
702 _is_Block_dead(const ir_node *block) {
703   ir_op * op = _get_irn_op(block);
704
705   if (op == op_Bad)
706     return 1;
707   else {
708     assert(op == op_Block);
709     return block->attr.block.dead;
710   }
711 }
712
713 static INLINE tarval *_get_Const_tarval (ir_node *node) {
714   assert (_get_irn_op(node) == op_Const);
715   return node->attr.con.tv;
716 }
717
718 static INLINE cnst_classify_t _classify_Const(ir_node *node) {
719   ir_op *op;
720   assert(_is_ir_node(node));
721
722   op = _get_irn_op(node);
723
724   if(op == op_Const)
725     return classify_tarval(_get_Const_tarval(node));
726   else if(op == op_SymConst)
727     return CNST_SYMCONST;
728
729   return CNST_NO_CONST;
730 }
731
732 static INLINE int _is_irn_forking(const ir_node *node) {
733   return is_op_forking(_get_irn_op(node));
734 }
735
736 static INLINE ir_type *_get_irn_type(ir_node *node) {
737   return _get_irn_op(node)->ops.get_type(node);
738 }
739
740 static INLINE ir_type *_get_irn_type_attr(ir_node *node) {
741   return _get_irn_op(node)->ops.get_type_attr(node);
742 }
743
744 static INLINE entity *_get_irn_entity_attr(ir_node *node) {
745   return _get_irn_op(node)->ops.get_entity_attr(node);
746 }
747
748 static INLINE int _is_irn_constlike(const ir_node *node) {
749   return is_op_constlike(_get_irn_op(node));
750 }
751
752 static INLINE int _is_irn_keep(const ir_node *node) {
753   return is_op_keep(_get_irn_op(node));
754 }
755
756 static INLINE cond_jmp_predicate _get_Cond_jmp_pred(ir_node *node) {
757   assert (_get_irn_op(node) == op_Cond);
758   return node->attr.c.pred;
759 }
760
761 static INLINE void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
762   assert (_get_irn_op(node) == op_Cond);
763   node->attr.c.pred = pred;
764 }
765
766 /* this section MUST contain all inline functions */
767 #define is_ir_node(thing)                     _is_ir_node(thing)
768 #define get_irn_intra_arity(node)             _get_irn_intra_arity(node)
769 #define get_irn_inter_arity(node)             _get_irn_inter_arity(node)
770 #define get_irn_arity(node)                   _get_irn_arity(node)
771 #define get_irn_intra_n(node, n)              _get_irn_intra_n(node, n)
772 #define get_irn_inter_n(node, n)              _get_irn_inter_n(node, n)
773 #define get_irn_n(node, n)                    _get_irn_n(node, n)
774 #define get_irn_mode(node)                    _get_irn_mode(node)
775 #define set_irn_mode(node, mode)              _set_irn_mode(node, mode)
776 #define get_irn_op(node)                      _get_irn_op(node)
777 #define get_irn_opcode(node)                  _get_irn_opcode(node)
778 #define get_irn_visited(node)                 _get_irn_visited(node)
779 #define set_irn_visited(node, v)              _set_irn_visited(node, v)
780 #define mark_irn_visited(node)                _mark_irn_visited(node)
781 #define irn_visited(node)                     _irn_visited(node)
782 #define irn_not_visited(node)                 _irn_not_visited(node)
783 #define set_irn_link(node, link)              _set_irn_link(node, link)
784 #define get_irn_link(node)                    _get_irn_link(node)
785 #define get_irn_pinned(node)                  _get_irn_pinned(node)
786 #define is_irn_pinned_in_irg(node)            _is_irn_pinned_in_irg(node)
787 #define is_unop(node)                         _is_unop(node)
788 #define is_binop(node)                        _is_binop(node)
789 #define is_Const(node)                        _is_Const(node)
790 #define is_Unknown(node)                      _is_Unknown(node)
791 #define is_Return(node)                       _is_Return(node)
792 #define is_Call(node)                         _is_Call(node)
793 #define is_Sel(node)                          _is_Sel(node)
794 #define is_Bad(node)                          _is_Bad(node)
795 #define is_no_Block(node)                     _is_no_Block(node)
796 #define is_Block(node)                        _is_Block(node)
797 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
798 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
799 #define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
800 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
801 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
802 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
803 #define Block_not_block_visited(node)         _Block_not_block_visited(node)
804 #define set_Block_dead(block)                 _set_Block_dead(block)
805 #define is_Block_dead(block)                  _is_Block_dead(block)
806 #define get_Const_tarval(node)                _get_Const_tarval(node)
807 #define classify_Const(node)                  _classify_Const(node)
808 #define is_irn_forking(node)                  _is_irn_forking(node)
809 #define get_irn_type(node)                    _get_irn_type(node)
810 #define get_irn_type_attr(node)               _get_irn_type_attr(node)
811 #define get_irn_entity_attr(node)             _get_irn_entity_attr(node)
812 #define is_irn_constlike(node)                _is_irn_constlike(node)
813 #define is_irn_keep(node)                     _is_irn_keep(node)
814 #define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
815 #define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
816
817 # endif /* _IRNODE_T_H_ */