5117657c2423c2d779d01cf6f3b57673735f7322
[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         DEBUG_ONLY(unsigned magic;)     /**< A magic number for checking. */
30         struct list_head  list;         /**< list head for queuing. */
31         border_t         *other_end;    /**< The other end of the border. */
32         ir_node          *irn;          /**< The node. */
33         unsigned         step;          /**< The number equal to the interval border. */
34         unsigned         is_def  : 1;   /**< Does this border denote a use or a def. */
35         unsigned         is_real : 1;   /**< Is the def/use real? Or is it just
36                                              inserted at block beginnings or ends
37                                              to ensure that inside a block, each
38                                              value has one begin and one end. */
39 };
40
41 /**
42  * Environment for each of the chordal register allocator phases
43  */
44 struct be_chordal_env_t {
45         struct obstack        obst;         /**< An obstack for temporary storage. */
46         be_ra_chordal_opts_t *opts;         /**< A pointer to the chordal ra options. */
47         ir_graph             *irg;          /**< The graph under examination. */
48         const arch_register_class_t *cls;   /**< The current register class. */
49         pmap                 *border_heads; /**< Maps blocks to border heads. */
50         be_ifg_t             *ifg;          /**< The interference graph. */
51         bitset_t             *allocatable_regs; /**< set of allocatable registers */
52 };
53
54 static inline struct list_head *get_block_border_head(be_chordal_env_t const *const inf, ir_node *const bl)
55 {
56   return pmap_get(list_head, inf->border_heads, bl);
57 }
58
59 #define foreach_border_head(head, pos)      list_for_each_entry_reverse(border_t, pos, head, list)
60
61 enum {
62         /* Dump flags */
63         BE_CH_DUMP_NONE       = (1 << 0),
64         BE_CH_DUMP_SPILL      = (1 << 1),
65         BE_CH_DUMP_LIVE       = (1 << 2),
66         BE_CH_DUMP_COLOR      = (1 << 3),
67         BE_CH_DUMP_COPYMIN    = (1 << 4),
68         BE_CH_DUMP_SSADESTR   = (1 << 5),
69         BE_CH_DUMP_TREE_INTV  = (1 << 6),
70         BE_CH_DUMP_CONSTR     = (1 << 7),
71         BE_CH_DUMP_SPILLSLOTS = (1 << 8),
72         BE_CH_DUMP_LOWER      = (1 << 9),
73         BE_CH_DUMP_SPLIT      = (1 << 10),
74         BE_CH_DUMP_APPEL      = (1 << 11),
75         BE_CH_DUMP_ALL        = 2 * BE_CH_DUMP_APPEL - 1,
76
77         /* lower perm options */
78         BE_CH_LOWER_PERM_SWAP   = 1,
79         BE_CH_LOWER_PERM_COPY   = 2,
80
81         /* verify options */
82         BE_CH_VRFY_OFF    = 1,
83         BE_CH_VRFY_WARN   = 2,
84         BE_CH_VRFY_ASSERT = 3,
85 };
86
87 struct be_ra_chordal_opts_t {
88         unsigned dump_flags;
89         int      lower_perm_opt;
90         int      vrfy_option;
91 };
92
93 void check_for_memory_operands(ir_graph *irg);
94
95 #endif /* FIRM_BE_BECHORDAL_T_H */