aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-12-16 05:57:39 +0800
committerChristian <c@ethdev.com>2014-12-17 06:49:45 +0800
commitb2e3771598c985afac1aa76b32e67ad2744f7cf1 (patch)
treef12c59f9bcfb85605c6f5cf1f9c348d0c545e174 /Compiler.cpp
parent5b802b685e794832bf8834183bf6c9604e513bbf (diff)
downloaddexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar.gz
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar.bz2
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar.lz
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar.xz
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.tar.zst
dexon-solidity-b2e3771598c985afac1aa76b32e67ad2744f7cf1.zip
Add functions needed by constructor.
Diffstat (limited to 'Compiler.cpp')
-rw-r--r--Compiler.cpp101
1 files changed, 58 insertions, 43 deletions
diff --git a/Compiler.cpp b/Compiler.cpp
index f2877c1c..0f85cda3 100644
--- a/Compiler.cpp
+++ b/Compiler.cpp
@@ -27,6 +27,7 @@
#include <libsolidity/Compiler.h>
#include <libsolidity/ExpressionCompiler.h>
#include <libsolidity/CompilerUtils.h>
+#include <libsolidity/CallGraph.h>
using namespace std;
@@ -37,68 +38,82 @@ void Compiler::compileContract(ContractDefinition const& _contract, vector<Magic
map<ContractDefinition const*, bytes const*> const& _contracts)
{
m_context = CompilerContext(); // clear it just in case
- m_context.setCompiledContracts(_contracts);
-
- for (MagicVariableDeclaration const* variable: _magicGlobals)
- m_context.addMagicGlobal(*variable);
+ initializeContext(_contract, _magicGlobals, _contracts);
for (ASTPointer<FunctionDefinition> const& function: _contract.getDefinedFunctions())
if (function->getName() != _contract.getName()) // don't add the constructor here
m_context.addFunction(*function);
- registerStateVariables(_contract);
appendFunctionSelector(_contract);
for (ASTPointer<FunctionDefinition> const& function: _contract.getDefinedFunctions())
if (function->getName() != _contract.getName()) // don't add the constructor here
function->accept(*this);
- packIntoContractCreator(_contract, _contracts);
-}
-
-void Compiler::packIntoContractCreator(ContractDefinition const& _contract,
- map<ContractDefinition const*, bytes const*> const& _contracts)
-{
+ // Swap the runtime context with the creation-time context
CompilerContext runtimeContext;
- runtimeContext.setCompiledContracts(_contracts);
swap(m_context, runtimeContext);
+ initializeContext(_contract, _magicGlobals, _contracts);
+ packIntoContractCreator(_contract, runtimeContext);
+}
+void Compiler::initializeContext(ContractDefinition const& _contract, vector<MagicVariableDeclaration const*> const& _magicGlobals,
+ map<ContractDefinition const*, bytes const*> const& _contracts)
+{
+ m_context.setCompiledContracts(_contracts);
+ for (MagicVariableDeclaration const* variable: _magicGlobals)
+ m_context.addMagicGlobal(*variable);
registerStateVariables(_contract);
+}
- FunctionDefinition* constructor = nullptr;
- for (ASTPointer<FunctionDefinition> const& function: _contract.getDefinedFunctions())
- if (function->getName() == _contract.getName())
- {
- constructor = function.get();
- break;
- }
- eth::AssemblyItem sub = m_context.addSubroutine(runtimeContext.getAssembly());
- // stack contains sub size
+void Compiler::packIntoContractCreator(ContractDefinition const& _contract, CompilerContext const& _runtimeContext)
+{
+ set<FunctionDefinition const*> neededFunctions;
+ FunctionDefinition const* constructor = _contract.getConstructor();
if (constructor)
- {
- eth::AssemblyItem returnTag = m_context.pushNewTag();
- m_context.addFunction(*constructor); // note that it cannot be called due to syntactic reasons
- // copy constructor arguments from code to memory and then to stack, they are supplied after the actual program
- unsigned argumentSize = 0;
- for (ASTPointer<VariableDeclaration> const& var: constructor->getParameters())
- argumentSize += var->getType()->getCalldataEncodedSize();
- if (argumentSize > 0)
- {
- m_context << u256(argumentSize);
- m_context.appendProgramSize();
- m_context << u256(1); // copy it to byte one as expected for ABI calls
- m_context << eth::Instruction::CODECOPY;
- appendCalldataUnpacker(*constructor, true);
- }
- //@todo calling other functions inside the constructor should either trigger a parse error
- //or we should copy them here (register them above and call "accept") - detecting which
- // functions are referenced / called needs to be done in a recursive way.
- m_context.appendJumpTo(m_context.getFunctionEntryLabel(*constructor));
- constructor->accept(*this);
- m_context << returnTag;
- }
+ neededFunctions = getFunctionsNeededByConstructor(*constructor);
+
+ for (FunctionDefinition const* fun: neededFunctions)
+ m_context.addFunction(*fun);
+ if (constructor)
+ appendConstructorCall(*constructor);
+
+ eth::AssemblyItem sub = m_context.addSubroutine(_runtimeContext.getAssembly());
+ // stack contains sub size
m_context << eth::Instruction::DUP1 << sub << u256(0) << eth::Instruction::CODECOPY;
m_context << u256(0) << eth::Instruction::RETURN;
+
+ // note that we have to explicitly include all used functions because of absolute jump
+ // labels
+ for (FunctionDefinition const* fun: neededFunctions)
+ fun->accept(*this);
+}
+
+void Compiler::appendConstructorCall(FunctionDefinition const& _constructor)
+{
+ eth::AssemblyItem returnTag = m_context.pushNewTag();
+ // copy constructor arguments from code to memory and then to stack, they are supplied after the actual program
+ unsigned argumentSize = 0;
+ for (ASTPointer<VariableDeclaration> const& var: _constructor.getParameters())
+ argumentSize += var->getType()->getCalldataEncodedSize();
+ if (argumentSize > 0)
+ {
+ m_context << u256(argumentSize);
+ m_context.appendProgramSize();
+ m_context << u256(1); // copy it to byte one as expected for ABI calls
+ m_context << eth::Instruction::CODECOPY;
+ appendCalldataUnpacker(_constructor, true);
+ }
+ m_context.appendJumpTo(m_context.getFunctionEntryLabel(_constructor));
+ m_context << returnTag;
+}
+
+set<FunctionDefinition const*> Compiler::getFunctionsNeededByConstructor(FunctionDefinition const& _constructor)
+{
+ CallGraph callgraph;
+ callgraph.addFunction(_constructor);
+ callgraph.computeCallGraph();
+ return callgraph.getCalls();
}
void Compiler::appendFunctionSelector(ContractDefinition const& _contract)