summaryrefslogtreecommitdiff
path: root/src/vm/eventtrace.inl
blob: ad728085d67195f1ac61b2b8a191591e75d2b9e2 (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
45
46
47
48
49
// 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.

#pragma once

#ifdef FEATURE_EVENT_TRACE

FORCEINLINE bool ETW::CompilationLog::Runtime::IsEnabled()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
    } CONTRACTL_END;

    return
        ETW_TRACING_CATEGORY_ENABLED(
            MICROSOFT_WINDOWS_DOTNETRUNTIME_PROVIDER_DOTNET_Context,
            TRACE_LEVEL_INFORMATION,
            CLR_COMPILATION_KEYWORD);
}

FORCEINLINE bool ETW::CompilationLog::Rundown::IsEnabled()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
    } CONTRACTL_END;

    return
        ETW_TRACING_CATEGORY_ENABLED(
            MICROSOFT_WINDOWS_DOTNETRUNTIME_RUNDOWN_PROVIDER_DOTNET_Context,
            TRACE_LEVEL_INFORMATION,
            CLR_COMPILATION_RUNDOWN_KEYWORD);
}

FORCEINLINE bool ETW::CompilationLog::TieredCompilation::Runtime::IsEnabled()
{
    WRAPPER_NO_CONTRACT;
    return CompilationLog::Runtime::IsEnabled();
}

FORCEINLINE bool ETW::CompilationLog::TieredCompilation::Rundown::IsEnabled()
{
    WRAPPER_NO_CONTRACT;
    return CompilationLog::Rundown::IsEnabled();
}

#endif // FEATURE_EVENT_TRACE