Skip to content
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

Manually optimize a rem 64 instruction to avoid regression on Mono #96203

Conversation

andrewjsaid
Copy link
Contributor

@ghost ghost added the community-contribution Indicates that the PR has been added by a community member label Dec 19, 2023
@ghost
Copy link

ghost commented Dec 19, 2023

Tagging subscribers to this area: @dotnet/area-system-collections
See info in area-owners.md if you want to be subscribed.

Issue Details

dotnet/perf-autofiling-issues#26185 (comment)

cc @adamsitnik as requested

Author: andrewjsaid
Assignees: -
Labels:

area-System.Collections, community-contribution

Milestone: -

Copy link
Member

@adamsitnik adamsitnik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes LGTM, big thanks for such a quick fix @andrewjsaid !

@kotlarmilos @matouskozak could you please verify it and merge the PR if it solves the problem?

FWIW I'll be back to work at the beginning of January so I won't be able to respond until then.

@adamsitnik adamsitnik added tenet-performance Performance related issue runtime-mono specific to the Mono runtime labels Dec 19, 2023
@kotlarmilos
Copy link
Member

kotlarmilos commented Dec 20, 2023

The changes LGTM, big thanks for such a quick fix @andrewjsaid !

@kotlarmilos @matouskozak could you please verify it and merge the PR if it solves the problem?

FWIW I'll be back to work at the beginning of January so I won't be able to respond until then.

@andrewjsaid Thank you for taking swift action. I tested the & 0x3F vs % 64 on the Mono Interpreter/AOT x64 and arm64, and I didn't notice any performance difference. @matouskozak Could you please double-check it on your end before proceeding with the next steps?

After using the entire expression, like private static bool CheckLengthQuick(string key) => (_lengthFilter & (1UL << (key.Length % 64))) > 0;, there is a significant performance difference (orders of magnitude).

@andrewjsaid
Copy link
Contributor Author

Glad to hear that, @kotlarmilos ! Apologies for all this in the first place 🙈

@kotlarmilos kotlarmilos merged commit bc83100 into dotnet:main Dec 20, 2023
111 checks passed
@@ -166,7 +166,7 @@ public static class FrozenDictionary
{
if (key.Length < minLength) minLength = key.Length;
if (key.Length > maxLength) maxLength = key.Length;
lengthFilter |= (1UL << (key.Length % 64));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like something that should be fixed in mono itself, if it makes such an impactful difference?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't appear to be the primary cause of regressions in c28bec4. We will investigate it further to detect the root cause.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was the validation in #96203 (comment) incorrect? Can we revert this then?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From my limited knowledge and research I couldn't find the optimization of % 64 -> & 0x3F in mono's code so this optimization might still be valid.

Just looking at the regressions and I want to point out that we see a regression in System.Collections.Perf_SubstringFrozenDictionary on mono dotnet/perf-autofiling-issues#26221.

This is strange as the original commit c28bec4 is designed to not affect TryGetValue on substring strategy subtypes of OrdinalStringFrozenDictionary . It works that way because each concrete implementation should be getting it's own codegen and in turn be optimized to if(true) as this existing comment sums up
image

Based on that I'd say regressions on SubstringFrozenDictionary tests point towards the method call to CheckLengthFilter is not being inlined or possibly we are even doing virtual method dispatch.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so this optimization might still be valid.

Even if it is, the changed code is harder to understand / maintain than the original IMO, and the pattern of mod'ing an array/span length is super common; this is just one occurrence of that. If it's impactful here, it'd be impactful in many more places, and I'd prefer we not one-off it. It also sounds like the measurements that suggested this was valuable in this case was flawed, and so we don't actually know in this particular case whether it made a meaningful difference.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's also worth noting that x % 64 becoming x & 0x3F is only a valid optimization for positive x, while it returns a different result for negative x, so it's not always a universal option to replace either.

This optimization currently lights up in RyuJIT by virtue of key being a string and the runtime having implicit knowledge that string.Length (as well as array.Length and span.Length) are never negative.

From my limited knowledge and research I couldn't find the optimization of % 64 -> & 0x3F in mono's code so this optimization might still be valid.

Such optimizations generally involve checking that for x % y, x is positive and y is a power of two. It's generally easiest to just check the codegen, but this is really one of those fundamental optimizations around division/remainder that a compiler should recognize as Stephen indicated.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy to submit a revert PR now and for it to be approved/merged whenever but I might be unavailable for a few weeks at some point soon so I'd rather submit now.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was the validation in #96203 (comment) incorrect? Can we revert this then?

The validation was incorrect, sorry for confusion.

Could the regressions be related to inlining, especially since CheckLengthQuick was introduced? Additionally, there has been a change from using if (Equals(item, _items[index])) to if (hashCode == _hashTable.HashCodes[index]). Is it possible that Equals has been optimized?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could the regressions be related to inlining, especially since CheckLengthQuick was introduced?

Almost certainly since in CoreCLR, for the benchmark SubstringFrozenDictionary, if(CheckLengthQuick(key)) is first inlined to if(true) and then just optimized away resulting in no change at all. Whereas there is a regression in mono meaning that at the very least one of these optimizations didn't work.

The inlining is possible because concrete sealed implementations of FrozenDictionary all have this line of code

private protected override ref readonly TValue GetValueRefOrNullRefCore(string key) => ref base.GetValueRefOrNullRefCore(key);

which allows the JIT to codegen for each concrete implementation. When doing so, it is able to inline the implementation's Equals, GetHashCode as it is generating the code for the specific implementation not the base class. in CoreCLR the same is happening for CheckLengthQuick, however as opposed to the existing methods, CheckLengthQuick is virtual and not overridden - could either of these be a reason that mono isn't inlining it like it presumably inlines Equals and GetHashCode?

Additionally, there has been a change from using if (Equals(item, _items[index])) to if (hashCode == _hashTable.HashCodes[index]). Is it possible that Equals has been optimized?

@kotlarmilos I believe that's just the diff viewer. The change is really just adding the if (CheckLengthQuick(key)) and some indenting.

@andrewjsaid andrewjsaid deleted the frozen-collections-length-filter-perf-rem64 branch January 2, 2024 14:05
andrewjsaid added a commit to andrewjsaid/dotnet-runtime that referenced this pull request Jan 2, 2024
… runtimes which do not currently optimize it (dotnet#96203)"

This reverts commit bc83100.
stephentoub pushed a commit that referenced this pull request Jan 3, 2024
… runtimes which do not currently optimize it (#96203)" (#96415)

This reverts commit bc83100.
@github-actions github-actions bot locked and limited conversation to collaborators Feb 3, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-System.Collections community-contribution Indicates that the PR has been added by a community member runtime-mono specific to the Mono runtime tenet-performance Performance related issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants