Made lpp stuff modular.
[libfirm] / ir / be / becopystat.h
1 /**
2  * Author:      Daniel Grund
3  * Date:                11.04.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  */
7 #undef DO_STAT
8
9 #ifdef DO_STAT
10
11 #ifndef _BECOPYSTAT_H
12 #define _BECOPYSTAT_H
13
14 #include "irgraph.h"
15
16 #define MAX_ARITY 10
17 #define MAX_CLS_SIZE 10
18 #define MAX_PHASE 2
19
20 /**
21  * For an explanation of these values see phi_stat_dump_pretty
22  */
23 enum vals_t {
24         I_ALL_NODES = 0,
25         I_BLOCKS,
26
27         /* phi nodes */
28         I_PHI_CNT,                      /* number of phi nodes */
29         I_PHI_ARG_CNT,          /* number of arguments of phis */
30         I_PHI_ARG_SELF,         /* number of arguments of phis being the phi itself */
31         I_PHI_ARG_CONST,        /* number of arguments of phis being consts */
32         I_PHI_ARG_PRED,         /* ... being defined in a cf-pred */
33         I_PHI_ARG_GLOB,         /* ... being defined elsewhere */
34         I_PHI_ARITY_S,
35         I_PHI_ARITY_E    = I_PHI_ARITY_S+MAX_ARITY,
36
37         /* phi classes */
38         I_CLS_CNT,                      /* number of phi classes */
39         I_CLS_IF_FREE,          /* number of pc having no interference */
40         I_CLS_IF_MAX,           /* number of possible interferences in all classes */
41         I_CLS_IF_CNT,           /* number of actual interferences in all classes */
42         I_CLS_SIZE_S,
43         I_CLS_SIZE_E = I_CLS_SIZE_S+MAX_CLS_SIZE,
44
45         /* TODO copy nodes */
46         I_CPY_CNT,                      /* number of copynodes */
47
48         /* TODO ilp values */
49         I_ILP_TIME,                     /* !external set! solving time in 10th seconds */
50         I_ILP_ITER,                     /* !external set! number of simplex iterations */
51
52         /* copy instructions */
53         I_COPIES_MAX,           /* max number of copies possible */
54         I_COPIES_INIT,          /* !external set! number of copies in initial allocation */
55         I_COPIES_HEUR,          /* !external set! number of copies after heuristic */
56         I_COPIES_OPT,           /* !external set! number of copies after ilp */
57         I_COPIES_LB,            /* !external set! the lower bound used for number of copies */
58         I_COPIES_IF,            /* number of copies inevitable due to root-arg-interf */
59
60         ASIZE
61 };
62
63 /**
64  * Holds current values. Values are added till next phi_stat_reset
65  */
66 int curr_vals[ASIZE];
67
68 void stat_init(void);
69
70 /**
71  * Resets the array holding the data
72  */
73 void stat_reset(void);
74
75 /**
76  * Collect common irg data
77  */
78 void stat_collect_irg(ir_graph *irg);
79
80 /**
81  * Dumps the current contents of the internal values to a file.
82  */
83 void stat_dump(ir_graph *irg);
84
85 /**
86  * Dumps the current contents of the values array and annotations to a file.
87  */
88 void stat_dump_pretty(ir_graph *irg);
89
90 #endif
91 #endif