Added TODOs.
[libfirm] / ir / be / becopyilp.c
1 /**
2  * Author:      Daniel Grund
3  * Date:                17.05.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  */
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #ifdef HAVE_ALLOCA_H
12 #include <alloca.h>
13 #endif
14 #ifdef HAVE_MALLOC_H
15 #include <malloc.h>
16 #endif
17
18 #include "irprog.h"
19
20 #include "lpp.h"
21 #include "lpp_local.h"
22 #include "lpp_remote.h"
23 #include "xmalloc.h"
24 #include "becopyopt.h"
25 #include "becopystat.h"
26
27 #undef DUMP_MPS
28 #define DEBUG_LVL SET_LEVEL_1
29 static firm_dbg_module_t *dbg = NULL;
30
31 #define EPSILON 0.00001
32 #define SLOTS_LIVING 32
33
34 typedef struct _simpl_t {
35         struct list_head chain;
36         if_node_t *ifn;
37 } simpl_t;
38
39 typedef struct _problem_instance_t {
40         const copy_opt_t *co;                   /** the copy_opt problem */
41         /* problem size reduction removing simple nodes */
42         struct list_head simplicials;   /**< holds all simpl_t's in right order to color*/
43         pset *removed;                                  /**< holds all removed simplicial irns */
44         /* lp problem */
45         lpp_t *dilp;                                    /**< problem formulation directly as milp */
46         /* overhead stuff */
47         lpp_t *curr_lp;                                 /**< points to the problem currently used */
48         int cst_counter, last_x_var;
49         char buf[32];
50         int all_simplicial;
51 } problem_instance_t;
52
53 #define is_removed(irn) pset_find_ptr(pi->removed, irn)
54
55 #define is_color_possible(irn,color) arch_reg_is_allocatable(pi->co->chordal_env->arch_env, irn, arch_pos_make_out(0), arch_register_for_index(pi->co->chordal_env->cls, color))
56
57 /*
58  * Some stuff for variable name handling.
59  */
60 #define mangle_cst(buf, prefix, nr) \
61                         snprintf((buf), sizeof(buf), "%c%d", (prefix), (nr))
62
63 #define mangle_var(buf, prefix, node_nr, color) \
64                         snprintf((buf), sizeof(buf), "%c%d_%d", (prefix), (node_nr), (color))
65
66 #define mangle_var_irn(buf, prefix, irn, color) \
67                         mangle_var((buf), (prefix), get_irn_graph_nr(irn), (color))
68
69 #define split_var(var, nnr, col) \
70                         sscanf(var, "x%d_%d", (nnr), (col))
71
72
73 /**
74  * Checks if a node is simplicial in the graph
75  * heeding the already removed nodes.
76  */
77 static INLINE int pi_is_simplicial(problem_instance_t *pi, const if_node_t *ifn) {
78         int i, o, size = 0;
79         if_node_t **all, *curr;
80         all = alloca(ifn_get_degree(ifn) * sizeof(*all));
81
82         /* get all non-removed neighbors */
83         foreach_neighb(ifn, curr)
84                 if (!is_removed(curr))
85                         all[size++] = curr;
86
87         /* check if these form a clique */
88         for (i=0; i<size; ++i)
89                 for (o=i+1; o<size; ++o)
90                         if (!ifg_has_edge(pi->co->chordal_env, all[i], all[o]))
91                                 return 0;
92
93         /* all edges exist so this is a clique */
94         return 1;
95 }
96
97 /**
98  * Iterative finds and 'removes' from the graph all nodes which are
99  * simplicial AND not member of a equal-color-wish
100  */
101 static void pi_find_simplicials(problem_instance_t *pi) {
102         set *if_nodes;
103         if_node_t *ifn;
104         int redo = 1;
105
106         DBG((dbg, LEVEL_2, "Find simlicials...\n"));
107
108         if_nodes = be_ra_get_ifg_nodes(pi->co->chordal_env);
109         while (redo) {
110                 redo = 0;
111                 for (ifn = set_first(if_nodes); ifn; ifn = set_next(if_nodes)) {
112                         ir_node *irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, ifn->nnr);
113                         if (!is_removed(irn) && !is_optimizable(pi->co->chordal_env->arch_env, irn) &&
114           !is_optimizable_arg(pi->co, irn) && pi_is_simplicial(pi, ifn)) {
115                                 simpl_t *s = xmalloc(sizeof(*s));
116                                 s->ifn = ifn;
117                                 list_add(&s->chain, &pi->simplicials);
118                                 pset_insert_ptr(pi->removed, irn);
119                                 redo = 1;
120                                 DBG((dbg, LEVEL_2, " Removed %n %d\n", irn, get_irn_graph_nr(irn)));
121                         }
122                 }
123         }
124         if (set_count(be_ra_get_ifg_nodes(pi->co->chordal_env)) == pset_count(pi->removed))
125                 pi->all_simplicial = 1;
126 }
127
128 /**
129  * Add coloring-force conditions
130  * Matrix A: knapsack constraint for each node
131  */
132 static void pi_add_constr_A(problem_instance_t *pi) {
133         pmap_entry *pme;
134
135         DBG((dbg, LEVEL_2, "Add A constraints...\n"));
136         /* iterate over all blocks */
137         pmap_foreach(pi->co->chordal_env->border_heads, pme) {
138                 struct list_head *head = pme->value;
139                 border_t *curr;
140                 bitset_t *pos_regs = bitset_alloca(pi->co->chordal_env->cls->n_regs);
141
142                 list_for_each_entry_reverse(border_t, curr, head, list)
143                         if (curr->is_def && curr->is_real && !is_removed(curr->irn)) {
144                                 int cst_idx, nnr, col;
145
146                                 nnr = get_irn_graph_nr(curr->irn);
147                                 mangle_cst(pi->buf, 'A', nnr);
148                                 cst_idx = lpp_add_cst(pi->curr_lp, pi->buf, equal, 1);
149
150                                 // iterate over all possible colors in order
151                                 bitset_clear_all(pos_regs);
152                                 arch_get_allocatable_regs(pi->co->chordal_env->arch_env, curr->irn, arch_pos_make_out(0), pi->co->chordal_env->cls, pos_regs);
153                                 bitset_foreach(pos_regs, col) {
154                                         int var_idx;
155                                         mangle_var(pi->buf, 'x', nnr, col);
156                                         var_idx = lpp_add_var(pi->curr_lp, pi->buf, binary, 0);
157                                         pi->last_x_var = var_idx;
158                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, var_idx, 1);
159                                 }
160                         }
161         }
162 }
163
164 /**
165  * Checks if all nodes in @p living are live in in block @p block.
166  * @return 1 if all are live in
167  *         0 else
168  */
169 static INLINE int all_live_in(ir_node *block, pset *living) {
170         ir_node *n;
171         for (n = pset_first(living); n; n = pset_next(living))
172                 if (!is_live_in(block, n)) {
173                         pset_break(living);
174                         return 0;
175                 }
176         return 1;
177 }
178
179 /**
180  * Finds cliques in the interference graph, considering only nodes
181  * for which the color @p color is possible. Finds only 'maximal-cliques',
182  * viz cliques which are not contained in another one.
183  * Matrix B: interference constraints using cliques
184  */
185 static void pi_add_constr_B(problem_instance_t *pi, int color) {
186         enum phase_t {growing, shrinking} phase = growing;
187         border_t *b;
188         pmap_entry *pme;
189         pset *living = pset_new_ptr(SLOTS_LIVING);
190
191         DBG((dbg, LEVEL_2, "Add B constraints (col = %d)...\n", color));
192         /* iterate over all blocks */
193         pmap_foreach(pi->co->chordal_env->border_heads, pme) {
194                 ir_node *block = pme->key;
195                 struct list_head *head = pme->value;
196
197                 list_for_each_entry_reverse(border_t, b, head, list) {
198                         const ir_node *irn = b->irn;
199                         if (is_removed(irn) || !is_color_possible(irn, color))
200                                 continue;
201
202                         if (b->is_def) {
203                                 DBG((dbg, LEVEL_2, "Def %n\n", irn));
204                                 pset_insert_ptr(living, irn);
205                                 phase = growing;
206                         } else { /* is_use */
207                                 DBG((dbg, LEVEL_2, "Use %n\n", irn));
208
209                                 /* before shrinking the set, store the current 'maximum' clique;
210                                  * do NOT if clique is a single node
211                                  * do NOT if all values are live_in (in this case they were contained in a live-out clique elsewhere) */
212                                 if (phase == growing && pset_count(living) >= 2 && !all_live_in(block, living)) {
213                                         int cst_idx;
214                                         ir_node *n;
215                                         mangle_cst(pi->buf, 'B', pi->cst_counter);
216                                         cst_idx = lpp_add_cst(pi->curr_lp, pi->buf, less, 1);
217                                         for (n = pset_first(living); n; n = pset_next(living)) {
218                                                 int var_idx;
219                                                 mangle_var_irn(pi->buf, 'x', n, color);
220                                                 var_idx = lpp_get_var_idx(pi->curr_lp, pi->buf);
221                                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, var_idx, 1);
222                                         }
223                                         pi->cst_counter++;
224                                 }
225                                 pset_remove_ptr(living, irn);
226                                 phase = shrinking;
227                         }
228                 }
229         }
230         assert(0 == pset_count(living));
231         del_pset(living);
232 }
233
234 /**
235  * Generates constraints which interrelate x with y variables.
236  * x1 and x2 have the different colors ==> y_12 = 1
237  */
238 static void pi_add_constr_E(problem_instance_t *pi) {
239         unit_t *curr;
240         bitset_t *root_regs, *arg_regs;
241         int cst_counter = 0;
242         unsigned nregs = pi->co->chordal_env->cls->n_regs;
243         root_regs = bitset_alloca(nregs);
244         arg_regs = bitset_alloca(nregs);
245
246         DBG((dbg, LEVEL_2, "Add E constraints...\n"));
247         /* for all roots of optimization units */
248         list_for_each_entry(unit_t, curr, &pi->co->units, units) {
249                 ir_node *root, *arg;
250                 int rootnr, argnr, color;
251                 int y_idx, i;
252                 char buf[32];
253
254                 root = curr->nodes[0];
255                 rootnr = get_irn_graph_nr(root);
256                 bitset_clear_all(root_regs);
257                 arch_get_allocatable_regs(pi->co->chordal_env->arch_env, root, arch_pos_make_out(0), pi->co->chordal_env->cls, root_regs);
258
259                 /* for all arguments of root */
260                 for (i = 1; i < curr->node_count; ++i) {
261                         arg = curr->nodes[i];
262                         argnr = get_irn_graph_nr(arg);
263                         bitset_clear_all(arg_regs);
264                         arch_get_allocatable_regs(pi->co->chordal_env->arch_env, arg, arch_pos_make_out(0), pi->co->chordal_env->cls, arg_regs);
265
266                         /* Introduce new variable and set factor in objective function */
267                         mangle_var(buf, 'y', rootnr, argnr);
268                         y_idx = lpp_add_var(pi->curr_lp, buf, continous, curr->costs[i]);
269
270                         /* set starting value */
271                         //lpp_set_start_value(pi->curr_lp, y_idx, (get_irn_col(pi->co, root) != get_irn_col(pi->co, arg)));
272
273                         /* For all colors root and arg have in common, add 2 constraints to E */
274                         bitset_and(arg_regs, root_regs);
275                         bitset_foreach(arg_regs, color) {
276                                 int root_idx, arg_idx, cst_idx;
277                                 mangle_var(buf, 'x', rootnr, color);
278                                 root_idx = lpp_get_var_idx(pi->curr_lp, buf);
279                                 mangle_var(buf, 'x', argnr, color);
280                                 arg_idx = lpp_get_var_idx(pi->curr_lp, buf);
281
282                                 /* add root-arg-y <= 0 */
283                                 mangle_cst(buf, 'E', cst_counter++);
284                                 cst_idx = lpp_add_cst(pi->curr_lp, buf, less, 0);
285                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, root_idx, 1);
286                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, arg_idx, -1);
287                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
288
289                                 /* add arg-root-y <= 0 */
290                                 mangle_cst(buf, 'E', cst_counter++);
291                                 cst_idx = lpp_add_cst(pi->curr_lp, buf, less, 0);
292                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, root_idx, -1);
293                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, arg_idx, 1);
294                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
295                         }
296                         /* TODO:
297                          * \forall c \in p(v_i) \ p(v_j)
298                          *              y_ij >= x_ic
299                          * \forall c \in p(v_j) \ p(v_i)
300                          *              y_ij >= x_jc
301                          */
302                 }
303         }
304 }
305
306 /**
307  * Matrix S: maximum independent set constraints
308  * Generates lower bound-cuts for optimization units with inner interferences.
309  * Sum(y_{root, arg}, arg \in Args) <= max_indep_set_size - 1
310  */
311 static void pi_add_constr_S(problem_instance_t *pi) {
312         unit_t *curr;
313         int cst_counter = 0;
314         DBG((dbg, LEVEL_2, "Add M constraints...\n"));
315
316         /* for all optimization units */
317         list_for_each_entry(unit_t, curr, &pi->co->units, units) {
318                 const ir_node *root, *arg;
319                 int rootnr, argnr;
320                 int cst_idx, y_idx, i;
321                 char buf[32];
322
323                 if (curr->minimal_costs == 0)
324                         continue;
325
326                 root = curr->nodes[0];
327                 rootnr = get_irn_graph_nr(root);
328                 mangle_cst(buf, 'M', cst_counter++);
329                 cst_idx = lpp_add_cst(pi->curr_lp, buf, greater, curr->minimal_costs);
330
331                 /* for all arguments */
332                 for (i = 1; i < curr->node_count; ++i) {
333                         arg = curr->nodes[i];
334                         argnr = get_irn_graph_nr(arg);
335                         mangle_var(buf, 'y', rootnr, argnr);
336                         y_idx = lpp_get_var_idx(pi->curr_lp, buf);
337                         lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, curr->costs[i]);
338                 }
339         }
340 }
341
342 /**
343  * TODO Matrix M: Multi-Arg-Use. Interrelates different \phi-functions
344  * in the same block, iff they use the same arg at the same pos.
345  * Only one can get the arg.
346  */
347
348 //static void pi_add_constr_M(problem_instance_t *pi) {
349
350 /**
351  * Generate the initial problem matrices and vectors.
352  */
353 static problem_instance_t *new_pi(const copy_opt_t *co) {
354         problem_instance_t *pi;
355         int col;
356
357         DBG((dbg, LEVEL_2, "Generating new instance...\n"));
358         pi = xcalloc(1, sizeof(*pi));
359         pi->co = co;
360         pi->removed = pset_new_ptr_default();
361         INIT_LIST_HEAD(&pi->simplicials);
362         pi->dilp = new_lpp(co->name, minimize);
363         pi->last_x_var = -1;
364
365         /* problem size reduction */
366         pi_find_simplicials(pi);
367         //TODO If you wish to see it: dump_ifg_w/o_removed
368         if (pi->all_simplicial)
369                 return pi;
370
371         /* built objective abd constraints */
372         pi->curr_lp = pi->dilp;
373         pi_add_constr_A(pi);
374         for (col = 0; col < pi->co->chordal_env->cls->n_regs; ++col)
375                 pi_add_constr_B(pi, col);
376         pi_add_constr_E(pi);
377         pi_add_constr_S(pi);
378         //TODO pi_add_constr_M(pi);
379
380         return pi;
381 }
382
383 /**
384  * Clean the problem instance
385  */
386 static void free_pi(problem_instance_t *pi) {
387         simpl_t *simpl, *tmp;
388
389         DBG((dbg, LEVEL_2, "Free instance...\n"));
390         free_lpp(pi->dilp);
391         list_for_each_entry_safe(simpl_t, simpl, tmp, &pi->simplicials, chain)
392                 free(simpl);
393         del_pset(pi->removed);
394         free(pi);
395 }
396
397 /**
398  * Set starting values for the mip problem according
399  * to the current coloring of the graph.
400  */
401 static void pi_set_start_sol(problem_instance_t *pi) {
402         int i;
403         char var_name[64];
404         DBG((dbg, LEVEL_2, "Set start solution...\n"));
405         for (i=1; i<=pi->last_x_var; ++i) {
406                 int nnr, col;
407                 double val;
408                 /* get variable name */
409                 lpp_get_var_name(pi->curr_lp, i, var_name, sizeof(var_name));
410                 /* split into components */
411                 if (split_var(var_name, &nnr, &col) == 2) {
412                         assert(get_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr)) != -1);
413                         val = (get_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr)) == col) ? 1 : 0;
414                         lpp_set_start_value(pi->curr_lp, i, val);
415                 } else {
416                         fprintf(stderr, "Variable name is: %s\n", var_name);
417                         assert(0 && "x vars always look like this 'x123_45'");
418                 }
419         }
420 }
421
422 /**
423  * Invoke a solver
424  */
425 static void pi_solve_ilp(problem_instance_t *pi, void (*lpp_solve)(lpp_t *)) {
426         pi_set_start_sol(pi);
427         lpp_solve(pi->curr_lp);
428 }
429
430 /**
431  * Set the color of all simplicial nodes removed form
432  * the graph before transforming it to an ilp.
433  */
434 static void pi_set_simplicials(problem_instance_t *pi) {
435         simpl_t *simpl, *tmp;
436         bitset_t *used_cols = bitset_alloca(arch_register_class_n_regs(pi->co->chordal_env->cls));
437
438         DBG((dbg, LEVEL_2, "Set simplicials...\n"));
439         /* color the simplicial nodes in right order */
440         list_for_each_entry_safe(simpl_t, simpl, tmp, &pi->simplicials, chain) {
441                 int free_col;
442                 ir_node *other_irn, *irn;
443                 if_node_t *other, *ifn;
444
445                 /* get free color by inspecting all neighbors */
446                 ifn = simpl->ifn;
447                 irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, ifn->nnr);
448                 bitset_clear_all(used_cols);
449                 foreach_neighb(ifn, other) {
450                         other_irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, other->nnr);
451                         if (!is_removed(other_irn)) /* only inspect nodes which are in graph right now */
452                                 bitset_set(used_cols, get_irn_col(pi->co, other_irn));
453                 }
454
455                 /* now all bits not set are possible colors */
456                 free_col = bitset_next_clear(used_cols, 0);
457                 assert(free_col != -1 && "No free color found. This can not be.");
458                 set_irn_col(pi->co, irn, free_col);
459                 pset_remove_ptr(pi->removed, irn); /* irn is back in graph again */
460         }
461 }
462
463 /**
464  * Sets the colors of irns according to the values of variables
465  * provided by the solution of the solver.
466  */
467 static void pi_apply_solution(problem_instance_t *pi) {
468         int i;
469         double *sol;
470         sol_state_t state;
471         DBG((dbg, LEVEL_2, "Applying solution...\n"));
472
473 #ifdef DO_STAT
474         curr_vals[I_ILP_ITER] += lpp_get_iter_cnt(pi->curr_lp);
475         curr_vals[I_ILP_TIME] += lpp_get_sol_time(pi->curr_lp);
476 #endif
477
478         sol = xmalloc((pi->last_x_var+1) * sizeof(*sol));
479         state = lpp_get_solution(pi->curr_lp, sol, 1, pi->last_x_var);
480         if (state != optimal) {
481                 printf("Solution state is not 'optimal': %d\n", state);
482                 assert(state >= feasible && "The solution should at least be feasible!");
483         }
484         for (i=0; i<pi->last_x_var; ++i) {
485                 int nnr, col;
486                 char var_name[64];
487
488                 if (sol[i] > 1-EPSILON) { /* split varibale name into components */
489                         lpp_get_var_name(pi->curr_lp, 1+i, var_name, sizeof(var_name));
490                         if (split_var(var_name, &nnr, &col) == 2) {
491                                 DBG((dbg, LEVEL_2, "Irn %n  Idx %d  Var %s  Val %f\n", get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr), i, var_name, sol[i]));
492                                 DBG((dbg, LEVEL_2, "x%d = %d\n", nnr, col));
493                                 set_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr), col);
494                         } else
495                                 assert(0 && "This should be a x-var");
496                 }
497         }
498 }
499
500 void co_ilp_opt(copy_opt_t *co) {
501         problem_instance_t *pi;
502
503         dbg = firm_dbg_register("ir.be.copyoptilp");
504         if (!strcmp(co->name, DEBUG_IRG))
505                 firm_dbg_set_mask(dbg, DEBUG_LVL_ILP);
506         else
507                 firm_dbg_set_mask(dbg, DEBUG_LVL);
508
509         pi = new_pi(co);
510         if (!pi->all_simplicial) {
511 #ifdef DUMP_MPS
512                 char buf[512];
513                 snprintf(buf, sizeof(buf), "%s.mps", co->name);
514                 lpp_dump(pi->curr_lp, buf);
515 #endif
516                 pi_solve_ilp(pi, lpp_solve_local);
517                 pi_apply_solution(pi);
518                 pi_set_simplicials(pi);
519         }
520         free_pi(pi);
521 }