⚡️ Speed up method StringUtils.hasLineBreak by 62%#10
Open
codeflash-ai[bot] wants to merge 1 commit intomainfrom
Open
⚡️ Speed up method StringUtils.hasLineBreak by 62%#10codeflash-ai[bot] wants to merge 1 commit intomainfrom
StringUtils.hasLineBreak by 62%#10codeflash-ai[bot] wants to merge 1 commit intomainfrom
Conversation
The optimization replaces a regex matcher (`LINE_BREAK.matcher(s).find()`) with a single-pass loop that checks each character against seven Unicode line-break literals (`\n`, `\r`, `\u000B`, `\u000C`, `\u0085`, `\u2028`, `\u2029`). The regex engine incurs per-call overhead from matcher allocation and state-machine execution, whereas the direct character comparison runs in ~196–213 ns per iteration (profiler shows 400k+ hits at this cost) versus the original's ~2 ms per invocation. This yields a 62% runtime improvement with no correctness trade-off, as the manual scan covers the same Unicode line terminators matched by `\R`.
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.
📄 62% (0.62x) speedup for
StringUtils.hasLineBreakinrewrite-core/src/main/java/org/openrewrite/internal/StringUtils.java⏱️ Runtime :
5.29 milliseconds→3.26 milliseconds(best of129runs)📝 Explanation and details
The optimization replaces a regex matcher (
LINE_BREAK.matcher(s).find()) with a single-pass loop that checks each character against seven Unicode line-break literals (\n,\r,\u000B,\u000C,\u0085,\u2028,\u2029). The regex engine incurs per-call overhead from matcher allocation and state-machine execution, whereas the direct character comparison runs in ~196–213 ns per iteration (profiler shows 400k+ hits at this cost) versus the original's ~2 ms per invocation. This yields a 62% runtime improvement with no correctness trade-off, as the manual scan covers the same Unicode line terminators matched by\R.✅ Correctness verification report:
🌀 Click to see Generated Regression Tests
To edit these changes
git checkout codeflash/optimize-StringUtils.hasLineBreak-mnnb24n3and push.