summaryrefslogtreecommitdiff
path: root/src/vm/sampleprofiler.h
blob: 2c7466f4c9d659014cd50a7072923a3da61adbee (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
41
42
43
44
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#ifndef __SAMPLEPROFILER_H__
#define __SAMPLEPROFILER_H__

#include "common.h"
#include "eventpipe.h"

class SampleProfiler
{
    public:

        // Enable profiling.
        static void Enable();

        // Disable profiling.
        static void Disable();

    private:

        // Iterate through all managed threads and walk all stacks.
        static void WalkManagedThreads();

        // Profiling thread proc.  Invoked on a new thread when profiling is enabled.
        static DWORD WINAPI SampleProfiler::ThreadProc(void *args);

        // True when profiling is enabled.
        static Volatile<BOOL> s_profilingEnabled;

        // The sampling thread.
        static Thread *s_pSamplingThread;

        // Thread shutdown event for synchronization between Disable() and the sampling thread.
        static CLREventStatic s_threadShutdownEvent;

#ifdef FEATURE_PAL
        // The sampling rate.
        static long s_samplingRateInNs;
#endif
};

#endif // __SAMPLEPROFILER_H__