summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Stress/ABI/TailCallEventListener.cs
blob: 771271330ce8553003fadb1be211367d0a5f9a32 (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
50
51
52
53
54
55
56
57
// 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.

using System;
using System.Collections.Generic;
using System.Diagnostics.Tracing;

namespace ABIStress
{
    // This is an event listener that allows us to track how many tailcalls are
    // being considered and how many tailcall decisions are succeeding. This
    // mainly allows us to give some output tracking how "healthy" the test is
    // (i.e. how much it actually tests tailcalls).
    internal class TailCallEventListener : EventListener
    {
        public int NumCallersSeen { get; set; }
        public int NumSuccessfulTailCalls { get; set; }
        public Dictionary<string, int> FailureReasons { get; } = new Dictionary<string, int>();

        protected override void OnEventSourceCreated(EventSource eventSource)
        {
            if (eventSource.Name != "Microsoft-Windows-DotNETRuntime")
                return;

            EventKeywords jitTracing = (EventKeywords)0x1000; // JITTracing
            EnableEvents(eventSource, EventLevel.Verbose, jitTracing);
        }

        protected override void OnEventWritten(EventWrittenEventArgs data)
        {
            string GetData(string name) => data.Payload[data.PayloadNames.IndexOf(name)].ToString();

            switch (data.EventName)
            {
                case "MethodJitTailCallFailed":
                    if (GetData("MethodBeingCompiledName").StartsWith(Config.TailCallerPrefix))
                    {
                        NumCallersSeen++;
                        string failReason = GetData("FailReason");
                        lock (FailureReasons)
                        {
                            FailureReasons[failReason] = FailureReasons.GetValueOrDefault(failReason) + 1;
                        }
                    }
                    break;
                case "MethodJitTailCallSucceeded":
                    if (GetData("MethodBeingCompiledName").StartsWith(Config.TailCallerPrefix))
                    {
                        NumCallersSeen++;
                        NumSuccessfulTailCalls++;
                    }
                    break;
            }
        }
    }
}