f6041f05d2f1fe8710457b010fc8626af3779fa6
[libfirm] / ir / be / bestat.h
1 #ifndef _BESTAT_H_
2 #define _BESTAT_H_
3
4 #include "be_t.h"
5 #include "benodesets.h"
6
7 /**
8  * Collects statistics information about register pressure.
9  * @param birg The be irg object containing the irg
10  */
11 void be_do_stat_reg_pressure(be_irg_t *birg);
12
13 /**
14  * Collect statistics about amount of redy nodes per block
15  * @param block     The block
16  * @param ready_set A set of ready nodes
17  */
18 void be_do_stat_sched_ready(ir_node *block, nodeset *ready_set);
19
20 #endif /* _BESTAT_H_ */