f75c9250a18a5f8ec3145fac0857c28b0843019f
[libfirm] / ir / be / bechordal.c
1 /*
2  * Copyright (C) 1995-2008 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       Chordal register allocation.
23  * @author      Sebastian Hack
24  * @date        08.12.2004
25  * @version     $Id$
26  */
27 #include "config.h"
28
29 #include <ctype.h>
30
31 #include "obst.h"
32 #include "pset.h"
33 #include "list.h"
34 #include "bitset.h"
35 #include "raw_bitset.h"
36 #include "iterator.h"
37 #include "bipartite.h"
38 #include "hungarian.h"
39
40 #include "irmode_t.h"
41 #include "irgraph_t.h"
42 #include "irprintf_t.h"
43 #include "irgwalk.h"
44 #include "irdump.h"
45 #include "irdom.h"
46 #include "irtools.h"
47 #include "irbitset.h"
48 #include "debug.h"
49 #include "iredges.h"
50
51 #include "beutil.h"
52 #include "besched.h"
53 #include "besched.h"
54 #include "belive_t.h"
55 #include "benode.h"
56 #include "bearch.h"
57 #include "beirgmod.h"
58 #include "beifg.h"
59 #include "beinsn_t.h"
60 #include "bestatevent.h"
61 #include "beirg.h"
62 #include "beintlive_t.h"
63 #include "bera.h"
64 #include "bechordal_t.h"
65 #include "bechordal_draw.h"
66 #include "bemodule.h"
67 #include "bearch.h"
68 #include "bechordal_common.h"
69
70 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
71
72 #define NO_COLOR (-1)
73
74 #define DUMP_INTERVALS
75
76 typedef struct _be_chordal_alloc_env_t {
77         be_chordal_env_t *chordal_env;
78
79         pset *pre_colored;     /**< Set of precolored nodes. */
80         bitset_t *live;            /**< A liveness bitset. */
81         bitset_t *tmp_colors;  /**< An auxiliary bitset which is as long as the number of colors in the class. */
82         bitset_t *colors;          /**< The color mask. */
83         bitset_t *in_colors;   /**< Colors used by live in values. */
84         int colors_n;          /**< The number of colors. */
85 } be_chordal_alloc_env_t;
86
87 static int get_next_free_reg(const be_chordal_alloc_env_t *alloc_env, bitset_t *colors)
88 {
89         bitset_t *tmp = alloc_env->tmp_colors;
90         bitset_copy(tmp, colors);
91         bitset_or(tmp, alloc_env->chordal_env->ignore_colors);
92         return bitset_next_clear(tmp, 0);
93 }
94
95 static bitset_t *get_decisive_partner_regs(bitset_t *bs, const be_operand_t *o1, const be_operand_t *o2)
96 {
97         bitset_t *res = bs;
98
99         if (!o1) {
100                 bitset_copy(bs, o2->regs);
101                 return bs;
102         }
103
104         if (!o2) {
105                 bitset_copy(bs, o1->regs);
106                 return bs;
107         }
108
109         assert(o1->req->cls == o2->req->cls || ! o1->req->cls || ! o2->req->cls);
110
111         if (bitset_contains(o1->regs, o2->regs)) {
112                 bitset_copy(bs, o1->regs);
113         } else if (bitset_contains(o2->regs, o1->regs)) {
114                 bitset_copy(bs, o2->regs);
115         } else {
116                 res = NULL;
117         }
118
119         return res;
120 }
121
122 static void pair_up_operands(const be_chordal_alloc_env_t *alloc_env, be_insn_t *insn)
123 {
124         const be_chordal_env_t *env = alloc_env->chordal_env;
125         bitset_t               *bs  = bitset_alloca(env->cls->n_regs);
126         int                     i;
127         int                     j;
128
129         /*
130          * For each out operand, try to find an in operand which can be assigned the
131          * same register as the out operand.
132         */
133         for (j = 0; j < insn->use_start; ++j) {
134                 be_operand_t *smallest        = NULL;
135                 int           smallest_n_regs = env->cls->n_regs + 1;
136                 be_operand_t *out_op          = &insn->ops[j];
137
138                 /* Try to find an in operand which has ... */
139                 for (i = insn->use_start; i < insn->n_ops; ++i) {
140                         int           n_total;
141                         be_operand_t *op = &insn->ops[i];
142                         be_lv_t      *lv;
143
144                         if (op->partner != NULL)
145                                 continue;
146                         lv = be_get_irg_liveness(env->irg);
147                         if (be_values_interfere(lv, op->irn, op->carrier))
148                                 continue;
149
150                         bitset_clear_all(bs);
151                         bitset_copy(bs, op->regs);
152                         bitset_and(bs, out_op->regs);
153                         n_total = bitset_popcount(op->regs);
154
155                         if (!bitset_is_empty(bs) && n_total < smallest_n_regs) {
156                                 smallest        = op;
157                                 smallest_n_regs = n_total;
158                         }
159                 }
160
161                 if (smallest != NULL) {
162                         for (i = insn->use_start; i < insn->n_ops; ++i) {
163                                 if (insn->ops[i].carrier == smallest->carrier)
164                                         insn->ops[i].partner = out_op;
165                         }
166
167                         out_op->partner   = smallest;
168                         smallest->partner = out_op;
169                 }
170         }
171 }
172
173 static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env,
174                                    ir_node *irn, int *silent)
175 {
176         int n_regs;
177         bitset_t *bs;
178         ir_node **alloc_nodes;
179         //hungarian_problem_t *bp;
180         int *assignment;
181         pmap *partners;
182         int i, n_alloc;
183         unsigned col;
184         const ir_edge_t *edge;
185         ir_node *perm = NULL;
186         //int match_res, cost;
187         be_chordal_env_t *env  = alloc_env->chordal_env;
188         void *base             = obstack_base(env->obst);
189         be_insn_t *insn        = chordal_scan_insn(env, irn);
190         ir_node *res           = insn->next_insn;
191         int be_silent          = *silent;
192         bipartite_t *bp;
193
194         if (insn->pre_colored) {
195                 int i;
196                 for (i = 0; i < insn->use_start; ++i)
197                         pset_insert_ptr(alloc_env->pre_colored, insn->ops[i].carrier);
198         }
199
200         /*
201          * If the current node is a barrier toggle the silent flag.
202          * If we are in the start block, we are ought to be silent at the beginning,
203          * so the toggling activates the constraint handling but skips the barrier.
204          * If we are in the end block we handle the in requirements of the barrier
205          * and set the rest to silent.
206          */
207         if (be_is_Barrier(irn))
208                 *silent = !*silent;
209
210         if (be_silent)
211                 goto end;
212
213         /*
214          * Perms inserted before the constraint handling phase are considered to be
215          * correctly precolored. These Perms arise during the ABI handling phase.
216          */
217         if (!insn->has_constraints)
218                 goto end;
219
220         n_regs      = env->cls->n_regs;
221         bs          = bitset_alloca(n_regs);
222         alloc_nodes = ALLOCAN(ir_node*, n_regs);
223         //bp          = hungarian_new(n_regs, n_regs, 2, HUNGARIAN_MATCH_PERFECT);
224         bp          = bipartite_new(n_regs, n_regs);
225         assignment  = ALLOCAN(int, n_regs);
226         partners    = pmap_create();
227
228         /*
229          * prepare the constraint handling of this node.
230          * Perms are constructed and Copies are created for constrained values
231          * interfering with the instruction.
232          */
233         perm = pre_process_constraints(alloc_env->chordal_env, &insn);
234
235         /* find suitable in operands to the out operands of the node. */
236         pair_up_operands(alloc_env, insn);
237
238         /*
239          * look at the in/out operands and add each operand (and its possible partner)
240          * to a bipartite graph (left: nodes with partners, right: admissible colors).
241          */
242         for (i = 0, n_alloc = 0; i < insn->n_ops; ++i) {
243                 be_operand_t *op = &insn->ops[i];
244
245                 /*
246                  * If the operand has no partner or the partner has not been marked
247                  * for allocation, determine the admissible registers and mark it
248                  * for allocation by associating the node and its partner with the
249                  * set of admissible registers via a bipartite graph.
250                  */
251                 if (!op->partner || !pmap_contains(partners, op->partner->carrier)) {
252                         ir_node *partner = op->partner ? op->partner->carrier : NULL;
253                         int i;
254
255                         pmap_insert(partners, op->carrier, partner);
256                         if (partner != NULL)
257                                 pmap_insert(partners, partner, op->carrier);
258
259                         /* don't insert a node twice */
260                         for (i = 0; i < n_alloc; ++i) {
261                                 if (alloc_nodes[i] == op->carrier) {
262                                         break;
263                                 }
264                         }
265                         if (i < n_alloc)
266                                 continue;
267
268                         alloc_nodes[n_alloc] = op->carrier;
269
270                         DBG((dbg, LEVEL_2, "\tassociating %+F and %+F\n", op->carrier,
271                              partner));
272
273                         bitset_clear_all(bs);
274                         get_decisive_partner_regs(bs, op, op->partner);
275
276                         DBG((dbg, LEVEL_2, "\tallowed registers for %+F: %B\n", op->carrier,
277                              bs));
278
279                         bitset_foreach(bs, col) {
280                                 //hungarian_add(bp, n_alloc, col, 1);
281                                 bipartite_add(bp, n_alloc, col);
282                         }
283
284                         n_alloc++;
285                 }
286         }
287
288         /*
289          * Put all nodes which live through the constrained instruction also to the
290          * allocation bipartite graph. They are considered unconstrained.
291          */
292         if (perm != NULL) {
293                 foreach_out_edge(perm, edge) {
294                         int i;
295                         ir_node *proj = get_edge_src_irn(edge);
296                         be_lv_t *lv   = be_get_irg_liveness(env->irg);
297
298                         assert(is_Proj(proj));
299
300                         if (!be_values_interfere(lv, proj, irn)
301                             || pmap_contains(partners, proj))
302                                 continue;
303
304                         /* don't insert a node twice */
305                         for (i = 0; i < n_alloc; ++i) {
306                                 if (alloc_nodes[i] == proj) {
307                                         break;
308                                 }
309                         }
310                         if (i < n_alloc)
311                                 continue;
312
313
314                         assert(n_alloc < n_regs);
315
316                         alloc_nodes[n_alloc] = proj;
317                         pmap_insert(partners, proj, NULL);
318
319                         bitset_clear_all(bs);
320                         arch_put_non_ignore_regs(env->cls, bs);
321                         bitset_andnot(bs, env->ignore_colors);
322                         bitset_foreach(bs, col) {
323                                 //hungarian_add(bp, n_alloc, col, 1);
324                                 bipartite_add(bp, n_alloc, col);
325                         }
326
327                         n_alloc++;
328                 }
329         }
330
331         /* Compute a valid register allocation. */
332 #if 0
333         hungarian_prepare_cost_matrix(bp, HUNGARIAN_MODE_MAXIMIZE_UTIL);
334         match_res = hungarian_solve(bp, assignment, &cost, 1);
335         assert(match_res == 0 && "matching failed");
336 #else
337         /*bipartite_dump_f(stderr, bp);*/
338         bipartite_matching(bp, assignment);
339 #endif
340
341         /* Assign colors obtained from the matching. */
342         for (i = 0; i < n_alloc; ++i) {
343                 const arch_register_t *reg;
344                 ir_node *irn;
345
346                 assert(assignment[i] >= 0 && "there must have been a register assigned (node not register pressure faithful?)");
347                 reg = arch_register_for_index(env->cls, assignment[i]);
348                 assert(! (reg->type & arch_register_type_ignore));
349
350                 irn = alloc_nodes[i];
351                 if (irn != NULL) {
352                         arch_set_irn_register(irn, reg);
353                         (void) pset_hinsert_ptr(alloc_env->pre_colored, irn);
354                         DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", irn, reg->name));
355                 }
356
357                 irn = pmap_get(partners, alloc_nodes[i]);
358                 if (irn != NULL) {
359                         arch_set_irn_register(irn, reg);
360                         (void) pset_hinsert_ptr(alloc_env->pre_colored, irn);
361                         DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", irn, reg->name));
362                 }
363         }
364
365         /* Allocate the non-constrained Projs of the Perm. */
366         if (perm != NULL) {
367                 bitset_clear_all(bs);
368
369                 /* Put the colors of all Projs in a bitset. */
370                 foreach_out_edge(perm, edge) {
371                         ir_node *proj              = get_edge_src_irn(edge);
372                         const arch_register_t *reg = arch_get_irn_register(proj);
373
374                         if (reg != NULL)
375                                 bitset_set(bs, reg->index);
376                 }
377
378                 /* Assign the not yet assigned Projs of the Perm a suitable color. */
379                 foreach_out_edge(perm, edge) {
380                         ir_node *proj              = get_edge_src_irn(edge);
381                         const arch_register_t *reg = arch_get_irn_register(proj);
382
383                         DBG((dbg, LEVEL_2, "\tchecking reg of %+F: %s\n", proj, reg ? reg->name : "<none>"));
384
385                         if (reg == NULL) {
386                                 col = get_next_free_reg(alloc_env, bs);
387                                 reg = arch_register_for_index(env->cls, col);
388                                 bitset_set(bs, reg->index);
389                                 arch_set_irn_register(proj, reg);
390                                 pset_insert_ptr(alloc_env->pre_colored, proj);
391                                 DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", proj, reg->name));
392                         }
393                 }
394         }
395
396         bipartite_free(bp);
397         //hungarian_free(bp);
398         pmap_destroy(partners);
399
400 end:
401         obstack_free(env->obst, base);
402         return res;
403 }
404
405 /**
406  * Handle constraint nodes in each basic block.
407  * handle_constraints() inserts Perm nodes which perm
408  * over all values live at the constrained node right in front
409  * of the constrained node. These Perms signal a constrained node.
410  * For further comments, refer to handle_constraints().
411  */
412 static void constraints(ir_node *bl, void *data)
413 {
414         /*
415          * Start silent in the start block.
416          * The silence remains until the first barrier is seen.
417          * Each other block is begun loud.
418          */
419         int                     silent = bl == get_irg_start_block(get_irn_irg(bl));
420         be_chordal_alloc_env_t *env    = data;
421         ir_node                *irn;
422
423         /*
424          * If the block is the start block search the barrier and
425          * start handling constraints from there.
426          */
427         for (irn = sched_first(bl); !sched_is_end(irn);) {
428                 irn = handle_constraints(env, irn, &silent);
429         }
430 }
431
432 static void assign(ir_node *block, void *env_ptr)
433 {
434         be_chordal_alloc_env_t *alloc_env = env_ptr;
435         be_chordal_env_t *env       = alloc_env->chordal_env;
436         bitset_t *live              = alloc_env->live;
437         bitset_t *colors            = alloc_env->colors;
438         bitset_t *in_colors         = alloc_env->in_colors;
439         struct list_head *head      = get_block_border_head(env, block);
440         be_lv_t *lv                 = be_get_irg_liveness(env->irg);
441
442         const ir_node *irn;
443         border_t *b;
444         int idx;
445
446         bitset_clear_all(colors);
447         bitset_clear_all(live);
448         bitset_clear_all(in_colors);
449
450         DBG((dbg, LEVEL_4, "Assigning colors for block %+F\n", block));
451         DBG((dbg, LEVEL_4, "\tusedef chain for block\n"));
452         list_for_each_entry(border_t, b, head, list) {
453                 DBG((dbg, LEVEL_4, "\t%s %+F/%d\n", b->is_def ? "def" : "use",
454                                         b->irn, get_irn_idx(b->irn)));
455         }
456
457         /*
458          * Add initial defs for all values live in.
459          * Since their colors have already been assigned (The dominators were
460          * allocated before), we have to mark their colors as used also.
461          */
462         be_lv_foreach(lv, block, be_lv_state_in, idx) {
463                 irn = be_lv_get_irn(lv, block, idx);
464                 if (has_reg_class(env, irn)) {
465                         const arch_register_t *reg = arch_get_irn_register(irn);
466                         int col;
467
468                         assert(reg && "Node must have been assigned a register");
469                         col = arch_register_get_index(reg);
470
471                         DBG((dbg, LEVEL_4, "%+F has reg %s\n", irn, reg->name));
472
473                         /* Mark the color of the live in value as used. */
474                         bitset_set(colors, col);
475                         bitset_set(in_colors, col);
476
477                         /* Mark the value live in. */
478                         bitset_set(live, get_irn_idx(irn));
479                 }
480         }
481
482         /*
483          * Mind that the sequence of defs from back to front defines a perfect
484          * elimination order. So, coloring the definitions from first to last
485          * will work.
486          */
487         list_for_each_entry_reverse(border_t, b, head, list) {
488                 ir_node *irn = b->irn;
489                 int nr       = get_irn_idx(irn);
490                 int ignore   = arch_irn_is_ignore(irn);
491
492                 /*
493                  * Assign a color, if it is a local def. Global defs already have a
494                  * color.
495                  */
496                 if (b->is_def && !be_is_live_in(lv, block, irn)) {
497                         const arch_register_t *reg;
498                         int col = NO_COLOR;
499
500                         if (ignore || pset_find_ptr(alloc_env->pre_colored, irn)) {
501                                 reg = arch_get_irn_register(irn);
502                                 col = reg->index;
503                                 assert(!bitset_is_set(colors, col) && "pre-colored register must be free");
504                         } else {
505                                 col = get_next_free_reg(alloc_env, colors);
506                                 reg = arch_register_for_index(env->cls, col);
507                                 assert(arch_get_irn_register(irn) == NULL && "This node must not have been assigned a register yet");
508                                 assert(!arch_register_type_is(reg, ignore) && "Must not assign ignore register");
509                         }
510
511                         bitset_set(colors, col);
512                         arch_set_irn_register(irn, reg);
513
514                         DBG((dbg, LEVEL_1, "\tassigning register %s(%d) to %+F\n", arch_register_get_name(reg), col, irn));
515
516                         assert(!bitset_is_set(live, nr) && "Value's definition must not have been encountered");
517                         bitset_set(live, nr);
518                 } else if (!b->is_def) {
519                         /* Clear the color upon a use. */
520                         const arch_register_t *reg = arch_get_irn_register(irn);
521                         int col;
522
523                         assert(reg && "Register must have been assigned");
524
525                         col = arch_register_get_index(reg);
526 #ifndef NDEBUG
527                         if (!arch_register_type_is(reg, ignore)) {
528                                 assert(bitset_is_set(live, nr) && "Cannot have a non live use");
529                         }
530 #endif
531
532                         bitset_clear(colors, col);
533                         bitset_clear(live, nr);
534                 }
535         }
536 }
537
538 void be_ra_chordal_color(be_chordal_env_t *chordal_env)
539 {
540         be_chordal_alloc_env_t env;
541         char buf[256];
542         be_lv_t *lv;
543         const arch_register_class_t *cls = chordal_env->cls;
544
545         int colors_n          = arch_register_class_n_regs(cls);
546         ir_graph *irg         = chordal_env->irg;
547
548         lv = be_assure_liveness(irg);
549         be_liveness_assure_sets(lv);
550         be_liveness_assure_chk(lv);
551
552         assure_doms(irg);
553
554         env.chordal_env   = chordal_env;
555         env.colors_n      = colors_n;
556         env.colors        = bitset_alloca(colors_n);
557         env.tmp_colors    = bitset_alloca(colors_n);
558         env.in_colors     = bitset_alloca(colors_n);
559         env.pre_colored   = pset_new_ptr_default();
560
561         be_timer_push(T_CONSTR);
562
563         /* Handle register targeting constraints */
564         dom_tree_walk_irg(irg, constraints, NULL, &env);
565
566         if (chordal_env->opts->dump_flags & BE_CH_DUMP_CONSTR) {
567                 snprintf(buf, sizeof(buf), "%s-constr", chordal_env->cls->name);
568                 dump_ir_graph(chordal_env->irg, buf);
569         }
570
571         be_timer_pop(T_CONSTR);
572
573         env.live = bitset_malloc(get_irg_last_idx(chordal_env->irg));
574
575         /* First, determine the pressure */
576         dom_tree_walk_irg(irg, create_borders, NULL, env.chordal_env);
577
578         /* Assign the colors */
579         dom_tree_walk_irg(irg, assign, NULL, &env);
580
581         if (chordal_env->opts->dump_flags & BE_CH_DUMP_TREE_INTV) {
582                 plotter_t *plotter;
583                 ir_snprintf(buf, sizeof(buf), "ifg_%s_%F.eps", chordal_env->cls->name, irg);
584                 plotter = new_plotter_ps(buf);
585                 draw_interval_tree(&draw_chordal_def_opts, chordal_env, plotter);
586                 plotter_free(plotter);
587         }
588
589         bitset_free(env.live);
590         del_pset(env.pre_colored);
591 }
592
593 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_chordal);
594 void be_init_chordal(void)
595 {
596         static be_ra_chordal_coloring_t coloring = {
597                 be_ra_chordal_color
598         };
599         FIRM_DBG_REGISTER(dbg, "firm.be.chordal");
600
601         be_register_chordal_coloring("default", &coloring);
602 }