-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlock_profiler.h
49 lines (35 loc) · 1.08 KB
/
lock_profiler.h
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
41
42
43
44
45
46
47
48
#ifndef _LOCK_PROFILER_H_
#define _LOCK_PROFILER_H_
#include <string>
#include <vector>
#include <time.h>
#include "agent.h"
#include "profile_recorder.h"
using namespace std;
static unsigned int g_seed = time(NULL);
inline void fast_srand( int seed ) {
g_seed = seed;
}
inline int fastrand() {
g_seed = (214013*g_seed+2531011);
return (g_seed>>16)&0x7FFF;
}
class LockProfiler {
public:
ProfileRecorder* profile_recorder;
long sampling_rate;
long max_samples;
atomic<long> num_samples{0};
long start_ts = 0;
LockProfiler() {
profile_recorder = new ProfileRecorder();
}
bool SetupProfiler();
void DestroyProfiler();
void StartProfiler();
void StopProfiler();
void RecordLock(long enter_ts, long wait_time);
static void JNICALL MonitorContendedEnter(jvmtiEnv* jvmti, JNIEnv* env, jthread thread, jobject object);
static void JNICALL MonitorContendedEntered(jvmtiEnv* jvmti, JNIEnv* env, jthread thread, jobject object);
};
#endif // _LOCK_PROFILER_H_