2016-03-01 21:56:39 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2016-03-01 21:56:39 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-03-01 21:56:39 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-03-01 21:56:39 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-01 21:56:39 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2016
|
|
|
|
* Full-stack Solidity inline assember.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libsolidity/inlineasm/AsmStack.h>
|
2017-02-09 13:04:23 +00:00
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmParser.h>
|
|
|
|
#include <libsolidity/inlineasm/AsmCodeGen.h>
|
2017-02-09 13:04:23 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmPrinter.h>
|
2017-02-15 13:52:53 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmAnalysis.h>
|
2017-04-26 13:41:08 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
2017-02-09 13:04:23 +00:00
|
|
|
|
|
|
|
#include <libsolidity/parsing/Scanner.h>
|
|
|
|
|
|
|
|
#include <libevmasm/Assembly.h>
|
|
|
|
#include <libevmasm/SourceLocation.h>
|
|
|
|
|
|
|
|
#include <memory>
|
2016-03-01 21:56:39 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::solidity;
|
|
|
|
using namespace dev::solidity::assembly;
|
|
|
|
|
2017-03-21 18:38:37 +00:00
|
|
|
bool InlineAssemblyStack::parse(
|
|
|
|
shared_ptr<Scanner> const& _scanner,
|
|
|
|
ExternalIdentifierAccess::Resolver const& _resolver
|
|
|
|
)
|
2016-03-01 21:56:39 +00:00
|
|
|
{
|
2016-04-18 11:47:40 +00:00
|
|
|
m_parserResult = make_shared<Block>();
|
2016-03-01 21:56:39 +00:00
|
|
|
Parser parser(m_errors);
|
2016-04-18 11:47:40 +00:00
|
|
|
auto result = parser.parse(_scanner);
|
|
|
|
if (!result)
|
|
|
|
return false;
|
2017-02-15 13:52:53 +00:00
|
|
|
|
2016-04-18 11:47:40 +00:00
|
|
|
*m_parserResult = std::move(*result);
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo analysisInfo;
|
|
|
|
return (AsmAnalyzer(analysisInfo, m_errors, _resolver)).analyze(*m_parserResult);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 12:59:15 +00:00
|
|
|
string InlineAssemblyStack::toString()
|
2017-02-09 13:04:23 +00:00
|
|
|
{
|
|
|
|
return AsmPrinter()(*m_parserResult);
|
|
|
|
}
|
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
eth::Assembly InlineAssemblyStack::assemble()
|
|
|
|
{
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo analysisInfo;
|
|
|
|
AsmAnalyzer analyzer(analysisInfo, m_errors);
|
2017-04-12 16:32:25 +00:00
|
|
|
solAssert(analyzer.analyze(*m_parserResult), "");
|
|
|
|
CodeGenerator codeGen(m_errors);
|
2017-04-26 13:41:08 +00:00
|
|
|
return codeGen.assemble(*m_parserResult, analysisInfo);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 14:27:20 +00:00
|
|
|
bool InlineAssemblyStack::parseAndAssemble(
|
|
|
|
string const& _input,
|
|
|
|
eth::Assembly& _assembly,
|
2017-03-14 14:41:23 +00:00
|
|
|
ExternalIdentifierAccess const& _identifierAccess
|
2016-08-16 14:27:20 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
ErrorList errors;
|
|
|
|
auto scanner = make_shared<Scanner>(CharStream(_input), "--CODEGEN--");
|
|
|
|
auto parserResult = Parser(errors).parse(scanner);
|
|
|
|
if (!errors.empty())
|
|
|
|
return false;
|
2017-04-24 17:50:12 +00:00
|
|
|
solAssert(parserResult, "");
|
2016-08-16 14:27:20 +00:00
|
|
|
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo analysisInfo;
|
|
|
|
AsmAnalyzer analyzer(analysisInfo, errors, _identifierAccess.resolve);
|
2017-04-24 16:01:04 +00:00
|
|
|
solAssert(analyzer.analyze(*parserResult), "");
|
2017-04-26 13:41:08 +00:00
|
|
|
CodeGenerator(errors).assemble(*parserResult, analysisInfo, _assembly, _identifierAccess);
|
2016-08-16 14:27:20 +00:00
|
|
|
|
|
|
|
// At this point, the assembly might be messed up, but we should throw an
|
|
|
|
// internal compiler error anyway.
|
|
|
|
return errors.empty();
|
|
|
|
}
|
|
|
|
|