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