do not use current_ir_graph in irdump.c
[libfirm] / ir / ir / irprofile.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 instrumentation and execution count profiling.
23  * @author      Adam M. Szalkowski
24  * @date        06.04.2006
25  */
26 #ifndef FIRM_BE_BEPROFILE_H
27 #define FIRM_BE_BEPROFILE_H
28
29 #include <stdbool.h>
30 #include "irgraph.h"
31 #include "irnode.h"
32
33 /**
34  * Instruments irgs with profile code
35  *
36  * @param filename  The name of the output file for the profile information
37  * @param flags     Additional flags
38  *
39  * @return The irg doing the profile initialization.
40  */
41 ir_graph *ir_profile_instrument(const char *filename);
42
43 /**
44  * Reads the corresponding profile info file if it exists and returns a
45  * profile info struct
46  * @param filename The name of the file containing profile information
47  */
48 bool ir_profile_read(const char *filename);
49
50 /**
51  * Frees the profile info
52  */
53 void ir_profile_free(void);
54
55 /**
56  * Get block execution count as determined be profiling
57  */
58 unsigned int ir_profile_get_block_execcount(const ir_node *block);
59
60 /**
61  * Initializes exec_freq structure for an irg based on profile data
62  */
63 ir_exec_freq *ir_create_execfreqs_from_profile(ir_graph *irg);
64
65 /**
66  * Tells whether profile module has acquired data
67  */
68 bool ir_profile_has_data(void);
69
70 #endif