removed C99 features
[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 #ifndef _BECOPYSTAT_H
8 #define _BECOPYSTAT_H
9
10 #define DO_STAT
11 #ifdef DO_STAT
12
13 #include "irgraph.h"
14
15 #define MAX_ARITY 10
16 #define MAX_CLS_SIZE 10
17 #define MAX_CLS_PHIS 10
18 #define MAX_PHASE 2
19
20 /**
21  * For an explanation of these values see the code of copystat_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         /* copy nodes */
38         I_CPY_CNT,                      /* number of copynodes */
39
40         /* phi classes */
41         I_CLS_CNT,                      /* number of phi classes */
42         I_CLS_IF_FREE,          /* number of pc having no interference */
43         I_CLS_IF_MAX,           /* number of possible interferences in all classes */
44         I_CLS_IF_CNT,           /* number of actual interferences in all classes */
45         I_CLS_SIZE_S,
46         I_CLS_SIZE_E = I_CLS_SIZE_S+MAX_CLS_SIZE,
47         I_CLS_PHIS_S,
48         I_CLS_PHIS_E = I_CLS_PHIS_S+MAX_CLS_PHIS,
49
50         /* ilp values */
51         I_ILP_TIME,                     /* !external set! solving time in seconds */
52         I_ILP_ITER,                     /* !external set! number of simplex iterations */
53
54         /* copy instructions */
55         I_COPIES_MAX,           /* max number of copies possible */
56         I_COPIES_INIT,          /* !external set! number of copies in initial allocation */
57         I_COPIES_HEUR,          /* !external set! number of copies after heuristic */
58         I_COPIES_OPT,           /* !external set! number of copies after ilp */
59         I_COPIES_IF,            /* number of copies inevitable due to root-arg-interf */
60
61         ASIZE
62 };
63
64 /**
65  * Holds current values. Values are added till next copystat_reset
66  */
67 int curr_vals[ASIZE];
68
69 void copystat_init(void);
70 void copystat_reset(void);
71 void copystat_collect_irg(ir_graph *irg, arch_env_t *arch_env);
72 void copystat_collect_cls(be_chordal_env_t *chordal_env);
73 void copystat_dump(ir_graph *irg);
74 void copystat_dump_pretty(ir_graph *irg);
75
76 #else /* DO_STAT */
77
78 #define copy_copystat_init();
79 #define copystat_reset();
80 #define copystat_collect_irg(irg, arch_env);
81 #define copystat_collect_cls(env);
82 #define copystat_dump(irg);
83 #define copystat_dump(irg);
84 #define copystat_dump_pretty(irg);
85
86 #endif /* DO_STAT */
87
88 #endif /* _BECOPYSTAT_H */