Dump partitions before adding them to the worklist.
[libfirm] / ir / be / bedump.h
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       Code for dumping backend datastructures (i.e. interference graphs)
23  * @author      Matthias Braun
24  */
25 #ifndef FIRM_BE_BEDUMP_H
26 #define FIRM_BE_BEDUMP_H
27
28 #include <stdio.h>
29 #include <stdbool.h>
30 #include "firm_types.h"
31 #include "be_types.h"
32
33 /**
34  * Dump interference graph
35  */
36 void be_dump_ifg(FILE *F, ir_graph *irg, const be_ifg_t *ifg);
37
38 /**
39  * Dump interference graph with affinity edges as calculated by a
40  * copy-minimisation phase
41  */
42 void be_dump_ifg_co(FILE *F, const copy_opt_t *co,
43                     bool dump_costs, bool dump_colors);
44
45 /**
46  * Dump the liveness information for a graph.
47  * @param f The output.
48  * @param irg The graph.
49  */
50 void be_liveness_dump(FILE *F, const be_lv_t *lv);
51
52 /**
53  * node_info hook that dumps liveness for blocks
54  */
55 void be_dump_liveness_block(void *context, FILE *F, const ir_node *block);
56
57 #endif