bsc/eth
Felix Lange 25337f5aba core/types: faster RLP encoding of Header, StateAcccount, Re... (#24420)
This change makes use of the new code generator rlp/rlpgen to improve the
performance of RLP encoding for Header and StateAccount. It also speeds up
encoding of ReceiptForStorage using the new rlp.EncoderBuffer API.

The change is much less transparent than I wanted it to be, because Header and
StateAccount now have an EncodeRLP method defined with pointer receiver. It
used to be possible to encode non-pointer values of these types, but the new
method prevents that and attempting to encode unadressable values (even if
part of another value) will return an error. The error can be surprising and may
pop up in places that previously didn't expect any errors.

To make things work, I also needed to update all code paths (mostly in unit tests)
that lead to encoding of non-pointer values, and pass a pointer instead.

Benchmark results:

    name                             old time/op    new time/op    delta
    EncodeRLP/legacy-header-8           328ns ± 0%     237ns ± 1%   -27.63%  (p=0.000 n=8+8)
    EncodeRLP/london-header-8           353ns ± 0%     247ns ± 1%   -30.06%  (p=0.000 n=8+8)
    EncodeRLP/receipt-for-storage-8     237ns ± 0%     123ns ± 0%   -47.86%  (p=0.000 n=8+7)
    EncodeRLP/receipt-full-8            297ns ± 0%     301ns ± 1%    +1.39%  (p=0.000 n=8+8)

    name                             old speed      new speed      delta
    EncodeRLP/legacy-header-8        1.66GB/s ± 0%  2.29GB/s ± 1%   +38.19%  (p=0.000 n=8+8)
    EncodeRLP/london-header-8        1.55GB/s ± 0%  2.22GB/s ± 1%   +42.99%  (p=0.000 n=8+8)
    EncodeRLP/receipt-for-storage-8  38.0MB/s ± 0%  64.8MB/s ± 0%   +70.48%  (p=0.000 n=8+7)
    EncodeRLP/receipt-full-8          910MB/s ± 0%   897MB/s ± 1%    -1.37%  (p=0.000 n=8+8)

    name                             old alloc/op   new alloc/op   delta
    EncodeRLP/legacy-header-8           0.00B          0.00B           ~     (all equal)
    EncodeRLP/london-header-8           0.00B          0.00B           ~     (all equal)
    EncodeRLP/receipt-for-storage-8     64.0B ± 0%      0.0B       -100.00%  (p=0.000 n=8+8)
    EncodeRLP/receipt-full-8             320B ± 0%      320B ± 0%      ~     (all equal)
2022-08-26 14:44:54 +08:00
..
catalyst fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
downloader eth/downloader: ignore zero size header batch for importing (#24569) 2022-08-22 14:43:14 +08:00
ethconfig fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
fetcher fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
filters fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
gasprice bep153: Native Staking on BSC (#1051) 2022-08-18 14:36:45 +08:00
protocols core/types: faster RLP encoding of Header, StateAcccount, Re... (#24420) 2022-08-26 14:44:54 +08:00
tracers eth/tracers: use hex encoding for debug_traceBlock argument (#24517) 2022-08-22 14:43:14 +08:00
api_backend.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
api_test.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
api.go eth: fix typo in comment (#23941) 2021-11-22 02:53:16 +01:00
backend.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
bloombits.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
discovery.go cmd/utils: use eth DNS tree for snap discovery (#22808) 2021-05-04 11:29:32 +02:00
handler_diff_test.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
handler_diff.go fix: memory leak issue with diff protocol (#1019) 2022-07-26 16:33:59 +08:00
handler_eth_test.go core/types: faster RLP encoding of Header, StateAcccount, Re... (#24420) 2022-08-26 14:44:54 +08:00
handler_eth.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
handler_snap.go eth: check snap satelliteness, delegate drop to eth (#22235) 2021-02-02 10:44:36 +02:00
handler_test.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
handler_trust.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
handler.go fix: memory leak issue with diff protocol (#1019) 2022-07-26 16:33:59 +08:00
peer.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
peerset.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
state_accessor.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00
sync_test.go eth: request id dispatcher and direct req/reply APIs (#23576) 2021-11-26 13:26:03 +02:00
sync.go fix: code compatibility fixes 2022-07-05 11:14:21 +08:00