817071a7581075bed6ff1e6f7a438044433b23a3
[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 static INLINE void
359 _set_irn_op (ir_node *node, ir_op *op) {
360   assert (node);
361   node->op = op;
362 }
363
364 /** Copies all attributes stored in the old node  to the new node.
365     Assumes both have the same opcode and sufficient size. */
366 static INLINE void
367 copy_node_attr(const ir_node *old_node, ir_node *new_node) {
368   ir_op *op = _get_irn_op(old_node);
369
370   /* must always exist */
371   op->ops.copy_attr(old_node, new_node);
372 }
373
374 /**
375  * Gets the opcode of a node.
376  * Intern version for libFirm.
377  */
378 static INLINE opcode
379 _get_irn_opcode (const ir_node *node) {
380   assert (k_ir_node == get_kind(node));
381   assert (node->op);
382   return node->op->code;
383 }
384
385 /**
386  * Returns the number of predecessors without the block predecessor.
387  * Intern version for libFirm.
388  */
389 static INLINE int
390 _get_irn_intra_arity (const ir_node *node) {
391   assert(node);
392   return ARR_LEN(node->in) - 1;
393 }
394
395 /**
396  * Returns the number of predecessors without the block predecessor.
397  * Intern version for libFirm.
398  */
399 static INLINE int
400 _get_irn_inter_arity (const ir_node *node) {
401   assert(node);
402   if (_get_irn_op(node) == op_Filter) {
403     assert(node->attr.filter.in_cg);
404     return ARR_LEN(node->attr.filter.in_cg) - 1;
405   } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
406     return ARR_LEN(node->attr.block.in_cg) - 1;
407   }
408   return _get_irn_intra_arity(node);
409 }
410
411 /**
412  * Returns the number of predecessors without the block predecessor.
413  * Intern version for libFirm.
414  */
415 extern int (*_get_irn_arity)(const ir_node *node);
416
417 /**
418  * Intern version for libFirm.
419  */
420 static INLINE ir_node *
421 _get_irn_intra_n (const ir_node *node, int n) {
422   ir_node *nn;
423
424   assert(node); assert(-1 <= n && n < _get_irn_intra_arity(node));
425
426   nn = node->in[n + 1];
427   if (!nn || (nn->op != op_Id)) return nn;
428
429   return (node->in[n + 1] = skip_Id(nn));
430 }
431
432 /**
433  * Intern version for libFirm.
434  */
435 static INLINE ir_node*
436 _get_irn_inter_n (const ir_node *node, int n) {
437   assert(node); assert(-1 <= n && n < _get_irn_inter_arity(node));
438
439   /* handle Filter and Block specially */
440   if (_get_irn_op(node) == op_Filter) {
441     assert(node->attr.filter.in_cg);
442     return (node->attr.filter.in_cg[n + 1] = skip_Id(node->attr.filter.in_cg[n + 1]));
443   } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
444     return (node->attr.block.in_cg[n + 1] = skip_Id(node->attr.block.in_cg[n + 1]));
445   }
446
447   return _get_irn_intra_n (node, n);
448 }
449
450 /**
451  * Access to the predecessors of a node.
452  * To iterate over the operands iterate from 0 to i < get_irn_arity(),
453  * to iterate including the Block predecessor iterate from i = -1 to
454  * i < get_irn_arity.
455  * If it is a block, the entry -1 is NULL.
456  * Intern version for libFirm.
457  */
458 extern ir_node *(*_get_irn_n)(const ir_node *node, int n);
459
460 /**
461  * Gets the mode of a node.
462  * Intern version for libFirm.
463  */
464 static INLINE ir_mode *
465 _get_irn_mode (const ir_node *node)
466 {
467   assert (node);
468   return node->mode;
469 }
470
471 /**
472  * Sets the mode of a node.
473  * Intern version of libFirm.
474  */
475 static INLINE void
476 _set_irn_mode (ir_node *node, ir_mode *mode)
477 {
478   assert (node);
479   node->mode = mode;
480 }
481
482 /**
483  * Gets the visited counter of a node.
484  * Intern version for libFirm.
485  */
486 static INLINE unsigned long
487 _get_irn_visited (const ir_node *node)
488 {
489   assert (node);
490   return node->visited;
491 }
492
493 /**
494  * Sets the visited counter of a node.
495  * Intern version for libFirm.
496  */
497 static INLINE void
498 _set_irn_visited (ir_node *node, unsigned long visited)
499 {
500   assert (node);
501   node->visited = visited;
502 }
503
504 /**
505  * Mark a node as visited in a graph.
506  * Intern version for libFirm.
507  */
508 static INLINE void
509 _mark_irn_visited (ir_node *node) {
510   assert (node);
511   node->visited = current_ir_graph->visited;
512 }
513
514 /**
515  * Returns non-zero if a node of was visited.
516  * Intern version for libFirm.
517  */
518 static INLINE int
519 _irn_visited(const ir_node *node) {
520   assert (node);
521   return (node->visited >= current_ir_graph->visited);
522 }
523
524 /**
525  * Returns non-zero if a node of was NOT visited.
526  * Intern version for libFirm.
527  */
528 static INLINE int
529 _irn_not_visited(const ir_node *node) {
530   assert (node);
531   return (node->visited < current_ir_graph->visited);
532 }
533
534 /**
535  * Sets the link of a node.
536  * Intern version of libFirm.
537  */
538 static INLINE void
539 _set_irn_link(ir_node *node, void *link) {
540   assert (node);
541   /* Link field is used for Phi construction and various optimizations
542      in iropt. */
543   assert(get_irg_phase_state(get_irn_irg(node)) != phase_building);
544
545   node->link = link;
546 }
547
548 /**
549  * Returns the link of a node.
550  * Intern version of libFirm.
551  */
552 static INLINE void *
553 _get_irn_link(const ir_node *node) {
554   assert (node && _is_ir_node(node));
555   return node->link;
556 }
557
558 /**
559  * Returns whether the node _always_ must be pinned.
560  * I.e., the node is not floating after global cse.
561  *
562  * Intern version of libFirm.
563  */
564 static INLINE op_pin_state
565 _get_irn_pinned(const ir_node *node) {
566   op_pin_state state;
567   assert(node && _is_ir_node(node));
568   /* Check opcode */
569   state = _get_op_pinned(_get_irn_op(node));
570
571   if (state >= op_pin_state_exc_pinned)
572     return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned;
573   return state;
574 }
575
576 static INLINE op_pin_state
577 _is_irn_pinned_in_irg(const ir_node *node) {
578   if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats)
579     return get_irn_pinned(node);
580   return op_pin_state_pinned;
581 }
582
583 static INLINE int
584 _is_unop(const ir_node *node) {
585   assert(node && _is_ir_node(node));
586   return (node->op->opar == oparity_unary);
587 }
588
589 static INLINE int
590 _is_binop(const ir_node *node) {
591   assert(node && _is_ir_node(node));
592   return (node->op->opar == oparity_binary);
593 }
594
595 static INLINE int
596 _is_Bad(const ir_node *node) {
597   assert(node);
598   return (node && _get_irn_op(node) == op_Bad);
599 }
600
601 static INLINE int
602 _is_Const(const ir_node *node) {
603   assert(node);
604   return (node && _get_irn_op(node) == op_Const);
605 }
606
607 static INLINE int
608 _is_Unknown (const ir_node *node) {
609   assert(node);
610   return (node && _get_irn_op(node) == op_Unknown);
611 }
612
613 static INLINE int
614 _is_Return (const ir_node *node) {
615   assert(node);
616   return (node && _get_irn_op(node) == op_Return);
617 }
618
619 static INLINE int
620 _is_Call (const ir_node *node) {
621   assert(node);
622   return (node && _get_irn_op(node) == op_Call);
623 }
624
625 static INLINE int
626 _is_Sel (const ir_node *node) {
627   assert(node);
628   return (node && _get_irn_op(node) == op_Sel);
629 }
630
631 static INLINE int
632 _is_Mux (const ir_node *node) {
633   assert(node);
634   if (node) {
635     ir_op *op = _get_irn_op(node);
636     return (op == op_Mux || ((op == op_Psi) && _get_irn_arity(node) == 3));
637   }
638   return 0;
639 }
640
641 static INLINE int
642 _is_no_Block(const ir_node *node) {
643   assert(node && _is_ir_node(node));
644   return (_get_irn_op(node) != op_Block);
645 }
646
647 static INLINE int
648 _is_Block(const ir_node *node) {
649   assert(node && _is_ir_node(node));
650   return (_get_irn_op(node) == op_Block);
651 }
652
653 static INLINE int
654 _get_Block_n_cfgpreds (ir_node *node) {
655   assert(_is_Block(node));
656   return _get_irn_arity(node);
657 }
658
659 static INLINE ir_node *
660 _get_Block_cfgpred (ir_node *node, int pos) {
661   assert(0 <= pos && pos < get_irn_arity(node));
662   assert(_is_Block(node));
663   return _get_irn_n(node, pos);
664 }
665
666 /* Get the predecessor block.
667  *
668  *  Returns the block corresponding to the predecessor pos.
669  *
670  *  There are several ambiguities we resolve with this function:
671  *  - The direct predecessor can be a Proj, which is not pinned.
672  *    We walk from the predecessor to the next pinned node
673  *    (skip_Proj) and return the block that node is in.
674  *  - If we encounter the Bad node, this function does not return
675  *    Start, but the Bad node.
676  */
677 static INLINE ir_node  *
678 _get_Block_cfgpred_block(ir_node *node, int pos) {
679   ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
680   if (!is_Bad(res))
681     res = get_nodes_block(res);
682   return res;
683 }
684
685 static INLINE unsigned long
686 _get_Block_block_visited (ir_node *node) {
687   assert (node->op == op_Block);
688   return node->attr.block.block_visited;
689 }
690
691 static INLINE void
692 _set_Block_block_visited (ir_node *node, unsigned long visit) {
693   assert (node->op == op_Block);
694   node->attr.block.block_visited = visit;
695 }
696
697 /* For this current_ir_graph must be set. */
698 static INLINE void
699 _mark_Block_block_visited (ir_node *node) {
700   assert (node->op == op_Block);
701   node->attr.block.block_visited = get_irg_block_visited(current_ir_graph);
702 }
703
704 static INLINE int
705 _Block_not_block_visited(ir_node *node) {
706   assert (node->op == op_Block);
707   return (node->attr.block.block_visited < get_irg_block_visited(current_ir_graph));
708 }
709
710 static INLINE ir_node *
711 _set_Block_dead(ir_node *block) {
712   assert(_get_irn_op(block) == op_Block);
713   block->attr.block.dead = 1;
714   return block;
715 }
716
717 static INLINE int
718 _is_Block_dead(const ir_node *block) {
719   ir_op * op = _get_irn_op(block);
720
721   if (op == op_Bad)
722     return 1;
723   else {
724     assert(op == op_Block);
725     return block->attr.block.dead;
726   }
727 }
728
729 static INLINE tarval *_get_Const_tarval (ir_node *node) {
730   assert (_get_irn_op(node) == op_Const);
731   return node->attr.con.tv;
732 }
733
734 static INLINE cnst_classify_t _classify_Const(ir_node *node) {
735   ir_op *op;
736   assert(_is_ir_node(node));
737
738   op = _get_irn_op(node);
739
740   if(op == op_Const)
741     return classify_tarval(_get_Const_tarval(node));
742   else if(op == op_SymConst)
743     return CNST_SYMCONST;
744
745   return CNST_NO_CONST;
746 }
747
748 static INLINE int _is_irn_forking(const ir_node *node) {
749   return is_op_forking(_get_irn_op(node));
750 }
751
752 static INLINE ir_type *_get_irn_type(ir_node *node) {
753   return _get_irn_op(node)->ops.get_type(node);
754 }
755
756 static INLINE ir_type *_get_irn_type_attr(ir_node *node) {
757   return _get_irn_op(node)->ops.get_type_attr(node);
758 }
759
760 static INLINE entity *_get_irn_entity_attr(ir_node *node) {
761   return _get_irn_op(node)->ops.get_entity_attr(node);
762 }
763
764 static INLINE int _is_irn_constlike(const ir_node *node) {
765   return is_op_constlike(_get_irn_op(node));
766 }
767
768 static INLINE int _is_irn_keep(const ir_node *node) {
769   return is_op_keep(_get_irn_op(node));
770 }
771
772 static INLINE int _is_irn_machine_op(const ir_node *node) {
773   return is_op_machine(_get_irn_op(node));
774 }
775
776 static INLINE int _is_irn_machine_operand(const ir_node *node) {
777   return is_op_machine_operand(_get_irn_op(node));
778 }
779
780 static INLINE int _is_irn_machine_user(const ir_node *node, unsigned n) {
781   return is_op_machine_user(_get_irn_op(node), n);
782 }
783
784 static INLINE cond_jmp_predicate _get_Cond_jmp_pred(ir_node *node) {
785   assert (_get_irn_op(node) == op_Cond);
786   return node->attr.c.pred;
787 }
788
789 static INLINE void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
790   assert (_get_irn_op(node) == op_Cond);
791   node->attr.c.pred = pred;
792 }
793
794 static INLINE int _get_Psi_n_conds(ir_node *node) {
795   assert(_get_irn_op(node) == op_Psi);
796   return _get_irn_arity(node) >> 1;
797 }
798
799 /* this section MUST contain all inline functions */
800 #define is_ir_node(thing)                     _is_ir_node(thing)
801 #define get_irn_intra_arity(node)             _get_irn_intra_arity(node)
802 #define get_irn_inter_arity(node)             _get_irn_inter_arity(node)
803 #define get_irn_arity(node)                   _get_irn_arity(node)
804 #define get_irn_intra_n(node, n)              _get_irn_intra_n(node, n)
805 #define get_irn_inter_n(node, n)              _get_irn_inter_n(node, n)
806 #define get_irn_n(node, n)                    _get_irn_n(node, n)
807 #define get_irn_mode(node)                    _get_irn_mode(node)
808 #define set_irn_mode(node, mode)              _set_irn_mode(node, mode)
809 #define get_irn_op(node)                      _get_irn_op(node)
810 #define set_irn_op(node, op)                  _set_irn_op(node, op)
811 #define get_irn_opcode(node)                  _get_irn_opcode(node)
812 #define get_irn_visited(node)                 _get_irn_visited(node)
813 #define set_irn_visited(node, v)              _set_irn_visited(node, v)
814 #define mark_irn_visited(node)                _mark_irn_visited(node)
815 #define irn_visited(node)                     _irn_visited(node)
816 #define irn_not_visited(node)                 _irn_not_visited(node)
817 #define set_irn_link(node, link)              _set_irn_link(node, link)
818 #define get_irn_link(node)                    _get_irn_link(node)
819 #define get_irn_pinned(node)                  _get_irn_pinned(node)
820 #define is_irn_pinned_in_irg(node)            _is_irn_pinned_in_irg(node)
821 #define is_unop(node)                         _is_unop(node)
822 #define is_binop(node)                        _is_binop(node)
823 #define is_Const(node)                        _is_Const(node)
824 #define is_Unknown(node)                      _is_Unknown(node)
825 #define is_Return(node)                       _is_Return(node)
826 #define is_Call(node)                         _is_Call(node)
827 #define is_Sel(node)                          _is_Sel(node)
828 #define is_Mux(node)                          _is_Mux(node)
829 #define is_Bad(node)                          _is_Bad(node)
830 #define is_no_Block(node)                     _is_no_Block(node)
831 #define is_Block(node)                        _is_Block(node)
832 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
833 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
834 #define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
835 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
836 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
837 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
838 #define Block_not_block_visited(node)         _Block_not_block_visited(node)
839 #define set_Block_dead(block)                 _set_Block_dead(block)
840 #define is_Block_dead(block)                  _is_Block_dead(block)
841 #define get_Const_tarval(node)                _get_Const_tarval(node)
842 #define classify_Const(node)                  _classify_Const(node)
843 #define is_irn_forking(node)                  _is_irn_forking(node)
844 #define get_irn_type(node)                    _get_irn_type(node)
845 #define get_irn_type_attr(node)               _get_irn_type_attr(node)
846 #define get_irn_entity_attr(node)             _get_irn_entity_attr(node)
847 #define is_irn_constlike(node)                _is_irn_constlike(node)
848 #define is_irn_keep(node)                     _is_irn_keep(node)
849 #define is_irn_machine_op(node)               _is_irn_machine_op(node)
850 #define is_irn_machine_operand(node)          _is_irn_machine_operand(node)
851 #define is_irn_machine_user(node, n)          _is_irn_machine_user(node, n)
852 #define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
853 #define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
854 #define get_Psi_n_conds(node)                 _get_Psi_n_conds(node)
855
856 # endif /* _IRNODE_T_H_ */