still trying to fix irscc error
[libfirm] / ir / ana / rta.h
1 /* -*- c -*- */
2
3 #ifndef _RTA_H_
4 #define _RTA_H_
5
6 # include "entity.h"
7
8 /* Initialise the RTA data structures and perform RTA */
9 void rta_init(int, int);
10 /* Delete all graphs that have been found to be dead */
11 void rta_delete_dead_graphs (void);
12 /* Clean up our data structures */
13 void rta_cleanup(void);
14
15 /* Inquire whether the given class is live */
16 int rta_is_alive_class(type *clazz);
17 /* Inquire whether the given graph is alive */
18 int rta_is_alive_graph(ir_graph *graph);
19 /* Inquire whether the given field is alive */
20 int rta_is_alive_field(entity *field);
21 /* dump our opinion */
22 void rta_report (FILE*);
23
24 #endif /* def _RTA_H_ */
25
26 /*
27  * $Log$
28  * Revision 1.6  2004/06/17 14:21:14  liekweg
29  * major bugfix
30  *
31  * Revision 1.5  2004/06/17 08:33:01  liekweg
32  * Added comments; added remove_irg
33  *
34  * Revision 1.4  2004/06/15 11:44:54  beck
35  * New inlining schema implemented:
36  *
37  * small functions that should be inlined in libFirm are implemented in _t.h files
38  * with a __ prefix.
39  * Preprocessor magic is used to automatically inline these functions whenever a _t.h
40  * file is included instead of a .h file.
41  * Note that this magic did not work outside libFirm without accessing _t.h files.
42  *
43  * Revision 1.3  2004/06/13 15:03:45  liekweg
44  * RTA auf Iterative RTA aufgebohrt --flo
45  *
46  * Revision 1.2  2004/06/12 17:09:46  liekweg
47  * RTA works, outedges breaks.  "Yay." --flo
48  *
49  * Revision 1.1  2004/06/11 18:24:18  liekweg
50  * Added RTA --flo
51  *
52  */