solidity/test/libsolidity/Assembly.cpp

224 lines
6.9 KiB
C++
Raw Normal View History

/*
This file is part of solidity.
solidity 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.
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: GPL-3.0
/**
* @author Lefteris Karapetsas <lefteris@ethdev.com>
* @date 2015
* Unit tests for Assembly Items from evmasm/Assembly.h
*/
#include <test/Common.h>
2018-02-23 18:29:20 +00:00
#include <liblangutil/SourceLocation.h>
#include <libevmasm/Assembly.h>
2018-02-22 15:16:27 +00:00
2021-07-14 10:53:39 +00:00
#include <liblangutil/CharStream.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>
2020-08-06 12:46:04 +00:00
#include <libsolidity/analysis/Scoper.h>
2015-10-20 22:21:52 +00:00
#include <libsolidity/codegen/Compiler.h>
#include <libsolidity/ast/AST.h>
#include <libsolidity/analysis/TypeChecker.h>
2020-10-22 17:19:14 +00:00
#include <libsolidity/analysis/SyntaxChecker.h>
#include <liblangutil/ErrorReporter.h>
2018-02-22 15:16:27 +00:00
#include <boost/test/unit_test.hpp>
#include <string>
#include <iostream>
using namespace std;
using namespace solidity::langutil;
using namespace solidity::evmasm;
namespace solidity::frontend::test
{
namespace
{
2019-12-11 16:31:36 +00:00
evmasm::AssemblyItems compileContract(std::shared_ptr<CharStream> _sourceCode)
{
ErrorList errors;
ErrorReporter errorReporter(errors);
Parser parser(errorReporter, solidity::test::CommonOptions::get().evmVersion());
ASTPointer<SourceUnit> sourceUnit;
2021-07-14 10:53:39 +00:00
BOOST_REQUIRE_NO_THROW(sourceUnit = parser.parse(*_sourceCode));
BOOST_CHECK(!!sourceUnit);
2020-08-06 12:46:04 +00:00
Scoper::assignScopes(*sourceUnit);
2020-10-22 17:19:14 +00:00
BOOST_REQUIRE(SyntaxChecker(errorReporter, false).checkSyntax(*sourceUnit));
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());
2021-06-30 12:48:45 +00:00
solAssert(!Error::containsErrors(errorReporter.errors()), "");
resolver.registerDeclarations(*sourceUnit);
2020-06-11 15:17:07 +00:00
BOOST_REQUIRE_NO_THROW(resolver.resolveNamesAndTypes(*sourceUnit));
2021-06-30 12:48:45 +00:00
if (Error::containsErrors(errorReporter.errors()))
2020-06-11 15:17:07 +00:00
return AssemblyItems();
2020-04-07 17:31:48 +00:00
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
{
BOOST_REQUIRE_NO_THROW(declarationTypeChecker.check(*node));
2021-06-30 12:48:45 +00:00
if (Error::containsErrors(errorReporter.errors()))
2020-04-07 17:31:48 +00:00
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));
2021-06-30 12:48:45 +00:00
if (Error::containsErrors(errorReporter.errors()))
2020-06-11 15:17:07 +00:00
return AssemblyItems();
2015-08-31 16:44:29 +00:00
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
{
2017-07-17 11:12:00 +00:00
Compiler compiler(
solidity::test::CommonOptions::get().evmVersion(),
RevertStrings::Default,
solidity::test::CommonOptions::get().optimize ? OptimiserSettings::standard() : OptimiserSettings::minimal()
2017-07-17 11:12:00 +00:00
);
compiler.compileContract(*contract, map<ContractDefinition const*, shared_ptr<Compiler const>>{}, bytes());
return compiler.runtimeAssembly().items();
}
BOOST_FAIL("No contract found in source.");
return AssemblyItems();
}
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>(\"" <<
2021-06-29 12:38:59 +00:00
*_loc.sourceName <<
"\")}) +" << 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)
{
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)
{
if (_items[i].location().start != _locations[i].start ||
_items[i].location().end != _locations[i].end)
{
BOOST_CHECK_MESSAGE(false, "Location mismatch for item " + to_string(i) + ". Found the following locations:");
printAssemblyLocations(_items);
return;
}
}
}
} // end anonymous namespace
BOOST_AUTO_TEST_SUITE(Assembly)
BOOST_AUTO_TEST_CASE(location_test)
{
2021-06-29 12:38:59 +00:00
string sourceCode = R"(
pragma abicoder v1;
2015-03-11 14:59:02 +00:00
contract test {
function f() public returns (uint256 a) {
2015-03-11 14:59:02 +00:00
return 16;
}
}
2021-06-29 12:38:59 +00:00
)";
AssemblyItems items = compileContract(make_shared<CharStream>(sourceCode, ""));
shared_ptr<string> sourceName = make_shared<string>();
bool hasShifts = solidity::test::CommonOptions::get().evmVersion().hasBitwiseShifting();
auto codegenCharStream = make_shared<CharStream>("", "--CODEGEN--");
2019-02-28 22:25:24 +00:00
vector<SourceLocation> locations;
if (solidity::test::CommonOptions::get().optimize)
2019-02-28 22:25:24 +00:00
locations =
2021-06-29 12:38:59 +00:00
vector<SourceLocation>(31, SourceLocation{23, 103, sourceName}) +
vector<SourceLocation>(1, SourceLocation{41, 100, sourceName}) +
vector<SourceLocation>(1, SourceLocation{93, 95, sourceName}) +
vector<SourceLocation>(15, SourceLocation{41, 100, sourceName});
2019-02-28 22:25:24 +00:00
else
locations =
2021-06-29 12:38:59 +00:00
vector<SourceLocation>(hasShifts ? 31 : 32, SourceLocation{23, 103, sourceName}) +
vector<SourceLocation>(24, SourceLocation{41, 100, sourceName}) +
vector<SourceLocation>(1, SourceLocation{70, 79, sourceName}) +
vector<SourceLocation>(1, SourceLocation{93, 95, sourceName}) +
vector<SourceLocation>(2, SourceLocation{86, 95, sourceName}) +
vector<SourceLocation>(2, SourceLocation{41, 100, sourceName});
checkAssemblyLocations(items, locations);
}
2020-06-22 12:22:01 +00:00
BOOST_AUTO_TEST_CASE(jump_type)
{
auto sourceCode = make_shared<CharStream>(R"(
pragma abicoder v1;
2020-06-22 12:22:01 +00:00
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";
2021-01-14 12:02:14 +00:00
if (solidity::test::CommonOptions::get().optimize)
BOOST_CHECK_EQUAL(jumpTypes, "[in]\n[out]\n[out]\n[in]\n[out]\n");
2021-01-14 12:02:14 +00:00
else
BOOST_CHECK_EQUAL(jumpTypes, "[in]\n[out]\n[in]\n[out]\n");
2020-06-22 12:22:01 +00:00
}
BOOST_AUTO_TEST_SUITE_END()
} // end namespaces