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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Full assembly stack that can support EVM-assembly and JULIA as input and EVM, EVM1.5 and
|
|
|
|
* eWasm as output.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
#include <libsolidity/interface/AssemblyStack.h>
|
2017-05-23 16:57:06 +00:00
|
|
|
|
|
|
|
#include <libsolidity/parsing/Scanner.h>
|
|
|
|
#include <libsolidity/inlineasm/AsmPrinter.h>
|
|
|
|
#include <libsolidity/inlineasm/AsmParser.h>
|
|
|
|
#include <libsolidity/inlineasm/AsmAnalysis.h>
|
2017-06-09 11:47:05 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
2017-05-23 16:57:06 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmCodeGen.h>
|
|
|
|
|
|
|
|
#include <libevmasm/Assembly.h>
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
#include <libjulia/backends/evm/EVMCodeTransform.h>
|
|
|
|
#include <libjulia/backends/evm/EVMAssembly.h>
|
|
|
|
|
2017-05-23 16:57:06 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::solidity;
|
|
|
|
|
2017-12-13 13:40:54 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
assembly::AsmFlavour languageToAsmFlavour(AssemblyStack::Language _language)
|
|
|
|
{
|
|
|
|
switch (_language)
|
|
|
|
{
|
|
|
|
case AssemblyStack::Language::Assembly:
|
|
|
|
return assembly::AsmFlavour::Loose;
|
2018-01-05 23:08:47 +00:00
|
|
|
case AssemblyStack::Language::StrictAssembly:
|
|
|
|
return assembly::AsmFlavour::Strict;
|
2017-12-13 13:40:54 +00:00
|
|
|
case AssemblyStack::Language::JULIA:
|
|
|
|
return assembly::AsmFlavour::IULIA;
|
|
|
|
}
|
|
|
|
solAssert(false, "");
|
|
|
|
return assembly::AsmFlavour::IULIA;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
m_scanner = make_shared<Scanner>(CharStream(_source), _sourceName);
|
2018-02-20 17:39:00 +00:00
|
|
|
m_parserResult = assembly::Parser(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, "");
|
|
|
|
|
2017-06-02 20:52:48 +00:00
|
|
|
return analyzeParsed();
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|
|
|
|
|
2017-05-28 13:13:41 +00:00
|
|
|
bool AssemblyStack::analyze(assembly::Block const& _block, Scanner const* _scanner)
|
|
|
|
{
|
|
|
|
m_errors.clear();
|
|
|
|
m_analysisSuccessful = false;
|
|
|
|
if (_scanner)
|
|
|
|
m_scanner = make_shared<Scanner>(*_scanner);
|
|
|
|
m_parserResult = make_shared<assembly::Block>(_block);
|
|
|
|
|
2017-06-02 20:52:48 +00:00
|
|
|
return analyzeParsed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AssemblyStack::analyzeParsed()
|
|
|
|
{
|
2017-05-28 13:13:41 +00:00
|
|
|
m_analysisInfo = make_shared<assembly::AsmAnalysisInfo>();
|
2018-02-23 10:42:53 +00:00
|
|
|
assembly::AsmAnalyzer analyzer(*m_analysisInfo, m_errorReporter, m_evmVersion, languageToAsmFlavour(m_language));
|
2017-05-28 13:13:41 +00:00
|
|
|
m_analysisSuccessful = analyzer.analyze(*m_parserResult);
|
|
|
|
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, "");
|
|
|
|
solAssert(m_analysisInfo, "");
|
|
|
|
|
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;
|
|
|
|
assembly::CodeGenerator::assemble(*m_parserResult, *m_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;
|
2017-05-24 16:34:19 +00:00
|
|
|
julia::EVMAssembly assembly(true);
|
2017-06-09 13:38:23 +00:00
|
|
|
julia::CodeTransform(assembly, *m_analysisInfo, m_language == Language::JULIA, true)(*m_parserResult);
|
2017-05-29 22:50:46 +00:00
|
|
|
object.bytecode = make_shared<eth::LinkerObject>(assembly.finalize());
|
|
|
|
/// TOOD: fill out text representation
|
|
|
|
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, "");
|
2017-05-23 17:21:14 +00:00
|
|
|
return assembly::AsmPrinter(m_language == Language::JULIA)(*m_parserResult);
|
2017-05-23 16:57:06 +00:00
|
|
|
}
|