-
Notifications
You must be signed in to change notification settings - Fork 842
Optimize empty string pattern matching with null-safe length checks #19189
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
Draft
Copilot
wants to merge
13
commits into
main
Choose a base branch
from
copilot/optimize-empty-string-check
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+400
−7
Draft
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
0d59867
Initial plan
Copilot cff9c64
Implement StringLengthZero optimization for empty string patterns
Copilot 2e05600
Add IL test for empty string pattern optimization
Copilot 5955499
Add release notes for empty string pattern optimization
Copilot 06fcf40
Fix regression: revert StringLengthZero discriminator, keep optimizat…
Copilot 60a9614
Add inlining test for empty string pattern optimization with pickle c…
Copilot 64ae956
Remove all StringLengthZero usages, update tests with bundled clauses…
Copilot c4b35b0
WIP: Add isNullFiltered parameter to BuildSwitch to track null-safe c…
Copilot 09553a6
Remove debug output from BuildSwitch
Copilot 0d88da5
Merge branch 'main' into copilot/optimize-empty-string-check
T-Gro 52d4206
Add debugging instrumentation to BuildSwitch for isNullFiltered inves…
Copilot 68bc4c1
Add check for IsNull edge in foldBack to attempt eliminating redundan…
Copilot cdbd93d
Simplify isNullFiltered logic - remove hasIsNullEdge computation
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
28 changes: 28 additions & 0 deletions
28
tests/FSharp.Compiler.ComponentTests/EmittedIL/Inlining/EmptyStringPattern.fs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| module TestLibrary | ||
|
|
||
| let inline classifyString (s: string) = | ||
T-Gro marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| match s with | ||
| | "" -> "empty" | ||
| | null -> "null" | ||
| | _ -> "other" | ||
|
|
||
| let inline testEmptyStringOnly (s: string) = | ||
| match s with | ||
| | "" -> 1 | ||
| | _ -> 0 | ||
|
|
||
| let inline testBundledNullAndEmpty (s: string) = | ||
| match s with | ||
| | null | "" -> 0 | ||
| | _ -> 1 | ||
|
|
||
| let inline testBundledEmptyAndNull (s: string) = | ||
| match s with | ||
| | "" | null -> 0 | ||
| | _ -> 1 | ||
|
|
||
| // Usage functions to show inlining in action | ||
| let useClassifyString s = classifyString s | ||
| let useTestEmptyStringOnly s = testEmptyStringOnly s | ||
| let useBundledNullAndEmpty s = testBundledNullAndEmpty s | ||
| let useBundledEmptyAndNull s = testBundledEmptyAndNull s | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.