solidity/test/libyul/ObjectCompilerTest.cpp

110 lines
3.3 KiB
C++
Raw Normal View History

2018-12-05 11:02:49 +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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2018-12-05 11:02:49 +00:00
#include <test/libyul/ObjectCompilerTest.h>
#include <test/libsolidity/util/SoltestErrors.h>
#include <libsolutil/AnsiColorized.h>
2018-12-05 11:02:49 +00:00
2019-02-13 11:07:20 +00:00
#include <libyul/AssemblyStack.h>
2018-12-05 11:02:49 +00:00
#include <libevmasm/Instruction.h>
#include <liblangutil/DebugInfoSelection.h>
2020-12-01 13:22:15 +00:00
#include <liblangutil/SourceReferenceFormatter.h>
2018-12-05 11:02:49 +00:00
#include <boost/algorithm/string.hpp>
#include <fstream>
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-12-05 11:02:49 +00:00
using namespace std;
2020-03-06 00:22:51 +00:00
ObjectCompilerTest::ObjectCompilerTest(string const& _filename):
TestCase(_filename)
2018-12-05 11:02:49 +00:00
{
2020-03-06 00:22:51 +00:00
m_source = m_reader.source();
m_optimisationPreset = m_reader.enumSetting<OptimisationPreset>(
"optimizationPreset",
{
{"none", OptimisationPreset::None},
{"minimal", OptimisationPreset::Minimal},
{"standard", OptimisationPreset::Standard},
{"full", OptimisationPreset::Full},
},
"minimal"
);
m_wasm = m_reader.boolSetting("wasm", false);
2020-03-06 00:22:51 +00:00
m_expectation = m_reader.simpleExpectations();
2018-12-05 11:02:49 +00:00
}
TestCase::TestResult ObjectCompilerTest::run(ostream& _stream, string const& _linePrefix, bool const _formatted)
2018-12-05 11:02:49 +00:00
{
AssemblyStack stack(
EVMVersion(),
m_wasm ? AssemblyStack::Language::Ewasm : AssemblyStack::Language::StrictAssembly,
OptimiserSettings::preset(m_optimisationPreset),
DebugInfoSelection::All()
);
2018-12-05 11:02:49 +00:00
if (!stack.parseAndAnalyze("source", m_source))
{
AnsiColorized(_stream, _formatted, {formatting::BOLD, formatting::RED}) << _linePrefix << "Error parsing source." << endl;
2021-06-29 12:38:59 +00:00
SourceReferenceFormatter{_stream, stack, true, false}
.printErrorInformation(stack.errors());
return TestResult::FatalError;
2018-12-05 11:02:49 +00:00
}
stack.optimize();
2018-12-05 11:02:49 +00:00
if (m_wasm)
{
MachineAssemblyObject obj = stack.assemble(AssemblyStack::Machine::Ewasm);
solAssert(obj.bytecode, "");
2018-12-05 11:02:49 +00:00
m_obtainedResult = "Text:\n" + obj.assembly + "\n";
2021-09-16 14:33:28 +00:00
m_obtainedResult += "Binary:\n" + util::toHex(obj.bytecode->bytecode) + "\n";
}
2018-12-05 11:02:49 +00:00
else
{
MachineAssemblyObject obj = stack.assemble(AssemblyStack::Machine::EVM);
solAssert(obj.bytecode, "");
solAssert(obj.sourceMappings, "");
m_obtainedResult = "Assembly:\n" + obj.assembly;
if (obj.bytecode->bytecode.empty())
m_obtainedResult += "-- empty bytecode --\n";
else
m_obtainedResult +=
"Bytecode: " +
2021-09-16 14:33:28 +00:00
util::toHex(obj.bytecode->bytecode) +
"\nOpcodes: " +
boost::trim_copy(evmasm::disassemble(obj.bytecode->bytecode)) +
"\nSourceMappings:" +
(obj.sourceMappings->empty() ? "" : " " + *obj.sourceMappings) +
"\n";
}
2018-12-05 11:02:49 +00:00
return checkResult(_stream, _linePrefix, _formatted);
2018-12-05 11:02:49 +00:00
}