Fix warning in r15953.
[libfirm] / ir / be / besched.h
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       Scheduling utilities for nodes in Blocks and Blocks.
23  * @author      Sebastian Hack
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_BESCHED_H
27 #define FIRM_BE_BESCHED_H
28
29 #include <stdio.h>
30
31 #include "irgraph.h"
32 #include "irnode.h"
33 #include "beirg.h"
34
35 void be_sched_dump(FILE *f, ir_graph *irg);
36
37 /**
38  * returns the time step of a node. Each node in a block has a timestep
39  * unique to that block. a node schedule before another node has a lower
40  * timestep than this node.
41  */
42 int     sched_get_time_step(const ir_node *irn);
43 int     sched_has_next(const ir_node *irn);
44 int     sched_has_prev(const ir_node *irn);
45 int     sched_is_scheduled(const ir_node *irn);
46 ir_node *sched_next(const ir_node *irn);
47 ir_node *sched_prev(const ir_node *irn);
48 ir_node *sched_first(const ir_node *block);
49 ir_node *sched_last(const ir_node *block);
50 void    sched_add_before(ir_node *before, ir_node *irn);
51 void    sched_add_after(ir_node *before, ir_node *irn);
52 void    sched_init_block(ir_node *block);
53 void    sched_reset(ir_node *node);
54 void    sched_remove(ir_node *irn);
55
56 #define sched_is_end(irn) is_Block(irn)
57 #define sched_is_begin(irn) is_Block(irn)
58
59 #define sched_foreach_from(from, irn) \
60   for(irn = from; !sched_is_end(irn); irn = sched_next(irn))
61
62 #define sched_foreach_reverse_from(from, irn) \
63   for(irn = from; !sched_is_begin(irn); irn = sched_prev(irn))
64
65 /**
66  * A shorthand macro for iterating over a schedule.
67  * @param block The block.
68  * @param irn A ir node pointer used as an iterator.
69  */
70 #define sched_foreach(block,irn) \
71         sched_foreach_from(sched_first(block), irn)
72
73 /**
74  * A shorthand macro for reversely iterating over a schedule.
75  * @param block The block.
76  * @param irn A ir node pointer used as an iterator.
77  */
78 #define sched_foreach_reverse(block,irn) \
79   sched_foreach_reverse_from(sched_last(block), irn)
80
81 /**
82  * Removes dead nodes from schedule
83  * @param irg  the graph
84  */
85 void be_remove_dead_nodes_from_schedule(be_irg_t *birg);
86
87 #endif /* FIRM_BE_BESCHED_H */