removed unused header
[libfirm] / ir / be / becopyilp_t.h
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Common stuff used by all ILP formulations.
23  * @author      Daniel Grund
24  * @date        28.02.2006
25  * @version     $Id$
26  */
27 #ifndef FIRM_BE_BECOPYILP_T_H
28 #define FIRM_BE_BECOPYILP_T_H
29
30 #include "firm_config.h"
31
32 #include "irnode.h"
33 #include "pset.h"
34 #include "becopyopt_t.h"
35
36 /******************************************************************************
37     _____ _                        _            _   _
38    / ____(_)                      | |          | | (_)
39   | (___  _ _______   _ __ ___  __| |_   _  ___| |_ _  ___  _ __
40    \___ \| |_  / _ \ | '__/ _ \/ _` | | | |/ __| __| |/ _ \| '_ \
41    ____) | |/ /  __/ | | |  __/ (_| | |_| | (__| |_| | (_) | | | |
42   |_____/|_/___\___| |_|  \___|\__,_|\__,_|\___|\__|_|\___/|_| |_|
43
44  *****************************************************************************/
45
46 typedef struct _coloring_suffix_t coloring_suffix_t;
47
48 struct _coloring_suffix_t {
49         coloring_suffix_t *next;
50         ir_node           *irn;
51 };
52
53 typedef struct _size_red_t {
54         copy_opt_t        *co;
55         pset              *all_removed;   /**< All nodes removed during problem size reduction */
56         coloring_suffix_t *col_suff;      /**< Coloring suffix. Reverse would be a PEO prefix */
57         struct obstack    ob;
58 } size_red_t;
59
60 /**
61  * Just prepare. Do nothing yet.
62  */
63 size_red_t *new_size_red(copy_opt_t *co);
64
65 /**
66  * Checks if a node has already been removed
67  */
68 #define sr_is_removed(sr, irn)          pset_find_ptr((sr)->all_removed, irn)
69
70 /**
71  * Virtually remove all nodes not related to the problem
72  * (simplicial AND not adjacent to a equal-color-edge)
73  */
74 void sr_remove(size_red_t *sr);
75
76 /**
77  * Virtually reinsert the nodes removed before and color them
78  */
79 void sr_reinsert(size_red_t *sr);
80
81 /**
82  * Free all space...
83  */
84 void free_size_red(size_red_t *sr);
85
86 /**
87  * TODO: This search is necessary because during the construction of the
88  *       units (ou's) args could be merged and weights are accumulated.
89  *       Is this necessary?
90  */
91 static INLINE int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) {
92         int    i;
93         unit_t *curr;
94
95         /* search optimization unit for phi */
96         list_for_each_entry(unit_t, curr, &co->units, units)
97                 if (curr->nodes[0] == root) {
98
99                         for (i = 1; i < curr->node_count; ++i)
100                                 if (curr->nodes[i] == arg)
101                                         return curr->costs[i];
102
103                                 assert(0 && "irn must occur in this ou");
104                 }
105
106         assert(0 && "phi must be found in a ou");
107         return 0;
108 }
109
110 /******************************************************************************
111     _____                      _        _____ _      _____
112    / ____|                    (_)      |_   _| |    |  __ \
113   | |  __  ___ _ __   ___ _ __ _  ___    | | | |    | |__) |
114   | | |_ |/ _ \ '_ \ / _ \ '__| |/ __|   | | | |    |  ___/
115   | |__| |  __/ | | |  __/ |  | | (__   _| |_| |____| |
116    \_____|\___|_| |_|\___|_|  |_|\___| |_____|______|_|
117
118  *****************************************************************************/
119
120 #ifdef WITH_ILP
121 #include <lpp/lpp.h>
122
123 #define LPP_SOLVE_NET
124
125 #ifdef LPP_SOLVE_NET
126 #  include <lpp/lpp_net.h>
127 #else
128 #  include <lpp/lpp_cplex.h>
129 #endif
130
131 #define EPSILON 0.00001
132
133 typedef struct _ilp_env_t ilp_env_t;
134
135 typedef void(*ilp_callback)(ilp_env_t*);
136
137 struct _ilp_env_t {
138         const copy_opt_t *co;   /**< the copy opt problem */
139         size_red_t       *sr;   /**< problem size reduction. removes simple nodes */
140         lpp_t            *lp;   /**< the linear programming problem */
141         void             *env;
142         ilp_callback     build;
143         ilp_callback     apply;
144 };
145
146 ilp_env_t *new_ilp_env(copy_opt_t *co, ilp_callback build, ilp_callback apply, void *env);
147
148 lpp_sol_state_t ilp_go(ilp_env_t *ienv);
149
150 void free_ilp_env(ilp_env_t *ienv);
151
152
153 #define name_cdd(buf, char1, int1, int2) \
154                         (snprintf(buf, sizeof(buf), "%c_%d_%d", char1, int1, int2), buf)
155
156 #define name_cdd_sorted(buf, char1, int1, int2) \
157                         name_cdd(buf, char1, MIN(int1, int2), MAX(int1, int2))
158
159 #endif /* WITH_ILP */
160
161 #endif /* FIRM_BE_BECOPYILP_T_H */