The event firing in Native AOT is under a mix of FEATURE_EVENT_TRACE and FEATURE_ETW.
Some things don't even attempt to fire:
|
#ifdef FEATURE_ETW |
|
ETW::GCLog::ETW_GC_INFO gcStartInfo; |
|
gcStartInfo.GCStart.Count = count; |
|
gcStartInfo.GCStart.Depth = depth; |
|
gcStartInfo.GCStart.Reason = static_cast<ETW::GCLog::ETW_GC_INFO::GC_REASON>(reason); |
|
gcStartInfo.GCStart.Type = static_cast<ETW::GCLog::ETW_GC_INFO::GC_TYPE>(type); |
|
ETW::GCLog::FireGcStart(&gcStartInfo); |
|
#endif // FEATURE_ETW |
Implementation of ETW::GCLog is in eventtrace.cpp, which is only included on Windows:
|
list(APPEND COMMON_RUNTIME_SOURCES |
|
windows/PalRedhawkCommon.cpp |
|
windows/PalRedhawkMinWin.cpp |
|
${GC_DIR}/windows/gcenv.windows.cpp |
|
eventtrace.cpp |
|
rheventtrace.cpp |
(There's a bunch of stuff in there, so it's not quite as simple as including it on non-Windows)
Related (but more involved than): #87325
cc @LakshanF
The event firing in Native AOT is under a mix of
FEATURE_EVENT_TRACEandFEATURE_ETW.Some things don't even attempt to fire:
runtime/src/coreclr/nativeaot/Runtime/gctoclreventsink.cpp
Lines 30 to 37 in eb65022
Implementation of
ETW::GCLogis in eventtrace.cpp, which is only included on Windows:runtime/src/coreclr/nativeaot/Runtime/CMakeLists.txt
Lines 110 to 115 in c32bee1
(There's a bunch of stuff in there, so it's not quite as simple as including it on non-Windows)
Related (but more involved than): #87325
cc @LakshanF