X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firgraph_t.h;h=5338a620d48b2c635d92c8948bec01a4cb4aa19f;hb=19975388facbb3943fbc2aa2f5f9422350bb5cb3;hp=dc5ec32cd5cf9f22a0241bab2aaf81aefb2aa53a;hpb=ef5a34c0bf9fb91d07d808457c2b8cd2f318caf7;p=libfirm diff --git a/ir/ir/irgraph_t.h b/ir/ir/irgraph_t.h index dc5ec32cd..5338a620d 100644 --- a/ir/ir/irgraph_t.h +++ b/ir/ir/irgraph_t.h @@ -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 };