Fix #3439: -debug implies -ticky, and -ticky code links with any RTS
[ghc-hetmet.git] / includes / stg / Ticky.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2009
4  *
5  * Declarations for counters used by ticky-ticky profiling.
6  *
7  * Do not #include this file directly: #include "Rts.h" instead.
8  *
9  * To understand the structure of the RTS headers, see the wiki:
10  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
11  *
12  * -------------------------------------------------------------------------- */
13
14
15 #ifndef TICKYCOUNTERS_H
16 #define TICKYCOUNTERS_H
17
18 /* These should probably be automatically generated in order to
19    keep them consistent with the macros that use them (which are
20    defined in Cmm.h. */
21
22 /* same trick as in the former StgTicky.h: recycle the same declarations
23    for both extern decls (which are included everywhere)
24    and initializations (which only happen once) */
25 #ifdef TICKY_C
26 #define INIT(ializer) = ializer
27 #define EXTERN
28 #else
29 #define INIT(ializer)
30 #define EXTERN extern
31 #endif
32
33 /* Here are all the counter declarations: */
34
35 EXTERN StgInt ENT_VIA_NODE_ctr INIT(0);
36 EXTERN StgInt ENT_STATIC_THK_ctr INIT(0);
37 EXTERN StgInt ENT_DYN_THK_ctr INIT(0);
38 EXTERN StgInt ENT_STATIC_FUN_DIRECT_ctr INIT(0);
39 EXTERN StgInt ENT_DYN_FUN_DIRECT_ctr INIT(0);
40 EXTERN StgInt ENT_STATIC_CON_ctr INIT(0);
41 EXTERN StgInt ENT_DYN_CON_ctr INIT(0);
42 EXTERN StgInt ENT_STATIC_IND_ctr INIT(0);
43 EXTERN StgInt ENT_DYN_IND_ctr INIT(0);
44 EXTERN StgInt ENT_PERM_IND_ctr INIT(0);
45 EXTERN StgInt ENT_PAP_ctr INIT(0);
46 EXTERN StgInt ENT_AP_ctr INIT(0);
47 EXTERN StgInt ENT_AP_STACK_ctr INIT(0);
48 EXTERN StgInt ENT_BH_ctr INIT(0);
49
50 EXTERN StgInt UNKNOWN_CALL_ctr INIT(0);
51
52 EXTERN StgInt SLOW_CALL_v_ctr INIT(0);
53 EXTERN StgInt SLOW_CALL_f_ctr INIT(0);
54 EXTERN StgInt SLOW_CALL_d_ctr INIT(0);
55 EXTERN StgInt SLOW_CALL_l_ctr INIT(0);
56 EXTERN StgInt SLOW_CALL_n_ctr INIT(0);
57 EXTERN StgInt SLOW_CALL_p_ctr INIT(0);
58 EXTERN StgInt SLOW_CALL_pv_ctr INIT(0);
59 EXTERN StgInt SLOW_CALL_pp_ctr INIT(0);
60 EXTERN StgInt SLOW_CALL_ppv_ctr INIT(0);
61 EXTERN StgInt SLOW_CALL_ppp_ctr INIT(0);
62 EXTERN StgInt SLOW_CALL_pppv_ctr INIT(0);
63 EXTERN StgInt SLOW_CALL_pppp_ctr INIT(0);
64 EXTERN StgInt SLOW_CALL_ppppp_ctr INIT(0);
65 EXTERN StgInt SLOW_CALL_pppppp_ctr INIT(0);
66 EXTERN StgInt SLOW_CALL_OTHER_ctr INIT(0);
67
68 EXTERN StgInt ticky_slow_call_unevald;
69 EXTERN StgInt SLOW_CALL_ctr INIT(0);
70 EXTERN StgInt MULTI_CHUNK_SLOW_CALL_ctr INIT(0);
71 EXTERN StgInt MULTI_CHUNK_SLOW_CALL_CHUNKS_ctr INIT(0);
72 EXTERN StgInt KNOWN_CALL_ctr INIT(0);
73 EXTERN StgInt KNOWN_CALL_TOO_FEW_ARGS_ctr INIT(0);
74 EXTERN StgInt KNOWN_CALL_EXTRA_ARGS_ctr INIT(0);
75 EXTERN StgInt SLOW_CALL_FUN_TOO_FEW_ctr INIT(0);
76 EXTERN StgInt SLOW_CALL_FUN_CORRECT_ctr INIT(0);
77 EXTERN StgInt SLOW_CALL_FUN_TOO_MANY_ctr INIT(0);
78 EXTERN StgInt SLOW_CALL_PAP_TOO_FEW_ctr INIT(0);
79 EXTERN StgInt SLOW_CALL_PAP_CORRECT_ctr INIT(0);
80 EXTERN StgInt SLOW_CALL_PAP_TOO_MANY_ctr INIT(0);
81 EXTERN StgInt SLOW_CALL_UNEVALD_ctr INIT(0);
82
83
84 EXTERN StgInt UPDF_OMITTED_ctr INIT(0);
85 EXTERN StgInt UPDF_PUSHED_ctr INIT(0);
86 EXTERN StgInt CATCHF_PUSHED_ctr INIT(0);
87 EXTERN StgInt UPDF_RCC_PUSHED_ctr INIT(0);
88 EXTERN StgInt UPDF_RCC_OMITTED_ctr INIT(0);
89
90 EXTERN StgInt UPD_SQUEEZED_ctr INIT(0);
91 EXTERN StgInt UPD_CON_IN_NEW_ctr INIT(0);
92 EXTERN StgInt UPD_CON_IN_PLACE_ctr INIT(0);
93 EXTERN StgInt UPD_PAP_IN_NEW_ctr INIT(0);
94 EXTERN StgInt UPD_PAP_IN_PLACE_ctr INIT(0);
95
96 EXTERN StgInt ALLOC_HEAP_ctr INIT(0);
97 EXTERN StgInt ALLOC_HEAP_tot;
98
99 EXTERN StgInt ALLOC_FUN_ctr INIT(0);
100 EXTERN StgInt ALLOC_FUN_adm;
101 EXTERN StgInt ALLOC_FUN_gds;
102 EXTERN StgInt ALLOC_FUN_slp;
103
104 EXTERN StgInt UPD_NEW_IND_ctr INIT(0);
105 EXTERN StgInt UPD_NEW_PERM_IND_ctr INIT(0);
106 EXTERN StgInt UPD_OLD_IND_ctr INIT(0);
107 EXTERN StgInt UPD_OLD_PERM_IND_ctr INIT(0);
108
109 EXTERN StgInt UPD_BH_UPDATABLE_ctr INIT(0);
110 EXTERN StgInt UPD_BH_SINGLE_ENTRY_ctr INIT(0);
111 EXTERN StgInt UPD_CAF_BH_UPDATABLE_ctr INIT(0);
112 EXTERN StgInt UPD_CAF_BH_SINGLE_ENTRY_ctr INIT(0);
113
114 EXTERN StgInt GC_SEL_ABANDONED_ctr INIT(0);
115 EXTERN StgInt GC_SEL_MINOR_ctr INIT(0);
116 EXTERN StgInt GC_SEL_MAJOR_ctr INIT(0);
117
118 EXTERN StgInt GC_FAILED_PROMOTION_ctr INIT(0);
119
120 EXTERN StgInt GC_WORDS_COPIED_ctr INIT(0);
121
122 EXTERN StgInt ALLOC_UP_THK_ctr INIT(0);
123 EXTERN StgInt ALLOC_SE_THK_ctr INIT(0);
124 EXTERN StgInt ALLOC_THK_adm INIT(0);
125 EXTERN StgInt ALLOC_THK_gds INIT(0);
126 EXTERN StgInt ALLOC_THK_slp INIT(0);
127
128 EXTERN StgInt ALLOC_CON_ctr INIT(0);
129 EXTERN StgInt ALLOC_CON_adm INIT(0);
130 EXTERN StgInt ALLOC_CON_gds INIT(0);
131 EXTERN StgInt ALLOC_CON_slp INIT(0);
132
133 EXTERN StgInt ALLOC_TUP_ctr INIT(0);
134 EXTERN StgInt ALLOC_TUP_adm INIT(0);
135 EXTERN StgInt ALLOC_TUP_gds INIT(0);
136 EXTERN StgInt ALLOC_TUP_slp INIT(0);
137
138 EXTERN StgInt ALLOC_BH_ctr INIT(0);
139 EXTERN StgInt ALLOC_BH_adm INIT(0);
140 EXTERN StgInt ALLOC_BH_gds INIT(0);
141 EXTERN StgInt ALLOC_BH_slp INIT(0);
142
143 EXTERN StgInt ALLOC_PRIM_ctr INIT(0);
144 EXTERN StgInt ALLOC_PRIM_adm INIT(0);
145 EXTERN StgInt ALLOC_PRIM_gds INIT(0);
146 EXTERN StgInt ALLOC_PRIM_slp INIT(0);
147
148 EXTERN StgInt ALLOC_PAP_ctr INIT(0);
149 EXTERN StgInt ALLOC_PAP_adm INIT(0);
150 EXTERN StgInt ALLOC_PAP_gds INIT(0);
151 EXTERN StgInt ALLOC_PAP_slp INIT(0);
152
153 EXTERN StgInt ALLOC_TSO_ctr INIT(0);
154 EXTERN StgInt ALLOC_TSO_adm INIT(0);
155 EXTERN StgInt ALLOC_TSO_gds INIT(0);
156 EXTERN StgInt ALLOC_TSO_slp INIT(0);
157
158 EXTERN StgInt RET_NEW_ctr INIT(0);
159 EXTERN StgInt RET_OLD_ctr INIT(0);
160 EXTERN StgInt RET_UNBOXED_TUP_ctr INIT(0);
161
162 EXTERN StgInt RET_SEMI_loads_avoided INIT(0);
163
164 /* End of counter declarations. */
165
166 /* This is ugly, but the story is:
167    We got rid of StgTicky.h, which was previously
168    defining these macros for the benefit of C code
169    so, we define them here instead (to be no-ops).
170    (since those macros are only defined in Cmm.h) 
171
172    Note that these macros must be defined whether
173    TICKY_TICKY is defined or not. */
174   
175 #ifndef CMINUSMINUS
176 #define TICK_ALLOC_PRIM(x,y,z)
177 #define TICK_UPD_OLD_IND()
178 #define TICK_UPD_NEW_IND()
179 #define TICK_UPD_SQUEEZED()
180 #define TICK_ALLOC_HEAP_NOCTR(x)
181 #define TICK_GC_WORDS_COPIED(x)
182 #define TICK_GC_FAILED_PROMOTION()
183 #define TICK_ALLOC_TSO(g,s)
184 #define TICK_ALLOC_UP_THK(g,s)
185 #define TICK_ALLOC_SE_THK(g,s)
186
187 #endif
188
189
190 #endif /* TICKYCOUNTERS_H */