2018-02-08 17:20:54 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2018-02-08 17:20:54 +00:00
|
|
|
|
|
|
|
#include <test/libyul/YulInterpreterTest.h>
|
|
|
|
|
|
|
|
#include <test/tools/yulInterpreter/Interpreter.h>
|
|
|
|
|
2020-01-14 16:48:17 +00:00
|
|
|
#include <test/Common.h>
|
2018-02-08 17:20:54 +00:00
|
|
|
|
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
|
|
|
#include <libyul/AssemblyStack.h>
|
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
|
|
|
|
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2020-12-01 13:22:15 +00:00
|
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
2018-02-08 17:20:54 +00:00
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/AnsiColorized.h>
|
2018-02-08 17:20:54 +00:00
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::yul::test;
|
|
|
|
using namespace solidity::frontend;
|
|
|
|
using namespace solidity::frontend::test;
|
2018-02-08 17:20:54 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2020-03-06 00:22:51 +00:00
|
|
|
YulInterpreterTest::YulInterpreterTest(string const& _filename):
|
|
|
|
EVMVersionRestrictedTestCase(_filename)
|
2018-02-08 17:20:54 +00:00
|
|
|
{
|
2020-03-06 00:22:51 +00:00
|
|
|
m_source = m_reader.source();
|
|
|
|
m_expectation = m_reader.simpleExpectations();
|
2018-02-08 17:20:54 +00:00
|
|
|
}
|
|
|
|
|
2019-05-07 13:33:22 +00:00
|
|
|
TestCase::TestResult YulInterpreterTest::run(ostream& _stream, string const& _linePrefix, bool const _formatted)
|
2018-02-08 17:20:54 +00:00
|
|
|
{
|
|
|
|
if (!parse(_stream, _linePrefix, _formatted))
|
2019-05-07 13:33:22 +00:00
|
|
|
return TestResult::FatalError;
|
2018-02-08 17:20:54 +00:00
|
|
|
|
|
|
|
m_obtainedResult = interpret();
|
|
|
|
|
2020-05-25 13:31:24 +00:00
|
|
|
return checkResult(_stream, _linePrefix, _formatted);
|
2018-02-08 17:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool YulInterpreterTest::parse(ostream& _stream, string const& _linePrefix, bool const _formatted)
|
|
|
|
{
|
2019-03-27 11:49:50 +00:00
|
|
|
AssemblyStack stack(
|
2020-01-14 16:48:17 +00:00
|
|
|
solidity::test::CommonOptions::get().evmVersion(),
|
2019-03-27 11:49:50 +00:00
|
|
|
AssemblyStack::Language::StrictAssembly,
|
2019-12-23 15:50:30 +00:00
|
|
|
solidity::frontend::OptimiserSettings::none()
|
2019-03-27 11:49:50 +00:00
|
|
|
);
|
2018-02-08 17:20:54 +00:00
|
|
|
if (stack.parseAndAnalyze("", m_source))
|
|
|
|
{
|
|
|
|
m_ast = stack.parserResult()->code;
|
|
|
|
m_analysisInfo = stack.parserResult()->analysisInfo;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AnsiColorized(_stream, _formatted, {formatting::BOLD, formatting::RED}) << _linePrefix << "Error parsing source." << endl;
|
|
|
|
printErrors(_stream, stack.errors());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string YulInterpreterTest::interpret()
|
|
|
|
{
|
|
|
|
InterpreterState state;
|
2020-07-22 20:59:15 +00:00
|
|
|
state.maxTraceSize = 32;
|
|
|
|
state.maxSteps = 512;
|
2020-07-23 09:58:10 +00:00
|
|
|
state.maxExprNesting = 64;
|
2018-02-08 17:20:54 +00:00
|
|
|
try
|
|
|
|
{
|
2020-07-09 12:24:49 +00:00
|
|
|
Interpreter::run(state, EVMDialect::strictAssemblyForEVMObjects(langutil::EVMVersion{}), *m_ast);
|
2018-02-08 17:20:54 +00:00
|
|
|
}
|
2019-03-27 11:05:54 +00:00
|
|
|
catch (InterpreterTerminatedGeneric const&)
|
2018-02-08 17:20:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
stringstream result;
|
2019-05-21 09:46:37 +00:00
|
|
|
state.dumpTraceAndState(result);
|
2018-02-08 17:20:54 +00:00
|
|
|
return result.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void YulInterpreterTest::printErrors(ostream& _stream, ErrorList const& _errors)
|
|
|
|
{
|
2020-12-01 13:22:15 +00:00
|
|
|
SourceReferenceFormatter formatter(_stream, true, false);
|
2018-02-08 17:20:54 +00:00
|
|
|
|
|
|
|
for (auto const& error: _errors)
|
2019-04-05 15:49:39 +00:00
|
|
|
formatter.printErrorInformation(*error);
|
2018-02-08 17:20:54 +00:00
|
|
|
}
|