beuses: Remove stale start loop test.
[libfirm] / ir / be / beuses.h
1 /*
2  * Copyright (C) 1995-2011 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       Methods to compute when a value will be used again.
23  * @author      Sebastian Hack, Matthias Braun
24  * @date        27.06.2005
25  */
26 #ifndef FIRM_BE_BEUSES_H
27 #define FIRM_BE_BEUSES_H
28
29 #include "firm_types.h"
30 #include "belive.h"
31
32 /**
33  * Describes a use of a value.
34  */
35 typedef struct be_next_use_t {
36         unsigned       time;
37         unsigned       outermost_loop;
38         /* point of the next use is at the beginning of this node. */
39         const ir_node *before;
40 } be_next_use_t;
41
42 #define USES_INFINITY  10000000
43 #define USES_PENDING   9999999
44
45 static inline bool USES_IS_INFINITE(unsigned time)
46 {
47         return time >= USES_INFINITY;
48 }
49
50 static inline bool USES_IS_PENDING(unsigned time)
51 {
52         return time == USES_PENDING;
53 }
54
55 typedef struct be_uses_t be_uses_t;
56
57 be_next_use_t be_get_next_use(be_uses_t *uses, ir_node *from,
58                               const ir_node *def, int skip_from_uses);
59
60 /**
61  * Creates a new uses environment for a graph.
62  *
63  * @param irg  the graph
64  * @param lv   liveness information for the graph
65  */
66 be_uses_t *be_begin_uses(ir_graph *irg, const be_lv_t *lv);
67
68 /**
69  * Destroys the given uses environment.
70  *
71  * @param uses  the environment
72  */
73 void be_end_uses(be_uses_t *uses);
74
75 #endif