forked from status-im/nimbus-eth1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement EIP-1153: Transient storage
new EVM opcodes: - TLOAD 0xb3 - TSTORE 0xb4
- Loading branch information
Showing
13 changed files
with
261 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Nimbus | ||
# Copyright (c) 2023 Status Research & Development GmbH | ||
# Licensed under either of | ||
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or | ||
# http://www.apache.org/licenses/LICENSE-2.0) | ||
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or | ||
# http://opensource.org/licenses/MIT) | ||
# at your option. This file may not be copied, modified, or distributed except | ||
# according to those terms. | ||
|
||
import | ||
tables, | ||
stint, | ||
eth/common | ||
|
||
type | ||
StorageTable = ref object | ||
map: Table[UInt256, UInt256] | ||
|
||
TransientStorage* = object | ||
map: Table[EthAddress, StorageTable] | ||
|
||
####################################################################### | ||
# Private helpers | ||
####################################################################### | ||
|
||
proc merge(a, b: StorageTable) = | ||
for k, v in b.map: | ||
a.map[k] = v | ||
|
||
####################################################################### | ||
# Public functions | ||
####################################################################### | ||
|
||
proc init*(ac: var TransientStorage) = | ||
ac.map = initTable[EthAddress, StorageTable]() | ||
|
||
proc init*(_: type TransientStorage): TransientStorage {.inline.} = | ||
result.init() | ||
|
||
func getStorage*(ac: TransientStorage, | ||
address: EthAddress, slot: UInt256): (bool, UInt256) = | ||
var table = ac.map.getOrDefault(address) | ||
if table.isNil: | ||
return (false, 0.u256) | ||
|
||
table.map.withValue(slot, val): | ||
return (true, val[]) | ||
do: | ||
return (false, 0.u256) | ||
|
||
proc setStorage*(ac: var TransientStorage, | ||
address: EthAddress, slot, value: UInt256) = | ||
var table = ac.map.getOrDefault(address) | ||
if table.isNil: | ||
table = StorageTable() | ||
ac.map[address] = table | ||
|
||
table.map[slot] = value | ||
|
||
proc merge*(ac: var TransientStorage, other: TransientStorage) = | ||
for k, v in other.map: | ||
ac.map.withValue(k, val): | ||
val[].merge(v) | ||
do: | ||
ac.map[k] = v | ||
|
||
proc clear*(ac: var TransientStorage) {.inline.} = | ||
ac.map.clear() |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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