test: avoid strict-aliasing/alignment UB in unit tests#110
Draft
test: avoid strict-aliasing/alignment UB in unit tests#110
Conversation
The unit tests were writing through typed pointers into byte storage: - `cuckoocache_tests.cpp` casted `uint256::begin()` to `uint32_t*` and wrote words. This is strict-aliasing UB (and can be miscompiled under -O2). Replace with `WriteLE32()` stores into the byte buffer. - `allocator_tests.cpp` casted an untyped `void*` allocation to `uint32_t*` and dereferenced it. This can be misaligned access UB on some platforms. Replace with `std::memcpy()` store/load.
Clean up pass-by-const-ref of fundamental types: - `CScriptNum` `int64_t` ctor/operators and `serialize()` now take `int64_t` by value instead of `const int64_t&` (no logic change; avoids unnecessary references in a hot/consensus-adjacent header). - `memusage::DynamicUsage()` overloads for built-in scalars/pointers take values by value (still always returns 0). - `coinselection.cpp` loop index uses `size_t` by value instead of `const size_t&`.
The SHA-NI implementation used `(__m128i*)` casts with `_mm_loadu_si128` and `_mm_storeu_si128`. Switch to `__m128i_u` (with a safe fallback typedef) so unaligned access is explicit and we avoid relying on type-punned SIMD pointer casts for these intrinsics. No intended behavior or performance change.
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.
WIP