[project @ 1996-07-25 20:43:49 by partain]
[ghc-hetmet.git] / ghc / includes / CostCentre.lh
1 %************************************************************************
2 %*                                                                      *
3 \section[CostCentre.lh]{Definitions for Cost Centre Profiling}
4 %*                                                                      *
5 %************************************************************************
6
7 Multi-slurp protection:
8 \begin{code}
9 #ifndef CostCentre_H
10 #define CostCentre_H
11 \end{code}
12
13 For threaded activity profiling, we need a few bits of the CostCentre
14 environment to be defined, despite the fact that we don't have CostCentre
15 fields in closures.
16
17 \begin{code}
18 #if defined(PROFILING) || defined(CONCURRENT)
19
20 # define CC_EXTERN(cc_ident)                                    \
21      extern struct cc CAT2(cc_ident,_struct);                   \
22      extern CostCentre cc_ident
23
24 extern CostCentre CCC;          /* the current cost centre */
25
26 extern CostCentre Registered_CC;/* registered cost centre list */
27
28 CC_EXTERN(CC_MAIN);             /* initial MAIN cost centre */
29 CC_EXTERN(CC_GC);               /* Garbage Collection cost center */
30
31 # ifdef PAR
32 CC_EXTERN(CC_MSG);              /* Communications cost center */
33 CC_EXTERN(CC_IDLE);             /* Idle-time cost centre */
34 # endif
35
36 # define REGISTERED_END (CostCentre)4   /* end of list */
37                                         /* That 4 look likes a HACK, Patrick.
38                                            (WDP 94/06) */
39 # define NOT_REGISTERED (CostCentre)0   /* not yet registered */
40
41 \end{code}
42
43 The compiler declares a static block for each @_scc_@ annotation in the
44 source using the @CC_DECLARE@ macro where @label@, @module@ and
45 @group@ are strings and @ident@ the cost centre identifier.
46
47 \begin{code} 
48 # define CC_IS_CAF      'c'
49 # define CC_IS_DICT     'd'
50 # define CC_IS_SUBSUMED 's'
51 # define CC_IS_BORING   'B'
52
53 # define STATIC_CC_REF(cc_ident) &CAT2(cc_ident,_struct)
54 # define DYN_CC_REF(cc_ident)    cc_ident /* unused */
55
56 # define CC_DECLARE(cc_ident,name,module,group,subsumed,is_local)       \
57      is_local struct cc CAT2(cc_ident,_struct)                          \
58         = {NOT_REGISTERED, UNHASHED, name, module, group,               \
59            subsumed, INIT_CC_STATS};                                    \
60      is_local CostCentre cc_ident = STATIC_CC_REF(cc_ident)
61
62 #endif /* defined(PROFILING) || defined(CONCURRENT) */
63 \end{code}
64
65 Definitions relating to the profiling field as a whole.
66
67 \begin{code}
68 #define PROF_FIXED_HDR                  (CC_HDR_SIZE)   
69 #define PROF_HDR_POSN                   AFTER_PAR_HDR
70 #define AFTER_PROF_HDR                  (PROF_FIXED_HDR+PROF_HDR_POSN)
71 #define SET_PROF_HDR(closure,cc)        SET_CC_HDR(closure,cc)
72 #define SET_STATIC_PROF_HDR(ident)      SET_STATIC_CC_HDR(ident)
73 \end{code}
74
75 %************************************************************************
76 %*                                                                      *
77 \subsection[no-cost-centres]{Dummy definitions if no cost centres}
78 %*                                                                      *
79 %************************************************************************
80
81 The cost-centre profiling is only on if the driver turns on
82 @PROFILING@.
83
84 These are the {\em dummy} definitions in force if we do {\em NOT}
85 turn on @PROFILING@.  Get them out of the way....
86
87 \begin{code}
88 #if !defined(PROFILING)
89
90 /*** Declaration Definitions ***/
91
92 # define CAT_DECLARE(base_name, kind, descr, type)
93
94 # define CC_HDR_SIZE 0                  /* No CC in fixed header */
95
96 # define SET_CC_HDR(closure, cc)        /* Dont set CC header */
97 # define SET_STATIC_CC_HDR(cc)          /* No static CC header */
98
99 # define SET_CCC(cc_ident,do_scc_count)
100 # define SET_DICT_CCC(cc_ident,do_scc_count)
101 # define SET_CCC_RTS(cc_ident,do_sub_count,do_count)
102
103 # define RESTORE_CCC(cc)
104
105 # define ENTER_CC_T(cc)
106 # define ENTER_CC_TCL(closure)
107 # define ENTER_CC_F(cc)
108 # define ENTER_CC_FCL(closure)
109 # define ENTER_CC_FSUB()
110 # define ENTER_CC_FCAF(cc)
111 # define ENTER_CC_FLOAD(cc)
112 # define ENTER_CC_PAP(cc)
113 # define ENTER_CC_PAP_CL(closure)
114
115 /*** Timer and Heap Definitions ***/
116
117 # define OR_INTERVAL_EXPIRED    /* No || as it is false */
118
119 # define CC_ALLOC(cc, size, kind)
120 # define HEAP_PROFILE_CLOSURE(closure,size)
121
122 # ifndef PAR
123 #  define START_TIME_PROFILER
124 #  define RESTART_TIME_PROFILER
125 #  define STOP_TIME_PROFILER
126 # endif
127
128 #endif /* !defined(PROFILING) */
129 \end{code}
130
131 %************************************************************************
132 %*                                                                      *
133 \subsection[declaring-cost-centres]{Declaring Cost Centres}
134 %*                                                                      *
135 %************************************************************************
136
137 Now for the cost-centre profiling stuff.
138
139 %************************************************************************
140 %*                                                                      *
141 \subsection[cost-centres]{Location of Cost Centres}
142 %*                                                                      *
143 %************************************************************************
144
145 We have a current cost centre, a list of registered cost centres, and
146 an additional cost centre field within the fixed header of all
147 closures. This is adjacent to the info pointer.
148
149 \begin{code}
150 #if defined(PROFILING)
151
152 CC_EXTERN(CC_SUBSUMED);         /* top level fns SUBSUMED cost centre */
153 CC_EXTERN(CC_OVERHEAD);         /* costs due only to profiling machinery */
154 CC_EXTERN(CC_DONTZuCARE);       /* placeholder only */
155
156 CC_EXTERN(CC_CAFs);             /* prelude cost centre (CAFs  only) */
157 CC_EXTERN(CC_DICTs);            /* prelude cost centre (DICTs only) */
158
159 # define IS_CAF_OR_DICT_OD_SUB_CC(cc) \
160     ((cc)->is_subsumed & ' ')   /* tests for lower case character */
161
162 \end{code}
163
164 Definitions referring to the Cost Centre sub-field of the fixed header.
165 \begin{code}
166
167 # define CC_HDR_SIZE            1       /* words of header */
168                                         /*R SMinterface.lh */
169
170 # define CC_HDR_POSN            PROF_HDR_POSN   /* position in header */
171
172 # define CC_HDR(closure)        (((P_)(closure))[CC_HDR_POSN])
173
174 # define SET_CC_HDR(closure, cc) \
175         CC_HDR(closure) = (W_)(cc)      /* Set closures cost centre */
176                                         /*R SMinterface.lh (CCC) */
177 \end{code}
178
179 For static closures ...
180 \begin{code}
181 # define SET_STATIC_CC_HDR(cc_ident) \
182         ,  (W_) STATIC_CC_REF(cc_ident)         /* static initialisation */
183                                                 /*R SMinterface.lh */
184 \end{code}
185
186 The @/*R @{\em file}@ */@ comments indicate that the macro is used
187 regardless in {\em file} so we need a null definition if cost centres
188 are not being used.
189
190 %************************************************************************
191 %*                                                                      *
192 \subsection{Setting the Current Cost Centre}
193 %*                                                                      *
194 %************************************************************************
195
196 On execution of an @_scc_@ expression a new cost centre is set.
197
198 If the new cost centre is different from the CCC we set the CCC and
199 count the entry.
200
201 If the cost centre is the same as the CCC no action is required. We do
202 not count the entry to avoid large counts arising from simple
203 recursion.  (Huh?  WDP 94/07)
204
205 \begin{code}
206 # define SET_CCC_X(cc,do_subcc_count,do_subdict_count,do_scc_count)                             \
207         do {                                                                                    \
208         if ((do_subcc_count)) { CCC->sub_scc_count++; }       /* inc subcc count of CCC */      \
209         if ((do_subdict_count)) { CCC->sub_dictcc_count++; }  /* inc sub dict count of CCC */   \
210         CCC = (CostCentre)(cc);                               /* set CCC to ident cc */         \
211         ASSERT_IS_REGISTERED(CCC,1);                                                            \
212         if ((do_scc_count)) { CCC->scc_count++; }             /* inc scc count of new CCC*/     \
213         } while(0)
214
215 # define SET_CCC(cc_ident,do_scc_count) \
216          SET_CCC_X(STATIC_CC_REF(cc_ident),do_scc_count,0,do_scc_count)
217
218 # define SET_DICT_CCC(cc_ident,do_scc_count) \
219          SET_CCC_X(STATIC_CC_REF(cc_ident),0,do_scc_count,do_scc_count)
220
221 # define SET_CCC_RTS(cc_ident,do_sub_count,do_scc_count) \
222          SET_CCC_X(STATIC_CC_REF(cc_ident),do_sub_count,0,do_scc_count)
223 \end{code}
224
225 We have this @RESTORE_CCC@ macro, rather than just an assignment,
226 in case we want to do any paranoia-checking here.
227 \begin{code}
228 # define RESTORE_CCC(cc)                \
229         do {                            \
230         CCC = (CostCentre) (cc);        \
231         ASSERT_IS_REGISTERED(CCC,1);    \
232         } while(0)
233 \end{code}
234
235 On entry to top level CAFs we count the scc ...
236 \begin{code}
237 # define ENTER_CC_CAF_X(cc)                                             \
238         do {                                                            \
239         CCC->sub_cafcc_count++; /* inc subcaf count of CCC */           \
240         CCC = (CostCentre)(cc); /* set CCC to ident cc */               \
241         ASSERT_IS_REGISTERED(CCC,1);                                    \
242         CCC->scc_count++;       /* inc scc count of CAF cc */           \
243         } while(0)
244
245 # define ENTER_CC_CAF(cc_ident)   ENTER_CC_CAF_X(STATIC_CC_REF(cc_ident))
246 # define ENTER_CC_CAF_CL(closure) ENTER_CC_CAF_X((CostCentre)CC_HDR(closure))
247 \end{code}
248
249 On entering a closure we only count the enter to thunks ...
250 \begin{code}
251 # define ENTER_CC_T(cc)                                 \
252         do {                                            \
253         CCC = (CostCentre)(cc);                         \
254         ASSERT_IS_REGISTERED(CCC,1);                    \
255         CCC_DETAIL_COUNT(CCC->thunk_count);             \
256         } while(0)      
257
258 # define ENTER_CC_TCL(closure)                          \
259         ENTER_CC_T(CC_HDR(closure))
260
261 /* Here is our special "hybrid" case when we do *not* set the CCC.
262    (a) The closure is a function, not a thunk;
263    (b) The CC is CAF/DICT-ish.
264 */
265 # define ENTER_CC_F(centre)                             \
266         do {                                            \
267         CostCentre cc = (CostCentre) (centre);          \
268         ASSERT_IS_REGISTERED(cc,1);                     \
269         if ( ! IS_CAF_OR_DICT_OR_SUB_CC(cc) ) {         \
270             CCC = cc;                                   \
271         } else {                                        \
272             CCC_DETAIL_COUNT(cc->caffun_subsumed);      \
273             CCC_DETAIL_COUNT(CCC->subsumed_caf_count);  \
274         }                                               \
275         CCC_DETAIL_COUNT(CCC->function_count);          \
276         } while(0)
277
278 # define ENTER_CC_FCL(closure)                          \
279         ENTER_CC_F(CC_HDR(closure))
280
281 # define ENTER_CC_FSUB()                                \
282         do {                                            \
283         CCC_DETAIL_COUNT(CCC->subsumed_fun_count);      \
284         CCC_DETAIL_COUNT(CCC->function_count);          \
285         } while(0)
286
287 # define ENTER_CC_FCAF(centre)                          \
288         do {                                            \
289         CostCentre cc = (CostCentre) (centre);          \
290         ASSERT_IS_REGISTERED(cc,1);                     \
291         CCC_DETAIL_COUNT(cc->caffun_subsumed);          \
292         CCC_DETAIL_COUNT(CCC->subsumed_caf_count);      \
293         CCC_DETAIL_COUNT(CCC->function_count);          \
294         } while(0)
295
296 # define ENTER_CC_FLOAD(cc)                             \
297         do {                                            \
298         CCC = (CostCentre)(cc);                         \
299         ASSERT_IS_REGISTERED(CCC,1);                    \
300         CCC_DETAIL_COUNT(CCC->function_count);          \
301         } while(0)
302
303 /* These ENTER_CC_PAP things are only used in the RTS */
304
305 # define ENTER_CC_PAP(centre)                           \
306         do {                                            \
307         CostCentre cc = (CostCentre) (centre);          \
308         ASSERT_IS_REGISTERED(cc,1);                     \
309         if ( ! IS_CAF_OR_DICT_OR_SUB_CC(cc) ) {         \
310             CCC = cc;                                   \
311         } else {                                        \
312             CCC_DETAIL_COUNT(cc->caffun_subsumed);      \
313             CCC_DETAIL_COUNT(CCC->subsumed_caf_count);  \
314         }                                               \
315         CCC_DETAIL_COUNT(CCC->pap_count);               \
316         } while(0)                      
317                                         
318 # define ENTER_CC_PAP_CL(closure)                       \
319         ENTER_CC_PAP(CC_HDR(closure))
320
321 # if defined(PROFILING_DETAIL_COUNTS)
322 # define CCC_DETAIL_COUNT(inc_this) ((inc_this)++)
323 # else
324 # define CCC_DETAIL_COUNT(inc_this) /*nothing*/
325 # endif
326
327 #endif /* PROFILING */
328 \end{code}
329
330 %************************************************************************
331 %*                                                                      *
332 \subsection{``Registering'' cost-centres}
333 %*                                                                      *
334 %************************************************************************
335
336 Cost centres are registered at startup by calling a registering
337 routine in each module. Each module registers its cost centres and
338 calls the registering routine for all imported modules. The RTS calls
339 the registering routine for the module Main. This registering must be
340 done before initialisation since the evaluation required for
341 initialisation may use the cost centres.
342
343 As the code for each module uses tail calls we use an auxiliary stack
344 (in the heap) to record imported modules still to be registered. At
345 the bottom of the stack is NULL which indicates that
346 @miniInterpretEnd@ should be resumed.
347
348 @START_REGISTER@ and @END_REGISTER@ are special macros used to
349 delimit the function. @END_REGISTER@ pops the next registering
350 routine off the stack and jumps to it. @REGISTER_CC@ registers a cost
351 centre. @REGISTER_IMPORT@ pushes a modules registering routine onto
352 the register stack.
353
354 \begin{code}
355 #if defined(PROFILING)
356
357 extern F_ _regMain (STG_NO_ARGS);
358 extern F_ *register_stack;
359
360 # define PUSH_REGISTER_STACK(reg_function)                              \
361         *(register_stack++) = (F_)reg_function
362
363 # define POP_REGISTER_STACK                                             \
364         *(--register_stack)
365
366 # define START_REGISTER_CCS(reg_mod_name)                               \
367         static int _module_registered = 0;                              \
368         STGFUN(reg_mod_name) {                                          \
369             FUNBEGIN;                                                   \
370             if (! _module_registered) {                                 \
371                 _module_registered = 1
372
373 # define START_REGISTER_PRELUDE(reg_mod_name)                           \
374         static int CAT2(reg_mod_name,_done) = 0;                        \
375         STGFUN(reg_mod_name) {                                          \
376             FUNBEGIN;                                                   \
377             if (! CAT2(reg_mod_name,_done)) {                           \
378                 CAT2(reg_mod_name,_done) = 1
379
380 # define REGISTER_IMPORT(reg_mod_name)                                  \
381         do { extern F_ reg_mod_name (STG_NO_ARGS) ;                     \
382           PUSH_REGISTER_STACK(reg_mod_name) ;                           \
383         } while (0)
384         
385 # define END_REGISTER_CCS()                                             \
386         };                                                              \
387         do {                                                            \
388             F_ cont = POP_REGISTER_STACK;                               \
389             if (cont == NULL) {                                         \
390                 RESUME_(miniInterpretEnd);                              \
391             } else {                                                    \
392                 JMP_(cont);                                             \
393             }                                                           \
394         } while(0);                                                     \
395         FUNEND; }
396
397 #endif  /* PROFILING */
398 \end{code}
399
400 We don't want to attribute costs to an unregistered cost-centre:
401 \begin{code}
402 #if !defined(PROFILING) || !defined(DEBUG)
403 # define ASSERT_IS_REGISTERED(cc,chk_not_overhead) /*nothing*/
404 #else
405 # define ASSERT_IS_REGISTERED(cc,chk_not_overhead)                              \
406         do {    /* beware of cc name-capture */                                 \
407         CostCentre c_c = (CostCentre) (cc);                                     \
408         if (c_c->registered == NOT_REGISTERED) {                                \
409             fprintf(stderr,"Entering unregistered CC: %s\n",c_c->label);        \
410             /* unsafe c-call, BTW */                                            \
411         }                                                                       \
412         if ( (chk_not_overhead) && c_c == STATIC_CC_REF(CC_OVERHEAD) ) {        \
413             fprintf(stderr,"CC should not be OVERHEAD!: %s\n",c_c->label);      \
414             /* unsafe c-call, BTW */                                            \
415         } } while(0)
416 #endif
417
418 #define REGISTER_CC(cc)                                                 \
419         do {                                                            \
420         extern CostCentre cc;                                           \
421         if (((CostCentre)(cc))->registered == NOT_REGISTERED) {         \
422             ((CostCentre)(cc))->registered = Registered_CC;             \
423             Registered_CC = (CostCentre)(cc);                           \
424         }} while(0)
425
426 \end{code}
427
428 %************************************************************************
429 %*                                                                      *
430 \subsection[declaring-closure-categories]{Declaring Closure Categories}
431 %*                                                                      *
432 %************************************************************************
433
434 Closure category records are attached to the info table of the
435 closure. They are declared with the info table. Hashing will map
436 similar categories to the same hash value allowing statistics to be
437 grouped by closure category.
438
439 The declaration macros expand to nothing if cost centre profiling is
440 not required.
441
442 Note from ADR: Very dubious Malloc Ptr addition -- should probably just
443 reuse @CON_K@ (or something) in runtime/main/StgStartup.lhc.
444 Similarily, the SP stuff should probably be the highly uninformative
445 @INTERNAL_KIND@.
446
447 SOF 4/96: Renamed MallocPtr_K to ForeignObj_K 
448
449 \begin{code}
450 #if defined(PROFILING)
451
452 # define CON_K          1
453 # define FN_K           2
454 # define PAP_K          3
455 # define THK_K          4
456 # define BH_K           5
457 # define ARR_K          6
458
459 # ifndef PAR
460 #  define ForeignObj_K  7  /* Malloc Pointer */
461 #  define SPT_K         8  /* Stable Pointer Table */
462 # endif /* !PAR */
463
464 # define INTERNAL_KIND  10
465
466 typedef struct ClCat {
467    hash_t index_val;    /* hashed value */
468    I_    selected; /* is this category selected (-1 == not memoised, selected? 0 or 1) */
469    I_    kind;     /* closure kind -- as above */
470    char *descr;    /* source derived string detailing closure description */
471    char *type;      /* source derived string detailing closure type */
472 } *ClCategory;
473
474 /* We put pointers to these ClCat things in info tables.
475    We need these ClCat things because they are mutable,
476    whereas info tables are immutable.  (WDP 94/11)
477
478    We really should not make funny names by appending _CAT.
479 */
480
481 # define MK_CAT_IDENT(i)   CAT2(i,_CAT)
482 # define REF_CAT_IDENT(i)  (&MK_CAT_IDENT(i))
483
484 # define CAT_DECLARE(base_name, kind, descr, type) \
485         static struct ClCat MK_CAT_IDENT(base_name) = {UNHASHED,-1,kind,descr,type};
486
487 #endif /* PROFILING */
488 \end{code}
489
490 %************************************************************************
491 %*                                                                      *
492 \subsection[timer-interupts]{Processing of Timer Signals}
493 %*                                                                      *
494 %************************************************************************
495
496 Stuff to do with timer signals:
497 \begin{code}
498 #if defined(PROFILING) || defined(PAR)
499
500 extern I_ time_profiling;       /* Flag indicating if timer/serial profiling is required */
501
502 extern I_ interval_expired;     /* Flag set by signal handler */
503 extern I_ current_interval;     /* Current interval number -- used as time stamp */
504 extern I_ interval_ticks;       /* No of ticks in an interval */
505
506 extern I_ previous_ticks;       /* ticks in previous intervals */
507 extern I_ current_ticks;        /* ticks in current interval */
508
509 extern void set_time_profile_handler(STG_NO_ARGS);
510 extern void start_time_profiler(STG_NO_ARGS);
511 extern void restart_time_profiler(STG_NO_ARGS);
512 extern void stop_time_profiler(STG_NO_ARGS);
513
514 # define TICK_FREQUENCY         50                      /* ticks per second */
515 # define TICK_MILLISECS         (1000/TICK_FREQUENCY)   /* milli-seconds per tick */
516
517 # define DEFAULT_INTERVAL       TICK_FREQUENCY          /* 1 second */
518
519 /* These are never called directly from threaded code */
520 # define START_TIME_PROFILER    ULTRASAFESTGCALL0(void,(void *),start_time_profiler)            /*R StgOverflow.lc */
521 # define RESTART_TIME_PROFILER  ULTRASAFESTGCALL0(void,(void *),restart_time_profiler)          /*R StgOverflow.lc */
522 # define STOP_TIME_PROFILER     ULTRASAFESTGCALL0(void,(void *),stop_time_profiler)             /*R StgOverflow.lc */
523
524 # if defined(PROFILING)
525 #  define OR_INTERVAL_EXPIRED   || (interval_expired)           /*R StgMacros.h */
526 # endif
527 \end{code}
528
529
530 %************************************************************************
531 %*                                                                      *
532 \subsection[indexing]{Indexing of Cost Centres and Categories}
533 %*                                                                      *
534 %************************************************************************
535
536 Cost Centres and Closure Categories are hashed to provide indexes
537 against which arbitrary information can be stored. These indexes are
538 memoised in the appropriate cost centre or category record and
539 subsequent hashes avoided by the index routine (it simply returns the
540 memoised index).
541
542 There are different features which can be hashed allowing information
543 to be stored for different groupings. Cost centres have the cost
544 centre recorded (using the pointer), module and group. Closure
545 categories have the closure description and the type
546 description. Records with the same feature will be hashed to the same
547 index value.
548
549 The initialisation routines, @init_index_<feature>@, allocate a hash
550 table in which the cost centre / category records are stored. The
551 lower bound for the table size is taken from @max_<feature>_no@. They
552 return the actual table size used (the next power of 2). Unused
553 locations in the hash table are indicated by a 0 entry. Successive
554 @init_index_<feature>@ calls just return the actual table size.
555
556 Calls to @index_<feature>@ will insert the cost centre / category
557 record in the <feature> hash table, if not already inserted. The hash
558 index is memoised in the record and returned. 
559
560 CURRENTLY ONLY ONE MEMOISATION SLOT IS AVILABLE IN EACH RECORD SO
561 HASHING CAN ONLY BE DONE ON ONE FEATURE FOR EACH RECORD. This can be
562 easily relaxed at the expense of extra memoisation space or continued
563 rehashing.
564
565 The initialisation routines must be called before initialisation of
566 the stacks and heap as they require to allocate storage. It is also
567 expected that the caller may want to allocate additional storage in
568 which to store profiling information based on the return table size
569 value(s).
570
571 \begin{code}
572 # if defined(PROFILING)
573
574 #  define DEFAULT_MAX_CC     4096
575 #  define DEFAULT_MAX_MOD     256
576 #  define DEFAULT_MAX_GRP     128
577 #  define DEFAULT_MAX_DESCR  4096
578 #  define DEFAULT_MAX_TYPE   1024
579
580 extern hash_t max_cc_no;                        /* Hash on CC ptr */
581 extern CostCentre *index_cc_table;
582 extern hash_t init_index_cc(STG_NO_ARGS);
583 extern hash_t index_cc PROTO((CostCentre cc));
584
585 extern hash_t max_mod_no;                       /* Hash on CC module */
586 extern CostCentre *index_mod_table;
587 extern hash_t init_index_mod(STG_NO_ARGS);
588 extern hash_t index_mod PROTO((CostCentre cc));
589
590 extern hash_t max_grp_no;                       /* Hash on CC group */
591 extern CostCentre *index_grp_table;
592 extern hash_t init_index_grp(STG_NO_ARGS);
593 extern hash_t index_grp PROTO((CostCentre cc));
594
595 extern hash_t max_descr_no;                     /* Hash on closure description */
596 extern ClCategory *index_descr_table;
597 extern hash_t init_index_descr(STG_NO_ARGS);
598 extern hash_t index_descr PROTO((ClCategory clcat));
599
600 extern hash_t max_type_no;                      /* Hash on type description */
601 extern ClCategory *index_type_table;
602 extern hash_t init_index_type(STG_NO_ARGS);
603 extern hash_t index_type PROTO((ClCategory clcat));
604
605 # endif /* PROFILING */
606 \end{code}
607
608
609 %************************************************************************
610 %*                                                                      *
611 \subsection[metering]{Metering of Statistics}
612 %*                                                                      *
613 %************************************************************************
614
615 @scc_count@ is incremented by the @SetCC@ macro in section
616 \ref{manipulating-cost-centres} above. Below we have the time tick and
617 memory alloc macros.
618
619 \begin{code}
620 # define CC_TICK(centre)                                                \
621         do { CostCentre cc = (CostCentre) (centre);                     \
622         ASSERT_IS_REGISTERED(cc,1);                                     \
623         cc->time_ticks += 1;                                            \
624         } while(0)
625
626 # if defined(PROFILING)
627 # define CC_ALLOC(centre, size, kind)                                   \
628         do { CostCentre cc = (CostCentre) (centre);                     \
629         ASSERT_IS_REGISTERED(cc,0/*OK if OVERHEAD*/);                   \
630         CCC_DETAIL_COUNT(cc->mem_allocs);                               \
631         cc->mem_alloc += (size) - (PROF_FIXED_HDR + TICKY_FIXED_HDR);   \
632         } while(0) 
633 # endif
634 \end{code}
635
636
637 %************************************************************************
638 %*                                                                      *
639 \subsection[cost-centre-profiling]{Cost Centre Profiling}
640 %*                                                                      *
641 %************************************************************************
642
643 \begin{code}
644 I_      init_cc_profiling PROTO((I_ rts_argc, char *rts_argv[], char *prog_argv[]));
645 void    report_cc_profiling PROTO((I_ final));
646
647 void    cc_register(STG_NO_ARGS);
648 void    cc_sort PROTO((CostCentre *sort, char sort_on));
649 rtsBool cc_to_ignore PROTO((CostCentre));
650 \end{code}
651
652 %************************************************************************
653 %*                                                                      *
654 \subsection[heap-profiling]{Heap Profiling}
655 %*                                                                      *
656 %************************************************************************
657
658 \begin{code}
659 # if defined(PROFILING)
660
661 I_ heap_profile_init PROTO((char *argv[]));
662
663 void heap_profile_finish(STG_NO_ARGS);
664
665 void heap_profile_setup(STG_NO_ARGS);      /* called at start of heap profile */
666 void heap_profile_done(STG_NO_ARGS);      /* called at end of heap profile */
667
668 void (* heap_profile_fn) PROTO((P_ closure,I_ size));
669
670 extern I_ earlier_ticks;                /* no. of earlier ticks grouped */
671 extern hash_t time_intervals;           /* no. of time intervals reported -- 18 */
672
673 # define HEAP_PROFILE_CLOSURE(closure,size)     \
674         do {                                    \
675         if (heap_profile_fn) {                  \
676             STGCALL2(void,(void *, P_, I_),(*heap_profile_fn),closure,size); \
677         }} while(0)
678
679 # endif /* PROFILING */
680 \end{code}
681
682 End multi-slurp protection:
683 \begin{code}
684 #endif /* PROFILING || PAR */
685
686 #endif /* CostCentre_H */
687 \end{code}