Fixed Win32 DLL support.
[libfirm] / include / libfirm / irgraph.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    Entry point to the representation of procedure code.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier
24  * @version  $Id$
25  */
26 #ifndef FIRM_IR_IRGRAPH_H
27 #define FIRM_IR_IRGRAPH_H
28
29 #include <stddef.h>
30
31 #include "firm_types.h"
32 #include "begin.h"
33
34 /**
35  * @page ir_graph   The struct ir_graph
36  *
37  * This struct contains all information about a procedure.
38  * It's allocated directly to memory.
39  *
40  * The fields of ir_graph:
41  *
42  * - ent             The entity describing this procedure.
43  *
44  * The beginning and end of a graph:
45  *
46  * - start_block     This ir_node is the block that contains the unique
47  *                   start node of the procedure.  With it it contains
48  *                   the Proj's on starts results.
49  *                   Further all Const nodes are placed in the start block.
50  * - start           This ir_node is the unique start node of the procedure.
51  *
52  * - end_block       This ir_node is the block that contains the unique
53  *                   end node of the procedure.  This block contains no
54  *                   further nodes.
55  * - end             This ir_node is the unique end node of the procedure.
56  *
57  * The following nodes are Projs from the Start node, held in ir_graph for
58  * simple access:
59  *
60  * - frame           The ir_node producing the pointer to the stack frame of
61  *                   the procedure as output.  This is the Proj node on the
62  *                   third output of the start node.  This output of the start
63  *                   node is tagged as pns_frame_base.  In FIRM most local
64  *                   variables are modeled as data flow edges.  Static
65  *                   allocated arrays can not be represented as data flow
66  *                   edges. Therefore FIRM has to represent them in the stack
67  *                   frame.
68  *
69  * - globals         This models a pointer to a space in the memory where
70  *                   _all_ global things are held.  Select from this pointer
71  *                   with a Sel node the pointer to a global variable /
72  *                   procedure / compiler known function... .
73  *
74  * - tls             This models a pointer to a space in the memory where
75  *                   thread local things are held.  Select from this pointer
76  *                   with a Sel node the pointer to a thread local variable.
77  *
78  * - args            The ir_node that produces the arguments of the method as
79  *                   it's result.  This is a Proj node on the fourth output of
80  *                   the start node.  This output is tagged as pn_Start_T_args.
81  *
82  * - proj_args       The proj nodes of the args node.
83  *
84  * - bad             The Bad node is an auxiliary node. It is needed only once,
85  *                   so there is this globally reachable node.
86  *
87  * - no_mem          The NoMem node is an auxiliary node. It is needed only once,
88  *                   so there is this globally reachable node.
89  *
90  * Data structures that are private to a graph:
91  *
92  * - obst            An obstack that contains all nodes.
93  *
94  * - current_block   A pointer to the current block.  Any node created with
95  *                   one of the node constructors (new_<opcode>) are assigned
96  *                   to this block.  It can be set with set_cur_block(block).
97  *                   Only needed for ir construction.
98  *
99  * - params/n_loc    An int giving the number of local variables in this
100  *                  procedure.  This is needed for ir construction. Name will
101  *                   be changed.
102  *
103  * - value_table     This hash table (pset) is used for global value numbering
104  *                   for optimizing use in iropt.c.
105  *
106  * - Phi_in_stack;   a stack needed for automatic Phi construction, needed only
107  *                   during ir construction.
108  *
109  * - visited         A int used as flag to traverse the ir_graph.
110  *
111  * - block_visited    A int used as a flag to traverse block nodes in the graph.
112  */
113
114 /** Global variable holding the current ir graph.
115  *
116  *  This global variable is used by the ir construction
117  *  interface in ircons and by the optimizations.
118  *  Further it is set by all walker functions.
119  */
120 FIRM_API ir_graph *current_ir_graph;
121
122 FIRM_API ir_graph *get_current_ir_graph(void);
123 FIRM_API void set_current_ir_graph(ir_graph *graph);
124
125 #ifdef INTERPROCEDURAL_VIEW
126 /** This flag indicate the current view. The behavior of some methods
127  * (get_irn_*, set_irn_*) is influenced by this flag. */
128 FIRM_API int get_interprocedural_view(void);
129 FIRM_API void set_interprocedural_view(int state);
130 #endif
131
132 /**
133  * Create a new ir graph to build ir for a procedure.
134  *
135  * @param ent    A pointer to an entity representing the procedure,
136  *               i.e., the type of the entity must be of a method type.
137  *
138  * @param n_loc  The number of local variables in this procedure including
139  *               the procedure parameters.
140  *
141  * This constructor generates the basic infrastructure needed to
142  * represent a procedure in FIRM.
143  *
144  * It allocates an ir_graph and sets the field irg of the entity ent
145  * as well as current_ir_graph to point to this graph.
146  * Further it allocates the following nodes needed for every
147  * procedure:
148  *
149  * - The start block containing a start node and Proj nodes for it's
150  *   seven results (X, M, P, P, P, T, P).
151  * - The end block containing an end node. This block is not matured
152  *   after executing new_ir_graph() as predecessors need to be added to it.
153  *   (Maturing a block means fixing it's number of predecessors.)
154  * - The current block, which is empty and also not matured.
155  *
156  * Further it enters the global store into the data structure of the start
157  * block that contains all valid values in this block (set_store()).  This
158  * data structure is used to build the Phi nodes and removed after
159  * completion of the graph.  There is no path from end to start in the
160  * graph after calling ir_graph.
161  *
162  * The op_pin_state of the graph is set to "op_pin_state_pinned"
163  * if no global cse was performed on the graph.
164  * It is set to "op_pin_state_floats" if global cse was performed
165  * (and during construction: did actually change something).
166  * Code placement is necessary.
167  *
168  * @see new_pseudo_ir_graph()
169  */
170 FIRM_API ir_graph *new_ir_graph(ir_entity *ent, int n_loc);
171
172 /** Frees the passed irgraph.
173  * Deallocates all nodes in this graph and the ir_graph structure.
174  * Sets the field irgraph in the corresponding entity to NULL.
175  * Does not remove the irgraph from the list in irprog (requires
176  * inefficient search, call remove_irp_irg by hand).
177  * Does not free types, entities or modes that are used only by this
178  * graph, nor the entity standing for this graph.
179  */
180 FIRM_API void free_ir_graph(ir_graph *irg);
181
182 /* --- access routines for all ir_graph attributes --- */
183
184 /**
185  *   Checks whether a pointer points to a ir graph.
186  *
187  *   @param thing     an arbitrary pointer
188  *
189  *   @return
190  *       true if the thing is a IR graph, else false
191  */
192 FIRM_API int is_ir_graph(const void *thing);
193
194 /** Returns the entity of an IR graph. */
195 FIRM_API ir_entity *get_irg_entity(const ir_graph *irg);
196 /** Sets the entity of an IR graph. */
197 FIRM_API void set_irg_entity(ir_graph *irg, ir_entity *ent);
198
199 /** Returns the frame type of an IR graph. */
200 FIRM_API ir_type *get_irg_frame_type(ir_graph *irg);
201 /** Sets the frame type of an IR graph. */
202 FIRM_API void set_irg_frame_type(ir_graph *irg, ir_type *ftp);
203
204 /** Returns the value parameter type of an IR graph. */
205 FIRM_API ir_type *get_irg_value_param_type(ir_graph *irg);
206
207 /** Returns the start block of an IR graph. */
208 FIRM_API ir_node *get_irg_start_block(const ir_graph *irg);
209 /** Sets the start block of an IR graph. */
210 FIRM_API void set_irg_start_block(ir_graph *irg, ir_node *node);
211
212 /** Returns the Start node of an IR graph. */
213 FIRM_API ir_node *get_irg_start(const ir_graph *irg);
214 /** Sets the Start node of an IR graph. */
215 FIRM_API void set_irg_start(ir_graph *irg, ir_node *node);
216
217 /** Returns the end block of an IR graph. */
218 FIRM_API ir_node *get_irg_end_block(const ir_graph *irg);
219 /** Sets the end block of an IR graph. */
220 FIRM_API void set_irg_end_block(ir_graph *irg, ir_node *node);
221
222 /** Returns the End node of an IR graph. */
223 FIRM_API ir_node *get_irg_end(const ir_graph *irg);
224 /** Sets the End node of an IR graph. */
225 FIRM_API void set_irg_end(ir_graph *irg, ir_node *node);
226
227 /* The fields end_reg and end_except contain the end nodes of the
228    interprocedural view.  If the view is not constructed they contain
229    the normal end node. */
230 FIRM_API ir_node *get_irg_end_reg(const ir_graph *irg);
231 FIRM_API void set_irg_end_reg(ir_graph *irg, ir_node *node);
232
233 FIRM_API ir_node *get_irg_end_except(const ir_graph *irg);
234 FIRM_API void set_irg_end_except(ir_graph *irg, ir_node *node);
235
236 /** Returns the node that represents the initial control flow of the given
237  * IR graph. */
238 FIRM_API ir_node *get_irg_initial_exec(const ir_graph *irg);
239 /** Sets the node that represents the initial control of the given IR graph. */
240 FIRM_API void set_irg_initial_exec(ir_graph *irg, ir_node *node);
241
242 /** Returns the node that represents the frame pointer of the given IR graph. */
243 FIRM_API ir_node *get_irg_frame(const ir_graph *irg);
244 /** Sets the node that represents the frame pointer of the given IR graph. */
245 FIRM_API void set_irg_frame(ir_graph *irg, ir_node *node);
246
247 /** Returns the node that represents the tls pointer of the given IR graph. */
248 FIRM_API ir_node *get_irg_tls(const ir_graph *irg);
249 /** Sets the node that represents the tls pointer of the given IR graph. */
250 FIRM_API void set_irg_tls(ir_graph *irg, ir_node *node);
251
252 /** Returns the node that represents the initial memory of the given IR graph. */
253 FIRM_API ir_node *get_irg_initial_mem(const ir_graph *irg);
254 /** Sets the node that represents the initial memory of the given IR graph. */
255 FIRM_API void set_irg_initial_mem(ir_graph *irg, ir_node *node);
256
257 /** Returns the node that represents the argument pointer of the given IR graph. */
258 FIRM_API ir_node *get_irg_args(const ir_graph *irg);
259 /** Sets the node that represents the argument pointer of the given IR graph. */
260 FIRM_API void set_irg_args(ir_graph *irg, ir_node *node);
261
262 /** Returns the current block of an IR graph. */
263 FIRM_API ir_node *get_irg_current_block(const ir_graph *irg);
264 /** Sets the current block of an IR graph. */
265 FIRM_API void set_irg_current_block(ir_graph *irg, ir_node *node);
266
267 /** Returns the Bad node of the given IR graph.  Use new_Bad() instead!! */
268 FIRM_API ir_node *get_irg_bad(const ir_graph *irg);
269 FIRM_API void set_irg_bad(ir_graph *irg, ir_node *node);
270
271 /** Returns the NoMem node of the given IR graph.  Use new_NoMem() instead!! */
272 FIRM_API ir_node *get_irg_no_mem(const ir_graph *irg);
273 FIRM_API void set_irg_no_mem(ir_graph *irg, ir_node *node);
274
275 /** Returns the number of value numbers of an IR graph. */
276 FIRM_API int get_irg_n_locs(ir_graph *irg);
277
278 /** Returns the graph number. */
279 FIRM_API long get_irg_graph_nr(const ir_graph *irg);
280
281 /**
282  * Returns the graph number. This is a unique number for the graph and is
283  * smaller than get_irp_last_idx()
284  * Note: you cannot use this number for get_irp_irg()
285  */
286 FIRM_API int get_irg_idx(const ir_graph *irg);
287
288 /**
289  * Get the node for an index.
290  * @param irg The graph.
291  * @param idx The index you want the node for.
292  * @return    The node with that index or NULL, if there is no node with that
293  *            index.
294  * @note      The node you got might be dead.
295  */
296 FIRM_API ir_node *get_idx_irn(ir_graph *irg, unsigned idx);
297
298
299 /******************************************************************************/
300 /* States of an ir_graph.                                                     */
301 /******************************************************************************/
302
303 /*
304    information associated with the graph.  Optimizations invalidate these
305    states.  */
306
307 /** The states of an ir graph.
308  *
309  * state phase values: phase_building, phase_high, phase_low, phase_backend.
310  *
311  * The graph is in phase_building during construction of the irgraph.
312  * The construction is finished by a call to finalize_cons().
313  *
314  * Finalize_cons() sets the state to phase_high.  All standard Firm nodes are
315  * allowed.
316  *
317  * To get the irgraph into phase_low all Sel nodes must be removed and
318  * replaced by explicit address computations.  SymConst size and
319  * type tag nodes must be removed (@@@ really?).  Initialization of
320  * memory allocated by Alloc must be explicit.  @@@ More conditions?
321  *
322  * phase_backend is set if architecture specific machine nodes are inserted
323  * (and probably most standard Firm are removed).
324  */
325 typedef enum {
326         phase_building,  /**< The graph is still being constructed. */
327         phase_high,      /**< The construction of the graph is finish, high level nodes may be present. */
328         phase_low,       /**< High level nodes are removed. */
329         phase_backend    /**< The graph is taken by the backend.  Machine specific nodes may be present. */
330 } irg_phase_state;
331
332 /** Returns the phase_state of an IR graph. */
333 FIRM_API irg_phase_state get_irg_phase_state(const ir_graph *irg);
334
335 /** Sets the phase state of an IR graph. */
336 FIRM_API void set_irg_phase_state(ir_graph *irg, irg_phase_state state);
337
338 /** Sets the phase of the given IR graph to low. */
339 #define set_irg_phase_low(irg)  set_irg_phase_state(irg, phase_low)
340
341 /** state: op_pin_state_pinned
342    The graph is "op_pin_state_pinned" if all nodes are associated with a basic block.
343    It is in state "op_pin_state_floats" if nodes are in arbitrary blocks.  In state
344    "op_pin_state_floats" the block predecessor is set in all nodes, but this can be an
345    invalid block, i.e., the block is not a dominator of all the uses of
346    the node.
347    The enum op_pin_state is defined in irop.h. */
348 FIRM_API op_pin_state get_irg_pinned(const ir_graph *irg);
349
350 /** state: outs_state
351  *  Outs are the back edges or def-use edges of ir nodes.
352  *  Values:  outs_none, outs_consistent, outs_inconsistent */
353 typedef enum {
354         outs_none,         /**< Outs are not computed, no memory is allocated. */
355         outs_consistent,   /**< Outs are computed and correct. */
356         outs_inconsistent  /**< Outs have been computed, memory is still allocated,
357                                 but the graph has been changed since. */
358 } irg_outs_state;
359 FIRM_API irg_outs_state get_irg_outs_state(const ir_graph *irg);
360 FIRM_API void set_irg_outs_inconsistent(ir_graph *irg);
361
362 /** state:  extended basic block state. */
363 typedef enum {
364         extblk_none    = 0,  /**< No extended basic block information is constructed. Default. */
365         extblk_valid   = 1,  /**< Extended basic block information is valid. */
366         extblk_invalid = 2   /**< Extended basic block information is constructed but invalid. */
367 } irg_extblk_state;
368 FIRM_API irg_extblk_state get_irg_extblk_state(const ir_graph *irg);
369 FIRM_API void set_irg_extblk_inconsistent(ir_graph *irg);
370
371 /** state: dom_state
372  * Signals the state of the dominator / post dominator information.
373  */
374 typedef enum {
375         dom_none,             /**< dominator are not computed, no memory is allocated */
376         dom_consistent,       /**< dominator information is computed and correct */
377         dom_inconsistent      /**< dominator information is computed but the graph has been changed since */
378 } irg_dom_state;
379
380 /** returns the dominator state of an IR graph. */
381 FIRM_API irg_dom_state get_irg_dom_state(const ir_graph *irg);
382
383 /** returns the post dominator state of an IR graph. */
384 FIRM_API irg_dom_state get_irg_postdom_state(const ir_graph *irg);
385
386 /** sets the dominator and post dominator state of an IR graph to inconsistent. */
387 FIRM_API void set_irg_doms_inconsistent(ir_graph *irg);
388
389 /** state: loopinfo_state
390  *  Loop information describes the loops within the control and
391  *  data flow of the procedure.
392  */
393 typedef enum {
394         loopinfo_none             = 0,       /**< No loop information is constructed. Default. */
395         loopinfo_constructed      = 1,       /**< Some kind of loop information is constructed. */
396         loopinfo_valid            = 2,       /**< Loop information is valid. */
397         loopinfo_cf               = 4,       /**< Loop information constructed for control flow only. */
398         loopinfo_inter            = 8,       /**< Loop information for interprocedural view. */
399
400         /** IntRAprocedural loop information constructed and valid. */
401         loopinfo_consistent         = loopinfo_constructed | loopinfo_valid,
402         /** IntRAprocedural loop information constructed and invalid. */
403         loopinfo_inconsistent       = loopinfo_constructed,
404
405         /** IntERprocedural loop information constructed and valid. */
406         loopinfo_ip_consistent      = loopinfo_constructed | loopinfo_inter | loopinfo_valid,
407         /** IntERprocedural loop information constructed and invalid. */
408         loopinfo_ip_inconsistent    = loopinfo_constructed | loopinfo_inter,
409
410         /** IntRAprocedural control loop information constructed and valid. */
411         loopinfo_cf_consistent      = loopinfo_constructed | loopinfo_cf | loopinfo_valid,
412         /** IntRAprocedural control loop information constructed and invalid. */
413         loopinfo_cf_inconsistent    = loopinfo_constructed | loopinfo_cf,
414
415         /** IntERprocedural control loop information constructed and valid. */
416         loopinfo_cf_ip_consistent   = loopinfo_constructed | loopinfo_cf | loopinfo_inter | loopinfo_valid,
417         /** IntERprocedural control loop information constructed and invalid. */
418         loopinfo_cf_ip_inconsistent = loopinfo_constructed | loopinfo_cf | loopinfo_inter
419 } irg_loopinfo_state;
420
421 /** Return the current loop information state. */
422 FIRM_API irg_loopinfo_state get_irg_loopinfo_state(const ir_graph *irg);
423
424 /** Sets the current loop information state. */
425 FIRM_API void set_irg_loopinfo_state(ir_graph *irg, irg_loopinfo_state s);
426
427 /** Sets the loop information state to the appropriate inconsistent state.
428  *  If state is 'none' does not change. */
429 FIRM_API void set_irg_loopinfo_inconsistent(ir_graph *irg);
430 /** Sets the loop information state to the appropriate inconsistent state.
431  *  If state is 'none' does not change.
432  *  Does this for all irgs. */
433 FIRM_API void set_irp_loopinfo_inconsistent(void);
434
435 /** state: callee_information_state
436  *  Call nodes contain a list of possible callees.  This list must be
437  *  computed by an analysis.
438  *
439  *  It's strange that this state is administered on irg basis, as the
440  *  information must be computed for the whole program, or not?
441  */
442 typedef enum {
443         irg_callee_info_none,
444         irg_callee_info_consistent,
445         irg_callee_info_inconsistent
446 } irg_callee_info_state;
447
448 /** Returns the callee_info_state of an IR graph. */
449 FIRM_API irg_callee_info_state get_irg_callee_info_state(const ir_graph *irg);
450
451 /** Sets the callee_info_state of an IR graph. */
452 FIRM_API void set_irg_callee_info_state(ir_graph *irg, irg_callee_info_state s);
453
454 /** property:
455  *  Tells how to handle an ir graph in inlining.
456  */
457 typedef enum {
458         irg_inline_any,            /**< No restriction on inlining. Default. */
459         irg_inline_forbidden,      /**< The graph must not be inlined. */
460         irg_inline_recomended,     /**< The graph should be inlined. */
461         irg_inline_forced,         /**< The graph must be inlined. */
462         irg_inline_forced_no_body  /**< The graph must be inlined. No body is allowed
463                                         to be emitted. */
464 } irg_inline_property;
465
466 /** Returns the inline property of a graph. */
467 FIRM_API irg_inline_property get_irg_inline_property(const ir_graph *irg);
468 /** Sets the inline property of a graph. */
469 FIRM_API void set_irg_inline_property(ir_graph *irg, irg_inline_property s);
470
471 /**
472  * Returns the mask of the additional graph properties.
473  * The properties are automatically inherited from the method type
474  * if they were not set using set_irg_additional_properties() or
475  * set_irg_additional_property().
476  *
477  * @return a bitset of mtp_additional_property values
478  */
479 FIRM_API unsigned get_irg_additional_properties(const ir_graph *irg);
480
481 /** Sets the mask of the additional graph properties. */
482 FIRM_API void set_irg_additional_properties(ir_graph *irg,
483                                             unsigned property_mask);
484
485 /** Sets one additional graph property. */
486 FIRM_API void set_irg_additional_property(ir_graph *irg,
487                                           mtp_additional_property flag);
488
489 /** A void * field to link arbitrary information to the node. */
490 FIRM_API void set_irg_link(ir_graph *irg, void *thing);
491 FIRM_API void *get_irg_link(const ir_graph *irg);
492
493 /** Increments visited flag by one.
494  *  @see also: get_irn_visited() get_irg_block_visited(). */
495 FIRM_API void inc_irg_visited(ir_graph *irg);
496 FIRM_API ir_visited_t get_irg_visited(const ir_graph *irg);
497 FIRM_API void set_irg_visited(ir_graph *irg, ir_visited_t i);
498 /** An interprocedural flag valid for all irgs.
499  *  @see also: get_irn_visited() get_irg_block_visited(). */
500 FIRM_API ir_visited_t get_max_irg_visited(void);
501 FIRM_API void set_max_irg_visited(int val);
502 FIRM_API ir_visited_t inc_max_irg_visited(void);
503
504 /** Increments block_visited by one.
505  *  @see also: get_irn_visited() get_irg_block_visited(). */
506 FIRM_API void inc_irg_block_visited(ir_graph *irg);
507 FIRM_API ir_visited_t get_irg_block_visited(const ir_graph *irg);
508 FIRM_API void set_irg_block_visited(ir_graph *irg, ir_visited_t i);
509
510 /**
511  * Debug helpers: You can indicate whether you are currently using visited or
512  * block_visited flags. If NDEBUG is not defined, then the compiler will abort
513  * if 2 parties try to use the flags.
514  */
515 enum ir_resources_enum_t {
516         /* local (irg) resources */
517         IR_RESOURCE_BLOCK_VISITED = 1 << 0,  /**< Block visited flags are used. */
518         IR_RESOURCE_BLOCK_MARK    = 1 << 1,  /**< Block mark bits are used. */
519         IR_RESOURCE_IRN_VISITED   = 1 << 2,  /**< IR-node visited flags are used. */
520         IR_RESOURCE_IRN_LINK      = 1 << 3,  /**< IR-node link fields are used. */
521         IR_RESOURCE_LOOP_LINK     = 1 << 4,  /**< IR-loop link fields are used. */
522         IR_RESOURCE_PHI_LIST      = 1 << 5,  /**< Block Phi lists are used. */
523         IR_RESOURCE_IRG_LINK      = 1 << 6,  /**< IR-graph link fields used. */
524
525         /* global (irp) resources */
526         IR_RESOURCE_ENTITY_LINK   = 1 << 8,  /**< IR-entity link fields are used. */
527         IR_RESOURCE_TYPE_VISITED  = 1 << 9,  /**< type visited flags */
528
529         /* masks */
530         IR_RESOURCE_LOCAL_MASK    = 0x00FF,  /**< Mask for all local resources. */
531         IR_RESOURCE_GLOBAL_MASK   = 0xFF00   /**< Mask for all global resources. */
532 };
533 typedef unsigned ir_resources_t;
534
535 #ifndef NDEBUG
536 FIRM_API void ir_reserve_resources(ir_graph *irg, ir_resources_t resources);
537 FIRM_API void ir_free_resources(ir_graph *irg, ir_resources_t resources);
538 FIRM_API ir_resources_t ir_resources_reserved(const ir_graph *irg);
539 #else
540 #define ir_reserve_resources(irg,resources)  (void)0
541 #define ir_free_resources(irg,resources)     (void)0
542 #define ir_resources_reserved(irg)           0
543 #endif
544
545 /**
546  * Graph State
547  */
548 typedef enum {
549         IR_GRAPH_STATE_KEEP_MUX = 1 << 0,  /**< should perform no further optimisations on Mux nodes */
550         IR_GRAPH_STATE_ARCH_DEP = 1 << 1,  /**< should not construct more nodes which irarch potentially breaks down */
551 } ir_graph_state_t;
552
553 /** set some state flags on the graph (this does not clear the other flags) */
554 FIRM_API void set_irg_state(ir_graph *irg, ir_graph_state_t state);
555 /** clear some state flags of the graph */
556 FIRM_API void clear_irg_state(ir_graph *irg, ir_graph_state_t state);
557 /** query wether a set of graph state flags are activated */
558 FIRM_API int is_irg_state(const ir_graph *irg, ir_graph_state_t state);
559
560 /** Normalization: Move Proj nodes into the same block as its predecessors */
561 FIRM_API void normalize_proj_nodes(ir_graph *irg);
562
563 /** Set a description for local value n. */
564 FIRM_API void set_irg_loc_description(ir_graph *irg, int n, void *description);
565
566 /** Get the description for local value n. */
567 FIRM_API void *get_irg_loc_description(ir_graph *irg, int n);
568
569 /** Returns a estimated node count of the irg. This count is updated
570  * after every irg_walk_graph().
571  */
572 FIRM_API unsigned get_irg_estimated_node_cnt(const ir_graph *irg);
573
574 /** Returns the last irn index for this graph. */
575 FIRM_API unsigned get_irg_last_idx(const ir_graph *irg);
576
577 /** Returns the floating point model of this graph. */
578 FIRM_API unsigned get_irg_fp_model(const ir_graph *irg);
579
580 /** Sets a floating point model for this graph. */
581 FIRM_API void set_irg_fp_model(ir_graph *irg, unsigned model);
582
583 /**
584  * Access custom graph data.
585  * The data must have been registered with
586  * register_additional_graph_data() before.
587  * @param graph The graph to get the data from.
588  * @param type The type of the data you registered.
589  * @param off The value returned by register_additional_graph_data().
590  * @return A pointer of type @p type.
591  */
592 #define get_irg_data(graph,type,off) \
593         (assert(off > 0 && "Invalid graph data offset"), (type *) ((char *) (graph) - (off)))
594
595 /**
596  * Get the pointer to the node some custom data belongs to.
597  * @param data The pointer to the custom data.
598  * @param off The number as returned by register_additional_graph_data().
599  * @return A pointer to the ir node the custom data belongs to.
600  */
601 #define get_irg_data_base(data,off) \
602         (assert(off > 0 && "Invalid graph data offset"), (ir_graph *) ((char *) (data) + (off)))
603
604 /**
605  * Request additional data to be allocated with an ir graph.
606  * @param size The size of the additional data required.
607  * @return A positive number, if the operation was successful, which
608  * must be passed to the access macro get_irg_data(), 0 if the
609  * registration failed.
610  */
611 FIRM_API size_t register_additional_graph_data(size_t size);
612
613 #include "end.h"
614
615 #endif