X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firgopt.h;h=70b48980a6dd229db87a18dbea585708b91849ac;hb=2853e2e68b316d25973f21292b117a834275a7fd;hp=7faaa31de4983900cfecbf6ad7e223530792312d;hpb=0df427bf2e6cbe0bda79b97d8944df5ff745be62;p=libfirm diff --git a/ir/ir/irgopt.h b/ir/ir/irgopt.h index 7faaa31de..70b48980a 100644 --- a/ir/ir/irgopt.h +++ b/ir/ir/irgopt.h @@ -33,7 +33,7 @@ void local_optimize_node(ir_node *n); * * @param irg The graph to be optimized. * - * After appliying local_optimize_graph() to a IR-graph, Bad nodes + * After applying local_optimize_graph() to a IR-graph, Bad nodes * only occure as predecessor of Block and Phi nodes. */ void local_optimize_graph (ir_graph *irg); @@ -54,19 +54,40 @@ void local_optimize_graph (ir_graph *irg); * Removes old attributes of nodes. Sets link field to NULL. * Callee information must be freed (irg_callee_info_none). * - * Attention: the numbers assigned to nodes if the library is compiled for - * development/debugging are not conserved by copying. - * * @param irg The graph to be optimized. */ void dead_node_elimination(ir_graph *irg); +typedef struct _survive_dce_t survive_dce_t; + +/** + * Make a new Survive DCE environment. + */ +survive_dce_t *new_survive_dce(void); + +/** + * Free a Survive DCE environment. + */ +void free_survive_dce(survive_dce_t *sd); + +/** + * Register a node pointer to be patched upon DCE. + * When DCE occurs, the node pointer specified by @p place will be + * patched to the new address of the node it is pointing to. + * + * @param sd The Survive DCE environment. + * @param place The address of the node pointer. + */ +void survive_dce_register_irn(survive_dce_t *sd, ir_node **place); + /** Cleans the control flow from Bad predecesors. * * Removes Bad predecesors from Blocks and the corresponding * inputs to Phi nodes as in dead_node_elimination but without * copying the graph. * + * Conserves loop information. + * * @param irg The graph to be optimized. */ void remove_bad_predecessors(ir_graph *irg); @@ -146,7 +167,7 @@ void inline_leave_functions(int maxsize, int leavesize, int size); /** Code Placement. * - * Pinns all floating nodes to a block where they + * Pins all floating nodes to a block where they * will be executed only if needed. Depends on the flag opt_global_cse. * Graph may not be in phase_building. Does not schedule control dead * code. Uses dominator information which it computes if the irg is not @@ -169,7 +190,6 @@ void place_code(ir_graph *irg); * A critical control flow edge is an edge from a block with several * control exits to a block with several control entries (See Muchnic * p. 407). - * Is only executed if flag set_opt_critical_edges() is set. * * @param irg IR Graph */