Fix #24997: Avoid unnecessary CHECKCAST in untupled function parameters #25085
+43
−2
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.
Fix unnecessary CHECKCAST in untupled function parameters (#24997)
Summary
This PR fixes an issue where automatic parameter untupling (e.g.,
(number, _) => number) introduced unnecessaryCHECKCASTinstructions for unused wildcard parameters.Previously, the compiler generated
ValDefbindings for every element of the tuple, even if they were named_. This forced an extraction and a type check for unused elements. By filtering out wildcard parameters during desugaring, we avoid these unnecessary operations, making the generated bytecode as efficient as explicit pattern matching (case (number, _) => number).Changes
makeTupledFunctionto only generateValDefbindings for parameters that are not wildcards (nme.WILDCARD).i24997to verify that automatic untupling and explicit case-based untupling produce equivalent bytecode without extra casts.Verification
Ran the new bytecode test:
sbt "scala3-compiler-bootstrapped/testOnly dotty.tools.backend.jvm.DottyBytecodeTests -- i24997"