mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add end-to-end test for SwapComparison and CommutativeSwap peephole optimisers
This commit is contained in:
parent
02ea0e547f
commit
8dc9113e37
@ -11032,6 +11032,50 @@ BOOST_AUTO_TEST_CASE(staticcall_for_view_and_pure)
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(swap_peephole_optimisation)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract C {
|
||||
function lt(uint a, uint b) returns (bool c) {
|
||||
assembly {
|
||||
a
|
||||
b
|
||||
swap1
|
||||
lt
|
||||
=: c
|
||||
}
|
||||
}
|
||||
function add(uint a, uint b) returns (uint c) {
|
||||
assembly {
|
||||
a
|
||||
b
|
||||
swap1
|
||||
add
|
||||
=: c
|
||||
}
|
||||
}
|
||||
function div(uint a, uint b) returns (uint c) {
|
||||
assembly {
|
||||
a
|
||||
b
|
||||
swap1
|
||||
div
|
||||
=: c
|
||||
}
|
||||
}
|
||||
}
|
||||
)";
|
||||
compileAndRun(sourceCode);
|
||||
BOOST_CHECK(callContractFunction("lt(uint256,uint256)", u256(1), u256(2)) == encodeArgs(u256(1)));
|
||||
BOOST_CHECK(callContractFunction("lt(uint256,uint256)", u256(2), u256(1)) == encodeArgs(u256(0)));
|
||||
BOOST_CHECK(callContractFunction("add(uint256,uint256)", u256(1), u256(2)) == encodeArgs(u256(3)));
|
||||
BOOST_CHECK(callContractFunction("add(uint256,uint256)", u256(100), u256(200)) == encodeArgs(u256(300)));
|
||||
BOOST_CHECK(callContractFunction("div(uint256,uint256)", u256(2), u256(1)) == encodeArgs(u256(2)));
|
||||
BOOST_CHECK(callContractFunction("div(uint256,uint256)", u256(200), u256(10)) == encodeArgs(u256(20)));
|
||||
BOOST_CHECK(callContractFunction("div(uint256,uint256)", u256(1), u256(0)) == encodeArgs(u256(0)));
|
||||
BOOST_CHECK(callContractFunction("div(uint256,uint256)", u256(0), u256(1)) == encodeArgs(u256(0)));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user