tornado-trees/contracts/mocks/Pack.sol

75 lines
2.2 KiB
Solidity
Raw Permalink Normal View History

2021-02-01 14:40:32 +01:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract Pack {
2021-02-26 10:14:43 +01:00
uint256 public constant CHUNK_TREE_HEIGHT = 8;
2021-02-01 14:40:32 +01:00
uint256 public constant CHUNK_SIZE = 2**CHUNK_TREE_HEIGHT;
uint256 public constant ITEM_SIZE = 32 + 20 + 4;
uint256 public constant BYTES_SIZE = CHUNK_SIZE * ITEM_SIZE;
uint256 public gas1;
uint256 public gas2;
uint256 public gas3;
uint256 public gas4;
bytes32 public hash;
event DepositData(address instance, bytes32 indexed hash, uint256 block, uint256 index);
2021-02-02 12:27:58 +01:00
function pack2(
bytes32[CHUNK_SIZE] memory hashes,
address[CHUNK_SIZE] memory instances,
uint32[CHUNK_SIZE] memory blocks
) public {
2021-02-01 14:40:32 +01:00
uint256 gasBefore = gasleft();
bytes memory data = new bytes(BYTES_SIZE);
2021-02-02 12:27:58 +01:00
for (uint256 i = 0; i < CHUNK_SIZE; i++) {
2021-03-04 11:00:14 +01:00
(bytes32 _hash, address _instance, uint32 _block) = (hashes[i], instances[i], blocks[i]);
2021-02-01 14:40:32 +01:00
assembly {
2021-03-04 11:00:14 +01:00
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x38), _block)
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x34), _instance)
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x20), _hash)
2021-02-02 12:27:58 +01:00
}
2021-02-01 14:40:32 +01:00
}
uint256 gasHash = gasleft();
bytes32 hash1 = sha256(data);
uint256 gasEvents = gasleft();
2021-02-02 12:27:58 +01:00
for (uint256 i = 0; i < CHUNK_SIZE; i++) {
2021-02-01 14:40:32 +01:00
emit DepositData(instances[i], hashes[i], blocks[i], i);
}
gas1 = gasEvents - gasleft();
gas2 = gasHash - gasEvents;
gas3 = gasBefore - gasHash;
gas4 = gasBefore;
hash = hash1;
}
2021-02-02 12:27:58 +01:00
function pack3(
bytes32[CHUNK_SIZE] memory hashes,
address[CHUNK_SIZE] memory instances,
uint32[CHUNK_SIZE] memory blocks
)
public
view
returns (
2021-03-04 11:00:14 +01:00
uint256,
uint256,
bytes32
2021-02-02 12:27:58 +01:00
)
{
2021-02-01 14:40:32 +01:00
uint256 gasBefore = gasleft();
bytes memory data = new bytes(BYTES_SIZE);
2021-02-02 12:27:58 +01:00
for (uint256 i = 0; i < CHUNK_SIZE; i++) {
2021-03-04 11:00:14 +01:00
(bytes32 _hash, address _instance, uint32 _block) = (hashes[i], instances[i], blocks[i]);
2021-02-01 14:40:32 +01:00
assembly {
2021-03-04 11:00:14 +01:00
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x38), _block)
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x34), _instance)
mstore(add(add(data, mul(ITEM_SIZE, i)), 0x20), _hash)
2021-02-02 12:27:58 +01:00
}
2021-02-01 14:40:32 +01:00
}
uint256 gasHash = gasleft();
2021-03-04 11:00:14 +01:00
bytes32 hash1 = sha256(data);
return (gasleft() - gasHash, gasHash - gasBefore, hash1);
2021-02-01 14:40:32 +01:00
}
2021-02-02 12:27:58 +01:00
}