Fixed 'inline' lossage --flo
[libfirm] / ir / ir / irnode.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irnode.h
4  * Purpose:     Representation of an intermediate operation.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 # ifndef _IRNODE_H_
14 # define _IRNODE_H_
15
16 /**
17  * Projection numbers of compare: use for Proj nodes!
18  * @remark there are numbers with normalized names below!
19  */
20 typedef enum {
21   False = 0,        /**< false */
22   Eq,           /**< equal */
23   Lt,           /**< less */
24   Le,           /**< less or equal */
25   Gt,           /**< greater */
26   Ge,           /**< greater or equal */
27   Lg,           /**< less or greater */
28   Leg = 7,      /**< less, equal or greater = ordered */
29   Uo,           /**< unordered */
30   Ue,           /**< unordered or equal */
31   Ul,           /**< unordered or less */
32   Ule,          /**< unordered, less or equal */
33   Ug,           /**< unordered or greater */
34   Uge,          /**< unordered, greater or equal */
35   Ne,           /**< unordered, less or greater = not equal */
36   True = 15         /**< true */
37   /* not_mask = Leg*/   /* bits to flip to negate comparison * @@ hack for jni interface */
38 } pnc_number;   /* pnc: Projection Number Cmp */
39 #define not_mask Leg
40
41 # include "tv.h"
42 # include "irgraph.h"
43 # include "entity.h"
44 # include "firm_common.h"
45 # include "irop.h"
46 # include "irmode.h"
47 # include "type.h"
48 # include "dbginfo.h"
49 //# include "exc.h"
50
51 /**
52  * @file irnode.h
53  *
54  * @author Martin Trapp, Christian Schaefer
55  *
56  * Declarations of an ir node.
57  */
58
59 /**
60  * @defgroup ir_node Declarations of an ir node.
61  *
62  * The type definition of ir_node is also in irgraph.h to resolve
63  *  recursion between irnode.h and irgraph.h
64  *
65  * ir_node - a datatype representing a Firm node
66  *
67  *  The common fields are:
68  *
69  *  - firm_kind - A firm_kind tag containing k_type.  This is useful
70  *                for dynamically checking whether a node is a ir_node.
71  *  - arity     - The number of predecessors in the Firm graph.
72  *  - in        - A list with the predecessors in the Firm graph.  There are
73  *                routines to access individual elements and to obtain the
74  *                array.  The method returning the array should not be used.
75  *  - mode      - The mode of the node.  There are routines to get the mode
76  *                but also to access the mode's fields directly.
77  *  - opcode    - The opcode of the node. There are routines to get the opcode
78  *                but also to access the opcode's fields directly.
79  *  - node_nr   - A unique number for the node.  Available only if debugging
80  *                is turned on.
81  * @{
82  */
83
84 #ifndef _IR_NODE_TYPEDEF_
85 #define _IR_NODE_TYPEDEF_
86 typedef struct ir_node ir_node;
87 #endif
88
89 /**
90  *   you can work on the graph without considering the different types
91  *   of nodes, it's just a big graph.
92  */
93
94 /**
95  *   Checks whether a pointer points to a ir node.
96  *
97  *   @param thing     an arbitrary pointer
98  *
99  *   @return
100  *       true if the thing is a ir mode, else false
101  */
102 int
103 is_ir_node (const void *thing);
104
105 /** returns the number of predecessors without the block predecessor: */
106 int                  get_irn_arity         (const ir_node *node);
107 INLINE int           get_irn_intra_arity   (const ir_node *node);
108 INLINE int           get_irn_inter_arity   (const ir_node *node);
109
110 /** Replaces the old in array by a new one that will contain the ins given in
111    the parameters.  Conserves the block predecessor.  It copies the array passed.
112    This function is necessary to adjust in arrays of blocks, calls and phis.
113    Assumes that current_ir_graph is set to the graph containing "node".
114    "in" must contain all predecessors except the block that are required for
115    the nodes opcode. */
116 INLINE void          set_irn_in            (ir_node *node, int arity,
117                         ir_node *in[]);
118 /* to iterate through the predecessors without touching the array. No
119    order of predecessors guaranteed.
120    To iterate over the operands iterate from 0 to i < get_irn_arity(),
121    to iterate including the Block predecessor iterate from i = -1 to
122    i < get_irn_arity. */
123 /* Access predecessor n */
124 /* get_irn_n removes Id predecessors. */
125 INLINE ir_node      *get_irn_n             (ir_node *node, int n);
126 INLINE ir_node      *get_irn_intra_n       (ir_node *node, int n);
127 INLINE ir_node      *get_irn_inter_n       (ir_node *node, int n);
128 INLINE void          set_irn_n             (ir_node *node, int n, ir_node *in);
129 /** Sets the mode struct of node */
130 INLINE void          set_irn_mode (ir_node *node, ir_mode *mode);
131 /** Gets the mode struct. */
132 INLINE ir_mode      *get_irn_mode          (const ir_node *node);
133 /** Gets the mode-enum modecode. */
134 INLINE modecode      get_irn_modecode      (const ir_node *node);
135 /** Gets the ident for a string representation of the mode .*/
136 INLINE ident        *get_irn_modeident     (const ir_node *node);
137 /** Gets the string representation of the mode .*/
138 INLINE const char   *get_irn_modename      (const ir_node *node);
139 /** Gets the opcode struct of the node */
140 INLINE ir_op        *get_irn_op            (const ir_node *node);
141 /** Sets the opcode struct of the node. */
142 INLINE void          set_irn_op            (ir_node *node, ir_op *op);
143 /** Gets the opcode-enum of the node. */
144 INLINE opcode        get_irn_opcode        (const ir_node *node);
145 /** Get the string representation of the opcode. */
146 INLINE const char   *get_irn_opname        (const ir_node *node);
147 /** Get the ident for a string representation of the opcode. */
148 INLINE ident        *get_irn_opident       (const ir_node *node);
149 INLINE unsigned long get_irn_visited (const ir_node *node);
150 INLINE void          set_irn_visited (ir_node *node, unsigned long visited);
151 /** Sets visited to get_irg_visited(current_ir_graph). */
152 INLINE void          mark_irn_visited (ir_node *node);
153 /** Returns 1 if visited < get_irg_visited(current_ir_graph).  */
154 INLINE int           irn_not_visited  (const ir_node *node);
155 /** Returns 1 if visited >= get_irg_visited(current_ir_graph).  */
156 INLINE int           irn_visited      (const ir_node *node);
157 INLINE void          set_irn_link     (ir_node *node, void *link);
158 INLINE void         *get_irn_link     (const ir_node *node);
159
160 /** Returns the ir_graph this node belongs to. Only valid if irg
161  *  is in state pinned (irg is only stored in the block. */
162 INLINE ir_graph     *get_irn_irg      (ir_node *node);
163
164 /** Outputs a unique number for this node if libFIRM is compiled for
165    debugging, (configure with --enable-debug) else returns address
166    of node cast to long. */
167 INLINE long          get_irn_node_nr  (const ir_node *node);
168
169
170 /**
171  * irnode constructor.
172  * Create a new irnode in irg, with an op, mode, arity and
173  * some incoming irnodes.
174  * This constructor is used in every specified irnode constructor.
175  *
176  * @param db    Debug info.
177  * @param irg   IR-graph on with this new node should be constructed.
178  * @param op    The opcode of the new node.
179  * @param mode  The mode of the new node.
180  * @param arity The arity of the new node, may be <0 if yet.
181  * @param in    An array of arity predecessor nodes.
182  */
183 INLINE ir_node *
184 new_ir_node (dbg_info *db,
185          ir_graph *irg,
186          ir_node *block,
187          ir_op *op,
188          ir_mode *mode,
189          int arity,
190          ir_node *in[]);
191
192 /*
193  *
194  * NAME access functions for node fields.
195  *
196  *  Not properly documented ;-)
197  *
198  */
199
200 /* This works for all except Block.  To express the difference to
201  * access routines that work for all nodes we use infix "nodes". */
202 #define get_nodes_block get_nodes_Block
203 INLINE ir_node  *get_nodes_Block (ir_node *node);
204 #define set_nodes_block set_nodes_Block
205 INLINE void      set_nodes_Block (ir_node *node, ir_node *block);
206
207 /**
208  * Projection numbers for result of Start node: use for Proj nodes!
209  */
210 typedef enum {
211   pn_Start_X_initial_exec,  /**< Projection on the initial control flow. */
212   pn_Start_M,               /**< Projection on the initial memory. */
213   pn_Start_P_frame_base,    /**< Projection on the frame base pointer. */
214   pn_Start_P_globals,       /**< Projection on the pointer to the data segment
215                    containing _all_ global entities. */
216   pn_Start_T_args,          /**< Projection on all arguments. */
217   pn_Start_P_value_arg_base /**< Pointer to region of compound value arguments as defined by
218                    type of this method. */
219 } pn_Start; /* Projection numbers for Start. */
220
221 /**
222  * Projection numbers for result of Start node: use for Proj nodes!
223  * @remark This is the old name convention, don't use anymore.
224  */
225 typedef enum {
226   pns_initial_exec,     /**< Projection on an executable, the initial control
227                flow. */
228   pns_global_store,     /**< Projection on the global store */
229   pns_frame_base,       /**< Projection on the frame base */
230   pns_globals,          /**< Projection on the pointer to the data segment
231                  containing _all_ global entities. */
232   pns_args,             /**< Projection on all arguments */
233   pns_value_arg_base    /**< Pointer to region of compound value arguments as defined by
234                  type of this method. */
235 } pns_number; /* pns: Projection Number Start */
236
237 /** Test whether arbitrary node is frame pointer.
238  *
239  * Test whether arbitrary node is frame pointer, i.e. Proj(pn_Start_P_frame_base)
240  * from Start.  If so returns frame type, else Null. */
241 type *is_frame_pointer(ir_node *n);
242
243 /** Test whether arbitrary node is globals pointer.
244  *
245  * Test whether arbitrary node is globals pointer, i.e. Proj(pn_Start_P_globals)
246  * from Start.  If so returns global type, else Null. */
247 type *is_globals_pointer(ir_node *n);
248
249 /** Test whether arbitrary node is value arg base.
250  *
251  * Test whether arbitrary node is value arg base, i.e. Proj(pn_Start_P_value_arg_base)
252  * from Start.   If so returns 1, else 0. */
253 int   is_value_arg_pointer(ir_node *n);
254
255
256 /* @@@ no more supported  */
257 INLINE ir_node **get_Block_cfgpred_arr (ir_node *node);
258 int              get_Block_n_cfgpreds (ir_node *node);
259 INLINE ir_node  *get_Block_cfgpred (ir_node *node, int pos);
260 INLINE void      set_Block_cfgpred (ir_node *node, int pos, ir_node *pred);
261 INLINE bool      get_Block_matured (ir_node *node);
262 INLINE void      set_Block_matured (ir_node *node, bool matured);
263 INLINE unsigned long get_Block_block_visited (ir_node *node);
264 INLINE void      set_Block_block_visited (ir_node *node, unsigned long visit);
265 /* For this current_ir_graph must be set. */
266 INLINE void      mark_Block_block_visited(ir_node *node);
267 INLINE int       Block_not_block_visited(ir_node *node);
268
269 /* Set and remove interprocedural predecessors. If the interprocedural
270  * predecessors are removed, the node has the same predecessors in
271  * both views.
272  * @@@ Maybe better:  arity is zero if no cg preds. */
273 void      set_Block_cg_cfgpred_arr(ir_node * node, int arity, ir_node ** in);
274 void      set_Block_cg_cfgpred(ir_node * node, int pos, ir_node * pred);
275 /* @@@ not supported */
276 ir_node **get_Block_cg_cfgpred_arr(ir_node * node);
277 /* Returns the number of interprocedural predecessors.  0 if none. */
278 int       get_Block_cg_n_cfgpreds(ir_node * node);
279 ir_node  *get_Block_cg_cfgpred(ir_node * node, int pos);
280 /* frees the memory. */
281 void      remove_Block_cg_cfgpred_arr(ir_node * node);
282
283 /* Start references the irg it is in.
284  @@@ old -- use get_irn_irg instead! */
285 ir_graph *get_Start_irg(ir_node *node);
286
287 INLINE int  get_End_n_keepalives(ir_node *end);
288 INLINE ir_node *get_End_keepalive(ir_node *end, int pos);
289 INLINE void add_End_keepalive (ir_node *end, ir_node *ka);
290 INLINE void set_End_keepalive(ir_node *end, int pos, ir_node *ka);
291 /* Some parts of the End node are allocated separately -- their memory
292    is not recovered by dead_node_elimination if a End node is dead.
293    free_End frees these data structures. */
294 INLINE void free_End (ir_node *end);
295
296 /* @@@ old -- use get_irn_irg instead!  */
297 ir_graph *get_EndReg_irg (ir_node *end);
298 ir_graph *get_EndExcept_irg (ir_node *end);
299
300 /* We distinguish three kinds of Cond nodes.  These can be distinguished
301    by the mode of the selector operand and an internal flag of type cond_kind.
302    First we distinguish binary Conds and switch Conds.
303    A binary Cond has as selector a boolean value.  Proj(0) projects the control
304    flow for case "False", Proj(1) the control flow for "True".  A binary Cond
305    is recognized by the boolean selector.
306    The switch Cond has as selector an unsigned integer.  It produces as result
307    an n+1 Tuple (cf0, ... , cfn) of control flows.
308    We differ two flavours of this Cond.  The first, the dense Cond, passes
309    control along output i if the selector value is i, 0 <= i <= n.  If the
310    selector value is >n it passes control along output n.
311    The second Cond flavor differes in the treatment of cases not specified in
312    the source program.  It magically knows about the existence of Proj nodes.
313    It only passes control along output i, 0 <= i <= n, if a node Proj(Cond, i)
314    exists.  Else it passes control along output n (even if this Proj does not
315    exist.)  This Cond we call "fragmentary".  There is a special constructor
316    new_defaultProj that automatically sets the flavor.
317    The two switch flavors are distinguished by a flag of type cond_kind.
318    Default flavor is "dense"
319 */
320 typedef enum {
321   dense,        /**< Default. Missing Proj nodes are dead control flow. */
322   fragmentary   /**< Special. No control flow optimizations allowed.  Missing
323            Proj nodes mean default control flow, i.e., Proj(n). */
324 } cond_kind;
325
326 INLINE ir_node  *get_Cond_selector (ir_node *node);
327 INLINE void      set_Cond_selector (ir_node *node, ir_node *selector);
328 INLINE cond_kind get_Cond_kind (ir_node *node);
329 INLINE void      set_Cond_kind (ir_node *node, cond_kind kind);
330
331 /**
332  * Projection numbers for conditions.
333  */
334 typedef enum {
335   pn_Cond_false,    /**< Control flow if operand is "false". */
336   pn_Cond_true      /**< Control flow if operand is "true".  */
337 } pn_Cond;  /* Projection numbers for Cond. */
338
339 INLINE ir_node  *get_Return_mem (ir_node *node);
340 INLINE void      set_Return_mem (ir_node *node, ir_node *mem);
341 INLINE ir_node **get_Return_res_arr (ir_node *node);
342 INLINE int       get_Return_n_ress (ir_node *node);
343 INLINE ir_node  *get_Return_res (ir_node *node, int pos);
344 INLINE void      set_Return_res (ir_node *node, int pos, ir_node *res);
345
346 INLINE ir_node *get_Raise_mem (ir_node *node);
347 INLINE void     set_Raise_mem (ir_node *node, ir_node *mem);
348 INLINE ir_node *get_Raise_exo_ptr (ir_node *node);  /* PoinTeR to EXception Object */
349 INLINE void     set_Raise_exo_ptr (ir_node *node, ir_node *exoptr);
350
351 /**
352  * Projection numbers for Raise.
353  */
354 typedef enum {
355   pn_Raise_X,    /**< Execution result. */
356   pn_Raise_M     /**< Memory result.    */
357 } pn_Raise;  /* Projection numbers for Raise. */
358
359 INLINE tarval  *get_Const_tarval (ir_node *node);
360 INLINE void     set_Const_tarval (ir_node *node, tarval *con);
361 /* The source language type.  Must be an atomic type.  Mode of type must
362    be mode of node. For tarvals from entities type must be pointer to
363    entity type. */
364 INLINE type    *get_Const_type   (ir_node *node);
365 INLINE void     set_Const_type   (ir_node *node, type *tp);
366
367 /**  This enum names the three different kinds of symbolic Constants
368      represented by SymConst.  The content of the attribute type_or_id
369      depends on this tag.  Use the proper access routine after testing
370      this flag. */
371 typedef enum {
372   type_tag,          /**< The SymConst is a type tag for the given type.
373             Type_or_id_p is type *. */
374   size,              /**< The SymConst is the size of the given type.
375             Type_or_id_p is type *. */
376   linkage_ptr_info   /**< The SymConst is a symbolic pointer to be filled in
377             by the linker. Type_or_id_p is ident *. */
378 } symconst_kind;
379
380 typedef union type_or_id * type_or_id_p;
381 INLINE symconst_kind get_SymConst_kind (const ir_node *node);
382 INLINE void          set_SymConst_kind (ir_node *node, symconst_kind num);
383 /* Only to access SymConst of kind type_tag or size.  Else assertion: */
384 INLINE type    *get_SymConst_type (ir_node *node);
385 INLINE void     set_SymConst_type (ir_node *node, type *tp);
386 /* Only to access SymConst of kind linkage_ptr_info.  Else assertion: */
387 INLINE ident   *get_SymConst_ptrinfo (ir_node *node);
388 INLINE void     set_SymConst_ptrinfo (ir_node *node, ident *ptrinfo);
389 /* Sets both: type and ptrinfo.  Needed to treat the node independent of
390    its semantics.  Does a memcpy for the memory tori points to. */
391 INLINE type_or_id_p get_SymConst_type_or_id (ir_node *node);
392 INLINE void set_SymConst_type_or_id (ir_node *node, type_or_id_p tori);
393
394 INLINE ir_node *get_Sel_mem (ir_node *node);
395 INLINE void     set_Sel_mem (ir_node *node, ir_node *mem);
396 INLINE ir_node *get_Sel_ptr (ir_node *node);  /* ptr to the object to select from */
397 INLINE void     set_Sel_ptr (ir_node *node, ir_node *ptr);
398 INLINE ir_node **get_Sel_index_arr (ir_node *node);
399 INLINE int      get_Sel_n_indexs (ir_node *node);
400 INLINE ir_node *get_Sel_index (ir_node *node, int pos);
401 INLINE void     set_Sel_index (ir_node *node, int pos, ir_node *index);
402 INLINE entity  *get_Sel_entity (ir_node *node); /* entity to select */
403 INLINE void     set_Sel_entity (ir_node *node, entity *ent);
404
405 /**
406  * Projection numbers for result of Call node: use for Proj nodes!
407  *
408  * @remark old name convention!
409  */
410 typedef enum {
411   pncl_memory = 0,        /**< The memory result. */
412   pncl_exc_target = 1,    /**< The control flow result branching to the exception handler */
413   pncl_result_tuple = 2,  /**< The tuple containing all (0, 1, 2, ...) results */
414   pncl_exc_memory = 3,    /**< The memory result in case the called method terminated with
415                   an exception */
416   pncl_value_res_base = 4 /**< A pointer to the memory region containing copied results
417                   passed by value (for compound result types). */
418 } pncl_number;   /* pncl: Projection Number CaLl */
419
420 /**
421  * Projection numbers for result of Call node: use for Proj nodes!
422  */
423 typedef enum {
424   pn_Call_M_regular = 0,  /**< The memory result. */
425   pn_Call_T_result  = 2,  /**< The tuple containing all (0, 1, 2, ...) results */
426   pn_Call_P_value_res_base = 4,/**< A pointer to the memory region containing copied results
427                  passed by value (for compound result types). */
428   pn_Call_X_except  = 1,  /**< The control flow result branching to the exception handler */
429   pn_Call_M_except  = 3   /**< The memory result in case the called method terminated with
430                  an exception */
431 } pn_Call;   /* Projection numbers for Call. */
432
433 INLINE ir_node *get_Call_mem (ir_node *node);
434 INLINE void     set_Call_mem (ir_node *node, ir_node *mem);
435 INLINE ir_node *get_Call_ptr (ir_node *node);
436 INLINE void     set_Call_ptr (ir_node *node, ir_node *ptr);
437 INLINE ir_node **get_Call_param_arr (ir_node *node);
438 /** Gets the number of parameters of a call. */
439 INLINE int      get_Call_n_params (ir_node *node);
440 /** Gets the call parameter at position pos. */
441 INLINE ir_node *get_Call_param (ir_node *node, int pos);
442 /** Sets the call parameter at position pos. */
443 INLINE void     set_Call_param (ir_node *node, int pos, ir_node *param);
444 /** Gets the type of a call. */
445 INLINE type    *get_Call_type (ir_node *node);
446 /** Sets the type of a call. */
447 INLINE void     set_Call_type (ir_node *node, type *tp);
448 /** Gets the arity of a call. Identical to get_Call_n_params(). */
449 INLINE int      get_Call_arity (ir_node *node);
450
451 /* Set, get and remove the callee-analysis.
452    The array is only accessible if information is valid.
453    It contains NULL for called methods that are not within
454    the compilation unit. */
455 int     Call_has_callees      (ir_node *node);
456 int     get_Call_n_callees    (ir_node * node);
457 entity *get_Call_callee       (ir_node * node, int pos);
458 /* assumes current_ir_graph set properly! */
459 void    set_Call_callee_arr   (ir_node * node, int n, entity ** arr);
460 void    remove_Call_callee_arr(ir_node * node);
461
462 ir_node  *get_CallBegin_ptr  (ir_node *node);
463 void      set_CallBegin_ptr  (ir_node *node, ir_node *ptr);
464 /* @@@ old -- use get_irn_irg instead!  */
465 ir_graph *get_CallBegin_irg  (ir_node *node);
466 ir_node  *get_CallBegin_call (ir_node *node);
467 void      set_CallBegin_call (ir_node *node, ir_node *call);
468
469 INLINE ir_node *get_FuncCall_ptr (ir_node *node);
470 INLINE void     set_FuncCall_ptr (ir_node *node, ir_node *ptr);
471 INLINE ir_node **get_FuncCall_param_arr (ir_node *node);
472 /** Gets the number of parameters of a func call. */
473 INLINE int      get_FuncCall_n_params (ir_node *node);
474 /** Gets the func call parameter at position pos. */
475 INLINE ir_node *get_FuncCall_param (ir_node *node, int pos);
476 /** Sets the func call parameter at position pos. */
477 INLINE void     set_FuncCall_param (ir_node *node, int pos, ir_node *param);
478 /** Gets the type of a func call. */
479 INLINE type    *get_FuncCall_type (ir_node *node);
480 /** Sets the type of a func call. */
481 INLINE void     set_FuncCall_type (ir_node *node, type *tp);
482 /** Gets the arity of a func call. Identical to get_FuncCall_n_params(). */
483 INLINE int      get_FuncCall_arity (ir_node *node);
484
485 /* Set, get and remove the callee-analysis.
486    The array is only accessible if information is valid.
487    It contains NULL for called methods that are not within
488    the compilation unit. */
489 int     FuncCall_has_callees      (ir_node *node);
490 int     get_FuncCall_n_callees    (ir_node * node);
491 entity *get_FuncCall_callee       (ir_node * node, int pos);
492 /* assumes current_ir_graph set properly! */
493 void    set_FuncCall_callee_arr   (ir_node * node, int n, entity ** arr);
494 void    remove_FuncCall_callee_arr(ir_node * node);
495
496 /* For unary and binary arithmetic operations the access to the
497    operands can be factored out.  Left is the first, right the
498    second arithmetic value  as listed in tech report 1999-44.
499    unops are: Minus, Abs, Not, Conv, Cast
500    binops are: Add, Sub, Mul, Quot, DivMod, Div, Mod, And, Or, Eor, Shl,
501    Shr, Shrs, Rot, Cmp */
502 INLINE int      is_unop (ir_node *node);
503 INLINE ir_node *get_unop_op (ir_node *node);
504 INLINE void     set_unop_op (ir_node *node, ir_node *op);
505 INLINE int      is_binop (ir_node *node);
506 INLINE ir_node *get_binop_left (ir_node *node);
507 INLINE void     set_binop_left (ir_node *node, ir_node *left);
508 INLINE ir_node *get_binop_right (ir_node *node);
509 INLINE void     set_binop_right (ir_node *node, ir_node *right);
510
511 INLINE ir_node *get_Add_left (ir_node *node);
512 INLINE void     set_Add_left (ir_node *node, ir_node *left);
513 INLINE ir_node *get_Add_right (ir_node *node);
514 INLINE void     set_Add_right (ir_node *node, ir_node *right);
515
516 INLINE ir_node *get_Sub_left (ir_node *node);
517 INLINE void     set_Sub_left (ir_node *node, ir_node *left);
518 INLINE ir_node *get_Sub_right (ir_node *node);
519 INLINE void     set_Sub_right (ir_node *node, ir_node *right);
520
521 INLINE ir_node *get_Minus_op (ir_node *node);
522 INLINE void     set_Minus_op (ir_node *node, ir_node *op);
523
524 INLINE ir_node *get_Mul_left (ir_node *node);
525 INLINE void     set_Mul_left (ir_node *node, ir_node *left);
526 INLINE ir_node *get_Mul_right (ir_node *node);
527 INLINE void     set_Mul_right (ir_node *node, ir_node *right);
528
529 INLINE ir_node *get_Quot_left (ir_node *node);
530 INLINE void     set_Quot_left (ir_node *node, ir_node *left);
531 INLINE ir_node *get_Quot_right (ir_node *node);
532 INLINE void     set_Quot_right (ir_node *node, ir_node *right);
533 INLINE ir_node *get_Quot_mem (ir_node *node);
534 INLINE void     set_Quot_mem (ir_node *node, ir_node *mem);
535
536 /**
537  * Projection numbers for Quot: use for Proj nodes!
538  */
539 typedef enum {
540   pn_Quot_M,           /**< Memory result.    */
541   pn_Quot_X_except,    /**< Execution result if exception occured. */
542   pn_Quot_res          /**< Result of computation. */
543 } pn_Quot;  /* Projection numbers for Quot. */
544
545 INLINE ir_node *get_DivMod_left (ir_node *node);
546 INLINE void     set_DivMod_left (ir_node *node, ir_node *left);
547 INLINE ir_node *get_DivMod_right (ir_node *node);
548 INLINE void     set_DivMod_right (ir_node *node, ir_node *right);
549 INLINE ir_node *get_DivMod_mem (ir_node *node);
550 INLINE void     set_DivMod_mem (ir_node *node, ir_node *mem);
551
552 /**
553  * Projection numbers for DivMod: use for Proj nodes!
554  */
555 typedef enum {
556   pn_DivMod_M,           /**< Memory result.    */
557   pn_DivMod_X_except,    /**< Execution result if exception occured. */
558   pn_DivMod_res_div,     /**< Result of computation a / b. */
559   pn_DivMod_res_mod      /**< Result of computation a % b. */
560 } pn_DivMod;  /* Projection numbers for DivMod. */
561
562 INLINE ir_node *get_Div_left (ir_node *node);
563 INLINE void     set_Div_left (ir_node *node, ir_node *left);
564 INLINE ir_node *get_Div_right (ir_node *node);
565 INLINE void     set_Div_right (ir_node *node, ir_node *right);
566 INLINE ir_node *get_Div_mem (ir_node *node);
567 INLINE void     set_Div_mem (ir_node *node, ir_node *mem);
568
569 /**
570  * Projection numbers for Div: use for Proj nodes!
571  */
572 typedef enum {
573   pn_Div_M,           /**< Memory result.    */
574   pn_Div_X_except,    /**< Execution result if exception occured. */
575   pn_Div_res          /**< Result of computation. */
576 } pn_Div;  /* Projection numbers for Div. */
577
578 INLINE ir_node *get_Mod_left (ir_node *node);
579 INLINE void     set_Mod_left (ir_node *node, ir_node *left);
580 INLINE ir_node *get_Mod_right (ir_node *node);
581 INLINE void     set_Mod_right (ir_node *node, ir_node *right);
582 INLINE ir_node *get_Mod_mem (ir_node *node);
583 INLINE void     set_Mod_mem (ir_node *node, ir_node *mem);
584
585 /**
586  * Projection numbers for Mod: use for Proj nodes!
587  */
588 typedef enum {
589   pn_Mod_M,           /**< Memory result.    */
590   pn_Mod_X_except,    /**< Execution result if exception occured. */
591   pn_Mod_res          /**< Result of computation. */
592 } pn_Mod;  /* Projection numbers for Mod. */
593
594 INLINE ir_node *get_Abs_op (ir_node *node);
595 INLINE void     set_Abs_op (ir_node *node, ir_node *op);
596
597 INLINE ir_node *get_And_left (ir_node *node);
598 INLINE void     set_And_left (ir_node *node, ir_node *left);
599 INLINE ir_node *get_And_right (ir_node *node);
600 INLINE void     set_And_right (ir_node *node, ir_node *right);
601
602 INLINE ir_node *get_Or_left (ir_node *node);
603 INLINE void     set_Or_left (ir_node *node, ir_node *left);
604 INLINE ir_node *get_Or_right (ir_node *node);
605 INLINE void     set_Or_right (ir_node *node, ir_node *right);
606
607 INLINE ir_node *get_Eor_left (ir_node *node);
608 INLINE void     set_Eor_left (ir_node *node, ir_node *left);
609 INLINE ir_node *get_Eor_right (ir_node *node);
610 INLINE void     set_Eor_right (ir_node *node, ir_node *right);
611
612 INLINE ir_node *get_Not_op (ir_node *node);
613 INLINE void     set_Not_op (ir_node *node, ir_node *op);
614
615 /**
616  * Projection numbers for Cmp are defined several times.
617  * The bit patterns are used for various tests, so don't change.
618  * The "unordered" values are possible results of comparing
619  * floating point numbers.
620  */
621 typedef enum {
622   pn_Cmp_False = 0,   /**< false */
623   pn_Cmp_Eq,          /**< equal */
624   pn_Cmp_Lt,          /**< less */
625   pn_Cmp_Le,          /**< less or equal */
626   pn_Cmp_Gt,          /**< greater */
627   pn_Cmp_Ge,          /**< greater or equal */
628   pn_Cmp_Lg,          /**< less or greater */
629   pn_Cmp_Leg = 7,     /**< less, equal or greater = ordered */
630   pn_Cmp_Uo,          /**< unordered */
631   pn_Cmp_Ue,          /**< unordered or equal */
632   pn_Cmp_Ul,          /**< unordered or less */
633   pn_Cmp_Ule,         /**< unordered, less or equal */
634   pn_Cmp_Ug,          /**< unordered or greater */
635   pn_Cmp_Uge,         /**< unordered, greater or equal */
636   pn_Cmp_Ne,          /**< unordered, less or greater = not equal */
637   pn_Cmp_True = 15    /**< true */
638   /* not_mask = Leg*/   /* bits to flip to negate comparison * @@ hack for jni interface */
639 } pn_Cmp;   /* Projection numbers for Cmp */
640 //#define not_mask pn_Cmp_Leg
641
642 INLINE const char *get_pnc_string(int pnc);
643 INLINE int         get_negated_pnc(int pnc);
644 INLINE ir_node *get_Cmp_left (ir_node *node);
645 INLINE void     set_Cmp_left (ir_node *node, ir_node *left);
646 INLINE ir_node *get_Cmp_right (ir_node *node);
647 INLINE void     set_Cmp_right (ir_node *node, ir_node *right);
648
649 INLINE ir_node *get_Shl_left (ir_node *node);
650 INLINE void     set_Shl_left (ir_node *node, ir_node *left);
651 INLINE ir_node *get_Shl_right (ir_node *node);
652 INLINE void     set_Shl_right (ir_node *node, ir_node *right);
653
654 INLINE ir_node *get_Shr_left (ir_node *node);
655 INLINE void     set_Shr_left (ir_node *node, ir_node *left);
656 INLINE ir_node *get_Shr_right (ir_node *node);
657 INLINE void     set_Shr_right (ir_node *node, ir_node *right);
658
659 INLINE ir_node *get_Shrs_left (ir_node *node);
660 INLINE void     set_Shrs_left (ir_node *node, ir_node *left);
661 INLINE ir_node *get_Shrs_right (ir_node *node);
662 INLINE void     set_Shrs_right (ir_node *node, ir_node *right);
663
664 INLINE ir_node *get_Rot_left (ir_node *node);
665 INLINE void     set_Rot_left (ir_node *node, ir_node *left);
666 INLINE ir_node *get_Rot_right (ir_node *node);
667 INLINE void     set_Rot_right (ir_node *node, ir_node *right);
668
669 INLINE ir_node *get_Conv_op (ir_node *node);
670 INLINE void     set_Conv_op (ir_node *node, ir_node *op);
671
672 /* Does Cast need a mem operator?
673  * Cast should only depend on the type, not on the state of an
674  * entity.  But:  we initialze various fields after Alloc, that
675  * are accessed in the cast.  This required some precaution, to
676  * get the right memory into the Loads generated from the cast.
677  */
678 INLINE ir_node *get_Cast_op (ir_node *node);
679 INLINE void     set_Cast_op (ir_node *node, ir_node *op);
680 INLINE type    *get_Cast_type (ir_node *node);
681 INLINE void     set_Cast_type (ir_node *node, type *to_tp);
682
683 /* Returns true if n is Phi or Filter in interprocedural_view. */
684 INLINE int       is_Phi (ir_node *n);
685 /* These routines also work for Filter nodes in interprocedural view. */
686 INLINE ir_node **get_Phi_preds_arr (ir_node *node);
687 INLINE int       get_Phi_n_preds (ir_node *node);
688 INLINE ir_node  *get_Phi_pred (ir_node *node, int pos);
689 INLINE void      set_Phi_pred (ir_node *node, int pos, ir_node *pred);
690
691 INLINE ir_node  *get_Filter_pred(ir_node *node);
692 INLINE void      set_Filter_pred(ir_node *node, ir_node *pred);
693 INLINE long      get_Filter_proj(ir_node *node);
694 INLINE void      set_Filter_proj(ir_node *node, long proj);
695 /* set the interprocedural predecessors, ...d_arr uses current_ir_graph.
696  * @@@ Maybe better:  arity is zero if no cg preds. */
697 void             set_Filter_cg_pred_arr(ir_node * node, int arity, ir_node ** in);
698 void             set_Filter_cg_pred(ir_node * node, int pos, ir_node * pred);
699 int              get_Filter_n_cg_preds(ir_node *node);
700 ir_node *        get_Filter_cg_pred(ir_node *node, int pos);
701
702 /**
703  * Projection numbers for Load: use for Proj nodes!
704  */
705 typedef enum {
706   pn_Load_M,         /**< Memory result.    */
707   pn_Load_X_except,  /**< Execution result if exception occured. */
708   pn_Load_res        /**< Result of load operation. */
709 } pn_Load;  /* Projection numbers for Load. */
710
711 INLINE ir_node *get_Load_mem (ir_node *node);
712 INLINE void     set_Load_mem (ir_node *node, ir_node *mem);
713 INLINE ir_node *get_Load_ptr (ir_node *node);
714 INLINE void     set_Load_ptr (ir_node *node, ir_node *ptr);
715
716 /**
717  * Projection numbers for Store: use for Proj nodes!
718  */
719 typedef enum {
720   pn_Store_M,         /**< Memory result.    */
721   pn_Store_X_except   /**< Execution result if exception occured. */
722 } pn_Store;  /* Projection numbers for Store. */
723
724 INLINE ir_node *get_Store_mem (ir_node *node);
725 INLINE void     set_Store_mem (ir_node *node, ir_node *mem);
726 INLINE ir_node *get_Store_ptr (ir_node *node);
727 INLINE void     set_Store_ptr (ir_node *node, ir_node *ptr);
728 INLINE ir_node *get_Store_value (ir_node *node);
729 INLINE void     set_Store_value (ir_node *node, ir_node *value);
730
731 /**
732  * Projection numbers for Alloc: use for Proj nodes!
733  */
734 typedef enum {
735   pn_Alloc_M,    /**< Memory result. */
736   pn_Alloc_X_except,    /**< Execution result if exception occured. */
737   pn_Alloc_res   /**< Result of allocation. */
738 } pn_Alloc;  /* Projection numbers for Alloc. */
739
740 INLINE ir_node *get_Alloc_mem (ir_node *node);
741 INLINE void     set_Alloc_mem (ir_node *node, ir_node *mem);
742 INLINE ir_node *get_Alloc_size (ir_node *node);
743 INLINE void     set_Alloc_size (ir_node *node, ir_node *size);
744 INLINE type    *get_Alloc_type (ir_node *node);
745 INLINE void     set_Alloc_type (ir_node *node, type *tp);
746
747 /** The allocation place. */
748 typedef enum {
749   stack_alloc,          /**< Alloc allocates the object on the stack. */
750   heap_alloc            /**< Alloc allocates the object on the heap. */
751 } where_alloc;
752
753 INLINE where_alloc  get_Alloc_where (ir_node *node);
754 INLINE void         set_Alloc_where (ir_node *node, where_alloc where);
755
756 INLINE ir_node *get_Free_mem (ir_node *node);
757 INLINE void     set_Free_mem (ir_node *node, ir_node *mem);
758 INLINE ir_node *get_Free_ptr (ir_node *node);
759 INLINE void     set_Free_ptr (ir_node *node, ir_node *ptr);
760 INLINE ir_node *get_Free_size (ir_node *node);
761 INLINE void     set_Free_size (ir_node *node, ir_node *size);
762 INLINE type    *get_Free_type (ir_node *node);
763 INLINE void     set_Free_type (ir_node *node, type *tp);
764
765 INLINE ir_node **get_Sync_preds_arr (ir_node *node);
766 INLINE int       get_Sync_n_preds (ir_node *node);
767 INLINE ir_node  *get_Sync_pred (ir_node *node, int pos);
768 INLINE void      set_Sync_pred (ir_node *node, int pos, ir_node *pred);
769
770 INLINE ir_node  *get_Proj_pred (ir_node *node);
771 INLINE void      set_Proj_pred (ir_node *node, ir_node *pred);
772 /* Why long? shouldn't int be enough, and smaller? Or even byte? */
773 INLINE long      get_Proj_proj (ir_node *node);
774 INLINE void      set_Proj_proj (ir_node *node, long proj);
775
776 INLINE ir_node **get_Tuple_preds_arr (ir_node *node);
777 INLINE int       get_Tuple_n_preds (ir_node *node);
778 INLINE ir_node  *get_Tuple_pred (ir_node *node, int pos);
779 INLINE void      set_Tuple_pred (ir_node *node, int pos, ir_node *pred);
780
781 INLINE ir_node  *get_Id_pred (ir_node *node);
782 INLINE void      set_Id_pred (ir_node *node, ir_node *pred);
783
784 /** Confirm has a single result and returns 'value' unchanged.
785  *  The node expresses a restriction on 'value':
786  *  'value' 'cmp' 'bound' == true.                                 */
787 INLINE ir_node *get_Confirm_value (ir_node *node);
788 INLINE void     set_Confirm_value (ir_node *node, ir_node *value);
789 INLINE ir_node *get_Confirm_bound (ir_node *node);
790 INLINE void     set_Confirm_bound (ir_node *node, ir_node *bound);
791 INLINE pn_Cmp   get_Confirm_cmp   (ir_node *node);
792 INLINE void     set_Confirm_cmp   (ir_node *node, pn_Cmp cmp);
793
794 /*
795  *
796  * NAME Auxiliary routines
797  *
798  *  Not properly documented ;-)
799  *
800  */
801
802 /** returns operand of node if node is a Proj. */
803 INLINE ir_node *skip_Proj (ir_node *node);
804 /** returns operand of node if node is a Id */
805 INLINE ir_node *skip_nop  (ir_node *node);
806 INLINE ir_node *skip_Id  (ir_node *node);   /* Same as skip_nop. */
807 /* returns corresponding operand of Tuple if node is a Proj from
808    a Tuple. */
809 INLINE ir_node *skip_Tuple (ir_node *node);
810 /** returns true if node is a Bad node. */
811 INLINE int      is_Bad    (ir_node *node);
812 /** returns true if the node is not a Block */
813 INLINE int      is_no_Block (ir_node *node);
814 /** returns true if the node is a Block */
815 INLINE int      is_Block (ir_node *node);
816 /** returns true if node is a Unknown node. */
817 INLINE int      is_Unknown (ir_node *node);
818 /** returns true if node is a Proj node or a Filter node in
819  * intraprocedural view */
820 INLINE int      is_Proj (const ir_node *node);
821 /** Returns true if the operation manipulates control flow:
822    Start, End, Jmp, Cond, Return, Raise, Bad, CallBegin, EndReg, EndExcept */
823 int is_cfop(ir_node *node);
824
825 /* @@@ old -- use get_irn_irg instead!  */
826 ir_graph *get_ip_cfop_irg(ir_node *n);
827
828 /** Returns true if the operation manipulates interprocedural control flow:
829     CallBegin, EndReg, EndExcept */
830 int is_ip_cfop(ir_node *node);
831 /** Returns true if the operation can change the control flow because
832     of an exception: Call, Quot, DivMod, Div, Mod, Load, Store, Alloc,
833     Bad. */
834 int is_fragile_op(ir_node *node);
835 /** Returns the memory operand of fragile operations. */
836 ir_node *get_fragile_op_mem(ir_node *node);
837
838 #include "ident.h"
839
840 #ifdef __GNUC__
841 /* GNU C has the __FUNCTION__ extension */
842 #define __MYFUNC__ __FUNCTION__
843 #else
844 /* use Filename instead */
845 #define __MYFUNC__ __FILE__
846 #endif
847
848 /* !!!!!!!!! @@@
849    Don't format with "\", firmjni gets problems */
850 /** Output location */
851 #define DDM      printf("%s(l.%i).\n",                       __MYFUNC__, __LINE__);
852 /** Output the firm kind of the node */
853 #define DDMK(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__,  print_firm_kind(X), (void *)(X));
854 /** Output information about a node */
855 #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), (void *)(X))
856 /** Output information about a node and its block */
857 #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)))
858 /** Output information about a type */
859 #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), (void *)(X))
860 /** Output information about an entity */
861 #define DDME(X)  printf("%s(l.%i) %s: %ld (%p)\n",           __MYFUNC__, __LINE__, get_entity_name(X), get_entity_nr(X), (void *)(X))
862 /** Output information about an entity and its type */
863 #define DDMET(X) printf("%s(l.%i) %s (typ: %s): %ld (%p)\n", __MYFUNC__, __LINE__, get_entity_name(X), get_type_name(get_entity_type(X)), get_entity_nr(X), (void *)(X))
864 /** Output information about an entity and its owner */
865 #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), (void *)(X))
866 /** Output information about a graph */
867 #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), (void *)(X))
868 /** Output information about an ident */
869 #define DDMI(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__, id_to_str(X), (void *)(X))
870 /** Output information about a mode */
871 #define DDMM(X)  printf("%s(l.%i) %s: %p\n",                 __MYFUNC__, __LINE__, get_mode_name(X), (void *)(X))
872 /** Output information about a loop */
873 #define DDML(X)  printf("%s(l.%i) loop with depth %d: %d\n", __MYFUNC__, __LINE__, get_loop_depth(X), get_loop_loop_nr(X))
874 /** Output information about a tarVal */
875 #define DDMV(X)  printf("%s(l.%i) tarval: ",__MYFUNC__, __LINE__); tarval_printf(X); printf(" (%p)\n", (void *)(X));
876
877 /*@}*/ /* end of ir_node group definition */
878
879
880 # endif /* _IRNODE_H_ */