2015-02-24 16:08:27 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-02-24 16:08:27 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-02-24 16:08:27 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-02-24 16:08:27 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Lefteris Karapetsas <lefteris@ethdev.com>
|
|
|
|
* @date 2015
|
2015-04-24 15:35:16 +00:00
|
|
|
* Unit tests for Assembly Items from evmasm/Assembly.h
|
2015-02-24 16:08:27 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-14 11:04:04 +00:00
|
|
|
#include <test/Options.h>
|
2018-02-23 18:29:20 +00:00
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/SourceLocation.h>
|
2015-04-24 15:35:16 +00:00
|
|
|
#include <libevmasm/Assembly.h>
|
2018-02-22 15:16:27 +00:00
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Scanner.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/parsing/Parser.h>
|
|
|
|
#include <libsolidity/analysis/NameAndTypeResolver.h>
|
|
|
|
#include <libsolidity/codegen/Compiler.h>
|
|
|
|
#include <libsolidity/ast/AST.h>
|
|
|
|
#include <libsolidity/analysis/TypeChecker.h>
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2018-02-22 15:16:27 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
2015-02-24 16:08:27 +00:00
|
|
|
using namespace std;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2015-02-24 16:08:27 +00:00
|
|
|
using namespace dev::eth;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2019-01-10 15:44:31 +00:00
|
|
|
class Contract;
|
2015-02-24 16:08:27 +00:00
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2018-11-28 15:19:22 +00:00
|
|
|
eth::AssemblyItems compileContract(std::shared_ptr<CharStream> _sourceCode)
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
2015-10-14 18:37:41 +00:00
|
|
|
ErrorList errors;
|
2017-05-11 13:26:35 +00:00
|
|
|
ErrorReporter errorReporter(errors);
|
|
|
|
Parser parser(errorReporter);
|
2015-02-24 16:08:27 +00:00
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
2018-11-28 15:19:22 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(sourceUnit = parser.parse(make_shared<Scanner>(_sourceCode)));
|
2015-10-14 18:37:41 +00:00
|
|
|
BOOST_CHECK(!!sourceUnit);
|
|
|
|
|
2017-01-31 21:59:56 +00:00
|
|
|
map<ASTNode const*, shared_ptr<DeclarationContainer>> scopes;
|
2019-04-29 16:29:40 +00:00
|
|
|
GlobalContext globalContext;
|
|
|
|
NameAndTypeResolver resolver(globalContext, scopes, errorReporter);
|
2017-05-11 13:26:35 +00:00
|
|
|
solAssert(Error::containsOnlyWarnings(errorReporter.errors()), "");
|
2015-02-24 16:08:27 +00:00
|
|
|
resolver.registerDeclarations(*sourceUnit);
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-02-25 11:37:13 +00:00
|
|
|
{
|
2015-02-24 16:08:27 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(resolver.resolveNamesAndTypes(*contract));
|
2017-05-11 13:26:35 +00:00
|
|
|
if (!Error::containsOnlyWarnings(errorReporter.errors()))
|
2015-10-14 18:37:41 +00:00
|
|
|
return AssemblyItems();
|
2015-02-25 11:37:13 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-02-25 11:37:13 +00:00
|
|
|
{
|
2018-02-23 18:29:20 +00:00
|
|
|
TypeChecker checker(dev::test::Options::get().evmVersion(), errorReporter);
|
2015-09-16 14:56:30 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(checker.checkTypeRequirements(*contract));
|
2017-05-11 13:26:35 +00:00
|
|
|
if (!Error::containsOnlyWarnings(errorReporter.errors()))
|
2015-10-14 18:37:41 +00:00
|
|
|
return AssemblyItems();
|
2015-02-25 11:37:13 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
2017-07-17 11:12:00 +00:00
|
|
|
Compiler compiler(
|
|
|
|
dev::test::Options::get().evmVersion(),
|
2019-03-20 15:15:07 +00:00
|
|
|
dev::test::Options::get().optimize ? OptimiserSettings::standard() : OptimiserSettings::minimal()
|
2017-07-17 11:12:00 +00:00
|
|
|
);
|
2019-01-10 15:44:31 +00:00
|
|
|
compiler.compileContract(*contract, map<ContractDefinition const*, shared_ptr<Compiler const>>{}, bytes());
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
return compiler.runtimeAssemblyItems();
|
2015-02-24 16:08:27 +00:00
|
|
|
}
|
|
|
|
BOOST_FAIL("No contract found in source.");
|
|
|
|
return AssemblyItems();
|
|
|
|
}
|
|
|
|
|
2018-01-04 13:24:35 +00:00
|
|
|
void printAssemblyLocations(AssemblyItems const& _items)
|
|
|
|
{
|
|
|
|
auto printRepeated = [](SourceLocation const& _loc, size_t _repetitions)
|
|
|
|
{
|
|
|
|
cout <<
|
|
|
|
"\t\tvector<SourceLocation>(" <<
|
|
|
|
_repetitions <<
|
|
|
|
", SourceLocation(" <<
|
|
|
|
_loc.start <<
|
|
|
|
", " <<
|
|
|
|
_loc.end <<
|
|
|
|
", make_shared<string>(\"" <<
|
2018-11-28 15:19:22 +00:00
|
|
|
_loc.source->name() <<
|
2018-01-04 13:24:35 +00:00
|
|
|
"\"))) +" << endl;
|
|
|
|
};
|
|
|
|
|
|
|
|
vector<SourceLocation> locations;
|
|
|
|
for (auto const& item: _items)
|
|
|
|
locations.push_back(item.location());
|
|
|
|
size_t repetitions = 0;
|
|
|
|
SourceLocation const* previousLoc = nullptr;
|
|
|
|
for (size_t i = 0; i < locations.size(); ++i)
|
|
|
|
{
|
|
|
|
SourceLocation& loc = locations[i];
|
|
|
|
if (previousLoc && *previousLoc == loc)
|
|
|
|
repetitions++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (previousLoc)
|
|
|
|
printRepeated(*previousLoc, repetitions);
|
|
|
|
previousLoc = &loc;
|
|
|
|
repetitions = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (previousLoc)
|
|
|
|
printRepeated(*previousLoc, repetitions);
|
|
|
|
}
|
|
|
|
|
2015-03-11 14:59:02 +00:00
|
|
|
void checkAssemblyLocations(AssemblyItems const& _items, vector<SourceLocation> const& _locations)
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
|
|
|
BOOST_CHECK_EQUAL(_items.size(), _locations.size());
|
2015-03-11 14:59:02 +00:00
|
|
|
for (size_t i = 0; i < min(_items.size(), _locations.size()); ++i)
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
2018-11-30 16:34:54 +00:00
|
|
|
if (_items[i].location().start != _locations[i].start ||
|
|
|
|
_items[i].location().end != _locations[i].end)
|
2018-01-04 13:24:35 +00:00
|
|
|
{
|
|
|
|
BOOST_CHECK_MESSAGE(false, "Location mismatch for item " + to_string(i) + ". Found the following locations:");
|
|
|
|
printAssemblyLocations(_items);
|
|
|
|
return;
|
|
|
|
}
|
2015-02-24 16:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 13:24:35 +00:00
|
|
|
|
2015-02-24 16:08:27 +00:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(Assembly)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(location_test)
|
|
|
|
{
|
2018-11-28 15:19:22 +00:00
|
|
|
auto sourceCode = make_shared<CharStream>(R"(
|
2015-03-11 14:59:02 +00:00
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f() public returns (uint256 a) {
|
2015-03-11 14:59:02 +00:00
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
}
|
2018-11-28 15:19:22 +00:00
|
|
|
)", "");
|
2015-02-24 16:08:27 +00:00
|
|
|
AssemblyItems items = compileContract(sourceCode);
|
2018-04-30 20:23:08 +00:00
|
|
|
bool hasShifts = dev::test::Options::get().evmVersion().hasBitwiseShifting();
|
2018-11-28 15:19:22 +00:00
|
|
|
|
|
|
|
auto codegenCharStream = make_shared<CharStream>("", "--CODEGEN--");
|
|
|
|
|
2019-02-28 22:25:24 +00:00
|
|
|
vector<SourceLocation> locations;
|
|
|
|
if (dev::test::Options::get().optimize)
|
|
|
|
locations =
|
|
|
|
vector<SourceLocation>(4, SourceLocation{2, 82, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{8, 17, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(3, SourceLocation{5, 7, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{30, 31, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{27, 28, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{20, 32, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{5, 7, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(19, SourceLocation{2, 82, sourceCode}) +
|
|
|
|
vector<SourceLocation>(21, SourceLocation{20, 79, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{72, 74, sourceCode}) +
|
|
|
|
vector<SourceLocation>(2, SourceLocation{20, 79, sourceCode});
|
|
|
|
else
|
|
|
|
locations =
|
|
|
|
vector<SourceLocation>(4, SourceLocation{2, 82, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{8, 17, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(3, SourceLocation{5, 7, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{30, 31, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{27, 28, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{20, 32, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{5, 7, codegenCharStream}) +
|
|
|
|
vector<SourceLocation>(hasShifts ? 19 : 20, SourceLocation{2, 82, sourceCode}) +
|
|
|
|
vector<SourceLocation>(24, SourceLocation{20, 79, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{49, 58, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{72, 74, sourceCode}) +
|
|
|
|
vector<SourceLocation>(2, SourceLocation{65, 74, sourceCode}) +
|
|
|
|
vector<SourceLocation>(2, SourceLocation{20, 79, sourceCode});
|
2015-02-24 16:08:27 +00:00
|
|
|
checkAssemblyLocations(items, locations);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|