fixed some bugs
[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 *in_colors;        /**< Colors used by live in values. */
66         int colors_n;               /**< The number of colors. */
67 } be_chordal_alloc_env_t;
68
69 #include "fourcc.h"
70
71 /* Make a fourcc for border checking. */
72 #define BORDER_FOURCC                           FOURCC('B', 'O', 'R', 'D')
73
74 static void check_border_list(struct list_head *head)
75 {
76   border_t *x;
77   list_for_each_entry(border_t, x, head, list) {
78     assert(x->magic == BORDER_FOURCC);
79   }
80 }
81
82 static void check_heads(be_chordal_env_t *env)
83 {
84   pmap_entry *ent;
85   for(ent = pmap_first(env->border_heads); ent; ent = pmap_next(env->border_heads)) {
86     /* ir_printf("checking border list of block %+F\n", ent->key); */
87     check_border_list(ent->value);
88   }
89 }
90
91
92 /**
93  * Add an interval border to the list of a block's list
94  * of interval border.
95  * @note You always have to create the use before the def.
96  * @param env The environment.
97  * @param head The list head to enqueue the borders.
98  * @param irn The node (value) the border belongs to.
99  * @param pressure The pressure at this point in time.
100  * @param step A time step for the border.
101  * @param is_def Is the border a use or a def.
102  * @return The created border.
103  */
104 static INLINE border_t *border_add(be_chordal_env_t *env, struct list_head *head,
105                         ir_node *irn, unsigned step, unsigned pressure,
106                         unsigned is_def, unsigned is_real)
107 {
108         border_t *b;
109
110         if(!is_def) {
111                 border_t *def;
112
113                 b = obstack_alloc(&env->obst, sizeof(*b));
114
115                 /* also allocate the def and tie it to the use. */
116                 def = obstack_alloc(&env->obst, sizeof(*def));
117                 memset(def, 0, sizeof(*def));
118                 b->other_end = def;
119                 def->other_end = b;
120
121                 /*
122                  * Set the link field of the irn to the def.
123                  * This strongly relies on the fact, that the use is always
124                  * made before the def.
125                  */
126                 set_irn_link(irn, def);
127
128                 b->magic = BORDER_FOURCC;
129                 def->magic = BORDER_FOURCC;
130         }
131
132         /*
133          * If the def is encountered, the use was made and so was the
134          * the def node (see the code above). It was placed into the
135          * link field of the irn, so we can get it there.
136          */
137         else {
138                 b = get_irn_link(irn);
139
140                 assert(b && b->magic == BORDER_FOURCC && "Illegal border encountered");
141         }
142
143         b->pressure = pressure;
144         b->is_def = is_def;
145         b->is_real = is_real;
146         b->irn = irn;
147         b->step = step;
148         list_add_tail(&b->list, head);
149         DBG((env->dbg, LEVEL_5, "\t\t%s adding %+F, step: %d\n", is_def ? "def" : "use", irn, step));
150
151
152         return b;
153 }
154
155 /**
156  * Check, if an irn is of the register class currently under processing.
157  * @param env The chordal environment.
158  * @param irn The node.
159  * @return 1, if the node is of that register class, 0 if not.
160  */
161 static INLINE int has_reg_class(const be_chordal_env_t *env, const ir_node *irn)
162 {
163         // return arch_irn_has_reg_class(env->main_env->arch_env, irn, -1, env->cls);
164         return arch_irn_consider_in_reg_alloc(env->birg->main_env->arch_env, env->cls, irn);
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->birg->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_same == 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->birg->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
342                                 DBG((dbg, LEVEL_2, "\tallowed registers for %+F: %B\n", op->carrier, bs));
343
344                                 bitset_foreach(bs, col)
345                                         bipartite_add(bp, n_alloc, col);
346
347                                 n_alloc++;
348                         }
349                 }
350
351                 if(perm) {
352                         foreach_out_edge(perm, edge) {
353                                 ir_node *proj = get_edge_src_irn(edge);
354
355                                 assert(is_Proj(proj));
356
357                                 if(values_interfere(proj, irn)) {
358                                         assert(n_alloc < n_regs);
359                                         alloc_nodes[n_alloc] = proj;
360                                         pmap_insert(partners, proj, NULL);
361
362                                         bitset_clear_all(bs);
363                                         arch_get_allocatable_regs(aenv, proj, -1, bs);
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;
378
379                         assert(assignment[i] >= 0 && "there must have been a register assigned");
380                         reg = arch_register_for_index(env->cls, assignment[i]);
381
382                         nodes[0] = alloc_nodes[i];
383                         nodes[1] = pmap_get(partners, alloc_nodes[i]);
384
385                         for(j = 0; j < 2; ++j) {
386                                 if(!nodes[j])
387                                         continue;
388
389                                 arch_set_irn_register(aenv, nodes[j], reg);
390                                 pset_hinsert_ptr(alloc_env->pre_colored, nodes[j]);
391                                 DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", nodes[j], reg->name));
392                         }
393                 }
394
395
396                 if(perm) {
397                         bitset_clear_all(bs);
398                         foreach_out_edge(perm, edge) {
399                                 ir_node *proj              = get_edge_src_irn(edge);
400                                 const arch_register_t *reg = arch_get_irn_register(aenv, proj);
401
402                                 if(reg != NULL)
403                                         bitset_set(bs, reg->index);
404                         }
405
406                         // bitset_or(bs, alloc_env->ignore_colors);
407                         foreach_out_edge(perm, edge) {
408                                 ir_node *proj              = get_edge_src_irn(edge);
409                                 const arch_register_t *reg = arch_get_irn_register(aenv, proj);
410
411                                 DBG((dbg, LEVEL_2, "\tchecking reg of %+F: %s\n", proj, reg ? reg->name : "<none>"));
412
413                                 if(reg == NULL) {
414                                         col = bitset_next_clear(bs, 0);
415                                         reg = arch_register_for_index(env->cls, col);
416                                         bitset_set(bs, reg->index);
417                                         arch_set_irn_register(aenv, proj, reg);
418                                         pset_insert_ptr(alloc_env->pre_colored, proj);
419                                         DBG((dbg, LEVEL_2, "\tsetting %+F to register %s\n", proj, reg->name));
420                                 }
421                         }
422                 }
423
424                 pmap_destroy(partners);
425         }
426
427         obstack_free(&env->obst, base);
428         return res;
429 }
430
431 /**
432  * Handle constraint nodes in each basic block.
433  * be_insert_constr_perms() inserts Perm nodes which perm
434  * over all values live at the constrained node right in front
435  * of the constrained node. These Perms signal a constrained node.
436  * For further comments, refer to handle_constraints_at_perm().
437  */
438 static void constraints(ir_node *bl, void *data)
439 {
440         firm_dbg_module_t *dbg      = firm_dbg_register("firm.be.chordal.constr");
441         be_chordal_alloc_env_t *env = data;
442         arch_env_t *arch_env        = env->chordal_env->birg->main_env->arch_env;
443         ir_node *irn;
444
445         for(irn = sched_first(bl); !sched_is_end(irn);) {
446                 irn = handle_constraints(env, irn);
447         }
448 }
449
450 /**
451  * Annotate the register pressure to the nodes and compute
452  * the liveness intervals.
453  * @param block The block to do it for.
454  * @param env_ptr The environment.
455  */
456 static void pressure(ir_node *block, void *env_ptr)
457 {
458 /* Convenience macro for a def */
459 #define border_def(irn, step, real) \
460         border_add(env, head, irn, step, pressure--, 1, real)
461
462 /* Convenience macro for a use */
463 #define border_use(irn, step, real) \
464         border_add(env, head, irn, step, ++pressure, 0, real)
465
466         be_chordal_alloc_env_t *alloc_env = env_ptr;
467         be_chordal_env_t *env             = alloc_env->chordal_env;
468         const arch_env_t *arch_env        = env->birg->main_env->arch_env;
469         bitset_t *live                    = alloc_env->live;
470         firm_dbg_module_t *dbg            = env->dbg;
471         ir_node *irn;
472
473         int i, n;
474         unsigned step = 0;
475         unsigned pressure = 0;
476         struct list_head *head;
477         pset *live_in = put_live_in(block, pset_new_ptr_default());
478         pset *live_end = put_live_end(block, pset_new_ptr_default());
479
480         DBG((dbg, LEVEL_1, "Computing pressure in block %+F\n", block));
481         bitset_clear_all(live);
482
483         /* Set up the border list in the block info */
484         head = obstack_alloc(&env->obst, sizeof(*head));
485         INIT_LIST_HEAD(head);
486         assert(pmap_get(env->border_heads, block) == NULL);
487         pmap_insert(env->border_heads, block, head);
488
489         /*
490          * Make final uses of all values live out of the block.
491          * They are necessary to build up real intervals.
492          */
493         for(irn = pset_first(live_end); irn; irn = pset_next(live_end)) {
494                 if(has_reg_class(env, irn)) {
495                         DBG((dbg, LEVEL_3, "\tMaking live: %+F/%d\n", irn, get_irn_graph_nr(irn)));
496                         bitset_set(live, get_irn_graph_nr(irn));
497                         border_use(irn, step, 0);
498                 }
499         }
500         ++step;
501
502         /*
503          * Determine the last uses of a value inside the block, since they are
504          * relevant for the interval borders.
505          */
506         sched_foreach_reverse(block, irn) {
507                 DBG((dbg, LEVEL_1, "\tinsn: %+F, pressure: %d\n", irn, pressure));
508                 DBG((dbg, LEVEL_2, "\tlive: %b\n", live));
509
510                 /*
511                  * If the node defines some value, which can put into a
512                  * register of the current class, make a border for it.
513                  */
514                 if(has_reg_class(env, irn)) {
515                         int nr = get_irn_graph_nr(irn);
516
517                         bitset_clear(live, nr);
518                         border_def(irn, step, 1);
519                 }
520
521                 /*
522                  * If the node is no phi node we can examine the uses.
523                  */
524                 if(!is_Phi(irn)) {
525                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
526                                 ir_node *op = get_irn_n(irn, i);
527
528                                 if(has_reg_class(env, op)) {
529                                         int nr = get_irn_graph_nr(op);
530
531                                         DBG((dbg, LEVEL_4, "\t\tpos: %d, use: %+F\n", i, op));
532
533                                         if(!bitset_is_set(live, nr)) {
534                                                 border_use(op, step, 1);
535                                                 bitset_set(live, nr);
536                                         }
537                                 }
538                         }
539                 }
540                 ++step;
541         }
542
543         /*
544          * Add initial defs for all values live in.
545          */
546         for(irn = pset_first(live_in); irn; irn = pset_next(live_in)) {
547                 if(has_reg_class(env, irn)) {
548
549                         /* Mark the value live in. */
550                         bitset_set(live, get_irn_graph_nr(irn));
551
552                         /* Add the def */
553                         border_def(irn, step, 0);
554                 }
555         }
556
557
558   del_pset(live_in);
559   del_pset(live_end);
560 }
561
562 static void assign(ir_node *block, void *env_ptr)
563 {
564         be_chordal_alloc_env_t *alloc_env = env_ptr;
565         be_chordal_env_t *env       = alloc_env->chordal_env;
566         firm_dbg_module_t *dbg      = env->dbg;
567         bitset_t *live              = alloc_env->live;
568         bitset_t *colors            = alloc_env->colors;
569         bitset_t *in_colors         = alloc_env->in_colors;
570         const arch_env_t *arch_env  = env->birg->main_env->arch_env;
571
572         const ir_node *irn;
573         border_t *b;
574         struct list_head *head = get_block_border_head(env, block);
575         pset *live_in = put_live_in(block, pset_new_ptr_default());
576
577         bitset_clear_all(colors);
578         bitset_clear_all(live);
579         bitset_clear_all(in_colors);
580
581         DBG((dbg, LEVEL_4, "Assigning colors for block %+F\n", block));
582         DBG((dbg, LEVEL_4, "\tusedef chain for block\n"));
583         list_for_each_entry(border_t, b, head, list) {
584                 DBG((dbg, LEVEL_4, "\t%s %+F/%d\n", b->is_def ? "def" : "use",
585                                         b->irn, get_irn_graph_nr(b->irn)));
586         }
587
588         /*
589          * Add initial defs for all values live in.
590          * Since their colors have already been assigned (The dominators were
591          * allocated before), we have to mark their colors as used also.
592          */
593         for(irn = pset_first(live_in); irn; irn = pset_next(live_in)) {
594                 if(has_reg_class(env, irn)) {
595                         const arch_register_t *reg = arch_get_irn_register(arch_env, irn);
596                         int col;
597
598                         assert(reg && "Node must have been assigned a register");
599                         col = arch_register_get_index(reg);
600
601                         /* Mark the color of the live in value as used. */
602                         bitset_set(colors, col);
603                         bitset_set(in_colors, col);
604
605                         /* Mark the value live in. */
606                         bitset_set(live, get_irn_graph_nr(irn));
607                 }
608         }
609
610         /*
611          * Mind that the sequence
612          * of defs from back to front defines a perfect
613          * elimination order. So, coloring the definitions from first to last
614          * will work.
615          */
616         list_for_each_entry_reverse(border_t, b, head, list) {
617                 ir_node *irn = b->irn;
618                 int nr = get_irn_graph_nr(irn);
619
620                 /*
621                  * Assign a color, if it is a local def. Global defs already have a
622                  * color.
623                  */
624                 if(b->is_def && !is_live_in(block, irn)) {
625                         const arch_register_t *reg;
626                         int col = NO_COLOR;
627
628                         if(pset_find_ptr(alloc_env->pre_colored, irn)) {
629                                 reg = arch_get_irn_register(arch_env, irn);
630                                 col = reg->index;
631                                 assert(!bitset_is_set(colors, col) && "pre-colored register must be free");
632                         }
633
634                         else {
635                                 col = bitset_next_clear(colors, 0);
636                                 reg = arch_register_for_index(env->cls, col);
637                                 assert(arch_get_irn_register(arch_env, irn) == NULL && "This node must not have been assigned a register yet");
638                         }
639
640                         bitset_set(colors, col);
641                         arch_set_irn_register(arch_env, irn, reg);
642
643                         DBG((dbg, LEVEL_1, "\tassigning register %s(%d) to %+F\n",
644             arch_register_get_name(reg), col, irn));
645
646                         assert(!bitset_is_set(live, nr) && "Value's definition must not have been encountered");
647                         bitset_set(live, nr);
648                 }
649
650                 /* Clear the color upon a use. */
651                 else if(!b->is_def) {
652                         const arch_register_t *reg = arch_get_irn_register(arch_env, irn);
653                         int col;
654
655                         assert(reg && "Register must have been assigned");
656
657                         col = arch_register_get_index(reg);
658                         assert(bitset_is_set(live, nr) && "Cannot have a non live use");
659
660                         bitset_clear(colors, col);
661                         bitset_clear(live, nr);
662                 }
663         }
664
665         del_pset(live_in);
666 }
667
668 void be_ra_chordal_color(be_chordal_env_t *chordal_env)
669 {
670         be_chordal_alloc_env_t env;
671         char buf[256];
672
673         int colors_n          = arch_register_class_n_regs(chordal_env->cls);
674         ir_graph *irg         = chordal_env->irg;
675
676
677         if(get_irg_dom_state(irg) != dom_consistent)
678                 compute_doms(irg);
679
680         env.chordal_env   = chordal_env;
681         env.colors_n      = colors_n;
682         env.colors        = bitset_malloc(colors_n);
683         env.in_colors     = bitset_malloc(colors_n);
684         env.pre_colored   = pset_new_ptr_default();
685
686         /* Handle register targeting constraints */
687         dom_tree_walk_irg(irg, constraints, NULL, &env);
688
689         if(chordal_env->opts->dump_flags & BE_CH_DUMP_CONSTR) {
690                 snprintf(buf, sizeof(buf), "-%s-constr", chordal_env->cls->name);
691                 dump_ir_block_graph_sched(chordal_env->irg, buf);
692         }
693
694         be_numbering(irg);
695         env.live = bitset_malloc(get_graph_node_count(chordal_env->irg));
696
697         /* First, determine the pressure */
698         dom_tree_walk_irg(irg, pressure, NULL, &env);
699
700         /* Assign the colors */
701         dom_tree_walk_irg(irg, assign, NULL, &env);
702
703         be_numbering_done(irg);
704
705         if(chordal_env->opts->dump_flags & BE_CH_DUMP_TREE_INTV) {
706         plotter_t *plotter;
707                 ir_snprintf(buf, sizeof(buf), "ifg_%s_%F.eps", chordal_env->cls->name, irg);
708         plotter = new_plotter_ps(buf);
709         draw_interval_tree(&draw_chordal_def_opts, chordal_env, plotter);
710         plotter_free(plotter);
711         }
712
713         free(env.live);
714         free(env.colors);
715         free(env.in_colors);
716         del_pset(env.pre_colored);
717 }