Tolerate pathological growth of optCSEHash#40056
Merged
davidwrighton merged 4 commits intodotnet:masterfrom Jul 29, 2020
Merged
Tolerate pathological growth of optCSEHash#40056davidwrighton merged 4 commits intodotnet:masterfrom
davidwrighton merged 4 commits intodotnet:masterfrom
Conversation
Member
Author
|
@dotnet/jit-contrib |
briansull
approved these changes
Jul 29, 2020
| }; | ||
|
|
||
| static const size_t s_optCSEhashSize; | ||
| static const size_t s_optCSEhashGrowthFactor; |
Contributor
There was a problem hiding this comment.
This could be renamed to indicate that it is the initial hash table size
s_optCSEhashSize => s_optCSEhashSizeInitial
src/coreclr/src/jit/compiler.h
Outdated
| static const size_t s_optCSEhashSize; | ||
| static const size_t s_optCSEhashGrowthFactor; | ||
| static const size_t s_optCSEhashBucketSize; | ||
| size_t optCSEhashSize; // Size of hashtable |
Contributor
There was a problem hiding this comment.
// The current size of the hashtable
Jacksondr5
pushed a commit
to Jacksondr5/runtime
that referenced
this pull request
Aug 10, 2020
The optCSEhash can grow an unbounded amount if the function has numerous trees which are put into the optCSEhash as possible CSE candidates, but fewer than MAX_CSE_CNT are found, then the compiler will spend excessive amounts of time looking up entries in the optCSEhash. This fix addresses the issue by making the optCSEhash able to grow its count of buckets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
optCSEhashcan grow an unbounded amount if the function has numerous trees which are put into theoptCSEhashas possible CSE candidates, but fewer thanMAX_CSE_CNTare found, then the compiler will spend excessive amounts of time looking up entries in theoptCSEhash.This fix addresses the issue by making the
optCSEhashable to grow its count of buckets.This fixes #32733, but I'm not certain its the right approach. Potentially avoiding the pathological growth of the hash table would be a better approach.