added new licence header
[libfirm] / ir / be / besched.c
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 /* $Id$ */
21
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #ifdef HAVE_STDLIB_H
27 # include <stdlib.h>
28 #endif
29
30 #include "impl.h"
31 #include "irprintf.h"
32 #include "irgwalk.h"
33 #include "firm_types.h"
34 #include "irgraph_t.h"
35 #include "iredges_t.h"
36 #include "ircons.h"
37 #include "irextbb.h"
38 #include "debug.h"
39
40 #include "bemodule.h"
41 #include "bearch_t.h"
42 #include "besched_t.h"
43 #include "beutil.h"
44 #include "belistsched.h"
45
46 FIRM_IMPL1(sched_get_time_step, int, const ir_node *)
47 FIRM_IMPL1(sched_has_next, int, const ir_node *)
48 FIRM_IMPL1(sched_has_prev, int, const ir_node *)
49 FIRM_IMPL1(sched_next, ir_node *, const ir_node *)
50 FIRM_IMPL1(sched_prev, ir_node *, const ir_node *)
51 FIRM_IMPL1(sched_is_scheduled, int, const ir_node *)
52 FIRM_IMPL1(sched_first, ir_node *, const ir_node *)
53 FIRM_IMPL1(sched_last, ir_node *, const ir_node *)
54 FIRM_IMPL2(sched_add_after, ir_node *, ir_node *, ir_node *)
55 FIRM_IMPL2(sched_add_before, ir_node *, ir_node *, ir_node *)
56 FIRM_IMPL1_VOID(sched_init_block, ir_node *)
57 FIRM_IMPL1_VOID(sched_reset, ir_node *)
58 FIRM_IMPL2(sched_comes_after, int, const ir_node *, const ir_node *)
59 FIRM_IMPL1_VOID(sched_remove, ir_node *)
60
61 size_t sched_irn_data_offset = 0;
62
63 static void block_sched_dumper(ir_node *block, void *env)
64 {
65         FILE  *f = env;
66         const ir_node *curr;
67
68         ir_fprintf(f, "%+F:\n", block);
69
70         sched_foreach(block, curr) {
71                 sched_info_t *info = get_irn_sched_info(curr);
72                 ir_fprintf(f, "\t%6d: %+F\n", info->time_step, curr);
73         }
74 }
75
76 void be_sched_dump(FILE *f, ir_graph *irg)
77 {
78         irg_block_walk_graph(irg, block_sched_dumper, NULL, f);
79 }
80
81 /* Init the scheduling stuff. */
82 void be_init_sched(void)
83 {
84         sched_irn_data_offset = register_additional_node_data(sizeof(sched_info_t));
85 }
86
87 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_sched);
88
89 void sched_renumber(const ir_node *block)
90 {
91         ir_node *irn;
92         sched_info_t *inf;
93         sched_timestep_t step = SCHED_INITIAL_GRANULARITY;
94
95         sched_foreach(block, irn) {
96                 inf = get_irn_sched_info(irn);
97                 inf->time_step = step;
98                 step += SCHED_INITIAL_GRANULARITY;
99         }
100 }
101
102 int sched_skip_cf_predicator(const ir_node *irn, void *data) {
103         arch_env_t *ae = data;
104         return arch_irn_class_is(ae, irn, branch);
105 }
106
107 int sched_skip_phi_predicator(const ir_node *irn, void *data) {
108         return is_Phi(irn);
109 }
110
111 /* Skip nodes in a schedule. */
112 ir_node *sched_skip(ir_node *from, int forward, sched_predicator_t *predicator, void *data)
113 {
114         const ir_node *bl = get_block(from);
115         ir_node *curr;
116
117         if (forward) {
118                 if (is_Block(from))
119                         from = sched_next(from);
120                 for (curr = from; curr != bl && predicator(curr, data); curr = sched_next(curr)) {
121                 }
122         } else {
123                 if (is_Block(from))
124                         from = sched_prev(from);
125                 for (curr = from; curr != bl && predicator(curr, data); curr = sched_prev(curr)) {
126                 }
127         }
128
129         return curr;
130 }
131
132 //---------------------------------------------------------------------------
133
134 typedef struct remove_dead_nodes_env_t_ {
135         ir_graph *irg;
136         bitset_t *reachable;
137 } remove_dead_nodes_env_t;
138
139 /**
140  * Post-walker: remember all visited nodes in a bitset.
141  */
142 static void mark_dead_nodes_walker(ir_node *node, void *data)
143 {
144         remove_dead_nodes_env_t *env = (remove_dead_nodes_env_t*) data;
145         bitset_set(env->reachable, get_irn_idx(node));
146 }
147
148 /**
149  * Post-block-walker:
150  * Walk through the schedule of every block and remove all dead nodes from it.
151  */
152 static void remove_dead_nodes_walker(ir_node *block, void *data)
153 {
154         remove_dead_nodes_env_t *env = (remove_dead_nodes_env_t*) data;
155         ir_node                 *node, *next;
156
157         for (node = sched_first(block); ! sched_is_end(node); node = next) {
158                 /* get next node now, as after calling sched_remove it will be invalid */
159                 next = sched_next(node);
160
161                 if (bitset_is_set(env->reachable, get_irn_idx(node)))
162                         continue;
163
164                 sched_remove(node);
165                 be_kill_node(node);
166         }
167 }
168
169 void be_remove_dead_nodes_from_schedule(ir_graph *irg)
170 {
171         remove_dead_nodes_env_t env;
172         env.irg = irg;
173         env.reachable = bitset_alloca(get_irg_last_idx(irg));
174
175         // mark all reachable nodes
176         irg_walk_graph(irg, mark_dead_nodes_walker, NULL, &env);
177
178         // walk schedule and remove non-marked nodes
179         irg_block_walk_graph(irg, remove_dead_nodes_walker, NULL, &env);
180 }