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
|
|
|
|
* Code-generating part of inline assembly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libsolidity/inlineasm/AsmCodeGen.h>
|
2017-02-15 13:52:53 +00:00
|
|
|
|
|
|
|
#include <libsolidity/inlineasm/AsmParser.h>
|
|
|
|
#include <libsolidity/inlineasm/AsmData.h>
|
2017-02-17 15:05:22 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmScope.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-15 13:52:53 +00:00
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
#include <libevmasm/Assembly.h>
|
|
|
|
#include <libevmasm/SourceLocation.h>
|
2016-04-02 12:56:43 +00:00
|
|
|
#include <libevmasm/Instruction.h>
|
2017-02-15 13:52:53 +00:00
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
#include <libjulia/backends/evm/AbstractAssembly.h>
|
|
|
|
#include <libjulia/backends/evm/EVMCodeTransform.h>
|
2017-04-28 16:15:18 +00:00
|
|
|
|
2017-02-15 13:52:53 +00:00
|
|
|
#include <libdevcore/CommonIO.h>
|
|
|
|
|
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
2017-02-15 15:47:54 +00:00
|
|
|
#include <boost/range/adaptor/map.hpp>
|
|
|
|
#include <boost/range/algorithm/count_if.hpp>
|
2017-02-15 13:52:53 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <functional>
|
2016-03-01 21:56:39 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::solidity;
|
|
|
|
using namespace dev::solidity::assembly;
|
|
|
|
|
2017-04-28 16:15:18 +00:00
|
|
|
class EthAssemblyAdapter: public julia::AbstractAssembly
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
EthAssemblyAdapter(eth::Assembly& _assembly):
|
|
|
|
m_assembly(_assembly)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual void setSourceLocation(SourceLocation const& _location) override
|
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(_location);
|
|
|
|
}
|
|
|
|
virtual int stackHeight() const override { return m_assembly.deposit(); }
|
|
|
|
virtual void appendInstruction(solidity::Instruction _instruction) override
|
|
|
|
{
|
|
|
|
m_assembly.append(_instruction);
|
|
|
|
}
|
|
|
|
virtual void appendConstant(u256 const& _constant) override
|
|
|
|
{
|
|
|
|
m_assembly.append(_constant);
|
|
|
|
}
|
|
|
|
/// Append a label.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendLabel(LabelID _labelId) override
|
2017-04-28 16:15:18 +00:00
|
|
|
{
|
|
|
|
m_assembly.append(eth::AssemblyItem(eth::Tag, _labelId));
|
|
|
|
}
|
|
|
|
/// Append a label reference.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendLabelReference(LabelID _labelId) override
|
2017-04-28 16:15:18 +00:00
|
|
|
{
|
|
|
|
m_assembly.append(eth::AssemblyItem(eth::PushTag, _labelId));
|
|
|
|
}
|
2017-05-19 18:12:12 +00:00
|
|
|
virtual size_t newLabelId() override
|
2017-04-28 16:15:18 +00:00
|
|
|
{
|
|
|
|
return assemblyTagToIdentifier(m_assembly.newTag());
|
|
|
|
}
|
|
|
|
virtual void appendLinkerSymbol(std::string const& _linkerSymbol) override
|
2016-03-01 21:56:39 +00:00
|
|
|
{
|
2017-04-28 16:15:18 +00:00
|
|
|
m_assembly.appendLibraryAddress(_linkerSymbol);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendJump(int _stackDiffAfter) override
|
|
|
|
{
|
|
|
|
appendInstruction(solidity::Instruction::JUMP);
|
|
|
|
m_assembly.adjustDeposit(_stackDiffAfter);
|
|
|
|
}
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendJumpTo(LabelID _labelId, int _stackDiffAfter) override
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2017-06-08 13:52:15 +00:00
|
|
|
appendLabelReference(_labelId);
|
2017-05-24 16:34:19 +00:00
|
|
|
appendJump(_stackDiffAfter);
|
|
|
|
}
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendJumpToIf(LabelID _labelId) override
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2017-06-08 13:52:15 +00:00
|
|
|
appendLabelReference(_labelId);
|
2017-05-24 16:34:19 +00:00
|
|
|
appendInstruction(solidity::Instruction::JUMPI);
|
|
|
|
}
|
|
|
|
virtual void appendBeginsub(LabelID, int) override
|
|
|
|
{
|
|
|
|
// TODO we could emulate that, though
|
|
|
|
solAssert(false, "BEGINSUB not implemented for EVM 1.0");
|
|
|
|
}
|
|
|
|
/// Call a subroutine.
|
|
|
|
virtual void appendJumpsub(LabelID, int, int) override
|
|
|
|
{
|
|
|
|
// TODO we could emulate that, though
|
|
|
|
solAssert(false, "JUMPSUB not implemented for EVM 1.0");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return from a subroutine.
|
2017-05-31 11:06:51 +00:00
|
|
|
virtual void appendReturnsub(int, int) override
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
// TODO we could emulate that, though
|
|
|
|
solAssert(false, "RETURNSUB not implemented for EVM 1.0");
|
|
|
|
}
|
2017-02-15 13:52:53 +00:00
|
|
|
|
2017-04-28 16:15:18 +00:00
|
|
|
private:
|
2017-05-24 16:34:19 +00:00
|
|
|
LabelID assemblyTagToIdentifier(eth::AssemblyItem const& _tag) const
|
2016-03-01 21:56:39 +00:00
|
|
|
{
|
2017-02-15 13:52:53 +00:00
|
|
|
u256 id = _tag.data();
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(id <= std::numeric_limits<LabelID>::max(), "Tag id too large.");
|
|
|
|
return LabelID(id);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-04-28 16:15:18 +00:00
|
|
|
eth::Assembly& m_assembly;
|
2016-03-01 21:56:39 +00:00
|
|
|
};
|
|
|
|
|
2016-05-08 14:24:47 +00:00
|
|
|
|
2017-04-12 16:32:25 +00:00
|
|
|
void assembly::CodeGenerator::assemble(
|
|
|
|
Block const& _parsedData,
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo& _analysisInfo,
|
2017-04-12 16:32:25 +00:00
|
|
|
eth::Assembly& _assembly,
|
2017-05-23 17:21:14 +00:00
|
|
|
julia::ExternalIdentifierAccess const& _identifierAccess
|
2017-04-12 16:32:25 +00:00
|
|
|
)
|
2016-05-08 14:24:47 +00:00
|
|
|
{
|
2017-04-28 16:15:18 +00:00
|
|
|
EthAssemblyAdapter assemblyAdapter(_assembly);
|
2017-06-09 11:59:16 +00:00
|
|
|
julia::CodeTransform(assemblyAdapter, _analysisInfo, false, _identifierAccess)(_parsedData);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|