// 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