finalize debug stuff before arch_env_done which frees be_emitter
[libfirm] / ir / ir / irtypes.h
1 /*
2  * Copyright (C) 1995-2011 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   Definition of the Firm IR base types, concentrated here
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #ifndef FIRM_IR_IRDEFS_H
27 #define FIRM_IR_IRDEFS_H
28
29 #include <stdbool.h>
30
31 #include "firm_types.h"
32 #include "irdom_t.h"
33 #include "irmode.h"
34 #include "irnode.h"
35 #include "irgraph.h"
36 #include "iredgekinds.h"
37 #include "irtypeinfo.h"
38 #include "irextbb.h"
39 #include "irmemory.h"
40 #include "callgraph.h"
41 #include "irprog.h"
42 #include "bitset.h"
43
44 #include "pset.h"
45 #include "set.h"
46 #include "list.h"
47 #include "obst.h"
48 #include "vrp.h"
49
50 struct ir_nodemap {
51         void **data;  /**< maps node indices to void* */
52 };
53
54 /** The type of an ir_op. */
55 struct ir_op {
56         unsigned code;            /**< The unique opcode of the op. */
57         ident *name;              /**< The name of the op. */
58         size_t attr_size;         /**< Space needed in memory for private attributes
59                                        */
60         op_pin_state pin_state;   /**< How to deal with the node in CSE, PRE. */
61         op_arity opar;            /**< The arity of operator. */
62         int op_index;             /**< The index of the first data operand, 0 for
63                                        most cases, 1 for Div etc. */
64         int fragile_mem_index;    /**< index of memory input for fragile nodes */
65         int pn_x_regular;         /**< for fragile ops the position of the
66                                        X_regular output */
67         int pn_x_except;          /**< for fragile ops the position of the
68                                        X_except output */
69         unsigned flags;           /**< Flags describing the behavior of the ir_op,
70                                        a bitmasks of irop_flags. */
71         unsigned tag;             /**< Some custom TAG value the op's creator set */
72         void *attr;               /**< custom pointer where op's creator can attach
73                                        attribute stuff to. */
74         ir_op_ops ops;            /**< The operations of the this op. */
75 };
76
77 /** Helper values for ir_mode_sort. */
78 enum ir_mode_sort_helper {
79         irmsh_is_num   = 0x10, /**< mode represents a number */
80         irmsh_is_data  = 0x20, /**< mode represents data (can be carried in registers) */
81         irmsh_is_datab = 0x40, /**< mode represents data or is internal boolean */
82         irmsh_is_dataM = 0x80, /**< mode represents data or is memory */
83 };
84
85 /**
86  * These values represent the different mode classes of value representations.
87  * Beware: do not change the order of these values without checking
88  * the mode_is
89  */
90 typedef enum ir_mode_sort {
91         irms_control_flow     = 0, /**< Marks all control flow modes. */
92         irms_block            = 1,
93         irms_tuple            = 2,
94         irms_any              = 3,
95         irms_bad              = 4,
96         irms_memory           = 5 | irmsh_is_dataM, /**< Marks the memory mode.  Not extensible. (irm_M) */
97
98         /** Internal boolean representation.
99              Storing to memory impossible, convert first. (irm_b) */
100         irms_internal_boolean = 6 | irmsh_is_datab,
101
102         /** A mode to represent entities.
103             Restricted int computations can be performed */
104         irms_reference        = 7 | irmsh_is_data | irmsh_is_datab | irmsh_is_dataM,
105         /** A mode to represent int numbers.
106             Integer computations can be performed. */
107         irms_int_number       = 8 | irmsh_is_data | irmsh_is_datab | irmsh_is_dataM | irmsh_is_num,
108         /** A mode to represent float numbers.
109             Floating point computations can be performed. */
110         irms_float_number     = 9 | irmsh_is_data | irmsh_is_datab | irmsh_is_dataM | irmsh_is_num,
111 } ir_mode_sort;
112
113 /**
114  * A descriptor for an IEEE754 float value.
115  */
116 typedef struct float_descriptor_t {
117         unsigned char exponent_size;    /**< size of exponent in bits */
118         unsigned char mantissa_size;    /**< size of mantissa in bits */
119         bool          explicit_one;     /**< set if the leading one is explicit */
120 } float_descriptor_t;
121
122 /**
123  * Contains relevant information about a mode.
124  *
125  * Necessary information about a mode is stored in this struct
126  * which is used by the tarval module to perform calculations
127  * and comparisons of values of a such described mode.
128  *
129  * ATTRIBUTES:
130  *  -  ident *name:             Name of this mode. Two modes are different if the name is different.
131  *  -  ir_mode_sort sort:       sort of mode specifying possible usage categories
132  *  -  int    size:             size of the mode in Bits.
133  *  -  unsigned sign:1:         signedness of this mode
134  *  -  ... more to come
135  *  -  modulo_shift             specifies for modes of kind irms_int_number
136  *                              whether shift applies modulo to value of bits to shift
137  *
138  * SEE ALSO:
139  *    The tech report 1999-44 describing FIRM and predefined modes
140  *    tarval.h
141  */
142 struct ir_mode {
143         firm_kind         kind;       /**< distinguishes this node from others */
144         ident             *name;      /**< Name ident of this mode */
145         ir_type           *type;      /**< corresponding primitive type */
146
147         /* ---------------------------------------------------------------------- */
148         /* On changing this struct you have to evaluate the mode_are_equal function!*/
149         ir_mode_sort       sort;          /**< coarse classification of this mode:
150                                            int, float, reference ...
151                                            (see irmode.h) */
152         ir_mode_arithmetic arithmetic;    /**< different arithmetic operations possible with a mode */
153         unsigned           size;          /**< size of the mode in Bits. */
154         unsigned           sign:1;        /**< signedness of this mode */
155         unsigned int       modulo_shift;  /**< number of bits a values of this mode will be shifted */
156         float_descriptor_t float_desc;
157
158         /* ---------------------------------------------------------------------- */
159         ir_tarval         *min;         /**< the minimum value that can be expressed */
160         ir_tarval         *max;         /**< the maximum value that can be expressed */
161         ir_tarval         *null;        /**< the value 0 */
162         ir_tarval         *one;         /**< the value 1 */
163         ir_tarval         *minus_one;   /**< the value -1 */
164         ir_tarval         *all_one;     /**< the value ~0 */
165         ir_mode           *eq_signed;   /**< For pointer modes, the equivalent signed integer one. */
166         ir_mode           *eq_unsigned; /**< For pointer modes, the equivalent unsigned integer one. */
167         void              *link;        /**< To store some intermediate information */
168         const void        *tv_priv;     /**< tarval module will save private data here */
169 };
170
171 /* ir node attributes */
172
173 /** first attribute of Bad, Block, Anchor nodes */
174 typedef struct irg_attr {
175         ir_graph *irg;              /**< The graph this block like node belongs to. */
176 } irg_attr;
177
178 typedef struct bad_attr {
179         irg_attr    irg;
180 } bad_attr;
181
182 typedef struct anchor_attr {
183         irg_attr  irg;
184 } anchor_attr;
185
186 /** Block attributes */
187 typedef struct block_attr {
188         /* General attributes */
189         irg_attr     irg;           /**< The graph this block belongs to. */
190         ir_visited_t block_visited; /**< For the walker that walks over all blocks. */
191         /* Attributes private to construction: */
192         unsigned is_matured:1;      /**< If set, all in-nodes of the block are fixed. */
193         unsigned marked:1;          /**< Can be set/unset to temporary mark a block. */
194         ir_node **graph_arr;        /**< An array to store all parameters. */
195         /* Attributes holding analyses information */
196         ir_dom_info dom;            /**< Datastructure that holds information about dominators.
197                                          @@@ @todo
198                                          Eventually overlay with graph_arr as only valid
199                                          in different phases.  Eventually inline the whole
200                                          datastructure. */
201         ir_dom_info pdom;           /**< Datastructure that holds information about post-dominators. */
202         ir_node ** in_cg;           /**< array with predecessors in
203                                      * interprocedural_view, if they differ
204                                      * from intraprocedural predecessors */
205         bitset_t *backedge;         /**< Bitfield n set to true if pred n is backedge.*/
206         bitset_t *cg_backedge;      /**< Bitfield n set to true if pred n is interprocedural backedge. */
207         ir_extblk *extblk;          /**< The extended basic block this block belongs to. */
208         ir_entity *entity;          /**< entitiy representing this block */
209         ir_node  *phis;             /**< The list of Phi nodes in this block. */
210
211         struct list_head succ_head; /**< A list head for all successor edges of a block. */
212 } block_attr;
213
214 /** Cond attributes. */
215 typedef struct cond_attr {
216         long default_proj;           /**< only for non-binary Conds: biggest Proj number, i.e. the one used for default. */
217         cond_jmp_predicate jmp_pred; /**< only for binary Conds: The jump predication. */
218 } cond_attr;
219
220 /** Const attributes. */
221 typedef struct const_attr {
222         ir_tarval *tarval;  /**< the target value */
223 } const_attr;
224
225 /** SymConst attributes. */
226 typedef struct symconst_attr {
227         symconst_symbol sym;  // old tori
228         symconst_kind   kind;
229 } symconst_attr;
230
231 /** Sel attributes. */
232 typedef struct sel_attr {
233         ir_entity *entity;    /**< entity to select */
234 } sel_attr;
235
236 /** Exception attributes. */
237 typedef struct except_attr {
238         unsigned  pin_state : 2;         /**< the pin state for operations with
239                                               variable pinned state. Contains a
240                                               op_pin_state */
241         unsigned  throws_exception : 1; /**< if true a fragile op throws and
242                                              must produce X_except and X_regular
243                                              values */
244 } except_attr;
245
246 /** Call attributes. */
247 typedef struct call_attr {
248         except_attr exc;               /**< the exception attribute. MUST be the first one. */
249         ir_type     *type;             /**< type of called procedure */
250         ir_entity   **callee_arr;      /**< result of callee analysis */
251         unsigned    tail_call:1;       /**< if set, can be a tail call */
252 } call_attr;
253
254 /** Builtin attributes. */
255 typedef struct builtin_attr {
256         except_attr     exc;           /**< the exception attribute. MUST be the first one. */
257         ir_builtin_kind kind;          /**< kind of the called builtin procedure */
258         ir_type         *type;         /**< type of called builtin procedure */
259 } builtin_attr;
260
261 /** Alloc attributes. */
262 typedef struct alloc_attr {
263         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
264     ir_where_alloc where;         /**< stack, heap or other managed part of memory */
265         ir_type        *type;         /**< Type of the allocated object.  */
266 } alloc_attr;
267
268 /** Free attributes. */
269 typedef struct free_attr {
270         ir_type *type;                /**< Type of the allocated object.  */
271         ir_where_alloc where;         /**< stack, heap or other managed part of memory */
272 } free_attr;
273
274 /** InstOf attributes. */
275 typedef struct io_attr {
276         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
277         ir_type *type;                /**< the type of which the object pointer must be */
278 } io_attr;
279
280 /** Cast attributes. */
281 typedef struct cast_attr {
282         ir_type *type;                /**< Type of the casted node. */
283 } cast_attr;
284
285 /** Load attributes. */
286 typedef struct load_attr {
287         except_attr   exc;            /**< The exception attribute. MUST be the first one. */
288     unsigned      volatility:1;   /**< The volatility of this Load operation. */
289     unsigned      unaligned:1;    /**< The align attribute of this Load operation. */
290         ir_mode       *mode;          /**< The mode of this Load operation. */
291 } load_attr;
292
293 /** Store attributes. */
294 typedef struct store_attr {
295         except_attr   exc;            /**< the exception attribute. MUST be the first one. */
296         unsigned      volatility:1;   /**< The volatility of this Store operation. */
297         unsigned      unaligned:1;    /**< The align attribute of this Store operation. */
298 } store_attr;
299
300 typedef struct phi_attr {
301         ir_node        *next;         /**< Points to the next Phi in the Phi list of a block. */
302         union {
303                 bitset_t      *backedge;     /**< Raw Bitfield: bit n is set to true if pred n is backedge. */
304                 int            pos;           /**< For Phi0. Used to remember the value defined by
305                                                this Phi node.  Needed when the Phi is completed
306                                                to call get_r_internal_value() to find the
307                                                predecessors. If this attribute is set, the Phi
308                                                node takes the role of the obsolete Phi0 node,
309                                                therefore the name. */
310         } u;
311 } phi_attr;
312
313 /**< Cmp attribute. */
314 typedef struct cmp_attr {
315         ir_relation relation;         /**< comparison condition. */
316 } cmp_attr;
317
318 /**< Confirm attribute. */
319 typedef struct confirm_attr {
320         ir_relation relation;         /**< relation between value and bound */
321 } confirm_attr;
322
323 /** CopyB attribute. */
324 typedef struct copyb_attr {
325         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
326         ir_type        *type;         /**< Type of the copied entity. */
327 } copyb_attr;
328
329 /** Bound attribute. */
330 typedef struct bound_attr {
331         except_attr exc;              /**< The exception attribute. MUST be the first one. */
332 } bound_attr;
333
334 /** Conv attribute. */
335 typedef struct conv_attr {
336         char           strict;        /**< If set, this is a strict Conv that cannot be removed. */
337 } conv_attr;
338
339 /** Div attribute. */
340 typedef struct div_attr {
341         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
342         ir_mode        *resmode;      /**< Result mode for the division. */
343         char           no_remainder;  /**< Set, if known that a division can be done without a remainder. */
344 } div_attr;
345
346 /** Mod attribute. */
347 typedef struct mod_attr {
348         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
349         ir_mode        *resmode;      /**< Result mode for the division. */
350 } mod_attr;
351
352 /** Inline Assembler support attribute. */
353 typedef struct asm_attr {
354         /* BEWARE: pin state MUST be the first attribute */
355         op_pin_state      pin_state;            /**< the pin state for operations that might generate a exception */
356         ident             *text;                /**< The inline assembler text. */
357         ir_asm_constraint *input_constraints;   /**< Input constraints. */
358         ir_asm_constraint *output_constraints;  /**< Output constraints. */
359         ident             **clobbers;           /**< List of clobbered registers. */
360 } asm_attr;
361
362 typedef struct proj_attr {
363         long  proj;           /**< position of tuple sub-value which is projected */
364 } proj_attr;
365
366 /** Some IR-nodes just have one attribute, these are stored here,
367    some have more. Their name is 'irnodename_attr' */
368 typedef union ir_attr {
369         irg_attr       irg;           /**< For Blocks and Bad: its belonging irg */
370         bad_attr       bad;           /**< for Bads: irg reference */
371         anchor_attr    anchor;        /**< for Anchor: irg reference */
372         block_attr     block;         /**< For Block: Fields needed to construct it */
373         cmp_attr       cmp;           /**< For Cmp. */
374         cond_attr      cond;          /**< For Cond. */
375         const_attr     con;           /**< For Const: contains the value of the constant and a type */
376         symconst_attr  symc;          /**< For SymConst. */
377         sel_attr       sel;           /**< For Sel. */
378         call_attr      call;          /**< For Call. */
379         builtin_attr   builtin;       /**< For Builtin. */
380         alloc_attr     alloc;         /**< For Alloc. */
381         free_attr      free;          /**< For Free. */
382         io_attr        instof;        /**< For InstOf */
383         cast_attr      cast;          /**< For Cast. */
384         load_attr      load;          /**< For Load. */
385         store_attr     store;         /**< For Store. */
386         phi_attr       phi;           /**< For Phi. */
387         proj_attr      proj;          /**< For Proj. */
388         confirm_attr   confirm;       /**< For Confirm: compare operation and region. */
389         except_attr    except;        /**< For Phi node construction in case of exceptions */
390         copyb_attr     copyb;         /**< For CopyB operation */
391         bound_attr     bound;         /**< For Bound operation */
392         conv_attr      conv;          /**< For Conv operation */
393         div_attr       div;           /**< For Div operation */
394         mod_attr       mod;           /**< For Mod operation */
395         asm_attr       assem;         /**< For ASM operation. */
396 } ir_attr;
397
398 /**
399  * Edge info to put into an irn.
400  */
401 typedef struct irn_edge_kind_info_t {
402         struct list_head outs_head;  /**< The list of all outs. */
403         unsigned edges_built : 1;    /**< Set edges where built for this node. */
404         unsigned out_count : 31;     /**< Number of outs in the list. */
405 } irn_edge_info_t;
406
407 typedef irn_edge_info_t irn_edges_info_t[EDGE_KIND_LAST];
408
409 /**
410  * A Def-Use edge.
411  */
412 typedef struct ir_def_use_edge {
413         ir_node *use;            /** The use node of that edge. */
414         int     pos;             /** The position of this edge in use's input array. */
415 } ir_def_use_edge;
416
417 /**
418  * The common structure of an irnode.
419  * If the node has some attributes, they are stored in the attr field.
420  */
421 struct ir_node {
422         /* ------- Basics of the representation  ------- */
423         firm_kind kind;          /**< Distinguishes this node from others. */
424         unsigned node_idx;       /**< The node index of this node in its graph. */
425         ir_op *op;               /**< The Opcode of this node. */
426         ir_mode *mode;           /**< The Mode of this node. */
427         struct ir_node **in;     /**< The array of predecessors / operands. */
428         ir_visited_t visited;    /**< The visited counter for walks of the graph. */
429         void *link;              /**< To attach additional information to the node, e.g.
430                                       used during optimization to link to nodes that
431                                       shall replace a node. */
432         long node_nr;            /**< A globally unique node number for each node. */
433         /* ------- Fields for optimizations / analysis information ------- */
434         ir_def_use_edge *out;    /**< array of def-use edges. */
435         struct dbg_info *dbi;    /**< A pointer to information for debug support. */
436         /* ------- For debugging ------- */
437 #ifdef DEBUG_libfirm
438         unsigned out_valid : 1;
439         unsigned flags     : 31;
440 #endif
441         /* ------- For analyses -------- */
442         ir_loop *loop;           /**< the loop the node is in. Access routines in irloop.h */
443         struct ir_node **deps;   /**< Additional dependencies induced by state. */
444         void            *backend_info;
445         irn_edges_info_t edge_info;  /**< Everlasting out edges. */
446
447         /* ------- Opcode depending fields -------- */
448         ir_attr attr;            /**< The set of attributes of this node. Depends on opcode.
449                                       Must be last field of struct ir_node. */
450 };
451
452 #include "iredgeset.h"
453
454 /**
455  * Edge info to put into an irg.
456  */
457 typedef struct irg_edge_info_t {
458         ir_edgeset_t     edges;          /**< A set containing all edges of the current graph. */
459         struct list_head free_edges;     /**< list of all free edges. */
460         struct obstack   edges_obst;     /**< Obstack, where edges are allocated on. */
461         unsigned         allocated : 1;  /**< Set if edges are allocated on the obstack. */
462         unsigned         activated : 1;  /**< Set if edges are activated for the graph. */
463 } irg_edge_info_t;
464
465 typedef irg_edge_info_t irg_edges_info_t[EDGE_KIND_LAST];
466
467 /**
468  * Index constants for nodes that can be accessed through the graph anchor node.
469  */
470 enum irg_anchors {
471         anchor_end_block = 0,    /**< block the end node will belong to, same as Anchors block */
472         anchor_start_block,      /**< block the start node will belong to */
473         anchor_end,              /**< end node of this ir_graph */
474         anchor_start,            /**< start node of this ir_graph */
475         anchor_initial_exec,     /**< methods initial control flow */
476         anchor_frame,            /**< methods frame */
477         anchor_initial_mem,      /**< initial memory of this graph */
478         anchor_args,             /**< methods arguments */
479         anchor_no_mem,           /**< NoMem node of this ir_graph, the one and only in this graph */
480         anchor_last
481 };
482
483 /** A callgraph entry for callees. */
484 typedef struct cg_callee_entry {
485         ir_graph  *irg;        /**< The called irg. */
486         ir_node  **call_list;  /**< The list of all calls to the irg. */
487         size_t     max_depth;  /**< Maximum depth of all Call nodes to irg. */
488 } cg_callee_entry;
489
490 typedef struct ir_vrp_info {
491         struct ir_nodemap infos;
492         struct obstack    obst;
493 } ir_vrp_info;
494
495 /**
496  * An ir_graph holds all information for a procedure.
497  */
498 struct ir_graph {
499         firm_kind         kind;        /**< Always set to k_ir_graph. */
500         /* --  Basics of the representation -- */
501     unsigned last_node_idx;        /**< The last IR node index for this graph. */
502         ir_entity  *ent;               /**< The entity of this procedure, i.e.,
503                                             the type of the procedure and the
504                                             class it belongs to. */
505         ir_type *frame_type;           /**< A class type representing the stack frame.
506                                             Can include "inner" methods. */
507         ir_node *anchor;               /**< Pointer to the anchor node of this graph. */
508         struct obstack *obst;          /**< The obstack where all of the ir_nodes live. */
509         ir_node *current_block;        /**< Current block for newly gen_*()-erated ir_nodes. */
510         struct obstack *extbb_obst;    /**< The obstack for extended basic block info. */
511
512         /* -- Fields for graph properties -- */
513         irg_inline_property        inline_property;       /**< How to handle inlineing. */
514         mtp_additional_properties  additional_properties; /**< Additional graph properties. */
515
516         /* -- Fields indicating different states of irgraph -- */
517         ir_graph_state_t      state;
518         irg_phase_state       phase_state;       /**< Compiler phase. */
519         op_pin_state          irg_pinned_state;  /**< Flag for status of nodes. */
520         ir_typeinfo_state     typeinfo_state;    /**< Validity of type information. */
521         irg_callee_info_state callee_info_state; /**< Validity of callee information. */
522         ir_class_cast_state   class_cast_state;  /**< Kind of cast operations in code. */
523         unsigned mem_disambig_opt;               /**< Options for the memory disambiguator. */
524         unsigned fp_model;                       /**< floating point model of the graph. */
525
526         /* -- Fields for construction -- */
527         int n_loc;                         /**< Number of local variables in this
528                                                 procedure including procedure parameters. */
529         void **loc_descriptions;           /**< Storage for local variable descriptions. */
530
531         /* -- Fields for optimizations / analysis information -- */
532         pset *value_table;                 /**< Hash table for global value numbering (cse)
533                                                 for optimizing use in iropt.c */
534         ir_def_use_edge *outs;             /**< Space for the Def-Use arrays. */
535         ir_vrp_info      vrp;              /**< vrp info */
536
537         ir_loop *loop;                     /**< The outermost loop for this graph. */
538         void *link;                        /**< A void* field to link any information to
539                                                 the node. */
540
541         ir_graph **callers;                /**< For callgraph analysis: list of caller graphs. */
542         unsigned *caller_isbe;             /**< For callgraph analysis: raw bitset if backedge info calculated. */
543         cg_callee_entry **callees;         /**< For callgraph analysis: list of callee calls */
544         unsigned *callee_isbe;             /**< For callgraph analysis: raw bitset if backedge info calculated. */
545         ir_loop   *l;                            /**< For callgraph analysis. */
546         size_t     callgraph_loop_depth;         /**< For callgraph analysis */
547         size_t     callgraph_recursion_depth;    /**< For callgraph analysis */
548         double     method_execution_frequency;   /**< For callgraph analysis */
549
550
551         /* -- Fields for Walking the graph -- */
552         ir_visited_t visited;             /**< this flag is an identifier for
553                           ir walk. it will be incremented
554                           every time someone walks through
555                           the graph */
556         ir_visited_t block_visited;        /**< same as visited, for a complete block */
557
558         ir_visited_t self_visited;         /**< visited flag of the irg */
559
560         unsigned estimated_node_count;     /**< estimated number of nodes in this graph,
561                                                 updated after every walk */
562         irg_edges_info_t edge_info;        /**< edge info for automatic outs */
563         ir_node **idx_irn_map;             /**< Array mapping node indexes to nodes. */
564
565         size_t index;                      /**< a unique number for each graph */
566         /** extra info which should survive accross multiple passes */
567         void     *be_data;                 /**< backend can put in private data here */
568
569         unsigned  dump_nr;                 /**< number of graph dumps */
570 #ifdef DEBUG_libfirm
571         int   n_outs;                      /**< Size wasted for outs */
572         long graph_nr;                     /**< a unique graph number for each
573                                                 graph to make output readable. */
574 #endif
575
576 #ifndef NDEBUG
577         ir_resources_t reserved_resources; /**< Bitset for tracking used local resources. */
578 #endif
579 };
580
581 /**
582  * Data structure that holds central information about a program
583  * or a module.
584  * One irp is created by libFirm on construction, so irp should never be NULL.
585  *
586  * - main_irg:  The ir graph that is the entry point to the program.
587  *              (Anything not reachable from here may be optimized away
588  *              if this irp represents a whole program.
589  * - irg:       List of all ir graphs in the program or module.
590  * - type:      A list containing all types known to the translated program.
591  *              Some types can have several entries in this list (as a result of
592  *              using exchange_types()).
593  * - glob_type: The unique global type that is owner of all global entities
594  *              of this module.
595  */
596 struct ir_prog {
597         firm_kind kind;                 /**< must be k_ir_prog */
598         ident     *name;                /**< A file name or the like. */
599         ir_graph  *main_irg;            /**< The entry point to the compiled program
600                                              or NULL if no point exists. */
601         ir_graph **graphs;              /**< A list of all graphs in the ir. */
602         ir_graph  *const_code_irg;      /**< This ir graph gives the proper environment
603                                              to allocate nodes the represent values
604                                              of constant entities. It is not meant as
605                                              a procedure.  */
606         ir_type   *segment_types[IR_SEGMENT_LAST+1];
607         ir_type  **types;               /**< A list of all types in the ir. */
608         ir_mode  **modes;               /**< A list of all modes in the ir. */
609         ir_op    **opcodes;             /**< A list of all opcodes in the ir. */
610         ident    **global_asms;         /**< An array of global ASM insertions. */
611
612         /* -- states of and access to generated information -- */
613         irg_phase_state phase_state;    /**< The state of construction. */
614
615         ir_node **ip_outedges;          /**< A huge Array that contains all out edges
616                                              in interprocedural view. */
617
618         irg_callee_info_state callee_info_state; /**< Validity of callee information.
619                                                       Contains the lowest value or all irgs.  */
620         ir_typeinfo_state typeinfo_state;    /**< Validity of type information. */
621         inh_transitive_closure_state inh_trans_closure_state;  /**< State of transitive closure
622                                                                     of inheritance relations. */
623
624         irp_callgraph_state callgraph_state; /**< The state of the callgraph. */
625         ir_loop *outermost_cg_loop;          /**< For callgraph analysis: entry point
626                                                       to looptree over callgraph. */
627         size_t max_callgraph_loop_depth;        /**< needed in callgraph. */
628         size_t max_callgraph_recursion_depth;   /**< needed in callgraph. */
629         double max_method_execution_frequency;  /**< needed in callgraph. */
630         loop_nesting_depth_state lnd_state;  /**< The state of loop nesting depth information. */
631         ir_class_cast_state class_cast_state;    /**< The state of cast operations in code. */
632         ir_entity_usage_computed_state globals_entity_usage_state;
633
634         ir_exc_region_t last_region_nr;      /**< The last exception region number that was assigned. */
635         ir_label_t last_label_nr;            /**< The highest label number for generating unique labels. */
636         size_t max_irg_idx;                  /**< highest unused irg index */
637         long max_node_nr;                    /**< to generate unique numbers for nodes. */
638         unsigned dump_nr;                    /**< number of program info dumps */
639         unsigned optimization_dumps :1;      /**< dump irg on each optimization */
640 #ifndef NDEBUG
641         ir_resources_t reserved_resources;   /**< Bitset for tracking used global resources. */
642 #endif
643 };
644
645 #endif