blob: f15f0aa7168f903cb81e46537b7234add41e8a8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2001
* Author: Sungwoo Park
*
* Retainer profiling interface.
*
* ---------------------------------------------------------------------------*/
#pragma once
#if defined(PROFILING)
#include "RetainerSet.h"
#include "TraverseHeap.h"
#include "BeginPrivate.h"
void initRetainerProfiling ( void );
void endRetainerProfiling ( void );
void retainerProfile ( void );
bool isRetainerSetValid( const StgClosure *c );
RetainerSet* retainerSetOf( const StgClosure *c );
// Used by GC.c
W_ retainerStackBlocks(void);
extern traverseState g_retainerTraverseState;
#include "EndPrivate.h"
#endif /* PROFILING */
|