added skip_Pin()
[libfirm] / include / libfirm / ircons.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   Various irnode constructors. Automatic construction of SSA
23  *          representation.
24  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Boris Boesler,
25  *          Michael Beck
26  * @version $Id$
27  */
28
29 /**@todo
30  Ideas for improvement:
31  -# Handle construction of exceptions more comfortable:
32     Add new constructors that pass the exception region (or better the
33     Phi for the memories, the ex. region can be found from there) as parameter,
34     constructor then adds all Proj nodes and returns the pointer
35     to the Proj node that selects the result of the arithmetic operation.
36  -# Maybe hide the exception region in a global variable, especially if
37     it is always unambiguous.
38 */
39
40 /**
41  *  @file
42  *
43  *  documentation no more supported since 2001
44  *
45  *  IR node construction.
46  *
47  *    This file documents all datatypes and constructors needed to
48  *    build a FIRM representation of a procedure.  The constructors are
49  *    also implemented in this file.
50  *
51  *    The documentation also gives a short manual how to use the library.
52  *
53  *    For extensive documentation of FIRM see UKA Techreport 1999-14.
54  *
55  *
56  *    Three kinds of nodes
57  *    --------------------
58  *
59  *      There are three kinds of nodes known to the IR:  entities,
60  *      types, and ir_nodes
61  *
62  *      + ir_nodes are the actual nodes of the FIRM intermediate representation.
63  *        They represent operations on the data of the program and control flow
64  *        operations.
65  *
66  *      + entity ==> implemented in entity.h
67  *        Refers to a single entity of the compiled program, e.g. a field of a
68  *        class or a method.  If a method or variable can not be assigned to
69  *        a method or class or the like, it is a global object.
70  *
71  *      + types ==> implemented in type.h
72  *        With types type information is represented.  There are several type
73  *       nodes.
74  *
75  *    Implementation of the FIRM operations: ir_node
76  *    ----------------------------------------------
77  *
78  *      Ir_nodes represent operations on the data of the program and control flow
79  *      operations.  Examples of ir_nodes:  Add, Jmp, Cmp
80  *
81  *      FIRM is a dataflow graph.  A dataflow graph is a directed graph,
82  *      so that every node has incoming and outgoing edges.  A node is
83  *      executable if every input at it's incoming edges is available.
84  *      Execution of the dataflow graph is started at the Start node which
85  *      has no incoming edges and ends when the End node executes, even if
86  *      there are still executable or not executed nodes.  (Is this true,
87  *      or must all executable nodes be executed?)  (There are exceptions
88  *      to the dataflow paradigma that all inputs have to be available
89  *      before a node can execute: Phi, Block.  See UKA Techreport
90  *      1999-14.)
91  *
92  *      The implementation of FIRM differs from the view as a dataflow
93  *      graph.  To allow fast traversion of the graph edges are
94  *      implemented as C-pointers.  Inputs to nodes are not ambiguous, the
95  *      results can be used by several other nodes.  Each input can be
96  *      implemented as a single pointer to a predecessor node, outputs
97  *      need to be lists of pointers to successors.  Therefore a node
98  *      contains pointers to it's predecessor so that the implementation is a
99  *      dataflow graph with reversed edges.  It has to be traversed bottom
100  *      up.
101  *
102  *      All nodes of the IR have the same basic structure.  They are
103  *      distinguished by a field containing the opcode.
104  *
105  *      The fields of an ir_node:
106  *
107  *      kind             A firm_kind tag containing k_ir_node.  This is useful for
108  *                       dynamically checking the type of a node.
109  *
110  *      *op              This ir_op gives the opcode as a tag and a string
111  *                       and the number of attributes of an ir_node.  There is
112  *                       one statically allocated struct ir_op for each opcode.
113  *
114  *      *mode            The ir_mode of the operation represented by this firm
115  *                      node.  The mode of the operation is the mode of it's
116  *                       result.  A Firm mode is a datatype as known to the target,
117  *               not a type of the source language.
118  *
119  *      visit            A flag for traversing the IR.
120  *
121  *      **in             An array with pointers to the node's predecessors.
122  *
123  *      *link            A pointer to an ir_node.  With this pointer all Phi nodes
124  *                       are attached to a Block, i.e., a Block points to it's
125  *                       first Phi node, this node points to the second Phi node
126  *                       in the Block and so fourth.  Used in mature_immBlock
127  *                       to find all Phi nodes to be matured.  It's also used to
128  *               annotate a node with a better, optimized version of it.
129  *
130  *      attr             An attr struct containing the attributes of the nodes. The
131  *                       attributes depend on the opcode of the node.  The number
132  *               of these attributes is given in op.
133  *
134  *    The struct ir_op
135  *    ----------------
136  *                       Not yet documented. See irop.h.
137  *
138  *    The struct ir_mode
139  *    ------------------
140  *                       Not yet documented. See irmode.h.
141  *
142  *    GLOBAL VARIABLES -- now also fields of ir_graph.
143  *    ================
144  *
145  *    current_ir_graph   Points to the current ir_graph.  All constructors for
146  *                      nodes add nodes to this graph.
147  *
148  *    ir_visited         An int used as flag to traverse the ir_graph.
149  *
150  *    block_visited      An int used as a flag to traverse block nodes in the
151  *                       graph.
152  *
153  *                       Others not yet documented.
154  *
155  *
156  *
157  *    CONSTRUCTOR FOR IR_GRAPH --> see irgraph.h
158  *    ========================
159  *
160  *
161  *    PROCEDURE TO CONSTRUCT AN IR GRAPH --> see also Firm tutorial
162  *    ==================================
163  *
164  *    This library supplies several interfaces to construct a FIRM graph for
165  *    a program:
166  *    - A "comfortable" interface generating SSA automatically.  Automatically
167  *      computed predecessors of nodes need not be specified in the constructors.
168  *      (new_<Node> constructurs and a set of additional routines.)
169  *    - A less comfortable interface where all predecessors except the block
170  *      an operation belongs to need to be specified.  SSA must be constructed
171  *      by hand.  (new_<Node> constructors and set_cur_block()).  This interface
172  *      is called "block oriented".  It automatically calles the local optimizations
173  *      for each new node.
174  *    - An even less comfortable interface where the block needs to be specified
175  *      explicitly.  This is called the "raw" interface. (new_r_<Node>
176  *      constructors).  These nodes are not optimized.
177  *
178  *    To use the functionality of the comfortable interface correctly the Front
179  *    End needs to follow certain protocols.  This is explained in the following.
180  *    To build a correct IR with the other interfaces study the semantics of
181  *    the firm node (See tech-reprot UKA 1999-14).  For the construction of
182  *    types and entities see the documentation in those modules.
183  *
184  *    First the Frontend needs to decide which variables and values used in
185  *    a procedure can be represented by dataflow edges.  These are variables
186  *    that need not be saved to memory as they cause no side effects visible
187  *    out of the procedure.  Often these are all compiler generated
188  *    variables and simple local variables of the procedure as integers,
189  *    reals and pointers.  The frontend has to count and number these variables.
190  *
191  *    First an ir_graph needs to be constructed with new_ir_graph.  The
192  *    constructor gets the number of local variables.  The graph is hold in the
193  *    global variable irg.
194  *
195  *    Now the construction of the procedure can start.  Several basic blocks can
196  *    be constructed in parallel, but the code within each block needs to
197  *    be constructed (almost) in program order.
198  *
199  *    A global variable holds the current basic block.  All (non block) nodes
200  *    generated are added to this block.  The current block can be set with
201  *    set_cur_block(block).  If several blocks are constructed in parallel block
202  *    switches need to be performed constantly.
203  *
204  *    To generate a Block node (with the comfortable interface) it's predecessor
205  *    control flow nodes need not be known.  In case of cyclic control flow these
206  *    can not be known when the block is constructed.  With add_immBlock_pred(block,
207  *    cfnode) predecessors can be added to the block.  If all predecessors are
208  *    added to the block mature_immBlock(b) needs to be called.  Calling mature_immBlock
209  *    early improves the efficiency of the Phi node construction algorithm.
210  *    But if several  blocks are constructed at once, mature_immBlock must only
211  *    be called after performing all set_values and set_stores in the block!
212  *    (See documentation of new_immBlock constructor.)
213  *
214  *    The constructors of arithmetic nodes require that their predecessors
215  *    are mentioned.  Sometimes these are available in the Frontend as the
216  *    predecessors have just been generated by the frontend.  If they are local
217  *    values the predecessors can be obtained from the library with a call to
218  *    get_value(local_val_nr).  (local_val_nr needs to be administered by
219  *    the Frontend.)  A call to get_value triggers the generation of Phi nodes.
220  *    If an arithmetic operation produces a local value this value needs to be
221  *    passed to the library by set_value(node, local_val_nr).
222  *    In straight line code these two operations just remember and return the
223  *    pointer to nodes producing the value.  If the value passes block boundaries
224  *    Phi nodes can be inserted.
225  *    Similar routines exist to manage the Memory operands: set_store and
226  *    get_store.
227  *
228  *    Several nodes produce more than one result.  An example is the Div node.
229  *    Such nodes return tuples of values.  From these individual values can be
230  *    extracted by proj nodes.
231  *
232  *    The following example illustrates the construction of a simple basic block
233  *    with two predecessors stored in variables cf_pred1 and cf_pred2, containing
234  *    the code
235  *      a = a div a;
236  *    and finally jumping to an other block.  The variable a got the local_val_nr
237  *    42 by the frontend.
238  *
239  *    ir_node *this_block, *cf_pred1, *cf_pred2, *a_val, *mem, *div, *res, *cf_op;
240  *
241  *    this_block = new_immBlock();
242  *    add_immBlock_pred(this_block, cf_pred1);
243  *    add_immBlock_pred(this_block, cf_pred2);
244  *    mature_immBlock(this_block);
245  *    a_val = get_value(42, mode_Iu);
246  *    mem = get_store();
247  *    div = new_Div(mem, a_val, a_val, mode_Iu);
248  *    mem = new_Proj(div, mode_M, pn_Div_M);   * for the numbers for Proj see docu *
249  *    res = new_Proj(div, mode_Iu, pn_Div_res);
250  *    set_store(mem);
251  *    set_value(res, 42);
252  *    cf_op = new_Jmp();
253  *
254  *    For further information look at the documentation of the nodes and
255  *    constructors and at the paragraph COPING WITH DATA OBJECTS at the
256  *    end of this documentation.
257  *
258  *    The comfortable interface contains the following routines further explained
259  *    below:
260  *
261  *    ir_node *new_immBlock (void);
262  *    ir_node *new_Start    (void);
263  *    ir_node *new_End      (void);
264  *    ir_node *new_Jmp      (void);
265  *    ir_node *new_IJmp     (ir_node *tgt);
266  *    ir_node *new_Cond     (ir_node *c);
267  *    ir_node *new_Return   (ir_node *store, int arity, ir_node **in);
268  *    ir_node *new_Const    (ir_mode *mode, tarval *con);
269  *    ir_node *new_SymConst (ir_mode *mode, symconst_symbol value, symconst_kind kind);
270  *    ir_node *new_simpleSel (ir_node *store, ir_node *objptr, ir_entity *ent);
271  *    ir_node *new_Sel    (ir_node *store, ir_node *objptr, int arity,
272  *                         ir_node **in, ir_entity *ent);
273  *    ir_node *new_Call   (ir_node *store, ir_node *callee, int arity,
274  *                 ir_node **in, type_method *type);
275  *    ir_node *new_Add    (ir_node *op1, ir_node *op2, ir_mode *mode);
276  *    ir_node *new_Sub    (ir_node *op1, ir_node *op2, ir_mode *mode);
277  *    ir_node *new_Minus  (ir_node *op,  ir_mode *mode);
278  *    ir_node *new_Mul    (ir_node *op1, ir_node *op2, ir_mode *mode);
279  *    ir_node *new_Mulh   (ir_node *op1, ir_node *op2, ir_mode *mode);
280  *    ir_node *new_Quot   (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
281  *    ir_node *new_DivMod (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
282  *    ir_node *new_Div    (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
283  *    ir_node *new_Mod    (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state;
284  *    ir_node *new_Abs    (ir_node *op,                ir_mode *mode);
285  *    ir_node *new_And    (ir_node *op1, ir_node *op2, ir_mode *mode);
286  *    ir_node *new_Or     (ir_node *op1, ir_node *op2, ir_mode *mode);
287  *    ir_node *new_Eor    (ir_node *op1, ir_node *op2, ir_mode *mode);
288  *    ir_node *new_Not    (ir_node *op,                ir_mode *mode);
289  *    ir_node *new_Shl    (ir_node *op,  ir_node *k,   ir_mode *mode);
290  *    ir_node *new_Shr    (ir_node *op,  ir_node *k,   ir_mode *mode);
291  *    ir_node *new_Shrs   (ir_node *op,  ir_node *k,   ir_mode *mode);
292  *    ir_node *new_Rotl   (ir_node *op,  ir_node *k,   ir_mode *mode);
293  *    ir_node *new_Cmp    (ir_node *op1, ir_node *op2);
294  *    ir_node *new_Conv   (ir_node *op, ir_mode *mode);
295  *    ir_node *new_Cast   (ir_node *op, ir_type *to_tp);
296  *    ir_node *new_Carry  (ir_node *op1, ir_node *op2, ir_mode *mode);
297  *    ir_node *new_Borrow (ir_node *op1, ir_node *op2, ir_mode *mode);
298  *    ir_node *new_Load   (ir_node *store, ir_node *addr, ir_mode *mode);
299  *    ir_node *new_Store  (ir_node *store, ir_node *addr, ir_node *val);
300  *    ir_node *new_Alloc  (ir_node *store, ir_node *size, ir_type *alloc_type,
301  *                         where_alloc where);
302  *    ir_node *new_Free   (ir_node *store, ir_node *ptr, ir_node *size,
303  *               ir_type *free_type, where_alloc where);
304  *    ir_node *new_Proj   (ir_node *arg, ir_mode *mode, long proj);
305  *    ir_node *new_NoMem  (void);
306  *    ir_node *new_Mux    (ir_node *sel, ir_node *ir_false, ir_node *ir_true, ir_mode *mode);
307  *    ir_node *new_CopyB  (ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type);
308  *    ir_node *new_InstOf (ir_node *store, ir_node obj, ir_type *ent);
309  *    ir_node *new_Raise  (ir_node *store, ir_node *obj);
310  *    ir_node *new_Bound  (ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
311  *    ir_node *new_Pin    (ir_node *node);
312  *
313  *    void add_immBlock_pred (ir_node *block, ir_node *jmp);
314  *    void mature_immBlock (ir_node *block);
315  *    void set_cur_block (ir_node *target);
316  *    ir_node *get_value (int pos, ir_mode *mode);
317  *    void set_value (int pos, ir_node *value);
318  *    ir_node *get_store (void);
319  *    void set_store (ir_node *store);
320  *    keep_alive (ir_node ka)
321  *
322  *    IR_NODES AND CONSTRUCTORS FOR IR_NODES
323  *    =======================================
324  *
325  *    All ir_nodes are defined by a common data structure.  They are distinguished
326  *    by their opcode and differ in the number of their attributes.
327  *
328  *    The constructor for the block node sets current_block to itself.
329  *    Const nodes are always added to the start block.
330  *    All other constructors add the created node to the current_block.
331  *    swich_block(block) allows to set the current block to block.
332  *
333  *    Watch for my inconsistent use of input and predecessor (dataflow view)
334  *    and `the node points to' (implementation view).
335  *
336  *    The following description of the nodes lists four properties them if these
337  *    are of interest:
338  *     - the parameters to the constructor
339  *     - the inputs of the Firm node
340  *     - the outputs of the Firm node
341  *     - attributes to the node
342  *
343  *    ------------
344  *
345  *    ir_node *new_immBlock (void)
346  *    ----------------------------
347  *
348  *    Creates a new block.  Sets current_block to itself.  When a new block is
349  *    created it cannot be known how many predecessors this block will have in the
350  *    control flow graph. Therefore the list of inputs can not be fixed at
351  *    creation.  Predecessors can be added with add_immBlock_pred (block, control flow
352  *    operation).  With every added predecessor the number of inputs to Phi nodes
353  *    also changes.
354  *
355  *    The block can be completed by mature_immBlock(block) if all predecessors are
356  *    known.  If several blocks are built at once, mature_immBlock can only be called
357  *    after set_value has been called for all values that are life at the end
358  *    of the block.  This is necessary so that Phi nodes created mature_immBlock
359  *    get the right predecessors in case of cyclic dependencies.  If all set_values
360  *    of this block are called after maturing it and before calling get_value
361  *    in some block that is control flow dependent on this block, the construction
362  *    is correct.
363  *
364  *    Example for faulty IR construction:  (draw the graph on a paper and you'll
365  *                                          get it ;-)
366  *
367  *      block_before_loop = new_block();
368  *      set_value(x);
369  *      mature_immBlock(block_before_loop);
370  *      before2header = new_Jmp;
371  *
372  *      loop_header = new_block ();
373  *      header2body - new_Jmp();
374  *
375  *      loop_body = new_block ();
376  *      body2header = new_Jmp();
377  *
378  *      add_immBlock_pred(loop_header, before2header);
379  *      add_immBlock_pred(loop_header, body2header);
380  *      add_immBlock_pred(loop_body, header2body);
381  *
382  *      mature_immBlock(loop_header);
383  *      mature_immBlock(loop_body);
384  *
385  *      get_value(loop_body, x);   //  gets the Phi in loop_header
386  *      set_value(loop_header, x); //  sets the value the above get_value should
387  *                                 //  have returned!!!
388  *
389  *    Mature_immBlock also fixes the number of inputs to the Phi nodes.  Mature_immBlock
390  *    should be called as early as possible, as afterwards the generation of Phi
391  *   nodes is more efficient.
392  *
393  *    Inputs:
394  *      There is an input for each control flow predecessor of the block.
395  *      The input points to an instruction producing an output of type X.
396  *      Possible predecessors:  Start, Jmp, Cond, Raise or Return or any node
397  *      possibly causing an exception.  (Often the real predecessors are Projs.)
398  *    Output:
399  *      Mode BB (R), all nodes belonging to this block should consume this output.
400  *      As they are strict (except Block and Phi node) it is a necessary condition
401  *      that the block node executed before any other node in this block executes.
402  *    Attributes:
403  *      block.matured  Indicates whether the block is mature.
404  *      block.**graph_arr
405  *                      This attribute contains all local values valid in this
406  *                      block. This is needed to build the Phi nodes and removed
407  *                      if the graph is complete.  This field is used by the
408  *              internal construction algorithm and should not be accessed
409  *              from outside.
410  *
411  *
412  *    ir_node *new_Block (int arity, ir_node **in)
413  *    --------------------------------------------
414  *
415  *    Creates a new Block with the given list of predecessors.  This block
416  *    is mature.  As other constructors calls optimization and vrfy for the
417  *    block.  If one of the predecessors is Unknown (as it has to be filled in
418  *    later) optimizations are skipped.  This is necessary to
419  *    construct Blocks in loops.  Leaving Unknown in the Block after finishing
420  *    the construction may have strange effects, especially for interprocedural
421  *    representation and analysis.
422  *
423  *
424  *    CONTROL FLOW OPERATIONS
425  *    -----------------------
426  *
427  *    In each block there must be exactly one of the control flow
428  *    operations Start, End, Jmp, Cond, Return or Raise.  The output of a
429  *    control flow operation points to the block to be executed next.
430  *
431  *    ir_node *new_Start (void)
432  *    -------------------------
433  *
434  *    Creates a start node.  Not actually needed public.  There is only one such
435  *   node in each procedure which is automatically created by new_ir_graph.
436  *
437  *    Inputs:
438  *      No inputs except the block it belogns to.
439  *    Output:
440  *      A tuple of 4 (5, 6) distinct values. These are labeled by the following
441  *      projection numbers (pn_Start):
442  *      * pn_Start_X_initial_exec    mode X, points to the first block to be exe *                                   cuted.
443  *      * pn_Start_M                 mode M, the global store
444  *      * pn_Start_P_frame_base      mode P, a pointer to the base of the proce  *                                   dures stack frame.
445  *      * pn_Start_P_globals         mode P, a pointer to the part of the memory *                                   containing_all_ global things.
446  *      * pn_Start_T_args            mode T, a tuple containing all arguments of *                                   the procedure.
447  *
448  *
449  *    ir_node *new_End (void)
450  *    -----------------------
451  *
452  *    Creates an end node.  Not actually needed public.  There is only one such
453  *   node in each procedure which is automatically created by new_ir_graph.
454  *
455  *    Inputs:
456  *      No inputs except the block it belongs to.
457  *    Output:
458  *      No output.
459  *
460  *    ir_node *new_Jmp (void)
461  *    -----------------------
462  *
463  *    Creates a Jmp node.
464  *
465  *    Inputs:
466  *      The block the node belongs to
467  *    Output:
468  *      Control flow to the next block.
469  *
470  *    ir_node *new_IJmp (ir_node *tgt)
471  *    -----------------------
472  *
473  *    Creates an IJmp node.
474  *
475  *    Inputs:
476  *      The node that represents the target jump address
477  *    Output:
478  *      Control flow to an unknown target, must be pinned by
479  *      the End node.
480  *
481  *    ir_node *new_Cond (ir_node *c)
482  *    ------------------------------
483  *
484  *    Creates a Cond node.  There are two versions of this node.
485  *
486  *    The Boolean Cond:
487  *    Input:
488  *      A value of mode b.
489  *    Output:
490  *      A tuple of two control flows.  The first is taken if the input is
491  *      false, the second if it is true.
492  *
493  *    The Switch Cond:
494  *    Input:
495  *      A value of mode I_u. (i)
496  *    Output:
497  *      A tuple of n control flows.  If the Cond's input is i, control
498  *      flow will procede along output i. If the input is >= n control
499  *      flow proceeds along output n.
500  *
501  *    ir_node *new_Return (ir_node *store, int arity, ir_node **in)
502  *    -------------------------------------------------------------
503  *
504  *    The return node has as inputs the results of the procedure.  It
505  *    passes the control flow to the end_block.
506  *
507  *    Inputs:
508  *      The memory state.
509  *      All results.
510  *    Output
511  *      Control flow to the end block.
512  *
513  *    ---------
514  *
515  *    ir_node *new_Const (ir_mode *mode, tarval *con)
516  *    -----------------------------------------------
517  *
518  *    Creates a constant in the constant table and adds a Const node
519  *    returning this value to the start block.
520  *
521  *    Parameters:
522  *      *mode            The mode of the constant.
523  *      *con             Points to an entry in the constant table.
524  *                       This pointer is added to the attributes of
525  *                       the node (self->attr.con)
526  *    Inputs:
527  *      No inputs except the block it belogns to.
528  *    Output:
529  *      The constant value.
530  *    Attribute:
531  *      attr.con   A tarval* pointer to the proper entry in the constant
532  *                 table.
533  *
534  *    ir_node *new_SymConst (ir_mode *mode,union symconst_symbol value, symconst_addr_ent kind)
535  *    -----------------------------------------------------------------------------------------
536  *
537  *    There are three five of symbolic constants:
538  *     symconst_type_tag   The symbolic constant represents a type tag.
539  *     symconst_type_size  The symbolic constant represents the size of a type.
540  *     symconst_type_align The symbolic constant represents the alignment of a type.
541  *     symconst_addr_name  Information for the linker, e.g. the name of a global
542  *                         variable.
543  *     symconst_addr_ent   The symbolic constant represents the address of an entity.
544  *
545  *    To represent a pointer to an entity that is represented by an entity
546  *    datastructure don't use
547  *      new_SymConst((type_or_id*)get_entity_ld_ident(ent), symconst_addr_name);.
548  *    Use a real const instead:
549  *      new_SymConst(ent, symconst_addr_ent);
550  *    This makes the Constant independent of name changes of the entity due to
551  *    mangling.
552  *
553  *    Parameters
554  *      kind        The kind of the symbolic constant: type_tag, size or link_info.
555  *      *type_or_id Points to the type the tag stands for or to the type
556  *                  whose size is represented by the constant or to an ident
557  *                  representing the linkage info.
558  *
559  *    Inputs:
560  *      No inputs except the block it belongs to.
561  *    Output:
562  *      A symbolic constant.
563  *
564  *    Attributes:
565  *      attr.i.num       The symconst_addr_ent, i.e. one of
566  *                        -symconst_type_tag
567  *                        -symconst_type_size
568  *                        -symconst_type_align
569  *                        -symconst_addr_name
570  *                        -symconst_addr_ent
571  *
572  *    If the attr.i.num is symconst_type_tag, symconst_type_size or symconst_type_align,
573  *    the node contains an attribute:
574  *
575  *      attr.i.*type,    a pointer to a type_class.
576  *        if it is linkage_ptr_info it contains
577  *      attr.i.*ptrinfo,  an ident holding information for the linker.
578  *
579  *    ---------------
580  *
581  *    ir_node *new_simpleSel (ir_node *store, ir_node *frame, ir_entity *sel)
582  *    -----------------------------------------------------------------------
583  *
584  *
585  *    Selects an entity from a compound type. This entity can be a field or
586  *    a method.
587  *
588  *    Parameters:
589  *      *store     The memory in which the object the entity should be selected
590  *                 from is allocated.
591  *      *frame     The pointer to the object.
592  *      *sel       The entity to select.
593  *
594  *    Inputs:
595  *      The memory containing the object.
596  *      A pointer to the object.
597  *      An unsigned integer.
598  *    Output:
599  *      A pointer to the selected entity.
600  *    Attributes:
601  *      attr.sel   Pointer to the entity
602  *
603  *
604  *    ir_node *new_Sel (ir_node *store, ir_node *frame, int arity, ir_node **in,
605  *    --------------------------------------------------------------------------
606  *                      ir_entity *sel)
607  *                      ---------------
608  *
609  *    Selects a field from an array type.  The entity has as owner the array, as
610  *    type the arrays element type.  The indices to access an array element are
611  *    given also.
612  *
613  *    Parameters:
614  *      *store     The memory in which the object the entity should be selected from
615  *                 is allocated.
616  *      *frame     The pointer to the object.
617  *      *arity     number of array indices.
618  *      *in        array with index inputs to the node.
619  *      *sel       The entity to select.
620  *
621  *    Inputs:
622  *      The memory containing the object.
623  *      A pointer to the object.
624  *      As much unsigned integer as there are array expressions.
625  *    Output:
626  *      A pointer to the selected entity.
627  *    Attributes:
628  *      attr.sel   Pointer to the entity
629  *
630  *    The constructors new_Sel and new_simpleSel generate the same IR nodes.
631  *    simpleSel just sets the arity of the index inputs to zero.
632  *
633  *
634  *    ARITHMETIC OPERATIONS
635  *    ---------------------
636  *
637  *    ir_node *new_Call (ir_node *store, ir_node *callee, int arity, ir_node **in,
638  *    ----------------------------------------------------------------------------
639  *                       type_method *type)
640  *                       ------------------
641  *
642  *    Creates a procedure call.
643  *
644  *    Parameters
645  *      *store           The actual store.
646  *      *callee          A pointer to the called procedure.
647  *      arity            The number of procedure parameters.
648  *      **in             An array with the pointers to the parameters.
649  *                       The constructor copies this array.
650  *      *type            Type information of the procedure called.
651  *
652  *    Inputs:
653  *      The store, the callee and the parameters.
654  *    Output:
655  *      A tuple containing the eventually changed store and the procedure
656  *      results.
657  *    Attributes:
658  *      attr.call        Contains the type information for the procedure.
659  *
660  *
661  *    ir_node *new_Add (ir_node *op1, ir_node *op2, ir_mode *mode)
662  *    ------------------------------------------------------------
663  *
664  *    Trivial.
665  *
666  *    ir_node *new_Sub (ir_node *op1, ir_node *op2, ir_mode *mode)
667  *    ------------------------------------------------------------
668  *
669  *    Trivial.
670  *
671  *    ir_node *new_Minus (ir_node *op, ir_mode *mode)
672  *    -----------------------------------------------
673  *
674  *    Unary Minus operations on integer and floating point values.
675  *
676  *    ir_node *new_Mul (ir_node *op1, ir_node *op2, ir_mode *mode)
677  *    ------------------------------------------------------------
678  *
679  *    Trivial.
680  *
681  *    ir_node *new_Mulh (ir_node *op1, ir_node *op2, ir_mode *mode)
682  *    ------------------------------------------------------------
683  *
684  *    Returns the high order bits of a n*n=2n multiplication.
685  *
686  *    ir_node *new_Quot (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state)
687  *    -------------------------------------------------------------------------------------------------
688  *
689  *    Quot performs exact division of floating point numbers.  It's mode
690  *    is Tuple, the mode of the result must match the Proj mode
691  *    that extracts the result of the arithmetic operations.
692  *
693  *    Inputs:
694  *      The store needed to model exceptions and the two operands.
695  *    Output:
696  *      A tuple containing a memory and a execution for modeling exceptions
697  *      and the result of the arithmetic operation.
698  *
699  *    ir_node *new_DivMod (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state)
700  *    ---------------------------------------------------------------------------------------------------
701  *
702  *    Performs Div and Mod on integer values.
703  *
704  *    Output:
705  *      A tuple containing a memory and a execution for modeling exceptions
706  *      and the two result of the arithmetic operations.
707  *
708  *    ir_node *new_Div (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state)
709  *    ------------------------------------------------------------------------------------------------
710  *
711  *    Trivial.
712  *
713  *    ir_node *new_Mod (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state)
714  *    ------------------------------------------------------------------------------------------------
715  *
716  *    Trivial.
717  *
718  *    ir_node *new_Abs (ir_node *op, ir_mode *mode)
719  *    ---------------------------------------------
720  *
721  *    Trivial.
722  *
723  *    ir_node *new_And (ir_node *op1, ir_node *op2, ir_mode *mode)
724  *    ------------------------------------------------------------
725  *
726  *    Trivial.
727  *
728  *    ir_node *new_Or (ir_node *op1, ir_node *op2, ir_mode *mode)
729  *    -----------------------------------------------------------
730  *
731  *    Trivial.
732  *
733  *    ir_node *new_Eor (ir_node *op1, ir_node *op2, ir_mode *mode)
734  *    ------------------------------------------------------------
735  *
736  *    Trivial.
737  *
738  *    ir_node *new_Not (ir_node *op, ir_mode *mode)
739  *    ---------------------------------------------
740  *
741  *    This node constructs a constant where all bits are set to one
742  *    and a Eor of this constant and the operator.  This simulates a
743  *    Not operation.
744  *
745  *    ir_node *new_Shl (ir_node *op, ir_node *k, ir_mode *mode)
746  *    ---------------------------------------------------------
747  *
748  *    Trivial.
749  *
750  *    ir_node *new_Shr (ir_node *op, ir_node *k, ir_mode *mode)
751  *    ---------------------------------------------------------
752  *
753  *    Logic shift right, i.e., zero extended.
754  *
755  *
756  *    ir_node *new_Shrs (ir_node *op, ir_node *k, ir_mode *mode)
757  *    ----------------------------------------------------------
758  *
759  *    Arithmetic shift right, i.e., sign extended.
760  *
761  *    ir_node *new_Rotl (ir_node *op, ir_node *k, ir_mode *mode)
762  *    ---------------------------------------------------------
763  *
764  *    Rotates the operand to the left by k bits.
765  *
766  *    ir_node *new_Carry (ir_node *op1, ir_node *op2, ir_mode *mode)
767  *    ------------------------------------------------------------
768  *
769  *    Calculates the Carry value for integer addition. Used only
770  *    in lowering code.
771  *
772  *    ir_node *new_Borrow (ir_node *op1, ir_node *op2, ir_mode *mode)
773  *    ------------------------------------------------------------
774  *
775  *    Calculates the Borrow value for integer substraction. Used only
776  *    in lowering code.
777  *
778  *    ir_node *new_Conv (ir_node *op, ir_mode *mode)
779  *    ---------------------------------------------
780  *
781  *    Mode conversion.  For allowed conversions see UKA Tech Report
782  *    1999-14.
783  *
784  *    ir_node *new_Cmp (ir_node *op1, ir_node *op2)
785  *    ---------------------------------------------
786  *
787  *    Input:
788  *      The two values to be compared.
789  *    Output:
790  *      A 16-tuple containing the results of the 16 different comparisons.
791  *      The following is a list giving the comparisons and a projection
792  *      number (pn_Cmp) to use in Proj nodes to extract the proper result.
793  *        pn_Cmp_False false
794  *        pn_Cmp_Eq    equal
795  *        pn_Cmp_Lt    less
796  *        pn_Cmp_Le    less or equal
797  *        pn_Cmp_Gt    greater
798  *        pn_Cmp_Ge    greater of equal
799  *        pn_Cmp_Lg    less or greater
800  *        pn_Cmp_Leg   less, equal or greater = ordered
801  *        pn_Cmp_Uo    unordered
802  *        pn_Cmp_Ue    unordered or equal
803  *        pn_Cmp_Ul    unordered or less
804  *        pn_Cmp_Ule   unordered, less or equal
805  *        pn_Cmp_Ug    unordered or greater
806  *        pn_Cmp_Uge   unordered, greater or equal
807  *        pn_Cmp_Ne    unordered, less or greater = not equal
808  *        pn_Cmp_True  true
809  *
810  *
811  *
812  *    ------------
813  *
814  *    In general, Phi nodes are automaitcally inserted.  In some cases, if
815  *    all predecessors of a block are known, an explicit Phi node constructor
816  *    is needed.  E.g., to construct a FIRM graph for a statement as
817  *      a = (b==c) ? 2 : 5;
818  *
819  *    ir_node *new_Phi (int arity, ir_node **in, ir_mode *mode)
820  *    ---------------------------------------------------------
821  *
822  *    Creates a Phi node. The in's order has to correspond to the order
823  *    of in's of current_block.  This is not checked by the library!
824  *    If one of the predecessors is Unknown (as it has to be filled in
825  *    later) optimizations are skipped.  This is necessary to
826  *    construct Phi nodes in loops.  Leaving Unknown in the Phi after finishing
827  *    the construction may have strange effects, especially for interprocedural
828  *    representation and analysis.
829  *
830  *    Parameter
831  *      arity            number of predecessors
832  *      **in             array with predecessors
833  *      *mode            The mode of it's inputs and output.
834  *    Inputs:
835  *      A Phi node has as many inputs as the block it belongs to.
836  *      Each input points to a definition of the same value on a
837  *      different path in the control flow.
838  *    Output
839  *      The definition valid in this block.
840  *
841  *    ir_node *new_Mux (ir_node *sel, ir_node *ir_false, ir_node *ir_true, ir_mode *mode)
842  *    -----------------------------------------------------------------------------
843  *
844  *    Creates a Mux node. This node implements the following semantic:
845  *    If the sel node (which must be of mode_b) evaluates to true, its value is
846  *    ir_true, else ir_false;
847  *
848  *
849  *
850  *    OPERATIONS TO MANAGE MEMORY EXPLICITLY
851  *    --------------------------------------
852  *
853  *    ir_node *new_Load (ir_node *store, ir_node *addr, ir_mode *mode)
854  *    ----------------------------------------------------------------
855  *
856  *    The Load operation reads a value from memory.
857  *
858  *    Parameters:
859  *    *store        The current memory.
860  *    *addr         A pointer to the variable to be read in this memory.
861  *    *mode         The mode of the value to be loaded.
862  *
863  *    Inputs:
864  *      The memory and a pointer to a variable in this memory.
865  *    Output:
866  *      A tuple of the memory, a control flow to be taken in case of
867  *      an exception and the loaded value.
868  *
869  *    ir_node *new_Store (ir_node *store, ir_node *addr, ir_node *val)
870  *    ----------------------------------------------------------------
871  *
872  *    The Store operation writes a value to a variable in memory.
873  *
874  *    Inputs:
875  *      The memory, a pointer to a variable in this memory and the value
876  *      to write to this variable.
877  *    Output:
878  *      A tuple of the changed memory and a control flow to be taken in
879  *      case of an exception.
880  *
881  *    ir_node *new_Alloc (ir_node *store, ir_node *size, ir_type *alloc_type,
882  *    -----------------------------------------------------------------------
883  *                        where_alloc where)
884  *                        ------------------
885  *
886  *    The Alloc node allocates a new variable.  It can be specified whether the
887  *    variable should be allocated to the stack or to the heap.
888  *
889  *    Parameters:
890  *      *store       The memory which shall contain the new variable.
891  *      **    *size        The number of bytes to allocate. Old. **
892  *      *size        We decided that the size easily can be derived from the type.
893  *                   This field is for allocating arrays, i.e., it gives the multiple
894  *           of the size of alloc_type to allocate memory for.
895  *      *alloc_type  The type of the allocated variable.
896  *      where        Where to allocate the variable, either heap_alloc or stack_alloc.
897  *
898  *    Inputs:
899  *      A memory and an unsigned integer.
900  *    Output:
901  *      A tuple of the changed memory, a control flow to be taken in
902  *      case of an exception and the pointer to the new variable.
903  *    Attributes:
904  *      a.where          Indicates where the variable is allocated.
905  *      a.*type          A pointer to the class the allocated data object
906  *                       belongs to.
907  *
908  *    ir_node *new_Free (ir_node *store, ir_node *ptr, ir_node *size, ir_type *free_type,
909  *    -----------------------------------------------------------------------------------
910  *                        where_alloc where)
911  *                        ------------------
912  *
913  *    The Free node frees memory of the given variable.
914  *
915  *    Parameters:
916  *      *store       The memory which shall contain the new variable.
917  *      *ptr         The pointer to the object to free.
918  *      *size        The number of objects of type free_type to free in a sequence.
919  *      *free_type   The type of the freed variable.
920  *      where        Where the variable was allocated, either heap_alloc or stack_alloc.
921  *
922  *    Inputs:
923  *      A memory, a pointer and an unsigned integer.
924  *    Output:
925  *      The changed memory.
926  *    Attributes:
927  *      f.*type          A pointer to the type information of the freed data object.
928  *
929  *    Not Implemented!
930  *
931  *    ir_node *new_Sync (int arity, ir_node **in)
932  *    -------------------------------------------
933  *
934  *    The Sync operation unifies several partial memory blocks.  These blocks
935  *    have to be pairwise disjunct or the values in common locations have to
936  *    be identical.  This operation allows to specify all operations that eventually
937  *    need several partial memory blocks as input with a single entrance by
938  *    unifying the memories with a preceding Sync operation.
939  *
940  *    Parameters
941  *      arity    The number of memories to synchronize.
942  *      **in     An array of pointers to nodes that produce an output of
943  *               type memory.
944  *    Inputs
945  *      Several memories.
946  *    Output
947  *      The unified memory.
948  *
949  *
950  *    SPECIAL OPERATIONS
951  *    ------------------
952  *
953  *    ir_node *new_Bad (void)
954  *    -----------------------
955  *
956  *    Returns the unique Bad node current_ir_graph->bad.
957  *    This node is used to express results of dead code elimination.
958  *
959  *    ir_node *new_NoMem (void)
960  *    -----------------------------------------------------------------------------------
961  *
962  *    Returns the unique NoMem node current_ir_graph->no_mem.
963  *    This node is used as input for operations that need a Memory, but do not
964  *    change it like Div by const != 0, analyzed calls etc.
965  *
966  *    ir_node *new_Proj (ir_node *arg, ir_mode *mode, long proj)
967  *    ----------------------------------------------------------
968  *
969  *    Selects one entry of a tuple.  This is a hidden edge with attributes.
970  *
971  *    Parameters
972  *      *arg      A node producing a tuple.
973  *      *mode     The mode of the value to project.
974  *      proj      The position of the value in the tuple.
975  *    Input:
976  *      The tuple.
977  *    Output:
978  *      The value.
979  *
980  *    ir_node *new_Tuple (int arity, ir_node **in)
981  *    --------------------------------------------
982  *
983  *    Builds a Tuple from single values.  This is needed to implement
984  *    optimizations that remove a node that produced a tuple.  The node can be
985  *    replaced by the Tuple operation so that the following Proj nodes have not to
986  *    be changed.  (They are hard to find due to the implementation with pointers
987  *    in only one direction.)  The Tuple node is smaller than any other
988  *    node, so that a node can be changed into a Tuple by just changing it's
989  *    opcode and giving it a new in array.
990  *
991  *    Parameters
992  *      arity    The number of tuple elements.
993  *      **in     An array containing pointers to the nodes producing the
994  *               tuple elements.
995  *
996  *    ir_node *new_Id (ir_node *val, ir_mode *mode)
997  *    ---------------------------------------------
998  *
999  *    The single output of the Id operation is it's input.  Also needed
1000  *    for optimizations.
1001  *
1002  *
1003  *    HIGH LEVEL OPERATIONS
1004  *    ---------------------
1005  *
1006  *    ir_node *new_CopyB (ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type)
1007  *    -----------------------------------------------------------------------------------
1008  *
1009  *    Describes a high level block copy of a compound type from address src to
1010  *    address dst. Must be lowered to a Call to a runtime memory copy function.
1011  *
1012  *
1013  *    HIGH LEVEL OPERATIONS: Exception Support
1014  *    ----------------------------------------
1015  *    See TechReport 1999-14, chapter Exceptions.
1016  *
1017  *    ir_node *new_InstOf(ir_node *store, ir_node *ptr, ir_type *type);
1018  *    -----------------------------------------------------------------------------------
1019  *
1020  *    Describes a high level type check. Must be lowered to a Call to a runtime check
1021  *    function.
1022  *
1023  *    ir_node *new_Raise (ir_node *store, ir_node *obj)
1024  *    -------------------------------------------------
1025  *
1026  *    Raises an exception.  Unconditional change of control flow.  Writes
1027  *    an explicit Except variable to memory to pass it to the exception
1028  *    handler.  Must be lowered to a Call to a runtime check
1029  *    function.
1030  *
1031  *    Inputs:
1032  *      The memory state.
1033  *      A pointer to the Except variable.
1034  *    Output:
1035  *      A tuple of control flow and the changed memory state.  The control flow
1036  *      points to the exception handler if it is definied in this procedure,
1037  *      else it points to the end_block.
1038  *
1039  *    ir_node *new_Bound  (ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
1040  *    -----------------------------------------------------------------------------------
1041  *
1042  *    Describes a high level bounds check. Must be lowered to a Call to a runtime check
1043  *    function.
1044  *
1045  *    ir_node *new_Pin  (ir_node *node);
1046  *    -----------------------------------------------------------------------------------
1047  *
1048  *    Pin the value of the node node in the current block  No users of the Pin node can
1049  *    float above the Block of the Pin. The node cannot float behind this block. Often
1050  *    used to Pin the NoMem node.
1051  *
1052  *
1053  *    COPING WITH DATA OBJECTS
1054  *    ========================
1055  *
1056  *    Two kinds of data objects have to be distinguished for generating
1057  *    FIRM.  First there are local variables other than arrays that are
1058  *    known to be alias free.  Second there are all other data objects.
1059  *    For the first a common SSA representation is built, the second
1060  *    are modeled by saving them to memory.  The memory is treated as
1061  *    a single local variable, the alias problem is hidden in the
1062  *    content of this variable.
1063  *
1064  *    All values known in a Block are listed in the block's attribute,
1065  *    block.**graph_arr which is used to automatically insert Phi nodes.
1066  *    The following two functions can be used to add a newly computed value
1067  *    to the array, or to get the producer of a value, i.e., the current
1068  *    live value.
1069  *
1070  *    inline void set_value (int pos, ir_node *value)
1071  *    -----------------------------------------------
1072  *
1073  *    Has to be called for every assignment to a local variable.  It
1074  *    adds the value to the array of used values at position pos.  Pos
1075  *    has to be a unique identifier for an entry in the procedure's
1076  *    definition table.  It can be used to access the value again.
1077  *    Requires current_block to be set correctly.
1078  *
1079  *    ir_node *get_value (int pos, ir_mode *mode)
1080  *    -------------------------------------------
1081  *
1082  *    Returns the node defining the value referred to by pos. If the
1083  *    value is not defined in this block a Phi node is generated and
1084  *    all definitions reaching this Phi node are collected.  It can
1085  *    happen that the algorithm allocates an unnecessary Phi node,
1086  *    e.g. if there is only one definition of this value, but this
1087  *    definition reaches the currend block on several different
1088  *    paths.  This Phi node will be eliminated if optimizations are
1089  *    turned on right after it's creation.
1090  *    Requires current_block to be set correctly.
1091  *
1092  *    There are two special routines for the global store:
1093  *
1094  *    void set_store (ir_node *store)
1095  *    -------------------------------
1096  *
1097  *    Adds the store to the array of known values at a reserved
1098  *    position.
1099  *    Requires current_block to be set correctly.
1100  *
1101  *    ir_node *get_store (void)
1102  *    -------------------------
1103  *
1104  *    Returns the node defining the actual store.
1105  *    Requires current_block to be set correctly.
1106  *
1107  *
1108  *    inline void keep_alive (ir_node *ka)
1109  *    ------------------------------------
1110  *
1111  *    Keep this node alive because it is (might be) not in the control
1112  *    flow from Start to End.  Adds the node to the list in the end
1113  *   node.
1114  *
1115  */
1116 #ifndef FIRM_IR_IRCONS_H
1117 #define FIRM_IR_IRCONS_H
1118
1119 #include "firm_common.h"
1120 #include "irnode.h"
1121 #include "irgraph.h"
1122
1123 /*-------------------------------------------------------------------------*/
1124 /* The raw interface                                                       */
1125 /*-------------------------------------------------------------------------*/
1126
1127 /** Constructor for a Block node.
1128  *
1129  * Constructs a mature block with the given predecessors.  Use Unknown
1130  * nodes as predecessors to construct a block if the number of
1131  * predecessors is known, but not the predecessors themselves.  This
1132  * constructor does not set current_block.  It not be used with
1133  * automatic Phi node construction.
1134  *
1135  * @param *db    A Pointer for  debug information.
1136  * @param irg    The IR graph the block belongs to.
1137  * @param arity  The number of control predecessors.
1138  * @param in[]   An array of control predecessors.  The length of
1139  *               the array must be 'arity'.  The constructor copies this array.
1140  */
1141 ir_node *new_rd_Block  (dbg_info *db, ir_graph *irg,  int arity, ir_node *in[]);
1142
1143 /** Constructor for a Start node.
1144  *
1145  * @param *db    A pointer for debug information.
1146  * @param *irg   The IR graph the node belongs to.
1147  * @param *block The IR block the node belongs to.
1148  */
1149 ir_node *new_rd_Start  (dbg_info *db, ir_graph *irg, ir_node *block);
1150
1151 /** Constructor for a End node.
1152  *
1153  * @param *db    A pointer for  debug information.
1154  * @param *irg   The IR graph the node  belongs to.
1155  * @param *block The IR block the node belongs to.
1156  */
1157 ir_node *new_rd_End    (dbg_info *db, ir_graph *irg, ir_node *block);
1158
1159 /** Constructor for a Jmp node.
1160  *
1161  * Jmp represents control flow to a single control successor.
1162  *
1163  * @param *db     A pointer for debug information.
1164  * @param *irg    The IR graph the node belongs to.
1165  * @param *block  The IR block the node belongs to.
1166  */
1167 ir_node *new_rd_Jmp    (dbg_info *db, ir_graph *irg, ir_node *block);
1168
1169 /** Constructor for an IJmp node.
1170  *
1171  * IJmp represents control flow to a single control successor not
1172  * statically known i.e. an indirect Jmp.
1173  *
1174  * @param *db     A pointer for debug information.
1175  * @param *irg    The IR graph the node belongs to.
1176  * @param *block  The IR block the node belongs to.
1177  * @param *tgt    The IR node representing the target address.
1178  */
1179 ir_node *new_rd_IJmp   (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *tgt);
1180
1181 /** Constructor for a Break node.
1182  *
1183  * Break represents control flow to a single control successor just as Jmp.
1184  * The blocks separated by a break may not be concatenated by an optimization.
1185  * It is used for the interprocedural representation where blocks are parted
1186  * behind Call nodes to represent the control flow to called procedures.
1187  *
1188  * @param *db     A pointer for debug information.
1189  * @param *irg    The IR graph the node belong to.
1190  * @param *block  The block the node belong to.
1191  */
1192 ir_node *new_rd_Break  (dbg_info *db, ir_graph *irg, ir_node *block);
1193
1194 /** Constructor for a Cond node.
1195  *
1196  * If c is mode_b represents a conditional branch (if/else). If c is
1197  * mode_Is/mode_Iu (?) represents a switch.  (Allocates dense Cond
1198  * node, default Proj is 0.)
1199  *
1200  * This is not consistent:  Input to Cond is Is, Proj has as proj number
1201  * longs.
1202  *
1203  * @param *db    A pointer for debug information.
1204  * @param *irg   The IR graph the node  belongs to.
1205  * @param *block The IR block the node belongs to.
1206  * @param *c     The conditions parameter. Can be of mode b or I_u.
1207  */
1208 ir_node *new_rd_Cond   (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *c);
1209
1210 /** Constructor for a Return node.
1211  *
1212  * Returns the memory an zero or more return values.  Only node that
1213  * can end regular control flow.
1214  *
1215  * @param *db    A pointer for debug information.
1216  * @param *irg   The IR graph the node  belongs to.
1217  * @param *block The IR block the node belongs to.
1218  * @param *store The state of memory.
1219  * @param arity  Number of return values.
1220  * @param *in    Array of length arity with return values.  The constructor copies this array.
1221  */
1222 ir_node *new_rd_Return (dbg_info *db, ir_graph *irg, ir_node *block,
1223                         ir_node *store, int arity, ir_node *in[]);
1224
1225 /** Constructor for a Const_type node.
1226  *
1227  * The constant represents a target value.  This constructor sets high
1228  * level type information for the constant value.
1229  *
1230  * @param *db    A pointer for debug information.
1231  * @param *irg   The IR graph the node  belongs to.
1232  * @param *block The IR block the node belongs to.
1233  * @param *mode  The mode of the operands and results.
1234  * @param *con   Points to an entry in the constant table.
1235  * @param *tp    The type of the constant.
1236  */
1237 ir_node *new_rd_Const_type (dbg_info *db, ir_graph *irg, ir_node *block,
1238                             ir_mode *mode, tarval *con, ir_type *tp);
1239
1240 /** Constructor for a Const node.
1241  *
1242  * Constructor for a Const node. The constant represents a target
1243  * value.  Sets the type information to type_unknown.  (No more
1244  * supported: If tv is entity derives a somehow useful type.)
1245  *
1246  * @param *db    A pointer for debug information.
1247  * @param *irg   The IR graph the node  belongs to.
1248  * @param *block The IR block the node belongs to.
1249  * @param *mode  The mode of the operands and results.
1250  * @param *con   Points to an entry in the constant table.
1251  */
1252 ir_node *new_rd_Const  (dbg_info *db, ir_graph *irg, ir_node *block,
1253                         ir_mode *mode, tarval *con);
1254
1255 /** Constructor for a SymConst_type node.
1256  *
1257  *  This is the constructor for a symbolic constant.
1258  *    There are four kinds of symbolic constants:
1259  *    - type_tag   The symbolic constant represents a type tag.  The type the
1260  *                 tag stands for is given explicitly.
1261  *    - type_size  The symbolic constant represents the size of a type.  The
1262  *                 type of which the constant represents the size is given
1263  *                 explicitly.
1264  *    - type_align The symbolic constant represents the alignment of a type.  The
1265  *                 type of which the constant represents the size is given
1266  *                 explicitly.
1267  *    - addr_name  The symbolic constant represents the address of an entity
1268  *                 (variable or method).  The variable is indicated by a name
1269  *                 that is valid for linking.
1270  *    - addr_ent   The symbolic constant represents the address of an entity
1271  *                 (variable or method).  The variable is given explicitly by
1272  *                 a firm entity.
1273  *
1274  *    Inputs to the node:
1275  *      No inputs except the block it belongs to.
1276  *    Outputs of the node.
1277  *      An unsigned integer (I_u) or a pointer (P).
1278  *
1279  *    Mention union in declaration so that the firmjni generator recognizes that
1280  *    it can not cast the argument to an int.
1281  *
1282  * @param *db     A pointer for debug information.
1283  * @param *irg    The IR graph the node  belongs to.
1284  * @param *block  The IR block the node belongs to.
1285  * @param mode    The mode for the SymConst.
1286  * @param symkind The kind of the symbolic constant: type_tag, size, addr_name or addr_ent.
1287  * @param value   A type, entity or a ident depending on the SymConst kind.
1288  * @param tp      The source type of the constant.
1289  */
1290 ir_node *new_rd_SymConst_type(dbg_info *db, ir_graph *irg, ir_node *block, ir_mode *mode,
1291                               union symconst_symbol value,
1292                               symconst_kind symkind, ir_type *tp);
1293
1294 /** Constructor for a SymConst node.
1295  *
1296  *  Same as new_rd_SymConst_type, except that it sets the type to type_unknown.
1297  */
1298 ir_node *new_rd_SymConst(dbg_info *db, ir_graph *irg, ir_node *block, ir_mode *mode,
1299                          union symconst_symbol value, symconst_kind symkind);
1300
1301 /** Constructor for a SymConst addr_ent node.
1302  *
1303  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1304  * symconst_addr_ent.
1305  * Adds the SymConst to the start block of irg. */
1306 ir_node *new_rd_SymConst_addr_ent(dbg_info *db, ir_graph *irg, ir_mode *mode,
1307                                   ir_entity *symbol, ir_type *tp);
1308
1309 /** Constructor for a SymConst ofs_ent node.
1310  *
1311  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1312  * symconst_ofs_ent.
1313  * Adds the SymConst to the start block of irg.
1314  */
1315 ir_node *new_rd_SymConst_ofs_ent(dbg_info *db, ir_graph *irg, ir_mode *mode,
1316                                  ir_entity *symbol, ir_type *tp);
1317
1318 /** Constructor for a SymConst addr_name node.
1319  *
1320  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1321  * symconst_addr_ent.
1322  * Adds the SymConst to the start block of irg.
1323  */
1324 ir_node *new_rd_SymConst_addr_name(dbg_info *db, ir_graph *irg, ir_mode *mode,
1325                                    ident *symbol, ir_type *tp);
1326
1327 /** Constructor for a SymConst type_tag node.
1328  *
1329  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1330  * symconst_addr_ent.
1331  * Adds the SymConst to the start block of irg.
1332  */
1333 ir_node *new_rd_SymConst_type_tag(dbg_info *db, ir_graph *irg, ir_mode *mode,
1334                                   ir_type *symbol, ir_type *tp);
1335
1336 /** Constructor for a SymConst size node.
1337  *
1338  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1339  * symconst_type_size.
1340  * Adds the SymConst to the start block of irg. */
1341 ir_node *new_rd_SymConst_size(dbg_info *db, ir_graph *irg, ir_mode *mode,
1342                               ir_type *symbol, ir_type *tp);
1343
1344 /** Constructor for a SymConst size node.
1345  *
1346  * Same as new_rd_SymConst_type, except that the constructor is tailored for
1347  * symconst_type_align.
1348  * Adds the SymConst to the start block of irg.
1349  */
1350 ir_node *new_rd_SymConst_align(dbg_info *db, ir_graph *irg, ir_mode *mode,
1351                                ir_type *symbol, ir_type *tp);
1352
1353 /** Constructor for a simpleSel node.
1354  *
1355  *  This is a shortcut for the new_rd_Sel() constructor.  To be used for
1356  *  Sel nodes that do not select from an array, i.e., have no index
1357  *  inputs.  It adds the two parameters 0, NULL.
1358  *
1359  * @param   *db        A pointer for debug information.
1360  * @param   *irg       The IR graph the node  belongs to.
1361  * @param   *block     The IR block the node belongs to.
1362  * @param   *store     The memory in which the object the entity should be
1363  *                     selected from is allocated.
1364  * @param   *objptr    The object from that the Sel operation selects a
1365  *                     single attribute out.
1366  * @param   *ent       The entity to select.
1367  */
1368 ir_node *new_rd_simpleSel (dbg_info *db, ir_graph *irg, ir_node *block,
1369                            ir_node *store, ir_node *objptr, ir_entity *ent);
1370
1371 /** Constructor for a Sel node.
1372  *
1373  * The select node selects an entity (field or method) from an entity
1374  * with a compound type.  It explicitly specifies the entity selected.
1375  * Dynamically the node may select entities that overwrite the given
1376  * entity.  If the selected entity is an array element entity the Sel
1377  * node takes the required array indices as inputs.
1378  *
1379  * @param   *db        A pointer for debug information.
1380  * @param   *irg       The IR graph the node  belongs to.
1381  * @param   *block     The IR block the node belongs to.
1382  * @param   *store     The memory in which the object the entity should be selected
1383  *                     from is allocated.
1384  * @param   *objptr    A pointer to a compound entity the Sel operation selects a
1385  *                     single attribute from.
1386  * @param   *n_index   The number of array indices needed to select an array element entity.
1387  * @param   *index[]   If the compound entity is an array the indices of the selected
1388  *                     element entity.  The constructor copies this array.
1389  * @param   *ent       The entity to select.
1390  */
1391 ir_node *new_rd_Sel    (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *store,
1392                                     ir_node *objptr, int n_index, ir_node *index[], ir_entity *ent);
1393
1394 /** Constructor for a Call node.
1395  *
1396  *  Represents all kinds of method and function calls.
1397  *
1398  * @param   *db     A pointer for debug information.
1399  * @param   *irg    The IR graph the node  belongs to.
1400  * @param   *block  The IR block the node belongs to.
1401  * @param   *store  The current memory state.
1402  * @param   *callee A pointer to the called procedure.
1403  * @param   arity   The number of procedure parameters.
1404  * @param   *in[]   An array with the procedure parameters. The constructor copies this array.
1405  * @param   *tp     Type information of the procedure called.
1406  */
1407 ir_node *new_rd_Call   (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *store,
1408                                     ir_node *callee, int arity, ir_node *in[], ir_type *tp);
1409
1410 /** Constructor for a Add node.
1411  *
1412  * @param   *db    A pointer for debug information.
1413  * @param   *irg   The IR graph the node  belongs to.
1414  * @param   *block The IR block the node belongs to.
1415  * @param   *op1   The first operand.
1416  * @param   *op2   The second operand.
1417  * @param   *mode  The mode of the operands and the result.
1418  */
1419 ir_node *new_rd_Add    (dbg_info *db, ir_graph *irg, ir_node *block,
1420                                     ir_node *op1, ir_node *op2, ir_mode *mode);
1421
1422 /** Constructor for a Sub node.
1423  *
1424  * @param   *db    A pointer for debug information.
1425  * @param   *irg   The IR graph the node  belongs to.
1426  * @param   *block The IR block the node belongs to.
1427  * @param   *op1   The first operand.
1428  * @param   *op2   The second operand.
1429  * @param   *mode  The mode of the operands and the result.
1430  */
1431 ir_node *new_rd_Sub    (dbg_info *db, ir_graph *irg, ir_node *block,
1432                                     ir_node *op1, ir_node *op2, ir_mode *mode);
1433
1434 /** Constructor for a Minus node.
1435  *
1436  * @param   *db    A pointer for debug information.
1437  * @param   *irg   The IR graph the node  belongs to.
1438  * @param   *block The IR block the node belongs to.
1439  * @param   *op    The operand .
1440  * @param   *mode  The mode of the operand and the result.
1441  */
1442 ir_node *new_rd_Minus  (dbg_info *db, ir_graph *irg, ir_node *block,
1443                         ir_node *op,  ir_mode *mode);
1444
1445 /** Constructor for a Mul node.
1446  *
1447  * @param   *db    A pointer for debug information.
1448  * @param   *irg   The IR graph the node  belongs to.
1449  * @param   *block The IR block the node belongs to.
1450  * @param   *op1   The first operand.
1451  * @param   *op2   The second operand.
1452  * @param   *mode  The mode of the operands and the result.
1453  */
1454 ir_node *new_rd_Mul    (dbg_info *db, ir_graph *irg, ir_node *block,
1455                ir_node *op1, ir_node *op2, ir_mode *mode);
1456
1457 /** Constructor for a Mulh node.
1458  *
1459  * @param   *db    A pointer for debug information.
1460  * @param   *irg   The IR graph the node  belongs to.
1461  * @param   *block The IR block the node belongs to.
1462  * @param   *op1   The first operand.
1463  * @param   *op2   The second operand.
1464  * @param   *mode  The mode of the operands and the result.
1465  */
1466 ir_node *new_rd_Mulh   (dbg_info *db, ir_graph *irg, ir_node *block,
1467                ir_node *op1, ir_node *op2, ir_mode *mode);
1468
1469 /** Constructor for a Quot node.
1470  *
1471  * @param   *db    A pointer for debug information.
1472  * @param   *irg   The IR graph the node  belongs to.
1473  * @param   *block The IR block the node belongs to.
1474  * @param   *memop The store needed to model exceptions
1475  * @param   *op1   The first operand.
1476  * @param   *op2   The second operand.
1477  * @param   *mode  The mode of the result.
1478  * @param   state  The pinned state.
1479  */
1480 ir_node *new_rd_Quot   (dbg_info *db, ir_graph *irg, ir_node *block,
1481                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
1482
1483 /** Constructor for a DivMod node.
1484  *
1485  * @param   *db    A pointer for debug information.
1486  * @param   *irg   The IR graph the node  belongs to.
1487  * @param   *block The IR block the node belongs to.
1488  * @param   *memop The store needed to model exceptions
1489  * @param   *op1   The first operand.
1490  * @param   *op2   The second operand.
1491  * @param   *mode  The mode of the results.
1492  * @param   state  The pinned state.
1493  */
1494 ir_node *new_rd_DivMod (dbg_info *db, ir_graph *irg, ir_node *block,
1495                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
1496
1497 /** Constructor for a Div node.
1498  *
1499  * @param   *db    A pointer for debug information.
1500  * @param   *irg   The IR graph the node  belongs to.
1501  * @param   *block The IR block the node belongs to.
1502  * @param   *memop The store needed to model exceptions
1503  * @param   *op1   The first operand.
1504  * @param   *op2   The second operand.
1505  * @param   *mode  The mode of the result.
1506  * @param   state  The pinned state.
1507  */
1508 ir_node *new_rd_Div    (dbg_info *db, ir_graph *irg, ir_node *block,
1509                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
1510
1511 /** Constructor for a remainderless Div node.
1512  *
1513  * @param   *db    A pointer for debug information.
1514  * @param   *irg   The IR graph the node  belongs to.
1515  * @param   *block The IR block the node belongs to.
1516  * @param   *memop The store needed to model exceptions
1517  * @param   *op1   The first operand.
1518  * @param   *op2   The second operand.
1519  * @param   *mode  The mode of the result.
1520  * @param   state  The pinned state.
1521  */
1522 ir_node *new_rd_DivRL  (dbg_info *db, ir_graph *irg, ir_node *block,
1523                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
1524
1525 /** Constructor for a Mod node.
1526  *
1527  * @param   *db    A pointer for debug information.
1528  * @param   *irg   The IR graph the node  belongs to.
1529  * @param   *block The IR block the node belongs to.
1530  * @param   *memop The store needed to model exceptions
1531  * @param   *op1   The first operand.
1532  * @param   *op2   The second operand.
1533  * @param   *mode  The mode of the result.
1534  * @param   state  The pinned state.
1535  */
1536 ir_node *new_rd_Mod    (dbg_info *db, ir_graph *irg, ir_node *block,
1537                         ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
1538
1539 /** Constructor for a Abs node.
1540  *
1541  * @param   *db    A pointer for debug information.
1542  * @param   *irg   The IR graph the node  belongs to.
1543  * @param   *block The IR block the node belongs to.
1544  * @param   *op    The operand
1545  * @param   *mode  The mode of the operands and the result.
1546  */
1547 ir_node *new_rd_Abs    (dbg_info *db, ir_graph *irg, ir_node *block,
1548                        ir_node *op, ir_mode *mode);
1549
1550 /** Constructor for a And node.
1551  *
1552  * @param   *db    A pointer for debug information.
1553  * @param   *irg   The IR graph the node  belongs to.
1554  * @param   *block The IR block the node belongs to.
1555  * @param   *op1   The first operand.
1556  * @param   *op2   The second operand.
1557  * @param   *mode  The mode of the operands and the result.
1558  */
1559 ir_node *new_rd_And    (dbg_info *db, ir_graph *irg, ir_node *block,
1560                         ir_node *op1, ir_node *op2, ir_mode *mode);
1561
1562 /** Constructor for a Or node.
1563  *
1564  * @param   *db    A pointer for debug information.
1565  * @param   *irg   The IR graph the node  belongs to.
1566  * @param   *block The IR block the node belongs to.
1567  * @param   *op1   The first operand.
1568  * @param   *op2   The second operand.
1569  * @param   *mode  The mode of the operands and the result.
1570  */
1571 ir_node *new_rd_Or     (dbg_info *db, ir_graph *irg, ir_node *block,
1572                         ir_node *op1, ir_node *op2, ir_mode *mode);
1573
1574 /** Constructor for a Eor node.
1575  *
1576  * @param   *db    A pointer for debug information.
1577  * @param   *irg   The IR graph the node  belongs to.
1578  * @param   *block The IR block the node belongs to.
1579  * @param   *op1   The first operand.
1580  * @param   *op2   The second operand.
1581  * @param   *mode  The mode of the operands and the results.
1582  */
1583 ir_node *new_rd_Eor    (dbg_info *db, ir_graph *irg, ir_node *block,
1584                         ir_node *op1, ir_node *op2, ir_mode *mode);
1585
1586 /** Constructor for a Not node.
1587  *
1588  * @param   *db    A pointer for debug information.
1589  * @param   *irg   The IR graph the node  belongs to.
1590  * @param   *block The IR block the node belongs to.
1591  * @param   *op    The operand.
1592  * @param   *mode  The mode of the operand and the result.
1593  */
1594 ir_node *new_rd_Not    (dbg_info *db, ir_graph *irg, ir_node *block,
1595                ir_node *op, ir_mode *mode);
1596
1597 /** Constructor for a Cmp node.
1598  *
1599  * @param   *db    A pointer for debug information.
1600  * @param   *irg   The IR graph the node  belongs to.
1601  * @param   *block The IR block the node belongs to.
1602  * @param   *op1   The first operand.
1603  * @param   *op2   The second operand.
1604  */
1605 ir_node *new_rd_Cmp    (dbg_info *db, ir_graph *irg, ir_node *block,
1606                ir_node *op1, ir_node *op2);
1607
1608 /** Constructor for a Shl node.
1609  *
1610  * @param   *db    A pointer for debug information.
1611  * @param   *irg   The IR graph the node  belongs to.
1612  * @param   *block The IR block the node belongs to.
1613  * @param   *op    The operand.
1614  * @param   *k     The number of bits to  shift the operand .
1615  * @param   *mode  The mode of the operand and the result.
1616  */
1617 ir_node *new_rd_Shl    (dbg_info *db, ir_graph *irg, ir_node *block,
1618                ir_node *op, ir_node *k, ir_mode *mode);
1619
1620 /** Constructor for a Shr node.
1621  *
1622  * @param   *db    A pointer for debug information.
1623  * @param   *irg   The IR graph the node  belongs to.
1624  * @param   *block The IR block the node belongs to.
1625  * @param   *op    The operand.
1626  * @param   *k     The number of bits to shift the operand .
1627  * @param   *mode  The mode of the operand and the result.
1628  */
1629 ir_node *new_rd_Shr    (dbg_info *db, ir_graph *irg, ir_node *block,
1630                ir_node *op, ir_node *k, ir_mode *mode);
1631
1632 /** Constructor for a Shrs node.
1633  *
1634  * @param   *db    A pointer for debug information.
1635  * @param   *irg   The IR graph the node  belongs to.
1636  * @param   *block The IR block the node belongs to.
1637  * @param   *op    The operand.
1638  * @param   *k     The number of bits to shift the operand.
1639  * @param   *mode  The mode of the operand and the result.
1640  */
1641 ir_node *new_rd_Shrs   (dbg_info *db, ir_graph *irg, ir_node *block,
1642                ir_node *op, ir_node *k, ir_mode *mode);
1643
1644 /** Constructor for a Rotl node.
1645  *
1646  * @param   *db    A pointer for debug information.
1647  * @param   *irg   The IR graph the node  belongs to.
1648  * @param   *block The IR block the node belongs to.
1649  * @param   *op    The operand.
1650  * @param   *k     The number of bits to rotate the operand.
1651  * @param   *mode  The mode of the operand.
1652  */
1653 ir_node *new_rd_Rotl    (dbg_info *db, ir_graph *irg, ir_node *block,
1654                ir_node *op, ir_node *k, ir_mode *mode);
1655
1656
1657 /** Constructor for a Conv node.
1658  *
1659  * @param   *db    A pointer for debug information.
1660  * @param   *irg   The IR graph the node  belongs to.
1661  * @param   *block The IR block the node belongs to.
1662  * @param   *op    The operand.
1663  * @param   *mode  The mode of this the operand muss be converted .
1664  */
1665 ir_node *new_rd_Conv   (dbg_info *db, ir_graph *irg, ir_node *block,
1666                ir_node *op, ir_mode *mode);
1667
1668 /** Constructor for a Cast node.
1669  *
1670  * High level type cast.
1671  *
1672  * @param   *db    A pointer for debug information.
1673  * @param   *irg   The IR graph the node  belongs to.
1674  * @param   *block The IR block the node belongs to.
1675  * @param   *op    The operand.
1676  * @param   *to_tp The type of this the operand muss be casted .
1677  */
1678 ir_node *new_rd_Cast   (dbg_info *db, ir_graph *irg, ir_node *block,
1679                         ir_node *op, ir_type *to_tp);
1680
1681 /** Constructor for a Carry node.
1682  *
1683  * @param   *db    A pointer for debug information.
1684  * @param   *irg   The IR graph the node  belongs to.
1685  * @param   *block The IR block the node belongs to.
1686  * @param   *op1   The first operand.
1687  * @param   *op2   The second operand.
1688  * @param   *mode  The mode of the operands and the result.
1689  */
1690 ir_node *new_rd_Carry  (dbg_info *db, ir_graph *irg, ir_node *block,
1691                         ir_node *op1, ir_node *op2, ir_mode *mode);
1692
1693 /** Constructor for a Borrow node.
1694  *
1695  * @param   *db    A pointer for debug information.
1696  * @param   *irg   The IR graph the node  belongs to.
1697  * @param   *block The IR block the node belongs to.
1698  * @param   *op1   The first operand.
1699  * @param   *op2   The second operand.
1700  * @param   *mode  The mode of the operands and the result.
1701  */
1702 ir_node *new_rd_Borrow (dbg_info *db, ir_graph *irg, ir_node *block,
1703                         ir_node *op1, ir_node *op2, ir_mode *mode);
1704
1705 /** Constructor for a Phi node.
1706  *
1707  * @param *db    A pointer for debug information.
1708  * @param *irg   The IR graph the node  belongs to.
1709  * @param *block The IR block the node belongs to.
1710  * @param arity  The number of predecessors
1711  * @param *in[]  Array with predecessors.  The constructor copies this array.
1712  * @param *mode  The mode of it's inputs and output.
1713  */
1714 ir_node *new_rd_Phi    (dbg_info *db, ir_graph *irg, ir_node *block, int arity,
1715                         ir_node *in[], ir_mode *mode);
1716
1717 /** Constructor for a Load node.
1718  *
1719  * @param *db    A pointer for debug information.
1720  * @param *irg   The IR graph the node  belongs to.
1721  * @param *block The IR block the node belongs to.
1722  * @param *store The current memory
1723  * @param *adr   A pointer to the variable to be read in this memory.
1724  * @param *mode  The mode of the value to be loaded.
1725  */
1726 ir_node *new_rd_Load   (dbg_info *db, ir_graph *irg, ir_node *block,
1727                         ir_node *store, ir_node *adr, ir_mode *mode);
1728
1729 /** Constructor for a Store node.
1730  *
1731  * @param *db    A pointer for debug information.
1732  * @param *irg   The IR graph the node  belongs to.
1733  * @param *block The IR block the node belongs to.
1734  * @param *store The current memory
1735  * @param *adr   A pointer to the variable to be read in this memory.
1736  * @param *val   The value to write to this variable.
1737  */
1738 ir_node *new_rd_Store  (dbg_info *db, ir_graph *irg, ir_node *block,
1739                ir_node *store, ir_node *adr, ir_node *val);
1740
1741 /** Constructor for a Alloc node.
1742  *
1743  * The Alloc node extends the memory by space for an entity of type alloc_type.
1744  *
1745  * @param *db         A pointer for debug information.
1746  * @param *irg        The IR graph the node  belongs to.
1747  * @param *block      The IR block the node belongs to.
1748  * @param *store      The memory which shall contain the new variable.
1749  * @param *size       The number of bytes to allocate.
1750  * @param *alloc_type The type of the allocated variable.
1751  * @param where       Where to allocate the variable, either heap_alloc or stack_alloc.
1752  */
1753 ir_node *new_rd_Alloc  (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *store,
1754                ir_node *size, ir_type *alloc_type, ir_where_alloc where);
1755
1756 /** Constructor for a Free node.
1757  *
1758  * Frees the memory occupied by the entity pointed to by the pointer
1759  * arg.  Type indicates the type of the entity the argument points to.
1760  *
1761  * @param *db         A pointer for debug information.
1762  * @param *irg        The IR graph the node  belongs to.
1763  * @param *block      The IR block the node belongs to.
1764  * @param *store      The memory which shall contain the new variable.
1765  * @param *ptr        The pointer to the object to free.
1766  * @param *size       The number of objects of type free_type to free in a sequence.
1767  * @param *free_type  The type of the freed variable.
1768  * @param where       Where the variable was allocated, either heap_alloc or stack_alloc.
1769  */
1770 ir_node *new_rd_Free   (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *store,
1771                         ir_node *ptr, ir_node *size, ir_type *free_type, ir_where_alloc where);
1772
1773 /** Constructor for a Sync node.
1774  *
1775  * Merges several memory values.  The node assumes that a variable
1776  * either occurs only in one of the memories, or it contains the same
1777  * value in all memories where it occurs.
1778  *
1779  * @param *db       A pointer for debug information.
1780  * @param *irg      The IR graph the node  belongs to.
1781  * @param *block    The IR block the node belongs to.
1782  * @param  arity    The number of memories to synchronize.
1783  * @param  *in[]    An array of pointers to nodes that produce an output of type
1784  *                  memory.  The constructor copies this array.
1785  */
1786 ir_node *new_rd_Sync   (dbg_info *db, ir_graph *irg, ir_node *block, int arity, ir_node *in[]);
1787
1788 /** Constructor for a Proj node.
1789  *
1790  * Projects a single value out of a tuple.  The parameter proj gives the
1791  * position of the value within the tuple.
1792  *
1793  * @param *db    A pointer for debug information.
1794  * @param *irg   The IR graph the node  belongs to.
1795  * @param *block The IR block the node belongs to.
1796  * @param arg    A node producing a tuple.  The node must have mode_T.
1797  * @param *mode  The mode of the value to project.
1798  * @param proj   The position of the value in the tuple.
1799  */
1800 ir_node *new_rd_Proj   (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *arg,
1801                         ir_mode *mode, long proj);
1802
1803 /** Constructor for a defaultProj node.
1804  *
1805  * Represents the default control flow of a Switch-Cond node.
1806  *
1807  * @param *db       A pointer for debug information.
1808  * @param *irg      The IR graph the node  belongs to.
1809  * @param *block    The IR block the node belongs to.
1810  * @param arg       A node producing a tuple.
1811  * @param max_proj  The end position of the value in the tuple.
1812  */
1813 ir_node *new_rd_defaultProj (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *arg,
1814                              long max_proj);
1815
1816 /** Constructor for a Tuple node.
1817  *
1818  * This is an auxiliary node to replace a node that returns a tuple
1819  * without changing the corresponding Proj nodes.
1820  *
1821  * @param *db     A pointer for debug information.
1822  * @param *irg    The IR graph the node  belongs to.
1823  * @param *block  The IR block the node belongs to.
1824  * @param arity   The number of tuple elements.
1825  * @param *in[]   An array containing pointers to the nodes producing the tuple
1826  *                elements. The constructor copies this array.
1827  */
1828 ir_node *new_rd_Tuple  (dbg_info *db, ir_graph *irg, ir_node *block,
1829                         int arity, ir_node *in[]);
1830
1831 /** Constructor for a Id node.
1832  *
1833  * This is an auxiliary node to replace a node that returns a single
1834  * value.
1835  *
1836  * @param *db     A pointer for debug information.
1837  * @param *irg    The IR graph the node  belongs to.
1838  * @param *block  The IR block the node belongs to.
1839  * @param *val    The value
1840  * @param *mode   The mode of *val.
1841  */
1842 ir_node *new_rd_Id     (dbg_info *db, ir_graph *irg, ir_node *block,
1843                         ir_node *val, ir_mode *mode);
1844
1845 /** Constructor for a Bad node.
1846  *
1847  * Returns the unique Bad node of the graph.  The same as
1848  * get_irg_bad().
1849  *
1850  * @param *irg    The IR graph the node belongs to.
1851  */
1852 ir_node *new_rd_Bad    (ir_graph *irg);
1853
1854 /** Constructor for a Confirm node.
1855  *
1856  * Specifies constraints for a value.  To support dataflow analyses.
1857  *
1858  * Example: If the value never exceeds '100' this is expressed by placing a
1859  * Confirm node val = new_d_Confirm(db, val, 100, '<=') on the dataflow edge.
1860  *
1861  * @param *irg    The IR graph the node belong to.
1862  * @param *block  The IR block the node belong to.
1863  * @param *db     A pointer for debug information.
1864  * @param *val    The value we express a constraint for
1865  * @param *bound  The value to compare against. Must be a firm node, typically a constant.
1866  * @param cmp     The compare operation.
1867  */
1868 ir_node *new_rd_Confirm (dbg_info *db, ir_graph *irg, ir_node *block,
1869              ir_node *val, ir_node *bound, pn_Cmp cmp);
1870
1871 /** Constructor for an Unknown node.
1872  *
1873  * Represents an arbitrary value.  Places the node in the start block.
1874  *
1875  * @param *irg    The IR graph the node  belongs to.
1876  * @param *m      The mode of the unknown value.
1877  */
1878 ir_node *new_rd_Unknown(ir_graph *irg, ir_mode *m);
1879
1880 /** Constructor for a CallBegin node.
1881  *
1882  * CallBegin represents control flow depending of the pointer value
1883  * representing the called method to the called methods.  The
1884  * constructor copies the method pointer input from the passed Call
1885  * node.
1886  *
1887  * @param *db     A pointer for debug information.
1888  * @param *irg    The IR graph the node belong to.
1889  * @param *block  The block the node belong to.
1890  * @param *callee The call node visible in the intra procedural view.
1891  */
1892 ir_node *new_rd_CallBegin(dbg_info *db, ir_graph *irg, ir_node *block, ir_node *callee);
1893
1894 /** Constructor for a EndReg node.
1895  *
1896  * Used to represent regular procedure end in interprocedual view.
1897  *
1898  * @param *db     A pointer for debug information.
1899  * @param *irg    The IR graph the node belong to.
1900  * @param *block  The block the node belong to.
1901  */
1902 ir_node *new_rd_EndReg (dbg_info *db, ir_graph *irg, ir_node *block);
1903
1904 /** Constructor for a EndExcept node.
1905  *
1906  * Used to represent exceptional procedure end in interprocedural view.
1907  *
1908  * @param *db     A pointer for debug information.
1909  * @param *irg    The IR graph the node belong to.
1910  * @param *block  The block the node belong to.
1911  */
1912 ir_node *new_rd_EndExcept(dbg_info *db, ir_graph *irg, ir_node *block);
1913
1914 /** Constructor for a Filter node.
1915  *
1916  * Adds the node to the block in current_ir_block.  Filter is a node
1917  * with two views used to construct the interprocedural view.  In
1918  * intraprocedural view its semantics are identical to the Proj node.
1919  * In interprocedural view the Filter performs the Phi operation on
1920  * method parameters or results.  Other than a Phi a Filter node may
1921  * not be removed if it has only a single input.
1922  *
1923  * The constructor builds the Filter in intraprocedural view.
1924  *
1925  * @param *db     A pointer for debug information.
1926  * @param *irg    The IR graph the node belong to.
1927  * @param *block  The block the node belong to.
1928  * @param *arg  The tuple value to project from.
1929  * @param *mode The mode of the projected value.
1930  * @param proj  The position in the tuple to project from.
1931  */
1932 ir_node *new_rd_Filter (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *arg,
1933                         ir_mode *mode, long proj);
1934
1935 /** Constructor for a NoMem node.
1936  *
1937  * Returns the unique NoMem node of the graph.  The same as
1938  * get_irg_no_mem().
1939  *
1940  * @param *irg    The IR graph the node belongs to.
1941  */
1942 ir_node *new_rd_NoMem  (ir_graph *irg);
1943
1944 /** Constructor for a Mux node.
1945  *
1946  * @param *db       A pointer for debug information.
1947  * @param *irg      The IR graph the node belong to.
1948  * @param *block    The block the node belong to.
1949  * @param *sel      The ir_node that calculates the boolean select.
1950  * @param *ir_true  The ir_node that calculates the true result.
1951  * @param *ir_false The ir_node that calculates the false result.
1952  * @param *mode     The mode of the node (and it_true and ir_false).
1953  */
1954 ir_node *new_rd_Mux  (dbg_info *db, ir_graph *irg, ir_node *block,
1955     ir_node *sel, ir_node *ir_false, ir_node *ir_true, ir_mode *mode);
1956
1957 /** Constructor for a CopyB node.
1958  *
1959  * @param *db         A pointer for debug information.
1960  * @param *irg        The IR graph the node belong to.
1961  * @param *block      The block the node belong to.
1962  * @param *store      The current memory
1963  * @param *dst        The ir_node that represents the destination address.
1964  * @param *src        The ir_node that represents the source address.
1965  * @param *data_type  The type of the copied data
1966  */
1967 ir_node *new_rd_CopyB(dbg_info *db, ir_graph *irg, ir_node *block,
1968     ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type);
1969
1970 /** Constructor for a InstOf node.
1971  *
1972  * A High-Level Type check.
1973  *
1974  * @param   *db        A pointer for debug information.
1975  * @param   *irg       The IR graph the node  belongs to.
1976  * @param   *block     The IR block the node belongs to.
1977  * @param   *store     The memory in which the object the entity should be selected
1978  *                     from is allocated.
1979  * @param   *objptr    A pointer to a object of a class type.
1980  * @param   *type      The type of which objptr must be.
1981  */
1982 ir_node *new_rd_InstOf (dbg_info *db, ir_graph *irg, ir_node *block, ir_node *store,
1983                         ir_node *objptr, ir_type *type);
1984
1985 /** Constructor for a Raise node.
1986  *
1987  * A High-Level Exception throw.
1988  *
1989  * @param *db    A pointer for debug information.
1990  * @param *irg   The IR graph the node  belongs to.
1991  * @param *block The IR block the node belongs to.
1992  * @param *store The current memory.
1993  * @param *obj   A pointer to the Except variable.
1994  */
1995 ir_node *new_rd_Raise  (dbg_info *db, ir_graph *irg, ir_node *block,
1996                         ir_node *store, ir_node *obj);
1997
1998 /** Constructor for a Bound node.
1999  *
2000  * A High-Level bounds check. Checks whether lower <= idx && idx < upper.
2001  *
2002  * @param *db         A pointer for debug information.
2003  * @param *irg        The IR graph the node belong to.
2004  * @param *block      The block the node belong to.
2005  * @param *store      The current memory.
2006  * @param *idx        The ir_node that represents an index.
2007  * @param *lower      The ir_node that represents the lower bound for the index.
2008  * @param *upper      The ir_node that represents the upper bound for the index.
2009  */
2010 ir_node *new_rd_Bound(dbg_info *db, ir_graph *irg, ir_node *block,
2011     ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
2012
2013 /** Constructor for a Pin node.
2014  *
2015  * @param *db         A pointer for debug information.
2016  * @param *irg        The IR graph the node belong to.
2017  * @param *block      The block the node belong to.
2018  * @param *node       The node which value should be pinned.
2019  */
2020 ir_node *new_rd_Pin(dbg_info *db, ir_graph *irg, ir_node *block, ir_node *node);
2021
2022 /** Constructor for an ASM pseudo node.
2023  *
2024  * @param *db         A pointer for debug information.
2025  * @param *irg        The IR graph the node belong to.
2026  * @param *block      The block the node belong to.
2027  * @param arity       The number of data inputs to the node.
2028  * @param *in         The array of length arity of data inputs.
2029  * @param *inputs     The array of length arity of input constraints.
2030  * @param n_outs      The number of data outputs to the node.
2031  * @param *outputs    The array of length n_outs of output constraints.
2032  * @param n_clobber   The number of clobbered registers.
2033  * @param *clobber    The array of length n_clobber of clobbered registers.
2034  * @param *asm_text   The assembler text.
2035  */
2036 ir_node *new_rd_ASM(dbg_info *db, ir_graph *irg, ir_node *block,
2037                     int arity, ir_node *in[], ir_asm_constraint *inputs,
2038                     int n_outs, ir_asm_constraint *outputs,
2039                     int n_clobber, ident *clobber[], ident *asm_text);
2040
2041 /*-------------------------------------------------------------------------*/
2042 /* The raw interface without debug support                                 */
2043 /*-------------------------------------------------------------------------*/
2044
2045 /** Constructor for a Block node.
2046  *
2047  * Constructs a mature block with the given predecessors.  Use Unknown
2048  * nodes as predecessors to construct a block if the number of
2049  * predecessors is known, but not the predecessors themselves.  This
2050  * constructor does not set current_block.  It not be used with
2051  * automatic Phi node construction.
2052  *
2053  *
2054  * @param irg    The IR graph the block belongs to.
2055  * @param arity  The number of control predecessors.
2056  * @param in[]   An array of control predecessors.  The length of
2057  *               the array must be 'arity'. The constructor copies this array.
2058  */
2059 ir_node *new_r_Block  (ir_graph *irg,  int arity, ir_node *in[]);
2060
2061 /** Constructor for a Start node.
2062  *
2063  * @param *irg   The IR graph the node belongs to.
2064  * @param *block The IR block the node belongs to.
2065  */
2066 ir_node *new_r_Start  (ir_graph *irg, ir_node *block);
2067
2068 /** Constructor for a End node.
2069  *
2070  * @param *irg   The IR graph the node  belongs to.
2071  * @param *block The IR block the node belongs to.
2072  */
2073 ir_node *new_r_End    (ir_graph *irg, ir_node *block);
2074
2075 /** Constructor for a Jmp node.
2076  *
2077  * Jmp represents control flow to a single control successor.
2078  *
2079  * @param *irg    The IR graph the node belongs to.
2080  * @param *block  The IR block the node belongs to.
2081  */
2082 ir_node *new_r_Jmp    (ir_graph *irg, ir_node *block);
2083
2084 /** Constructor for an IJmp node.
2085  *
2086  * IJmp represents control flow to a single control successor not
2087  * statically known i.e. an indirect Jmp.
2088  *
2089  * @param *irg    The IR graph the node belongs to.
2090  * @param *block  The IR block the node belongs to.
2091  * @param *tgt    The IR node representing the target address.
2092  */
2093 ir_node *new_r_IJmp   (ir_graph *irg, ir_node *block, ir_node *tgt);
2094
2095 /** Constructor for a Cond node.
2096  *
2097  * If c is mode_b represents a conditional branch (if/else). If c is
2098  * mode_Is/mode_Iu (?) represents a switch.  (Allocates dense Cond
2099  * node, default Proj is 0.)
2100  *
2101  * This is not consistent:  Input to Cond is Is, Proj has as proj number
2102  * longs.
2103  *
2104  * @param *irg   The IR graph the node  belongs to.
2105  * @param *block The IR block the node belongs to.
2106  * @param *c     The conditions parameter.Can be of mode b or I_u.
2107  */
2108 ir_node *new_r_Cond   (ir_graph *irg, ir_node *block, ir_node *c);
2109
2110 /** Constructor for a Return node.
2111  *
2112  * Returns the memory an zero or more return values.  Only node that
2113  * can end regular control flow.
2114  *
2115  * @param *irg   The IR graph the node  belongs to.
2116  * @param *block The IR block the node belongs to.
2117  * @param *store The state of memory.
2118  * @param arity  Number of array indices.
2119  * @param *in[]   Array with index inputs to the node. The constructor copies this array.
2120  */
2121 ir_node *new_r_Return (ir_graph *irg, ir_node *block,
2122                        ir_node *store, int arity, ir_node *in[]);
2123
2124 /** Constructor for a Const node.
2125  *
2126  * Constructor for a Const node. The constant represents a target
2127  * value.  Sets the type information to type_unknown.  (No more
2128  * supported: If tv is entity derives a somehow useful type.)
2129  *
2130  * @param *irg   The IR graph the node  belongs to.
2131  * @param *block The IR block the node belongs to.
2132  * @param *mode  The mode of the operands and the results.
2133  * @param *con   Points to an entry in the constant table.
2134  */
2135 ir_node *new_r_Const  (ir_graph *irg, ir_node *block,
2136                        ir_mode *mode, tarval *con);
2137
2138 /** Constructor for a Const node.
2139  *
2140  * Constructor for a Const node. The constant represents a target
2141  * value.  Sets the type information to type_unknown.  (No more
2142  * supported: If tv is entity derives a somehow useful type.)
2143  *
2144  * @param *irg   The IR graph the node  belongs to.
2145  * @param *block The IR block the node belongs to.
2146  * @param *mode  The mode of the operands and the results.
2147  * @param value  A value from which the tarval is made.
2148  */
2149 ir_node *new_r_Const_long(ir_graph *irg, ir_node *block,
2150                        ir_mode *mode, long value);
2151
2152 /** Constructor for a Const_type node.
2153  *
2154  * The constant represents a target value.  This constructor sets high
2155  * level type information for the constant value.
2156  *
2157  * @param *irg   The IR graph the node  belongs to.
2158  * @param *block The IR block the node belongs to.
2159  * @param *mode  The mode of the operands and results.
2160  * @param *con   Points to an entry in the constant table.
2161  * @param *tp    The type of the constant.
2162  */
2163 ir_node *new_r_Const_type(ir_graph *irg, ir_node *block,
2164            ir_mode *mode, tarval *con, ir_type *tp);
2165
2166 /** Constructor for a SymConst node.
2167  *
2168  *  This is the constructor for a symbolic constant.
2169  *    There are four kinds of symbolic constants:
2170  *    - type_tag  The symbolic constant represents a type tag.  The type the
2171  *                tag stands for is given explicitly.
2172  *    - size      The symbolic constant represents the size of a type.  The
2173  *                type of which the constant represents the size is given
2174  *                explicitly.
2175  *    - addr_name The symbolic constant represents the address of an entity
2176  *                (variable or method).  The variable is indicated by a name
2177  *                that is valid for linking.
2178  *    - addr_ent   The symbolic constant represents the address of an entity
2179  *                (variable or method).  The variable is given explicitly by
2180  *                a firm entity.
2181  *
2182  *    Inputs to the node:
2183  *      No inputs except the block it belongs to.
2184  *    Outputs of the node.
2185  *      An unsigned integer (I_u) or a pointer (P).
2186  *
2187  * @param *irg    The IR graph the node  belongs to.
2188  * @param *block  The IR block the node belongs to.
2189  * @param mode    The mode for the SymConst.
2190  * @param value   A type, entity or a ident depending on the SymConst kind.
2191  * @param symkind The kind of the symbolic constant: type_tag, size or link_info.
2192  */
2193 ir_node *new_r_SymConst(ir_graph *irg, ir_node *block, ir_mode *mode,
2194                         union symconst_symbol value, symconst_kind symkind);
2195
2196 /** Constructor for a simpleSel node.
2197  *
2198  *  This is a shortcut for the new_d_Sel() constructor.  To be used for
2199  *  Sel nodes that do not select from an array, i.e., have no index
2200  *  inputs.  It adds the two parameters 0, NULL.
2201  *
2202  * @param   *irg       The IR graph the node  belongs to.
2203  * @param   *block     The IR block the node belongs to.
2204  * @param   *store     The memory in which the object the entity should be selected
2205  *                     from is allocated.
2206  * @param   *objptr    The object from that the Sel operation selects a
2207  *                     single attribute out.
2208  * @param   *ent       The entity to select.
2209  */
2210 ir_node *new_r_simpleSel(ir_graph *irg, ir_node *block, ir_node *store,
2211                          ir_node *objptr, ir_entity *ent);
2212
2213 /** Constructor for a Sel node.
2214  *
2215  * The select node selects an entity (field or method) from an entity
2216  * with a compound type.  It explicitly specifies the entity selected.
2217  * Dynamically the node may select entities that overwrite the given
2218  * entity.  If the selected entity is an array element entity the Sel
2219  * node takes the required array indices as inputs.
2220  *
2221  * @param   *irg       The IR graph the node  belongs to.
2222  * @param   *block     The IR block the node belongs to.
2223  * @param   *store     The memory in which the object the entity should be selected
2224  *                     from is allocated.
2225  * @param   *objptr    A pointer to a compound entity the Sel operation selects a
2226  *                     single attribute from.
2227  * @param   *n_index   The number of array indices needed to select an array element entity.
2228  * @param   *index[]   If the compound entity is an array the indices of the selected
2229  *                     element entity.  The constructor copies this array.
2230  * @param   *ent       The entity to select.
2231  */
2232 ir_node *new_r_Sel    (ir_graph *irg, ir_node *block, ir_node *store,
2233                        ir_node *objptr, int n_index, ir_node *index[],
2234                ir_entity *ent);
2235
2236 /** Constructor for a Call node.
2237  *
2238  *  Represents all kinds of method and function calls.
2239  *
2240  * @param   *irg    The IR graph the node  belongs to.
2241  * @param   *block  The IR block the node belongs to.
2242  * @param   *store  The actual store.
2243  * @param   *callee A pointer to the called procedure.
2244  * @param   arity   The number of procedure parameters.
2245  * @param   *in[]   An array with the pointers to the parameters. The constructor copies this array.
2246  * @param   *tp     Type information of the procedure called.
2247  */
2248 ir_node *new_r_Call   (ir_graph *irg, ir_node *block, ir_node *store,
2249                ir_node *callee, int arity, ir_node *in[],
2250                ir_type *tp);
2251
2252 /** Constructor for a Add node.
2253  *
2254  * @param   *irg   The IR graph the node  belongs to.
2255  * @param   *block The IR block the node belongs to.
2256  * @param   *op1   The first operand.
2257  * @param   *op2   The second operand.
2258  * @param   *mode  The mode of the operands and the result.
2259  */
2260 ir_node *new_r_Add    (ir_graph *irg, ir_node *block,
2261                ir_node *op1, ir_node *op2, ir_mode *mode);
2262
2263 /**
2264  * Constructor for a Sub node.
2265  *
2266  * @param   *irg   The IR graph the node  belongs to.
2267  * @param   *block The IR block the node belongs to.
2268  * @param   *op1   The first operand.
2269  * @param   *op2   The second operand.
2270  * @param   *mode  The mode of the operands and the results.
2271  */
2272 ir_node *new_r_Sub    (ir_graph *irg, ir_node *block,
2273                ir_node *op1, ir_node *op2, ir_mode *mode);
2274
2275 /** Constructor for a Minus node.
2276  *
2277  * @param   *irg   The IR graph the node  belongs to.
2278  * @param   *block The IR block the node belongs to.
2279  * @param   *op   The operand.
2280  * @param   *mode  The mode of the operand and the result.
2281  */
2282 ir_node *new_r_Minus  (ir_graph *irg, ir_node *block,
2283                ir_node *op,  ir_mode *mode);
2284
2285 /** Constructor for a Mul node.
2286  *
2287  * @param   *irg   The IR graph the node  belongs to.
2288  * @param   *block The IR block the node belongs to.
2289  * @param   *op1   The first operand.
2290  * @param   *op2   The second operand.
2291  * @param   *mode  The mode of the operands and the result.
2292  */
2293 ir_node *new_r_Mul    (ir_graph *irg, ir_node *block,
2294                ir_node *op1, ir_node *op2, ir_mode *mode);
2295
2296 /** Constructor for a Mulh node.
2297  *
2298  * @param   *irg   The IR graph the node  belongs to.
2299  * @param   *block The IR block the node belongs to.
2300  * @param   *op1   The first operand.
2301  * @param   *op2   The second operand.
2302  * @param   *mode  The mode of the operands and the result.
2303  */
2304 ir_node *new_r_Mulh   (ir_graph *irg, ir_node *block,
2305                ir_node *op1, ir_node *op2, ir_mode *mode);
2306
2307 /** Constructor for a Quot node.
2308  *
2309  * @param   *irg   The IR graph the node  belongs to.
2310  * @param   *block The IR block the node belongs to.
2311  * @param   *memop The store needed to model exceptions
2312  * @param   *op1   The first operand.
2313  * @param   *op2   The second operand.
2314  * @param   *mode  The mode of the result.
2315  * @param   state  The pinned state.
2316  */
2317 ir_node *new_r_Quot   (ir_graph *irg, ir_node *block,
2318                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
2319
2320 /** Constructor for a DivMod node.
2321  *
2322  * @param   *irg   The IR graph the node  belongs to.
2323  * @param   *block The IR block the node belongs to.
2324  * @param   *memop The store needed to model exceptions
2325  * @param   *op1   The first operand.
2326  * @param   *op2   The second operand.
2327  * @param   *mode  The mode of the results.
2328  * @param   state  The pinned state.
2329  */
2330 ir_node *new_r_DivMod (ir_graph *irg, ir_node *block,
2331                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
2332
2333 /** Constructor for a Div node.
2334  *
2335  * @param   *irg   The IR graph the node  belongs to.
2336  * @param   *block The IR block the node belongs to.
2337  * @param   *memop The store needed to model exceptions
2338  * @param   *op1   The first operand.
2339  * @param   *op2   The second operand.
2340  * @param   *mode  The mode of the result.
2341  * @param   state  The pinned state.
2342  */
2343 ir_node *new_r_Div    (ir_graph *irg, ir_node *block,
2344                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
2345
2346 /** Constructor for a remainderless Div node.
2347  *
2348  * @param   *irg   The IR graph the node  belongs to.
2349  * @param   *block The IR block the node belongs to.
2350  * @param   *memop The store needed to model exceptions
2351  * @param   *op1   The first operand.
2352  * @param   *op2   The second operand.
2353  * @param   *mode  The mode of the result.
2354  * @param   state  The pinned state.
2355  */
2356 ir_node *new_r_DivRL  (ir_graph *irg, ir_node *block,
2357                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
2358
2359 /** Constructor for a Mod node.
2360  *
2361  * @param   *irg   The IR graph the node  belongs to.
2362  * @param   *block The IR block the node belongs to.
2363  * @param   *memop The store needed to model exceptions
2364  * @param   *op1   The first operand.
2365  * @param   *op2   The second operand.
2366  * @param   *mode  The mode of the result.
2367  * @param   state  The pinned state.
2368  */
2369 ir_node *new_r_Mod    (ir_graph *irg, ir_node *block,
2370                ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
2371
2372 /** Constructor for a Abs node.
2373  *
2374  * @param   *irg   The IR graph the node  belongs to.
2375  * @param   *block The IR block the node belongs to.
2376  * @param   *op    The operand
2377  * @param   *mode  The mode of the operands and the result.
2378  */
2379 ir_node *new_r_Abs    (ir_graph *irg, ir_node *block,
2380                        ir_node *op, ir_mode *mode);
2381
2382 /** Constructor for a And node.
2383  *
2384  * @param   *irg   The IR graph the node  belongs to.
2385  * @param   *block The IR block the node belongs to.
2386  * @param   *op1   The first operand.
2387  * @param   *op2   The second operand.
2388  * @param   *mode  The mode of the operands and the result.
2389  */
2390 ir_node *new_r_And    (ir_graph *irg, ir_node *block,
2391                ir_node *op1, ir_node *op2, ir_mode *mode);
2392
2393 /** Constructor for a Or node.
2394  *
2395  * @param   *irg   The IR graph the node  belongs to.
2396  * @param   *block The IR block the node belongs to.
2397  * @param   *op1   The first operand.
2398  * @param   *op2   The second operand.
2399  * @param   *mode  The mode of the operands and the result.
2400  */
2401 ir_node *new_r_Or     (ir_graph *irg, ir_node *block,
2402                ir_node *op1, ir_node *op2, ir_mode *mode);
2403
2404 /** Constructor for a Eor node.
2405  *
2406  * @param   *irg   The IR graph the node  belongs to.
2407  * @param   *block The IR block the node belongs to.
2408  * @param   *op1   The first operand.
2409  * @param   *op2   The second operand.
2410  * @param   *mode  The mode of the operands and the results.
2411  */
2412 ir_node *new_r_Eor    (ir_graph *irg, ir_node *block,
2413                ir_node *op1, ir_node *op2, ir_mode *mode);
2414
2415 /** Constructor for a Not node.
2416  *
2417  * @param   *irg   The IR graph the node  belongs to.
2418  * @param   *block The IR block the node belongs to.
2419  * @param   *op    The operand.
2420  * @param   *mode  The mode of the operand and the result.
2421  */
2422 ir_node *new_r_Not    (ir_graph *irg, ir_node *block,
2423                ir_node *op, ir_mode *mode);
2424
2425 /** Constructor for a Cmp node.
2426  *
2427  * @param   *irg   The IR graph the node  belongs to.
2428  * @param   *block The IR block the node belongs to.
2429  * @param   *op1   The first operand.
2430  * @param   *op2   The second operand.
2431  */
2432 ir_node *new_r_Cmp    (ir_graph *irg, ir_node *block,
2433                ir_node *op1, ir_node *op2);
2434
2435 /** Constructor for a Shl node.
2436  *
2437  * @param   *irg   The IR graph the node  belongs to.
2438  * @param   *block The IR block the node belongs to.
2439  * @param   *op    The operand.
2440  * @param   *k     The number of bits to  shift the operand .
2441  * @param   *mode  The mode of the operand and the result.
2442  */
2443 ir_node *new_r_Shl    (ir_graph *irg, ir_node *block,
2444                ir_node *op, ir_node *k, ir_mode *mode);
2445
2446 /** Constructor for a Shr node.
2447  *
2448  * @param   *irg   The IR graph the node  belongs to.
2449  * @param   *block The IR block the node belongs to.
2450  * @param   *op    The operand.
2451  * @param   *k     The number of bits to shift the operand .
2452  * @param   *mode  The mode of the operand and the result.
2453  */
2454 ir_node *new_r_Shr    (ir_graph *irg, ir_node *block,
2455                ir_node *op, ir_node *k, ir_mode *mode);
2456
2457 /**
2458  * Constructor for a Shrs node.
2459  *
2460  * @param   *irg   The IR graph the node  belongs to.
2461  * @param   *block The IR block the node belongs to.
2462  * @param   *op    The operand.
2463  * @param   *k     The number of bits to shift the operand.
2464  * @param   *mode  The mode of the operand and the result.
2465  */
2466 ir_node *new_r_Shrs   (ir_graph *irg, ir_node *block,
2467                ir_node *op, ir_node *k, ir_mode *mode);
2468
2469 /** Constructor for a Rotl node.
2470  *
2471  * @param   *irg   The IR graph the node  belongs to.
2472  * @param   *block The IR block the node belongs to.
2473  * @param   *op    The operand.
2474  * @param   *k     The number of bits to rotate the operand.
2475  * @param   *mode  The mode of the operand.
2476  */
2477 ir_node *new_r_Rotl   (ir_graph *irg, ir_node *block,
2478                ir_node *op, ir_node *k, ir_mode *mode);
2479
2480 /** Constructor for a Conv node.
2481  *
2482  * @param   *irg   The IR graph the node  belongs to.
2483  * @param   *block The IR block the node belongs to.
2484  * @param   *op    The operand.
2485  * @param   *mode  The mode of this the operand muss be converted .
2486  */
2487 ir_node *new_r_Conv   (ir_graph *irg, ir_node *block,
2488                ir_node *op, ir_mode *mode);
2489
2490 /** Constructor for a Cast node.
2491  *
2492  * High level type cast
2493  *
2494  * @param   *irg   The IR graph the node  belongs to.
2495  * @param   *block The IR block the node belongs to.
2496  * @param   *op    The operand.
2497  * @param   *to_tp The type of this the operand muss be casted .
2498  */
2499 ir_node *new_r_Cast   (ir_graph *irg, ir_node *block,
2500                ir_node *op, ir_type *to_tp);
2501
2502 /** Constructor for a Carry node.
2503  *
2504  * @param   *irg   The IR graph the node  belongs to.
2505  * @param   *block The IR block the node belongs to.
2506  * @param   *op1   The first operand.
2507  * @param   *op2   The second operand.
2508  * @param   *mode  The mode of the operands and the result.
2509  */
2510 ir_node *new_r_Carry  (ir_graph *irg, ir_node *block,
2511                ir_node *op1, ir_node *op2, ir_mode *mode);
2512
2513 /**
2514  * Constructor for a Borrow node.
2515  *
2516  * @param   *irg   The IR graph the node  belongs to.
2517  * @param   *block The IR block the node belongs to.
2518  * @param   *op1   The first operand.
2519  * @param   *op2   The second operand.
2520  * @param   *mode  The mode of the operands and the results.
2521  */
2522 ir_node *new_r_Borrow (ir_graph *irg, ir_node *block,
2523                ir_node *op1, ir_node *op2, ir_mode *mode);
2524
2525 /** Constructor for a Phi node.
2526  *
2527  * @param *irg   The IR graph the node  belongs to.
2528  * @param *block The IR block the node belongs to.
2529  * @param arity  The number of predecessors
2530  * @param *in[]    Array with predecessors. The constructor copies this array.
2531  * @param *mode  The mode of it's inputs and output.
2532  */
2533 ir_node *new_r_Phi    (ir_graph *irg, ir_node *block, int arity,
2534                        ir_node *in[], ir_mode *mode);
2535
2536 /** Constructor for a Load node.
2537  *
2538  * @param *irg   The IR graph the node  belongs to.
2539  * @param *block The IR block the node belongs to.
2540  * @param *store The current memory
2541  * @param *adr   A pointer to the variable to be read in this memory.
2542  * @param *mode  The mode of the value to be loaded.
2543  */
2544 ir_node *new_r_Load   (ir_graph *irg, ir_node *block,
2545                ir_node *store, ir_node *adr, ir_mode *mode);
2546
2547 /** Constructor for a Store node.
2548  *
2549  * @param *irg   The IR graph the node  belongs to.
2550  * @param *block The IR block the node belongs to.
2551  * @param *store The current memory
2552  * @param *adr   A pointer to the variable to be read in this memory.
2553  * @param *val   The value to write to this variable.
2554  */
2555 ir_node *new_r_Store  (ir_graph *irg, ir_node *block,
2556                        ir_node *store, ir_node *adr, ir_node *val);
2557
2558 /** Constructor for a Alloc node.
2559  *
2560  * The Alloc node extends the memory by space for an entity of type alloc_type.
2561  *
2562  * @param *irg        The IR graph the node  belongs to.
2563  * @param *block      The IR block the node belongs to.
2564  * @param *store      The memory which shall contain the new variable.
2565  * @param *size       The number of bytes to allocate.
2566  * @param *alloc_type The type of the allocated variable.
2567  * @param where       Where to allocate the variable, either heap_alloc or stack_alloc.
2568  */
2569 ir_node *new_r_Alloc  (ir_graph *irg, ir_node *block, ir_node *store,
2570                ir_node *size, ir_type *alloc_type, ir_where_alloc where);
2571
2572 /** Constructor for a Free node.
2573  *
2574  * Frees the memory occupied by the entity pointed to by the pointer
2575  * arg.  Type indicates the type of the entity the argument points to.
2576  *
2577  * @param *irg        The IR graph the node  belongs to.
2578  * @param *block      The IR block the node belongs to.
2579  * @param *store      The memory which shall contain the new variable.
2580  * @param *ptr        The pointer to the object to free.
2581  * @param *size       The number of objects of type free_type to free in a sequence.
2582  * @param *free_type  The type of the freed variable.
2583  * @param where       Where the variable was allocated, either heap_alloc or stack_alloc.
2584  */
2585 ir_node *new_r_Free   (ir_graph *irg, ir_node *block, ir_node *store,
2586                ir_node *ptr, ir_node *size, ir_type *free_type, ir_where_alloc where);
2587
2588 /** Constructor for a Sync node.
2589  *
2590  * Merges several memory values.  The node assumes that a variable
2591  * either occurs only in one of the memories, or it contains the same
2592  * value in all memories where it occurs.
2593  *
2594  * @param *irg      The IR graph the node  belongs to.
2595  * @param *block    The IR block the node belongs to.
2596  * @param  arity    The number of memories to synchronize.
2597  * @param  *in[]    An array of pointers to nodes that produce an output of  type memory.
2598  *                  The constructor copies this array.
2599  */
2600 ir_node *new_r_Sync (ir_graph *irg, ir_node *block, int arity, ir_node *in[]);
2601
2602 /** Constructor for a Proj node.
2603  *
2604  * Projects a single value out of a tuple.  The parameter proj gives the
2605  * position of the value within the tuple.
2606  *
2607  * @param *irg   The IR graph the node  belongs to.
2608  * @param *block The IR block the node belongs to.
2609  * @param arg    A node producing a tuple.
2610  * @param *mode  The mode of the value to project.
2611  * @param proj   The position of the value in the tuple.
2612  */
2613 ir_node *new_r_Proj   (ir_graph *irg, ir_node *block, ir_node *arg,
2614                        ir_mode *mode, long proj);
2615
2616 /** Constructor for a defaultProj node.
2617  *
2618  * Represents the default control flow of a Switch-Cond node.
2619  *
2620  * @param *irg      The IR graph the node  belongs to.
2621  * @param *block    The IR block the node belongs to.
2622  * @param arg       A node producing a tuple.
2623  * @param max_proj  The end  position of the value in the tuple.
2624  */
2625 ir_node *new_r_defaultProj (ir_graph *irg, ir_node *block, ir_node *arg, long max_proj);
2626
2627
2628 /** Constructor for a Tuple node.
2629  *
2630  * This is an auxiliary node to replace a node that returns a tuple
2631  * without changing the corresponding Proj nodes.
2632  *
2633  * @param *irg    The IR graph the node  belongs to.
2634  * @param *block  The IR block the node belongs to.
2635  * @param arity   The number of tuple elements.
2636  * @param *in[]   An array containing pointers to the nodes producing the tuple elements.
2637  *                The constructor copies this array.
2638  */
2639 ir_node *new_r_Tuple  (ir_graph *irg, ir_node *block, int arity, ir_node *in[]);
2640
2641 /** Constructor for a Id node.
2642  *
2643  * This is an auxiliary node to replace a node that returns a single
2644  * value.
2645  *
2646  * @param *irg    The IR graph the node  belongs to.
2647  * @param *block  The IR block the node belongs to.
2648  * @param *val    The operand to Id.
2649  * @param *mode   The mode of *val.
2650  */
2651 ir_node *new_r_Id     (ir_graph *irg, ir_node *block,
2652                ir_node *val, ir_mode *mode);
2653
2654 /** Constructor for a Bad node.
2655  *
2656  * Returns the unique Bad node of the graph.  The same as
2657  * get_irg_bad().
2658  *
2659  * @param *irg    The IR graph the node  belongs to.
2660  *
2661  */
2662 ir_node *new_r_Bad    (ir_graph *irg);
2663
2664 /** Constructor for a Confirm node.
2665  *
2666  * Specifies constraints for a value.  To support dataflow analyses.
2667  *
2668  * Example: If the value never exceeds '100' this is expressed by placing a
2669  * Confirm node val = new_d_Confirm(db, val, 100, '<=') on the dataflow edge.
2670  *
2671  * @param *irg    The IR graph the node belong to.
2672  * @param *block  The IR block the node belong to.
2673  * @param *val    The value we express a constraint for
2674  * @param *bound  The value to compare against. Must be a firm node, typically a constant.
2675  * @param cmp     The compare operation.
2676  */
2677 ir_node *new_r_Confirm(ir_graph *irg, ir_node *block,
2678             ir_node *val, ir_node *bound, pn_Cmp cmp);
2679
2680 /** Constructor for a Unknown node.
2681  *
2682  * Represents an arbitrary value.  Places the node in
2683  * the start block.
2684  *
2685  * @param *irg    The IR graph the node  belongs to.
2686  * @param *m      The mode of the unknown value.
2687  */
2688 ir_node *new_r_Unknown(ir_graph *irg, ir_mode *m);
2689
2690 /** Constructor for a CallBegin node.
2691  *
2692  * CallBegin represents control flow depending of the pointer value
2693  * representing the called method to the called methods.  The
2694  * constructor copies the method pointer input from the passed Call
2695  * node.
2696  *
2697  * @param *irg    The IR graph the node belong to.
2698  * @param *block  The block the node belong to.
2699  * @param *callee The call node visible in the  intra procedural view.
2700  */
2701 ir_node *new_r_CallBegin(ir_graph *irg, ir_node *block, ir_node *callee);
2702
2703 /** Constructor for a EndReg node.
2704  *
2705  * Used to represent regular procedure end in interprocedual view.
2706  *
2707  * @param *irg    The IR graph the node belong to.
2708  * @param *block  The block the node belong to.
2709  */
2710 ir_node *new_r_EndReg (ir_graph *irg, ir_node *block);
2711
2712 /** Constructor for a EndExcept node.
2713  *
2714  * Used to represent exceptional procedure end in interprocedural view.
2715  *
2716  * @param *irg    The IR graph the node belong to.
2717  * @param *block  The block the node belong to.
2718  */
2719 ir_node *new_r_EndExcept(ir_graph *irg, ir_node *block);
2720
2721 /** Constructor for a Break node.
2722  *
2723  * Break represents control flow to a single control successor just as Jmp.
2724  * The blocks separated by a break may not be concatenated by an optimization.
2725  * It is used for the interprocedural representation where blocks are parted
2726  * behind Call nodes to represent the control flow to called procedures.
2727  *
2728  * @param *irg    The IR graph the node belong to.
2729  * @param *block  The block the node belong to.
2730  */
2731 ir_node *new_r_Break  (ir_graph *irg, ir_node *block);
2732
2733 /** Constructor for a Filter node.
2734  *
2735  * Constructor for a Filter node. Adds the node to the block in current_ir_block.
2736  * Filter is a node with two views used to construct the interprocedural view.
2737  * In intraprocedural view its semantics are identical to the Proj node.
2738  * In interprocedural view the Filter performs the Phi operation on method
2739  * parameters or results.  Other than a Phi a Filter node may not be removed
2740  * if it has only a single input.
2741  *
2742  * The constructor builds the Filter in intraprocedural view.
2743  *
2744  * @param *irg    The IR graph the node belong to.
2745  * @param *block  The block the node belong to.
2746  * @param *arg  The tuple value to project from.
2747  * @param *mode The mode of the projected value.
2748  * @param proj  The position in the tuple to project from.
2749  */
2750 ir_node *new_r_Filter (ir_graph *irg, ir_node *block, ir_node *arg,
2751                ir_mode *mode, long proj);
2752
2753 /** Constructor for a NoMem node.
2754  *
2755  * Returns the unique NoMem node of the graph.  The same as
2756  * get_irg_no_mem().
2757  *
2758  * @param *irg    The IR graph the node belongs to.
2759  */
2760 ir_node *new_r_NoMem  (ir_graph *irg);
2761
2762 /** Constructor for a Mux node.
2763  *
2764  * @param *irg      The IR graph the node belong to.
2765  * @param *block    The block the node belong to.
2766  * @param *sel      The ir_node that calculates the boolean select.
2767  * @param *ir_true  The ir_node that calculates the true result.
2768  * @param *ir_false The ir_node that calculates the false result.
2769  * @param *mode     The mode of the node (and it_true and ir_false).
2770  */
2771 ir_node *new_r_Mux  (ir_graph *irg, ir_node *block,
2772     ir_node *sel, ir_node *ir_false, ir_node *ir_true, ir_mode *mode);
2773
2774 /** Constructor for a CopyB node.
2775  *
2776  * @param *irg        The IR graph the node belong to.
2777  * @param *block      The block the node belong to.
2778  * @param *store      The current memory
2779  * @param *dst        The ir_node that represents the destination address.
2780  * @param *src        The ir_node that represents the source address.
2781  * @param *data_type  The type of the copied data
2782  */
2783 ir_node *new_r_CopyB(ir_graph *irg, ir_node *block,
2784     ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type);
2785
2786 /** Constructor for a InstOf node.
2787  *
2788  * A High-Level Type check.
2789  *
2790  * @param   *irg       The IR graph the node  belongs to.
2791  * @param   *block     The IR block the node belongs to.
2792  * @param   *store     The memory in which the object the entity should be selected
2793  *                     from is allocated.
2794  * @param   *objptr    A pointer to a object of a class type.
2795  * @param   *type      The type of which objptr must be.
2796  */
2797 ir_node *new_r_InstOf(ir_graph *irg, ir_node *block, ir_node *store,
2798                       ir_node *objptr, ir_type *type);
2799
2800 /** Constructor for a Raise node.
2801  *
2802  * A High-Level Exception throw.
2803  *
2804  * @param *irg   The IR graph the node  belongs to.
2805  * @param *block The IR block the node belongs to.
2806  * @param *store The current memory.
2807  * @param *obj   A pointer to the Except variable.
2808  */
2809 ir_node *new_r_Raise(ir_graph *irg, ir_node *block,
2810                      ir_node *store, ir_node *obj);
2811
2812 /** Constructor for a Bound node.
2813  *
2814  * A High-Level bounds check. Checks whether lower <= idx && idx < upper.
2815  *
2816  * @param *irg        The IR graph the node belong to.
2817  * @param *block      The block the node belong to.
2818  * @param *store      The current memory.
2819  * @param *idx        The ir_node that represents an index.
2820  * @param *lower      The ir_node that represents the lower bound for the index.
2821  * @param *upper      The ir_node that represents the upper bound for the index.
2822  */
2823 ir_node *new_r_Bound(ir_graph *irg, ir_node *block,
2824     ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
2825
2826 /** Constructor for a Pin node.
2827  *
2828  * @param *irg        The IR graph the node belong to.
2829  * @param *block      The block the node belong to.
2830  * @param *node       The node which value should be pinned.
2831  */
2832 ir_node *new_r_Pin(ir_graph *irg, ir_node *block, ir_node *node);
2833
2834 /** Constructor for an ASM pseudo node.
2835  *
2836  * @param *irg        The IR graph the node belong to.
2837  * @param *block      The block the node belong to.
2838  * @param arity       The number of data inputs to the node.
2839  * @param *in         The array of length arity of data inputs.
2840  * @param *inputs     The array of length arity of input constraints.
2841  * @param n_outs      The number of data outputs to the node.
2842  * @param *outputs    The array of length n_outs of output constraints.
2843  * @param n_clobber   The number of clobbered registers.
2844  * @param *clobber    The array of length n_clobber of clobbered registers.
2845  * @param *asm_text   The assembler text.
2846  */
2847 ir_node *new_r_ASM(ir_graph *irg, ir_node *block,
2848                    int arity, ir_node *in[], ir_asm_constraint *inputs,
2849                    int n_outs, ir_asm_constraint *outputs,
2850                    int n_clobber, ident *clobber[], ident *asm_text);
2851
2852 /*-----------------------------------------------------------------------*/
2853 /* The block oriented interface                                          */
2854 /*-----------------------------------------------------------------------*/
2855
2856 /** Sets the current block in which the following constructors place the
2857  *  nodes they construct.
2858  *
2859  *  @param target  The new current block.
2860  */
2861 void     set_cur_block (ir_node *target);
2862
2863 /** Returns the current block of the current graph. */
2864 ir_node *get_cur_block(void);
2865
2866 /** Returns the fixed nodes  of the current graph. */
2867 #define get_cur_end_block()   get_irg_end_block(current_ir_graph)
2868 #define get_cur_end()         get_irg_end(current_ir_graph)
2869 #define get_cur_start_block() get_irg_start_block(current_ir_graph)
2870 #define get_cur_start()       get_irg_start(current_ir_graph)
2871
2872 /** Constructor for a Block node.
2873  *
2874  * Adds the block to the graph in current_ir_graph. Constructs a Block
2875  * with a fixed number of predecessors.  Does set current_block.  Can
2876  * be used with automatic Phi node construction.
2877  *
2878  * @param *db    A Pointer for debug information.
2879  * @param arity  The number of control predecessors.
2880  * @param in[]   An array of control predecessors.  The length of
2881  *               the array must be 'arity'.
2882  */
2883 ir_node *new_d_Block(dbg_info *db, int arity, ir_node *in[]);
2884
2885 /** Constructor for a Start node.
2886  *
2887  * Adds the node to the block in current_ir_block.
2888  *
2889  * @param *db    A pointer for debug information.
2890  */
2891 ir_node *new_d_Start  (dbg_info *db);
2892
2893 /** Constructor for a End node.
2894  *
2895  * Adds the node to the block in current_ir_block.
2896  *
2897  * @param *db     A pointer for debug information.
2898  */
2899 ir_node *new_d_End    (dbg_info *db);
2900
2901 /** Constructor for a Jmp node.
2902  *
2903  * Adds the node to the block in current_ir_block.
2904  *
2905  * Jmp represents control flow to a single control successor.
2906  *
2907  * @param *db     A pointer for debug information.
2908  */
2909 ir_node *new_d_Jmp    (dbg_info *db);
2910
2911 /** Constructor for an IJmp node.
2912  *
2913  * IJmp represents control flow to a single control successor not
2914  * statically known i.e. an indirect Jmp.
2915  *
2916  * @param *db     A pointer for debug information.
2917  * @param *tgt    The IR node representing the target address.
2918  */
2919 ir_node *new_d_IJmp   (dbg_info *db, ir_node *tgt);
2920
2921 /** Constructor for a Cond node.
2922  *
2923  * Adds the node to the block in current_ir_block.
2924  *
2925  * If c is mode_b represents a conditional branch (if/else). If c is
2926  * mode_Is/mode_Iu (?) represents a switch.  (Allocates dense Cond
2927  * node, default Proj is 0.)
2928  *
2929  * This is not consistent:  Input to Cond is Is, Proj has as proj number
2930  * longs.
2931  *
2932  * @param *db    A pointer for debug information.
2933  * @param *c     The conditions parameter.Can be of mode b or I_u.
2934  */
2935 ir_node *new_d_Cond   (dbg_info *db, ir_node *c);
2936
2937 /** Constructor for a Return node.
2938  *
2939  * Adds the node to the block in current_ir_block.
2940  *
2941  * Returns the memory an zero or more return values.  Only node that
2942  * can end regular control flow.
2943  *
2944  * @param *db    A pointer for debug information.
2945  * @param *store The state of memory.
2946  * @param arity  Number of array indices.
2947  * @param *in    Array with index inputs to the node.
2948  */
2949 ir_node *new_d_Return (dbg_info *db, ir_node *store, int arity, ir_node *in[]);
2950
2951 /** Constructor for a Const_type node.
2952  *
2953  * Adds the node to the block in current_ir_block.
2954  *
2955  * The constant represents a target value.  This constructor sets high
2956  * level type information for the constant value.
2957  *
2958  * @param *db    A pointer for debug information.
2959  * @param *mode  The mode of the operands and results.
2960  * @param *con   Points to an entry in the constant table. This pointer is
2961                  added to the attributes of the node.
2962  * @param *tp    The type of the constant.
2963  */
2964 ir_node *new_d_Const_type (dbg_info *db, ir_mode *mode, tarval *con, ir_type *tp);
2965
2966 /** Constructor for a Const node.
2967  *
2968  * Adds the node to the block in current_ir_block.
2969  *
2970  * Constructor for a Const node. The constant represents a target
2971  * value.  Sets the type information to type_unknown.  (No more
2972  * supported: If tv is entity derives a somehow useful type.)
2973  *
2974  * @param *db    A pointer for debug information.
2975  * @param *mode  The mode of the operands and results.
2976  * @param *con   Points to an entry in the constant table. This pointer is added
2977  *               to the attributes of the node.
2978  */
2979 ir_node *new_d_Const  (dbg_info *db, ir_mode *mode, tarval *con);
2980
2981 /** Constructor for a SymConst_type node.
2982  *
2983  *  Adds the node to the block in current_ir_block.
2984  *  This is the constructor for a symbolic constant.
2985  *    There are four kinds of symbolic constants:
2986  *    - type_tag  The symbolic constant represents a type tag.  The type the
2987  *                tag stands for is given explicitly.
2988  *    - size      The symbolic constant represents the size of a type.  The
2989  *                type of which the constant represents the size is given
2990  *                explicitly.
2991  *    - addr_name The symbolic constant represents the address of an entity
2992  *                (variable or method).  The variable is indicated by a name
2993  *                that is valid for linking.
2994  *    - addr_ent   The symbolic constant represents the address of an entity
2995  *                (variable or method).  The variable is given explicitly by
2996  *                a firm entity.
2997  *
2998  *    Inputs to the node:
2999  *      No inputs except the block it belongs to.
3000  *    Outputs of the node.
3001  *      An unsigned integer (I_u) or a pointer (P).
3002  *
3003  * @param *db     A pointer for debug information.
3004  * @param mode    The mode for the SymConst.
3005  * @param value   A type, entity or ident depending on the SymConst kind.
3006  * @param kind    The kind of the symbolic constant: symconst_type_tag, symconst_type_size,
3007  *                symconst_type_align, symconst_addr_name or symconst_addr_ent.
3008  * @param tp      The source type of the constant.
3009  */
3010 ir_node *new_d_SymConst_type(dbg_info *db, ir_mode *mode,
3011                              union symconst_symbol value, symconst_kind kind, ir_type *tp);
3012
3013 /** Constructor for a SymConst node.
3014  *
3015  *  Same as new_d_SymConst_type, except that it sets the type to type_unknown.
3016  */
3017 ir_node *new_d_SymConst(dbg_info *db, ir_mode *mode,
3018                         union symconst_symbol value, symconst_kind kind);
3019
3020 /** Constructor for a simpleSel node.
3021  *
3022  *  This is a shortcut for the new_d_Sel() constructor.  To be used for
3023  *  Sel nodes that do not select from an array, i.e., have no index
3024  *  inputs.  It adds the two parameters 0, NULL.
3025  *
3026  * @param   *db        A pointer for debug information.
3027  * @param   *store     The memory in which the object the entity should be
3028  *                     selected from is allocated.
3029  * @param   *objptr    The object from that the Sel operation selects a
3030  *                     single attribute out.
3031  * @param   *ent       The entity to select.
3032  */
3033 ir_node *new_d_simpleSel(dbg_info *db, ir_node *store, ir_node *objptr, ir_entity *ent);
3034
3035 /** Constructor for a Sel node.
3036  *
3037  * The select node selects an entity (field or method) from an entity
3038  * with a compound type.  It explicitly specifies the entity selected.
3039  * Dynamically the node may select entities that overwrite the given
3040  * entity.  If the selected entity is an array element entity the Sel
3041  * node takes the required array indices as inputs.
3042  * Adds the node to the block in current_ir_block.
3043  *
3044  * @param   *db        A pointer for debug information.
3045  * @param   *store     The memory in which the object the entity should be selected
3046  *                     from is allocated.
3047  * @param   *objptr    A pointer to a compound entity the Sel operation selects a
3048  *                     single attribute from.
3049  * @param   arity      The number of array indices needed to select an array element entity.
3050  * @param   *in[]      If the compound entity is an array the indices of the selected
3051  *                     element entity.  The constructor copies this array.
3052  * @param   *ent       The entity to select.
3053  */
3054 ir_node *new_d_Sel    (dbg_info *db, ir_node *store, ir_node *objptr, int arity, ir_node *in[],
3055                        ir_entity *ent);
3056
3057 /** Constructor for a Call node.
3058  *
3059  *  Represents all kinds of method and function calls.
3060  *  Adds the node to the block in current_ir_block.
3061  *
3062  * @param   *db     A pointer for debug information.
3063  * @param   *store  The actual store.
3064  * @param   *callee A pointer to the called procedure.
3065  * @param   arity   The number of procedure parameters.
3066  * @param   *in[]   An array with the pointers to the parameters. The constructor copies this array.
3067  * @param   *tp     Type information of the procedure called.
3068  */
3069 ir_node *new_d_Call   (dbg_info *db, ir_node *store, ir_node *callee, int arity, ir_node *in[],
3070              ir_type *tp);
3071
3072 /** Constructor for a Add node.
3073  *
3074  * Adds the node to the block in current_ir_block.
3075  *
3076  * @param   *db    A pointer for debug information.
3077  * @param   *op1   The first operand.
3078  * @param   *op2   The second operand.
3079  * @param   *mode  The mode of the operands and the result.
3080  */
3081 ir_node *new_d_Add    (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3082
3083 /** Constructor for a Sub node.
3084  *
3085  * Adds the node to the block in current_ir_block.
3086  *
3087  * @param   *db    A pointer for debug information.
3088  * @param   *op1   The first operand.
3089  * @param   *op2   The second operand.
3090  * @param   *mode  The mode of the operands and the result.
3091  */
3092 ir_node *new_d_Sub    (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3093
3094 /** Constructor for a Minus node.
3095  *
3096  * Adds the node to the block in current_ir_block.
3097  *
3098  * @param   *db    A pointer for debug information.
3099  * @param   *op    The operand .
3100  * @param   *mode  The mode of the operand and the result.
3101  */
3102 ir_node *new_d_Minus  (dbg_info *db, ir_node *op,  ir_mode *mode);
3103
3104 /** Constructor for a Mul node.
3105  *
3106  * Adds the node to the block in current_ir_block.
3107  *
3108  * @param   *db    A pointer for debug information.
3109  * @param   *op1   The first operand.
3110  * @param   *op2   The second operand.
3111  * @param   *mode  The mode of the operands and the result.
3112  */
3113 ir_node *new_d_Mul    (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3114
3115 /** Constructor for a Mulh node.
3116  *
3117  * Adds the node to the block in current_ir_block.
3118  *
3119  * @param   *db    A pointer for debug information.
3120  * @param   *op1   The first operand.
3121  * @param   *op2   The second operand.
3122  * @param   *mode  The mode of the operands and the result.
3123  */
3124 ir_node *new_d_Mulh   (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3125
3126 /** Constructor for a Quot node.
3127  *
3128  * Adds the node to the block in current_ir_block.
3129  *
3130  * @param   *db    A pointer for debug information.
3131  * @param   *memop The store needed to model exceptions
3132  * @param   *op1   The first operand.
3133  * @param   *op2   The second operand.
3134  * @param   *mode  The mode of the result.
3135  * @param   state  The pinned state.
3136  */
3137 ir_node *new_d_Quot   (dbg_info *db, ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3138
3139 /** Constructor for a DivMod node.
3140  *
3141  * Adds the node to the block in current_ir_block.
3142  *
3143  * @param   *db    A pointer for debug information.
3144  * @param   *memop The store needed to model exceptions
3145  * @param   *op1   The first operand.
3146  * @param   *op2   The second operand.
3147  * @param   *mode  The mode of the results.
3148  * @param   state  The pinned state.
3149  */
3150 ir_node *new_d_DivMod (dbg_info *db, ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3151
3152 /** Constructor for a Div node.
3153  *
3154  * Adds the node to the block in current_ir_block.
3155  *
3156  * @param   *db    A pointer for debug information.
3157  * @param   *memop The store needed to model exceptions
3158  * @param   *op1   The first operand.
3159  * @param   *op2   The second operand.
3160  * @param   *mode  The mode of the result.
3161  * @param   state  The pinned state.
3162  */
3163 ir_node *new_d_Div    (dbg_info *db, ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3164
3165 /** Constructor for a remainderless Div node.
3166  *
3167  * Adds the node to the block in current_ir_block.
3168  *
3169  * @param   *db    A pointer for debug information.
3170  * @param   *memop The store needed to model exceptions
3171  * @param   *op1   The first operand.
3172  * @param   *op2   The second operand.
3173  * @param   *mode  The mode of the result.
3174  * @param   state  The pinned state.
3175  */
3176 ir_node *new_d_DivRL  (dbg_info *db, ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3177
3178 /** Constructor for a Mod node.
3179  *
3180  * Adds the node to the block in current_ir_block.
3181  *
3182  * @param   *db    A pointer for debug information.
3183  * @param   *memop The store needed to model exceptions
3184  * @param   *op1   The first operand.
3185  * @param   *op2   The second operand.
3186  * @param   *mode  The mode of the result.
3187  * @param   state  The pinned state.
3188  */
3189 ir_node *new_d_Mod    (dbg_info *db, ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3190
3191 /** Constructor for a Abs node.
3192  *
3193  * Adds the node to the block in current_ir_block.
3194  *
3195  * @param   *db    A pointer for debug information.
3196  * @param   *op    The operand
3197  * @param   *mode  The mode of the operands and the result.
3198  */
3199 ir_node *new_d_Abs    (dbg_info *db, ir_node *op,                ir_mode *mode);
3200
3201 /** Constructor for a And node.
3202  *
3203  * Adds the node to the block in current_ir_block.
3204  *
3205  * @param   *db    A pointer for debug information.
3206  * @param   *op1   The first operand.
3207  * @param   *op2   The second operand.
3208  * @param   *mode  The mode of the operands and the result.
3209  */
3210 ir_node *new_d_And    (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3211
3212 /** Constructor for a Or node.
3213  *
3214  * Adds the node to the block in current_ir_block.
3215  *
3216  * @param   *db    A pointer for debug information.
3217  * @param   *op1   The first operand.
3218  * @param   *op2   The second operand.
3219  * @param   *mode  The mode of the operands and the result.
3220  */
3221 ir_node *new_d_Or     (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3222
3223 /** Constructor for a Eor node.
3224  *
3225  * Adds the node to the block in current_ir_block.
3226  *
3227  * @param   *db    A pointer for debug information.
3228  * @param   *op1   The first operand.
3229  * @param   *op2   The second operand.
3230  * @param   *mode  The mode of the operands and the results.
3231  */
3232 ir_node *new_d_Eor    (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3233
3234 /** Constructor for a Not node.
3235  *
3236  * Adds the node to the block in current_ir_block.
3237  *
3238  * @param   *db    A pointer for debug information.
3239  * @param   *op    The operand.
3240  * @param   *mode  The mode of the operand and the result.
3241  */
3242 ir_node *new_d_Not    (dbg_info *db, ir_node *op,                ir_mode *mode);
3243
3244 /** Constructor for a Shl node.
3245  *
3246  * Adds the node to the block in current_ir_block.
3247  *
3248  * @param   *db    A pointer for debug information.
3249  * @param   *op    The operand.
3250  * @param   *k     The number of bits to  shift the operand .
3251  * @param   *mode  The mode of the operand and the result.
3252  */
3253 ir_node *new_d_Shl    (dbg_info *db, ir_node *op,  ir_node *k,   ir_mode *mode);
3254
3255 /** Constructor for a Shr node.
3256  *
3257  * Adds the node to the block in current_ir_block.
3258  *
3259  * @param   *db    A pointer for debug information.
3260  * @param   *op    The operand.
3261  * @param   *k     The number of bits to  shift the operand .
3262  * @param   *mode  The mode of the operand and the result.
3263  */
3264 ir_node *new_d_Shr    (dbg_info *db, ir_node *op,  ir_node *k,   ir_mode *mode);
3265
3266 /** Constructor for a Shrs node.
3267  *
3268  * Adds the node to the block in current_ir_block.
3269  *
3270  * @param   *db    A pointer for debug information.
3271  * @param   *op    The operand.
3272  * @param   *k     The number of bits to  shift the operand .
3273  * @param   *mode  The mode of the operand and the result.
3274  */
3275 ir_node *new_d_Shrs   (dbg_info *db, ir_node *op,  ir_node *k,   ir_mode *mode);
3276
3277 /** Constructor for a Rotl node.
3278  *
3279  * Adds the node to the block in current_ir_block.
3280  *
3281  * @param   *db    A pointer for debug information.
3282  * @param   *op    The operand.
3283  * @param   *k     The number of bits to rotate the operand.
3284  * @param   *mode  The mode of the operand.
3285  */
3286 ir_node *new_d_Rotl   (dbg_info *db, ir_node *op,  ir_node *k,   ir_mode *mode);
3287
3288 /** Constructor for a Cmp node.
3289  *
3290  * Adds the node to the block in current_ir_block.
3291  *
3292  * @param   *db    A pointer for debug information.
3293  * @param   *op1   The first operand.
3294  * @param   *op2   The second operand.
3295  */
3296 ir_node *new_d_Cmp    (dbg_info *db, ir_node *op1, ir_node *op2);
3297
3298 /** Constructor for a Conv node.
3299  *
3300  * Adds the node to the block in current_ir_block.
3301  *
3302  * @param   *db    A pointer for debug information.
3303  * @param   *op    The operand.
3304  * @param   *mode  The mode of this the operand muss be converted .
3305  */
3306 ir_node *new_d_Conv   (dbg_info *db, ir_node *op, ir_mode *mode);
3307
3308 /** Constructor for a strict Conv node.
3309  *
3310  * Adds the node to the block in current_ir_block.
3311  *
3312  * @param   *db    A pointer for debug information.
3313  * @param   *op    The operand.
3314  * @param   *mode  The mode of this the operand muss be converted .
3315  */
3316 ir_node *new_d_strictConv   (dbg_info *db, ir_node *op, ir_mode *mode);
3317
3318 /** Constructor for a Cast node.
3319  *
3320  * High level type cast
3321  * Adds the node to the block in current_ir_block.
3322  *
3323  * @param   *db    A pointer for debug information.
3324  * @param   *op    The operand.
3325  * @param   *to_tp The type of this the operand muss be casted .
3326  */
3327 ir_node *new_d_Cast   (dbg_info *db, ir_node *op, ir_type *to_tp);
3328
3329 /** Constructor for a Carry node.
3330  *
3331  * Adds the node to the block in current_ir_block.
3332  *
3333  * @param   *db    A pointer for debug information.
3334  * @param   *op1   The first operand.
3335  * @param   *op2   The second operand.
3336  * @param   *mode  The mode of the operands and the result.
3337  */
3338 ir_node *new_d_Carry  (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3339
3340 /** Constructor for a Borrow node.
3341  *
3342  * Adds the node to the block in current_ir_block.
3343  *
3344  * @param   *db    A pointer for debug information.
3345  * @param   *op1   The first operand.
3346  * @param   *op2   The second operand.
3347  * @param   *mode  The mode of the operands and the result.
3348  */
3349 ir_node *new_d_Borrow (dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode);
3350
3351 /** Constructor for a Phi node.
3352  *
3353  * Adds the node to the block in current_ir_block.
3354  *
3355  * @param *db    A pointer for debug information.
3356  * @param arity  The number of predecessors
3357  * @param *in    Array with predecessors
3358  * @param *mode  The mode of it's inputs and output.
3359  */
3360 ir_node *new_d_Phi    (dbg_info *db, int arity, ir_node *in[], ir_mode *mode);
3361
3362 /** Constructor for a Load node.
3363  *
3364  * Adds the node to the block in current_ir_block.
3365  *
3366  * @param *db    A pointer for debug information.
3367  * @param *store The current memory
3368  * @param *addr  A pointer to the variable to be read in this memory.
3369  * @param *mode  The mode of the value to be loaded.
3370  */
3371 ir_node *new_d_Load   (dbg_info *db, ir_node *store, ir_node *addr, ir_mode *mode);
3372
3373 /** Constructor for a Store node.
3374  *
3375  * Adds the node to the block in current_ir_block.
3376  *
3377  * @param *db    A pointer for debug information.
3378  * @param *store The current memory
3379  * @param *addr  A pointer to the variable to be read in this memory.
3380  * @param *val   The value to write to this variable.
3381  */
3382 ir_node *new_d_Store  (dbg_info *db, ir_node *store, ir_node *addr, ir_node *val);
3383
3384 /** Constructor for a Alloc node.
3385  *
3386  * The Alloc node extends the memory by space for an entity of type alloc_type.
3387  * Adds the node to the block in current_ir_block.
3388  *
3389  * @param *db         A pointer for debug information.
3390  * @param *store      The memory which shall contain the new variable.
3391  * @param *size       The number of bytes to allocate.
3392  * @param *alloc_type The type of the allocated variable.
3393  * @param where       Where to allocate the variable, either heap_alloc or stack_alloc.
3394  */
3395 ir_node *new_d_Alloc  (dbg_info *db, ir_node *store, ir_node *size, ir_type *alloc_type,
3396                        ir_where_alloc where);
3397
3398  /** Constructor for a Free node.
3399  *
3400  * Frees the memory occupied by the entity pointed to by the pointer
3401  * arg.  Type indicates the type of the entity the argument points to.
3402  * Adds the node to the block in current_ir_block.
3403  *
3404  * @param *db         A pointer for debug information.
3405  * @param *store      The memory which shall contain the new variable.
3406  * @param *ptr        The pointer to the object to free.
3407  * @param *size       The number of objects of type free_type to free in a sequence.
3408  * @param *free_type  The type of the freed variable.
3409  * @param where       Where the variable was allocated, either heap_alloc or stack_alloc.
3410  */
3411 ir_node *new_d_Free   (dbg_info *db, ir_node *store, ir_node *ptr, ir_node *size,
3412              ir_type *free_type, ir_where_alloc where);
3413
3414 /** Constructor for a Sync node.
3415  *
3416  * Merges several memory values.  The node assumes that a variable
3417  * either occurs only in one of the memories, or it contains the same
3418  * value in all memories where it occurs.
3419  * Adds the node to the block in current_ir_block.
3420  *
3421  * @param *db       A pointer for debug information.
3422  * @param  arity    The number of memories to synchronize.
3423  * @param  **in     An array of pointers to nodes that produce an output of type
3424  *                  memory.  The constructor copies this array.
3425  */
3426 ir_node *new_d_Sync   (dbg_info *db, int arity, ir_node *in[]);
3427
3428 /** Constructor for a Proj node.
3429  *
3430  * Projects a single value out of a tuple.  The parameter proj gives the
3431  * position of the value within the tuple.
3432  * Adds the node to the block in current_ir_block.
3433  *
3434  * @param *db    A pointer for deubug information.
3435  * @param arg    A node producing a tuple.
3436  * @param *mode  The mode of the value to project.
3437  * @param proj   The position of the value in the tuple.
3438  */
3439 ir_node *new_d_Proj   (dbg_info *db, ir_node *arg, ir_mode *mode, long proj);
3440
3441 /** Constructor for a defaultProj node.
3442  *
3443  * Represents the default control flow of a Switch-Cond node.
3444  * Adds the node to the block in current_ir_block.
3445  *
3446  * @param *db       A pointer for debug information.
3447  * @param arg       A node producing a tuple.
3448  * @param max_proj  The end  position of the value in the tuple.
3449  */
3450 ir_node *new_d_defaultProj (dbg_info *db, ir_node *arg, long max_proj);
3451
3452 /** Constructor for a Tuple node.
3453  *
3454  * This is an auxiliary node to replace a node that returns a tuple
3455  * without changing the corresponding Proj nodes.
3456  * Adds the node to the block in current_ir_block.
3457  *
3458  * @param *db     A pointer for debug information.
3459  * @param arity   The number of tuple elements.
3460  * @param **in    An array containing pointers to the nodes producing the tuple elements.
3461  */
3462 ir_node *new_d_Tuple  (dbg_info *db, int arity, ir_node *in[]);
3463
3464 /** Constructor for a Id node.
3465  *
3466  * This is an auxiliary node to replace a node that returns a single
3467  * value. Adds the node to the block in current_ir_block.
3468  *
3469  * @param *db     A pointer for debug information.
3470  * @param *val    The operand to Id.
3471  * @param *mode   The mode of *val.
3472  */
3473 ir_node *new_d_Id     (dbg_info *db, ir_node *val, ir_mode *mode);
3474
3475 /** Constructor for a Bad node.
3476  *
3477  * Returns the unique Bad node of the graph.  The same as
3478  * get_irg_bad().
3479  */
3480 ir_node *new_d_Bad    (void);
3481
3482 /** Constructor for a Confirm node.
3483  *
3484  * Constructor for a Confirm node. Adds the node to the block in current_ir_block.
3485  * Specifies constraints for a value.  To support dataflow analyses.
3486  *
3487  * Example: If the value never exceeds '100' this is expressed by placing a
3488  * Confirm node val = new_d_Confirm(db, val, 100, '<=') on the dataflow edge.
3489  *
3490  * @param *db     A pointer for debug information.
3491  * @param *val    The value we express a constraint for
3492  * @param *bound  The value to compare against. Must be a firm node, typically a constant.
3493  * @param cmp     The compare operation.
3494  */
3495 ir_node *new_d_Confirm (dbg_info *db, ir_node *val, ir_node *bound, pn_Cmp cmp);
3496
3497 /** Constructor for an Unknown node.
3498  *
3499  * Represents an arbitrary value.  Places the node in
3500  * the start block.
3501  *
3502  * @param *m      The mode of the unknown value.
3503  */
3504 ir_node *new_d_Unknown(ir_mode *m);
3505
3506 /** Constructor for a CallBegin node.
3507  *
3508  * CallBegin represents control flow depending of the pointer value
3509  * representing the called method to the called methods.  The
3510  * constructor copies the method pointer input from the passed Call
3511  * node.Adds the node to the block in current_ir_block.
3512  *
3513  * @param *db     A pointer for debug information.
3514  * @param *callee The call node visible in the  intra procedural view.
3515  */
3516 ir_node *new_d_CallBegin(dbg_info *db, ir_node *callee);
3517
3518 /** Constructor for an EndReg node.
3519  *
3520  *Adds the node to the block in current_ir_block.
3521  *
3522  * @param *db     A pointer for debug information.
3523  */
3524 ir_node *new_d_EndReg (dbg_info *db);
3525
3526 /** Constructor for an EndExcept node.
3527  *
3528  * Used to represent regular procedure end in interprocedual view.
3529  * Adds the node to the block in current_ir_block.
3530  *
3531  * @param *db     A pointer for debug information.
3532  */
3533 ir_node *new_d_EndExcept(dbg_info *db);
3534
3535 /** Constructor for a Break node.
3536  *
3537  * Used to represent exceptional procedure end in interprocedural view.
3538  * Adds the node to the block in current_ir_block.
3539  *
3540  * Break represents control flow to a single control successor just as Jmp.
3541  * The blocks separated by a break may not be concatenated by an optimization.
3542  * It is used for the interprocedural representation where blocks are parted
3543  * behind Call nodes to represent the control flow to called procedures.
3544  *
3545  * @param *db     A pointer for debug information.
3546  */
3547 ir_node *new_d_Break (dbg_info *db);
3548
3549 /** Constructor for a Filter node.
3550  *
3551  * Constructor for a Filter node. Adds the node to the block in
3552  * current_ir_block.  Filter is a node with two views used to
3553  * construct the interprocedural view.  In intraprocedural view its
3554  * semantics are identical to the Proj node.  In interprocedural view
3555  * the Filter performs the Phi operation on method parameters or
3556  * results.  Other than a Phi a Filter node may not be removed if it
3557  * has only a single input.
3558  *
3559  * The constructor builds the Filter in intraprocedural view.
3560  *
3561  * @param *db   A pointer for debug information.
3562  * @param *arg  The tuple value to project from.
3563  * @param *mode The mode of the projected value.
3564  * @param proj  The position in the tuple to project from.
3565  */
3566 ir_node *new_d_Filter (dbg_info *db, ir_node *arg, ir_mode *mode, long proj);
3567
3568
3569 /** Constructor for a NoMem node.
3570  *
3571  * Returns the unique NoMem node of the graph.  The same as
3572  * get_irg_no_mem().
3573  */
3574 ir_node *new_d_NoMem  (void);
3575
3576 /** Constructor for a Mux node.
3577  *
3578  * @param *db       A pointer for debug information.
3579  * @param *sel      The ir_node that calculates the boolean select.
3580  * @param *ir_true  The ir_node that calculates the true result.
3581  * @param *ir_false The ir_node that calculates the false result.
3582  * @param *mode     The mode of the node (and it_true and ir_false).
3583  */
3584 ir_node *new_d_Mux  (dbg_info *db, ir_node *sel,
3585     ir_node *ir_false, ir_node *ir_true, ir_mode *mode);
3586
3587 /** Constructor for a CopyB node.
3588  *
3589  * @param *db         A pointer for debug information.
3590  * @param *store      The current memory
3591  * @param *dst        The ir_node that represents the destination address.
3592  * @param *src        The ir_node that represents the source address.
3593  * @param *data_type  The type of the copied data
3594  */
3595 ir_node *new_d_CopyB(dbg_info *db, ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type);
3596
3597 /** Constructor for a InstOf node.
3598  *
3599  * A High-Level Type check.
3600  *
3601  * @param   *db        A pointer for debug information.
3602  * @param   *store     The memory in which the object the entity should be selected
3603  *                     from is allocated.
3604  * @param   *objptr    A pointer to a object of a class type.
3605  * @param   *type      The type of which objptr must be.
3606  */
3607 ir_node *new_d_InstOf (dbg_info *db, ir_node *store, ir_node *objptr, ir_type *type);
3608
3609 /** Constructor for a Raise node.
3610  *
3611  * A High-Level Exception throw.
3612  *
3613  * @param *db    A pointer for debug information.
3614  * @param *store The current memory.
3615  * @param *obj   A pointer to the Except variable.
3616  */
3617 ir_node *new_d_Raise  (dbg_info *db, ir_node *store, ir_node *obj);
3618
3619 /** Constructor for a Bound node.
3620  *
3621  * A High-Level bounds check. Checks whether lower <= idx && idx < upper.
3622  *
3623  * @param *db         A pointer for debug information.
3624  * @param *store      The current memory
3625  * @param *idx        The ir_node that represents an index.
3626  * @param *lower      The ir_node that represents the lower bound for the index.
3627  * @param *upper      The ir_node that represents the upper bound for the index.
3628  */
3629 ir_node *new_d_Bound(dbg_info *db, ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
3630
3631 /** Constructor for a Pin node.
3632  *
3633  * @param *db         A pointer for debug information.
3634  * @param *node       The node which value should be pinned.
3635  */
3636 ir_node *new_d_Pin(dbg_info *db, ir_node *node);
3637
3638 /** Constructor for an ASM pseudo node.
3639  *
3640  * @param *db         A pointer for debug information.
3641  * @param arity       The number of data inputs to the node.
3642  * @param *in         The array of length arity of data inputs.
3643  * @param *inputs     The array of length arity of input constraints.
3644  * @param n_outs      The number of data outputs to the node.
3645  * @param *outputs    The array of length n_outs of output constraints.
3646  * @param n_clobber   The number of clobbered registers.
3647  * @param *clobber    The array of length n_clobber of clobbered registers.
3648  * @param *asm_text   The assembler text.
3649  */
3650 ir_node *new_d_ASM(dbg_info *db, int arity, ir_node *in[], ir_asm_constraint *inputs,
3651                    int n_outs, ir_asm_constraint *outputs,
3652                    int n_clobber, ident *clobber[], ident *asm_text);
3653
3654 /*-----------------------------------------------------------------------*/
3655 /* The block oriented interface without debug support                    */
3656 /*-----------------------------------------------------------------------*/
3657
3658 /* Needed from the interface with debug support:
3659 void set_cur_block (ir_node *target);   */
3660
3661 /** Constructor for a Block node.
3662  *
3663  * Constructor for a Block node. Adds the block to the graph in
3664  * current_ir_graph.  Constructs a Block with a fixed number of
3665  * predecessors.  Does set current_block.  Can be used with automatic
3666  * Phi node construction.
3667  *
3668  * @param arity  The number of control predecessors.
3669  * @param in     An array of control predecessors.  The length of
3670  *               the array must be 'arity'.
3671  */
3672 ir_node *new_Block(int arity, ir_node *in[]);
3673
3674 /** Constructor for a Start node.
3675  *
3676  * Adds the node to the block in current_ir_block.
3677  *
3678  */
3679 ir_node *new_Start  (void);
3680
3681 /** Constructor for an End node.
3682  *
3683  * Adds the node to the block in current_ir_block.
3684  */
3685 ir_node *new_End    (void);
3686
3687 /** Constructor for an EndReg node.
3688  *
3689  * Used to represent regular procedure end in interprocedual view.
3690  * Adds the node to the block in current_ir_block.
3691  */
3692 ir_node *new_EndReg (void);
3693
3694 /** Constructor for an EndExpcept node.
3695  *
3696  *  Used to represent exceptional procedure end in interprocedural view.
3697  *  Adds the node to the block in current_ir_block.
3698  */
3699 ir_node *new_EndExcept(void);
3700
3701 /** Constructor for a Jump node.
3702  *
3703  * Adds the node to the block in current_ir_block.
3704  *
3705  * Jmp represents control flow to a single control successor.
3706  */
3707 ir_node *new_Jmp    (void);
3708
3709 /** Constructor for an IJmp node.
3710  *
3711  * IJmp represents control flow to a single control successor not
3712  * statically known i.e. an indirect Jmp.
3713  *
3714  * @param *tgt    The IR node representing the target address.
3715  */
3716 ir_node *new_IJmp   (ir_node *tgt);
3717
3718 /** Constructor for a Break node.
3719  * Break represents control flow to a single control successor just as Jmp.
3720  * The blocks separated by a break may not be concatenated by an optimization.
3721  * It is used for the interprocedural representation where blocks are parted
3722  * behind Call nodes to represent the control flow to called procedures.
3723  * Adds the node to the block in current_ir_block.
3724  */
3725 ir_node *new_Break  (void);
3726
3727 /** Constructor for a Cond node.
3728  *
3729  * If c is mode_b represents a conditional branch (if/else). If c is
3730  * mode_Is/mode_Iu (?) represents a switch.  (Allocates dense Cond
3731  * node, default Proj is 0.). Adds the node to the block in current_ir_block.
3732  *
3733  * This is not consistent:  Input to Cond is Is, Proj has as proj number
3734  * longs.
3735  *
3736  *
3737  * @param *c     The conditions parameter.Can be of mode b or I_u.
3738  */
3739 ir_node *new_Cond   (ir_node *c);
3740
3741 /** Constructor for a Return node.
3742  *
3743  * Returns the memory an zero or more return values.  Only node that
3744  * can end regular control flow. Adds the node to the block in current_ir_block.
3745  *
3746  * @param *store The state of memory.
3747  * @param arity  Number of array indices.
3748  * @param *in    Array with index inputs to the node.
3749  */
3750 ir_node *new_Return (ir_node *store, int arity, ir_node *in[]);
3751
3752 /** Constructor for a Const node.
3753  *
3754  * Constructor for a Const node. The constant represents a target
3755  * value.  Sets the type information to type_unknown.  (No more
3756  * supported: If tv is entity derives a somehow useful type.)
3757  * Adds the node to the block in current_ir_block.
3758  *
3759  * @param *mode  The mode of the operands and results.
3760  * @param *con   Points to an entry in the constant table. This pointer is
3761  *               added to the attributes of  the node.
3762  */
3763 ir_node *new_Const  (ir_mode *mode, tarval *con);
3764
3765 /**
3766  * Make a const from a long.
3767  * This is just convenience for the usual
3768  * <code>
3769  * new_Const(mode, tarval_from_long(mode, ...))
3770  * </code>
3771  * pain.
3772  * @param mode The mode for the const.
3773  * @param value The value of the constant.
3774  * @return A new const node.
3775  */
3776 ir_node *new_Const_long(ir_mode *mode, long value);
3777
3778 /** Constructor for a Const node.
3779  *
3780  * Derives mode from passed type. */
3781 ir_node *new_Const_type(tarval *con, ir_type *tp);
3782
3783 /** Constructor for a SymConst node.
3784  *
3785  * Adds the node to the block in current_ir_block.
3786  * This is the constructor for a symbolic constant.
3787  * There are four kinds of symbolic constants:
3788  *    -# type_tag  The symbolic constant represents a type tag.  The type the
3789  *                 tag stands for is given explicitly.
3790  *    -# size      The symbolic constant represents the size of a type.  The
3791  *                 type of which the constant represents the size is given
3792  *                 explicitly.
3793  *    -# align     The symbolic constant represents the alignment of a type.  The
3794  *                 type of which the constant represents the size is given
3795  *                 explicitly.
3796  *    -# addr_name The symbolic constant represents the address of an entity
3797  *                 (variable or method).  The variable is indicated by a name
3798  *                 that is valid for linking.
3799  *    -# addr_ent  The symbolic constant represents the address of an entity
3800  *                 (variable or method).  The variable is given explicitly by
3801  *                 a firm entity.
3802  *
3803  *    Inputs to the node:
3804  *      No inputs except the block it belongs to.
3805  *    Outputs of the node.
3806  *      An unsigned integer (I_u) or a pointer (P).
3807  *
3808  * @param mode    The mode for the SymConst.
3809  * @param value   A type or a ident depending on the SymConst kind.
3810  * @param kind    The kind of the symbolic constant: symconst_type_tag, symconst_type_size
3811  *                symconst_type_align, symconst_addr_name or symconst_addr_ent.
3812  * @param tp      The source type of the constant.
3813  */
3814 ir_node *new_SymConst_type(ir_mode *mode, union symconst_symbol value, symconst_kind kind, ir_type *tp);
3815
3816 /** Constructor for a SymConst node.
3817  *
3818  * Adds the node to the block in current_ir_block.
3819  * This is the constructor for a symbolic constant.
3820  * There are four kinds of symbolic constants:
3821  *    -# type_tag  The symbolic constant represents a type tag.  The type the
3822  *                 tag stands for is given explicitly.
3823  *    -# size      The symbolic constant represents the size of a type.  The
3824  *                 type of which the constant represents the size is given
3825  *                 explicitly.
3826  *    -# align     The symbolic constant represents the alignment of a type.  The
3827  *                 type of which the constant represents the size is given
3828  *                 explicitly.
3829  *    -# addr_name The symbolic constant represents the address of an entity
3830  *                 (variable or method).  The variable is indicated by a name
3831  *                 that is valid for linking.
3832  *    -# addr_ent  The symbolic constant represents the address of an entity
3833  *                 (variable or method).  The variable is given explicitly by
3834  *                 a firm entity.
3835  *
3836  *    Inputs to the node:
3837  *      No inputs except the block it belongs to.
3838  *    Outputs of the node.
3839  *      An unsigned integer (I_u) or a pointer (P).
3840  *
3841  * @param mode    The mode for the SymConst.
3842  * @param value   A type or a ident depending on the SymConst kind.
3843  * @param kind    The kind of the symbolic constant: symconst_type_tag, symconst_type_size
3844  *                symconst_type_align, symconst_addr_name or symconst_addr_ent.
3845  */
3846 ir_node *new_SymConst(ir_mode *mode, union symconst_symbol value, symconst_kind kind);
3847
3848 /** Constructor for a simpelSel node.
3849  *
3850  *  This is a shortcut for the new_Sel() constructor.  To be used for
3851  *  Sel nodes that do not select from an array, i.e., have no index
3852  *  inputs.  It adds the two parameters 0, NULL.
3853  *
3854  * @param   *store     The memory in which the object the entity should be selected from is allocated.
3855  * @param   *objptr    The object from that the Sel operation selects a single attribute out.
3856  * @param   *ent       The entity to select.
3857  */
3858 ir_node *new_simpleSel(ir_node *store, ir_node *objptr, ir_entity *ent);
3859
3860 /** Constructor for a Sel node.
3861  *
3862  * The select node selects an entity (field or method) from an entity
3863  * with a compound type.  It explicitly specifies the entity selected.
3864  * Dynamically the node may select entities that overwrite the given
3865  * entity.  If the selected entity is an array element entity the Sel
3866  * node takes the required array indices as inputs.
3867  * Adds the node to the block in current_ir_block.
3868  *
3869  * @param   *store     The memory in which the object the entity should be selected
3870  *                     from is allocated.
3871  * @param   *objptr    A pointer to a compound entity the Sel operation selects a
3872  *                     single attribute from.
3873  * @param   arity      The number of array indices needed to select an array element entity.
3874  * @param   *in[]      If the compound entity is an array the indices of the selected
3875  *                     element entity.  The constructor copies this array.
3876  * @param   *ent       The entity to select.
3877  */
3878 ir_node *new_Sel    (ir_node *store, ir_node *objptr, int arity, ir_node *in[],
3879                      ir_entity *ent);
3880
3881 /** Constructor for a Call node.
3882  *
3883  *  Adds the node to the block in current_ir_block.
3884  *  Represents all kinds of method and function calls.
3885  *
3886  * @param   *store  The actual store.
3887  * @param   *callee A pointer to the called procedure.
3888  * @param   arity   The number of procedure parameters.
3889  * @param   *in[]   An array with the pointers to the parameters. The constructor copies this array.
3890  * @param   *tp     Type information of the procedure called.
3891  */
3892 ir_node *new_Call   (ir_node *store, ir_node *callee, int arity, ir_node *in[],
3893                      ir_type *tp);
3894
3895 /** Constructor for a CallBegin node.
3896  *
3897  * CallBegin represents control flow depending of the pointer value
3898  * representing the called method to the called methods.  The
3899  * constructor copies the method pointer input from the passed Call
3900  * node. Adds the node to the block in current_ir_block.
3901  *
3902  * @param   *callee A pointer to the called procedure.
3903  */
3904 ir_node *new_CallBegin(ir_node *callee);
3905
3906 /** Constructor for a Add node.
3907  *
3908  * Adds the node to the block in current_ir_block.
3909  *
3910  * @param   *op1   The first operand.
3911  * @param   *op2   The second operand.
3912  * @param   *mode  The mode of the operands and the result.
3913  */
3914 ir_node *new_Add    (ir_node *op1, ir_node *op2, ir_mode *mode);
3915
3916 /** Constructor for a Sub node.
3917  *
3918  * Adds the node to the block in current_ir_block.
3919  *
3920  * @param   *op1   The first operand.
3921  * @param   *op2   The second operand.
3922  * @param   *mode  The mode of the operands and the result.
3923  */
3924 ir_node *new_Sub    (ir_node *op1, ir_node *op2, ir_mode *mode);
3925
3926 /** Constructor for a Minus node.
3927  *
3928  * Adds the node to the block in current_ir_block.
3929  *
3930  * @param   *op    The operand .
3931  * @param   *mode  The mode of the operand and the result.
3932  */
3933 ir_node *new_Minus  (ir_node *op,  ir_mode *mode);
3934
3935 /**
3936  * Constructor for a Mul node. Adds the node to the block in current_ir_block.
3937  *
3938  * @param   *op1   The first operand.
3939  * @param   *op2   The second operand.
3940  * @param   *mode  The mode of the operands and the result.
3941  */
3942 ir_node *new_Mul    (ir_node *op1, ir_node *op2, ir_mode *mode);
3943
3944 /**
3945  * Constructor for a Mulh node. Adds the node to the block in current_ir_block.
3946  *
3947  * @param   *op1   The first operand.
3948  * @param   *op2   The second operand.
3949  * @param   *mode  The mode of the operands and the result.
3950  */
3951 ir_node *new_Mulh   (ir_node *op1, ir_node *op2, ir_mode *mode);
3952
3953 /** Constructor for a Quot node.
3954  *
3955  * Adds the node to the block in current_ir_block.
3956  *
3957  * @param   *memop The store needed to model exceptions
3958  * @param   *op1   The first operand.
3959  * @param   *op2   The second operand.
3960  * @param   *mode  The mode of the result.
3961  * @param   state  The pinned state.
3962  */
3963 ir_node *new_Quot   (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3964
3965 /** Constructor for a DivMod node.
3966  *
3967  * Adds the node to the block in current_ir_block.
3968  *
3969  * @param   *memop The store needed to model exceptions
3970  * @param   *op1   The first operand.
3971  * @param   *op2   The second operand.
3972  * @param   *mode  The mode of the results.
3973  * @param   state  The pinned state.
3974  */
3975 ir_node *new_DivMod (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3976
3977 /** Constructor for a Div node.
3978  *
3979  * Adds the node to the block in current_ir_block.
3980  *
3981  * @param   *memop The store needed to model exceptions
3982  * @param   *op1   The first operand.
3983  * @param   *op2   The second operand.
3984  * @param   *mode  The mode of the result.
3985  * @param   state  The pinned state.
3986  */
3987 ir_node *new_Div    (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
3988
3989 /** Constructor for a remainderless Div node.
3990  *
3991  * Adds the node to the block in current_ir_block.
3992  *
3993  * @param   *memop The store needed to model exceptions
3994  * @param   *op1   The first operand.
3995  * @param   *op2   The second operand.
3996  * @param   *mode  The mode of the result.
3997  * @param   state  The pinned state.
3998  */
3999 ir_node *new_DivRL  (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
4000
4001 /** Constructor for a Mod node.
4002  *
4003  * Adds the node to the block in current_ir_block.
4004  *
4005  * @param   *memop The store needed to model exceptions
4006  * @param   *op1   The first operand.
4007  * @param   *op2   The second operand.
4008  * @param   *mode  The mode of the result.
4009  * @param   state  The pinned state.
4010  */
4011 ir_node *new_Mod    (ir_node *memop, ir_node *op1, ir_node *op2, ir_mode *mode, op_pin_state state);
4012
4013 /** Constructor for a Abs node.
4014  *
4015  * Adds the node to the block in current_ir_block.
4016  *
4017  * @param   *op    The operand
4018  * @param   *mode  The mode of the operands and the result.
4019  */
4020 ir_node *new_Abs    (ir_node *op,                ir_mode *mode);
4021
4022 /** Constructor for a And node.
4023  *
4024  * Adds the node to the block in current_ir_block.
4025  *
4026  * @param   *op1   The first operand.
4027  * @param   *op2   The second operand.
4028  * @param   *mode  The mode of the operands and the result.
4029  */
4030 ir_node *new_And    (ir_node *op1, ir_node *op2, ir_mode *mode);
4031
4032 /**
4033  * Constructor for a Or node. Adds the node to the block in current_ir_block.
4034  *
4035  * @param   *op1   The first operand.
4036  * @param   *op2   The second operand.
4037  * @param   *mode  The mode of the operands and the result.
4038  */
4039 ir_node *new_Or     (ir_node *op1, ir_node *op2, ir_mode *mode);
4040
4041 /**
4042  * Constructor for a Eor node. Adds the node to the block in current_ir_block.
4043  *
4044  * @param   *op1   The first operand.
4045  * @param   *op2   The second operand.
4046  * @param   *mode  The mode of the operands and the results.
4047  */
4048 ir_node *new_Eor    (ir_node *op1, ir_node *op2, ir_mode *mode);
4049
4050 /** Constructor for a Not node.
4051  *
4052  * Adds the node to the block in current_ir_block.
4053  *
4054  * @param   *op    The operand.
4055  * @param   *mode  The mode of the operand and the result.
4056  */
4057 ir_node *new_Not    (ir_node *op,                ir_mode *mode);
4058
4059 /** Constructor for a Shl node.
4060  *
4061  * Adds the node to the block in current_ir_block.
4062  *
4063  * @param   *op    The operand.
4064  * @param   *k     The number of bits to  shift the operand .
4065  * @param   *mode  The mode of the operand and the result.
4066  */
4067 ir_node *new_Shl    (ir_node *op,  ir_node *k,   ir_mode *mode);
4068
4069 /**
4070  * Constructor for a Shr node. Adds the node to the block in current_ir_block.
4071  *
4072  * @param   *op    The operand.
4073  * @param   *k     The number of bits to  shift the operand .
4074  * @param   *mode  The mode of the operand and the result.
4075  */
4076 ir_node *new_Shr    (ir_node *op,  ir_node *k,   ir_mode *mode);
4077
4078 /** Constructor for a Shrs node.
4079  *
4080  * Adds the node to the block in current_ir_block.
4081  *
4082  * @param   *op    The operand.
4083  * @param   *k     The number of bits to  shift the operand .
4084  * @param   *mode  The mode of the operand and the result.
4085  */
4086 ir_node *new_Shrs   (ir_node *op,  ir_node *k,   ir_mode *mode);
4087
4088 /** Constructor for a Rotl node.
4089  *
4090  * Adds the node to the block in current_ir_block.
4091  *
4092  * @param   *op    The operand.
4093  * @param   *k     The number of bits to rotate the operand.
4094  * @param   *mode  The mode of the operand.
4095  */
4096 ir_node *new_Rotl   (ir_node *op,  ir_node *k,   ir_mode *mode);
4097
4098 /** Constructor for a Cmp node.
4099  *
4100  * Adds the node to the block in current_ir_block.
4101  *
4102  * @param   *op1   The first operand.
4103  * @param   *op2   The second operand.
4104  */
4105 ir_node *new_Cmp    (ir_node *op1, ir_node *op2);
4106
4107 /** Constructor for a Conv node.
4108  *
4109  * Adds the node to the block in current_ir_block.
4110  *
4111  * @param   *op          The operand.
4112  * @param   *mode        The mode of this the operand muss be converted.
4113  */
4114 ir_node *new_Conv   (ir_node *op, ir_mode *mode);
4115
4116 /** Constructor for a strict Conv node.
4117  *
4118  * Adds the node to the block in current_ir_block.
4119  *
4120  * @param   *op          The operand.
4121  * @param   *mode        The mode of this the operand muss be converted.
4122  */
4123 ir_node *new_strictConv   (ir_node *op, ir_mode *mode);
4124
4125 /** Constructor for a Cast node.
4126  *
4127  * Adds the node to the block in current_ir_block.
4128  * High level type cast
4129  *
4130  * @param   *op    The operand.
4131  * @param   *to_tp The type of this the operand muss be casted .
4132  */
4133 ir_node *new_Cast   (ir_node *op, ir_type *to_tp);
4134
4135 /** Constructor for a Carry node.
4136  *
4137  * Adds the node to the block in current_ir_block.
4138  *
4139  * @param   *op1   The first operand.
4140  * @param   *op2   The second operand.
4141  * @param   *mode  The mode of the operands and the result.
4142  */
4143 ir_node *new_Carry  (ir_node *op1, ir_node *op2, ir_mode *mode);
4144
4145 /** Constructor for a Borrow node.
4146  *
4147  * Adds the node to the block in current_ir_block.
4148  *
4149  * @param   *op1   The first operand.
4150  * @param   *op2   The second operand.
4151  * @param   *mode  The mode of the operands and the result.
4152  */
4153 ir_node *new_Borrow (ir_node *op1, ir_node *op2, ir_mode *mode);
4154
4155 /** Constructor for a Phi node.
4156  *
4157  * Adds the node to the block in current_ir_block.
4158  *
4159  * @param arity  The number of predecessors.
4160  * @param *in    Array with predecessors.
4161  * @param *mode  The mode of it's inputs and output.
4162  */
4163 ir_node *new_Phi    (int arity, ir_node *in[], ir_mode *mode);
4164
4165 /** Constructor for a Load node.
4166  *
4167  * @param *store  The current memory.
4168  * @param *addr   A pointer to the variable to be read in this memory.
4169  * @param *mode   The mode of the value to be loaded.
4170  */
4171 ir_node *new_Load   (ir_node *store, ir_node *addr, ir_mode *mode);
4172
4173 /** Constructor for a Store node.
4174  *
4175  * @param *store  The current memory.
4176  * @param *addr   A pointer to the variable to be read in this memory.
4177  * @param *val    The value to write to this variable.
4178  */
4179 ir_node *new_Store  (ir_node *store, ir_node *addr, ir_node *val);
4180
4181 /** Constructor for a Alloc node.
4182  *
4183  * The Alloc node extends the memory by space for an entity of type alloc_type.
4184  * Adds the node to the block in current_ir_block.
4185  *
4186  * @param *store      The memory which shall contain the new variable.
4187  * @param *size       The number of bytes to allocate.
4188  * @param *alloc_type The type of the allocated variable.
4189  * @param where       Where to allocate the variable, either heap_alloc or stack_alloc.
4190  */
4191 ir_node *new_Alloc  (ir_node *store, ir_node *size, ir_type *alloc_type,
4192                      ir_where_alloc where);
4193
4194 /** Constructor for a Free node.
4195  *
4196  * Frees the memory occupied by the entity pointed to by the pointer
4197  * arg.  Type indicates the type of the entity the argument points to.
4198  * Adds the node to the block in current_ir_block.
4199  *
4200  * @param *store      The memory which shall contain the new variable.
4201  * @param *ptr        The pointer to the object to free.
4202  * @param *size       The number of objects of type free_type to free in a sequence.
4203  * @param *free_type  The type of the freed variable.
4204  * @param where       Where the variable was allocated, either heap_alloc or stack_alloc.
4205  */
4206 ir_node *new_Free   (ir_node *store, ir_node *ptr, ir_node *size,
4207                              ir_type *free_type, ir_where_alloc where);
4208
4209 /** Constructor for a Sync node.
4210  *
4211  * Merges several memory values.  The node assumes that a variable
4212  * either occurs only in one of the memories, or it contains the same
4213  * value in all memories where it occurs.
4214  * Adds the node to the block in current_ir_block.
4215  *
4216  * @param  arity    The number of memories to synchronize.
4217  * @param  **in     An array of pointers to nodes that produce an output of type
4218  *                  memory.  The constructor copies this array.
4219  */
4220 ir_node *new_Sync   (int arity, ir_node *in[]);
4221
4222 /** Constructor for a Proj node.
4223  *
4224  * Projects a single value out of a tuple.  The parameter proj gives the
4225  * position of the value within the tuple.
4226  * Adds the node to the block in current_ir_block.
4227  *
4228  * @param arg    A node producing a tuple.
4229  * @param *mode  The mode of the value to project.
4230  * @param proj   The position of the value in the tuple.
4231  */
4232 ir_node *new_Proj   (ir_node *arg, ir_mode *mode, long proj);
4233
4234 /** Constructor for a Filter node.
4235  *
4236  * Constructor for a Filter node. Adds the node to the block in current_ir_block.
4237  * Filter is a node with two views used to construct the interprocedural view.
4238  * In intraprocedural view its semantics are identical to the Proj node.
4239  * In interprocedural view the Filter performs the Phi operation on method
4240  * parameters or results.  Other than a Phi a Filter node may not be removed
4241  * if it has only a single input.
4242  *
4243  * The constructor builds the Filter in intraprocedural view.
4244  *
4245  * @param *arg  The tuple value to project from.
4246  * @param *mode The mode of the projected value.
4247  * @param proj  The position in the tuple to project from.
4248  */
4249 ir_node *new_Filter (ir_node *arg, ir_mode *mode, long proj);
4250
4251 /** Constructor for a defaultProj node.
4252  *
4253  * Represents the default control flow of a Switch-Cond node.
4254  * Adds the node to the block in current_ir_block.
4255  *
4256  * @param arg       A node producing a tuple.
4257  * @param max_proj  The end  position of the value in the tuple.
4258  */
4259 ir_node *new_defaultProj (ir_node *arg, long max_proj);
4260
4261 /** Constructor for a Tuple node.
4262  *
4263  * This is an auxiliary node to replace a node that returns a tuple
4264  * without changing the corresponding Proj nodes.
4265  * Adds the node to the block in current_ir_block.
4266  *
4267  * @param arity   The number of tuple elements.
4268  * @param **in    An array containing pointers to the nodes producing the tuple elements.
4269  */
4270 ir_node *new_Tuple  (int arity, ir_node *in[]);
4271
4272 /** Constructor for an Id node.
4273  *
4274  * This is an auxiliary node to replace a node that returns a single
4275  * value. Adds the node to the block in current_ir_block.
4276  *
4277  * @param *val    The operand to Id.
4278  * @param *mode   The mode of *val.
4279  */
4280 ir_node *new_Id     (ir_node *val, ir_mode *mode);
4281
4282 /** Constructor for a Bad node.
4283  *
4284  * Returns the unique Bad node of the graph.  The same as
4285  * get_irg_bad().
4286  */
4287 ir_node *new_Bad    (void);
4288
4289 /** Constructor for a Confirm node.
4290  *
4291  * Specifies constraints for a value.  To support dataflow analyses.
4292  * Adds the node to the block in current_ir_block.
4293  *
4294  * Example: If the value never exceeds '100' this is expressed by placing a
4295  * Confirm node val = new_d_Confirm(db, val, 100, '<=') on the dataflow edge.
4296  *
4297  * @param *val    The value we express a constraint for
4298  * @param *bound  The value to compare against. Must be a firm node, typically a constant.
4299  * @param cmp     The compare operation.
4300  */
4301 ir_node *new_Confirm (ir_node *val, ir_node *bound, pn_Cmp cmp);
4302
4303 /** Constructor for an Unknown node.
4304  *
4305  * Represents an arbitrary value.  Places the node in
4306  * the start block.
4307  *
4308  * @param *m      The mode of the unknown value.
4309  */
4310 ir_node *new_Unknown(ir_mode *m);
4311
4312 /** Constructor for a NoMem node.
4313  *
4314  * Returns the unique NoMem node of the graph.  The same as
4315  * get_irg_no_mem().
4316  */
4317 ir_node *new_NoMem  (void);
4318
4319 /** Constructor for a Mux node.
4320  *
4321  * Adds the node to the block in current_ir_block.
4322  *
4323  * @param *sel      The ir_node that calculates the boolean select.
4324  * @param *ir_true  The ir_node that calculates the true result.
4325  * @param *ir_false The ir_node that calculates the false result.
4326  * @param *mode     The mode of the node (and it_true and ir_false).
4327  */
4328 ir_node *new_Mux  (ir_node *sel, ir_node *ir_false, ir_node *ir_true, ir_mode *mode);
4329
4330 /** Constructor for a CopyB node.
4331  *
4332  * Adds the node to the block in current_ir_block.
4333  *
4334  * @param *store      The current memory
4335  * @param *dst        The ir_node that represents the destination address.
4336  * @param *src        The ir_node that represents the source address.
4337  * @param *data_type  The type of the copied data
4338  */
4339 ir_node *new_CopyB(ir_node *store, ir_node *dst, ir_node *src, ir_type *data_type);
4340
4341 /** Constructor for a InstOf node.
4342  *
4343  * A High-Level Type check.
4344  *
4345  * @param   *store     The memory in which the object the entity should be selected
4346  *                     from is allocated.
4347  * @param   *objptr    A pointer to a object of a class type.
4348  * @param   *type      The type of which objptr must be.
4349  */
4350 ir_node *new_InstOf (ir_node *store, ir_node *objptr, ir_type *type);
4351
4352 /**Constructor for a Raise node.
4353  *
4354  * A High-Level Exception throw.
4355  *
4356  * @param *store The current memory.
4357  * @param *obj   A pointer to the Except variable.
4358  */
4359 ir_node *new_Raise  (ir_node *store, ir_node *obj);
4360
4361 /** Constructor for a Bound node.
4362  *
4363  * A High-Level bounds check. Checks whether lower <= idx && idx < upper.
4364  *
4365  * Adds the node to the block in current_ir_block.
4366  *
4367  * @param *store      The current memory
4368  * @param *idx        The ir_node that represents an index.
4369  * @param *lower      The ir_node that represents the lower bound for the index.
4370  * @param *upper      The ir_node that represents the upper bound for the index.
4371  */
4372 ir_node *new_Bound  (ir_node *store, ir_node *idx, ir_node *lower, ir_node *upper);
4373
4374 /** Constructor for a Pin node.
4375  *
4376  * @param *node       The node which value should be pinned.
4377  */
4378 ir_node *new_Pin    (ir_node *node);
4379
4380 /** Constructor for an ASM pseudo node.
4381  *
4382  * @param arity       The number of data inputs to the node.
4383  * @param *in         The array of length arity of data inputs.
4384  * @param *inputs     The array of length arity of input constraints.
4385  * @param n_outs      The number of data outputs to the node.
4386  * @param *outputs    The array of length n_outs of output constraints.
4387  * @param n_clobber   The number of clobbered registers.
4388  * @param *clobber    The array of length n_clobber of clobbered registers.
4389  * @param *asm_text   The assembler text.
4390  */
4391 ir_node *new_ASM(int arity, ir_node *in[], ir_asm_constraint *inputs,
4392                  int n_outs, ir_asm_constraint *outputs,
4393                  int n_clobber, ident *clobber[], ident *asm_text);
4394
4395 /*---------------------------------------------------------------------*/
4396 /* The comfortable interface.                                          */
4397 /* Supports automatic Phi node construction.                           */
4398 /* All routines of the block oriented interface except new_Block are   */
4399 /* needed also.                                                        */
4400 /*---------------------------------------------------------------------*/
4401
4402 /** Create an immature Block.
4403  *
4404  * An immature Block has an unknown number of predecessors.  Predecessors
4405  * can be added with add_immBlock_pred().  Once all predecessors are
4406  * added the block must be matured.
4407  *
4408  * Adds the block to the graph in current_ir_graph. Does set
4409  * current_block.  Can be used with automatic Phi node construction.
4410  * This constructor can only be used if the graph is in
4411  * state_building.
4412  */
4413 ir_node *new_d_immBlock(dbg_info *db);
4414 ir_node *new_immBlock(void);
4415
4416 /** Create an immature PartBlock.
4417  *
4418  * An immature block has only one Block or PartBlock predecessor.
4419  * A PartBlock forms together with one BLock and possibly other
4420  * PartBlocks a MacroBlock.
4421  *
4422  * Adds the PartBlock to the graph in current_ir_graph. Does set
4423  * current_block.  Can be used with automatic Phi node construction.
4424  * This constructor can only be used if the graph is in
4425  * state_building.
4426  */
4427 ir_node *new_d_immPartBlock(dbg_info *db, ir_node *pred_jmp);
4428 ir_node *new_immPartBlock(ir_node *pred_jmp);
4429
4430 /** Add a control flow edge to an immature block. */
4431 void add_immBlock_pred(ir_node *immblock, ir_node *jmp);
4432
4433 /** Finalize a Block node, when all control flows are known. */
4434 void mature_immBlock(ir_node *block);
4435 #define mature_cur_block() mature_immBlock(get_cur_block());
4436
4437
4438 /** Get the current value of a local variable.
4439  *
4440  * Use this function to obtain the last definition of the local variable
4441  * associated with pos.  Pos may not exceed the value passed as n_loc
4442  * to new_ir_graph.  This call automatically inserts Phi nodes.
4443  *
4444  * @param *db    A pointer for debug information.
4445  * @param  pos   The position/id of the local variable.
4446  * @param *mode  The mode of the value to get.
4447  */
4448 ir_node *get_d_value(dbg_info *db, int pos, ir_mode *mode);
4449 ir_node *get_value(int pos, ir_mode *mode);
4450
4451 /** Remark a new definition of a variable.
4452  *
4453  * Use this function to remember a new definition of the value
4454  * associated with pos. Pos may not exceed the value passed as n_loc
4455  * to new_ir_graph.  This call is needed to automatically inserts Phi
4456  * nodes.
4457  *
4458  * @param  pos   The position/id of the local variable.
4459  * @param *value The new value written to the local variable.
4460  */
4461 void set_value(int pos, ir_node *value);
4462
4463 /** Find the value number for a node in the current block.
4464  *
4465  * This function searches all values in the current block for
4466  * a given value and returns its value number if it was found, else
4467  * -1.
4468  * Note that this does not mean that the value does not exists,
4469  * it's just not equal the node (for instance behind a Phi/Confirm ...)
4470  *
4471  * @param *value The value to find.
4472  */
4473 int find_value(ir_node *value);
4474
4475 /** Get the current memory state.
4476  *
4477  * Use this function to obtain the last definition of the memory
4478  * state.  This call automatically inserts Phi nodes for the memory
4479  * state value.
4480  */
4481 ir_node *get_store(void);
4482
4483 /** Remark a new definition of the memory state.
4484  *
4485  * Use this function to remember a new definition of the memory state.
4486  * This call is needed to automatically inserts Phi nodes.
4487  *
4488  * @param *store The new memory state.
4489  */
4490 void set_store(ir_node *store);
4491
4492 /** keep this node alive even if End is not control-reachable from it
4493  *
4494  * @param ka The node to keep alive.
4495  */
4496 void keep_alive(ir_node *ka);
4497
4498 /** Returns the frame type of the current graph */
4499 ir_type *get_cur_frame_type(void);
4500
4501
4502 /* --- initialize and finalize IR construction --- */
4503
4504 /** Puts the graph into state "phase_high" */
4505 #define irg_finalize_cons(irg) set_irg_phase_state(irg, phase_high)
4506
4507 /** Puts the program and all graphs into state phase_high.
4508  *
4509  * This also remarks, the construction of types is finished,
4510  * e.g., that no more subtypes will be added.  */
4511 void irp_finalize_cons(void);
4512
4513 /* --- Initialization --- */
4514
4515 /**
4516  * This function is called, whenever a local variable is used before definition
4517  *
4518  * @param irg       the IR graph on which this happens
4519  * @param mode      the mode of the local var
4520  * @param pos       position chosen be the frontend for this variable (n_loc)
4521  *
4522  * @return a firm node of mode @p mode that initializes the var at position pos
4523  *
4524  * @note
4525  *      Do not return NULL!
4526  *      If this function is not set, FIRM will create a const node with tarval BAD.
4527  *      Use set_irg_loc_description()/get_irg_loc_description() to assign additional
4528  *      informations to local variables.
4529  */
4530 typedef ir_node *uninitialized_local_variable_func_t(ir_graph *irg, ir_mode *mode, int pos);
4531
4532 #endif