-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert GetCurrentMethod to QCALL #99852
Conversation
This has a similar structure to FailFast as converted in dotnet#98908. Contributes to dotnet#95695
src/coreclr/System.Private.CoreLib/src/System/RuntimeHandles.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Jan Kotas <[email protected]>
I see about 6% perf regression in
The implementation of
|
I was able to reproduce the regression in a benchmark. Interestingly, it appears that something between .NET 9 Preview 2 and the merge base sped things up:
Anyways, I'll mark this as draft while I fix the regression. |
Co-authored-by: Jan Kotas <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
This has a similar structure to
FailFast
as converted in #98908.Contributes to #95695