⚡️ Speed up method StringUtils.greatestCommonMargin by 28%#7
Open
codeflash-ai[bot] wants to merge 1 commit intomainfrom
Open
⚡️ Speed up method StringUtils.greatestCommonMargin by 28%#7codeflash-ai[bot] wants to merge 1 commit intomainfrom
StringUtils.greatestCommonMargin by 28%#7codeflash-ai[bot] wants to merge 1 commit intomainfrom
Conversation
The optimization eliminates repeated `StringBuilder` allocations in the hot loop by replacing `margin = new StringBuilder()` with `margin.setLength(0)`, saving ~0.8 µs per iteration across 10,010 calls. In `commonMargin`, the code now scans backward through the CharSequence to find the last newline instead of calling `toString()` and `lastIndexOf`, and uses `subSequence` throughout to defer string materialization until the final return, cutting per-call cost from ~1.1 µs to ~0.6 µs. Hoisting `charArray.length` into a local variable (`len`) reduces redundant array-length reads in the main loop, shaving another ~170 ns per iteration. Together these changes reduce total runtime by 28% with no behavioral regressions.
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.
📄 28% (0.28x) speedup for
StringUtils.greatestCommonMargininrewrite-core/src/main/java/org/openrewrite/internal/StringUtils.java⏱️ Runtime :
1.61 milliseconds→1.25 milliseconds(best of129runs)📝 Explanation and details
The optimization eliminates repeated
StringBuilderallocations in the hot loop by replacingmargin = new StringBuilder()withmargin.setLength(0), saving ~0.8 µs per iteration across 10,010 calls. IncommonMargin, the code now scans backward through the CharSequence to find the last newline instead of callingtoString()andlastIndexOf, and usessubSequencethroughout to defer string materialization until the final return, cutting per-call cost from ~1.1 µs to ~0.6 µs. HoistingcharArray.lengthinto a local variable (len) reduces redundant array-length reads in the main loop, shaving another ~170 ns per iteration. Together these changes reduce total runtime by 28% with no behavioral regressions.✅ Correctness verification report:
🌀 Click to see Generated Regression Tests
To edit these changes
git checkout codeflash/optimize-StringUtils.greatestCommonMargin-mnn8ys36and push.