700e0aafc29f8712e72874b38f0f35eb052d81d4
[libfirm] / ir / ir / irnode_t.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Representation of an intermediate operation -- private header.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #ifndef FIRM_IR_IRNODE_T_H
27 #define FIRM_IR_IRNODE_T_H
28
29 #include "irtypes.h"
30 #include "irnode.h"
31 #include "irop_t.h"
32 #include "irgraph_t.h"
33 #include "irflag_t.h"
34 #include "array.h"
35
36 /**
37  * Returns the array with the ins.  The content of the array may not be
38  * changed.
39  * Note that this function returns the whole in array including the
40  * block predecessor. So, it is NOT symmetric with set_irn_in().
41  */
42 ir_node     **get_irn_in            (const ir_node *node);
43
44 /** @{ */
45 /** access attributes directly */
46 const_attr    *get_irn_const_attr    (ir_node *node);
47 long          get_irn_proj_attr      (ir_node *node);
48 alloc_attr    *get_irn_alloc_attr    (ir_node *node);
49 free_attr     *get_irn_free_attr     (ir_node *node);
50 symconst_attr *get_irn_symconst_attr (ir_node *node);
51 call_attr     *get_irn_call_attr     (ir_node *node);
52 sel_attr      *get_irn_sel_attr      (ir_node *node);
53 phi_attr      *get_irn_phi_attr      (ir_node *node);
54 block_attr    *get_irn_block_attr    (ir_node *node);
55 load_attr     *get_irn_load_attr     (ir_node *node);
56 store_attr    *get_irn_store_attr    (ir_node *node);
57 except_attr   *get_irn_except_attr   (ir_node *node);
58 divmod_attr   *get_irn_divmod_attr   (ir_node *node);
59 builtin_attr  *get_irn_builtin_attr  (ir_node *node);
60 /** @} */
61
62 /**
63  * The amount of additional space for custom data to be allocated upon creating a new node.
64  */
65 extern unsigned firm_add_node_size;
66
67 /**
68  * Sets the get_type operation for an ir_op_ops.
69  *
70  * @param code   the opcode for the default operation
71  * @param ops    the operations initialized
72  *
73  * @return
74  *    The operations.
75  */
76 ir_op_ops *firm_set_default_get_type(ir_opcode code, ir_op_ops *ops);
77
78 /**
79  * Sets the get_type_attr operation for an ir_op_ops.
80  *
81  * @param code   the opcode for the default operation
82  * @param ops    the operations initialized
83  *
84  * @return
85  *    The operations.
86  */
87 ir_op_ops *firm_set_default_get_type_attr(ir_opcode code, ir_op_ops *ops);
88
89 /**
90  * Sets the get_entity_attr operation for an ir_op_ops.
91  *
92  * @param code   the opcode for the default operation
93  * @param ops    the operations initialized
94  *
95  * @return
96  *    The operations.
97  */
98 ir_op_ops *firm_set_default_get_entity_attr(ir_opcode code, ir_op_ops *ops);
99
100 /**
101  * Returns an array with the predecessors of the Block. Depending on
102  * the implementation of the graph data structure this can be a copy of
103  * the internal representation of predecessors as well as the internal
104  * array itself. Therefore writing to this array might obstruct the IR.
105  */
106 ir_node **get_Block_cfgpred_arr(ir_node *node);
107
108 /*-------------------------------------------------------------------*/
109 /*  These function are most used in libfirm.  Give them as static    */
110 /*  functions so they can be inlined.                                */
111 /*-------------------------------------------------------------------*/
112
113 /**
114  * Checks whether a pointer points to a ir node.
115  * Intern version for libFirm.
116  */
117 static inline int _is_ir_node(const void *thing)
118 {
119         return (get_kind(thing) == k_ir_node);
120 }
121
122 /**
123  * Gets the op of a node.
124  * Intern version for libFirm.
125  */
126 static inline ir_op *_get_irn_op(const ir_node *node)
127 {
128         assert(node);
129         return node->op;
130 }
131
132 static inline void _set_irn_op(ir_node *node, ir_op *op)
133 {
134         assert(node);
135         node->op = op;
136 }
137
138 /** Copies all attributes stored in the old node  to the new node.
139     Assumes both have the same opcode and sufficient size. */
140 static inline void _copy_node_attr(const ir_node *old_node, ir_node *new_node)
141 {
142         ir_op *op = _get_irn_op(old_node);
143
144         /* must always exist */
145         op->ops.copy_attr(old_node, new_node);
146 }
147
148 /**
149  * Gets the opcode of a node.
150  * Intern version for libFirm.
151  */
152 static inline unsigned _get_irn_opcode(const ir_node *node)
153 {
154         assert(k_ir_node == get_kind(node));
155         assert(node->op);
156         return node->op->code;
157 }
158
159 /**
160  * Returns the number of predecessors without the block predecessor.
161  * Intern version for libFirm.
162  */
163 static inline int _get_irn_intra_arity(const ir_node *node)
164 {
165         assert(node);
166         return ARR_LEN(node->in) - 1;
167 }
168
169 /**
170  * Returns the number of predecessors without the block predecessor.
171  * Intern version for libFirm.
172  */
173 static inline int _get_irn_inter_arity(const ir_node *node)
174 {
175         assert(node);
176         if (_get_irn_op(node) == op_Filter) {
177                 assert(node->attr.filter.in_cg);
178                 return ARR_LEN(node->attr.filter.in_cg) - 1;
179         } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
180                 return ARR_LEN(node->attr.block.in_cg) - 1;
181         }
182         return _get_irn_intra_arity(node);
183 }
184
185 #ifdef INTERPROCEDURAL_VIEW
186 /**
187  * Returns the number of predecessors without the block predecessor.
188  * Intern version for libFirm.
189  */
190 extern int (*_get_irn_arity)(const ir_node *node);
191
192 #else
193
194 #define _get_irn_arity(n) _get_irn_intra_arity(n)
195 #endif
196
197 /**
198  * Intern version for libFirm.
199  */
200 static inline ir_node *_get_irn_intra_n(const ir_node *node, int n)
201 {
202         ir_node *nn;
203
204         assert(node);
205         assert(-1 <= n && n < _get_irn_intra_arity(node));
206
207         nn = node->in[n + 1];
208         if (nn == NULL) {
209                 /* only block and Anchor inputs are allowed to be NULL */
210                 assert((node->op == op_Anchor || n == -1) && "NULL input of a node");
211                 return NULL;
212         }
213         if (nn->op != op_Id) return nn;
214
215         return (node->in[n + 1] = skip_Id(nn));
216 }
217
218 /**
219  * Intern version for libFirm.
220  */
221 static inline ir_node *_get_irn_inter_n(const ir_node *node, int n)
222 {
223         assert(node); assert(-1 <= n && n < _get_irn_inter_arity(node));
224
225         /* handle Filter and Block specially */
226         if (_get_irn_op(node) == op_Filter) {
227                 assert(node->attr.filter.in_cg);
228                 return (node->attr.filter.in_cg[n + 1] = skip_Id(node->attr.filter.in_cg[n + 1]));
229         } else if (_get_irn_op(node) == op_Block && node->attr.block.in_cg) {
230                 return (node->attr.block.in_cg[n + 1] = skip_Id(node->attr.block.in_cg[n + 1]));
231         }
232
233         return _get_irn_intra_n(node, n);
234 }
235
236 /**
237  * returns a hash value for a node
238  */
239 static inline unsigned hash_irn(const ir_node *node)
240 {
241         return (unsigned) get_irn_idx(node);
242 }
243
244 /**
245  * Access to the predecessors of a node.
246  * To iterate over the operands iterate from 0 to i < get_irn_arity(),
247  * to iterate including the Block predecessor iterate from i = -1 to
248  * i < get_irn_arity.
249  * If it is a block, the entry -1 is NULL.
250  * Intern version for libFirm.
251  */
252 #ifdef INTERPROCEDURAL_VIEW
253 extern ir_node *(*_get_irn_n)(const ir_node *node, int n);
254 #else
255 #define _get_irn_n(n,i) _get_irn_intra_n(n,i)
256 #endif
257
258 static inline int _get_irn_deps(const ir_node *node) {
259         return node->deps ? ARR_LEN(node->deps) : 0;
260 }
261
262 static inline ir_node *_get_irn_dep(const ir_node *node, int pos) {
263         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
264         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
265         return node->deps[pos];
266 }
267
268 static inline void _set_irn_dep(ir_node *node, int pos, ir_node *dep)
269 {
270         ir_node *old;
271
272         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
273         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
274         old = node->deps[pos];
275         node->deps[pos] = dep;
276         edges_notify_edge_kind(node, pos, dep, old, EDGE_KIND_DEP, get_irn_irg(node));
277 }
278
279
280 static inline int _get_irn_ins_or_deps(const ir_node *irn)
281 {
282         return _get_irn_deps(irn) + _get_irn_arity(irn);
283 }
284
285 static inline ir_node *_get_irn_in_or_dep(const ir_node *irn, int pos)
286 {
287         int n_in = get_irn_arity(irn);
288         return pos < n_in ? get_irn_n(irn, pos) : get_irn_dep(irn, pos - n_in);
289 }
290
291 /**
292  * Gets the mode of a node.
293  * Intern version for libFirm.
294  */
295 static inline ir_mode *_get_irn_mode(const ir_node *node)
296 {
297         assert(node);
298         return node->mode;
299 }
300
301 /**
302  * Sets the mode of a node.
303  * Intern version of libFirm.
304  */
305 static inline void _set_irn_mode(ir_node *node, ir_mode *mode)
306 {
307         assert(node);
308         node->mode = mode;
309 }
310
311 /**
312  * Gets the visited counter of a node.
313  * Intern version for libFirm.
314  */
315 static inline ir_visited_t _get_irn_visited(const ir_node *node)
316 {
317         assert(node);
318         return node->visited;
319 }
320
321 /**
322  * Sets the visited counter of a node.
323  * Intern version for libFirm.
324  */
325 static inline void _set_irn_visited(ir_node *node, ir_visited_t visited)
326 {
327         assert(node);
328         node->visited = visited;
329 }
330
331 /**
332  * Mark a node as visited in a graph.
333  * Intern version for libFirm.
334  */
335 static inline void _mark_irn_visited(ir_node *node)
336 {
337         assert(node);
338         node->visited = current_ir_graph->visited;
339 }
340
341 /**
342  * Returns non-zero if a node of was visited.
343  * Intern version for libFirm.
344  */
345 static inline int _irn_visited(const ir_node *node)
346 {
347         assert(node);
348         return (node->visited >= current_ir_graph->visited);
349 }
350
351 static inline int _irn_visited_else_mark(ir_node *node)
352 {
353         if (_irn_visited(node))
354                 return 1;
355         _mark_irn_visited(node);
356         return 0;
357 }
358
359 /**
360  * Sets the link of a node.
361  * Intern version of libFirm.
362  */
363 static inline void _set_irn_link(ir_node *node, void *link)
364 {
365         assert(node);
366         node->link = link;
367 }
368
369 /**
370  * Returns the link of a node.
371  * Intern version of libFirm.
372  */
373 static inline void *_get_irn_link(const ir_node *node)
374 {
375         assert(node && _is_ir_node(node));
376         return node->link;
377 }
378
379 /**
380  * Returns whether the node _always_ must be pinned.
381  * I.e., the node is not floating after global cse.
382  *
383  * Intern version of libFirm.
384  */
385 static inline op_pin_state _get_irn_pinned(const ir_node *node)
386 {
387         op_pin_state state;
388         assert(node && _is_ir_node(node));
389         /* Check opcode */
390         state = _get_op_pinned(_get_irn_op(node));
391
392         if (state >= op_pin_state_exc_pinned)
393                 return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned;
394         return state;
395 }
396
397 static inline op_pin_state _is_irn_pinned_in_irg(const ir_node *node)
398 {
399         if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats)
400                 return get_irn_pinned(node);
401         return op_pin_state_pinned;
402 }
403
404 /* include generated code */
405 #include "gen_irnode.h"
406
407 static inline int _is_unop(const ir_node *node)
408 {
409         assert(node && _is_ir_node(node));
410         return (node->op->opar == oparity_unary);
411 }
412
413 static inline int _is_binop(const ir_node *node)
414 {
415         assert(node && _is_ir_node(node));
416         return (node->op->opar == oparity_binary);
417 }
418
419 static inline int _is_Phi(const ir_node *node)
420 {
421         ir_op *op;
422         assert(node);
423
424         op = get_irn_op(node);
425 #ifdef INTERPROCEDURAL_VIEW
426         if (op == op_Filter) return get_interprocedural_view();
427 #endif
428         return (op == op_Phi);
429 }
430
431 static inline int _is_Proj(const ir_node *node)
432 {
433         ir_op *op;
434         assert(node);
435
436         op = _get_irn_op(node);
437 #ifdef INTERPROCEDURAL_VIEW
438         if (op == op_Filter) return !get_interprocedural_view();
439 #endif
440         return (op == op_Proj);
441 }
442
443 static inline int _is_strictConv(const ir_node *node)
444 {
445         return _is_Conv(node) && get_Conv_strict(node);
446 }
447
448 static inline int _is_SymConst_addr_ent(const ir_node *node)
449 {
450         return is_SymConst(node) && get_SymConst_kind(node) == symconst_addr_ent;
451 }
452
453 static inline int _is_no_Block(const ir_node *node)
454 {
455         assert(node && _is_ir_node(node));
456         return (_get_irn_op(node) != op_Block);
457 }
458
459 static inline int _get_Block_n_cfgpreds(const ir_node *node)
460 {
461         assert(_is_Block(node));
462         return _get_irn_arity(node);
463 }
464
465 static inline ir_node *_get_Block_cfgpred(const ir_node *node, int pos)
466 {
467         assert(0 <= pos && pos < get_irn_arity(node));
468         assert(_is_Block(node));
469         return _get_irn_n(node, pos);
470 }
471
472 /* Get the predecessor block.
473  *
474  *  Returns the block corresponding to the predecessor pos.
475  *
476  *  There are several ambiguities we resolve with this function:
477  *  - The direct predecessor can be a Proj, which is not pinned.
478  *    We walk from the predecessor to the next pinned node
479  *    (skip_Proj) and return the block that node is in.
480  *  - If we encounter the Bad node, this function does not return
481  *    the Start block, but the Bad node.
482  */
483 static inline ir_node  *_get_Block_cfgpred_block(const ir_node *node, int pos)
484 {
485         ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
486         if (!is_Bad(res))
487                 res = get_nodes_block(res);
488         return res;
489 }
490
491 static inline ir_visited_t _get_Block_block_visited(const ir_node *node)
492 {
493         assert(node->op == op_Block);
494         return node->attr.block.block_visited;
495 }
496
497 static inline void _set_Block_block_visited(ir_node *node, ir_visited_t visit)
498 {
499         assert(node->op == op_Block);
500         node->attr.block.block_visited = visit;
501 }
502
503 /* For this current_ir_graph must be set. */
504 static inline void _mark_Block_block_visited(ir_node *node)
505 {
506         assert(node->op == op_Block);
507         node->attr.block.block_visited = get_irg_block_visited(current_ir_graph);
508 }
509
510 static inline int _Block_block_visited(const ir_node *node)
511 {
512         assert(node->op == op_Block);
513         return (node->attr.block.block_visited >= get_irg_block_visited(current_ir_graph));
514 }
515
516 static inline ir_node *_set_Block_dead(ir_node *block)
517 {
518         assert(_get_irn_op(block) == op_Block);
519         block->attr.block.dom.dom_depth = -1;
520         block->attr.block.is_dead = 1;
521         return block;
522 }
523
524 static inline int _is_Block_dead(const ir_node *block)
525 {
526         ir_op *op = _get_irn_op(block);
527
528         if (op == op_Bad)
529                 return 1;
530         else {
531                 assert(op == op_Block);
532                 return block->attr.block.is_dead;
533         }
534 }
535
536 static inline ir_graph *_get_Block_irg(const ir_node *block)
537 {
538         assert(is_Block(block) || is_Bad(block));
539         return block->attr.irg.irg;
540 }
541
542 static inline tarval *_get_Const_tarval(const ir_node *node) {
543         assert(_get_irn_op(node) == op_Const);
544         return node->attr.con.tv;
545 }
546
547 static inline int _is_Const_null(const ir_node *node) {
548         return tarval_is_null(_get_Const_tarval(node));
549 }
550
551 static inline int _is_Const_one(const ir_node *node) {
552         return tarval_is_one(_get_Const_tarval(node));
553 }
554
555 static inline int _is_Const_all_one(const ir_node *node) {
556         return tarval_is_all_one(_get_Const_tarval(node));
557 }
558
559 static inline int _is_irn_forking(const ir_node *node) {
560         return is_op_forking(_get_irn_op(node));
561 }
562
563 static inline ir_type *_get_irn_type(ir_node *node) {
564         return _get_irn_op(node)->ops.get_type(node);
565 }
566
567 static inline ir_type *_get_irn_type_attr(ir_node *node) {
568         return _get_irn_op(node)->ops.get_type_attr(node);
569 }
570
571 static inline ir_entity *_get_irn_entity_attr(ir_node *node) {
572   return _get_irn_op(node)->ops.get_entity_attr(node);
573 }
574
575 static inline int _is_irn_constlike(const ir_node *node) {
576         return is_op_constlike(_get_irn_op(node));
577 }
578
579 static inline int _is_irn_always_opt(const ir_node *node) {
580         return is_op_always_opt(_get_irn_op(node));
581 }
582
583 static inline int _is_irn_keep(const ir_node *node) {
584         return is_op_keep(_get_irn_op(node));
585 }
586
587 static inline int _is_irn_start_block_placed(const ir_node *node) {
588         return is_op_start_block_placed(_get_irn_op(node));
589 }
590
591 static inline int _is_irn_machine_op(const ir_node *node) {
592         return is_op_machine(_get_irn_op(node));
593 }
594
595 static inline int _is_irn_machine_operand(const ir_node *node) {
596         return is_op_machine_operand(_get_irn_op(node));
597 }
598
599 static inline int _is_irn_machine_user(const ir_node *node, unsigned n) {
600         return is_op_machine_user(_get_irn_op(node), n);
601 }
602
603 static inline int _is_irn_cse_neutral(const ir_node *node) {
604         return is_op_cse_neutral(_get_irn_op(node));
605 }
606
607 static inline cond_jmp_predicate _get_Cond_jmp_pred(const ir_node *node) {
608         assert(_get_irn_op(node) == op_Cond);
609         return node->attr.cond.jmp_pred;
610 }
611
612 static inline void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
613         assert(_get_irn_op(node) == op_Cond);
614         node->attr.cond.jmp_pred = pred;
615 }
616
617 static inline void *_get_irn_generic_attr(ir_node *node) {
618         return &node->attr;
619 }
620
621 static inline const void *_get_irn_generic_attr_const(const ir_node *node) {
622         return &node->attr;
623 }
624
625 static inline unsigned _get_irn_idx(const ir_node *node) {
626         return node->node_idx;
627 }
628
629 static inline dbg_info *_get_irn_dbg_info(const ir_node *n) {
630         return n->dbi;
631 }  /* get_irn_dbg_info */
632
633 static inline void _set_irn_dbg_info(ir_node *n, dbg_info *db) {
634         n->dbi = db;
635 }
636
637 /**
638  * Sets the Phi list of a block.
639  */
640 static inline void _set_Block_phis(ir_node *block, ir_node *phi)
641 {
642         assert(_is_Block(block));
643         assert(phi == NULL || _is_Phi(phi));
644         block->attr.block.phis = phi;
645 }
646
647 /**
648  * Returns the link of a node.
649  * Intern version of libFirm.
650  */
651 static inline ir_node *_get_Block_phis(const ir_node *block)
652 {
653         assert(_is_Block(block));
654         return block->attr.block.phis;
655 }
656
657 /**
658  * Sets the next link of a Phi.
659  */
660 static inline void _set_Phi_next(ir_node *phi, ir_node *next)
661 {
662         assert(_is_Phi(phi));
663         phi->attr.phi.next = next;
664 }
665
666 /**
667  * Returns the link of a node.
668  * Intern version of libFirm.
669  */
670 static inline ir_node *_get_Phi_next(const ir_node *phi)
671 {
672         assert(_is_Phi(phi));
673         return phi->attr.phi.next;
674 }
675
676 /** Add a Phi node to the list of Block Phi's. */
677 static inline void _add_Block_phi(ir_node *block, ir_node *phi)
678 {
679         _set_Phi_next(phi, _get_Block_phis(block));
680         _set_Block_phis(block, phi);
681 }
682
683 /** Get the Block mark (single bit). */
684 static inline unsigned _get_Block_mark(const ir_node *block)
685 {
686         assert(_is_Block(block));
687         return block->attr.block.marked;
688 }
689
690 /** Set the Block mark (single bit). */
691 static inline void _set_Block_mark(ir_node *block, unsigned mark)
692 {
693         assert(_is_Block(block));
694         block->attr.block.marked = mark;
695 }
696
697 /** Returns non-zero if a node is a routine parameter. */
698 static inline int _is_arg_Proj(const ir_node *node)
699 {
700         if (! is_Proj(node))
701                 return 0;
702         node = get_Proj_pred(node);
703         if (! is_Proj(node))
704                 return 0;
705         return pn_Start_T_args == get_Proj_proj(node) && is_Start(get_Proj_pred(node));
706 }
707
708
709 /* this section MUST contain all inline functions */
710 #define is_ir_node(thing)                     _is_ir_node(thing)
711 #define get_irn_intra_arity(node)             _get_irn_intra_arity(node)
712 #define get_irn_inter_arity(node)             _get_irn_inter_arity(node)
713 #define get_irn_arity(node)                   _get_irn_arity(node)
714 #define get_irn_intra_n(node, n)              _get_irn_intra_n(node, n)
715 #define get_irn_inter_n(node, n)              _get_irn_inter_n(node, n)
716 #define get_irn_n(node, n)                    _get_irn_n(node, n)
717 #define get_irn_mode(node)                    _get_irn_mode(node)
718 #define set_irn_mode(node, mode)              _set_irn_mode(node, mode)
719 #define get_irn_op(node)                      _get_irn_op(node)
720 #define set_irn_op(node, op)                  _set_irn_op(node, op)
721 #define get_irn_opcode(node)                  _get_irn_opcode(node)
722 #define get_irn_visited(node)                 _get_irn_visited(node)
723 #define set_irn_visited(node, v)              _set_irn_visited(node, v)
724 #define mark_irn_visited(node)                _mark_irn_visited(node)
725 #define irn_visited(node)                     _irn_visited(node)
726 #define irn_visited_else_mark(node)           _irn_visited_else_mark(node)
727 #define set_irn_link(node, link)              _set_irn_link(node, link)
728 #define get_irn_link(node)                    _get_irn_link(node)
729 #define get_irn_pinned(node)                  _get_irn_pinned(node)
730 #define is_irn_pinned_in_irg(node)            _is_irn_pinned_in_irg(node)
731 #define is_unop(node)                         _is_unop(node)
732 #define is_binop(node)                        _is_binop(node)
733 #define is_Proj(node)                         _is_Proj(node)
734 #define is_Phi(node)                          _is_Phi(node)
735 #define is_strictConv(node)                   _is_strictConv(node)
736 #define is_SymConst_addr_ent(node)            _is_SymConst_addr_ent(node)
737 #define is_no_Block(node)                     _is_no_Block(node)
738 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
739 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
740 #define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
741 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
742 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
743 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
744 #define Block_block_visited(node)             _Block_block_visited(node)
745 #define set_Block_dead(block)                 _set_Block_dead(block)
746 #define is_Block_dead(block)                  _is_Block_dead(block)
747 #define get_Block_irg(block)                  _get_Block_irg(block)
748 #define get_Const_tarval(node)                _get_Const_tarval(node)
749 #define is_Const_null(node)                   _is_Const_null(node)
750 #define is_Const_one(node)                    _is_Const_one(node)
751 #define is_Const_all_one(node)                _is_Const_all_one(node)
752 #define is_irn_forking(node)                  _is_irn_forking(node)
753 #define copy_node_attr(oldn,newn)             _copy_node_attr(oldn,newn)
754 #define get_irn_type(node)                    _get_irn_type(node)
755 #define get_irn_type_attr(node)               _get_irn_type_attr(node)
756 #define get_irn_entity_attr(node)             _get_irn_entity_attr(node)
757 #define is_irn_constlike(node)                _is_irn_constlike(node)
758 #define is_irn_always_opt(node)               _is_irn_always_opt(node)
759 #define is_irn_keep(node)                     _is_irn_keep(node)
760 #define is_irn_start_block_placed(node)       _is_irn_start_block_placed(node)
761 #define is_irn_machine_op(node)               _is_irn_machine_op(node)
762 #define is_irn_machine_operand(node)          _is_irn_machine_operand(node)
763 #define is_irn_machine_user(node, n)          _is_irn_machine_user(node, n)
764 #define is_irn_cse_neutral(node)              _is_irn_cse_neutral(node)
765 #define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
766 #define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
767 #define get_irn_generic_attr(node)            _get_irn_generic_attr(node)
768 #define get_irn_generic_attr_const(node)      _get_irn_generic_attr_const(node)
769 #define get_irn_idx(node)                     _get_irn_idx(node)
770
771 #define get_irn_deps(node)                    _get_irn_deps(node)
772 #define set_irn_dep(node, pos, dep)           _set_irn_dep(node, pos, dep)
773 #define get_irn_dep(node, pos)                _get_irn_dep(node, pos)
774
775 #define get_irn_ins_or_deps(node)             _get_irn_ins_or_deps(node)
776 #define get_irn_in_or_dep(node, pos)          _get_irn_in_or_dep(node, pos)
777
778 #define get_irn_dbg_info(node)                _get_irn_dbg_info(node)
779 #define set_irn_dbg_info(node, db)            _set_irn_dbg_info(node, db)
780
781 #define set_Block_phis(block, phi)            _set_Block_phis(block, phi)
782 #define get_Block_phis(block)                 _get_Block_phis(block)
783 #define add_Block_phi(block, phi)             _add_Block_phi(block, phi)
784 #define get_Block_mark(block)                 _get_Block_mark(block)
785 #define set_Block_mark(block, mark)           _set_Block_mark(block, mark)
786
787 #define set_Phi_next(node, phi)               _set_Phi_next(node, phi)
788 #define get_Phi_next(node)                    _get_Phi_next(node)
789
790 #define is_arg_Proj(node)                     _is_arg_Proj(node)
791
792 #endif