Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NativeRuntimeEventSource.cs
Go to the documentation of this file.
5
7
8[EventSource(Guid = "E13C0D23-CCBC-4E12-931B-D9CC2EEE27E4", Name = "Microsoft-Windows-DotNETRuntime")]
9internal sealed class NativeRuntimeEventSource : EventSource
10{
11 private static class Messages
12 {
13 public const string WorkerThread = "ActiveWorkerThreadCount={0};\nRetiredWorkerThreadCount={1};\nClrInstanceID={2}";
14
15 public const string WorkerThreadAdjustmentSample = "Throughput={0};\nClrInstanceID={1}";
16
17 public const string WorkerThreadAdjustmentAdjustment = "AverageThroughput={0};\nNewWorkerThreadCount={1};\nReason={2};\nClrInstanceID={3}";
18
19 public const string WorkerThreadAdjustmentStats = "Duration={0};\nThroughput={1};\nThreadWave={2};\nThroughputWave={3};\nThroughputErrorEstimate={4};\nAverageThroughputErrorEstimate={5};\nThroughputRatio={6};\nConfidence={7};\nNewControlSetting={8};\nNewThreadWaveMagnitude={9};\nClrInstanceID={10}";
20
21 public const string IOEnqueue = "NativeOverlapped={0};\nOverlapped={1};\nMultiDequeues={2};\nClrInstanceID={3}";
22
23 public const string IO = "NativeOverlapped={0};\nOverlapped={1};\nClrInstanceID={2}";
24
25 public const string WorkingThreadCount = "Count={0};\nClrInstanceID={1}";
26 }
27
28 public static class Tasks
29 {
31
33
34 public const EventTask ThreadPool = (EventTask)23;
35
37 }
38
39 public static class Opcodes
40 {
41 public const EventOpcode IOEnqueue = (EventOpcode)13;
42
43 public const EventOpcode IODequeue = (EventOpcode)14;
44
45 public const EventOpcode Wait = (EventOpcode)90;
46
47 public const EventOpcode Sample = (EventOpcode)100;
48
49 public const EventOpcode Adjustment = (EventOpcode)101;
50
51 public const EventOpcode Stats = (EventOpcode)102;
52 }
53
65
66 public static class Keywords
67 {
69
71
73
75
77
79
81
83
85
87
89
91
93
95
97
99
101
103
105
107
109
111
113
115
117
118 public const EventKeywords StackKeyword = (EventKeywords)1073741824L;
119
121
122 public const EventKeywords DebuggerKeyword = (EventKeywords)4294967296L;
123
125
127
129
131
133
135
137
139
140 public const EventKeywords ProfilerKeyword = (EventKeywords)2199023255552L;
141 }
142
143 internal const string EventSourceName = "Microsoft-Windows-DotNETRuntime";
144
146
147 private const ushort DefaultClrInstanceId = 0;
148
149 private protected override ReadOnlySpan<byte> ProviderMetadata => new byte[34]
150 {
151 34, 0, 77, 105, 99, 114, 111, 115, 111, 102,
152 116, 45, 87, 105, 110, 100, 111, 119, 115, 45,
153 68, 111, 116, 78, 69, 84, 82, 117, 110, 116,
154 105, 109, 101, 0
155 };
156
157 [DllImport("QCall")]
158 [NonEvent]
159 internal static extern void LogThreadPoolWorkerThreadStart(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID);
160
161 [DllImport("QCall")]
162 [NonEvent]
163 internal static extern void LogThreadPoolWorkerThreadStop(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID);
164
165 [DllImport("QCall")]
166 [NonEvent]
167 internal static extern void LogThreadPoolWorkerThreadWait(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID);
168
169 [DllImport("QCall")]
170 [NonEvent]
171 internal static extern void LogThreadPoolWorkerThreadAdjustmentSample(double Throughput, ushort ClrInstanceID);
172
173 [DllImport("QCall")]
174 [NonEvent]
175 internal static extern void LogThreadPoolWorkerThreadAdjustmentAdjustment(double AverageThroughput, uint NewWorkerThreadCount, ThreadAdjustmentReasonMap Reason, ushort ClrInstanceID);
176
177 [DllImport("QCall")]
178 [NonEvent]
179 internal static extern void LogThreadPoolWorkerThreadAdjustmentStats(double Duration, double Throughput, double ThreadPoolWorkerThreadWait, double ThroughputWave, double ThroughputErrorEstimate, double AverageThroughputErrorEstimate, double ThroughputRatio, double Confidence, double NewControlSetting, ushort NewThreadWaveMagnitude, ushort ClrInstanceID);
180
181 [DllImport("QCall")]
182 [NonEvent]
183 internal static extern void LogThreadPoolIOEnqueue(IntPtr NativeOverlapped, IntPtr Overlapped, bool MultiDequeues, ushort ClrInstanceID);
184
185 [DllImport("QCall")]
186 [NonEvent]
187 internal static extern void LogThreadPoolIODequeue(IntPtr NativeOverlapped, IntPtr Overlapped, ushort ClrInstanceID);
188
189 [DllImport("QCall")]
190 [NonEvent]
191 internal static extern void LogThreadPoolWorkingThreadCount(uint Count, ushort ClrInstanceID);
192
194 {
195 }
196
197 [NonEvent]
198 internal unsafe void ProcessEvent(uint eventID, uint osThreadID, DateTime timeStamp, Guid activityId, Guid childActivityId, ReadOnlySpan<byte> payload)
199 {
201 {
202 object[] list = EventPipePayloadDecoder.DecodePayload(ref m_eventData[eventID], payload);
203 EventWrittenEventArgs eventCallbackArgs = new EventWrittenEventArgs(this, (int)eventID, &activityId, &childActivityId)
204 {
205 OSThreadId = (int)osThreadID,
206 TimeStamp = timeStamp,
207 Payload = new ReadOnlyCollection<object>(list)
208 };
209 DispatchToAllListeners(eventCallbackArgs);
210 }
211 }
212
213 [Event(50, Level = EventLevel.Informational, Message = "ActiveWorkerThreadCount={0};\nRetiredWorkerThreadCount={1};\nClrInstanceID={2}", Task = (EventTask)16, Opcode = EventOpcode.Start, Version = 0, Keywords = (EventKeywords)65536L)]
214 public void ThreadPoolWorkerThreadStart(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount = 0u, ushort ClrInstanceID = 0)
215 {
216 if (IsEnabled(EventLevel.Informational, (EventKeywords)65536L))
217 {
218 LogThreadPoolWorkerThreadStart(ActiveWorkerThreadCount, RetiredWorkerThreadCount, ClrInstanceID);
219 }
220 }
221
222 [Event(51, Level = EventLevel.Informational, Message = "ActiveWorkerThreadCount={0};\nRetiredWorkerThreadCount={1};\nClrInstanceID={2}", Task = (EventTask)16, Opcode = EventOpcode.Stop, Version = 0, Keywords = (EventKeywords)65536L)]
223 public void ThreadPoolWorkerThreadStop(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount = 0u, ushort ClrInstanceID = 0)
224 {
225 if (IsEnabled(EventLevel.Informational, (EventKeywords)65536L))
226 {
227 LogThreadPoolWorkerThreadStop(ActiveWorkerThreadCount, RetiredWorkerThreadCount, ClrInstanceID);
228 }
229 }
230
231 [MethodImpl(MethodImplOptions.NoInlining)]
232 [Event(57, Level = EventLevel.Informational, Message = "ActiveWorkerThreadCount={0};\nRetiredWorkerThreadCount={1};\nClrInstanceID={2}", Task = (EventTask)16, Opcode = (EventOpcode)90, Version = 0, Keywords = (EventKeywords)65536L)]
233 public void ThreadPoolWorkerThreadWait(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount = 0u, ushort ClrInstanceID = 0)
234 {
235 if (IsEnabled(EventLevel.Informational, (EventKeywords)65536L))
236 {
237 LogThreadPoolWorkerThreadWait(ActiveWorkerThreadCount, RetiredWorkerThreadCount, ClrInstanceID);
238 }
239 }
240
241 [Event(54, Level = EventLevel.Informational, Message = "Throughput={0};\nClrInstanceID={1}", Task = (EventTask)18, Opcode = (EventOpcode)100, Version = 0, Keywords = (EventKeywords)65536L)]
242 public void ThreadPoolWorkerThreadAdjustmentSample(double Throughput, ushort ClrInstanceID = 0)
243 {
244 if (IsEnabled(EventLevel.Informational, (EventKeywords)65536L))
245 {
246 LogThreadPoolWorkerThreadAdjustmentSample(Throughput, ClrInstanceID);
247 }
248 }
249
250 [Event(55, Level = EventLevel.Informational, Message = "AverageThroughput={0};\nNewWorkerThreadCount={1};\nReason={2};\nClrInstanceID={3}", Task = (EventTask)18, Opcode = (EventOpcode)101, Version = 0, Keywords = (EventKeywords)65536L)]
251 public void ThreadPoolWorkerThreadAdjustmentAdjustment(double AverageThroughput, uint NewWorkerThreadCount, ThreadAdjustmentReasonMap Reason, ushort ClrInstanceID = 0)
252 {
253 if (IsEnabled(EventLevel.Informational, (EventKeywords)65536L))
254 {
255 LogThreadPoolWorkerThreadAdjustmentAdjustment(AverageThroughput, NewWorkerThreadCount, Reason, ClrInstanceID);
256 }
257 }
258
259 [Event(56, Level = EventLevel.Verbose, Message = "Duration={0};\nThroughput={1};\nThreadWave={2};\nThroughputWave={3};\nThroughputErrorEstimate={4};\nAverageThroughputErrorEstimate={5};\nThroughputRatio={6};\nConfidence={7};\nNewControlSetting={8};\nNewThreadWaveMagnitude={9};\nClrInstanceID={10}", Task = (EventTask)18, Opcode = (EventOpcode)102, Version = 0, Keywords = (EventKeywords)65536L)]
260 public void ThreadPoolWorkerThreadAdjustmentStats(double Duration, double Throughput, double ThreadWave, double ThroughputWave, double ThroughputErrorEstimate, double AverageThroughputErrorEstimate, double ThroughputRatio, double Confidence, double NewControlSetting, ushort NewThreadWaveMagnitude, ushort ClrInstanceID = 0)
261 {
262 if (IsEnabled(EventLevel.Verbose, (EventKeywords)65536L))
263 {
264 LogThreadPoolWorkerThreadAdjustmentStats(Duration, Throughput, ThreadWave, ThroughputWave, ThroughputErrorEstimate, AverageThroughputErrorEstimate, ThroughputRatio, Confidence, NewControlSetting, NewThreadWaveMagnitude, ClrInstanceID);
265 }
266 }
267
268 [Event(63, Level = EventLevel.Verbose, Message = "NativeOverlapped={0};\nOverlapped={1};\nMultiDequeues={2};\nClrInstanceID={3}", Task = (EventTask)23, Opcode = (EventOpcode)13, Version = 0, Keywords = (EventKeywords)2147549184L)]
269 private void ThreadPoolIOEnqueue(IntPtr NativeOverlapped, IntPtr Overlapped, bool MultiDequeues, ushort ClrInstanceID = 0)
270 {
271 int num = Convert.ToInt32(MultiDequeues);
272 LogThreadPoolIOEnqueue(NativeOverlapped, Overlapped, MultiDequeues, ClrInstanceID);
273 }
274
275 [MethodImpl(MethodImplOptions.NoInlining)]
276 [NonEvent]
277 public void ThreadPoolIOEnqueue(RegisteredWaitHandle registeredWaitHandle)
278 {
279 if (IsEnabled(EventLevel.Verbose, (EventKeywords)2147549184L))
280 {
281 ThreadPoolIOEnqueue((IntPtr)registeredWaitHandle.GetHashCode(), IntPtr.Zero, registeredWaitHandle.Repeating, 0);
282 }
283 }
284
285 [Event(64, Level = EventLevel.Verbose, Message = "NativeOverlapped={0};\nOverlapped={1};\nClrInstanceID={2}", Task = (EventTask)23, Opcode = (EventOpcode)14, Version = 0, Keywords = (EventKeywords)2147549184L)]
286 private void ThreadPoolIODequeue(IntPtr NativeOverlapped, IntPtr Overlapped, ushort ClrInstanceID = 0)
287 {
289 }
290
291 [MethodImpl(MethodImplOptions.NoInlining)]
292 [NonEvent]
293 public void ThreadPoolIODequeue(RegisteredWaitHandle registeredWaitHandle)
294 {
295 if (IsEnabled(EventLevel.Verbose, (EventKeywords)2147549184L))
296 {
297 ThreadPoolIODequeue((IntPtr)registeredWaitHandle.GetHashCode(), IntPtr.Zero, 0);
298 }
299 }
300
301 [Event(60, Level = EventLevel.Verbose, Message = "Count={0};\nClrInstanceID={1}", Task = (EventTask)22, Opcode = EventOpcode.Start, Version = 0, Keywords = (EventKeywords)65536L)]
302 public void ThreadPoolWorkingThreadCount(uint Count, ushort ClrInstanceID = 0)
303 {
304 if (IsEnabled(EventLevel.Verbose, (EventKeywords)65536L))
305 {
306 LogThreadPoolWorkingThreadCount(Count, ClrInstanceID);
307 }
308 }
309
310 [Event(1, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
311 private void GCStart_V2(uint Count, uint Depth, uint Reason, uint Type, ushort ClrInstanceID, ulong ClientSequenceNumber)
312 {
313 throw new NotImplementedException();
314 }
315
316 [Event(2, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
317 private void GCEnd_V1(uint Count, uint Depth, ushort ClrInstanceID)
318 {
319 throw new NotImplementedException();
320 }
321
322 [Event(3, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
323 private void GCRestartEEEnd_V1(ushort ClrInstanceID)
324 {
325 throw new NotImplementedException();
326 }
327
328 [Event(4, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
329 private void GCHeapStats_V2(ulong GenerationSize0, ulong TotalPromotedSize0, ulong GenerationSize1, ulong TotalPromotedSize1, ulong GenerationSize2, ulong TotalPromotedSize2, ulong GenerationSize3, ulong TotalPromotedSize3, ulong FinalizationPromotedSize, ulong FinalizationPromotedCount, uint PinnedObjectCount, uint SinkBlockCount, uint GCHandleCount, ushort ClrInstanceID, ulong GenerationSize4, ulong TotalPromotedSize4)
330 {
331 throw new NotImplementedException();
332 }
333
334 [Event(5, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
335 private void GCCreateSegment_V1(ulong Address, ulong Size, uint Type, ushort ClrInstanceID)
336 {
337 throw new NotImplementedException();
338 }
339
340 [Event(6, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
341 private void GCFreeSegment_V1(ulong Address, ushort ClrInstanceID)
342 {
343 throw new NotImplementedException();
344 }
345
346 [Event(7, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
347 private void GCRestartEEBegin_V1(ushort ClrInstanceID)
348 {
349 throw new NotImplementedException();
350 }
351
352 [Event(8, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
353 private void GCSuspendEEEnd_V1(ushort ClrInstanceID)
354 {
355 throw new NotImplementedException();
356 }
357
358 [Event(9, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
359 private void GCSuspendEEBegin_V1(uint Reason, uint Count, ushort ClrInstanceID)
360 {
361 throw new NotImplementedException();
362 }
363
364 [Event(10, Version = 4, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
365 private void GCAllocationTick_V4(uint AllocationAmount, uint AllocationKind, ushort ClrInstanceID, ulong AllocationAmount64, IntPtr TypeID, string TypeName, uint HeapIndex, IntPtr Address, ulong ObjectSize)
366 {
367 throw new NotImplementedException();
368 }
369
370 [Event(11, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65537L)]
371 private void GCCreateConcurrentThread_V1(ushort ClrInstanceID)
372 {
373 throw new NotImplementedException();
374 }
375
376 [Event(12, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65537L)]
377 private void GCTerminateConcurrentThread_V1(ushort ClrInstanceID)
378 {
379 throw new NotImplementedException();
380 }
381
382 [Event(13, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
383 private void GCFinalizersEnd_V1(uint Count, ushort ClrInstanceID)
384 {
385 throw new NotImplementedException();
386 }
387
388 [Event(14, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
389 private void GCFinalizersBegin_V1(ushort ClrInstanceID)
390 {
391 throw new NotImplementedException();
392 }
393
394 [Event(15, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)524288L)]
395 private void BulkType(uint Count, ushort ClrInstanceID)
396 {
397 throw new NotImplementedException();
398 }
399
400 [Event(16, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
401 private void GCBulkRootEdge(uint Index, uint Count, ushort ClrInstanceID)
402 {
403 throw new NotImplementedException();
404 }
405
406 [Event(17, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
407 private void GCBulkRootConditionalWeakTableElementEdge(uint Index, uint Count, ushort ClrInstanceID)
408 {
409 throw new NotImplementedException();
410 }
411
412 [Event(18, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
413 private void GCBulkNode(uint Index, uint Count, ushort ClrInstanceID)
414 {
415 throw new NotImplementedException();
416 }
417
418 [Event(19, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
419 private void GCBulkEdge(uint Index, uint Count, ushort ClrInstanceID)
420 {
421 throw new NotImplementedException();
422 }
423
424 [Event(20, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2097152L)]
425 private void GCSampledObjectAllocationHigh(IntPtr Address, IntPtr TypeID, uint ObjectCountForTypeSample, ulong TotalSizeForTypeSample, ushort ClrInstanceID)
426 {
427 throw new NotImplementedException();
428 }
429
430 [Event(21, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4194304L)]
431 private void GCBulkSurvivingObjectRanges(uint Index, uint Count, ushort ClrInstanceID)
432 {
433 throw new NotImplementedException();
434 }
435
436 [Event(22, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4194304L)]
437 private void GCBulkMovedObjectRanges(uint Index, uint Count, ushort ClrInstanceID)
438 {
439 throw new NotImplementedException();
440 }
441
442 [Event(23, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4194304L)]
443 private void GCGenerationRange(byte Generation, IntPtr RangeStart, ulong RangeUsedLength, ulong RangeReservedLength, ushort ClrInstanceID)
444 {
445 throw new NotImplementedException();
446 }
447
448 [Event(25, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
449 private void GCMarkStackRoots(uint HeapNum, ushort ClrInstanceID)
450 {
451 throw new NotImplementedException();
452 }
453
454 [Event(26, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
455 private void GCMarkFinalizeQueueRoots(uint HeapNum, ushort ClrInstanceID)
456 {
457 throw new NotImplementedException();
458 }
459
460 [Event(27, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
461 private void GCMarkHandles(uint HeapNum, ushort ClrInstanceID)
462 {
463 throw new NotImplementedException();
464 }
465
466 [Event(28, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
467 private void GCMarkOlderGenerationRoots(uint HeapNum, ushort ClrInstanceID)
468 {
469 throw new NotImplementedException();
470 }
471
472 [Event(29, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
473 private void FinalizeObject(IntPtr TypeID, IntPtr ObjectID, ushort ClrInstanceID)
474 {
475 throw new NotImplementedException();
476 }
477
478 [Event(30, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2L)]
479 private void SetGCHandle(IntPtr HandleID, IntPtr ObjectID, uint Kind, uint Generation, ulong AppDomainID, ushort ClrInstanceID)
480 {
481 throw new NotImplementedException();
482 }
483
484 [Event(31, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2L)]
485 private void DestroyGCHandle(IntPtr HandleID, ushort ClrInstanceID)
486 {
487 throw new NotImplementedException();
488 }
489
490 [Event(32, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)33554432L)]
491 private void GCSampledObjectAllocationLow(IntPtr Address, IntPtr TypeID, uint ObjectCountForTypeSample, ulong TotalSizeForTypeSample, ushort ClrInstanceID)
492 {
493 throw new NotImplementedException();
494 }
495
496 [Event(33, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
497 private void PinObjectAtGCTime(IntPtr HandleID, IntPtr ObjectID, ulong ObjectSize, string TypeName, ushort ClrInstanceID)
498 {
499 throw new NotImplementedException();
500 }
501
502 [Event(35, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
503 private void GCTriggered(uint Reason, ushort ClrInstanceID)
504 {
505 throw new NotImplementedException();
506 }
507
508 [Event(36, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
509 private void GCBulkRootCCW(uint Count, ushort ClrInstanceID)
510 {
511 throw new NotImplementedException();
512 }
513
514 [Event(37, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
515 private void GCBulkRCW(uint Count, ushort ClrInstanceID)
516 {
517 throw new NotImplementedException();
518 }
519
520 [Event(38, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
521 private void GCBulkRootStaticVar(uint Count, ulong AppDomainID, ushort ClrInstanceID)
522 {
523 throw new NotImplementedException();
524 }
525
526 [Event(39, Version = 0, Level = EventLevel.LogAlways, Keywords = (EventKeywords)66060291L)]
527 private void GCDynamicEvent(string Name, uint DataSize)
528 {
529 throw new NotImplementedException();
530 }
531
532 [Event(40, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
533 private void WorkerThreadCreate(uint WorkerThreadCount, uint RetiredWorkerThreads)
534 {
535 throw new NotImplementedException();
536 }
537
538 [Event(41, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
539 private void WorkerThreadTerminate(uint WorkerThreadCount, uint RetiredWorkerThreads)
540 {
541 throw new NotImplementedException();
542 }
543
544 [Event(42, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
545 private void WorkerThreadRetire(uint WorkerThreadCount, uint RetiredWorkerThreads)
546 {
547 throw new NotImplementedException();
548 }
549
550 [Event(43, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
551 private void WorkerThreadUnretire(uint WorkerThreadCount, uint RetiredWorkerThreads)
552 {
553 throw new NotImplementedException();
554 }
555
556 [Event(44, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
557 private void IOThreadCreate_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
558 {
559 throw new NotImplementedException();
560 }
561
562 [Event(45, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
563 private void IOThreadTerminate_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
564 {
565 throw new NotImplementedException();
566 }
567
568 [Event(46, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
569 private void IOThreadRetire_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
570 {
571 throw new NotImplementedException();
572 }
573
574 [Event(47, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
575 private void IOThreadUnretire_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
576 {
577 throw new NotImplementedException();
578 }
579
580 [Event(48, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
581 private void ThreadpoolSuspensionSuspendThread(uint ClrThreadID, uint CpuUtilization)
582 {
583 throw new NotImplementedException();
584 }
585
586 [Event(49, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
587 private void ThreadpoolSuspensionResumeThread(uint ClrThreadID, uint CpuUtilization)
588 {
589 throw new NotImplementedException();
590 }
591
592 [Event(58, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)65536L)]
593 private void YieldProcessorMeasurement(ushort ClrInstanceID, double NsPerYield, double EstablishedNsPerYield)
594 {
595 throw new NotImplementedException();
596 }
597
598 [Event(70, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2147549184L)]
599 private void ThreadCreating(IntPtr ID, ushort ClrInstanceID)
600 {
601 throw new NotImplementedException();
602 }
603
604 [Event(71, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2147549184L)]
605 private void ThreadRunning(IntPtr ID, ushort ClrInstanceID)
606 {
607 throw new NotImplementedException();
608 }
609
610 [Event(72, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)274877906944L)]
611 private void MethodDetails(ulong MethodID, ulong TypeID, uint MethodToken, uint TypeParameterCount, ulong LoaderModuleID)
612 {
613 throw new NotImplementedException();
614 }
615
616 [Event(73, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)549755813888L)]
617 private void TypeLoadStart(uint TypeLoadStartID, ushort ClrInstanceID)
618 {
619 throw new NotImplementedException();
620 }
621
622 [Event(74, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)549755813888L)]
623 private void TypeLoadStop(uint TypeLoadStartID, ushort ClrInstanceID, ushort LoadLevel, ulong TypeID, string TypeName)
624 {
625 throw new NotImplementedException();
626 }
627
628 [Event(80, Version = 1, Level = EventLevel.Error, Keywords = (EventKeywords)8589967360L)]
629 private void ExceptionThrown_V1(string ExceptionType, string ExceptionMessage, IntPtr ExceptionEIP, uint ExceptionHRESULT, ushort ExceptionFlags, ushort ClrInstanceID)
630 {
631 throw new NotImplementedException();
632 }
633
634 [Event(250, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
635 private void ExceptionCatchStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
636 {
637 throw new NotImplementedException();
638 }
639
640 [Event(251, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
641 private void ExceptionCatchStop()
642 {
643 throw new NotImplementedException();
644 }
645
646 [Event(252, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
647 private void ExceptionFinallyStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
648 {
649 throw new NotImplementedException();
650 }
651
652 [Event(253, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
653 private void ExceptionFinallyStop()
654 {
655 throw new NotImplementedException();
656 }
657
658 [Event(254, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
659 private void ExceptionFilterStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
660 {
661 throw new NotImplementedException();
662 }
663
664 [Event(255, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
665 private void ExceptionFilterStop()
666 {
667 throw new NotImplementedException();
668 }
669
670 [Event(256, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)32768L)]
671 private void ExceptionThrownStop()
672 {
673 throw new NotImplementedException();
674 }
675
676 [Event(81, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)16384L)]
677 private void ContentionStart_V1(byte ContentionFlags, ushort ClrInstanceID)
678 {
679 throw new NotImplementedException();
680 }
681
682 [Event(91, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)16384L)]
683 private void ContentionStop_V1(byte ContentionFlags, ushort ClrInstanceID, double DurationNs)
684 {
685 throw new NotImplementedException();
686 }
687
688 [Event(82, Version = 0, Level = EventLevel.LogAlways, Keywords = (EventKeywords)1073741824L)]
689 private void CLRStackWalk(ushort ClrInstanceID, byte Reserved1, byte Reserved2, uint FrameCount)
690 {
691 throw new NotImplementedException();
692 }
693
694 [Event(83, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2048L)]
695 private void AppDomainMemAllocated(ulong AppDomainID, ulong Allocated, ushort ClrInstanceID)
696 {
697 throw new NotImplementedException();
698 }
699
700 [Event(84, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2048L)]
701 private void AppDomainMemSurvived(ulong AppDomainID, ulong Survived, ulong ProcessSurvived, ushort ClrInstanceID)
702 {
703 throw new NotImplementedException();
704 }
705
706 [Event(85, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)67584L)]
707 private void ThreadCreated(ulong ManagedThreadID, ulong AppDomainID, uint Flags, uint ManagedThreadIndex, uint OSThreadID, ushort ClrInstanceID)
708 {
709 throw new NotImplementedException();
710 }
711
712 [Event(86, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)67584L)]
713 private void ThreadTerminated(ulong ManagedThreadID, ulong AppDomainID, ushort ClrInstanceID)
714 {
715 throw new NotImplementedException();
716 }
717
718 [Event(87, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)67584L)]
719 private void ThreadDomainEnter(ulong ManagedThreadID, ulong AppDomainID, ushort ClrInstanceID)
720 {
721 throw new NotImplementedException();
722 }
723
724 [Event(88, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)8192L)]
725 private void ILStubGenerated(ushort ClrInstanceID, ulong ModuleID, ulong StubMethodID, uint StubFlags, uint ManagedInteropMethodToken, string ManagedInteropMethodNamespace, string ManagedInteropMethodName, string ManagedInteropMethodSignature, string NativeMethodSignature, string StubMethodSignature, string StubMethodILCode)
726 {
727 throw new NotImplementedException();
728 }
729
730 [Event(89, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)8192L)]
731 private void ILStubCacheHit(ushort ClrInstanceID, ulong ModuleID, ulong StubMethodID, uint ManagedInteropMethodToken, string ManagedInteropMethodNamespace, string ManagedInteropMethodName, string ManagedInteropMethodSignature)
732 {
733 throw new NotImplementedException();
734 }
735
736 [Event(135, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
737 private void DCStartCompleteV2()
738 {
739 throw new NotImplementedException();
740 }
741
742 [Event(136, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
743 private void DCEndCompleteV2()
744 {
745 throw new NotImplementedException();
746 }
747
748 [Event(137, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
749 private void MethodDCStartV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags)
750 {
751 throw new NotImplementedException();
752 }
753
754 [Event(138, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
755 private void MethodDCEndV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags)
756 {
757 throw new NotImplementedException();
758 }
759
760 [Event(139, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
761 private void MethodDCStartVerboseV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature)
762 {
763 throw new NotImplementedException();
764 }
765
766 [Event(140, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
767 private void MethodDCEndVerboseV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature)
768 {
769 throw new NotImplementedException();
770 }
771
772 [Event(141, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
773 private void MethodLoad_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, ushort ClrInstanceID, ulong ReJITID)
774 {
775 throw new NotImplementedException();
776 }
777
778 [Event(159, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)137438953472L)]
779 private void R2RGetEntryPoint(ulong MethodID, string MethodNamespace, string MethodName, string MethodSignature, ulong EntryPoint, ushort ClrInstanceID)
780 {
781 throw new NotImplementedException();
782 }
783
784 [Event(160, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)137438953472L)]
785 private void R2RGetEntryPointStart(ulong MethodID, ushort ClrInstanceID)
786 {
787 throw new NotImplementedException();
788 }
789
790 [Event(142, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
791 private void MethodUnload_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, ushort ClrInstanceID, ulong ReJITID)
792 {
793 throw new NotImplementedException();
794 }
795
796 [Event(143, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
797 private void MethodLoadVerbose_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID, ulong ReJITID)
798 {
799 throw new NotImplementedException();
800 }
801
802 [Event(144, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)48L)]
803 private void MethodUnloadVerbose_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID, ulong ReJITID)
804 {
805 throw new NotImplementedException();
806 }
807
808 [Event(145, Version = 1, Level = EventLevel.Verbose, Keywords = (EventKeywords)16L)]
809 private void MethodJittingStarted_V1(ulong MethodID, ulong ModuleID, uint MethodToken, uint MethodILSize, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID)
810 {
811 throw new NotImplementedException();
812 }
813
814 [Event(146, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)16L)]
815 private void MethodJitMemoryAllocatedForCode(ulong MethodID, ulong ModuleID, ulong JitHotCodeRequestSize, ulong JitRODataRequestSize, ulong AllocatedSizeForJitCode, uint JitAllocFlag, ushort ClrInstanceID)
816 {
817 throw new NotImplementedException();
818 }
819
820 [Event(185, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
821 private void MethodJitInliningSucceeded(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, ushort ClrInstanceID)
822 {
823 throw new NotImplementedException();
824 }
825
826 [Event(186, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
827 private void MethodJitInliningFailedAnsi(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, bool FailAlways)
828 {
829 throw new NotImplementedException();
830 }
831
832 [Event(188, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
833 private void MethodJitTailCallSucceeded(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix, uint TailCallType, ushort ClrInstanceID)
834 {
835 throw new NotImplementedException();
836 }
837
838 [Event(189, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
839 private void MethodJitTailCallFailedAnsi(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix)
840 {
841 throw new NotImplementedException();
842 }
843
844 [Event(190, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)131072L)]
845 private void MethodILToNativeMap(ulong MethodID, ulong ReJITID, byte MethodExtent, ushort CountOfMapEntries)
846 {
847 throw new NotImplementedException();
848 }
849
850 [Event(191, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
851 private void MethodJitTailCallFailed(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix, string FailReason, ushort ClrInstanceID)
852 {
853 throw new NotImplementedException();
854 }
855
856 [Event(192, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)4096L)]
857 private void MethodJitInliningFailed(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, bool FailAlways, string FailReason, ushort ClrInstanceID)
858 {
859 throw new NotImplementedException();
860 }
861
862 [Event(149, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
863 private void ModuleDCStartV2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath)
864 {
865 throw new NotImplementedException();
866 }
867
868 [Event(150, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
869 private void ModuleDCEndV2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath)
870 {
871 throw new NotImplementedException();
872 }
873
874 [Event(151, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
875 private void DomainModuleLoad_V1(ulong ModuleID, ulong AssemblyID, ulong AppDomainID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID)
876 {
877 throw new NotImplementedException();
878 }
879
880 [Event(152, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)536870920L)]
881 private void ModuleLoad_V2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID, Guid ManagedPdbSignature, uint ManagedPdbAge, string ManagedPdbBuildPath, Guid NativePdbSignature, uint NativePdbAge, string NativePdbBuildPath)
882 {
883 throw new NotImplementedException();
884 }
885
886 [Event(153, Version = 2, Level = EventLevel.Informational, Keywords = (EventKeywords)536870920L)]
887 private void ModuleUnload_V2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID, Guid ManagedPdbSignature, uint ManagedPdbAge, string ManagedPdbBuildPath, Guid NativePdbSignature, uint NativePdbAge, string NativePdbBuildPath)
888 {
889 throw new NotImplementedException();
890 }
891
892 [Event(154, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
893 private void AssemblyLoad_V1(ulong AssemblyID, ulong AppDomainID, ulong BindingID, uint AssemblyFlags, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
894 {
895 throw new NotImplementedException();
896 }
897
898 [Event(155, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
899 private void AssemblyUnload_V1(ulong AssemblyID, ulong AppDomainID, ulong BindingID, uint AssemblyFlags, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
900 {
901 throw new NotImplementedException();
902 }
903
904 [Event(156, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
905 private void AppDomainLoad_V1(ulong AppDomainID, uint AppDomainFlags, string AppDomainName, uint AppDomainIndex, ushort ClrInstanceID)
906 {
907 throw new NotImplementedException();
908 }
909
910 [Event(157, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)8L)]
911 private void AppDomainUnload_V1(ulong AppDomainID, uint AppDomainFlags, string AppDomainName, uint AppDomainIndex, ushort ClrInstanceID)
912 {
913 throw new NotImplementedException();
914 }
915
916 [Event(158, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)536870912L)]
917 private void ModuleRangeLoad(ushort ClrInstanceID, ulong ModuleID, uint RangeBegin, uint RangeSize, byte RangeType)
918 {
919 throw new NotImplementedException();
920 }
921
922 [Event(181, Version = 1, Level = EventLevel.Verbose, Keywords = (EventKeywords)1024L)]
923 private void StrongNameVerificationStart_V1(uint VerificationFlags, uint ErrorCode, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
924 {
925 throw new NotImplementedException();
926 }
927
928 [Event(182, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1024L)]
929 private void StrongNameVerificationStop_V1(uint VerificationFlags, uint ErrorCode, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
930 {
931 throw new NotImplementedException();
932 }
933
934 [Event(183, Version = 1, Level = EventLevel.Verbose, Keywords = (EventKeywords)1024L)]
935 private void AuthenticodeVerificationStart_V1(uint VerificationFlags, uint ErrorCode, string ModulePath, ushort ClrInstanceID)
936 {
937 throw new NotImplementedException();
938 }
939
940 [Event(184, Version = 1, Level = EventLevel.Informational, Keywords = (EventKeywords)1024L)]
941 private void AuthenticodeVerificationStop_V1(uint VerificationFlags, uint ErrorCode, string ModulePath, ushort ClrInstanceID)
942 {
943 throw new NotImplementedException();
944 }
945
946 [Event(187, Version = 0, Level = EventLevel.Informational)]
947 private void RuntimeInformationStart(ushort ClrInstanceID, ushort Sku, ushort BclMajorVersion, ushort BclMinorVersion, ushort BclBuildNumber, ushort BclQfeNumber, ushort VMMajorVersion, ushort VMMinorVersion, ushort VMBuildNumber, ushort VMQfeNumber, uint StartupFlags, byte StartupMode, string CommandLine, Guid ComObjectGuid, string RuntimeDllPath)
948 {
949 throw new NotImplementedException();
950 }
951
952 [Event(200, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
953 private void IncreaseMemoryPressure(ulong BytesAllocated, ushort ClrInstanceID)
954 {
955 throw new NotImplementedException();
956 }
957
958 [Event(201, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
959 private void DecreaseMemoryPressure(ulong BytesFreed, ushort ClrInstanceID)
960 {
961 throw new NotImplementedException();
962 }
963
964 [Event(202, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
965 private void GCMarkWithType(uint HeapNum, ushort ClrInstanceID, uint Type, ulong Bytes)
966 {
967 throw new NotImplementedException();
968 }
969
970 [Event(203, Version = 2, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
971 private void GCJoin_V2(uint Heap, uint JoinTime, uint JoinType, ushort ClrInstanceID, uint JoinID)
972 {
973 throw new NotImplementedException();
974 }
975
976 [Event(204, Version = 3, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
977 private void GCPerHeapHistory_V3(ushort ClrInstanceID, IntPtr FreeListAllocated, IntPtr FreeListRejected, IntPtr EndOfSegAllocated, IntPtr CondemnedAllocated, IntPtr PinnedAllocated, IntPtr PinnedAllocatedAdvance, uint RunningFreeListEfficiency, uint CondemnReasons0, uint CondemnReasons1, uint CompactMechanisms, uint ExpandMechanisms, uint HeapIndex, IntPtr ExtraGen0Commit, uint Count)
978 {
979 throw new NotImplementedException();
980 }
981
982 [Event(205, Version = 4, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
983 private void GCGlobalHeapHistory_V4(ulong FinalYoungestDesired, int NumHeaps, uint CondemnedGeneration, uint Gen0ReductionCount, uint Reason, uint GlobalMechanisms, ushort ClrInstanceID, uint PauseMode, uint MemoryPressure, uint CondemnReasons0, uint CondemnReasons1, uint Count)
984 {
985 throw new NotImplementedException();
986 }
987
988 [Event(206, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
989 private void GenAwareBegin(uint Count, ushort ClrInstanceID)
990 {
991 throw new NotImplementedException();
992 }
993
994 [Event(207, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1048576L)]
995 private void GenAwareEnd(uint Count, ushort ClrInstanceID)
996 {
997 throw new NotImplementedException();
998 }
999
1000 [Event(208, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1L)]
1001 private void GCLOHCompact(ushort ClrInstanceID, ushort Count)
1002 {
1003 throw new NotImplementedException();
1004 }
1005
1006 [Event(209, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)1L)]
1007 private void GCFitBucketInfo(ushort ClrInstanceID, ushort BucketKind, ulong TotalSize, ushort Count)
1008 {
1009 throw new NotImplementedException();
1010 }
1011
1012 [Event(240, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4294967296L)]
1013 private void DebugIPCEventStart()
1014 {
1015 throw new NotImplementedException();
1016 }
1017
1018 [Event(241, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4294967296L)]
1019 private void DebugIPCEventEnd()
1020 {
1021 throw new NotImplementedException();
1022 }
1023
1024 [Event(242, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4294967296L)]
1026 {
1027 throw new NotImplementedException();
1028 }
1029
1030 [Event(243, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4294967296L)]
1032 {
1033 throw new NotImplementedException();
1034 }
1035
1036 [Event(260, Version = 0, Level = EventLevel.Verbose, Keywords = (EventKeywords)17179869184L)]
1037 private void CodeSymbols(ulong ModuleId, ushort TotalChunks, ushort ChunkNumber, uint ChunkLength)
1038 {
1039 throw new NotImplementedException();
1040 }
1041
1042 [Event(270, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)34359738368L)]
1043 private void EventSource(int EventID, string EventName, string EventSourceName, string Payload)
1044 {
1045 throw new NotImplementedException();
1046 }
1047
1048 [Event(280, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)68719476736L)]
1049 private void TieredCompilationSettings(ushort ClrInstanceID, uint Flags)
1050 {
1051 throw new NotImplementedException();
1052 }
1053
1054 [Event(281, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)68719476736L)]
1055 private void TieredCompilationPause(ushort ClrInstanceID)
1056 {
1057 throw new NotImplementedException();
1058 }
1059
1060 [Event(282, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)68719476736L)]
1061 private void TieredCompilationResume(ushort ClrInstanceID, uint NewMethodCount)
1062 {
1063 throw new NotImplementedException();
1064 }
1065
1066 [Event(283, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)68719476736L)]
1067 private void TieredCompilationBackgroundJitStart(ushort ClrInstanceID, uint PendingMethodCount)
1068 {
1069 throw new NotImplementedException();
1070 }
1071
1072 [Event(284, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)68719476736L)]
1073 private void TieredCompilationBackgroundJitStop(ushort ClrInstanceID, uint PendingMethodCount, uint JittedMethodCount)
1074 {
1075 throw new NotImplementedException();
1076 }
1077
1078 [Event(290, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1079 private void AssemblyLoadStart(ushort ClrInstanceID, string AssemblyName, string AssemblyPath, string RequestingAssembly, string AssemblyLoadContext, string RequestingAssemblyLoadContext)
1080 {
1081 throw new NotImplementedException();
1082 }
1083
1084 [Event(291, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1085 private void AssemblyLoadStop(ushort ClrInstanceID, string AssemblyName, string AssemblyPath, string RequestingAssembly, string AssemblyLoadContext, string RequestingAssemblyLoadContext, bool Success, string ResultAssemblyName, string ResultAssemblyPath, bool Cached)
1086 {
1087 throw new NotImplementedException();
1088 }
1089
1090 [Event(292, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1091 private void ResolutionAttempted(ushort ClrInstanceID, string AssemblyName, ushort Stage, string AssemblyLoadContext, ushort Result, string ResultAssemblyName, string ResultAssemblyPath, string ErrorMessage)
1092 {
1093 throw new NotImplementedException();
1094 }
1095
1096 [Event(293, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1097 private void AssemblyLoadContextResolvingHandlerInvoked(ushort ClrInstanceID, string AssemblyName, string HandlerName, string AssemblyLoadContext, string ResultAssemblyName, string ResultAssemblyPath)
1098 {
1099 throw new NotImplementedException();
1100 }
1101
1102 [Event(294, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1103 private void AppDomainAssemblyResolveHandlerInvoked(ushort ClrInstanceID, string AssemblyName, string HandlerName, string ResultAssemblyName, string ResultAssemblyPath)
1104 {
1105 throw new NotImplementedException();
1106 }
1107
1108 [Event(295, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1109 private void AssemblyLoadFromResolveHandlerInvoked(ushort ClrInstanceID, string AssemblyName, bool IsTrackedLoad, string RequestingAssemblyPath, string ComputedRequestedAssemblyPath)
1110 {
1111 throw new NotImplementedException();
1112 }
1113
1114 [Event(296, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)4L)]
1115 private void KnownPathProbed(ushort ClrInstanceID, string FilePath, ushort Source, int Result)
1116 {
1117 throw new NotImplementedException();
1118 }
1119
1120 [Event(297, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1099511627776L)]
1121 private void JitInstrumentationData(ushort ClrInstanceID, uint MethodFlags, uint DataSize, ulong MethodID)
1122 {
1123 throw new NotImplementedException();
1124 }
1125
1126 [Event(298, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)1099511627776L)]
1127 private void JitInstrumentationDataVerbose(ushort ClrInstanceID, uint MethodFlags, uint DataSize, ulong MethodID, ulong ModuleID, uint MethodToken, string MethodNamespace, string MethodName, string MethodSignature)
1128 {
1129 throw new NotImplementedException();
1130 }
1131
1132 [Event(299, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)2199023255552L)]
1133 private void ProfilerMessage(ushort ClrInstanceID, string Message)
1134 {
1135 throw new NotImplementedException();
1136 }
1137
1138 [Event(300, Version = 0, Level = EventLevel.Informational, Keywords = (EventKeywords)536870912L)]
1139 private void ExecutionCheckpoint(ushort ClrInstanceID, string Name, long Timestamp)
1140 {
1141 throw new NotImplementedException();
1142 }
1143
1145 : base(new Guid(3778809123u, 52412, 19986, 147, 27, 217, 204, 46, 238, 39, 228), "Microsoft-Windows-DotNETRuntime")
1146 {
1147 }
1148}
static int ToInt32(object? value)
Definition Convert.cs:1320
static object[] DecodePayload(ref EventSource.EventMetadata metadata, ReadOnlySpan< byte > payload)
void DispatchToAllListeners(EventWrittenEventArgs eventCallbackArgs)
volatile EventMetadata[] m_eventData
void GCMarkStackRoots(uint HeapNum, ushort ClrInstanceID)
void ExceptionCatchStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
void GCStart_V2(uint Count, uint Depth, uint Reason, uint Type, ushort ClrInstanceID, ulong ClientSequenceNumber)
static void LogThreadPoolIOEnqueue(IntPtr NativeOverlapped, IntPtr Overlapped, bool MultiDequeues, ushort ClrInstanceID)
void MethodJitInliningFailedAnsi(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, bool FailAlways)
void GCMarkHandles(uint HeapNum, ushort ClrInstanceID)
void GCMarkFinalizeQueueRoots(uint HeapNum, ushort ClrInstanceID)
void WorkerThreadUnretire(uint WorkerThreadCount, uint RetiredWorkerThreads)
void GCMarkWithType(uint HeapNum, ushort ClrInstanceID, uint Type, ulong Bytes)
void KnownPathProbed(ushort ClrInstanceID, string FilePath, ushort Source, int Result)
void MethodILToNativeMap(ulong MethodID, ulong ReJITID, byte MethodExtent, ushort CountOfMapEntries)
void MethodJitTailCallFailedAnsi(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix)
void DestroyGCHandle(IntPtr HandleID, ushort ClrInstanceID)
void GCBulkRootConditionalWeakTableElementEdge(uint Index, uint Count, ushort ClrInstanceID)
void ThreadPoolIODequeue(RegisteredWaitHandle registeredWaitHandle)
void ThreadPoolWorkerThreadStop(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount=0u, ushort ClrInstanceID=0)
void GCHeapStats_V2(ulong GenerationSize0, ulong TotalPromotedSize0, ulong GenerationSize1, ulong TotalPromotedSize1, ulong GenerationSize2, ulong TotalPromotedSize2, ulong GenerationSize3, ulong TotalPromotedSize3, ulong FinalizationPromotedSize, ulong FinalizationPromotedCount, uint PinnedObjectCount, uint SinkBlockCount, uint GCHandleCount, ushort ClrInstanceID, ulong GenerationSize4, ulong TotalPromotedSize4)
static void LogThreadPoolWorkerThreadAdjustmentStats(double Duration, double Throughput, double ThreadPoolWorkerThreadWait, double ThroughputWave, double ThroughputErrorEstimate, double AverageThroughputErrorEstimate, double ThroughputRatio, double Confidence, double NewControlSetting, ushort NewThreadWaveMagnitude, ushort ClrInstanceID)
void ILStubGenerated(ushort ClrInstanceID, ulong ModuleID, ulong StubMethodID, uint StubFlags, uint ManagedInteropMethodToken, string ManagedInteropMethodNamespace, string ManagedInteropMethodName, string ManagedInteropMethodSignature, string NativeMethodSignature, string StubMethodSignature, string StubMethodILCode)
void GCFreeSegment_V1(ulong Address, ushort ClrInstanceID)
unsafe void ProcessEvent(uint eventID, uint osThreadID, DateTime timeStamp, Guid activityId, Guid childActivityId, ReadOnlySpan< byte > payload)
void AssemblyUnload_V1(ulong AssemblyID, ulong AppDomainID, ulong BindingID, uint AssemblyFlags, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
void EventSource(int EventID, string EventName, string EventSourceName, string Payload)
void GCGlobalHeapHistory_V4(ulong FinalYoungestDesired, int NumHeaps, uint CondemnedGeneration, uint Gen0ReductionCount, uint Reason, uint GlobalMechanisms, ushort ClrInstanceID, uint PauseMode, uint MemoryPressure, uint CondemnReasons0, uint CondemnReasons1, uint Count)
void GCMarkOlderGenerationRoots(uint HeapNum, ushort ClrInstanceID)
void ThreadPoolWorkerThreadStart(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount=0u, ushort ClrInstanceID=0)
void AuthenticodeVerificationStop_V1(uint VerificationFlags, uint ErrorCode, string ModulePath, ushort ClrInstanceID)
void MethodDCEndVerboseV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature)
void MethodUnloadVerbose_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID, ulong ReJITID)
void ResolutionAttempted(ushort ClrInstanceID, string AssemblyName, ushort Stage, string AssemblyLoadContext, ushort Result, string ResultAssemblyName, string ResultAssemblyPath, string ErrorMessage)
void GCPerHeapHistory_V3(ushort ClrInstanceID, IntPtr FreeListAllocated, IntPtr FreeListRejected, IntPtr EndOfSegAllocated, IntPtr CondemnedAllocated, IntPtr PinnedAllocated, IntPtr PinnedAllocatedAdvance, uint RunningFreeListEfficiency, uint CondemnReasons0, uint CondemnReasons1, uint CompactMechanisms, uint ExpandMechanisms, uint HeapIndex, IntPtr ExtraGen0Commit, uint Count)
void ProfilerMessage(ushort ClrInstanceID, string Message)
void PinObjectAtGCTime(IntPtr HandleID, IntPtr ObjectID, ulong ObjectSize, string TypeName, ushort ClrInstanceID)
void AppDomainMemSurvived(ulong AppDomainID, ulong Survived, ulong ProcessSurvived, ushort ClrInstanceID)
void AssemblyLoad_V1(ulong AssemblyID, ulong AppDomainID, ulong BindingID, uint AssemblyFlags, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
void ContentionStop_V1(byte ContentionFlags, ushort ClrInstanceID, double DurationNs)
void CodeSymbols(ulong ModuleId, ushort TotalChunks, ushort ChunkNumber, uint ChunkLength)
void StrongNameVerificationStop_V1(uint VerificationFlags, uint ErrorCode, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
void WorkerThreadTerminate(uint WorkerThreadCount, uint RetiredWorkerThreads)
void GCLOHCompact(ushort ClrInstanceID, ushort Count)
void MethodJitInliningFailed(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, bool FailAlways, string FailReason, ushort ClrInstanceID)
static void LogThreadPoolWorkerThreadStart(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID)
void ThreadTerminated(ulong ManagedThreadID, ulong AppDomainID, ushort ClrInstanceID)
void TieredCompilationSettings(ushort ClrInstanceID, uint Flags)
void GCBulkRootEdge(uint Index, uint Count, ushort ClrInstanceID)
static void LogThreadPoolWorkerThreadWait(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID)
void MethodDCEndV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags)
void ThreadDomainEnter(ulong ManagedThreadID, ulong AppDomainID, ushort ClrInstanceID)
void TieredCompilationBackgroundJitStop(ushort ClrInstanceID, uint PendingMethodCount, uint JittedMethodCount)
void ModuleRangeLoad(ushort ClrInstanceID, ulong ModuleID, uint RangeBegin, uint RangeSize, byte RangeType)
void MethodDCStartV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags)
void ThreadPoolWorkerThreadWait(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount=0u, ushort ClrInstanceID=0)
void DomainModuleLoad_V1(ulong ModuleID, ulong AssemblyID, ulong AppDomainID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID)
void AppDomainLoad_V1(ulong AppDomainID, uint AppDomainFlags, string AppDomainName, uint AppDomainIndex, ushort ClrInstanceID)
void ThreadPoolIOEnqueue(RegisteredWaitHandle registeredWaitHandle)
void R2RGetEntryPointStart(ulong MethodID, ushort ClrInstanceID)
void GCSampledObjectAllocationLow(IntPtr Address, IntPtr TypeID, uint ObjectCountForTypeSample, ulong TotalSizeForTypeSample, ushort ClrInstanceID)
void GCFitBucketInfo(ushort ClrInstanceID, ushort BucketKind, ulong TotalSize, ushort Count)
void GCEnd_V1(uint Count, uint Depth, ushort ClrInstanceID)
void MethodLoad_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, ushort ClrInstanceID, ulong ReJITID)
void IncreaseMemoryPressure(ulong BytesAllocated, ushort ClrInstanceID)
void ILStubCacheHit(ushort ClrInstanceID, ulong ModuleID, ulong StubMethodID, uint ManagedInteropMethodToken, string ManagedInteropMethodNamespace, string ManagedInteropMethodName, string ManagedInteropMethodSignature)
void TieredCompilationBackgroundJitStart(ushort ClrInstanceID, uint PendingMethodCount)
void WorkerThreadCreate(uint WorkerThreadCount, uint RetiredWorkerThreads)
void MethodJittingStarted_V1(ulong MethodID, ulong ModuleID, uint MethodToken, uint MethodILSize, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID)
static void LogThreadPoolWorkerThreadAdjustmentSample(double Throughput, ushort ClrInstanceID)
void IOThreadRetire_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
void MethodJitMemoryAllocatedForCode(ulong MethodID, ulong ModuleID, ulong JitHotCodeRequestSize, ulong JitRODataRequestSize, ulong AllocatedSizeForJitCode, uint JitAllocFlag, ushort ClrInstanceID)
void ContentionStart_V1(byte ContentionFlags, ushort ClrInstanceID)
void ExecutionCheckpoint(ushort ClrInstanceID, string Name, long Timestamp)
void TieredCompilationResume(ushort ClrInstanceID, uint NewMethodCount)
static void LogThreadPoolWorkerThreadStop(uint ActiveWorkerThreadCount, uint RetiredWorkerThreadCount, ushort ClrInstanceID)
void GCBulkEdge(uint Index, uint Count, ushort ClrInstanceID)
void ModuleDCEndV2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath)
void IOThreadTerminate_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
void AppDomainMemAllocated(ulong AppDomainID, ulong Allocated, ushort ClrInstanceID)
void CLRStackWalk(ushort ClrInstanceID, byte Reserved1, byte Reserved2, uint FrameCount)
void ThreadCreated(ulong ManagedThreadID, ulong AppDomainID, uint Flags, uint ManagedThreadIndex, uint OSThreadID, ushort ClrInstanceID)
void ModuleDCStartV2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath)
void ModuleUnload_V2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID, Guid ManagedPdbSignature, uint ManagedPdbAge, string ManagedPdbBuildPath, Guid NativePdbSignature, uint NativePdbAge, string NativePdbBuildPath)
void GCSuspendEEBegin_V1(uint Reason, uint Count, ushort ClrInstanceID)
void GCBulkRootStaticVar(uint Count, ulong AppDomainID, ushort ClrInstanceID)
void GCGenerationRange(byte Generation, IntPtr RangeStart, ulong RangeUsedLength, ulong RangeReservedLength, ushort ClrInstanceID)
void MethodJitTailCallFailed(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix, string FailReason, ushort ClrInstanceID)
void ThreadPoolWorkerThreadAdjustmentSample(double Throughput, ushort ClrInstanceID=0)
void ThreadPoolIODequeue(IntPtr NativeOverlapped, IntPtr Overlapped, ushort ClrInstanceID=0)
void GCBulkSurvivingObjectRanges(uint Index, uint Count, ushort ClrInstanceID)
void MethodDCStartVerboseV2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature)
void AppDomainUnload_V1(ulong AppDomainID, uint AppDomainFlags, string AppDomainName, uint AppDomainIndex, ushort ClrInstanceID)
void ThreadPoolWorkingThreadCount(uint Count, ushort ClrInstanceID=0)
void ThreadPoolWorkerThreadAdjustmentAdjustment(double AverageThroughput, uint NewWorkerThreadCount, ThreadAdjustmentReasonMap Reason, ushort ClrInstanceID=0)
void AssemblyLoadStart(ushort ClrInstanceID, string AssemblyName, string AssemblyPath, string RequestingAssembly, string AssemblyLoadContext, string RequestingAssemblyLoadContext)
void TypeLoadStart(uint TypeLoadStartID, ushort ClrInstanceID)
void JitInstrumentationDataVerbose(ushort ClrInstanceID, uint MethodFlags, uint DataSize, ulong MethodID, ulong ModuleID, uint MethodToken, string MethodNamespace, string MethodName, string MethodSignature)
void AppDomainAssemblyResolveHandlerInvoked(ushort ClrInstanceID, string AssemblyName, string HandlerName, string ResultAssemblyName, string ResultAssemblyPath)
void GCJoin_V2(uint Heap, uint JoinTime, uint JoinType, ushort ClrInstanceID, uint JoinID)
static void LogThreadPoolIODequeue(IntPtr NativeOverlapped, IntPtr Overlapped, ushort ClrInstanceID)
void JitInstrumentationData(ushort ClrInstanceID, uint MethodFlags, uint DataSize, ulong MethodID)
static void LogThreadPoolWorkingThreadCount(uint Count, ushort ClrInstanceID)
void GCSampledObjectAllocationHigh(IntPtr Address, IntPtr TypeID, uint ObjectCountForTypeSample, ulong TotalSizeForTypeSample, ushort ClrInstanceID)
void DecreaseMemoryPressure(ulong BytesFreed, ushort ClrInstanceID)
void MethodLoadVerbose_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, string MethodNamespace, string MethodName, string MethodSignature, ushort ClrInstanceID, ulong ReJITID)
void GCBulkNode(uint Index, uint Count, ushort ClrInstanceID)
void ThreadpoolSuspensionSuspendThread(uint ClrThreadID, uint CpuUtilization)
void ExceptionThrown_V1(string ExceptionType, string ExceptionMessage, IntPtr ExceptionEIP, uint ExceptionHRESULT, ushort ExceptionFlags, ushort ClrInstanceID)
void AssemblyLoadContextResolvingHandlerInvoked(ushort ClrInstanceID, string AssemblyName, string HandlerName, string AssemblyLoadContext, string ResultAssemblyName, string ResultAssemblyPath)
void GCAllocationTick_V4(uint AllocationAmount, uint AllocationKind, ushort ClrInstanceID, ulong AllocationAmount64, IntPtr TypeID, string TypeName, uint HeapIndex, IntPtr Address, ulong ObjectSize)
void RuntimeInformationStart(ushort ClrInstanceID, ushort Sku, ushort BclMajorVersion, ushort BclMinorVersion, ushort BclBuildNumber, ushort BclQfeNumber, ushort VMMajorVersion, ushort VMMinorVersion, ushort VMBuildNumber, ushort VMQfeNumber, uint StartupFlags, byte StartupMode, string CommandLine, Guid ComObjectGuid, string RuntimeDllPath)
void MethodJitInliningSucceeded(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string InlinerNamespace, string InlinerName, string InlinerNameSignature, string InlineeNamespace, string InlineeName, string InlineeNameSignature, ushort ClrInstanceID)
void R2RGetEntryPoint(ulong MethodID, string MethodNamespace, string MethodName, string MethodSignature, ulong EntryPoint, ushort ClrInstanceID)
void IOThreadCreate_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
void FinalizeObject(IntPtr TypeID, IntPtr ObjectID, ushort ClrInstanceID)
void YieldProcessorMeasurement(ushort ClrInstanceID, double NsPerYield, double EstablishedNsPerYield)
void ThreadpoolSuspensionResumeThread(uint ClrThreadID, uint CpuUtilization)
void ModuleLoad_V2(ulong ModuleID, ulong AssemblyID, uint ModuleFlags, uint Reserved1, string ModuleILPath, string ModuleNativePath, ushort ClrInstanceID, Guid ManagedPdbSignature, uint ManagedPdbAge, string ManagedPdbBuildPath, Guid NativePdbSignature, uint NativePdbAge, string NativePdbBuildPath)
void GCFinalizersEnd_V1(uint Count, ushort ClrInstanceID)
void SetGCHandle(IntPtr HandleID, IntPtr ObjectID, uint Kind, uint Generation, ulong AppDomainID, ushort ClrInstanceID)
void AssemblyLoadFromResolveHandlerInvoked(ushort ClrInstanceID, string AssemblyName, bool IsTrackedLoad, string RequestingAssemblyPath, string ComputedRequestedAssemblyPath)
void ThreadPoolWorkerThreadAdjustmentStats(double Duration, double Throughput, double ThreadWave, double ThroughputWave, double ThroughputErrorEstimate, double AverageThroughputErrorEstimate, double ThroughputRatio, double Confidence, double NewControlSetting, ushort NewThreadWaveMagnitude, ushort ClrInstanceID=0)
void ExceptionFilterStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
void AssemblyLoadStop(ushort ClrInstanceID, string AssemblyName, string AssemblyPath, string RequestingAssembly, string AssemblyLoadContext, string RequestingAssemblyLoadContext, bool Success, string ResultAssemblyName, string ResultAssemblyPath, bool Cached)
static void LogThreadPoolWorkerThreadAdjustmentAdjustment(double AverageThroughput, uint NewWorkerThreadCount, ThreadAdjustmentReasonMap Reason, ushort ClrInstanceID)
void MethodDetails(ulong MethodID, ulong TypeID, uint MethodToken, uint TypeParameterCount, ulong LoaderModuleID)
void MethodJitTailCallSucceeded(string MethodBeingCompiledNamespace, string MethodBeingCompiledName, string MethodBeingCompiledNameSignature, string CallerNamespace, string CallerName, string CallerNameSignature, string CalleeNamespace, string CalleeName, string CalleeNameSignature, bool TailPrefix, uint TailCallType, ushort ClrInstanceID)
void GCCreateSegment_V1(ulong Address, ulong Size, uint Type, ushort ClrInstanceID)
void GCBulkMovedObjectRanges(uint Index, uint Count, ushort ClrInstanceID)
void ExceptionFinallyStart(ulong EntryEIP, ulong MethodID, string MethodName, ushort ClrInstanceID)
void TypeLoadStop(uint TypeLoadStartID, ushort ClrInstanceID, ushort LoadLevel, ulong TypeID, string TypeName)
void AuthenticodeVerificationStart_V1(uint VerificationFlags, uint ErrorCode, string ModulePath, ushort ClrInstanceID)
void StrongNameVerificationStart_V1(uint VerificationFlags, uint ErrorCode, string FullyQualifiedAssemblyName, ushort ClrInstanceID)
void WorkerThreadRetire(uint WorkerThreadCount, uint RetiredWorkerThreads)
void ThreadPoolIOEnqueue(IntPtr NativeOverlapped, IntPtr Overlapped, bool MultiDequeues, ushort ClrInstanceID=0)
void IOThreadUnretire_V1(uint IOThreadCount, uint RetiredIOThreads, ushort ClrInstanceID)
void MethodUnload_V2(ulong MethodID, ulong ModuleID, ulong MethodStartAddress, uint MethodSize, uint MethodToken, uint MethodFlags, ushort ClrInstanceID, ulong ReJITID)
static readonly IntPtr Zero
Definition IntPtr.cs:18