Re-implemented constraint coloring
[libfirm] / ir / be / bechordal.c
1 /**
2  * Chordal register allocation.
3  * @author Sebastian Hack
4  * @date 8.12.2004
5  *
6  * Copyright (C) Universitaet Karlsruhe
7  * Released under the GPL
8  */
9
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13
14 #ifdef HAVE_MALLOC_H
15 #include <malloc.h>
16 #endif
17
18 #ifdef HAVE_ALLOCA_H
19 #include <alloca.h>
20 #endif
21
22 #include <ctype.h>
23
24 #include "obst.h"
25 #include "pset.h"
26 #include "list.h"
27 #include "bitset.h"
28 #include "iterator.h"
29 #include "bipartite.h"
30
31 #include "irmode_t.h"
32 #include "irgraph_t.h"
33 #include "irprintf_t.h"
34 #include "irgwalk.h"
35 #include "irdump.h"
36 #include "irdom.h"
37 #include "debug.h"
38 #include "xmalloc.h"
39
40 #include "beutil.h"
41 #include "besched.h"
42 #include "benumb_t.h"
43 #include "besched_t.h"
44 #include "belive_t.h"
45 #include "benode_t.h"
46 #include "bearch.h"
47 #include "beifg.h"
48
49 #include "bechordal_t.h"
50 #include "bechordal_draw.h"
51
52 #define DBG_LEVEL SET_LEVEL_0
53 #define DBG_LEVEL_CHECK SET_LEVEL_0
54
55 #define NO_COLOR (-1)
56
57 #define DUMP_INTERVALS
58
59 typedef struct _be_chordal_alloc_env_t {
60         be_chordal_env_t *chordal_env;
61
62         pset *pre_colored;    /**< Set of precolored nodes. */
63         bitset_t *live;                         /**< A liveness bitset. */
64         bitset_t *colors;                       /**< The color mask. */
65         bitset_t *ignore_colors;        /**< A mask of colors which shall be not used in allocation (ignored). */
66         bitset_t *in_colors;        /**< Colors used by live in values. */
67         int colors_n;               /**< The number of colors. */
68 } be_chordal_alloc_env_t;
69
70 #include "fourcc.h"
71
72 /* Make a fourcc for border checking. */
73 #define BORDER_FOURCC                           FOURCC('B', 'O', 'R', 'D')
74
75 static void check_border_list(struct list_head *head)
76 {
77   border_t *x;
78   list_for_each_entry(border_t, x, head, list) {
79     assert(x->magic == BORDER_FOURCC);
80   }
81 }
82
83 static void check_heads(be_chordal_env_t *env)
84 {
85   pmap_entry *ent;
86   for(ent = pmap_first(env->border_heads); ent; ent = pmap_next(env->border_heads)) {
87     /* ir_printf("checking border list of block %+F\n", ent->key); */
88     check_border_list(ent->value);
89   }
90 }
91
92
93 /**
94  * Add an interval border to the list of a block's list
95  * of interval border.
96  * @note You always have to create the use before the def.
97  * @param env The environment.
98  * @param head The list head to enqueue the borders.
99  * @param irn The node (value) the border belongs to.
100  * @param pressure The pressure at this point in time.
101  * @param step A time step for the border.
102  * @param is_def Is the border a use or a def.
103  * @return The created border.
104  */
105 static INLINE border_t *border_add(be_chordal_env_t *env, struct list_head *head,
106                         ir_node *irn, unsigned step, unsigned pressure,
107                         unsigned is_def, unsigned is_real)
108 {
109         border_t *b;
110
111         if(!is_def) {
112                 border_t *def;
113
114                 b = obstack_alloc(&env->obst, sizeof(*b));
115
116                 /* also allocate the def and tie it to the use. */
117                 def = obstack_alloc(&env->obst, sizeof(*def));
118                 memset(def, 0, sizeof(*def));
119                 b->other_end = def;
120                 def->other_end = b;
121
122                 /*
123                  * Set the link field of the irn to the def.
124                  * This strongly relies on the fact, that the use is always
125                  * made before the def.
126                  */
127                 set_irn_link(irn, def);
128
129                 b->magic = BORDER_FOURCC;
130                 def->magic = BORDER_FOURCC;
131         }
132
133         /*
134          * If the def is encountered, the use was made and so was the
135          * the def node (see the code above). It was placed into the
136          * link field of the irn, so we can get it there.
137          */
138         else {
139                 b = get_irn_link(irn);
140
141                 assert(b && b->magic == BORDER_FOURCC && "Illegal border encountered");
142         }
143
144         b->pressure = pressure;
145         b->is_def = is_def;
146         b->is_real = is_real;
147         b->irn = irn;
148         b->step = step;
149         list_add_tail(&b->list, head);
150         DBG((env->dbg, LEVEL_5, "\t\t%s adding %+F, step: %d\n", is_def ? "def" : "use", irn, step));
151
152
153         return b;
154 }
155
156 /**
157  * Check, if an irn is of the register class currently under processing.
158  * @param env The chordal environment.
159  * @param irn The node.
160  * @return 1, if the node is of that register class, 0 if not.
161  */
162 static INLINE int has_reg_class(const be_chordal_env_t *env, const ir_node *irn)
163 {
164   return arch_irn_has_reg_class(env->main_env->arch_env, irn, -1, env->cls);
165 }
166
167 #define has_limited_constr(req, irn) \
168         (arch_get_register_req(arch_env, (req), irn, -1) && (req)->type == arch_register_req_type_limited)
169
170 typedef struct _operand_t operand_t;
171
172 struct _operand_t {
173         ir_node *irn;
174         ir_node *carrier;
175         operand_t *partner;
176         int pos;
177         arch_register_req_t req;
178 };
179
180 typedef struct {
181         operand_t *ops;
182         int n_ops;
183         int use_start;
184         ir_node *next_insn;
185         unsigned has_constraints : 1;
186 } insn_t;
187
188 static insn_t *scan_insn(be_chordal_env_t *env, ir_node *irn, struct obstack *obst)
189 {
190         const arch_env_t *arch_env = env->main_env->arch_env;
191         operand_t o;
192         insn_t *insn;
193         int i, n;
194
195         insn = obstack_alloc(obst, sizeof(insn[0]));
196         memset(insn, 0, sizeof(insn[0]));
197
198         insn->next_insn = sched_next(irn);
199         if(get_irn_mode(irn) == mode_T) {
200                 ir_node *p;
201
202                 for(p = sched_next(irn); is_Proj(p); p = sched_next(p)) {
203                         if(arch_irn_consider_in_reg_alloc(arch_env, env->cls, p)) {
204                                 o.carrier = p;
205                                 o.irn     = irn;
206                                 o.pos     = -(get_Proj_proj(p) + 1);
207                                 o.partner = NULL;
208                                 arch_get_register_req(arch_env, &o.req, p, -1);
209                                 obstack_grow(obst, &o, sizeof(o));
210                                 insn->n_ops++;
211                                 insn->has_constraints |= arch_register_req_is(&o.req, limited);
212                         }
213                 }
214
215                 insn->next_insn = p;
216         }
217
218         else if(arch_irn_consider_in_reg_alloc(arch_env, env->cls, irn)) {
219                 o.carrier = irn;
220                 o.irn     = irn;
221                 o.pos     = -1;
222                 o.partner = NULL;
223                 arch_get_register_req(arch_env, &o.req, irn, -1);
224                 obstack_grow(obst, &o, sizeof(o));
225                 insn->n_ops++;
226                 insn->has_constraints |= arch_register_req_is(&o.req, limited);
227         }
228
229         insn->use_start = insn->n_ops;
230
231         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
232                 ir_node *op = get_irn_n(irn, i);
233
234                 if(arch_irn_consider_in_reg_alloc(arch_env, env->cls, op)) {
235                         o.carrier = op;
236                         o.irn     = irn;
237                         o.pos     = i;
238                         o.partner = NULL;
239                         arch_get_register_req(arch_env, &o.req, irn, i);
240                         obstack_grow(obst, &o, sizeof(o));
241                         insn->n_ops++;
242                         insn->has_constraints |= arch_register_req_is(&o.req, limited);
243                 }
244         }
245
246         insn->ops = obstack_finish(obst);
247         return insn;
248 }
249
250 static operand_t *find_unpaired_use(insn_t *insn, const operand_t *op, int can_be_constrained)
251 {
252         int i;
253         operand_t *res = NULL;
254
255         for(i = insn->use_start; i < insn->n_ops; ++i) {
256                 operand_t *op = &insn->ops[i];
257                 int has_constraint = arch_register_req_is(&op->req, limited);
258
259                 if(!values_interfere(op->carrier, op->irn) && !op->partner && (!has_constraint || can_be_constrained)) {
260                         if(arch_register_req_is(&op->req, should_be_same) && op->req.other == op->carrier)
261                                 return op;
262                         else
263                                 res = op;
264                 }
265         }
266
267         return res;
268 }
269
270 static void pair_up_operands(insn_t *insn)
271 {
272         firm_dbg_module_t *dbg = firm_dbg_register("firm.be.chordal.constr");
273         int i;
274
275         for(i = 0; i < insn->use_start; ++i) {
276                 operand_t *op      = &insn->ops[i];
277                 int has_constraint = arch_register_req_is(&op->req, limited);
278                 operand_t *partner = find_unpaired_use(insn, op, !has_constraint);
279
280                 if(partner) {
281                         op->partner = partner;
282                         partner->partner = op;
283                 }
284         }
285 }
286
287 static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env, ir_node *irn)
288 {
289         be_chordal_env_t *env  = alloc_env->chordal_env;
290         void *base             = obstack_base(&env->obst);
291         insn_t *insn           = scan_insn(env, irn, &env->obst);
292         ir_node *res           = insn->next_insn;
293
294         if(insn->has_constraints) {
295                 firm_dbg_module_t *dbg = firm_dbg_register("firm.be.chordal.constr");
296                 const arch_env_t *aenv = env->main_env->arch_env;
297                 int n_regs             = env->cls->n_regs;
298                 bitset_t *bs           = bitset_alloca(n_regs);
299                 ir_node **alloc_nodes  = alloca(n_regs * sizeof(alloc_nodes[0]));
300                 bipartite_t *bp        = bipartite_new(n_regs, n_regs);
301                 int *assignment        = alloca(n_regs * sizeof(assignment[0]));
302                 pmap *partners         = pmap_create();
303
304                 int i, n_alloc;
305                 long col;
306                 const ir_edge_t *edge;
307                 ir_node *perm = insert_Perm_after(aenv, env->cls, env->dom_front, sched_prev(irn));
308
309                 /* Registers are propagated by insert_Perm_after(). Clean them here! */
310                 if(perm) {
311                         foreach_out_edge(perm, edge) {
312                                 ir_node *proj = get_edge_src_irn(edge);
313                                 arch_set_irn_register(aenv, proj, NULL);
314                         }
315                 }
316
317
318                 be_liveness(env->irg);
319                 insn = scan_insn(env, irn, &env->obst);
320
321                 DBG((dbg, LEVEL_1, "handling constraints for %+F\n", irn));
322
323                 /*
324                  * If there was no Perm made, nothing was alive in this register class.
325                  * This means, that the node has no operands, thus no input constraints.
326                  * so it had output constraints. The other results then can be assigned freeliy.
327                  */
328
329                 pair_up_operands(insn);
330
331                 for(i = 0, n_alloc = 0; i < insn->n_ops; ++i) {
332                         operand_t *op = &insn->ops[i];
333                         if(arch_register_req_is(&op->req, limited)) {
334                                 pmap_insert(partners, op->carrier, op->partner ? op->partner->carrier : NULL);
335                                 alloc_nodes[n_alloc] = op->carrier;
336
337                                 DBG((dbg, LEVEL_2, "\tassociating %+F and %+F\n", op->carrier, pmap_get(partners, op->carrier)));
338
339                                 bitset_clear_all(bs);
340                                 op->req.limited(op->req.limited_env, bs);
341                                 bitset_andnot(bs, alloc_env->ignore_colors);
342
343                                 bitset_foreach(bs, col)
344                                         bipartite_add(bp, n_alloc, col);
345
346                                 n_alloc++;
347                         }
348                 }
349
350                 if(perm) {
351                         foreach_out_edge(perm, edge) {
352                                 ir_node *proj = get_edge_src_irn(edge);
353
354                                 assert(is_Proj(proj));
355
356                                 if(values_interfere(proj, irn)) {
357                                         assert(n_alloc < n_regs);
358                                         alloc_nodes[n_alloc] = proj;
359                                         pmap_insert(partners, proj, NULL);
360
361                                         bitset_clear_all(bs);
362                                         arch_get_allocatable_regs(aenv, proj, -1, bs);
363                                         bitset_andnot(bs, alloc_env->ignore_colors);
364                                         bitset_foreach(bs, col)
365                                                 bipartite_add(bp, n_alloc, col);
366
367                                         n_alloc++;
368                                 }
369                         }
370                 }
371
372                 bipartite_matching(bp, assignment);
373
374                 for(i = 0; i < n_alloc; ++i) {
375                         int j;
376                         ir_node *nodes[2];
377                         const arch_register_t *reg = arch_register_for_index(env->cls, assignment[i]);
378
379                         nodes[0] = alloc_nodes[i];
380                         nodes[1] = pmap_get(partners, alloc_nodes[i]);
381
382                         for(j = 0; j < 2; ++j) {
383                                 if(!nodes[j])
384                                         continue;
385
386                                 arch_set_irn_register(aenv, nodes[j], reg);
387                                 pset_hinsert_ptr(alloc_env->pre_colored, nodes[j]);
388                                 DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", nodes[j], reg->name));
389                         }
390                 }
391
392
393                 if(perm) {
394                         bitset_clear_all(bs);
395                         foreach_out_edge(perm, edge) {
396                                 ir_node *proj              = get_edge_src_irn(edge);
397                                 const arch_register_t *reg = arch_get_irn_register(aenv, proj);
398
399                                 if(reg != NULL)
400                                         bitset_set(bs, reg->index);
401                         }
402
403                         // bitset_or(bs, alloc_env->ignore_colors);
404                         foreach_out_edge(perm, edge) {
405                                 ir_node *proj              = get_edge_src_irn(edge);
406                                 const arch_register_t *reg = arch_get_irn_register(aenv, proj);
407
408                                 DBG((dbg, LEVEL_2, "\tchecking reg of %+F: %s\n", proj, reg ? reg->name : "<none>"));
409
410                                 if(reg == NULL) {
411                                         col = bitset_next_clear(bs, 0);
412                                         reg = arch_register_for_index(env->cls, col);
413                                         bitset_set(bs, reg->index);
414                                         arch_set_irn_register(aenv, proj, reg);
415                                         pset_insert_ptr(alloc_env->pre_colored, proj);
416                                         DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", proj, reg->name));
417                                 }
418                         }
419                 }
420
421                 pmap_destroy(partners);
422         }
423
424         obstack_free(&env->obst, base);
425         return res;
426 }
427
428 /**
429  * Handle constraint nodes in each basic block.
430  * be_insert_constr_perms() inserts Perm nodes which perm
431  * over all values live at the constrained node right in front
432  * of the constrained node. These Perms signal a constrained node.
433  * For further comments, refer to handle_constraints_at_perm().
434  */
435 static void constraints(ir_node *bl, void *data)
436 {
437         firm_dbg_module_t *dbg      = firm_dbg_register("firm.be.chordal.constr");
438         be_chordal_alloc_env_t *env = data;
439         arch_env_t *arch_env        = env->chordal_env->main_env->arch_env;
440         ir_node *irn;
441
442         for(irn = sched_first(bl); !sched_is_end(irn);) {
443                 irn = handle_constraints(env, irn);
444         }
445 }
446
447 /**
448  * Annotate the register pressure to the nodes and compute
449  * the liveness intervals.
450  * @param block The block to do it for.
451  * @param env_ptr The environment.
452  */
453 static void pressure(ir_node *block, void *env_ptr)
454 {
455 /* Convenience macro for a def */
456 #define border_def(irn, step, real) \
457         border_add(env, head, irn, step, pressure--, 1, real)
458
459 /* Convenience macro for a use */
460 #define border_use(irn, step, real) \
461         border_add(env, head, irn, step, ++pressure, 0, real)
462
463         be_chordal_alloc_env_t *alloc_env = env_ptr;
464         be_chordal_env_t *env             = alloc_env->chordal_env;
465         bitset_t *live                    = alloc_env->live;
466         firm_dbg_module_t *dbg            = env->dbg;
467         ir_node *irn;
468
469         int i, n;
470         unsigned step = 0;
471         unsigned pressure = 0;
472         struct list_head *head;
473         pset *live_in = put_live_in(block, pset_new_ptr_default());
474         pset *live_end = put_live_end(block, pset_new_ptr_default());
475
476         DBG((dbg, LEVEL_1, "Computing pressure in block %+F\n", block));
477         bitset_clear_all(live);
478
479         /* Set up the border list in the block info */
480         head = obstack_alloc(&env->obst, sizeof(*head));
481         INIT_LIST_HEAD(head);
482         assert(pmap_get(env->border_heads, block) == NULL);
483         pmap_insert(env->border_heads, block, head);
484
485         /*
486          * Make final uses of all values live out of the block.
487          * They are necessary to build up real intervals.
488          */
489         for(irn = pset_first(live_end); irn; irn = pset_next(live_end)) {
490                 if(has_reg_class(env, irn)) {
491                         DBG((dbg, LEVEL_3, "\tMaking live: %+F/%d\n", irn, get_irn_graph_nr(irn)));
492                         bitset_set(live, get_irn_graph_nr(irn));
493                         border_use(irn, step, 0);
494                 }
495         }
496         ++step;
497
498         /*
499          * Determine the last uses of a value inside the block, since they are
500          * relevant for the interval borders.
501          */
502         sched_foreach_reverse(block, irn) {
503                 DBG((dbg, LEVEL_1, "\tinsn: %+F, pressure: %d\n", irn, pressure));
504                 DBG((dbg, LEVEL_2, "\tlive: %b\n", live));
505
506                 /*
507                  * If the node defines some value, which can put into a
508                  * register of the current class, make a border for it.
509                  */
510                 if(has_reg_class(env, irn)) {
511                         int nr = get_irn_graph_nr(irn);
512
513                         bitset_clear(live, nr);
514                         border_def(irn, step, 1);
515                 }
516
517                 /*
518                  * If the node is no phi node we can examine the uses.
519                  */
520                 if(!is_Phi(irn)) {
521                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
522                                 ir_node *op = get_irn_n(irn, i);
523
524                                 if(has_reg_class(env, op)) {
525                                         int nr = get_irn_graph_nr(op);
526
527                                         DBG((dbg, LEVEL_4, "\t\tpos: %d, use: %+F\n", i, op));
528
529                                         if(!bitset_is_set(live, nr)) {
530                                                 border_use(op, step, 1);
531                                                 bitset_set(live, nr);
532                                         }
533                                 }
534                         }
535                 }
536                 ++step;
537         }
538
539         /*
540          * Add initial defs for all values live in.
541          */
542         for(irn = pset_first(live_in); irn; irn = pset_next(live_in)) {
543                 if(has_reg_class(env, irn)) {
544
545                         /* Mark the value live in. */
546                         bitset_set(live, get_irn_graph_nr(irn));
547
548                         /* Add the def */
549                         border_def(irn, step, 0);
550                 }
551         }
552
553
554   del_pset(live_in);
555   del_pset(live_end);
556 }
557
558 static void assign(ir_node *block, void *env_ptr)
559 {
560         be_chordal_alloc_env_t *alloc_env = env_ptr;
561         be_chordal_env_t *env       = alloc_env->chordal_env;
562         firm_dbg_module_t *dbg      = env->dbg;
563         bitset_t *live              = alloc_env->live;
564         bitset_t *colors            = alloc_env->colors;
565         bitset_t *in_colors         = alloc_env->in_colors;
566         const arch_env_t *arch_env  = env->main_env->arch_env;
567
568         const ir_node *irn;
569         border_t *b;
570         struct list_head *head = get_block_border_head(env, block);
571         pset *live_in = put_live_in(block, pset_new_ptr_default());
572
573         bitset_clear_all(live);
574         bitset_clear_all(colors);
575         bitset_clear_all(in_colors);
576
577         DBG((dbg, LEVEL_4, "Assigning colors for block %+F\n", block));
578         DBG((dbg, LEVEL_4, "\tusedef chain for block\n"));
579         list_for_each_entry(border_t, b, head, list) {
580                 DBG((dbg, LEVEL_4, "\t%s %+F/%d\n", b->is_def ? "def" : "use",
581                                         b->irn, get_irn_graph_nr(b->irn)));
582         }
583
584         /*
585          * Add initial defs for all values live in.
586          * Since their colors have already been assigned (The dominators were
587          * allocated before), we have to mark their colors as used also.
588          */
589         for(irn = pset_first(live_in); irn; irn = pset_next(live_in)) {
590                 if(has_reg_class(env, irn)) {
591                         const arch_register_t *reg = arch_get_irn_register(arch_env, irn);
592                         int col;
593
594                         assert(reg && "Node must have been assigned a register");
595                         col = arch_register_get_index(reg);
596
597                         /* Mark the color of the live in value as used. */
598                         bitset_set(colors, col);
599                         bitset_set(in_colors, col);
600
601                         /* Mark the value live in. */
602                         bitset_set(live, get_irn_graph_nr(irn));
603                 }
604         }
605
606         /*
607          * Mind that the sequence of defs from back to front defines a perfect
608          * elimination order. So, coloring the definitions from first to last
609          * will work.
610          */
611         list_for_each_entry_reverse(border_t, b, head, list) {
612                 ir_node *irn = b->irn;
613                 int nr = get_irn_graph_nr(irn);
614
615                 /*
616                  * Assign a color, if it is a local def. Global defs already have a
617                  * color.
618                  */
619                 if(b->is_def && !is_live_in(block, irn)) {
620                         const arch_register_t *reg;
621                         int col = NO_COLOR;
622
623                         if(pset_find_ptr(alloc_env->pre_colored, irn)) {
624                                 reg = arch_get_irn_register(arch_env, irn);
625                                 col = reg->index;
626                                 assert(!bitset_is_set(colors, col) && "pre-colored register must be free");
627                         }
628
629                         else {
630                                 col = bitset_next_clear(colors, 0);
631                                 reg = arch_register_for_index(env->cls, col);
632                                 assert(arch_get_irn_register(arch_env, irn) == NULL && "This node must not have been assigned a register yet");
633                         }
634
635                         bitset_set(colors, col);
636                         arch_set_irn_register(arch_env, irn, reg);
637
638                         DBG((dbg, LEVEL_1, "\tassigning register %s(%d) to %+F\n",
639             arch_register_get_name(reg), col, irn));
640
641                         assert(!bitset_is_set(live, nr) && "Value's definition must not have been encountered");
642                         bitset_set(live, nr);
643                 }
644
645                 /* Clear the color upon a use. */
646                 else if(!b->is_def) {
647                         const arch_register_t *reg = arch_get_irn_register(arch_env, irn);
648                         int col;
649
650                         assert(reg && "Register must have been assigned");
651
652                         col = arch_register_get_index(reg);
653                         assert(bitset_is_set(live, nr) && "Cannot have a non live use");
654
655                         bitset_clear(colors, col);
656                         bitset_clear(live, nr);
657                 }
658         }
659
660         del_pset(live_in);
661 }
662
663
664
665 void be_ra_chordal_color(be_chordal_env_t *chordal_env)
666 {
667         int i;
668         int colors_n          = arch_register_class_n_regs(chordal_env->cls);
669         ir_graph *irg         = chordal_env->irg;
670
671         be_chordal_alloc_env_t env;
672
673         if(get_irg_dom_state(irg) != dom_consistent)
674                 compute_doms(irg);
675
676         env.chordal_env   = chordal_env;
677         env.colors_n      = colors_n;
678         env.colors        = bitset_malloc(colors_n);
679         env.ignore_colors = bitset_malloc(colors_n);
680         env.in_colors     = bitset_malloc(colors_n);
681         env.pre_colored   = pset_new_ptr_default();
682
683         bitset_clear_all(env.ignore_colors);
684 #if 0
685         for(i = 0; i < chordal_env->cls->n_regs; ++i) {
686                 const arch_register_t *reg = &chordal_env->cls->regs[i];
687                 if(arch_register_type_is(reg, ignore))
688                         bitset_set(env.ignore_colors, reg->index);
689         }
690 #endif
691
692         /* Handle register targeting constraints */
693         dom_tree_walk_irg(irg, constraints, NULL, &env);
694
695         {
696                 char buf[128];
697                 snprintf(buf, sizeof(buf), "-%s-constr", chordal_env->cls->name);
698                 dump_ir_block_graph_sched(chordal_env->irg, buf);
699         }
700
701         be_numbering(irg);
702         env.live = bitset_malloc(get_graph_node_count(chordal_env->irg));
703
704         /* First, determine the pressure */
705         dom_tree_walk_irg(irg, pressure, NULL, &env);
706
707         /* Assign the colors */
708         dom_tree_walk_irg(irg, assign, NULL, &env);
709
710         be_numbering_done(irg);
711
712 #ifdef DUMP_INTERVALS
713         {
714                 char buf[128];
715         plotter_t *plotter;
716
717                 ir_snprintf(buf, sizeof(buf), "ifg_%s_%F.eps", chordal_env->cls->name, irg);
718         plotter = new_plotter_ps(buf);
719
720         draw_interval_tree(&draw_chordal_def_opts, chordal_env, plotter);
721         plotter_free(plotter);
722         }
723 #endif
724
725         free(env.live);
726         free(env.colors);
727         free(env.in_colors);
728         free(env.ignore_colors);
729
730         del_pset(env.pre_colored);
731 }