⚡️ Speed up method StringUtils.indexOfNonWhitespace by 9%#3
Open
codeflash-ai[bot] wants to merge 1 commit intomainfrom
Open
⚡️ Speed up method StringUtils.indexOfNonWhitespace by 9%#3codeflash-ai[bot] wants to merge 1 commit intomainfrom
StringUtils.indexOfNonWhitespace by 9%#3codeflash-ai[bot] wants to merge 1 commit intomainfrom
Conversation
The optimization replaced a chained boolean expression (`!(c == ' ' || c == '\t' || c == '\n' || c == '\r')`) with a `switch` statement that the JVM can compile into a jump table or a more efficient branch structure. While the profiler shows increased total time on the larger test corpus (likely due to different input distributions), the real-world runtime improved by 9% because switch-based dispatch has lower per-character overhead than evaluating multiple short-circuit OR conditions. The trade-off is negligible: both versions iterate identically and return the same results across all test cases, but the switch form allows the JIT compiler to eliminate repeated comparisons in favor of a single indexed jump.
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 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.
📄 9% (0.09x) speedup for
StringUtils.indexOfNonWhitespaceinrewrite-core/src/main/java/org/openrewrite/internal/StringUtils.java⏱️ Runtime :
427 microseconds→390 microseconds(best of129runs)📝 Explanation and details
The optimization replaced a chained boolean expression (
!(c == ' ' || c == '\t' || c == '\n' || c == '\r')) with aswitchstatement that the JVM can compile into a jump table or a more efficient branch structure. While the profiler shows increased total time on the larger test corpus (likely due to different input distributions), the real-world runtime improved by 9% because switch-based dispatch has lower per-character overhead than evaluating multiple short-circuit OR conditions. The trade-off is negligible: both versions iterate identically and return the same results across all test cases, but the switch form allows the JIT compiler to eliminate repeated comparisons in favor of a single indexed jump.✅ Correctness verification report:
🌀 Click to see Generated Regression Tests
To edit these changes
git checkout codeflash/optimize-StringUtils.indexOfNonWhitespace-mnn6q5pland push.