BugFix: use phase_get_or_set_irn_data for getting phi class
[libfirm] / ir / ana / phiclass.h
1 /**
2  * Analysis to compute phi congruence classes.
3  * @author Daniel Grund
4  * @cvsid  $Id$
5  * @date   15.01.2005
6  */
7
8 #ifndef _PHICLASS_H_
9 #define _PHICLASS_H_
10
11 #include "pset.h"
12 #include "irgraph.h"
13 #include "irnode.h"
14
15 typedef struct _phi_classes_t phi_classes_t;
16
17 /**
18  * Return the array containing all nodes assigned to the same Phi class as @p irn.
19  */
20 ir_node **get_phi_class(phi_classes_t *pc, ir_node *irn);
21
22 /**
23  * Assigns a new array of nodes representing the new Phi class to @p irn.
24  */
25 void set_phi_class(phi_classes_t *pc, ir_node *irn, ir_node **cls);
26
27 /**
28  * Returns a set containing all computed Phi classes.
29  */
30 pset *get_all_phi_classes(phi_classes_t *pc);
31
32 /**
33  * Builds the Phi classes for all Phis in @p irg.
34  * @return The Phi class object for the @p irg.
35  */
36 phi_classes_t *phi_class_new_from_irg(ir_graph *irg);
37
38 /**
39  * Builds all Phi classes for the given set of Phis.
40  * @return The Phis class object for @p all_phis.
41  */
42 phi_classes_t *phi_class_new_from_set(ir_graph *irg, pset *all_phis);
43
44 /**
45  * Free all allocated data.
46  */
47 void phi_class_free(phi_classes_t *pc);
48
49 #endif /* _PHICLASS_H_ */