toposort callgraph when inlining
[libfirm] / ir / ir / irtypes.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   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 "firm_types.h"
30 #include "firm_common_t.h"
31 #include "irdom_t.h"
32 #include "irmode.h"
33 #include "irnode.h"
34 #include "irgraph.h"
35 #include "iredgekinds.h"
36 #include "irtypeinfo.h"
37 #include "execution_frequency.h"
38 #include "irmemory.h"
39 #include "callgraph.h"
40 #include "irprog.h"
41 #include "field_temperature.h"
42 #include "irphases_t.h"
43
44 #include "pset.h"
45 #include "set.h"
46 #include "list.h"
47 #include "obst.h"
48
49 struct ir_phase;
50
51 /** The type of an ir_op. */
52 struct ir_op {
53         unsigned code;          /**< The unique opcode of the op. */
54         ident *name;            /**< The name of the op. */
55         size_t attr_size;       /**< Space needed in memory for private attributes. */
56         op_pin_state pin_state; /**< How to deal with the node in CSE, PRE. */
57         op_arity opar;          /**< The arity of operator. */
58         int op_index;           /**< The index of the first data operand, 0 for most cases, 1 for Div etc. */
59         unsigned flags;         /**< Flags describing the behavior of the ir_op, a bitmasks of irop_flags. */
60         unsigned tag;           /**< Some custom TAG value the op's creator set to. */
61         void *attr;             /**< custom pointer where op's creator can attach attribute stuff to. */
62
63         ir_op_ops ops;          /**< The operations of the this op. */
64 };
65
66 /**
67  * Contains relevant information about a mode.
68  *
69  * Necessary information about a mode is stored in this struct
70  * which is used by the tarval module to perform calculations
71  * and comparisons of values of a such described mode.
72  *
73  * ATTRIBUTES:
74  *  -  ir_modecode code:        An unambiguous int (enum) for the mode
75  *  -  ident *name:             Name of this mode. Two modes are different if the name is different.
76  *  -  ir_mode_sort sort:       sort of mode specifying possible usage categories
77  *  -  int    size:             size of the mode in Bits.
78  *  -  unsigned sign:1:         signedness of this mode
79  *  -  ... more to come
80  *  -  modulo_shift             specifies for modes of kind irms_int_number
81  *                              whether shift applies modulo to value of bits to shift
82  *
83  * SEE ALSO:
84  *    The tech report 1999-44 describing FIRM and predefined modes
85  *    tarval.h
86  */
87 struct ir_mode {
88         firm_kind         kind;       /**< distinguishes this node from others */
89         ir_modecode       code;       /**< unambiguous identifier of a mode */
90         ident             *name;      /**< Name ident of this mode */
91
92         /* ----------------------------------------------------------------------- */
93         /* On changing this struct you have to evaluate the mode_are_equal function!*/
94         ir_mode_sort      sort;          /**< coarse classification of this mode:
95                                           int, float, reference ...
96                                           (see irmode.h) */
97         ir_mode_arithmetic
98                           arithmetic;    /**< different arithmetic operations possible with a mode */
99         unsigned          size;          /**< size of the mode in Bits. */
100         unsigned          sign:1;        /**< signedness of this mode */
101         unsigned int      modulo_shift;  /**< number of bits a values of this mode will be shifted */
102         unsigned          vector_elem;   /**< if this is not equal 1, this is a vector mode with
103                                           vector_elem number of elements, size contains the size
104                                           of all bits and must be dividable by vector_elem */
105
106         /* ----------------------------------------------------------------------- */
107         tarval            *min;         /**< the minimum value that can be expressed */
108         tarval            *max;         /**< the maximum value that can be expressed */
109         tarval            *null;        /**< the value 0 */
110         tarval            *one;         /**< the value 1 */
111         tarval            *minus_one;   /**< the value -1 */
112         tarval            *all_one;     /**< the value ~0 */
113         ir_mode           *eq_signed;   /**< For pointer modes, the equivalent signed integer one. */
114         ir_mode           *eq_unsigned; /**< For pointer modes, the equivalent unsigned integer one. */
115         void              *link;        /**< To store some intermediate information */
116         const void        *tv_priv;     /**< tarval module will save private data here */
117 };
118
119 /** ir node attributes **/
120
121 /** Block attributes */
122 typedef struct {
123         /* General attributes */
124         ir_graph *irg;              /**< The graph this block belongs to. */
125         unsigned long block_visited; /**< For the walker that walks over all blocks. */
126         /* Attributes private to construction: */
127         unsigned is_matured:1;      /**< If set, all in-nodes of the block are fixed. */
128         unsigned is_dead:1;         /**< If set, the block is dead (and could be replace by a Bad. */
129         unsigned is_mb_head:1;      /**< Set if this block is a macroblock head. */
130         unsigned has_label:1;       /**< Set if this block has a label assigned. */
131         unsigned marked:1;          /**< Can be set/unset to temporary mark a block. */
132         ir_node **graph_arr;        /**< An array to store all parameters. */
133         /* Attributes holding analyses information */
134         ir_dom_info dom;            /**< Datastructure that holds information about dominators.
135                                          @@@ @todo
136                                          Eventually overlay with graph_arr as only valid
137                                          in different phases.  Eventually inline the whole
138                                          datastructure. */
139         ir_dom_info pdom;           /**< Datastructure that holds information about post-dominators. */
140         ir_node ** in_cg;           /**< array with predecessors in
141                                      * interprocedural_view, if they differ
142                                      * from intraprocedural predecessors */
143         unsigned *backedge;         /**< Raw Bitfield n set to true if pred n is backedge.*/
144         unsigned *cg_backedge;      /**< Raw Bitfield n set to true if pred n is interprocedural backedge. */
145         ir_extblk *extblk;          /**< The extended basic block this block belongs to. */
146         ir_region *region;          /**< The immediate structural region this block belongs to. */
147         unsigned mb_depth;          /**< The macroblock depth: A distance from the macroblock header */
148         ir_label_t label;           /**< The block label if assigned. */
149         ir_node  *phis;             /**< The list of Phi nodes in this block. */
150
151         struct list_head succ_head; /**< A list head for all successor edges of a block. */
152 } block_attr;
153
154 /** Cond attributes. */
155 typedef struct {
156         cond_kind kind;           /**< flavor of Cond */
157         long default_proj;        /**< only for non-binary Conds: biggest Proj number, i.e. the one used for default. */
158         cond_jmp_predicate pred;  /**< only for binary Conds: The jump predication. */
159 } cond_attr;
160
161 /** Const attributes. */
162 typedef struct {
163         tarval  *tv;       /**< the target value */
164         ir_type *tp;       /**< the source type, for analyses. default: type_unknown. */
165 } const_attr;
166
167 /** SymConst attributes. */
168 typedef struct {
169         symconst_symbol sym;  // old tori
170         symconst_kind   kind;
171         ir_type         *tp;  /**< the source type, for analyses. default: type_unknown. */
172 } symconst_attr;
173
174 /** Sel attributes. */
175 typedef struct {
176         ir_entity *ent;    /**< entity to select */
177 } sel_attr;
178
179 /** Exception attributes. */
180 typedef struct {
181         op_pin_state   pin_state;     /**< the pin state for operations that might generate a exception:
182                                                                          If it's know that no exception will be generated, could be set to
183                                                                          op_pin_state_floats. */
184 #if PRECISE_EXC_CONTEXT
185         struct ir_node **frag_arr;    /**< For Phi node construction in case of exception */
186 #endif
187 } except_attr;
188
189 /** Call attributes. */
190 typedef struct {
191         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
192         ir_type *cld_tp;              /**< type of called procedure */
193         ir_entity ** callee_arr;      /**< result of callee analysis */
194 } call_attr;
195
196 /** Alloc attributes. */
197 typedef struct {
198         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
199     ir_where_alloc where;         /**< stack, heap or other managed part of memory */
200         ir_type        *type;         /**< Type of the allocated object.  */
201 } alloc_attr;
202
203 /** Free attributes. */
204 typedef struct {
205         ir_type *type;                /**< Type of the allocated object.  */
206         ir_where_alloc where;         /**< stack, heap or other managed part of memory */
207 } free_attr;
208
209 /** InstOf attributes. */
210 typedef struct {
211         except_attr    exc;           /**< the exception attribute. MUST be the first one. */
212         ir_type *type;                /**< the type of which the object pointer must be */
213 } io_attr;
214
215 /** Filter attributes. */
216 typedef struct {
217         long proj;                 /**< contains the result position to project (Proj) */
218         ir_node **in_cg;           /**< array with interprocedural predecessors (Phi) */
219         unsigned *backedge;        /**< Raw Bitfield n set to true if pred n is backedge. */
220 } filter_attr;
221
222 /** CallBegin attributes. */
223 typedef struct {
224         ir_node *call;                /**< Associated Call-operation. */
225 } callbegin_attr;
226
227 /** Cast attributes. */
228 typedef struct {
229         ir_type *totype;              /**< Type of the casted node. */
230 } cast_attr;
231
232 /** Load attributes. */
233 typedef struct {
234         except_attr   exc;            /**< The exception attribute. MUST be the first one. */
235     unsigned      volatility:1;   /**< The volatility of this Load operation. */
236     unsigned      aligned:1;      /**< The align attribute of this Load operation. */
237         ir_mode       *load_mode;     /**< The mode of this Load operation. */
238 } load_attr;
239
240 /** Store attributes. */
241 typedef struct {
242         except_attr   exc;            /**< the exception attribute. MUST be the first one. */
243         unsigned      volatility:1;   /**< The volatility of this Store operation. */
244         unsigned      aligned:1;      /**< The align attribute of this Store operation. */
245 } store_attr;
246
247 typedef struct {
248         ir_node        *next;         /**< Points to the next Phi in the Phi list of a block. */
249         union {
250                 unsigned       *backedge;     /**< Raw Bitfield: bit n is set to true if pred n is backedge. */
251                 int            pos;           /**< For Phi0. Used to remember the value defined by
252                                                this Phi node.  Needed when the Phi is completed
253                                                to call get_r_internal_value() to find the
254                                                predecessors. If this attribute is set, the Phi
255                                                node takes the role of the obsolete Phi0 node,
256                                                therefore the name. */
257         } u;
258 } phi_attr;
259
260
261 /**< Confirm attribute. */
262 typedef struct {
263         pn_Cmp cmp;                   /**< The compare operation. */
264 } confirm_attr;
265
266 /** CopyB attribute. */
267 typedef struct {
268         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
269         ir_type        *data_type;    /**< Type of the copied entity. */
270 } copyb_attr;
271
272 /** Bound attribute. */
273 typedef struct {
274         except_attr exc;              /**< The exception attribute. MUST be the first one. */
275 } bound_attr;
276
277 /** Conv attribute. */
278 typedef struct {
279         char           strict;        /**< If set, this is a strict Conv that cannot be removed. */
280 } conv_attr;
281
282 /** Div/Mod/DivMod/Quot attribute. */
283 typedef struct {
284         except_attr    exc;           /**< The exception attribute. MUST be the first one. */
285         ir_mode        *res_mode;     /**< Result mode for the division. */
286         char           no_remainder;  /**< Set, if known that a division can be done without a remainder. */
287 } divmod_attr;
288
289 /** Inline Assembler support attribute. */
290 typedef struct {
291         /* BEWARE: pin state MUST be the first attribute */
292         op_pin_state      pin_state;  /**< the pin state for operations that might generate a exception */
293         ident             *asm_text;  /**< The inline assembler text. */
294         ir_asm_constraint *inputs;    /**< Input constraints. */
295         ir_asm_constraint *outputs;   /**< Output constraints. */
296         ident             **clobber;  /**< List of clobbered registers. */
297 } asm_attr;
298
299 /** Some IR-nodes just have one attribute, these are stored here,
300    some have more. Their name is 'irnodename_attr' */
301 typedef union {
302         block_attr     block;         /**< For Block: Fields needed to construct it */
303         cond_attr      cond;          /**< For Cond. */
304         const_attr     con;           /**< For Const: contains the value of the constant and a type */
305         symconst_attr  symc;          /**< For SymConst. */
306         sel_attr       sel;           /**< For Sel. */
307         call_attr      call;          /**< For Call: pointer to the type of the method to call */
308         callbegin_attr callbegin;     /**< For CallBegin. */
309         alloc_attr     alloc;         /**< For Alloc. */
310         free_attr      free;          /**< For Free. */
311         io_attr        instof;        /**< For InstOf */
312         cast_attr      cast;          /**< For Cast. */
313         load_attr      load;          /**< For Load. */
314         store_attr     store;         /**< For Store. */
315         phi_attr       phi;           /**< For Phi. */
316         long           proj;          /**< For Proj: contains the result position to project */
317         confirm_attr   confirm;       /**< For Confirm: compare operation and region. */
318         filter_attr    filter;        /**< For Filter */
319         except_attr    except;        /**< For Phi node construction in case of exceptions */
320         copyb_attr     copyb;         /**< For CopyB operation */
321         bound_attr     bound;         /**< For Bound operation */
322         conv_attr      conv;          /**< For Conv operation */
323         divmod_attr    divmod;        /**< For Div/Mod/DivMod operation */
324         asm_attr       assem;         /**< For ASM operation. */
325 } attr;
326
327 /**
328  * Edge info to put into an irn.
329  */
330 typedef struct _irn_edge_kind_info_t {
331         struct list_head outs_head;  /**< The list of all outs. */
332         int out_count;               /**< Number of outs in the list. */
333 } irn_edge_info_t;
334
335 typedef irn_edge_info_t irn_edges_info_t[EDGE_KIND_LAST];
336
337 /**
338  * A Def-Use edge.
339  */
340 typedef struct _ir_def_use_edge {
341         ir_node *use;            /** The use node of that edge. */
342         int     pos;             /** The position of this edge in use's input array. */
343 } ir_def_use_edge;
344
345 /**
346  * The common structure of an irnode.
347  * If the node has some attributes, they are stored in the attr field.
348  */
349 struct ir_node {
350         /* ------- Basics of the representation  ------- */
351         firm_kind kind;          /**< Distinguishes this node from others. */
352     unsigned node_idx;       /**< The node index of this node in its graph. */
353         ir_op *op;               /**< The Opcode of this node. */
354         ir_mode *mode;           /**< The Mode of this node. */
355         struct ir_node **in;     /**< The array of predecessors / operands. */
356         unsigned long visited;   /**< The visited counter for walks of the graph. */
357         void *link;              /**< To attach additional information to the node, e.g.
358                                       used while construction to link Phi0 nodes and
359                                       during optimization to link to nodes that
360                                       shall replace a node. */
361         /* ------- Fields for optimizations / analysis information ------- */
362         ir_def_use_edge *out;    /**< array of def-use edges. */
363         struct dbg_info *dbi;    /**< A pointer to information for debug support. */
364         /* ------- For debugging ------- */
365 #ifdef DEBUG_libfirm
366         unsigned out_valid : 1;
367         unsigned flags     : 31;
368         long node_nr;            /**< A unique node number for each node to make output
369                                       readable. */
370 #endif
371         /* ------- For analyses -------- */
372         ir_loop *loop;           /**< the loop the node is in. Access routines in irloop.h */
373 #ifdef DO_HEAPANALYSIS
374         struct abstval *av;      /**< Heapanalysis: The abstract value of this node. */
375         struct section *sec;     /**< Heapanalysis: The section of this node. */
376 #endif
377         struct ir_node **deps;   /**< Additional dependencies induced by state. */
378         irn_edges_info_t edge_info;  /**< Everlasting out edges. */
379         /* ------- Opcode depending fields -------- */
380         attr attr;               /**< The set of attributes of this node. Depends on opcode.
381                                       Must be last field of struct ir_node. */
382 };
383
384 #include "iredgeset.h"
385
386 /**
387  * Edge info to put into an irg.
388  */
389 typedef struct _irg_edge_info_t {
390         ir_edgeset_t    edges;
391         struct obstack  edges_obst;
392         unsigned        allocated : 1;
393         unsigned        activated : 1;  /**< set if edges are activated for the graph. */
394 } irg_edge_info_t;
395
396 typedef irg_edge_info_t irg_edges_info_t[EDGE_KIND_LAST];
397
398 /**
399  * Index constants for nodes that can be accessed through the graph anchor node.
400  */
401 enum irg_anchors {
402         anchor_end_block = 0,    /**< block the end node will belong to, same as Anchors block */
403         anchor_start_block,      /**< block the start node will belong to */
404         anchor_end,              /**< end node of this ir_graph */
405         anchor_start,            /**< start node of this ir_graph */
406         anchor_end_reg,          /**< end node of this ir_graph */
407         anchor_end_except,       /**< end node of this ir_graph */
408         anchor_initial_exec,     /**< methods initial control flow */
409         anchor_frame,            /**< methods frame */
410         anchor_tls,              /**< pointer to the thread local storage containing all
411                                       thread local data. */
412         anchor_initial_mem,      /**< initial memory of this graph */
413         anchor_args,             /**< methods arguments */
414         anchor_value_param_base, /**< method value param base */
415         anchor_bad,              /**< bad node of this ir_graph, the one and
416                                       only in this graph */
417         anchor_no_mem,           /**< NoMem node of this ir_graph, the one and only in this graph */
418         anchor_last
419 };
420
421 /** A callgraph entry for callees. */
422 typedef struct cg_callee_entry {
423         ir_graph  *irg;        /**< The called irg. */
424         ir_node  **call_list;  /**< The list of all calls to the irg. */
425         int        max_depth;  /**< Maximum depth of all Call nodes to irg. */
426 } cg_callee_entry;
427
428 /**
429  * An ir_graph holds all information for a procedure.
430  */
431 struct ir_graph {
432         firm_kind         kind;        /**< Always set to k_ir_graph. */
433         /* --  Basics of the representation -- */
434     unsigned last_node_idx;        /**< The last IR node index for this graph. */
435         ir_entity  *ent;               /**< The entity of this procedure, i.e.,
436                                             the type of the procedure and the
437                                             class it belongs to. */
438         ir_type *frame_type;           /**< A class type representing the stack frame.
439                                             Can include "inner" methods. */
440         ir_node *anchor;               /**< Pointer to the anchor node of this graph. */
441         struct obstack *obst;          /**< The obstack where all of the ir_nodes live. */
442         ir_node *current_block;        /**< Current block for newly gen_*()-erated ir_nodes. */
443         struct obstack *extbb_obst;    /**< The obstack for extended basic block info. */
444
445         /* -- Fields for graph properties -- */
446         irg_inline_property inline_property;     /**< How to handle inlineing. */
447         unsigned additional_properties;          /**< Additional graph properties. */
448
449         /* -- Fields indicating different states of irgraph -- */
450         irg_phase_state phase_state;       /**< Compiler phase. */
451         op_pin_state irg_pinned_state;     /**< Flag for status of nodes. */
452         irg_outs_state outs_state;         /**< Out edges. */
453         irg_dom_state dom_state;           /**< Dominator state information. */
454         irg_dom_state pdom_state;          /**< Post Dominator state information. */
455         ir_typeinfo_state typeinfo_state;        /**< Validity of type information. */
456         irg_callee_info_state callee_info_state; /**< Validity of callee information. */
457         irg_loopinfo_state loopinfo_state;       /**< State of loop information. */
458         ir_class_cast_state class_cast_state;    /**< Kind of cast operations in code. */
459         irg_extblk_info_state extblk_state;      /**< State of extended basic block info. */
460         exec_freq_state execfreq_state;          /**< Execution frequency state. */
461         ir_entity_usage_computed_state entity_usage_state;
462         unsigned mem_disambig_opt;               /**< Options for the memory disambiguator. */
463         unsigned fp_model;                       /**< floating point model of the graph. */
464
465         /* -- Fields for construction -- */
466 #if USE_EXPLICIT_PHI_IN_STACK
467         struct Phi_in_stack *Phi_in_stack; /**< Needed for automatic Phi construction. */
468 #endif
469         int n_loc;                         /**< Number of local variables in this
470                                                 procedure including procedure parameters. */
471         void **loc_descriptions;           /**< Storage for local variable descriptions. */
472
473         /* -- Fields for optimizations / analysis information -- */
474         pset *value_table;                 /**< Hash table for global value numbering (cse)
475                                                 for optimizing use in iropt.c */
476         ir_def_use_edge *outs;             /**< Space for the Def-Use arrays. */
477
478         ir_loop *loop;                     /**< The outermost loop for this graph. */
479         void *link;                        /**< A void* field to link any information to
480                                                 the node. */
481
482         ir_graph **callers;                /**< For callgraph analysis: list of caller graphs. */
483         unsigned *caller_isbe;             /**< For callgraph analysis: raw bitset if backedge info calculated. */
484         cg_callee_entry **callees;         /**< For callgraph analysis: list of callee calls */
485         unsigned *callee_isbe;             /**< For callgraph analysis: raw bitset if backedge info calculated. */
486         int        callgraph_loop_depth;         /**< For callgraph analysis */
487         int        callgraph_recursion_depth;    /**< For callgraph analysis */
488         double     method_execution_frequency;   /**< For callgraph analysis */
489
490         ir_loop   *l;                            /**< For callgraph analysis. */
491
492         /* -- Fields for Walking the graph -- */
493         unsigned long visited;             /**< this flag is an identifier for
494                           ir walk. it will be incremented
495                           every time someone walks through
496                           the graph */
497         unsigned long block_visited;       /**< same as visited, for a complete block */
498
499         unsigned long self_visited;        /**< visited flag of the irg */
500
501         unsigned estimated_node_count;     /**< estimated number of nodes in this graph,
502                                                 updated after every walk */
503         irg_edges_info_t edge_info;        /**< edge info for automatic outs */
504         ir_node **idx_irn_map;             /**< Array mapping node indexes to nodes. */
505
506         int index;                         /**< a unique number for each graph */
507         ir_phase *phases[PHASE_LAST];      /**< Phase information. */
508 #ifdef DEBUG_libfirm
509         int   n_outs;                      /**< Size wasted for outs */
510         long graph_nr;                     /**< a unique graph number for each
511                                                 graph to make output readable. */
512 #endif
513
514 #ifndef NDEBUG
515         ir_resources_t  reserved_resources;
516 #endif
517 };
518
519 /** ir_prog */
520 struct ir_prog {
521         firm_kind kind;                 /**< must be k_ir_prog */
522         ident     *name;                /**< A file name or the like. */
523         ir_graph  *main_irg;            /**< The entry point to the compiled program
524                                              or NULL if no point exists. */
525         ir_graph **graphs;              /**< A list of all graphs in the ir. */
526         ir_graph **pseudo_graphs;       /**< A list of all pseudo graphs in the ir. See pseudo_irg.c */
527         ir_graph  *const_code_irg;      /**< This ir graph gives the proper environment
528                                              to allocate nodes the represent values
529                                              of constant entities. It is not meant as
530                                              a procedure.  */
531         ir_type   *segment_types[IR_SEGMENT_COUNT];
532         ir_type  **types;               /**< A list of all types in the ir. */
533         ir_mode  **modes;               /**< A list of all modes in the ir. */
534         ir_op    **opcodes;             /**< A list of all opcodes in the ir. */
535         ident    **global_asms;         /**< An array of global ASM insertions. */
536
537         /* -- states of and access to generated information -- */
538         irg_phase_state phase_state;    /**< The state of construction. */
539
540         ip_view_state ip_view;          /**< The state of interprocedural view. */
541
542         irg_outs_state outs_state;      /**< The state of out edges of ir nodes. */
543         ir_node **ip_outedges;          /**< A huge Array that contains all out edges
544                                              in interprocedural view. */
545         irg_outs_state trouts_state;    /**< The state of out edges of type information. */
546
547         irg_callee_info_state callee_info_state; /**< Validity of callee information.
548                                                       Contains the lowest value or all irgs.  */
549         ir_typeinfo_state typeinfo_state;    /**< Validity of type information. */
550         inh_transitive_closure_state inh_trans_closure_state;  /**< State of transitive closure
551                                                                     of inheritance relations. */
552
553         irp_callgraph_state callgraph_state; /**< The state of the callgraph. */
554         ir_loop *outermost_cg_loop;          /**< For callgraph analysis: entry point
555                                                       to looptree over callgraph. */
556         int max_callgraph_loop_depth;        /**< needed in callgraph. */
557         int max_callgraph_recursion_depth;   /**< needed in callgraph. */
558         double max_method_execution_frequency;  /**< needed in callgraph. */
559         irp_temperature_state temperature_state; /**< accumulated temperatures computed? */
560         exec_freq_state execfreq_state;      /**< The state of execution frequency information */
561         loop_nesting_depth_state lnd_state;  /**< The state of loop nesting depth information. */
562         ir_class_cast_state class_cast_state;    /**< The state of cast operations in code. */
563         ir_entity_usage_computed_state globals_entity_usage_state;
564
565         ir_exc_region_t last_region_nr;      /**< The last exception region number that was assigned. */
566         ir_label_t last_label_nr;            /**< The highest label number for generating unique labels. */
567         int  max_irg_idx;                    /**< highest unused irg index */
568 #ifdef DEBUG_libfirm
569         long max_node_nr;                    /**< to generate unique numbers for nodes. */
570 #endif
571 };
572
573 #endif