becopyheur4: Clean up co_mst_irn_init().
[libfirm] / ir / be / bechordal_t.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief       Internal data structures for the chordal register allocator.
9  * @author      Sebastian Hack
10  * @date        25.01.2005
11  */
12 #ifndef FIRM_BE_BECHORDAL_T_H
13 #define FIRM_BE_BECHORDAL_T_H
14
15 #include "firm_types.h"
16 #include "list.h"
17 #include "pmap.h"
18 #include "bitset.h"
19 #include "obst.h"
20 #include "debug.h"
21
22 #include "bechordal.h"
23 #include "beifg.h"
24
25 /**
26  * A liveness interval border.
27  */
28 struct border_t {
29         struct list_head  list;         /**< list head for queuing. */
30         ir_node          *irn;          /**< The node. */
31         unsigned         step;          /**< The number equal to the interval border. */
32         unsigned         is_def  : 1;   /**< Does this border denote a use or a def. */
33         unsigned         is_real : 1;   /**< Is the def/use real? Or is it just
34                                              inserted at block beginnings or ends
35                                              to ensure that inside a block, each
36                                              value has one begin and one end. */
37 };
38
39 /**
40  * Environment for each of the chordal register allocator phases
41  */
42 struct be_chordal_env_t {
43         struct obstack        obst;         /**< An obstack for temporary storage. */
44         be_ra_chordal_opts_t *opts;         /**< A pointer to the chordal ra options. */
45         ir_graph             *irg;          /**< The graph under examination. */
46         const arch_register_class_t *cls;   /**< The current register class. */
47         pmap                 *border_heads; /**< Maps blocks to border heads. */
48         be_ifg_t             *ifg;          /**< The interference graph. */
49         bitset_t             *allocatable_regs; /**< set of allocatable registers */
50 };
51
52 static inline struct list_head *get_block_border_head(be_chordal_env_t const *const inf, ir_node *const bl)
53 {
54   return pmap_get(list_head, inf->border_heads, bl);
55 }
56
57 #define foreach_border_head(head, pos)      list_for_each_entry_reverse(border_t, pos, head, list)
58
59 enum {
60         /* Dump flags */
61         BE_CH_DUMP_NONE       = (1 << 0),
62         BE_CH_DUMP_SPILL      = (1 << 1),
63         BE_CH_DUMP_LIVE       = (1 << 2),
64         BE_CH_DUMP_COLOR      = (1 << 3),
65         BE_CH_DUMP_COPYMIN    = (1 << 4),
66         BE_CH_DUMP_SSADESTR   = (1 << 5),
67         BE_CH_DUMP_TREE_INTV  = (1 << 6),
68         BE_CH_DUMP_CONSTR     = (1 << 7),
69         BE_CH_DUMP_SPILLSLOTS = (1 << 8),
70         BE_CH_DUMP_LOWER      = (1 << 9),
71         BE_CH_DUMP_SPLIT      = (1 << 10),
72         BE_CH_DUMP_APPEL      = (1 << 11),
73         BE_CH_DUMP_ALL        = 2 * BE_CH_DUMP_APPEL - 1,
74
75         /* lower perm options */
76         BE_CH_LOWER_PERM_SWAP   = 1,
77         BE_CH_LOWER_PERM_COPY   = 2,
78
79         /* verify options */
80         BE_CH_VRFY_OFF    = 1,
81         BE_CH_VRFY_WARN   = 2,
82         BE_CH_VRFY_ASSERT = 3,
83 };
84
85 struct be_ra_chordal_opts_t {
86         unsigned dump_flags;
87         int      lower_perm_opt;
88         int      vrfy_option;
89 };
90
91 void check_for_memory_operands(ir_graph *irg);
92
93 #endif /* FIRM_BE_BECHORDAL_T_H */