2017-05-23 16:57:06 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
2018-06-12 17:36:38 +00:00
|
|
|
* Full assembly stack that can support EVM-assembly and Yul as input and EVM, EVM1.5 and
|
2017-05-23 16:57:06 +00:00
|
|
|
* eWasm as output.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
#include <libsolidity/interface/AssemblyStack.h>
|
2017-05-23 16:57:06 +00:00
|
|
|
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libevmasm/Assembly.h>
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Scanner.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmAnalysis.h>
|
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libyul/AsmParser.h>
|
|
|
|
#include <libyul/AsmPrinter.h>
|
2019-02-13 10:35:49 +00:00
|
|
|
#include <libyul/backends/evm/AsmCodeGen.h>
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/backends/evm/EVMAssembly.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libyul/backends/evm/EVMCodeTransform.h>
|
2018-12-06 23:56:16 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libyul/backends/evm/EVMObjectCompiler.h>
|
2018-11-07 11:01:43 +00:00
|
|
|
#include <libyul/ObjectParser.h>
|
2018-11-03 15:05:08 +00:00
|
|
|
#include <libyul/optimiser/Suite.h>
|
|
|
|
|
2017-05-23 16:57:06 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2017-05-23 16:57:06 +00:00
|
|
|
using namespace dev::solidity;
|
|
|
|
|
2017-12-13 13:40:54 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-12-06 23:56:16 +00:00
|
|
|
shared_ptr<yul::Dialect> languageToDialect(AssemblyStack::Language _language)
|
2017-12-13 13:40:54 +00:00
|
|
|
{
|
|
|
|
switch (_language)
|
|
|
|
{
|
|
|
|
case AssemblyStack::Language::Assembly:
|
2018-12-06 23:56:16 +00:00
|
|
|
return yul::EVMDialect::looseAssemblyForEVM();
|
2018-01-05 23:08:47 +00:00
|
|
|
case AssemblyStack::Language::StrictAssembly:
|
2018-12-06 23:56:16 +00:00
|
|
|
return yul::EVMDialect::strictAssemblyForEVMObjects();
|
2018-06-12 17:36:38 +00:00
|
|
|
case AssemblyStack::Language::Yul:
|
2018-12-03 14:49:23 +00:00
|
|
|
return yul::Dialect::yul();
|
2017-12-13 13:40:54 +00:00
|
|
|
}
|
|
|
|
solAssert(false, "");
|
2018-12-03 14:49:23 +00:00
|
|
|
return yul::Dialect::yul();
|
2017-12-13 13:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-05-23 16:57:06 +00:00
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
Scanner const& AssemblyStack::scanner() const
|
2017-05-23 16:57:06 +00:00
|
|
|
{
|
|
|
|
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-05-23 16:57:06 +00:00
|
|
|
{
|
2017-06-07 13:41:44 +00:00
|
|
|
m_errors.clear();
|
2017-05-23 16:57:06 +00:00
|
|
|
m_analysisSuccessful = false;
|
2018-11-29 00:58:15 +00:00
|
|
|
m_scanner = make_shared<Scanner>(CharStream(_source, _sourceName));
|
2018-12-03 14:49:23 +00:00
|
|
|
m_parserResult = yul::ObjectParser(m_errorReporter, languageToDialect(m_language)).parse(m_scanner, false);
|
2017-05-11 13:26:35 +00:00
|
|
|
if (!m_errorReporter.errors().empty())
|
2017-05-23 16:57:06 +00:00
|
|
|
return false;
|
|
|
|
solAssert(m_parserResult, "");
|
2018-11-07 11:01:43 +00:00
|
|
|
solAssert(m_parserResult->code, "");
|
2017-05-23 16:57:06 +00:00
|
|
|
|
2017-06-02 20:52:48 +00:00
|
|
|
return analyzeParsed();
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|
|
|
|
|
2018-11-03 15:05:08 +00:00
|
|
|
void AssemblyStack::optimize()
|
|
|
|
{
|
2019-02-06 13:39:43 +00:00
|
|
|
if (m_language != Language::StrictAssembly)
|
|
|
|
solUnimplemented("Optimizer for both loose assembly and Yul is not yet implemented");
|
2018-12-04 17:57:32 +00:00
|
|
|
solAssert(m_analysisSuccessful, "Analysis was not successful.");
|
|
|
|
m_analysisSuccessful = false;
|
|
|
|
optimize(*m_parserResult);
|
2018-11-03 15:05:08 +00:00
|
|
|
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, "");
|
2018-12-04 17:57:32 +00:00
|
|
|
m_analysisSuccessful = analyzeParsed(*m_parserResult);
|
2017-05-28 13:13:41 +00:00
|
|
|
return m_analysisSuccessful;
|
|
|
|
}
|
|
|
|
|
2018-12-04 17:57:32 +00:00
|
|
|
bool AssemblyStack::analyzeParsed(yul::Object& _object)
|
|
|
|
{
|
|
|
|
solAssert(_object.code, "");
|
|
|
|
_object.analysisInfo = make_shared<yul::AsmAnalysisInfo>();
|
|
|
|
yul::AsmAnalyzer analyzer(*_object.analysisInfo, m_errorReporter, m_evmVersion, boost::none, languageToDialect(m_language));
|
|
|
|
bool success = analyzer.analyze(*_object.code);
|
|
|
|
for (auto& subNode: _object.subObjects)
|
|
|
|
if (auto subObject = dynamic_cast<yul::Object*>(subNode.get()))
|
|
|
|
if (!analyzeParsed(*subObject))
|
|
|
|
success = false;
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2018-12-06 23:56:16 +00:00
|
|
|
void AssemblyStack::compileEVM(yul::AbstractAssembly& _assembly, bool _evm15, bool _optimize) const
|
|
|
|
{
|
|
|
|
shared_ptr<yul::EVMDialect> dialect;
|
|
|
|
|
|
|
|
if (m_language == Language::Assembly)
|
|
|
|
dialect = yul::EVMDialect::looseAssemblyForEVM();
|
|
|
|
else if (m_language == AssemblyStack::Language::StrictAssembly)
|
|
|
|
dialect = yul::EVMDialect::strictAssemblyForEVMObjects();
|
|
|
|
else if (m_language == AssemblyStack::Language::Yul)
|
|
|
|
dialect = yul::EVMDialect::yulForEVM();
|
|
|
|
else
|
|
|
|
solAssert(false, "Invalid language.");
|
|
|
|
|
|
|
|
yul::EVMObjectCompiler::compile(*m_parserResult, _assembly, *dialect, _evm15, _optimize);
|
|
|
|
}
|
|
|
|
|
2018-12-04 17:57:32 +00:00
|
|
|
void AssemblyStack::optimize(yul::Object& _object)
|
|
|
|
{
|
|
|
|
solAssert(_object.code, "");
|
|
|
|
solAssert(_object.analysisInfo, "");
|
|
|
|
for (auto& subNode: _object.subObjects)
|
|
|
|
if (auto subObject = dynamic_cast<yul::Object*>(subNode.get()))
|
|
|
|
optimize(*subObject);
|
2019-01-31 13:44:57 +00:00
|
|
|
yul::OptimiserSuite::run(languageToDialect(m_language), *_object.code, *_object.analysisInfo);
|
2018-12-04 17:57:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
MachineAssemblyObject AssemblyStack::assemble(Machine _machine, bool _optimize) const
|
2017-05-23 16:57:06 +00:00
|
|
|
{
|
|
|
|
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 16:57:06 +00:00
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
switch (_machine)
|
2017-05-23 16:57:06 +00:00
|
|
|
{
|
|
|
|
case Machine::EVM:
|
|
|
|
{
|
2017-05-29 22:50:46 +00:00
|
|
|
MachineAssemblyObject object;
|
2017-06-09 11:45:56 +00:00
|
|
|
eth::Assembly assembly;
|
2019-02-13 10:35:49 +00:00
|
|
|
yul::EthAssemblyAdapter adapter(assembly);
|
2018-12-06 23:56:16 +00:00
|
|
|
compileEVM(adapter, false, _optimize);
|
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;
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|
|
|
|
case Machine::EVM15:
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2017-05-29 22:50:46 +00:00
|
|
|
MachineAssemblyObject object;
|
2018-10-15 09:58:51 +00:00
|
|
|
yul::EVMAssembly assembly(true);
|
2018-12-06 23:56:16 +00:00
|
|
|
compileEVM(assembly, true, _optimize);
|
2017-05-29 22:50:46 +00:00
|
|
|
object.bytecode = make_shared<eth::LinkerObject>(assembly.finalize());
|
2018-07-10 07:18:59 +00:00
|
|
|
/// TODO: fill out text representation
|
2017-05-29 22:50:46 +00:00
|
|
|
return object;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
2017-05-23 16:57:06 +00:00
|
|
|
case Machine::eWasm:
|
|
|
|
solUnimplemented("eWasm backend is not yet implemented.");
|
|
|
|
}
|
|
|
|
// unreachable
|
2017-05-29 22:50:46 +00:00
|
|
|
return MachineAssemblyObject();
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 13:37:43 +00:00
|
|
|
string AssemblyStack::print() const
|
2017-05-23 16:57:06 +00:00
|
|
|
{
|
|
|
|
solAssert(m_parserResult, "");
|
2018-11-07 11:01:43 +00:00
|
|
|
solAssert(m_parserResult->code, "");
|
|
|
|
return m_parserResult->toString(m_language == Language::Yul) + "\n";
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|