df06379698fb7d68dfb1bff51e4e68bf8c6cb18e
[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, Michael Beck
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 #ifndef _IRNODE_T_H_
21 #define _IRNODE_T_H_
22
23 #include "firm_config.h"
24 #include "irnode.h"
25 #include "irop_t.h"
26 #include "irgraph_t.h"
27 #include "irflag_t.h"
28 #include "firm_common_t.h"
29 #include "irdom_t.h" /* For size of struct dom_info. */
30 #include "dbginfo.h"
31 #include "irloop.h"
32 #include "iredgekinds.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;              /**< The graph this block belongs to. */
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;        /**< An 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         ir_region *region;          /**< The immediate structural region this block belongs to. */
70
71         struct list_head succ_head; /**< A list head for all successor edges of a block. */
72 } block_attr;
73
74 /** Cond attributes. */
75 typedef struct {
76         cond_kind kind;           /**< flavor of Cond */
77         long default_proj;        /**< only for non-binary Conds: biggest Proj number, i.e. the one used for default. */
78         cond_jmp_predicate pred;  /**< only for binary Conds: The jump predication. */
79 } cond_attr;
80
81 /** Const attributes. */
82 typedef struct {
83         tarval  *tv;       /**< the target value */
84         ir_type *tp;       /**< the source type, for analyses. default: type_unknown. */
85 } const_attr;
86
87 /** SymConst attributes. */
88 typedef struct {
89         symconst_symbol sym;  // old tori
90         symconst_kind num;
91         ir_type *tp;       /**< the source type, for analyses. default: type_unknown. */
92 } symconst_attr;
93
94 /** Sel attributes. */
95 typedef struct {
96         ir_entity *ent;    /**< entity to select */
97 } sel_attr;
98
99 /** Exception attributes. */
100 typedef struct {
101         op_pin_state   pin_state;     /**< the pin state for operations that might generate a exception:
102                                                                          If it's know that no exception will be generated, could be set to
103                                                                          op_pin_state_floats. */
104 #if PRECISE_EXC_CONTEXT
105         struct ir_node **frag_arr;    /**< For Phi node construction in case of exception */
106 #endif
107 } except_attr;
108
109 /** Call attributes. */
110 typedef struct {
111         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
112         ir_type *cld_tp;              /**< type of called procedure */
113         ir_entity ** callee_arr;      /**< result of callee analysis */
114 } call_attr;
115
116 /** Alloc attributes. */
117 typedef struct {
118         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
119         ir_type *type;                /**< Type of the allocated object.  */
120         where_alloc where;            /**< stack, heap or other managed part of memory */
121 } alloc_attr;
122
123 /** Free attributes. */
124 typedef struct {
125         ir_type *type;                /**< Type of the allocated object.  */
126         where_alloc where;            /**< stack, heap or other managed part of memory */
127 } free_attr;
128
129 /** InstOf attributes. */
130 typedef struct {
131         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
132         ir_type *type;                /**< the type of which the object pointer must be */
133 } io_attr;
134
135 /** Filter attributes. */
136 typedef struct {
137         long proj;                 /**< contains the result position to project (Proj) */
138         ir_node ** in_cg;          /**< array with interprocedural predecessors (Phi) */
139         int *backedge;             /**< Field n set to true if pred n is backedge.
140                                         @todo Ev. replace by bitfield! */
141 } filter_attr;
142
143 /** EndReg/EndExcept attributes. */
144 typedef struct {
145         char dummy;
146 } end_attr;
147
148 /** CallBegin attributes. */
149 typedef struct {
150         ir_node * call;               /**< Associated Call-operation. */
151 } callbegin_attr;
152
153 /** Cast attributes. */
154 typedef struct {
155         ir_type *totype;              /**< Type of the casted node. */
156 } cast_attr;
157
158 /** Load attributes. */
159 typedef struct {
160         except_attr   exc;            /**< The exception attribute. MUST be the first one. */
161         ir_mode       *load_mode;     /**< The mode of this Load operation. */
162         ir_volatility volatility;     /**< The volatility of a Load/Store operation. */
163 } load_attr;
164
165 /** Store attributes. */
166 typedef struct {
167         except_attr   exc;            /**< the exception attribute. MUST be the first one. */
168         ir_volatility volatility;     /**< the volatility of a Store operation */
169 } store_attr;
170
171 typedef pn_Cmp confirm_attr;    /**< Attribute to hold compare operation */
172
173 /** CopyB attribute. */
174 typedef struct {
175         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
176         ir_type        *data_type;    /**< Type of the copied entity. */
177 } copyb_attr;
178
179 /** Bound attribute. */
180 typedef struct {
181         except_attr exc;              /**< The exception attribute. MUST be the first one. */
182 } bound_attr;
183
184 /** Conv attribute. */
185 typedef struct {
186         char           strict;        /**< If set, this is a strict Conv that cannot be removed. */
187 } conv_attr;
188
189 /** Some IR-nodes just have one attribute, these are stored here,
190    some have more. Their name is 'irnodename_attr' */
191 typedef union {
192         block_attr     block;   /**< For Block: Fields needed to construct it */
193         cond_attr      cond;    /**< For Cond. */
194         const_attr     con;     /**< For Const: contains the value of the constant and a type */
195         symconst_attr  symc;    /**< For SymConst. */
196         sel_attr       sel;     /**< For Sel. */
197         call_attr      call;    /**< For Call: pointer to the type of the method to call */
198         callbegin_attr callbegin; /**< For CallBegin */
199         alloc_attr     alloc;  /**< For Alloc. */
200         free_attr      free;   /**< For Free. */
201         io_attr        instof; /**< For InstOf */
202         cast_attr      cast;   /**< For Cast. */
203         load_attr      load;   /**< For Load. */
204         store_attr     store;  /**< For Store. */
205         int            phi0_pos;  /**< For Phi. Used to remember the value defined by
206                          this Phi node.  Needed when the Phi is completed
207                          to call get_r_internal_value to find the
208                          predecessors. If this attribute is set, the Phi
209                          node takes the role of the obsolete Phi0 node,
210                          therefore the name. */
211         int *phi_backedge;    /**< For Phi after construction.
212                                    Field n set to true if pred n is backedge.
213                                    @todo Ev. replace by bitfield! */
214         long           proj;          /**< For Proj: contains the result position to project */
215         confirm_attr   confirm_cmp;   /**< For Confirm: compare operation */
216         filter_attr    filter;        /**< For Filter */
217         end_attr       end;           /**< For EndReg, EndExcept */
218         except_attr    except;        /**< For Phi node construction in case of exceptions */
219         copyb_attr     copyb;         /**< For CopyB operation */
220         bound_attr     bound;         /**< For Bound operation */
221         conv_attr      conv;          /**< For Conv operation */
222 } attr;
223
224 /**
225 * Edge info to put into an irn.
226 */
227 typedef struct _irn_edge_kind_info_t {
228         struct list_head outs_head;  /**< The list of all outs. */
229         int out_count;               /**< Number of outs in the list. */
230 } irn_edge_info_t;
231
232 typedef irn_edge_info_t irn_edges_info_t[EDGE_KIND_LAST];
233
234 /**
235  * The common structure of an irnode.
236  * If the node has some attributes, they are stored in the attr field.
237  */
238 struct ir_node {
239         /* ------- Basics of the representation  ------- */
240         firm_kind kind;          /**< Distinguishes this node from others. */
241         ir_op *op;               /**< The Opcode of this node. */
242         ir_mode *mode;           /**< The Mode of this node. */
243         struct ir_node **in;     /**< The array of predecessors / operands. */
244         unsigned long visited;   /**< The visited counter for walks of the graph. */
245         unsigned node_idx;       /**< The node index of this node in its graph. */
246         void *link;              /**< To attach additional information to the node, e.g.
247                                       used while construction to link Phi0 nodes and
248                                       during optimization to link to nodes that
249                                       shall replace a node. */
250         /* ------- Fields for optimizations / analysis information ------- */
251         struct ir_node **out;    /**< @deprecated array of out edges. */
252         struct dbg_info *dbi;    /**< A pointer to information for debug support. */
253         /* ------- For debugging ------- */
254 #ifdef DEBUG_libfirm
255         int out_valid;
256         long node_nr;            /**< A unique node number for each node to make output
257                                       readable. */
258 #endif
259         /* ------- For analyses -------- */
260         ir_loop *loop;           /**< the loop the node is in. Access routines in irloop.h */
261 #ifdef DO_HEAPANALYSIS
262         struct abstval *av;      /**< Heapanalysis: The abstract value of this node. */
263         struct section *sec;     /**< Heapanalysis: The section of this node. */
264 #endif
265         struct ir_node **deps;   /**< Additional dependencies induced by state. */
266         irn_edges_info_t edge_info;  /**< Everlasting out edges. */
267         /* ------- Opcode depending fields -------- */
268         attr attr;               /**< The set of attributes of this node. Depends on opcode.
269                                       Must be last field of struct ir_node. */
270 };
271
272
273 /**
274  * Returns the array with the ins.  The content of the array may not be
275  * changed.
276  * Note that this function returns the whole in array including the
277  * block predecessor. So, it is NOT symmetric with set_irn_in().
278  */
279 ir_node     **get_irn_in            (const ir_node *node);
280
281 /** @{ */
282 /** access attributes directly */
283 const_attr    get_irn_const_attr    (ir_node *node);
284 long          get_irn_proj_attr     (ir_node *node);
285 alloc_attr    get_irn_alloc_attr    (ir_node *node);
286 free_attr     get_irn_free_attr     (ir_node *node);
287 symconst_attr get_irn_symconst_attr (ir_node *node);
288 ir_type      *get_irn_call_attr     (ir_node *node);
289 ir_type      *get_irn_funccall_attr (ir_node *node);
290 sel_attr      get_irn_sel_attr      (ir_node *node);
291 int           get_irn_phi_attr      (ir_node *node);
292 block_attr    get_irn_block_attr    (ir_node *node);
293 load_attr     get_irn_load_attr     (ir_node *node);
294 store_attr    get_irn_store_attr    (ir_node *node);
295 except_attr   get_irn_except_attr   (ir_node *node);
296 /** @} */
297
298 /**
299  * The amount of additional space for custom data to be allocated upon creating a new node.
300  */
301 extern unsigned firm_add_node_size;
302
303 /**
304  * Sets the get_type operation for an ir_op_ops.
305  *
306  * @param code   the opcode for the default operation
307  * @param ops    the operations initialized
308  *
309  * @return
310  *    The operations.
311  */
312 ir_op_ops *firm_set_default_get_type(ir_opcode code, ir_op_ops *ops);
313
314 /**
315  * Sets the get_type_attr operation for an ir_op_ops.
316  *
317  * @param code   the opcode for the default operation
318  * @param ops    the operations initialized
319  *
320  * @return
321  *    The operations.
322  */
323 ir_op_ops *firm_set_default_get_type_attr(ir_opcode code, ir_op_ops *ops);
324
325 /**
326  * Sets the get_entity_attr operation for an ir_op_ops.
327  *
328  * @param code   the opcode for the default operation
329  * @param ops    the operations initialized
330  *
331  * @return
332  *    The operations.
333  */
334 ir_op_ops *firm_set_default_get_entity_attr(ir_opcode code, ir_op_ops *ops);
335
336 /*-------------------------------------------------------------------*/
337 /*  These function are most used in libfirm.  Give them as static    */
338 /*  functions so they can be inlined.                                */
339 /*-------------------------------------------------------------------*/
340
341 /**
342  * Checks whether a pointer points to a ir node.
343  * Intern version for libFirm.
344  */
345 static INLINE int
346 _is_ir_node(const void *thing) {
347         return (get_kind(thing) == k_ir_node);
348 }
349
350 /**
351  * Gets the op of a node.
352  * Intern version for libFirm.
353  */
354 static INLINE ir_op *
355 _get_irn_op(const ir_node *node) {
356         assert(node);
357         return node->op;
358 }
359
360 static INLINE void
361 _set_irn_op(ir_node *node, ir_op *op) {
362         assert(node);
363         node->op = op;
364 }
365
366 /** Copies all attributes stored in the old node  to the new node.
367     Assumes both have the same opcode and sufficient size. */
368 static INLINE void
369 copy_node_attr(const ir_node *old_node, ir_node *new_node) {
370         ir_op *op = _get_irn_op(old_node);
371
372         /* must always exist */
373         op->ops.copy_attr(old_node, new_node);
374 }
375
376 /**
377  * Gets the opcode of a node.
378  * Intern version for libFirm.
379  */
380 static INLINE ir_opcode
381 _get_irn_opcode(const ir_node *node) {
382         assert(k_ir_node == get_kind(node));
383         assert(node->op);
384         return node->op->code;
385 }
386
387 /**
388  * Returns the number of predecessors without the block predecessor.
389  * Intern version for libFirm.
390  */
391 static INLINE int
392 _get_irn_intra_arity(const ir_node *node) {
393         assert(node);
394         return ARR_LEN(node->in) - 1;
395 }
396
397 /**
398  * Returns the number of predecessors without the block predecessor.
399  * Intern version for libFirm.
400  */
401 static INLINE int
402 _get_irn_inter_arity(const ir_node *node) {
403         assert(node);
404         if (_get_irn_op(node) == op_Filter) {
405                 assert(node->attr.filter.in_cg);
406                 return ARR_LEN(node->attr.filter.in_cg) - 1;
407         } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
408                 return ARR_LEN(node->attr.block.in_cg) - 1;
409         }
410         return _get_irn_intra_arity(node);
411 }
412
413 /**
414  * Returns the number of predecessors without the block predecessor.
415  * Intern version for libFirm.
416  */
417 extern int (*_get_irn_arity)(const ir_node *node);
418
419 /**
420  * Intern version for libFirm.
421  */
422 static INLINE ir_node *
423 _get_irn_intra_n(const ir_node *node, int n) {
424         ir_node *nn;
425
426         assert(node);
427         assert(-1 <= n && n < _get_irn_intra_arity(node));
428
429         nn = node->in[n + 1];
430         assert(nn != NULL);
431         if (!nn || (nn->op != op_Id)) return nn;
432
433         return (node->in[n + 1] = skip_Id(nn));
434 }
435
436 /**
437  * Intern version for libFirm.
438  */
439 static INLINE ir_node*
440 _get_irn_inter_n(const ir_node *node, int n) {
441         assert(node); assert(-1 <= n && n < _get_irn_inter_arity(node));
442
443         /* handle Filter and Block specially */
444         if (_get_irn_op(node) == op_Filter) {
445                 assert(node->attr.filter.in_cg);
446                 return (node->attr.filter.in_cg[n + 1] = skip_Id(node->attr.filter.in_cg[n + 1]));
447         } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
448                 return (node->attr.block.in_cg[n + 1] = skip_Id(node->attr.block.in_cg[n + 1]));
449         }
450
451         return _get_irn_intra_n(node, n);
452 }
453
454 /**
455  * Access to the predecessors of a node.
456  * To iterate over the operands iterate from 0 to i < get_irn_arity(),
457  * to iterate including the Block predecessor iterate from i = -1 to
458  * i < get_irn_arity.
459  * If it is a block, the entry -1 is NULL.
460  * Intern version for libFirm.
461  */
462 extern ir_node *(*_get_irn_n)(const ir_node *node, int n);
463
464 static INLINE int _get_irn_deps(const ir_node *node) {
465         return node->deps ? ARR_LEN(node->deps) : 0;
466 }
467
468 static INLINE ir_node *_get_irn_dep(const ir_node *node, int pos) {
469         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
470         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
471         return node->deps[pos];
472 }
473
474 static INLINE void
475 _set_irn_dep(ir_node *node, int pos, ir_node *dep) {
476         ir_node *old;
477
478         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
479         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
480         old = node->deps[pos];
481         node->deps[pos] = dep;
482         edges_notify_edge_kind(node, pos, dep, old, EDGE_KIND_DEP, get_irn_irg(node));
483 }
484
485
486 static INLINE int
487 _get_irn_ins_or_deps(const ir_node *irn) {
488         return _get_irn_deps(irn) + _get_irn_arity(irn);
489 }
490
491 static INLINE ir_node *
492 _get_irn_in_or_dep(const ir_node *irn, int pos) {
493         int n_in = get_irn_arity(irn);
494         return pos < n_in ? get_irn_n(irn, pos) : get_irn_dep(irn, pos - n_in);
495 }
496
497 /**
498  * Gets the mode of a node.
499  * Intern version for libFirm.
500  */
501 static INLINE ir_mode *
502 _get_irn_mode(const ir_node *node) {
503         assert(node);
504         return node->mode;
505 }
506
507 /**
508  * Sets the mode of a node.
509  * Intern version of libFirm.
510  */
511 static INLINE void
512 _set_irn_mode(ir_node *node, ir_mode *mode) {
513         assert(node);
514         node->mode = mode;
515 }
516
517 /**
518  * Gets the visited counter of a node.
519  * Intern version for libFirm.
520  */
521 static INLINE unsigned long
522 _get_irn_visited(const ir_node *node) {
523         assert(node);
524         return node->visited;
525 }
526
527 /**
528  * Sets the visited counter of a node.
529  * Intern version for libFirm.
530  */
531 static INLINE void
532 _set_irn_visited(ir_node *node, unsigned long visited) {
533         assert(node);
534         node->visited = visited;
535 }
536
537 /**
538  * Mark a node as visited in a graph.
539  * Intern version for libFirm.
540  */
541 static INLINE void
542 _mark_irn_visited(ir_node *node) {
543         assert(node);
544         node->visited = current_ir_graph->visited;
545 }
546
547 /**
548  * Returns non-zero if a node of was visited.
549  * Intern version for libFirm.
550  */
551 static INLINE int
552 _irn_visited(const ir_node *node) {
553         assert(node);
554         return (node->visited >= current_ir_graph->visited);
555 }
556
557 /**
558  * Returns non-zero if a node of was NOT visited.
559  * Intern version for libFirm.
560  */
561 static INLINE int
562 _irn_not_visited(const ir_node *node) {
563         assert(node);
564         return (node->visited < current_ir_graph->visited);
565 }
566
567 /**
568  * Sets the link of a node.
569  * Intern version of libFirm.
570  */
571 static INLINE void
572 _set_irn_link(ir_node *node, void *link) {
573   assert(node);
574         /* Link field is used for Phi construction and various optimizations
575            in iropt. */
576         assert(get_irg_phase_state(get_irn_irg(node)) != phase_building);
577
578         node->link = link;
579 }
580
581 /**
582  * Returns the link of a node.
583  * Intern version of libFirm.
584  */
585 static INLINE void *
586 _get_irn_link(const ir_node *node) {
587         assert(node && _is_ir_node(node));
588         return node->link;
589 }
590
591 /**
592  * Returns whether the node _always_ must be pinned.
593  * I.e., the node is not floating after global cse.
594  *
595  * Intern version of libFirm.
596  */
597 static INLINE op_pin_state
598 _get_irn_pinned(const ir_node *node) {
599         op_pin_state state;
600         assert(node && _is_ir_node(node));
601         /* Check opcode */
602         state = _get_op_pinned(_get_irn_op(node));
603
604         if (state >= op_pin_state_exc_pinned)
605                 return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned;
606         return state;
607 }
608
609 static INLINE op_pin_state
610 _is_irn_pinned_in_irg(const ir_node *node) {
611         if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats)
612                 return get_irn_pinned(node);
613         return op_pin_state_pinned;
614 }
615
616 static INLINE int
617 _is_unop(const ir_node *node) {
618         assert(node && _is_ir_node(node));
619         return (node->op->opar == oparity_unary);
620 }
621
622 static INLINE int
623 _is_binop(const ir_node *node) {
624         assert(node && _is_ir_node(node));
625         return (node->op->opar == oparity_binary);
626 }
627
628 static INLINE int
629 _is_Bad(const ir_node *node) {
630         assert(node);
631         return (_get_irn_op(node) == op_Bad);
632 }
633
634 static INLINE int
635 _is_NoMem(const ir_node *node) {
636         assert(node);
637         return (_get_irn_op(node) == op_NoMem);
638 }
639
640 static INLINE int
641 _is_Mod(const ir_node *node) {
642         assert(node);
643         return (_get_irn_op(node) == op_Mod);
644 }
645
646 static INLINE int
647 _is_Div(const ir_node *node) {
648         assert(node);
649         return (_get_irn_op(node) == op_Div);
650 }
651
652 static INLINE int
653 _is_DivMod(const ir_node *node) {
654         assert(node);
655         return (_get_irn_op(node) == op_DivMod);
656 }
657
658 static INLINE int
659 _is_Quot(const ir_node *node) {
660         assert(node);
661         return (_get_irn_op(node) == op_Quot);
662 }
663
664 static INLINE int
665 _is_Start(const ir_node *node) {
666         assert(node);
667         return (_get_irn_op(node) == op_Start);
668 }
669
670 static INLINE int
671 _is_End(const ir_node *node) {
672         assert(node);
673         return (_get_irn_op(node) == op_End);
674 }
675
676 static INLINE int
677 _is_Const(const ir_node *node) {
678         assert(node);
679         return (_get_irn_op(node) == op_Const);
680 }
681
682 static INLINE int
683 _is_CopyB(const ir_node *node) {
684         assert(node);
685         return (_get_irn_op(node) == op_CopyB);
686 }
687
688 static INLINE int
689 _is_Unknown(const ir_node *node) {
690         assert(node);
691         return (_get_irn_op(node) == op_Unknown);
692 }
693
694 static INLINE int
695 _is_Return(const ir_node *node) {
696         assert(node);
697         return (_get_irn_op(node) == op_Return);
698 }
699
700 static INLINE int
701 _is_Call(const ir_node *node) {
702         assert(node);
703         return (_get_irn_op(node) == op_Call);
704 }
705
706 static INLINE int
707 _is_Sel(const ir_node *node) {
708         assert(node);
709         return (_get_irn_op(node) == op_Sel);
710 }
711
712 static INLINE int
713 _is_Mux(const ir_node *node) {
714         assert(node);
715         if (node) {
716                 ir_op *op = _get_irn_op(node);
717                 return (op == op_Mux || ((op == op_Psi) && _get_irn_arity(node) == 3));
718         }
719         return 0;
720 }
721
722 static INLINE int
723 _is_Load(const ir_node *node) {
724         assert(node);
725         return (_get_irn_op(node) == op_Load);
726 }
727
728 static INLINE int
729 _is_Store(const ir_node *node) {
730         assert(node);
731         return (_get_irn_op(node) == op_Store);
732 }
733
734 static INLINE int
735 _is_Sync(const ir_node *node) {
736         assert(node);
737         return (_get_irn_op(node) == op_Sync);
738 }
739
740 static INLINE int
741 _is_Confirm(const ir_node *node) {
742         assert(node);
743         return (_get_irn_op(node) == op_Confirm);
744 }
745
746 static INLINE int
747 _is_Pin(const ir_node *node) {
748         assert(node);
749         return (_get_irn_op(node) == op_Pin);
750 }
751
752 static INLINE int
753 _is_SymConst(const ir_node *node) {
754         assert(node);
755         return (_get_irn_op(node) == op_SymConst);
756 }
757
758 static INLINE int
759 _is_Cond(const ir_node *node) {
760         assert(node);
761         return (_get_irn_op(node) == op_Cond);
762 }
763
764 static INLINE int
765 _is_Cmp(const ir_node *node) {
766         assert(node);
767         return (_get_irn_op(node) == op_Cmp);
768 }
769
770 static INLINE int
771 _is_Alloc(const ir_node *node) {
772         assert(node);
773         return (_get_irn_op(node) == op_Alloc);
774 }
775
776 static INLINE int
777 _is_Jmp(const ir_node *node) {
778         assert(node);
779         return (_get_irn_op(node) == op_Jmp);
780 }
781
782 static INLINE int
783 _is_Raise(const ir_node *node) {
784         assert(node);
785         return (_get_irn_op(node) == op_Raise);
786 }
787
788 static INLINE int
789 _is_no_Block(const ir_node *node) {
790         assert(node && _is_ir_node(node));
791         return (_get_irn_op(node) != op_Block);
792 }
793
794 static INLINE int
795 _is_Block(const ir_node *node) {
796         assert(node && _is_ir_node(node));
797         return (_get_irn_op(node) == op_Block);
798 }
799
800 static INLINE int
801 _get_Block_n_cfgpreds(const ir_node *node) {
802         assert(_is_Block(node));
803         return _get_irn_arity(node);
804 }
805
806 static INLINE ir_node *
807 _get_Block_cfgpred(ir_node *node, int pos) {
808         assert(0 <= pos && pos < get_irn_arity(node));
809         assert(_is_Block(node));
810         return _get_irn_n(node, pos);
811 }
812
813 /* Get the predecessor block.
814  *
815  *  Returns the block corresponding to the predecessor pos.
816  *
817  *  There are several ambiguities we resolve with this function:
818  *  - The direct predecessor can be a Proj, which is not pinned.
819  *    We walk from the predecessor to the next pinned node
820  *    (skip_Proj) and return the block that node is in.
821  *  - If we encounter the Bad node, this function does not return
822  *    Start, but the Bad node.
823  */
824 static INLINE ir_node  *
825 _get_Block_cfgpred_block(ir_node *node, int pos) {
826         ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
827         if (!is_Bad(res))
828                 res = get_nodes_block(res);
829         return res;
830 }
831
832 static INLINE unsigned long
833 _get_Block_block_visited(const ir_node *node) {
834         assert(node->op == op_Block);
835         return node->attr.block.block_visited;
836 }
837
838 static INLINE void
839 _set_Block_block_visited(ir_node *node, unsigned long visit) {
840         assert(node->op == op_Block);
841         node->attr.block.block_visited = visit;
842 }
843
844 /* For this current_ir_graph must be set. */
845 static INLINE void
846 _mark_Block_block_visited(ir_node *node) {
847         assert(node->op == op_Block);
848         node->attr.block.block_visited = get_irg_block_visited(current_ir_graph);
849 }
850
851 static INLINE int
852 _Block_not_block_visited(const ir_node *node) {
853         assert(node->op == op_Block);
854         return (node->attr.block.block_visited < get_irg_block_visited(current_ir_graph));
855 }
856
857 static INLINE int
858 _Block_block_visited(const ir_node *node) {
859         assert(node->op == op_Block);
860         return (node->attr.block.block_visited >= get_irg_block_visited(current_ir_graph));
861 }
862
863 static INLINE ir_node *
864 _set_Block_dead(ir_node *block) {
865         assert(_get_irn_op(block) == op_Block);
866         block->attr.block.dead = 1;
867         return block;
868 }
869
870 static INLINE int
871 _is_Block_dead(const ir_node *block) {
872         ir_op *op = _get_irn_op(block);
873
874         if (op == op_Bad)
875                 return 1;
876         else {
877                 assert(op == op_Block);
878                 return block->attr.block.dead;
879         }
880 }
881
882 static INLINE tarval *_get_Const_tarval(ir_node *node) {
883         assert(_get_irn_op(node) == op_Const);
884         return node->attr.con.tv;
885 }
886
887 static INLINE cnst_classify_t _classify_Const(ir_node *node) {
888         ir_op *op;
889         assert(_is_ir_node(node));
890
891         op = _get_irn_op(node);
892
893         if (op == op_Const)
894                 return classify_tarval(_get_Const_tarval(node));
895         else if(op == op_SymConst)
896                 return CNST_SYMCONST;
897
898         return CNST_NO_CONST;
899 }
900
901 static INLINE int _is_irn_forking(const ir_node *node) {
902         return is_op_forking(_get_irn_op(node));
903 }
904
905 static INLINE ir_type *_get_irn_type(ir_node *node) {
906         return _get_irn_op(node)->ops.get_type(node);
907 }
908
909 static INLINE ir_type *_get_irn_type_attr(ir_node *node) {
910         return _get_irn_op(node)->ops.get_type_attr(node);
911 }
912
913 static INLINE ir_entity *_get_irn_entity_attr(ir_node *node) {
914   return _get_irn_op(node)->ops.get_entity_attr(node);
915 }
916
917 static INLINE int _is_irn_constlike(const ir_node *node) {
918         return is_op_constlike(_get_irn_op(node));
919 }
920
921 static INLINE int _is_irn_always_opt(const ir_node *node) {
922         return is_op_always_opt(_get_irn_op(node));
923 }
924
925 static INLINE int _is_irn_keep(const ir_node *node) {
926         return is_op_keep(_get_irn_op(node));
927 }
928
929 static INLINE int _is_irn_start_block_placed(const ir_node *node) {
930         return is_op_start_block_placed(_get_irn_op(node));
931 }
932
933 static INLINE int _is_irn_machine_op(const ir_node *node) {
934         return is_op_machine(_get_irn_op(node));
935 }
936
937 static INLINE int _is_irn_machine_operand(const ir_node *node) {
938         return is_op_machine_operand(_get_irn_op(node));
939 }
940
941 static INLINE int _is_irn_machine_user(const ir_node *node, unsigned n) {
942         return is_op_machine_user(_get_irn_op(node), n);
943 }
944
945 static INLINE cond_jmp_predicate _get_Cond_jmp_pred(ir_node *node) {
946         assert(_get_irn_op(node) == op_Cond);
947         return node->attr.cond.pred;
948 }
949
950 static INLINE void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
951         assert(_get_irn_op(node) == op_Cond);
952         node->attr.cond.pred = pred;
953 }
954
955 static INLINE int _get_Psi_n_conds(ir_node *node) {
956         assert(_get_irn_op(node) == op_Psi);
957         return _get_irn_arity(node) >> 1;
958 }
959
960 static INLINE unsigned _get_irn_idx(const ir_node *node) {
961         return node->node_idx;
962 }
963
964 /* this section MUST contain all inline functions */
965 #define is_ir_node(thing)                     _is_ir_node(thing)
966 #define get_irn_intra_arity(node)             _get_irn_intra_arity(node)
967 #define get_irn_inter_arity(node)             _get_irn_inter_arity(node)
968 #define get_irn_arity(node)                   _get_irn_arity(node)
969 #define get_irn_intra_n(node, n)              _get_irn_intra_n(node, n)
970 #define get_irn_inter_n(node, n)              _get_irn_inter_n(node, n)
971 #define get_irn_n(node, n)                    _get_irn_n(node, n)
972 #define get_irn_mode(node)                    _get_irn_mode(node)
973 #define set_irn_mode(node, mode)              _set_irn_mode(node, mode)
974 #define get_irn_op(node)                      _get_irn_op(node)
975 #define set_irn_op(node, op)                  _set_irn_op(node, op)
976 #define get_irn_opcode(node)                  _get_irn_opcode(node)
977 #define get_irn_visited(node)                 _get_irn_visited(node)
978 #define set_irn_visited(node, v)              _set_irn_visited(node, v)
979 #define mark_irn_visited(node)                _mark_irn_visited(node)
980 #define irn_visited(node)                     _irn_visited(node)
981 #define irn_not_visited(node)                 _irn_not_visited(node)
982 #define set_irn_link(node, link)              _set_irn_link(node, link)
983 #define get_irn_link(node)                    _get_irn_link(node)
984 #define get_irn_pinned(node)                  _get_irn_pinned(node)
985 #define is_irn_pinned_in_irg(node)            _is_irn_pinned_in_irg(node)
986 #define is_unop(node)                         _is_unop(node)
987 #define is_binop(node)                        _is_binop(node)
988 #define is_Const(node)                        _is_Const(node)
989 #define is_Unknown(node)                      _is_Unknown(node)
990 #define is_Return(node)                       _is_Return(node)
991 #define is_Call(node)                         _is_Call(node)
992 #define is_Sel(node)                          _is_Sel(node)
993 #define is_Mux(node)                          _is_Mux(node)
994 #define is_Load(node)                         _is_Load(node)
995 #define is_Sync(node)                         _is_Sync(node)
996 #define is_Confirm(node)                      _is_Confirm(node)
997 #define is_Pin(node)                          _is_Pin(node)
998 #define is_SymConst(node)                     _is_SymConst(node)
999 #define is_Cond(node)                         _is_Cond(node)
1000 #define is_CopyB(node)                        _is_CopyB(node)
1001 #define is_Cmp(node)                          _is_Cmp(node)
1002 #define is_Alloc(node)                        _is_Alloc(node)
1003 #define is_Jmp(node)                          _is_Jmp(node)
1004 #define is_Raise(node)                        _is_Raise(node)
1005 #define is_Bad(node)                          _is_Bad(node)
1006 #define is_NoMem(node)                        _is_NoMem(node)
1007 #define is_Start(node)                        _is_Start(node)
1008 #define is_End(node)                          _is_End(node)
1009 #define is_Mod(node)                          _is_Mod(node)
1010 #define is_Div(node)                          _is_Div(node)
1011 #define is_DivMod(node)                       _is_DivMod(node)
1012 #define is_Quot(node)                         _is_Quot(node)
1013 #define is_no_Block(node)                     _is_no_Block(node)
1014 #define is_Block(node)                        _is_Block(node)
1015 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
1016 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
1017 #define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
1018 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
1019 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
1020 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
1021 #define Block_not_block_visited(node)         _Block_not_block_visited(node)
1022 #define Block_block_visited(node)             _Block_block_visited(node)
1023 #define set_Block_dead(block)                 _set_Block_dead(block)
1024 #define is_Block_dead(block)                  _is_Block_dead(block)
1025 #define get_Const_tarval(node)                _get_Const_tarval(node)
1026 #define classify_Const(node)                  _classify_Const(node)
1027 #define is_irn_forking(node)                  _is_irn_forking(node)
1028 #define get_irn_type(node)                    _get_irn_type(node)
1029 #define get_irn_type_attr(node)               _get_irn_type_attr(node)
1030 #define get_irn_entity_attr(node)             _get_irn_entity_attr(node)
1031 #define is_irn_constlike(node)                _is_irn_constlike(node)
1032 #define is_irn_always_opt(node)               _is_irn_always_opt(node)
1033 #define is_irn_keep(node)                     _is_irn_keep(node)
1034 #define is_irn_start_block_placed(node)       _is_irn_start_block_placed(node)
1035 #define is_irn_machine_op(node)               _is_irn_machine_op(node)
1036 #define is_irn_machine_operand(node)          _is_irn_machine_operand(node)
1037 #define is_irn_machine_user(node, n)          _is_irn_machine_user(node, n)
1038 #define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
1039 #define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
1040 #define get_Psi_n_conds(node)                 _get_Psi_n_conds(node)
1041 #define get_irn_idx(node)                     _get_irn_idx(node)
1042
1043 #define get_irn_deps(node)                    _get_irn_deps(node)
1044 #define set_irn_dep(node, pos, dep)           _set_irn_dep(node, pos, dep)
1045 #define get_irn_dep(node, pos)                _get_irn_dep(node, pos)
1046
1047 #define get_irn_ins_or_deps(node)             _get_irn_ins_or_deps(node)
1048 #define get_irn_in_or_dep(node, pos)          _get_irn_in_or_dep(node, pos)
1049
1050 #endif /* _IRNODE_T_H_ */