Skip to content

Commit 7edff9d

Browse files
committed
eof: Address review comments
1 parent d07a2ff commit 7edff9d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+146
-301
lines changed

test/libsolidity/semanticTests/builtinFunctions/eof/keccak256_packed_complex_types.sol

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ contract C {
1111
}
1212
}
1313
// ====
14-
// EVMVersion: >=prague
1514
// bytecodeFormat: >=EOFv1
1615
// ----
1716
// f() -> 0xba4f20407251e4607cd66b90bfea19ec6971699c03e4a4f3ea737d5818ac27ae, 0xba4f20407251e4607cd66b90bfea19ec6971699c03e4a4f3ea737d5818ac27ae, true

test/libsolidity/semanticTests/constructor/callvalue_check.sol

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ contract B4 { constructor() {} }
1111
contract C {
1212
function createWithValue(bytes memory c, uint256 value) public payable returns (bool) {
1313
uint256 y = 0;
14+
// TODO: This test is hard to recreate for EOF as for now eofcreate is disallowed in inline assembly.
1415
assembly { y := create(value, add(c, 0x20), mload(c)) }
1516
return y != 0;
1617
}

test/libsolidity/semanticTests/constructor/eof/no_callvalue_check.sol

-7
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,5 @@ contract C {
1717
}
1818
// ====
1919
// bytecodeFormat: >=EOFv1
20-
// EVMVersion: >=prague
2120
// ----
2221
// f(), 2000 ether -> true
23-
// gas irOptimized: 117623
24-
// gas irOptimized code: 1800
25-
// gas legacy: 117821
26-
// gas legacy code: 4800
27-
// gas legacyOptimized: 117690
28-
// gas legacyOptimized code: 4800

test/libsolidity/semanticTests/deployedCodeExclusion/bound_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
function longdata(S memory) pure returns (bytes memory) {
23
return
34
"xasopca.pngaibngidak.jbtnudak.cAP.BRRSMCPJAGPD KIAJDOMHUKR,SCPID"

test/libsolidity/semanticTests/deployedCodeExclusion/library_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
library L {
23
function longdata() pure internal returns (bytes memory) {
34
return

test/libsolidity/semanticTests/deployedCodeExclusion/module_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
==== Source: mod.sol ====
23
function longdata() pure returns (bytes memory) {
34
return

test/libsolidity/semanticTests/deployedCodeExclusion/static_base_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
abstract contract S {
23
function longdata() internal pure returns (bytes memory) {
34
return

test/libsolidity/semanticTests/deployedCodeExclusion/subassembly_deduplication.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
contract A {
23
function longdata() pure external returns (bytes memory) {
34
return

test/libsolidity/semanticTests/deployedCodeExclusion/super_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
abstract contract S {
23
function longdata() internal pure returns (bytes memory) {
34
return

test/libsolidity/semanticTests/deployedCodeExclusion/virtual_function.sol

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO: Recreate this test for EOF when subassembly deduplication will be supported for EOF too.
12
abstract contract S {
23
function longdata() internal virtual pure returns (bytes memory);
34
}

test/libsolidity/semanticTests/errors/eof/errors_by_parameter_type.sol

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ contract C {
3535
}
3636

3737
// ====
38-
// EVMVersion: >=prague
3938
// bytecodeFormat: >=EOFv1
4039
// ----
4140
// a() -> FAILURE, hex"92bbf6e8"

test/libsolidity/semanticTests/errors/eof/require_error_function_pointer_parameter.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ contract C
1010
}
1111

1212
// ====
13-
// EVMVersion: >=prague
1413
// bytecodeFormat: >=EOFv1
1514
// ----
1615
// f(function): left(0xa4dc3b5fce39438ce512c732ccb22e3212856bb6f37cdc8e0000000000000000) -> FAILURE, hex"271b1dfa", hex"a4dc3b5fce39438ce512c732ccb22e3212856bb6f37cdc8e0000000000000000"

test/libsolidity/semanticTests/events/eof/event_indexed_function.sol

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ contract C {
55
}
66
}
77
// ====
8-
// EVMVersion: >=prague
98
// bytecodeFormat: >=EOFv1
109
// ----
1110
// f(function): left(0x8f8cc95dcbe7358c1cf1409d3a7ad079e89576bb26121ff00000000000000000) ->

test/libsolidity/semanticTests/events/eof/event_indexed_function2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ contract C {
99
}
1010
}
1111
// ====
12-
// EVMVersion: >=prague
1312
// bytecodeFormat: >=EOFv1
1413
// ----
1514
// f1(function): left(0x347eaa94e3f63220b1f27af5888d33325ddbd4dec27fc3050000000000000000) ->

test/libsolidity/semanticTests/events/event_emit_from_other_contract.sol

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// TODO: Implement this test for EOF. Now it's not possible because deployed contract address depends on contact bytecode.
2+
// This means that the address changes when optimisations are applied.
13
contract D {
24
event Deposit(address indexed _from, bytes32 indexed _id, uint _value);
35
function deposit(bytes32 _id) public payable {

test/libsolidity/semanticTests/externalContracts/deposit_contract.sol

-2
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,6 @@ contract DepositContract is IDepositContract, ERC165 {
174174
ret[7] = bytesValue[0];
175175
}
176176
}
177-
// ====
178-
// bytecodeFormat: legacy
179177
// ----
180178
// constructor()
181179
// gas irOptimized: 809570

test/libsolidity/semanticTests/externalContracts/eof/deposit_contract.sol

-216
This file was deleted.

test/libsolidity/semanticTests/externalContracts/eof/snark.sol

-2
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,7 @@ contract Test {
294294
/// testMul() -> true
295295
//
296296
// ====
297-
// EVMVersion: >=constantinople
298297
// bytecodeFormat: >=EOFv1
299-
// EVMVersion: >=prague
300298
// ----
301299
// library: Pairing
302300
// f() -> true
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
contract C {
22
function f(uint x) external payable returns (uint) { return 1; }
33
function f(uint x, uint y) external payable returns (uint) { return 2; }
4-
function call() public payable returns (uint v, uint x, uint y, uint z) {
5-
v = this.f{value: 10}(2);
6-
x = this.f(2, 3);
4+
function call() public payable returns (uint x, uint y) {
5+
x = this.f{value: 10}(2);
76
y = this.f{value: 10}(2, 3);
8-
z = this.f{value: 10}(2, 3);
97
}
108
function bal() external returns (uint) { return address(this).balance; }
119
receive() external payable {}
@@ -14,5 +12,5 @@ contract C {
1412
// bytecodeFormat: >=EOFv1
1513
// ----
1614
// (), 1 ether
17-
// call() -> 1, 2, 2, 2
15+
// call() -> 1, 2
1816
// bal() -> 1000000000000000000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// TODO: This test should fail on calling a function which pointer was never initialized but for EOF it's impossible to check that
2+
// there is non-empty code under an address. This should be fixed in with `ISCONTRACT` opcode or any other solution.
3+
abstract contract D {
4+
function g() public virtual;
5+
}
6+
7+
8+
contract C {
9+
D d = D(address(0x1212));
10+
11+
function f() public returns (uint256) {
12+
d.g();
13+
return 7;
14+
}
15+
16+
function h() public returns (uint256) {
17+
address(d).call(""); // this does not throw (low-level)
18+
return 7;
19+
}
20+
}
21+
// ====
22+
// bytecodeFormat: >=EOFv1
23+
// ----
24+
// f() -> 7
25+
// h() -> 7

0 commit comments

Comments
 (0)