fixed warnings
[libfirm] / ir / be / belistsched.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 /**
21  * @file
22  * @brief       Primitive list scheduling with different node selectors.
23  * @author      Sebastian Hack
24  * @date        20.10.2004
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <stdarg.h>
33 #include <string.h>
34 #include <limits.h>
35
36 #include "benode_t.h"
37 #include "be_t.h"
38
39 #include "obst.h"
40 #include "list.h"
41 #include "iterator.h"
42
43 #include "iredges_t.h"
44 #include "irgwalk.h"
45 #include "irnode_t.h"
46 #include "irmode_t.h"
47 #include "irdump.h"
48 #include "irprintf_t.h"
49 #include "array.h"
50 #include "debug.h"
51 #include "irtools.h"
52
53 #include "bemodule.h"
54 #include "besched_t.h"
55 #include "beutil.h"
56 #include "belive_t.h"
57 #include "belistsched.h"
58 #include "beschedmris.h"
59 #include "beschedrss.h"
60 #include "bearch_t.h"
61 #include "bestat.h"
62 #include "beirg_t.h"
63
64 #include <libcore/lc_opts.h>
65 #include <libcore/lc_opts_enum.h>
66
67 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL);
68
69 #define BE_SCHED_NODE(irn) (be_is_Keep(irn) || be_is_CopyKeep(irn) || be_is_RegParams(irn))
70
71 enum {
72         BE_SCHED_SELECT_TRIVIAL  = 0,
73         BE_SCHED_SELECT_REGPRESS = 1,
74         BE_SCHED_SELECT_MUCHNIK  = 2,
75         BE_SCHED_SELECT_HEUR     = 3,
76         BE_SCHED_SELECT_HMUCHNIK = 4,
77         BE_SCHED_SELECT_RANDOM   = 5
78 };
79
80 enum {
81         BE_SCHED_PREP_NONE = 0,
82         BE_SCHED_PREP_MRIS = 2,
83         BE_SCHED_PREP_RSS  = 3
84 };
85
86 typedef struct _list_sched_options_t {
87         int select;  /**< the node selector */
88         int prep;    /**< schedule preparation */
89 } list_sched_options_t;
90
91 static list_sched_options_t list_sched_options = {
92         BE_SCHED_SELECT_HEUR,     /* mueller heuristic selector */
93         BE_SCHED_PREP_NONE,       /* no scheduling preparation */
94 };
95
96 /* schedule selector options. */
97 static const lc_opt_enum_int_items_t sched_select_items[] = {
98         { "trivial",  BE_SCHED_SELECT_TRIVIAL  },
99         { "random",   BE_SCHED_SELECT_RANDOM },
100         { "regpress", BE_SCHED_SELECT_REGPRESS },
101         { "muchnik",  BE_SCHED_SELECT_MUCHNIK  },
102         { "heur",     BE_SCHED_SELECT_HEUR     },
103         { "hmuchnik", BE_SCHED_SELECT_HMUCHNIK },
104         { NULL,       0 }
105 };
106
107 /* schedule preparation options. */
108 static const lc_opt_enum_int_items_t sched_prep_items[] = {
109         { "none", BE_SCHED_PREP_NONE },
110         { "mris", BE_SCHED_PREP_MRIS },
111         { "rss",  BE_SCHED_PREP_RSS  },
112         { NULL,   0 }
113 };
114
115 static lc_opt_enum_int_var_t sched_select_var = {
116         &list_sched_options.select, sched_select_items
117 };
118
119 static lc_opt_enum_int_var_t sched_prep_var = {
120         &list_sched_options.prep, sched_prep_items
121 };
122
123 static const lc_opt_table_entry_t list_sched_option_table[] = {
124         LC_OPT_ENT_ENUM_PTR("prep",   "schedule preparation",   &sched_prep_var),
125         LC_OPT_ENT_ENUM_PTR("select", "node selector",          &sched_select_var),
126         { NULL }
127 };
128
129 /**
130  * All scheduling info needed per node.
131  */
132 typedef struct _sched_irn_t {
133         unsigned num_not_sched_user; /**< The number of not yet scheduled users of this node */
134         unsigned already_sched : 1;  /**< Set if this node is already scheduled */
135 } sched_irn_t;
136
137 /**
138  * Scheduling environment for the whole graph.
139  */
140 typedef struct _sched_env_t {
141         sched_irn_t *sched_info;                    /**< scheduling info per node */
142         const list_sched_selector_t *selector;      /**< The node selector. */
143         const arch_env_t *arch_env;                 /**< The architecture environment. */
144         const ir_graph *irg;                        /**< The graph to schedule. */
145         void *selector_env;                         /**< A pointer to give to the selector. */
146 } sched_env_t;
147
148 /**
149  * Environment for a block scheduler.
150  */
151 typedef struct _block_sched_env_t {
152         sched_irn_t *sched_info;                    /**< scheduling info per node, copied from the global scheduler object */
153         ir_nodeset_t cands;                         /**< the set of candidates */
154         ir_node *block;                             /**< the current block */
155         sched_env_t *sched_env;                     /**< the scheduler environment */
156         ir_nodeset_t live;                          /**< simple liveness during scheduling */
157         const list_sched_selector_t *selector;
158         void *selector_block_env;
159 } block_sched_env_t;
160
161 /**
162  * Returns non-zero if the node is already scheduled
163  */
164 static INLINE int is_already_scheduled(block_sched_env_t *env, ir_node *n)
165 {
166         int idx = get_irn_idx(n);
167
168         assert(idx < ARR_LEN(env->sched_info));
169         return env->sched_info[idx].already_sched;
170 }
171
172 /**
173  * Mark a node as already scheduled
174  */
175 static INLINE void mark_already_scheduled(block_sched_env_t *env, ir_node *n)
176 {
177         int idx = get_irn_idx(n);
178
179         assert(idx < ARR_LEN(env->sched_info));
180         env->sched_info[idx].already_sched = 1;
181 }
182
183 /**
184  * Try to put a node in the ready set.
185  * @param env   The block scheduler environment.
186  * @param pred  The previous scheduled node.
187  * @param irn   The node to make ready.
188  * @return 1, if the node could be made ready, 0 else.
189  */
190 static INLINE int make_ready(block_sched_env_t *env, ir_node *pred, ir_node *irn)
191 {
192         int i, n;
193
194         /* Blocks cannot be scheduled. */
195         if (is_Block(irn) || get_irn_n_edges(irn) == 0)
196                 return 0;
197
198         /*
199          * Check, if the given ir node is in a different block as the
200          * currently scheduled one. If that is so, don't make the node ready.
201          */
202         if (env->block != get_nodes_block(irn))
203                 return 0;
204
205         for (i = 0, n = get_irn_ins_or_deps(irn); i < n; ++i) {
206                 ir_node *op = get_irn_in_or_dep(irn, i);
207
208                 /* if irn is an End we have keep-alives and op might be a block, skip that */
209                 if (is_Block(op)) {
210                         assert(get_irn_op(irn) == op_End);
211                         continue;
212                 }
213
214                 /* If the operand is local to the scheduled block and not yet
215                  * scheduled, this nodes cannot be made ready, so exit. */
216                 if (! is_already_scheduled(env, op) && get_nodes_block(op) == env->block)
217                         return 0;
218         }
219
220         ir_nodeset_insert(&env->cands, irn);
221
222         /* Notify selector about the ready node. */
223         if (env->selector->node_ready)
224                 env->selector->node_ready(env->selector_block_env, irn, pred);
225
226     DB((dbg, LEVEL_2, "\tmaking ready: %+F\n", irn));
227
228     return 1;
229 }
230
231 /**
232  * Try, to make all users of a node ready.
233  * In fact, a usage node can only be made ready, if all its operands
234  * have already been scheduled yet. This is checked by make_ready().
235  * @param env The block schedule environment.
236  * @param irn The node, which usages (successors) are to be made ready.
237  */
238 static INLINE void make_users_ready(block_sched_env_t *env, ir_node *irn)
239 {
240         const ir_edge_t *edge;
241
242         foreach_out_edge(irn, edge) {
243                 ir_node *user = get_edge_src_irn(edge);
244                 if (! is_Phi(user))
245                         make_ready(env, irn, user);
246         }
247
248         foreach_out_edge_kind(irn, edge, EDGE_KIND_DEP) {
249                 ir_node *user = get_edge_src_irn(edge);
250                 if (! is_Phi(user))
251                         make_ready(env, irn, user);
252         }
253 }
254
255 /**
256  * Returns the number of not yet schedules users.
257  */
258 static INLINE int get_irn_not_sched_user(block_sched_env_t *env, ir_node *n) {
259         int idx = get_irn_idx(n);
260
261         assert(idx < ARR_LEN(env->sched_info));
262         return env->sched_info[idx].num_not_sched_user;
263 }
264
265 /**
266  * Sets the number of not yet schedules users.
267  */
268 static INLINE void set_irn_not_sched_user(block_sched_env_t *env, ir_node *n, int num) {
269         int idx = get_irn_idx(n);
270
271         assert(idx < ARR_LEN(env->sched_info));
272         env->sched_info[idx].num_not_sched_user = num;
273 }
274
275 /**
276  * Add @p num to the number of not yet schedules users and returns the result.
277  */
278 static INLINE int add_irn_not_sched_user(block_sched_env_t *env, ir_node *n, int num) {
279         int idx = get_irn_idx(n);
280
281         assert(idx < ARR_LEN(env->sched_info));
282         env->sched_info[idx].num_not_sched_user += num;
283         return env->sched_info[idx].num_not_sched_user;
284 }
285
286 /**
287  * Returns the number of users of a node having mode datab.
288  */
289 static int get_num_successors(ir_node *irn) {
290         int             sum = 0;
291         const ir_edge_t *edge;
292
293         if (get_irn_mode(irn) == mode_T) {
294                 /* for mode_T nodes: count the users of all Projs */
295                 foreach_out_edge(irn, edge) {
296                         ir_node *proj = get_edge_src_irn(edge);
297                         ir_mode *mode = get_irn_mode(proj);
298
299                         if (mode == mode_T) {
300                                 sum += get_num_successors(proj);
301                         } else if (mode_is_datab(mode)) {
302                                 sum += get_irn_n_edges(proj);
303                         }
304                 }
305         }
306         else {
307                 /* do not count keep-alive edges */
308                 foreach_out_edge(irn, edge) {
309                         if (get_irn_opcode(get_edge_src_irn(edge)) != iro_End)
310                                 sum++;
311                 }
312         }
313
314         return sum;
315 }
316
317 /**
318  * Adds irn to @p live, updates all inputs that this user is scheduled
319  * and counts all of its non scheduled users.
320  */
321 static void update_sched_liveness(block_sched_env_t *env, ir_node *irn) {
322         int i;
323
324         /* ignore Projs */
325         if (is_Proj(irn))
326                 return;
327
328         for (i = get_irn_ins_or_deps(irn) - 1; i >= 0; --i) {
329                 ir_node *in = get_irn_in_or_dep(irn, i);
330
331                 /* if in is a proj: update predecessor */
332                 in = skip_Proj(in);
333
334                 /* if in is still in the live set: reduce number of users by one */
335                 if (ir_nodeset_contains(&env->live, in)) {
336                         if (add_irn_not_sched_user(env, in, -1) <= 0)
337                                 ir_nodeset_remove(&env->live, in);
338                 }
339         }
340
341         /*
342                 get_num_successors returns the number of all users. This includes
343                 users in different blocks as well. As the each block is scheduled separately
344                 the liveness info of those users will not be updated and so these
345                 users will keep up the register pressure as it is desired.
346         */
347         i = get_num_successors(irn);
348         if (i > 0) {
349                 set_irn_not_sched_user(env, irn, i);
350                 ir_nodeset_insert(&env->live, irn);
351         }
352 }
353
354 static INLINE int must_appear_in_schedule(const list_sched_selector_t *sel, void *block_env, const ir_node *irn)
355 {
356         int res = -1;
357
358         if (get_irn_n_edges(irn) < 1)
359                 return 0;
360
361         if (sel->to_appear_in_schedule)
362                 res = sel->to_appear_in_schedule(block_env, irn);
363
364         return res >= 0 ? res : ((to_appear_in_schedule(irn) || BE_SCHED_NODE(irn)) && ! is_Unknown(irn));
365 }
366
367 /**
368  * Append an instruction to a schedule.
369  * @param env The block scheduling environment.
370  * @param irn The node to add to the schedule.
371  * @return    The given node.
372  */
373 static ir_node *add_to_sched(block_sched_env_t *env, ir_node *irn)
374 {
375     /* If the node consumes/produces data, it is appended to the schedule
376      * list, otherwise, it is not put into the list */
377     if (must_appear_in_schedule(env->selector, env->selector_block_env, irn)) {
378                 update_sched_liveness(env, irn);
379         sched_add_before(env->block, irn);
380
381         DBG((dbg, LEVEL_2, "\tadding %+F\n", irn));
382     }
383
384         /* notify the selector about the finally selected node. */
385         if (env->selector->node_selected)
386                 env->selector->node_selected(env->selector_block_env, irn);
387
388     /* Insert the node in the set of all already scheduled nodes. */
389     mark_already_scheduled(env, irn);
390
391     /* Remove the node from the ready set */
392         ir_nodeset_remove(&env->cands, irn);
393
394     return irn;
395 }
396
397 /**
398  * Add the proj nodes of a tuple-mode irn to the schedule immediately
399  * after the tuple-moded irn. By pinning the projs after the irn, no
400  * other nodes can create a new lifetime between the tuple-moded irn and
401  * one of its projs. This should render a realistic image of a
402  * tuple-moded irn, which in fact models a node which defines multiple
403  * values.
404  *
405  * @param irn The tuple-moded irn.
406  */
407 static void add_tuple_projs(block_sched_env_t *env, ir_node *irn)
408 {
409         const ir_edge_t *edge;
410
411         assert(get_irn_mode(irn) == mode_T && "Mode of node must be tuple");
412
413         if (is_Bad(irn))
414                 return;
415
416
417         /* non-proj nodes can have dependency edges to tuple nodes. */
418         foreach_out_edge_kind(irn, edge, EDGE_KIND_DEP) {
419                 ir_node *out = get_edge_src_irn(edge);
420                 make_ready(env, irn, out);
421         }
422
423         /* schedule the normal projs */
424         foreach_out_edge(irn, edge) {
425                 ir_node *out = get_edge_src_irn(edge);
426
427                 assert(is_Proj(out) && "successor of a modeT node must be a proj");
428
429                 if (get_irn_mode(out) == mode_T)
430                         add_tuple_projs(env, out);
431                 else {
432                         add_to_sched(env, out);
433                         make_users_ready(env, out);
434                 }
435         }
436 }
437
438 /**
439  * Perform list scheduling on a block.
440  *
441  * Note, that the caller must compute a linked list of nodes in the block
442  * using the link field before calling this function.
443  *
444  * Also the outs must have been computed.
445  *
446  * @param block The block node.
447  * @param env Scheduling environment.
448  */
449 static void list_sched_block(ir_node *block, void *env_ptr)
450 {
451         sched_env_t *env                      = env_ptr;
452         const list_sched_selector_t *selector = env->selector;
453         ir_node *start_node                   = get_irg_start(get_irn_irg(block));
454
455         block_sched_env_t be;
456         const ir_edge_t *edge;
457         ir_node *irn;
458         int j, m;
459
460         /* Initialize the block's list head that will hold the schedule. */
461         sched_init_block(block);
462
463         /* Initialize the block scheduling environment */
464         be.sched_info = env->sched_info;
465         be.block      = block;
466         ir_nodeset_init_size(&be.cands, get_irn_n_edges(block));
467         ir_nodeset_init_size(&be.live, get_irn_n_edges(block));
468         be.selector   = selector;
469         be.sched_env  = env;
470
471         DBG((dbg, LEVEL_1, "scheduling %+F\n", block));
472
473         if (selector->init_block)
474                 be.selector_block_env = selector->init_block(env->selector_env, block);
475
476         /* Then one can add all nodes are ready to the set. */
477         foreach_out_edge(block, edge) {
478                 ir_node *irn = get_edge_src_irn(edge);
479
480                 /* Skip the end node because of keepalive edges. */
481                 if (get_irn_opcode(irn) == iro_End)
482                         continue;
483
484                 if (get_irn_n_edges(irn) == 0)
485                         continue;
486
487                 if (is_Phi(irn)) {
488                         /*
489                                 Phi functions are scheduled immediately, since they     only
490                                 transfer data flow from the predecessors to this block.
491                         */
492                         add_to_sched(&be, irn);
493                         make_users_ready(&be, irn);
494                 }
495                 else if (irn == start_node) {
496                         /* The start block will be scheduled as the first node */
497                         add_to_sched(&be, irn);
498                         add_tuple_projs(&be, irn);
499                 }
500                 else {
501                         /* Other nodes must have all operands in other blocks to be made
502                         * ready */
503                         int ready = 1;
504
505                         /* Check, if the operands of a node are not local to this block */
506                         for (j = 0, m = get_irn_ins_or_deps(irn); j < m; ++j) {
507                                 ir_node *operand = get_irn_in_or_dep(irn, j);
508
509                                 if (get_nodes_block(operand) == block) {
510                                         ready = 0;
511                                         break;
512                                 } else {
513                                         /* live in values increase register pressure */
514                                         ir_nodeset_insert(&be.live, operand);
515                                 }
516                         }
517
518                         /* Make the node ready, if all operands live in a foreign block */
519                         if (ready) {
520                                 DBG((dbg, LEVEL_2, "\timmediately ready: %+F\n", irn));
521                                 make_ready(&be, NULL, irn);
522                         }
523                 }
524         }
525
526         /* Iterate over all remaining nodes */
527         while (ir_nodeset_size(&be.cands) > 0) {
528                 ir_nodeset_iterator_t iter;
529                 /* collect statistics about amount of ready nodes */
530                 be_do_stat_sched_ready(block, &be.cands);
531
532                 /* Keeps must be scheduled immediatly */
533                 foreach_ir_nodeset(&be.cands, irn, iter) {
534                         if (be_is_Keep(irn) || be_is_CopyKeep(irn) || is_Sync(irn)) {
535                                 break;
536                         }
537                 }
538
539                 if (! irn) {
540                         /* Keeps must be immediately scheduled */
541                         irn = be.selector->select(be.selector_block_env, &be.cands, &be.live);
542                 }
543
544                 DB((dbg, LEVEL_2, "\tpicked node %+F\n", irn));
545
546                 /* Add the node to the schedule. */
547                 add_to_sched(&be, irn);
548
549                 if (get_irn_mode(irn) == mode_T)
550                         add_tuple_projs(&be, irn);
551                 else
552                         make_users_ready(&be, irn);
553
554                 /* remove the scheduled node from the ready list. */
555                 ir_nodeset_remove(&be.cands, irn);
556         }
557
558         if (selector->finish_block)
559                 selector->finish_block(be.selector_block_env);
560
561         ir_nodeset_destroy(&be.cands);
562         ir_nodeset_destroy(&be.live);
563 }
564
565 /* List schedule a graph. */
566 void list_sched(const be_irg_t *birg, be_options_t *be_opts)
567 {
568         const arch_env_t *arch_env = birg->main_env->arch_env;
569         ir_graph         *irg      = birg->irg;
570
571         int num_nodes;
572         sched_env_t env;
573         mris_env_t *mris = NULL;
574         list_sched_selector_t sel;
575
576         /* Select a scheduler based on backend options */
577         switch (list_sched_options.select) {
578                 case BE_SCHED_SELECT_TRIVIAL:
579                         memcpy(&sel, trivial_selector, sizeof(sel));
580                         break;
581                 case BE_SCHED_SELECT_RANDOM:
582                         memcpy(&sel, random_selector, sizeof(sel));
583                         break;
584                 case BE_SCHED_SELECT_REGPRESS:
585                         memcpy(&sel, reg_pressure_selector, sizeof(sel));
586                         break;
587                 case BE_SCHED_SELECT_MUCHNIK:
588                         memcpy(&sel, muchnik_selector, sizeof(sel));
589                         break;
590                 case BE_SCHED_SELECT_HEUR:
591                         memcpy(&sel, heuristic_selector, sizeof(sel));
592                         break;
593                 case BE_SCHED_SELECT_HMUCHNIK:
594                 default:
595                         memcpy(&sel, trivial_selector, sizeof(sel));
596         }
597
598 #if 1
599         /* Matze: This is very slow, we should avoid it to improve backend speed,
600          * we just have to make sure that we have no dangling out-edges at this
601          * point...
602          */
603
604         /* Assure, that we have no dangling out-edges to deleted stuff */
605         edges_deactivate(birg->irg);
606         edges_activate(birg->irg);
607 #endif
608
609         switch (list_sched_options.prep) {
610                 case BE_SCHED_PREP_MRIS:
611                         mris = be_sched_mris_preprocess(birg);
612                         break;
613                 case BE_SCHED_PREP_RSS:
614                         rss_schedule_preparation(birg);
615                         break;
616                 default:
617                         break;
618         }
619
620         num_nodes = get_irg_last_idx(irg);
621
622         /* initialize environment for list scheduler */
623         memset(&env, 0, sizeof(env));
624         env.selector   = arch_env->isa->impl->get_list_sched_selector(arch_env->isa, &sel);
625         env.arch_env   = arch_env;
626         env.irg        = irg;
627         env.sched_info = NEW_ARR_F(sched_irn_t, num_nodes);
628
629         memset(env.sched_info, 0, num_nodes * sizeof(env.sched_info[0]));
630
631         if (env.selector->init_graph)
632                 env.selector_env = env.selector->init_graph(env.selector, arch_env, irg);
633
634         /* Schedule each single block. */
635         irg_block_walk_graph(irg, list_sched_block, NULL, &env);
636
637         if (env.selector->finish_graph)
638                 env.selector->finish_graph(env.selector_env);
639
640         if (list_sched_options.prep == BE_SCHED_PREP_MRIS)
641                 be_sched_mris_free(mris);
642
643         DEL_ARR_F(env.sched_info);
644 }
645
646 /* List schedule a block. */
647 void list_sched_single_block(const be_irg_t *birg, ir_node *block, be_options_t *be_opts)
648 {
649         const arch_env_t *arch_env = birg->main_env->arch_env;
650         ir_graph         *irg      = birg->irg;
651
652         int num_nodes;
653         sched_env_t env;
654         list_sched_selector_t sel;
655
656         /* Select a scheduler based on backend options */
657         switch (list_sched_options.select) {
658                 case BE_SCHED_SELECT_TRIVIAL:
659                         memcpy(&sel, trivial_selector, sizeof(sel));
660                         break;
661                 case BE_SCHED_SELECT_RANDOM:
662                         memcpy(&sel, random_selector, sizeof(sel));
663                         break;
664                 case BE_SCHED_SELECT_REGPRESS:
665                         memcpy(&sel, reg_pressure_selector, sizeof(sel));
666                         break;
667                 case BE_SCHED_SELECT_MUCHNIK:
668                         memcpy(&sel, muchnik_selector, sizeof(sel));
669                         break;
670                 case BE_SCHED_SELECT_HEUR:
671                         memcpy(&sel, heuristic_selector, sizeof(sel));
672                         break;
673                 case BE_SCHED_SELECT_HMUCHNIK:
674                 default:
675                         memcpy(&sel, trivial_selector, sizeof(sel));
676         }
677
678         /* Assure, that the out edges are computed */
679         edges_deactivate(birg->irg);
680         edges_activate(birg->irg);
681
682         num_nodes = get_irg_last_idx(irg);
683
684         /* initialize environment for list scheduler */
685         memset(&env, 0, sizeof(env));
686         env.selector   = arch_env->isa->impl->get_list_sched_selector(arch_env->isa, &sel);
687         env.arch_env   = arch_env;
688         env.irg        = irg;
689         env.sched_info = NEW_ARR_F(sched_irn_t, num_nodes);
690
691         memset(env.sched_info, 0, num_nodes * sizeof(env.sched_info[0]));
692
693         if (env.selector->init_graph)
694                 env.selector_env = env.selector->init_graph(env.selector, arch_env, irg);
695
696         /* Schedule block. */
697         list_sched_block(block, &env);
698
699         if (env.selector->finish_graph)
700                 env.selector->finish_graph(env.selector_env);
701
702         DEL_ARR_F(env.sched_info);
703 }
704
705 /**
706  * Register list scheduler options.
707  */
708 void be_init_listsched(void) {
709         lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
710         lc_opt_entry_t *sched_grp = lc_opt_get_grp(be_grp, "listsched");
711
712         lc_opt_add_table(sched_grp, list_sched_option_table);
713
714         FIRM_DBG_REGISTER(dbg, "firm.be.sched");
715 }
716
717 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_listsched);