79a5ea035ea2d9b8291f0afc894135c53cb77947
[libfirm] / ir / ir / irnode.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe      3 2002/02/28 13:33:52
2  * All rights reserved.
3  */
4
5 /* $Id$ */
6
7 # ifndef _IRNODE_H_
8 # define _IRNODE_H_
9
10 /** Projection numbers of compare: use for Proj nodes! */
11 typedef enum {
12   False = 0,            /**< false */
13   Eq,                   /**< equal */
14   Lt,                   /**< less */
15   Le,                   /**< less or equal */
16   Gt,                   /**< greater */
17   Ge,                   /**< greater or equal */
18   Lg,                   /**< less or greater */
19   Leg = 7,              /**< less, equal or greater = ordered */
20   Uo,                   /**< unordered */
21   Ue,                   /**< unordered or equal */
22   Ul,                   /**< unordered or less */
23   Ule,                  /**< unordered, less or equal */
24   Ug,                   /**< unordered or greater */
25   Uge,                  /**< unordered, greater or equal */
26   Ne,                   /**< unordered, less or greater = not equal */
27   True = 15             /**< true */
28   /* not_mask = Leg*/   /* bits to flip to negate comparison * @@ hack for jni interface */
29 } pnc_number;
30 #define not_mask Leg
31
32 # include "tv.h"
33 # include "irgraph.h"
34 # include "entity.h"
35 # include "firm_common.h"
36 # include "irop.h"
37 # include "irmode.h"
38 # include "type.h"
39 # include "dbginfo.h"
40 # include "exc.h"
41
42 /**
43  * @file irnode.h
44  *
45  * @author Martin Trapp, Christian Schaefer
46  *
47  * Declarations of an ir node.
48  */
49
50 /**
51  * @defgroup ir_node Declarations of an ir node.
52  *
53  * The type definiton of ir_node is also in irgraph.h to resolve
54  *  recursion between irnode.h and irgraph.h
55  *
56  * ir_node - a datatype representing a Firm node
57  *
58  *  The common fields are:
59  *
60  *  - firm_kind - A firm_kind tag containing k_type.  This is useful
61  *                for dynamically checking whether a node is a ir_node.
62  *  - arity     - The number of predecessors in the Firm graph.
63  *  - in        - A list with the predecessors in the Firm graph.  There are
64  *                routines to access individual elements and to obtain the
65  *                array.  The method returning the array should not be used.
66  *  - mode      - The mode of the node.  There are routines to get the mode
67  *                but also to access the mode's fields directly.
68  *  - opcode    - The opcode of the node. There are routines to get the opcode
69  *                but also to access the opcode's fields directly.
70  *  - node_nr   - A unique number for the node.  Available only if debugging
71  *                is turned on.
72  * @{
73  */
74
75 #ifndef _IR_NODE_TYPEDEF_
76 #define _IR_NODE_TYPEDEF_
77 typedef struct ir_node ir_node;
78 #endif
79
80 /**
81  *   you can work on the graph without considering the different types
82  *   of nodes, it's just a big graph.
83  */
84
85 /** returns the number of predecessors without the block predecessor: */
86 int                  get_irn_arity         (const ir_node *node);
87
88 /** Replaces the old in array by a new one that will contain the ins given in
89    the parameters.  Conserves the block predecessor.  It copies the array passed.
90    This function is necessary to ajust in arrays of blocks, calls and phis.
91    Assumes that current_ir_graph is set to the graph containing "node".
92    "in" must contain all predecessors except the block that are required for
93    the nodes opcode. */
94 INLINE void          set_irn_in            (ir_node *node, int arity,
95                                             ir_node *in[]);
96 /* to iterate through the predecessors without touching the array. No
97    order of predecessors guaranteed.
98    To iterate over the operands iterate from 0 to i < get_irn_arity(),
99    to iterate including the Block predecessor iterate from i = -1 to
100    i < get_irn_arity. */
101 /* Access predecessor n */
102 /* get_irn_n removes Id predecessors. */
103 INLINE ir_node      *get_irn_n             (ir_node *node, int n);
104 INLINE void          set_irn_n             (ir_node *node, int n, ir_node *in);
105 /** Sets the mode struct of node */
106 INLINE void set_irn_mode (ir_node *node, ir_mode *mode);
107 /** Gets the mode struct. */
108 INLINE ir_mode      *get_irn_mode          (const ir_node *node);
109 /** Gets the mode-enum modecode. */
110 INLINE modecode      get_irn_modecode      (const ir_node *node);
111 /** Gets the ident for a string representation of the mode .*/
112 INLINE ident        *get_irn_modeident     (const ir_node *node);
113 /** Gets the opcode struct of the node */
114 INLINE ir_op        *get_irn_op            (const ir_node *node);
115 /** Sets the opcode struct of the node. */
116 INLINE void          set_irn_op            (ir_node *node, ir_op *op);
117 /** Gets the opcode-enum of the node. */
118 INLINE opcode        get_irn_opcode        (const ir_node *node);
119 /** Get the string representation of the opcode. */
120 INLINE const char   *get_irn_opname        (const ir_node *node);
121 /** Get the ident for a string representation of the opcode. */
122 INLINE ident        *get_irn_opident       (const ir_node *node);
123 INLINE unsigned long get_irn_visited (const ir_node *node);
124 INLINE void          set_irn_visited (ir_node *node, unsigned long visited);
125 /** Sets visited to get_irg_visited(current_ir_graph). */
126 INLINE void          mark_irn_visited (ir_node *node);
127 /** Returns 1 if visited < get_irg_visited(current_ir_graph).  */
128 INLINE int           irn_not_visited  (const ir_node *node);
129 /** Returns 1 if visited >= get_irg_visited(current_ir_graph).  */
130 INLINE int           irn_visited      (const ir_node *node);
131 INLINE void          set_irn_link          (ir_node *node, void *link);
132 INLINE void         *get_irn_link          (const ir_node *node);
133
134 /** Outputs a unique number for this node if libfirm is compiled for
135    debugging, (configure with --enable-debug) else returns 0. */
136 INLINE long get_irn_node_nr(const ir_node *node);
137
138 /** Returns the ir_graph this node belongs to. Only valid for
139  * CallBegin, EndReg and EndExcept */
140 INLINE ir_graph *get_irn_irg(ir_node *node);
141
142 /**
143  * irnode constructor.
144  * Create a new irnode in irg, with an op, mode, arity and
145  * some incoming irnodes.
146  * If arity is negative, a node with a dynamic array is created.
147  */
148 INLINE ir_node *
149 new_ir_node (dbg_info *db,
150              ir_graph *irg,
151              ir_node *block,
152              ir_op *op,
153              ir_mode *mode,
154              int arity,
155              ir_node *in[]);
156
157 /*
158  *
159  * NAME access functions for node fields.
160  *
161  *  Not properly documented ;-)
162  *
163  */
164
165 /* this works for all except Block */
166 INLINE ir_node  *get_nodes_Block (ir_node *node);
167 INLINE void      set_nodes_Block (ir_node *node, ir_node *block);
168
169 /** Projection numbers for result of Start node: use for Proj nodes! */
170 typedef enum {
171   pns_initial_exec,     /**< Projection on an executable, the initial control
172                            flow. */
173   pns_global_store,     /**< Projection on the global store */
174   pns_frame_base,       /**< Projection on the frame base */
175   pns_globals,          /**< Projection on the pointer to the data segment
176                            containing _all_ global entities. */
177   pns_args,             /**< Projection on all arguments */
178   pns_value_arg_base    /**< Pointer to region of compound value arguments as defined by
179                              type of this method. */
180 } pns_number;
181
182 /* @@@ no more supported  */
183 INLINE ir_node **get_Block_cfgpred_arr (ir_node *node);
184 int              get_Block_n_cfgpreds (ir_node *node);
185 INLINE ir_node  *get_Block_cfgpred (ir_node *node, int pos);
186 INLINE void      set_Block_cfgpred (ir_node *node, int pos, ir_node *pred);
187 INLINE bool      get_Block_matured (ir_node *node);
188 INLINE void      set_Block_matured (ir_node *node, bool matured);
189 INLINE unsigned long get_Block_block_visited (ir_node *node);
190 INLINE void      set_Block_block_visited (ir_node *node, unsigned long visit);
191 /* For this current_ir_graph must be set. */
192 INLINE void      mark_Block_block_visited(ir_node *node);
193 INLINE int       Block_not_block_visited(ir_node *node);
194
195 /* Set and remove interprocedural predecessors. If the interprocedural
196  * predecessors are removed, the node has the same predecessors in
197  * both views.
198  * @@@ Maybe better:  arity is zero if no cg preds. */
199 void set_Block_cg_cfgpred_arr(ir_node * node, int arity, ir_node ** in);
200 void set_Block_cg_cfgpred(ir_node * node, int pos, ir_node * pred);
201 /* @@@ not supported */
202 ir_node ** get_Block_cg_cfgpred_arr(ir_node * node);
203 /* Returns the number of interproc predecessors.  0 if none. */
204 int get_Block_cg_n_cfgpreds(ir_node * node);
205 ir_node * get_Block_cg_cfgpred(ir_node * node, int pos);
206 /* frees the memory. */
207 void remove_Block_cg_cfgpred_arr(ir_node * node);
208
209 INLINE int  get_End_n_keepalives(ir_node *end);
210 INLINE ir_node *get_End_keepalive(ir_node *end, int pos);
211 INLINE void add_End_keepalive (ir_node *end, ir_node *ka);
212 INLINE void set_End_keepalive(ir_node *end, int pos, ir_node *ka);
213 /* Some parts of the End node are allocated seperately -- their memory
214    is not recovered by dead_node_elimination if a End node is dead.
215    free_End frees these data structures. */
216 INLINE void free_End (ir_node *end);
217
218 ir_graph *get_EndReg_irg (const ir_node *end);
219 ir_graph *get_EndExcept_irg  (const ir_node *end);
220
221 /* We distinguish three kinds of Cond nodes.  These can be distinguished
222    by the mode of the selector operand and an internal flag of type cond_kind.
223    First we distinguish binary Conds and switch Conds.
224    A binary Cond has as selector a boolean value.  Proj(0) projects the control
225    flow for case "False", Proj(1) the control flow for "True".  A binary Cond
226    is recognized by the boolean selector.
227    The switch Cond has as selector an unsigned integer.  It produces as result
228    an n+1 Tuple (cf0, ... , cfn) of control flows.
229    We differ two flavours of this Cond.  The first, the dense Cond, passes
230    control along output i if the selector value is i, 0 <= i <= n.  If the
231    selector value is >n it passes control along output n.
232    The second Cond flavor differes in the treatment of cases not specified in
233    the source program.  It magically knows about the existence of Proj nodes.
234    It only passes control along output i, 0 <= i <= n, if a node Proj(Cond, i)
235    exists.  Else it passes control along output n (even if this Proj does not
236    exist.)  This Cond we call "fragmentary".  There is a special constructor
237    new_defaultProj that automatically sets the flavor.
238    The two switch flavors are distinguished by a flag of type cond_kind.
239    Default flavor is "dense"
240 */
241 typedef enum {
242   dense,        /**< Default. Missing Proj nodes are dead control flow. */
243   fragmentary   /**< Special. No control flow optimizations allowed.  Missing
244                    Proj nodes mean default control flow, i.e., Proj(n). */
245 } cond_kind;
246
247 INLINE ir_node  *get_Cond_selector (ir_node *node);
248 INLINE void      set_Cond_selector (ir_node *node, ir_node *selector);
249 INLINE cond_kind get_Cond_kind (ir_node *node);
250 INLINE void      set_Cond_kind (ir_node *node, cond_kind kind);
251
252 INLINE ir_node  *get_Return_mem (ir_node *node);
253 INLINE void      set_Return_mem (ir_node *node, ir_node *mem);
254 INLINE ir_node **get_Return_res_arr (ir_node *node);
255 INLINE int       get_Return_n_ress (ir_node *node);
256 INLINE ir_node  *get_Return_res (ir_node *node, int pos);
257 INLINE void      set_Return_res (ir_node *node, int pos, ir_node *res);
258
259 INLINE ir_node *get_Raise_mem (ir_node *node);
260 INLINE void     set_Raise_mem (ir_node *node, ir_node *mem);
261 INLINE ir_node *get_Raise_exo_ptr (ir_node *node);  /* PoinTeR to EXception Object */
262 INLINE void     set_Raise_exo_ptr (ir_node *node, ir_node *exoptr);
263
264 INLINE tarval  *get_Const_tarval (ir_node *node);
265 INLINE void     set_Const_tarval (ir_node *node, tarval *con);
266
267 /**  This enum names the three different kinds of symbolic Constants
268      represented by SymConst.  The content of the attribute type_or_id
269      depends on this tag.  Use the proper access routine after testing
270      this flag. */
271 typedef enum {
272   type_tag,          /**< The SymConst is a type tag for the given type.
273                         Type_or_id_p is type *. */
274   size,              /**< The SymConst is the size of the given type.
275                         Type_or_id_p is type *. */
276   linkage_ptr_info   /**< The SymConst is a symbolic pointer to be filled in
277                         by the linker. Type_or_id_p is ident *. */
278 } symconst_kind;
279 typedef union type_or_id * type_or_id_p;
280 INLINE symconst_kind get_SymConst_kind (const ir_node *node);
281 INLINE void          set_SymConst_kind (ir_node *node, symconst_kind num);
282 /* Only to access SymConst of kind type_tag or size.  Else assertion: */
283 INLINE type    *get_SymConst_type (ir_node *node);
284 INLINE void     set_SymConst_type (ir_node *node, type *tp);
285 /* Only to access SymConst of kind linkage_ptr_info.  Else assertion: */
286 INLINE ident   *get_SymConst_ptrinfo (ir_node *node);
287 INLINE void     set_SymConst_ptrinfo (ir_node *node, ident *ptrinfo);
288 /* Sets both: type and ptrinfo.  Needed to treat the node independent of
289    its semantics.  Does a memcpy for the memory tori points to. */
290 INLINE type_or_id_p get_SymConst_type_or_id (ir_node *node);
291 INLINE void set_SymConst_type_or_id (ir_node *node, type_or_id_p tori);
292
293 INLINE ir_node *get_Sel_mem (ir_node *node);
294 INLINE void     set_Sel_mem (ir_node *node, ir_node *mem);
295 INLINE ir_node *get_Sel_ptr (ir_node *node);  /* ptr to the object to select from */
296 INLINE void     set_Sel_ptr (ir_node *node, ir_node *ptr);
297 INLINE ir_node **get_Sel_index_arr (ir_node *node);
298 INLINE int      get_Sel_n_indexs (ir_node *node);
299 INLINE ir_node *get_Sel_index (ir_node *node, int pos);
300 INLINE void     set_Sel_index (ir_node *node, int pos, ir_node *index);
301 INLINE entity  *get_Sel_entity (ir_node *node); /* entity to select */
302 INLINE void     set_Sel_entity (ir_node *node, entity *ent);
303
304 /* @@@ ajacs specific node -- not supported */
305 type           *get_InstOf_ent   (ir_node *node);
306 void            set_InstOf_ent   (ir_node *node, type *ent);
307 ir_node        *get_InstOf_obj   (ir_node *node);
308 void            set_InstOf_obj   (ir_node *node, ir_node *obj);
309 ir_node        *get_InstOf_store (ir_node *node);
310 void            set_InstOf_store (ir_node *node, ir_node *obj);
311
312 INLINE ir_node *get_Call_mem (ir_node *node);
313 INLINE void     set_Call_mem (ir_node *node, ir_node *mem);
314 INLINE ir_node *get_Call_ptr (ir_node *node);
315 INLINE void     set_Call_ptr (ir_node *node, ir_node *ptr);
316 INLINE ir_node **get_Call_param_arr (ir_node *node);
317 /** Gets the number of parameters of a call. */
318 INLINE int      get_Call_n_params (ir_node *node);
319 /** Gets the call parameter at position pos. */
320 INLINE ir_node *get_Call_param (ir_node *node, int pos);
321 /** Sets the call parameter at position pos. */
322 INLINE void     set_Call_param (ir_node *node, int pos, ir_node *param);
323 /** Gets the type of a call. */
324 INLINE type    *get_Call_type (ir_node *node);
325 /** Sets the type of a call. */
326 INLINE void     set_Call_type (ir_node *node, type *tp);
327 /** Gets the arity of a call. Identical to get_Call_n_params(). */
328 INLINE int      get_Call_arity (ir_node *node);
329
330 /* Set, get and remove the callee-analysis. */
331 int get_Call_n_callees(ir_node * node);
332 entity * get_Call_callee(ir_node * node, int pos);
333 void set_Call_callee_arr(ir_node * node, int n, entity ** arr);
334 void remove_Call_callee_arr(ir_node * node);
335
336 ir_node * get_CallBegin_ptr (ir_node *node);
337 void set_CallBegin_ptr (ir_node *node, ir_node *ptr);
338 ir_graph *get_CallBegin_irg (ir_node *node);
339 ir_node *get_CallBegin_call (ir_node *node);
340 void set_CallBegin_call (ir_node *node, ir_node *call);
341
342 /* For unary and binary arithmetic operations the access to the
343    operands can be factored out.  Left is the first, right the
344    second arithmetic value  as listed in tech report 1999-44.
345    unops are: Minus, Abs, Not, Conv
346    binops are: Add, Sub, Mul, Quot, DivMod, Div, Mod, And, Or, Eor, Shl,
347    Shr, Shrs, Rot, Cmp */
348 INLINE int      is_unop (ir_node *node);
349 INLINE ir_node *get_unop_op (ir_node *node);
350 INLINE void     set_unop_op (ir_node *node, ir_node *op);
351 INLINE int      is_binop (ir_node *node);
352 INLINE ir_node *get_binop_left (ir_node *node);
353 INLINE void     set_binop_left (ir_node *node, ir_node *left);
354 INLINE ir_node *get_binop_right (ir_node *node);
355 INLINE void     set_binop_right (ir_node *node, ir_node *right);
356
357 INLINE ir_node *get_Add_left (ir_node *node);
358 INLINE void     set_Add_left (ir_node *node, ir_node *left);
359 INLINE ir_node *get_Add_right (ir_node *node);
360 INLINE void     set_Add_right (ir_node *node, ir_node *right);
361
362 INLINE ir_node *get_Sub_left (ir_node *node);
363 INLINE void     set_Sub_left (ir_node *node, ir_node *left);
364 INLINE ir_node *get_Sub_right (ir_node *node);
365 INLINE void     set_Sub_right (ir_node *node, ir_node *right);
366
367 INLINE ir_node *get_Minus_op (ir_node *node);
368 INLINE void     set_Minus_op (ir_node *node, ir_node *op);
369
370 INLINE ir_node *get_Mul_left (ir_node *node);
371 INLINE void     set_Mul_left (ir_node *node, ir_node *left);
372 INLINE ir_node *get_Mul_right (ir_node *node);
373 INLINE void     set_Mul_right (ir_node *node, ir_node *right);
374
375 INLINE ir_node *get_Quot_left (ir_node *node);
376 INLINE void     set_Quot_left (ir_node *node, ir_node *left);
377 INLINE ir_node *get_Quot_right (ir_node *node);
378 INLINE void     set_Quot_right (ir_node *node, ir_node *right);
379 INLINE ir_node *get_Quot_mem (ir_node *node);
380 INLINE void     set_Quot_mem (ir_node *node, ir_node *mem);
381
382 INLINE ir_node *get_DivMod_left (ir_node *node);
383 INLINE void     set_DivMod_left (ir_node *node, ir_node *left);
384 INLINE ir_node *get_DivMod_right (ir_node *node);
385 INLINE void     set_DivMod_right (ir_node *node, ir_node *right);
386 INLINE ir_node *get_DivMod_mem (ir_node *node);
387 INLINE void     set_DivMod_mem (ir_node *node, ir_node *mem);
388
389 INLINE ir_node *get_Div_left (ir_node *node);
390 INLINE void     set_Div_left (ir_node *node, ir_node *left);
391 INLINE ir_node *get_Div_right (ir_node *node);
392 INLINE void     set_Div_right (ir_node *node, ir_node *right);
393 INLINE ir_node *get_Div_mem (ir_node *node);
394 INLINE void     set_Div_mem (ir_node *node, ir_node *mem);
395
396 INLINE ir_node *get_Mod_left (ir_node *node);
397 INLINE void     set_Mod_left (ir_node *node, ir_node *left);
398 INLINE ir_node *get_Mod_right (ir_node *node);
399 INLINE void     set_Mod_right (ir_node *node, ir_node *right);
400 INLINE ir_node *get_Mod_mem (ir_node *node);
401 INLINE void     set_Mod_mem (ir_node *node, ir_node *mem);
402
403 INLINE ir_node *get_Abs_op (ir_node *node);
404 INLINE void     set_Abs_op (ir_node *node, ir_node *op);
405
406 INLINE ir_node *get_And_left (ir_node *node);
407 INLINE void     set_And_left (ir_node *node, ir_node *left);
408 INLINE ir_node *get_And_right (ir_node *node);
409 INLINE void     set_And_right (ir_node *node, ir_node *right);
410
411 INLINE ir_node *get_Or_left (ir_node *node);
412 INLINE void     set_Or_left (ir_node *node, ir_node *left);
413 INLINE ir_node *get_Or_right (ir_node *node);
414 INLINE void     set_Or_right (ir_node *node, ir_node *right);
415
416 INLINE ir_node *get_Eor_left (ir_node *node);
417 INLINE void     set_Eor_left (ir_node *node, ir_node *left);
418 INLINE ir_node *get_Eor_right (ir_node *node);
419 INLINE void     set_Eor_right (ir_node *node, ir_node *right);
420
421 INLINE ir_node *get_Not_op (ir_node *node);
422 INLINE void     set_Not_op (ir_node *node, ir_node *op);
423
424 INLINE const char *get_pnc_string(int pnc);
425
426 INLINE int   get_negated_pnc(int pnc);
427 INLINE ir_node *get_Cmp_left (ir_node *node);
428 INLINE void     set_Cmp_left (ir_node *node, ir_node *left);
429 INLINE ir_node *get_Cmp_right (ir_node *node);
430 INLINE void     set_Cmp_right (ir_node *node, ir_node *right);
431
432 INLINE ir_node *get_Shl_left (ir_node *node);
433 INLINE void     set_Shl_left (ir_node *node, ir_node *left);
434 INLINE ir_node *get_Shl_right (ir_node *node);
435 INLINE void     set_Shl_right (ir_node *node, ir_node *right);
436
437 INLINE ir_node *get_Shr_left (ir_node *node);
438 INLINE void     set_Shr_left (ir_node *node, ir_node *left);
439 INLINE ir_node *get_Shr_right (ir_node *node);
440 INLINE void     set_Shr_right (ir_node *node, ir_node *right);
441
442 INLINE ir_node *get_Shrs_left (ir_node *node);
443 INLINE void     set_Shrs_left (ir_node *node, ir_node *left);
444 INLINE ir_node *get_Shrs_right (ir_node *node);
445 INLINE void     set_Shrs_right (ir_node *node, ir_node *right);
446
447 INLINE ir_node *get_Rot_left (ir_node *node);
448 INLINE void     set_Rot_left (ir_node *node, ir_node *left);
449 INLINE ir_node *get_Rot_right (ir_node *node);
450 INLINE void     set_Rot_right (ir_node *node, ir_node *right);
451
452 INLINE ir_node *get_Conv_op (ir_node *node);
453 INLINE void     set_Conv_op (ir_node *node, ir_node *op);
454
455 INLINE ir_node **get_Phi_preds_arr (ir_node *node);
456 INLINE int       get_Phi_n_preds (ir_node *node);
457 INLINE ir_node  *get_Phi_pred (ir_node *node, int pos);
458 INLINE void      set_Phi_pred (ir_node *node, int pos, ir_node *pred);
459
460 INLINE ir_node  *get_Filter_pred(ir_node *node);
461 INLINE void      set_Filter_pred(ir_node *node, ir_node *pred);
462 INLINE long      get_Filter_proj(ir_node *node);
463 INLINE void      set_Filter_proj(ir_node *node, long proj);
464 /* set the interprocedural predecessors, ...d_arr uses current_ir_graph.
465  * @@@ Maybe better:  arity is zero if no cg preds. */
466 void             set_Filter_cg_pred_arr(ir_node * node, int arity, ir_node ** in);
467 void             set_Filter_cg_pred(ir_node * node, int pos, ir_node * pred);
468 int              get_Filter_n_cg_preds(ir_node *node);
469 ir_node *        get_Filter_cg_pred(ir_node *node, int pos);
470
471 INLINE ir_node *get_Load_mem (ir_node *node);
472 INLINE void     set_Load_mem (ir_node *node, ir_node *mem);
473 INLINE ir_node *get_Load_ptr (ir_node *node);
474 INLINE void     set_Load_ptr (ir_node *node, ir_node *ptr);
475
476 INLINE ir_node *get_Store_mem (ir_node *node);
477 INLINE void     set_Store_mem (ir_node *node, ir_node *mem);
478 INLINE ir_node *get_Store_ptr (ir_node *node);
479 INLINE void     set_Store_ptr (ir_node *node, ir_node *ptr);
480 INLINE ir_node *get_Store_value (ir_node *node);
481 INLINE void     set_Store_value (ir_node *node, ir_node *value);
482
483 INLINE ir_node *get_Alloc_mem (ir_node *node);
484 INLINE void     set_Alloc_mem (ir_node *node, ir_node *mem);
485 INLINE ir_node *get_Alloc_size (ir_node *node);
486 INLINE void     set_Alloc_size (ir_node *node, ir_node *size);
487 INLINE type    *get_Alloc_type (ir_node *node);
488 INLINE void     set_Alloc_type (ir_node *node, type *tp);
489
490 /** allocation place. */
491 typedef enum {
492   stack_alloc,          /**< Alloc allocates the object on the stack. */
493   heap_alloc            /**< Alloc allocates the object on the heap. */
494 } where_alloc;
495
496 INLINE where_alloc  get_Alloc_where (ir_node *node);
497 INLINE void         set_Alloc_where (ir_node *node, where_alloc where);
498
499 INLINE ir_node *get_Free_mem (ir_node *node);
500 INLINE void     set_Free_mem (ir_node *node, ir_node *mem);
501 INLINE ir_node *get_Free_ptr (ir_node *node);
502 INLINE void     set_Free_ptr (ir_node *node, ir_node *ptr);
503 INLINE ir_node *get_Free_size (ir_node *node);
504 INLINE void     set_Free_size (ir_node *node, ir_node *size);
505 INLINE type    *get_Free_type (ir_node *node);
506 INLINE void     set_Free_type (ir_node *node, type *tp);
507
508 INLINE ir_node **get_Sync_preds_arr (ir_node *node);
509 INLINE int       get_Sync_n_preds (ir_node *node);
510 INLINE ir_node  *get_Sync_pred (ir_node *node, int pos);
511 INLINE void      set_Sync_pred (ir_node *node, int pos, ir_node *pred);
512
513 INLINE ir_node  *get_Proj_pred (ir_node *node);
514 INLINE void      set_Proj_pred (ir_node *node, ir_node *pred);
515 INLINE long      get_Proj_proj (ir_node *node);
516 INLINE void      set_Proj_proj (ir_node *node, long proj);
517
518 INLINE ir_node **get_Tuple_preds_arr (ir_node *node);
519 INLINE int       get_Tuple_n_preds (ir_node *node);
520 INLINE ir_node  *get_Tuple_pred (ir_node *node, int pos);
521 INLINE void      set_Tuple_pred (ir_node *node, int pos, ir_node *pred);
522
523 INLINE ir_node  *get_Id_pred (ir_node *node);
524 INLINE void      set_Id_pred (ir_node *node, ir_node *pred);
525
526
527 /*
528  *
529  * NAME Auxiliary routines
530  *
531  *  Not properly documented ;-)
532  *
533  */
534
535 /** returns operand of node if node is a Proj. */
536 INLINE ir_node *skip_Proj (ir_node *node);
537 /** returns operand of node if node is a Id */
538 INLINE ir_node *skip_nop  (ir_node *node);
539 INLINE ir_node *skip_Id  (ir_node *node);   /* Same as skip_nop. */
540 /* returns corresponding operand of Tuple if node is a Proj from
541    a Tuple. */
542 INLINE ir_node *skip_Tuple (ir_node *node);
543 /** returns true if node is a Bad node. */
544 INLINE int      is_Bad    (ir_node *node);
545 /** returns true if the node is not a Block */
546 INLINE int      is_no_Block (ir_node *node);
547 /** returns true if the node is a Block */
548 INLINE int      is_Block (ir_node *node);
549 /** returns true if node is a Proj node or a Filter node in
550  * intraprocedural view */
551 INLINE int      is_Proj (const ir_node *node);
552 /** Returns true if the operation manipulates control flow:
553    Start, End, Jmp, Cond, Return, Raise, Bad, CallBegin, EndReg, EndExcept */
554 int is_cfop(ir_node *node);
555
556 /** Returns true if the operation manipulates interprocedural control flow:
557    CallBegin, EndReg, EndExcept */
558 int is_ip_cfop(ir_node *node);
559 /** Returns true if the operation can change the control flow because
560    of an exception: Call, Quot, DivMod, Div, Mod, Load, Store, Alloc,
561    Bad. */
562 ir_graph *get_ip_cfop_irg(ir_node *n);
563
564 int is_fragile_op(ir_node *node);
565 /** Returns the memory operand of fragile operations. */
566 ir_node *get_fragile_op_mem(ir_node *node);
567
568 #include "ident.h"
569
570 #ifdef __GNUC__
571 /* GNU C has the __FUNCTION__ extension */
572 #define __MYFUNC__ __FUNCTION__
573 #else
574 /* use Filename instead */
575 #define __MYFUNC__ __FILE__
576 #endif
577
578 /* !!!!!!!!! @@@
579    Don't format with "\", firmjni gets problems */
580 /** Output location */
581 #define DDM(X)   printf("%s(l.%i).\n",                       __MYFUNC__, __LINE__);
582 /** Output the firm kind of the node */
583 #define DDMK(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__,  print_firm_kind(X), (X));
584 /** Output information about a node */
585 #define DDMN(X)  printf("%s(l.%i) %s%s: %ld (%p)\n",         __MYFUNC__, __LINE__,  get_irn_opname(X), get_mode_name(get_irn_mode(X)), get_irn_node_nr(X), (X))
586 /** Output information about a node and its block */
587 #define DDMNB(X) printf("%s%s: %ld (in block %ld)\n", get_irn_opname(X),  get_mode_name(get_irn_mode(X)), get_irn_node_nr(X), get_irn_node_nr(get_nodes_Block(X)))
588 /** Output information about a type */
589 #define DDMT(X)  printf("%s(l.%i) %s %s: %ld (%p)\n",        __MYFUNC__, __LINE__, get_type_tpop_name(X), get_type_name(X), get_type_nr(X), (X))
590 /** Output information about an entity */
591 #define DDME(X)  printf("%s(l.%i) %s: %ld (%p\n",            __MYFUNC__, __LINE__, get_entity_name(X), get_entity_nr(X), (X))
592 /** Output information about an entity and its owner */
593 #define DDMEO(X) printf("%s(l.%i) %s (own: %s): %ld (%p)\n", __MYFUNC__, __LINE__, get_entity_name(X), get_type_name(get_entity_owner(X)), get_entity_nr(X), (X))
594 /** Output information about a graph */
595 #define DDMG(X)  printf("%s(l.%i) %s: %ld (%p)\n",           __MYFUNC__, __LINE__, get_entity_name(get_irg_ent(X)), get_irg_graph_nr(X), (X))
596 /** Output information about an ident */
597 #define DDMI(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__, id_to_str(X), (X))
598 /** Output information about a mode */
599 #define DDMM(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__, get_mode_name(X), (X))
600 /** Output information about a loop */
601 #define DDML(X)  printf("%s(l.%i) loop with depth %d: %p\n", __MYFUNC__, __LINE__, get_loop_depth(X), (X))
602 /** Output information about a tarVal */
603 #define DDMV(X)  printf("%s(l.%i) tarval: ",__MYFUNC__, __LINE__); tarval_printf(X); printf(" (%p)\n", (X));
604
605 /*@}*/ /* end of ir_node group definition */
606
607
608 # endif /* _IRNODE_H_ */