768307d91d
It is common for many accounts to share the same code - at the database level, code is stored by hash meaning only one copy exists per unique program but when loaded in memory, a copy is made for each account. Further, every time we execute the code, it must be scanned for invalid jump destinations which slows down EVM exeuction. Finally, the extcodesize call causes code to be loaded even if only the size is needed. This PR improves on all these points by introducing a shared CodeBytesRef type whose code section is immutable and that can be shared between accounts. Further, a dedicated `len` API call is added so that the EXTCODESIZE opcode can operate without polluting the GC and code cache, for cases where only the size is requested - rocksdb will in this case cache the code itself in the row cache meaning that lookup of the code itself remains fast when length is asked for first. With 16k code entries, there's a 90% hit rate which goes up to 99% during the 2.3M attack - the cache significantly lowers memory consumption and execution time not only during this event but across the board. |
||
---|---|---|
.. | ||
chain | ||
executor | ||
pow | ||
tx_pool | ||
block_import.nim | ||
casper.nim | ||
chain.nim | ||
dao.nim | ||
eip4844.nim | ||
executor.nim | ||
gaslimit.nim | ||
tx_pool.nim | ||
validate.nim | ||
withdrawals.nim |