summaryrefslogtreecommitdiff
path: root/runtime/libtrace/tracelib.h
blob: f700a00317e31afede2788ad738c39534b04d770 (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
33
34
35
36
37
38
39
40
/*===-- Libraries/tracelib.h - Runtime routines for tracing -----*- C++ -*--===
 *
 * Runtime routines for supporting tracing of execution
 * for code generated by LLVM.
 *
 *===---------------------------------------------------------------------===*/

#ifndef _TEST_LIBRARIES_LIBINSTR_TRACELIB_
#define _TEST_LIBRARIES_LIBINSTR_TRACELIB_

#ifdef __cplusplus
extern "C" {
#endif

#include <sys/types.h>

/*===---------------------------------------------------------------------=====
 * Support for tracing pointers
 *===---------------------------------------------------------------------===*/

typedef unsigned int SequenceNumber;

extern SequenceNumber HashPointerToSeqNum( char* ptr);

extern void           ReleasePointerSeqNum(char* ptr);

extern void           RecordPointer(char* ptr);

extern void           PushPointerSet();

extern void           ReleasePointersPopSet();


#ifdef __cplusplus
}
#endif

/*===---------------------------------------------------------------------===*/

#endif