We can cherry-pick one commit from upstream leveldb, make the same change in crc32c, and then ultimately drop our build infra for testing endianness.
Not for merging until subtrees are updated:
We can cherry-pick one commit from upstream leveldb, make the same change in crc32c, and then ultimately drop our build infra for testing endianness.
Not for merging until subtrees are updated:
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--006a51241073e994b41acfe9ec718e94-->
For details see: https://corecheck.dev/bitcoin/bitcoin/pulls/29852.
<!--021abf342d371248e50ceaed478a90ca-->
See the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.
<!--174a7506f384e20aa4161008e828411d-->
No conflicts as of last run.
Concept ACK. Looking at the leveldb godbolt link, this is nicely optimized everywhere except MSVC. I'm ok with a possible regression there for the sake of the cleanup.
Want to upstream the crc32 patch to match the others we have sitting there?
Concept ACK.
<!--85328a0da195eb286784d51f73fa0af9-->
🚧 At least one of the CI tasks failed. Make sure to run all tests locally, according to the documentation.
Possibly this is due to a silent merge conflict (the changes in this pull request being incompatible with the current code in the target branch). If so, make sure to rebase on the latest commit of the target branch.
Leave a comment here, if you need help tracking down a confusing failure.
<sub>Debug: https://github.com/bitcoin/bitcoin/runs/23709865964</sub>
Concept ACK. Looking at the leveldb godbolt link, this is nicely optimized everywhere except MSVC.
However, the changes in MSVC generated assembly code look quite significant.
I'm ok with a possible regression there for the sake of the cleanup.
I disagree. Before stacking another performance deterioration change on top of the pile of the currently unresolved performance issues in the MSVC builds, it would be nice to compare benchmarks in the first place.
However, the changes in MSVC generated assembly code look quite significant. Before stacking another performance deterioration change on top of the pile
Isn't that because optimisations haven't been turned on? Otherwise, can you provide a concrete example of what you're talking about.
Want to upstream the crc32 patch to match the others we have sitting there?
Sure. Opened a PR in our crc32c subtree fork: https://github.com/bitcoin-core/crc32c-subtree/pull/7, and one in Google upstream: https://github.com/google/crc32c/pull/64.
However, the changes in MSVC generated assembly code look quite significant. Before stacking another performance deterioration change on top of the pile
Isn't that because optimisations haven't been turned on? Otherwise, can you provide a concrete example of what you're talking about.
https://godbolt.org/z/of4T8hM8j provides examples with the /O2 optimization flag.
What benchmarks might be appropiate for testing changes like these?
What benchmarks might be appropiate for testing changes like these?
Microbenchmarks + IBD?
@hebasto Is there a venue for reporting this to MSVC? They recently patted themselves on the back for detecting similar patterns. It's a shame MSVC can't detect something that (in 2024) seems so obvious.
Is there a venue for reporting this to MSVC? They recently patted themselves on the back for detecting similar patterns. It's a shame MSVC can't detect something that (in 2024) seems so obvious.
cc @sipsorcery
Is there a venue for reporting this to MSVC? They recently patted themselves on the back for detecting similar patterns. It's a shame MSVC can't detect something that (in 2024) seems so obvious.
cc @sipsorcery
Most likely fruitless but can't hurt to ask.
https://x.com/sipsorcery/status/1780687316522266853
We can cherry-pick one commit from upstream leveldb, make the same change in crc32c, and then ultimately drop our build infra for testing endianness.
The same goal, which is dropping "build infra for testing endianness", might be achieved with an alternative approach, which essentially boils down to:
--- a/src/leveldb/util/coding.h
+++ b/src/leveldb/util/coding.h
@@ -62,7 +62,7 @@ char* EncodeVarint64(char* dst, uint64_t value);
inline void EncodeFixed32(char* dst, uint32_t value) {
uint8_t* const buffer = reinterpret_cast<uint8_t*>(dst);
- if (port::kLittleEndian) {
+ if constexpr (std::endian::native == std::endian::little) {
// Fast path for little-endian CPUs. All major compilers optimize this to a
// single mov (x86_64) / str (ARM) instruction.
std::memcpy(buffer, &value, sizeof(uint32_t));
And no MSVC code degradation :)
I don't think that's better. We have to keep all the redundant code, and now we are diverging from upstream for no reason.
Also, you're just moving the endianess testing into the code. The point is to drop all of this, and use generic code that doesn't require any tests at all. The fact that MSVC fails to perform basic optimisations is annoying, but I don't really see why it's a blocker here. If we'd just pulled the subtree, and this change came in as part of that, I doubt anyone would have even noticed anything MSVC related (still haven't seen any benchmarks showing any meaningful difference for this change as-is)?
Rebased, and switched the changes to CMake.
if constexpr (std::endian::native == std::endian::little) {
This is a c++20 feature unfortunately. So I don't imagine either upstream accepting it any time soon.
I agree with @fanquake that we shouldn't let MSVC (an unsupported and closed-source compiler) stand in the way of our progress. And this is a real barrier to us staying in sync with upstream. If we shipped msvc-built binaries that'd be one thing, but I don't see that ever happening.
Utilize pre-existing functions or develop a utility function to manage endianess.
MSVC
Has someone reported the request to them? If not, it seems less likely they'll fix it.
MSVC
Has someone reported the request to them? If not, it seems less likely they'll fix it.
https://developercommunity.visualstudio.com/t/Missed-optimization-for-consecutive-byte/10831400 @theuni
... MSVC (an unsupported ... compiler)...
Since when?
MSVC
Has someone reported the request to them? If not, it seems less likely they'll fix it.
https://developercommunity.visualstudio.com/t/Missed-optimization-for-consecutive-byte/10831400
Thx. Could also add a link (https://github.com/google/leveldb/commit/201f52201f5dd9701e7a8ceaa0ec4d344e69e022) to the thread to give one example that the code is used in the real world by a real software project?
MSVC
Has someone reported the request to them? If not, it seems less likely they'll fix it.
https://developercommunity.visualstudio.com/t/Missed-optimization-for-consecutive-byte/10831400
Thx. Could also add a link (google/leveldb@201f522) to the thread to give one example that the code is used in the real world by a real software project?
Microbenchmarks + IBD?
I ran a reindex-chainstate until 880k - to check for correctness and speed. There was no obvious difference between runs (2 master vs 2 this PR).
<details> <summary>Details</summary>
hyperfine \
--runs 2 \
--parameter-list COMMIT 523520f8279987cd528a9e2db6db13dc56641eff,72aa32fbae34c6fe151d3ab531974d6992dd065e \
--prepare 'rm -f /mnt/my_storage/BitcoinData/debug.log && git checkout {COMMIT} && git clean -fxd && git reset --hard \
&& cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_UTIL=OFF -DBUILD_TX=OFF -DBUILD_TESTS=OFF -DENABLE_WALLET=OFF -DINSTALL_MAN=OFF && cmake --build build -j$(nproc)' \
--cleanup 'mv /mnt/my_storage/BitcoinData/debug.log /mnt/my_storage/logs/debug-{COMMIT}.log' \
'COMMIT={COMMIT} ./build/src/bitcoind -datadir=/mnt/my_storage/BitcoinData -stopatheight=880000 -dbcache=30000 -reindex-chainstate -connect=0'
Benchmark 1: COMMIT=523520f8279987cd528a9e2db6db13dc56641eff ./build/src/bitcoind -datadir=/mnt/my_storage/BitcoinData -stopatheight=880000 -dbcache=30000 -reindex-chainstate -connect=0
Time (mean ± σ): 23763.799 s ± 230.232 s [User: 37683.470 s, System: 693.079 s]
Range (min … max): 23601.001 s … 23926.598 s 2 runs
Benchmark 2: COMMIT=72aa32fbae34c6fe151d3ab531974d6992dd065e ./build/src/bitcoind -datadir=/mnt/my_storage/BitcoinData -stopatheight=880000 -dbcache=30000 -reindex-chainstate -connect=0
Time (mean ± σ): 23804.995 s ± 97.138 s [User: 37743.594 s, System: 690.682 s]
Range (min … max): 23736.308 s … 23873.682 s 2 runs
Summary
COMMIT=523520f8279987cd528a9e2db6db13dc56641eff ./build/src/bitcoind -datadir=/mnt/my_storage/BitcoinData -stopatheight=880000 -dbcache=30000 -reindex-chainstate -connect=0 ran
1.00 ± 0.01 times faster than COMMIT=72aa32fbae34c6fe151d3ab531974d6992dd065e ./build/src/bitcoind -datadir=/mnt/my_storage/BitcoinData -stopatheight=880000 -dbcache=30000 -reindex-chainstate -connect=0
</details>
I did however struggle to run these tests in a simulated big endian env (tried the setup I documented at #31344 (comment)), I'm getting:
96% tests passed, 6 tests failed out of 136
Total Test time (real) = 283.13 sec
The following tests FAILED:
1 - util_test_runner (Failed)
3 - univalue_test (Not Run)
4 - univalue_object_test (Not Run)
5 - secp256k1_noverify_tests (Not Run)
6 - secp256k1_tests (Not Run)
7 - secp256k1_exhaustive_tests (Not Run)
Not sure if this passes for latest master (it did, ~2 months ago, on my previous laptop) - will experiment more, but these runs are extremely slow.
Not sure if this passes for latest master (it did, ~2 months ago, on my previous laptop) - will experiment more, but these runs are extremely slow.
qemu is expected to be slow. For reference, there was a recent change (https://github.com/bitcoin/bitcoin/pull/31657), so this may now be easier to run on non-linux machines, but I haven't tried. Running the s390x CI task should cover the changes here.
Running the s390x CI task should cover the changes here
I managed to run ctest with master and this branch (I have updated the instructions in #31344 (comment)).
But running functional/test_runner.py reveals a few failures that seem related to endianness changes, e.g. rpc_bind.py fails with:
AssertionError: not({('0100007f', 19192)} == {('7f000001', 19192)})
<details> <summary>Details</summary>
stdout:
2025-01-25T15:47:08.065000Z TestFramework (INFO): PRNG seed is: 3770749326237847101
2025-01-25T15:47:08.076000Z TestFramework (INFO): Initializing test directory /tmp/test_runner_₿_🏃_20250125_164236/rpc_bind_266
2025-01-25T15:47:08.079000Z TestFramework (INFO): Check for ipv6
2025-01-25T15:47:08.080000Z TestFramework (INFO): Check for non-loopback interface
2025-01-25T15:47:08.082000Z TestFramework (INFO): Bind test for ['127.0.0.1']
2025-01-25T15:47:08.657000Z TestFramework (ERROR): Assertion failed
Traceback (most recent call last):
File "/mnt/bitcoin/test/functional/test_framework/test_framework.py", line 135, in main
self.run_test()
File "/mnt/bitcoin/build_dev_mode/test/functional/rpc_bind.py", line 99, in run_test
self._run_loopback_tests()
File "/mnt/bitcoin/build_dev_mode/test/functional/rpc_bind.py", line 110, in _run_loopback_tests
self.run_bind_test(['127.0.0.1'], '127.0.0.1', ['127.0.0.1'],
File "/mnt/bitcoin/build_dev_mode/test/functional/rpc_bind.py", line 45, in run_bind_test
assert_equal(set(get_bind_addrs(pid)), set(expected))
File "/mnt/bitcoin/test/functional/test_framework/util.py", line 77, in assert_equal
raise AssertionError("not(%s)" % " == ".join(str(arg) for arg in (thing1, thing2) + args))
AssertionError: not({('0100007f', 19192)} == {('7f000001', 19192)})
2025-01-25T15:47:08.717000Z TestFramework (INFO): Stopping nodes
</details>
Similar to 038755784d88ce7522ac2f98e8ba138010a64f82 from leveldb.
<!--2e250dc3d92b2c9115b66051148d6e47-->
🤔 There hasn't been much activity lately and the CI seems to be failing.
If no one reviewed the current pull request by commit hash, a rebase can be considered. While the CI failure may be a false positive, the CI hasn't been running for some time, so there may be a real issue hiding as well. A rebase triggers the latest CI and makes sure that no silent merge conflicts have snuck in.
I'll come back to this once we land the changes upstream.