2014-10-20 10:41:56 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum 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.
|
|
|
|
|
|
|
|
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Solidity AST to EVM bytecode compiler.
|
|
|
|
*/
|
|
|
|
|
2014-10-30 17:15:25 +00:00
|
|
|
#include <ostream>
|
2014-10-20 10:41:56 +00:00
|
|
|
#include <libsolidity/ASTVisitor.h>
|
2014-10-30 11:42:04 +00:00
|
|
|
#include <libsolidity/CompilerContext.h>
|
2014-10-20 10:41:56 +00:00
|
|
|
|
|
|
|
namespace dev {
|
|
|
|
namespace solidity {
|
|
|
|
|
2014-10-30 00:20:32 +00:00
|
|
|
class Compiler: private ASTVisitor
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-10-30 17:15:25 +00:00
|
|
|
Compiler(): m_returnTag(m_context.newTag()) {}
|
|
|
|
|
|
|
|
void compileContract(ContractDefinition& _contract);
|
2014-11-06 15:30:50 +00:00
|
|
|
bytes getAssembledBytecode(bool _optimize = false) { return m_context.getAssembledBytecode(_optimize); }
|
2014-10-30 17:15:25 +00:00
|
|
|
void streamAssembly(std::ostream& _stream) const { m_context.streamAssembly(_stream); }
|
|
|
|
|
2014-10-30 00:20:32 +00:00
|
|
|
/// Compile the given contract and return the EVM bytecode.
|
2014-11-06 15:30:50 +00:00
|
|
|
static bytes compile(ContractDefinition& _contract, bool _optimize);
|
2014-10-20 10:41:56 +00:00
|
|
|
|
|
|
|
private:
|
2014-10-30 21:52:15 +00:00
|
|
|
/// Creates a new compiler context / assembly and packs the current code into the data part.
|
|
|
|
void packIntoContractCreator();
|
2014-10-30 17:15:25 +00:00
|
|
|
void appendFunctionSelector(std::vector<ASTPointer<FunctionDefinition> > const& _functions);
|
|
|
|
void appendCalldataUnpacker(FunctionDefinition const& _function);
|
|
|
|
void appendReturnValuePacker(FunctionDefinition const& _function);
|
2014-10-30 00:20:32 +00:00
|
|
|
|
|
|
|
virtual bool visit(FunctionDefinition& _function) override;
|
|
|
|
virtual bool visit(IfStatement& _ifStatement) override;
|
|
|
|
virtual bool visit(WhileStatement& _whileStatement) override;
|
|
|
|
virtual bool visit(Continue& _continue) override;
|
|
|
|
virtual bool visit(Break& _break) override;
|
|
|
|
virtual bool visit(Return& _return) override;
|
|
|
|
virtual bool visit(VariableDefinition& _variableDefinition) override;
|
|
|
|
virtual bool visit(ExpressionStatement& _expressionStatement) override;
|
|
|
|
|
|
|
|
|
|
|
|
CompilerContext m_context;
|
|
|
|
std::vector<eth::AssemblyItem> m_breakTags; ///< tag to jump to for a "break" statement
|
|
|
|
std::vector<eth::AssemblyItem> m_continueTags; ///< tag to jump to for a "continue" statement
|
|
|
|
eth::AssemblyItem m_returnTag; ///< tag to jump to for a "return" statement
|
2014-10-20 10:41:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|