solidity/test/libsolidity/semanticTests/viaYul/array_storage_index_access.sol

51 lines
1.3 KiB
Solidity
Raw Normal View History

contract C {
uint[] storageArray;
function test_indices(uint256 len) public
{
while (storageArray.length < len)
storageArray.push();
while (storageArray.length > len)
storageArray.pop();
for (uint i = 0; i < len; i++)
storageArray[i] = i + 1;
for (uint i = 0; i < len; i++)
require(storageArray[i] == i + 1);
}
}
// ====
// compileViaYul: also
// ----
// test_indices(uint256): 1 ->
// test_indices(uint256): 129 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 3442268
2021-02-12 12:45:15 +00:00
// gas legacy: 3340105
// gas legacyOptimized: 3280773
// test_indices(uint256): 5 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 467656
2021-02-12 12:45:15 +00:00
// gas legacy: 458941
// gas legacyOptimized: 455849
// test_indices(uint256): 10 ->
// test_indices(uint256): 15 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 109070
// test_indices(uint256): 0xFF ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 4308940
2021-02-12 12:45:15 +00:00
// gas legacy: 4107867
// gas legacyOptimized: 3991807
// test_indices(uint256): 1000 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 21133562
2021-02-12 12:45:15 +00:00
// gas legacy: 20360399
// gas legacyOptimized: 19921344
// test_indices(uint256): 129 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 3601383
2021-02-12 12:45:15 +00:00
// gas legacy: 3472135
// gas legacyOptimized: 3415947
// test_indices(uint256): 128 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 648097
2021-02-12 12:45:15 +00:00
// gas legacy: 556972
// gas legacyOptimized: 508124
// test_indices(uint256): 1 ->
2021-04-12 10:53:09 +00:00
// gas irOptimized: 458399
2021-02-12 12:45:15 +00:00
// gas legacy: 452407
// gas legacyOptimized: 450811