⚡️ Speed up method StringUtils.indexOf by 157%#4
Open
codeflash-ai[bot] wants to merge 1 commit intomainfrom
Open
⚡️ Speed up method StringUtils.indexOf by 157%#4codeflash-ai[bot] wants to merge 1 commit intomainfrom
StringUtils.indexOf by 157%#4codeflash-ai[bot] wants to merge 1 commit intomainfrom
Conversation
The optimization hoists `text.length()` into a local variable `len` and caches the predicate reference as `t`, eliminating repeated virtual method calls inside the hot loop. The original profiler shows the loop condition (`i < text.length()`) consumed 74.1% of total time at ~1596 ns per hit, while the optimized version reduces per-hit cost to ~318 ns by querying length once upfront. Additionally, extracting `text.charAt(i)` into a local `char c` before the predicate test avoids redundant character retrieval, cutting the overall runtime from 3.00 ms to 1.17 ms (157% speedup) with no behavioral changes.
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.
📄 157% (1.57x) speedup for
StringUtils.indexOfinrewrite-core/src/main/java/org/openrewrite/internal/StringUtils.java⏱️ Runtime :
3.00 milliseconds→1.17 milliseconds(best of139runs)📝 Explanation and details
The optimization hoists
text.length()into a local variablelenand caches the predicate reference ast, eliminating repeated virtual method calls inside the hot loop. The original profiler shows the loop condition (i < text.length()) consumed 74.1% of total time at ~1596 ns per hit, while the optimized version reduces per-hit cost to ~318 ns by querying length once upfront. Additionally, extractingtext.charAt(i)into a localchar cbefore the predicate test avoids redundant character retrieval, cutting the overall runtime from 3.00 ms to 1.17 ms (157% speedup) with no behavioral changes.✅ Correctness verification report:
🌀 Click to see Generated Regression Tests
To edit these changes
git checkout codeflash/optimize-StringUtils.indexOf-mnn7a4ypand push.