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