2014-12-11 15:37:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Tests for the Solidity optimizer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <tuple>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <test/solidityExecutionFramework.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
class OptimizerTestFramework: public ExecutionFramework
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OptimizerTestFramework() { }
|
|
|
|
/// Compiles the source code with and without optimizing.
|
|
|
|
void compileBothVersions(unsigned _expectedSizeDecrease, std::string const& _sourceCode, u256 const& _value = 0, std::string const& _contractName = "") {
|
|
|
|
m_optimize = false;
|
|
|
|
bytes nonOptimizedBytecode = compileAndRun(_sourceCode, _value, _contractName);
|
|
|
|
m_nonOptimizedContract = m_contractAddress;
|
|
|
|
m_optimize = true;
|
|
|
|
bytes optimizedBytecode = compileAndRun(_sourceCode, _value, _contractName);
|
|
|
|
int sizeDiff = nonOptimizedBytecode.size() - optimizedBytecode.size();
|
2015-01-07 14:41:11 +00:00
|
|
|
BOOST_CHECK_MESSAGE(sizeDiff == int(_expectedSizeDecrease), "Bytecode shrank by "
|
2014-12-11 15:37:17 +00:00
|
|
|
+ boost::lexical_cast<string>(sizeDiff) + " bytes, expected: "
|
|
|
|
+ boost::lexical_cast<string>(_expectedSizeDecrease));
|
|
|
|
m_optimizedContract = m_contractAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class... Args>
|
2015-01-08 16:18:31 +00:00
|
|
|
void compareVersions(std::string _sig, Args const&... _arguments)
|
2014-12-11 15:37:17 +00:00
|
|
|
{
|
|
|
|
m_contractAddress = m_nonOptimizedContract;
|
2015-01-08 16:18:31 +00:00
|
|
|
bytes nonOptimizedOutput = callContractFunction(_sig, _arguments...);
|
2014-12-11 15:37:17 +00:00
|
|
|
m_contractAddress = m_optimizedContract;
|
2015-01-08 16:18:31 +00:00
|
|
|
bytes optimizedOutput = callContractFunction(_sig, _arguments...);
|
2014-12-11 15:37:17 +00:00
|
|
|
BOOST_CHECK_MESSAGE(nonOptimizedOutput == optimizedOutput, "Computed values do not match."
|
|
|
|
"\nNon-Optimized: " + toHex(nonOptimizedOutput) +
|
|
|
|
"\nOptimized: " + toHex(optimizedOutput));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Address m_optimizedContract;
|
|
|
|
Address m_nonOptimizedContract;
|
|
|
|
};
|
|
|
|
|
2014-12-18 14:21:03 +00:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(SolidityOptimizer, OptimizerTestFramework)
|
2014-12-11 15:37:17 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(smoke_test)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint a) returns (uint b) {
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
})";
|
2015-01-08 16:18:31 +00:00
|
|
|
compileBothVersions(29, sourceCode);
|
|
|
|
compareVersions("f(uint256)", u256(7));
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(large_integers)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns (uint a, uint b) {
|
|
|
|
a = 0x234234872642837426347000000;
|
2015-01-07 14:41:11 +00:00
|
|
|
b = 0x10000000000000000000000002;
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
})";
|
2014-12-19 10:31:17 +00:00
|
|
|
compileBothVersions(36, sourceCode);
|
2015-01-08 16:18:31 +00:00
|
|
|
compareVersions("f()");
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(invariants)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2015-01-07 14:41:11 +00:00
|
|
|
function f(int a) returns (int b) {
|
|
|
|
return int(0) | (int(1) * (int(0) ^ (0 + a)));
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
})";
|
2014-12-19 10:31:17 +00:00
|
|
|
compileBothVersions(41, sourceCode);
|
2015-01-08 16:18:31 +00:00
|
|
|
compareVersions("f(uint256)", u256(0x12334664));
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(unused_expressions)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
uint data;
|
|
|
|
function f() returns (uint a, uint b) {
|
2014-12-11 16:04:26 +00:00
|
|
|
10 + 20;
|
2014-12-11 15:37:17 +00:00
|
|
|
data;
|
|
|
|
}
|
|
|
|
})";
|
2014-12-19 10:31:17 +00:00
|
|
|
compileBothVersions(33, sourceCode);
|
2015-01-08 16:18:31 +00:00
|
|
|
compareVersions("f()");
|
2014-12-11 15:37:17 +00:00
|
|
|
}
|
|
|
|
|
2014-12-11 16:35:23 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(constant_folding_both_sides)
|
|
|
|
{
|
|
|
|
// if constants involving the same associative and commutative operator are applied from both
|
2015-01-07 14:41:11 +00:00
|
|
|
// sides, the operator should be applied only once, because the expression compiler pushes
|
|
|
|
// literals as late as possible
|
2014-12-11 16:35:23 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint x) returns (uint y) {
|
|
|
|
return 98 ^ (7 * ((1 | (x | 1000)) * 40) ^ 102);
|
|
|
|
}
|
|
|
|
})";
|
2014-12-19 10:31:17 +00:00
|
|
|
compileBothVersions(37, sourceCode);
|
2015-01-08 16:18:31 +00:00
|
|
|
compareVersions("f(uint256)");
|
2014-12-11 16:35:23 +00:00
|
|
|
}
|
|
|
|
|
2014-12-11 15:37:17 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|