solidity/libsolidity/interface/AssemblyStack.cpp

142 lines
4.1 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/>.
*/
/**
* Full assembly stack that can support EVM-assembly and Yul as input and EVM, EVM1.5 and
* eWasm as output.
*/
2017-05-23 17:21:14 +00:00
#include <libsolidity/interface/AssemblyStack.h>
2018-12-04 14:20:29 +00:00
#include <libsolidity/codegen/AsmCodeGen.h>
#include <liblangutil/Scanner.h>
#include <libyul/AsmPrinter.h>
#include <libyul/AsmParser.h>
#include <libyul/AsmAnalysis.h>
#include <libyul/AsmAnalysisInfo.h>
2018-10-15 09:52:35 +00:00
#include <libyul/backends/evm/EVMCodeTransform.h>
#include <libyul/backends/evm/EVMAssembly.h>
2018-11-07 11:01:43 +00:00
#include <libyul/ObjectParser.h>
#include <libevmasm/Assembly.h>
#include <libyul/optimiser/Suite.h>
using namespace std;
using namespace dev;
using namespace langutil;
using namespace dev::solidity;
namespace
{
yul::Dialect languageToDialect(AssemblyStack::Language _language)
{
switch (_language)
{
case AssemblyStack::Language::Assembly:
return yul::Dialect::looseAssemblyForEVM();
case AssemblyStack::Language::StrictAssembly:
return yul::Dialect::strictAssemblyForEVM();
case AssemblyStack::Language::Yul:
return yul::Dialect::yul();
}
solAssert(false, "");
return yul::Dialect::yul();
}
}
2017-05-23 17:21:14 +00:00
Scanner const& AssemblyStack::scanner() const
{
solAssert(m_scanner, "");
return *m_scanner;
}
2017-05-23 17:21:14 +00:00
bool AssemblyStack::parseAndAnalyze(std::string const& _sourceName, std::string const& _source)
{
2017-06-07 13:41:44 +00:00
m_errors.clear();
m_analysisSuccessful = false;
m_scanner = make_shared<Scanner>(CharStream(_source, _sourceName));
m_parserResult = yul::ObjectParser(m_errorReporter, languageToDialect(m_language)).parse(m_scanner, false);
if (!m_errorReporter.errors().empty())
return false;
solAssert(m_parserResult, "");
2018-11-07 11:01:43 +00:00
solAssert(m_parserResult->code, "");
2017-06-02 20:52:48 +00:00
return analyzeParsed();
}
void AssemblyStack::optimize()
{
solAssert(m_language != Language::Assembly, "Optimization requested for loose assembly.");
yul::OptimiserSuite::run(*m_parserResult->code, *m_parserResult->analysisInfo);
solAssert(analyzeParsed(), "Invalid source code after optimization.");
}
2017-06-02 20:52:48 +00:00
bool AssemblyStack::analyzeParsed()
{
2018-11-07 11:01:43 +00:00
solAssert(m_parserResult, "");
solAssert(m_parserResult->code, "");
m_parserResult->analysisInfo = make_shared<yul::AsmAnalysisInfo>();
yul::AsmAnalyzer analyzer(*m_parserResult->analysisInfo, m_errorReporter, m_evmVersion, boost::none, languageToDialect(m_language));
2018-11-07 11:01:43 +00:00
m_analysisSuccessful = analyzer.analyze(*m_parserResult->code);
2017-05-28 13:13:41 +00:00
return m_analysisSuccessful;
}
2017-05-29 22:50:46 +00:00
MachineAssemblyObject AssemblyStack::assemble(Machine _machine) const
{
solAssert(m_analysisSuccessful, "");
solAssert(m_parserResult, "");
2018-11-07 11:01:43 +00:00
solAssert(m_parserResult->code, "");
solAssert(m_parserResult->analysisInfo, "");
2017-05-23 17:21:14 +00:00
switch (_machine)
{
case Machine::EVM:
{
2017-05-29 22:50:46 +00:00
MachineAssemblyObject object;
eth::Assembly assembly;
2018-12-04 14:36:03 +00:00
CodeGenerator::assemble(*m_parserResult->code, *m_parserResult->analysisInfo, assembly);
2017-05-29 22:50:46 +00:00
object.bytecode = make_shared<eth::LinkerObject>(assembly.assemble());
2017-08-30 01:17:15 +00:00
object.assembly = assembly.assemblyString();
2017-05-29 22:50:46 +00:00
return object;
}
case Machine::EVM15:
{
2017-05-29 22:50:46 +00:00
MachineAssemblyObject object;
yul::EVMAssembly assembly(true);
2018-11-07 11:01:43 +00:00
yul::CodeTransform(assembly, *m_parserResult->analysisInfo, m_language == Language::Yul, true)(*m_parserResult->code);
2017-05-29 22:50:46 +00:00
object.bytecode = make_shared<eth::LinkerObject>(assembly.finalize());
/// TODO: fill out text representation
2017-05-29 22:50:46 +00:00
return object;
}
case Machine::eWasm:
solUnimplemented("eWasm backend is not yet implemented.");
}
// unreachable
2017-05-29 22:50:46 +00:00
return MachineAssemblyObject();
}
string AssemblyStack::print() const
{
solAssert(m_parserResult, "");
2018-11-07 11:01:43 +00:00
solAssert(m_parserResult->code, "");
return m_parserResult->toString(m_language == Language::Yul) + "\n";
}