solidity/libsolidity/codegen/Compiler.h

138 lines
6.3 KiB
C
Raw Normal View History

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.
*/
2015-02-15 19:02:40 +00:00
#pragma once
#include <ostream>
#include <functional>
2015-10-20 22:21:52 +00:00
#include <libsolidity/ast/ASTVisitor.h>
#include <libsolidity/codegen/CompilerContext.h>
#include <libevmasm/Assembly.h>
2014-10-20 10:41:56 +00:00
namespace dev {
namespace solidity {
class Compiler: private ASTConstVisitor
2014-10-20 10:41:56 +00:00
{
public:
2015-06-01 10:32:59 +00:00
explicit Compiler(bool _optimize = false, unsigned _runs = 200):
m_optimize(_optimize),
m_optimizeRuns(_runs),
m_returnTag(m_context.newTag())
{ }
void compileContract(
ContractDefinition const& _contract,
std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts
);
/// Compiles a contract that uses DELEGATECALL to call into a pre-deployed version of the given
2015-07-31 17:23:31 +00:00
/// contract at runtime, but contains the full creation-time code.
void compileClone(
ContractDefinition const& _contract,
std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts
2015-07-31 17:23:31 +00:00
);
eth::Assembly const& assembly() { return m_context.assembly(); }
eth::LinkerObject assembledObject() { return m_context.assembledObject(); }
eth::LinkerObject runtimeObject() { return m_context.assembledRuntimeObject(m_runtimeSub); }
/// @arg _sourceCodes is the map of input files to source code strings
2015-04-14 09:38:36 +00:00
/// @arg _inJsonFromat shows whether the out should be in Json format
2015-01-28 07:50:53 +00:00
Json::Value streamAssembly(std::ostream& _stream, StringMap const& _sourceCodes = StringMap(), bool _inJsonFormat = false) const
{
2015-01-28 07:50:53 +00:00
return m_context.streamAssembly(_stream, _sourceCodes, _inJsonFormat);
}
/// @returns Assembly items of the normal compiler context
2015-09-01 09:19:02 +00:00
eth::AssemblyItems const& assemblyItems() const { return m_context.assembly().items(); }
/// @returns Assembly items of the runtime compiler context
2015-09-01 09:19:02 +00:00
eth::AssemblyItems const& runtimeAssemblyItems() const { return m_context.assembly().sub(m_runtimeSub).items(); }
2015-05-26 09:27:59 +00:00
/// @returns the entry label of the given function. Might return an AssemblyItem of type
/// UndefinedItem if it does not exist yet.
2015-08-31 16:44:29 +00:00
eth::AssemblyItem functionEntryLabel(FunctionDefinition const& _function) const;
2015-05-26 09:27:59 +00:00
2014-10-20 10:41:56 +00:00
private:
/// Registers the non-function objects inside the contract with the context and stores the basic
/// information about the contract like the AST annotations.
void initializeContext(
ContractDefinition const& _contract,
std::map<ContractDefinition const*, eth::Assembly const*> const& _compiledContracts
);
2014-12-15 21:57:39 +00:00
/// Adds the code that is run at creation time. Should be run after exchanging the run-time context
2015-01-19 22:08:48 +00:00
/// with a new and initialized context. Adds the constructor code.
2014-12-15 21:57:39 +00:00
void packIntoContractCreator(ContractDefinition const& _contract, CompilerContext const& _runtimeContext);
2015-07-31 17:23:31 +00:00
/// Appends state variable initialisation and constructor code.
void appendInitAndConstructorCode(ContractDefinition const& _contract);
void appendBaseConstructor(FunctionDefinition const& _constructor);
void appendConstructor(FunctionDefinition const& _constructor);
2014-11-19 09:24:22 +00:00
void appendFunctionSelector(ContractDefinition const& _contract);
/// Creates code that unpacks the arguments for the given function represented by a vector of TypePointers.
/// From memory if @a _fromMemory is true, otherwise from call data.
/// Expects source offset on the stack, which is removed.
void appendCalldataUnpacker(TypePointers const& _typeParameters, bool _fromMemory = false);
2015-10-02 20:34:47 +00:00
void appendReturnValuePacker(TypePointers const& _typeParameters, bool _isLibrary);
2014-11-19 09:24:22 +00:00
void registerStateVariables(ContractDefinition const& _contract);
void initializeStateVariables(ContractDefinition const& _contract);
2014-11-19 09:24:22 +00:00
2015-01-27 13:32:59 +00:00
virtual bool visit(VariableDeclaration const& _variableDeclaration) override;
2014-12-06 00:06:24 +00:00
virtual bool visit(FunctionDefinition const& _function) override;
virtual bool visit(IfStatement const& _ifStatement) override;
virtual bool visit(WhileStatement const& _whileStatement) override;
virtual bool visit(ForStatement const& _forStatement) override;
2014-12-06 00:06:24 +00:00
virtual bool visit(Continue const& _continue) override;
virtual bool visit(Break const& _break) override;
virtual bool visit(Return const& _return) override;
2015-09-15 14:33:14 +00:00
virtual bool visit(Throw const& _throw) override;
2015-02-22 17:38:32 +00:00
virtual bool visit(VariableDeclarationStatement const& _variableDeclarationStatement) override;
2014-12-06 00:06:24 +00:00
virtual bool visit(ExpressionStatement const& _expressionStatement) override;
2015-01-23 01:35:27 +00:00
virtual bool visit(PlaceholderStatement const&) override;
2015-07-31 17:23:31 +00:00
/// Repeatedly visits all function which are referenced but which are not compiled yet.
void appendFunctionsWithoutCode();
2015-01-23 01:35:27 +00:00
/// Appends one layer of function modifier code of the current function, or the function
/// body itself if the last modifier was reached.
void appendModifierOrFunctionCode();
2015-06-24 15:25:36 +00:00
void appendStackVariableInitialisation(VariableDeclaration const& _variable);
2015-01-23 01:35:27 +00:00
void compileExpression(Expression const& _expression, TypePointer const& _targetType = TypePointer());
2015-07-31 17:23:31 +00:00
/// @returns the runtime assembly for clone contracts.
2015-08-31 16:44:29 +00:00
static eth::Assembly cloneRuntime();
2015-07-31 17:23:31 +00:00
bool const m_optimize;
2015-06-01 10:32:59 +00:00
unsigned const m_optimizeRuns;
CompilerContext m_context;
2015-06-01 10:32:59 +00:00
size_t m_runtimeSub = size_t(-1); ///< Identifier of the runtime sub-assembly
CompilerContext m_runtimeContext;
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
2015-01-23 01:35:27 +00:00
unsigned m_modifierDepth = 0;
2015-03-10 14:11:13 +00:00
FunctionDefinition const* m_currentFunction = nullptr;
unsigned m_stackCleanupForReturn = 0; ///< this number of stack elements need to be removed before jump to m_returnTag
// arguments for base constructors, filled in derived-to-base order
std::map<FunctionDefinition const*, std::vector<ASTPointer<Expression>> const*> m_baseArguments;
2014-10-20 10:41:56 +00:00
};
}
}