aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/MultiBackendAssemblyStack.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-24 00:57:06 +0800
committerchriseth <chris@ethereum.org>2017-05-26 21:03:29 +0800
commiteaa13d42a09155200127418762940ca652b050c5 (patch)
treea91b776cfa3765899e8c7ef73b279183d79d2d6f /libsolidity/interface/MultiBackendAssemblyStack.cpp
parentf2804c49ed44583fbfd31857951810f8c3023bc9 (diff)
downloaddexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar.gz
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar.bz2
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar.lz
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar.xz
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.tar.zst
dexon-solidity-eaa13d42a09155200127418762940ca652b050c5.zip
Support multiple assembly front and backends.
Diffstat (limited to 'libsolidity/interface/MultiBackendAssemblyStack.cpp')
-rw-r--r--libsolidity/interface/MultiBackendAssemblyStack.cpp85
1 files changed, 85 insertions, 0 deletions
diff --git a/libsolidity/interface/MultiBackendAssemblyStack.cpp b/libsolidity/interface/MultiBackendAssemblyStack.cpp
new file mode 100644
index 00000000..cf16b627
--- /dev/null
+++ b/libsolidity/interface/MultiBackendAssemblyStack.cpp
@@ -0,0 +1,85 @@
+/*
+ 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.
+ */
+
+
+#include <libsolidity/interface/MultiBackendAssemblyStack.h>
+
+#include <libsolidity/parsing/Scanner.h>
+#include <libsolidity/inlineasm/AsmPrinter.h>
+#include <libsolidity/inlineasm/AsmParser.h>
+#include <libsolidity/inlineasm/AsmAnalysis.h>
+#include <libsolidity/inlineasm/AsmCodeGen.h>
+
+#include <libevmasm/Assembly.h>
+
+using namespace std;
+using namespace dev;
+using namespace dev::solidity;
+
+
+Scanner const& MultiBackendAssemblyStack::scanner() const
+{
+ solAssert(m_scanner, "");
+ return *m_scanner;
+}
+
+bool MultiBackendAssemblyStack::parseAndAnalyze(std::string const& _sourceName, std::string const& _source)
+{
+ m_analysisSuccessful = false;
+ m_scanner = make_shared<Scanner>(CharStream(_source), _sourceName);
+ m_parserResult = assembly::Parser(m_errors, m_input == Input::JULIA).parse(m_scanner);
+ if (!m_errors.empty())
+ return false;
+ solAssert(m_parserResult, "");
+
+ m_analysisInfo = make_shared<assembly::AsmAnalysisInfo>();
+ assembly::AsmAnalyzer analyzer(*m_analysisInfo, m_errors);
+ m_analysisSuccessful = analyzer.analyze(*m_parserResult);
+ return m_analysisSuccessful;
+}
+
+eth::LinkerObject MultiBackendAssemblyStack::assemble()
+{
+ solAssert(m_analysisSuccessful, "");
+ solAssert(m_parserResult, "");
+ solAssert(m_analysisInfo, "");
+
+ switch (m_targetMachine)
+ {
+ case Machine::EVM:
+ {
+ auto assembly = assembly::CodeGenerator(m_errors).assemble(*m_parserResult, *m_analysisInfo);
+ return assembly.assemble();
+ }
+ case Machine::EVM15:
+ solUnimplemented("EVM 1.5 backend is not yet implemented.");
+ case Machine::eWasm:
+ solUnimplemented("eWasm backend is not yet implemented.");
+ }
+ // unreachable
+ return eth::LinkerObject();
+}
+
+string MultiBackendAssemblyStack::print()
+{
+ solAssert(m_parserResult, "");
+ return assembly::AsmPrinter(m_input == Input::JULIA)(*m_parserResult);
+}