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
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
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
|
|
|
*/
|
|
|
|
|
2020-01-14 16:48:17 +00:00
|
|
|
#include <test/Common.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>
|
2020-04-07 17:31:48 +00:00
|
|
|
#include <libsolidity/analysis/DeclarationTypeChecker.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#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;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::evmasm;
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::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);
|
2020-01-14 16:48:17 +00:00
|
|
|
Parser parser(errorReporter, solidity::test::CommonOptions::get().evmVersion());
|
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);
|
|
|
|
|
2019-04-29 16:29:40 +00:00
|
|
|
GlobalContext globalContext;
|
2020-05-14 09:56:10 +00:00
|
|
|
NameAndTypeResolver resolver(globalContext, solidity::test::CommonOptions::get().evmVersion(), errorReporter);
|
2020-04-07 17:31:48 +00:00
|
|
|
DeclarationTypeChecker declarationTypeChecker(errorReporter, solidity::test::CommonOptions::get().evmVersion());
|
2017-05-11 13:26:35 +00:00
|
|
|
solAssert(Error::containsOnlyWarnings(errorReporter.errors()), "");
|
2015-02-24 16:08:27 +00:00
|
|
|
resolver.registerDeclarations(*sourceUnit);
|
2020-06-11 15:17:07 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(resolver.resolveNamesAndTypes(*sourceUnit));
|
|
|
|
if (!Error::containsOnlyWarnings(errorReporter.errors()))
|
|
|
|
return AssemblyItems();
|
2020-04-07 17:31:48 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
|
|
|
{
|
|
|
|
BOOST_REQUIRE_NO_THROW(declarationTypeChecker.check(*node));
|
|
|
|
if (!Error::containsOnlyWarnings(errorReporter.errors()))
|
|
|
|
return AssemblyItems();
|
|
|
|
}
|
2020-06-11 15:17:07 +00:00
|
|
|
TypeChecker checker(solidity::test::CommonOptions::get().evmVersion(), errorReporter);
|
|
|
|
BOOST_REQUIRE_NO_THROW(checker.checkTypeRequirements(*sourceUnit));
|
|
|
|
if (!Error::containsOnlyWarnings(errorReporter.errors()))
|
|
|
|
return AssemblyItems();
|
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(
|
2020-01-14 16:48:17 +00:00
|
|
|
solidity::test::CommonOptions::get().evmVersion(),
|
2019-09-18 14:44:36 +00:00
|
|
|
RevertStrings::Default,
|
2020-01-14 16:48:17 +00:00
|
|
|
solidity::test::CommonOptions::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 <<
|
2020-05-26 15:24:52 +00:00
|
|
|
", SourceLocation{" <<
|
2018-01-04 13:24:35 +00:00
|
|
|
_loc.start <<
|
|
|
|
", " <<
|
|
|
|
_loc.end <<
|
|
|
|
", make_shared<string>(\"" <<
|
2018-11-28 15:19:22 +00:00
|
|
|
_loc.source->name() <<
|
2020-05-26 15:24:52 +00:00
|
|
|
"\")}) +" << endl;
|
2018-01-04 13:24:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
2020-01-14 16:48:17 +00:00
|
|
|
bool hasShifts = solidity::test::CommonOptions::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;
|
2020-01-14 16:48:17 +00:00
|
|
|
if (solidity::test::CommonOptions::get().optimize)
|
2019-02-28 22:25:24 +00:00
|
|
|
locations =
|
2020-05-26 15:24:52 +00:00
|
|
|
vector<SourceLocation>(31, SourceLocation{2, 82, sourceCode}) +
|
2019-02-28 22:25:24 +00:00
|
|
|
vector<SourceLocation>(21, SourceLocation{20, 79, sourceCode}) +
|
|
|
|
vector<SourceLocation>(1, SourceLocation{72, 74, sourceCode}) +
|
|
|
|
vector<SourceLocation>(2, SourceLocation{20, 79, sourceCode});
|
|
|
|
else
|
|
|
|
locations =
|
2020-05-26 15:24:52 +00:00
|
|
|
vector<SourceLocation>(hasShifts ? 31 : 32, SourceLocation{2, 82, sourceCode}) +
|
2019-02-28 22:25:24 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:22:01 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(jump_type)
|
|
|
|
{
|
|
|
|
auto sourceCode = make_shared<CharStream>(R"(
|
|
|
|
contract C {
|
|
|
|
function f(uint a) public pure returns (uint t) {
|
|
|
|
assembly {
|
|
|
|
function g(x) -> y { if x { leave } y := 8 }
|
|
|
|
t := g(a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)", "");
|
|
|
|
AssemblyItems items = compileContract(sourceCode);
|
|
|
|
|
|
|
|
string jumpTypes;
|
|
|
|
for (AssemblyItem const& item: items)
|
|
|
|
if (item.getJumpType() != AssemblyItem::JumpType::Ordinary)
|
|
|
|
jumpTypes += item.getJumpTypeAsString() + "\n";
|
|
|
|
|
|
|
|
BOOST_CHECK_EQUAL(jumpTypes, "[in]\n[out]\n[in]\n[out]\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-24 16:08:27 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
} // end namespaces
|