-
Notifications
You must be signed in to change notification settings - Fork 506
NodeScopeResolver: 10x Faster constant array processing #3769
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
Merged
+4
−1
Conversation
This file contains 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
This pull request has been marked as ready for review. |
ondrejmirtes
requested changes
Jan 4, 2025
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.
- Is this relevant on 1.12.x as well?
- What about general array?
- What I'd like to attempt is doing
TypeCombinator::union(...$types)->isSuperTypeOf($offsetValueType)
and if it's not a yes() only then run the intersect(). Basically we want to run it only if it's not an array, an array access...
mvorisek
reviewed
Jan 4, 2025
if (!$offsetValueType instanceof MixedType) { | ||
if ( | ||
!$offsetValueType instanceof MixedType | ||
&& !$offsetValueType->isConstantArray()->yes() |
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.
would be good to comment this is for performance only
Alright, let's try this! Thank you. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
vendor/bin/phpunit tests/PHPStan/Analyser/AnalyserIntegrationTest.php --filter testBug11913
triggers the by-far slowest unit test in the phpstan-src codebasebefore this PR it takes 10-11 seconds
after this PR it finishes in 0.3-0.4 seconds
(run on macbook pro m4 with PHP 8.3.15)
the code is dominated by calculating intersections in
phpstan-src/src/Analyser/NodeScopeResolver.php
Line 5783 in cdf5110
my thesis is, that when we know a array is constant, it will always intersect with
new ArrayType(new MixedType(), new MixedType())
and therefore don't need to take the slow path