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-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Scanner.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmPrinter.h>
|
|
|
|
#include <libyul/AsmParser.h>
|
|
|
|
#include <libyul/AsmAnalysis.h>
|
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
|
|
|
#include <libyul/AsmCodeGen.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>
|
2017-05-24 16:34:19 +00:00
|
|
|
|
2018-11-23 10:31:45 +00:00
|
|
|
#include <libevmasm/Assembly.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-11-21 11:42:34 +00:00
|
|
|
yul::AsmFlavour languageToAsmFlavour(AssemblyStack::Language _language)
|
2017-12-13 13:40:54 +00:00
|
|
|
{
|
|
|
|
switch (_language)
|
|
|
|
{
|
|
|
|
case AssemblyStack::Language::Assembly:
|
2018-11-21 11:42:34 +00:00
|
|
|
return yul::AsmFlavour::Loose;
|
2018-01-05 23:08:47 +00:00
|
|
|
case AssemblyStack::Language::StrictAssembly:
|
2018-11-21 11:42:34 +00:00
|
|
|
return yul::AsmFlavour::Strict;
|
2018-06-12 17:36:38 +00:00
|
|
|
case AssemblyStack::Language::Yul:
|
2018-11-21 11:42:34 +00:00
|
|
|
return yul::AsmFlavour::Yul;
|
2017-12-13 13:40:54 +00:00
|
|
|
}
|
|
|
|
solAssert(false, "");
|
2018-11-21 11:42:34 +00:00
|
|
|
return yul::AsmFlavour::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-11-07 11:01:43 +00:00
|
|
|
m_parserResult = yul::ObjectParser(m_errorReporter, languageToAsmFlavour(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()
|
|
|
|
{
|
|
|
|
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, languageToAsmFlavour(m_language));
|
|
|
|
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
|
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;
|
2018-11-07 11:01:43 +00:00
|
|
|
yul::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;
|
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-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());
|
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
|
|
|
}
|