updated Header
[libfirm] / ir / be / beuses.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   beuse.h
22  * @date   27.06.2005
23  * @author Sebastian Hack, Matthias Braun
24  *
25  * Determine future usages of values.
26  *
27  * Copyright (C) 2005 Universitaet Karlsruhe
28  * Released under the GPL
29  */
30 #ifndef _BEUSES_H
31 #define _BEUSES_H
32
33 #include "bearch_t.h"
34 #include "belive.h"
35
36 typedef struct _be_next_use_t {
37         unsigned time;
38         int outermost_loop;
39 } be_next_use_t;
40
41 #define USES_INFINITY                 10000000
42 #define USES_PENDING                   9999999
43
44 static INLINE int USES_IS_INFINITE(unsigned time)
45 {
46         return time >= USES_INFINITY;
47 }
48
49 static INLINE int USES_IS_PENDING(unsigned time)
50 {
51         return time == USES_PENDING;
52 }
53
54 typedef struct _be_uses_t be_uses_t;
55
56 be_next_use_t be_get_next_use(be_uses_t *uses, ir_node *from,
57                          unsigned from_step, const ir_node *def,
58                          int skip_from_uses);
59
60 be_uses_t *be_begin_uses(ir_graph *irg, const be_lv_t *lv);
61
62 void be_end_uses(be_uses_t *uses);
63
64 #endif /* _BEUSES_H */