Merged with checked in stuff.
[libfirm] / ir / be / bephicongr_t.h
1 /**
2  * @author Daniel Grund
3  * @date 09.12.2004
4  */
5
6 #ifndef _BEPHICONGR_T_H
7 #define _BEPHICONGR_T_H
8
9 #include "irnode.h"
10 #include "pset.h"
11
12
13 typedef struct _phi_info_t {
14         ir_node *phi;                              /* only set in args of phi nodes (which could be a phi itslef). Points to a phi node or NULL */
15         pset *phi_class;               /* only set in phi nodes. A set containing the members of the phi congruence class this phi node belongs to */
16 } phi_info_t;
17
18 extern size_t phi_irn_data_offset;
19
20 extern pset *all_phi_classes;
21
22 /**
23  * Setting this to 0 will treat const nodes like
24  * all other nodes when computing phi congruence classes.
25  * A non zero value results in splitting phi congruence
26  * classes at all const nodes (except they do share
27  * some non-const nodes too)
28  *
29  * A non zero value can only be set if copies of const
30  * nodes are placed correctly.
31  */
32 #define CONSTS_SPLIT_PHI_CLASSES 1
33 #define get_irn_phi_info(irn)   get_irn_data(irn, phi_info_t, phi_irn_data_offset)
34 #define get_phi_class(irn)      get_irn_phi_info(irn)->phi_class /* Only for phi nodes */
35
36 void be_phi_congr_class_init(void);
37 void be_phi_congr_classes(pset *phis);
38
39
40 #endif