phase handling
[libfirm] / ir / ir / irgraph_t.h
index dc5ec32..5338a62 100644 (file)
@@ -36,21 +36,21 @@ struct ir_graph {
   struct entity  *ent;               /**< The entity of this procedure, i.e.,
                     the type of the procedure and the
                     class it belongs to. */
-  struct type    *frame_type;        /**< A class type representing the stack frame.
-                    Can include "inner" methods. */
-  struct ir_node *start_block;       /**< block the start node will belong to */
+  struct type    *frame_type;    /**< A class type representing the stack frame.
+                                   Can include "inner" methods. */
+  struct ir_node *start_block;   /**< block the start node will belong to */
   struct ir_node *start;         /**< start node of this ir_graph */
-  struct ir_node *end_block;         /**< block the end node will belong to */
+  struct ir_node *end_block;     /**< block the end node will belong to */
   struct ir_node *end;           /**< end node of this ir_graph */
   struct ir_node *end_reg;       /**< end node of this ir_graph */
   struct ir_node *end_except;    /**< end node of this ir_graph */
   struct ir_node *cstore;        /**< constant store -- no more needed!! */
-  struct ir_node *frame;             /**< method's frame */
-  struct ir_node *globals;           /**< pointer to the data segment containing all
-                        globals as well as global procedures. */
-  struct ir_node *args;              /**< methods arguments */
+  struct ir_node *frame;         /**< method's frame */
+  struct ir_node *globals;       /**< pointer to the data segment containing all
+                                   globals as well as global procedures. */
+  struct ir_node *args;          /**< methods arguments */
   struct ir_node *bad;           /**< bad node of this ir_graph, the one and
-                                        only in this graph */
+                                   only in this graph */
   /* GL removed: we need unknown with mode for analyses. */
   /*   struct ir_node *unknown;*/           /**< unknown node of this ir_graph */
   struct obstack *obst;          /**< obstack where all of the ir_nodes live */
@@ -72,11 +72,11 @@ struct ir_graph {
   struct Phi_in_stack *Phi_in_stack; /**< needed for automatic Phi construction */
 #endif
   int n_loc;                         /**< number of local variable in this
-                    procedure including procedure parameters. */
+                                       procedure including procedure parameters. */
 
   /* -- Fields for optimizations / analysis information -- */
   pset *value_table;                 /**< hash table for global value numbering (cse)
-                    for optimizing use in iropt.c */
+                                       for optimizing use in iropt.c */
   struct ir_node **outs;             /**< Space for the out arrays. */
 
 #ifdef DEBUG_libfirm
@@ -88,13 +88,13 @@ struct ir_graph {
 
   /* -- Fields for Walking the graph -- */
   unsigned long visited;             /**< this flag is an identifier for
-                    ir walk. it will be incremented
-                    every time someone walks through
-                    the graph */
+                                       ir walk. it will be incremented
+                                       every time someone walks through
+                                       the graph */
   unsigned long block_visited;       /**< same as visited, for a complete block */
 #ifdef DEBUG_libfirm
   int graph_nr;             /**< a unique graph number for each graph to make output
-                  readable. */
+                              readable. */
 #endif
 };