-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flate: Fix matchlen L5+L6 #1049
Conversation
Regression from #1045
📝 WalkthroughWalkthroughThe pull request modifies the Changes
Possibly related PRs
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (17)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
flate/fast_encoder.go (1)
176-177
: Remove or update the unreachable comment.The comment "Extend the match to be as long as possible" after the return statement is unreachable. Consider either:
- Removing the comment if it's no longer relevant
- Moving it to the function's documentation if it describes the function's purpose
- Updating it if it indicates missing functionality
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
flate/fast_encoder.go
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (16)
- GitHub Check: build (1.23.x, windows-latest)
- GitHub Check: fuzz-zstd ("noasm,nounsafe")
- GitHub Check: build (1.23.x, macos-latest)
- GitHub Check: fuzz-zstd (nounsafe)
- GitHub Check: build (1.23.x, ubuntu-latest)
- GitHub Check: fuzz-s2 ("noasm,nounsafe")
- GitHub Check: build (1.22.x, windows-latest)
- GitHub Check: fuzz-other ("noasm,nounsafe")
- GitHub Check: fuzz-s2 (nounsafe)
- GitHub Check: build (1.22.x, macos-latest)
- GitHub Check: fuzz-other (nounsafe)
- GitHub Check: build (1.22.x, ubuntu-latest)
- GitHub Check: build (1.21.x, windows-latest)
- GitHub Check: build-special
- GitHub Check: build (1.21.x, macos-latest)
- GitHub Check: build (1.21.x, ubuntu-latest)
🔇 Additional comments (3)
flate/fast_encoder.go (3)
154-156
: LGTM! Clean initialization changes.The use of
min
function simplifies the boundary check logic, and the explicit type initialization ofn
asint32(0)
ensures type consistency.
Line range hint
154-176
: Verify regression fix from PR #1045.The changes look well-structured and focus on correctness. Let's verify these changes properly address the regression mentioned in PR #1045.
✅ Verification successful
Changes align with PR #1045 objectives - simplifying matchlen implementation
The implementation correctly addresses the regression by:
- Replacing architecture-specific assembly with a simplified, generic implementation
- Utilizing efficient 64-bit word comparisons via unsafe.Load64
- Maintaining correctness while removing conditional complexity
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Get context about the regression from PR #1045 gh pr view 1045 --json title,body # Look for related test failures or issues gh issue list --search "matchlen L5 L6" --state all --limit 5Length of output: 277
Script:
#!/bin/bash # Clone the repository and fetch PR details git clone https://github.com/klauspost/compress.git . gh pr view 1045 --json title,body # Search for related test files fd -e go test --exec rg -l "matchlen|L5|L6" {} # Look for benchmark files fd -e go bench --exec rg -l "matchlen|L5|L6" {}Length of output: 1143
160-164
: Verify the bit manipulation logic for edge cases.The use of
bits.TrailingZeros64
with>>3
correctly identifies the first differing byte. Let's verify this works correctly for all edge cases.✅ Verification successful
Bit manipulation implementation is correct and well-tested
The use of
bits.TrailingZeros64(diff)>>3
is a proven pattern for byte-level matching, consistently implemented across multiple compression algorithms in the codebase. The implementation is safe and properly handles edge cases through its loop structure and bounds checking.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Search for tests that verify this logic rg -A 10 "TrailingZeros64.*>>3" --type go # Look for any related test cases ast-grep --pattern 'func Test$_(test|match).*\{ $$$ bits.TrailingZeros64 $$$ }'Length of output: 1767
Script:
#!/bin/bash # Look for test files rg -l "Test.*match.*" --type go flate/ # Check test implementations rg -A 10 "func Test.*match" --type go flate/Length of output: 87
Script:
#!/bin/bash # Find all test files in flate directory fd _test.go$ flate/ # Look for test functions in these files rg "^func Test" --type go flate/ # Search for byte comparison related tests rg -B 2 -A 5 "bits\.TrailingZeros|matchLength" flate/*_test.goLength of output: 3675
Regression from #1045
Summary by CodeRabbit