mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Decoding for constructor.
This commit is contained in:
parent
8639cf8e3d
commit
fd1a01bbce
15
Compiler.cpp
15
Compiler.cpp
@ -163,14 +163,14 @@ void Compiler::appendConstructor(FunctionDefinition const& _constructor)
|
|||||||
{
|
{
|
||||||
CompilerContext::LocationSetter locationSetter(m_context, _constructor);
|
CompilerContext::LocationSetter locationSetter(m_context, _constructor);
|
||||||
// copy constructor arguments from code to memory and then to stack, they are supplied after the actual program
|
// copy constructor arguments from code to memory and then to stack, they are supplied after the actual program
|
||||||
unsigned argumentSize = 0;
|
if (!_constructor.getParameters().empty())
|
||||||
for (ASTPointer<VariableDeclaration> const& var: _constructor.getParameters())
|
|
||||||
argumentSize += var->getType()->getCalldataEncodedSize();
|
|
||||||
|
|
||||||
if (argumentSize > 0)
|
|
||||||
{
|
{
|
||||||
CompilerUtils(m_context).fetchFreeMemoryPointer();
|
CompilerUtils(m_context).fetchFreeMemoryPointer();
|
||||||
m_context << u256(argumentSize) << eth::Instruction::DUP1;
|
m_context.appendProgramSize(); // program itself
|
||||||
|
// CODESIZE is program plus manually added arguments
|
||||||
|
m_context << eth::Instruction::CODESIZE << eth::Instruction::SUB;
|
||||||
|
// stack: <memptr> <argument size>
|
||||||
|
m_context << eth::Instruction::DUP1;
|
||||||
m_context.appendProgramSize();
|
m_context.appendProgramSize();
|
||||||
m_context << eth::Instruction::DUP4 << eth::Instruction::CODECOPY;
|
m_context << eth::Instruction::DUP4 << eth::Instruction::CODECOPY;
|
||||||
m_context << eth::Instruction::ADD;
|
m_context << eth::Instruction::ADD;
|
||||||
@ -265,8 +265,9 @@ void Compiler::appendCalldataUnpacker(
|
|||||||
{
|
{
|
||||||
solAssert(arrayType.location() == DataLocation::Memory, "");
|
solAssert(arrayType.location() == DataLocation::Memory, "");
|
||||||
// compute data pointer
|
// compute data pointer
|
||||||
|
m_context << eth::Instruction::DUP1 << eth::Instruction::MLOAD;
|
||||||
//@todo once we support nested arrays, this offset needs to be dynamic.
|
//@todo once we support nested arrays, this offset needs to be dynamic.
|
||||||
m_context << eth::Instruction::DUP1 << _startOffset << eth::Instruction::ADD;
|
m_context << _startOffset << eth::Instruction::ADD;
|
||||||
m_context << eth::Instruction::SWAP1 << u256(0x20) << eth::Instruction::ADD;
|
m_context << eth::Instruction::SWAP1 << u256(0x20) << eth::Instruction::ADD;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -135,7 +135,7 @@ void CompilerUtils::storeInMemoryDynamic(Type const& _type, bool _padToWordBound
|
|||||||
m_context << u256(0) << u256(identityContractAddress);
|
m_context << u256(0) << u256(identityContractAddress);
|
||||||
//@TODO do not use ::CALL if less than 32 bytes?
|
//@TODO do not use ::CALL if less than 32 bytes?
|
||||||
//@todo in production, we should not have to pair c_callNewAccountGas.
|
//@todo in production, we should not have to pair c_callNewAccountGas.
|
||||||
m_context << u256(eth::c_callGas + 10 + eth::c_callNewAccountGas) << eth::Instruction::GAS;
|
m_context << u256(eth::c_callGas + 15 + eth::c_callNewAccountGas) << eth::Instruction::GAS;
|
||||||
m_context << eth::Instruction::SUB << eth::Instruction::CALL;
|
m_context << eth::Instruction::SUB << eth::Instruction::CALL;
|
||||||
m_context << eth::Instruction::POP; // ignore return value
|
m_context << eth::Instruction::POP; // ignore return value
|
||||||
|
|
||||||
|
28
Types.cpp
28
Types.cpp
@ -822,16 +822,16 @@ string ArrayType::toString(bool _short) const
|
|||||||
TypePointer ArrayType::externalType() const
|
TypePointer ArrayType::externalType() const
|
||||||
{
|
{
|
||||||
if (m_arrayKind != ArrayKind::Ordinary)
|
if (m_arrayKind != ArrayKind::Ordinary)
|
||||||
return this->copyForLocation(DataLocation::Memory, true);
|
return this->copyForLocation(DataLocation::CallData, true);
|
||||||
if (!m_baseType->externalType())
|
if (!m_baseType->externalType())
|
||||||
return TypePointer();
|
return TypePointer();
|
||||||
if (m_baseType->getCategory() == Category::Array && m_baseType->isDynamicallySized())
|
if (m_baseType->getCategory() == Category::Array && m_baseType->isDynamicallySized())
|
||||||
return TypePointer();
|
return TypePointer();
|
||||||
|
|
||||||
if (isDynamicallySized())
|
if (isDynamicallySized())
|
||||||
return std::make_shared<ArrayType>(DataLocation::Memory, m_baseType->externalType());
|
return std::make_shared<ArrayType>(DataLocation::CallData, m_baseType->externalType());
|
||||||
else
|
else
|
||||||
return std::make_shared<ArrayType>(DataLocation::Memory, m_baseType->externalType(), m_length);
|
return std::make_shared<ArrayType>(DataLocation::CallData, m_baseType->externalType(), m_length);
|
||||||
}
|
}
|
||||||
|
|
||||||
TypePointer ArrayType::copyForLocation(DataLocation _location, bool _isPointer) const
|
TypePointer ArrayType::copyForLocation(DataLocation _location, bool _isPointer) const
|
||||||
@ -903,7 +903,7 @@ MemberList const& ContractType::getMembers() const
|
|||||||
for (auto const& it: m_contract.getInterfaceFunctions())
|
for (auto const& it: m_contract.getInterfaceFunctions())
|
||||||
members.push_back(MemberList::Member(
|
members.push_back(MemberList::Member(
|
||||||
it.second->getDeclaration().getName(),
|
it.second->getDeclaration().getName(),
|
||||||
it.second->removeDynamicReturnTypes(),
|
it.second->asMemberFunction(),
|
||||||
&it.second->getDeclaration()
|
&it.second->getDeclaration()
|
||||||
));
|
));
|
||||||
m_members.reset(new MemberList(members));
|
m_members.reset(new MemberList(members));
|
||||||
@ -1084,11 +1084,7 @@ FunctionType::FunctionType(FunctionDefinition const& _function, bool _isInternal
|
|||||||
for (ASTPointer<VariableDeclaration> const& var: _function.getParameters())
|
for (ASTPointer<VariableDeclaration> const& var: _function.getParameters())
|
||||||
{
|
{
|
||||||
paramNames.push_back(var->getName());
|
paramNames.push_back(var->getName());
|
||||||
if (_isInternal)
|
params.push_back(var->getType());
|
||||||
params.push_back(var->getType());
|
|
||||||
else
|
|
||||||
params.push_back(var->getType()->externalType());
|
|
||||||
solAssert(!!params.back(), "Function argument type not valid in this context.");
|
|
||||||
}
|
}
|
||||||
retParams.reserve(_function.getReturnParameters().size());
|
retParams.reserve(_function.getReturnParameters().size());
|
||||||
retParamNames.reserve(_function.getReturnParameters().size());
|
retParamNames.reserve(_function.getReturnParameters().size());
|
||||||
@ -1416,8 +1412,18 @@ TypePointer FunctionType::copyAndSetGasOrValue(bool _setGas, bool _setValue) con
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
FunctionTypePointer FunctionType::removeDynamicReturnTypes() const
|
FunctionTypePointer FunctionType::asMemberFunction() const
|
||||||
{
|
{
|
||||||
|
TypePointers parameterTypes;
|
||||||
|
for (auto const& t: m_parameterTypes)
|
||||||
|
{
|
||||||
|
auto refType = dynamic_cast<ReferenceType const*>(t.get());
|
||||||
|
if (refType && refType->location() == DataLocation::CallData)
|
||||||
|
parameterTypes.push_back(refType->copyForLocation(DataLocation::Memory, false));
|
||||||
|
else
|
||||||
|
parameterTypes.push_back(t);
|
||||||
|
}
|
||||||
|
|
||||||
//@todo make this more intelligent once we support destructuring assignments
|
//@todo make this more intelligent once we support destructuring assignments
|
||||||
TypePointers returnParameterTypes;
|
TypePointers returnParameterTypes;
|
||||||
vector<string> returnParameterNames;
|
vector<string> returnParameterNames;
|
||||||
@ -1427,7 +1433,7 @@ FunctionTypePointer FunctionType::removeDynamicReturnTypes() const
|
|||||||
returnParameterNames.push_back(m_returnParameterNames.front());
|
returnParameterNames.push_back(m_returnParameterNames.front());
|
||||||
}
|
}
|
||||||
return make_shared<FunctionType>(
|
return make_shared<FunctionType>(
|
||||||
m_parameterTypes,
|
parameterTypes,
|
||||||
returnParameterTypes,
|
returnParameterTypes,
|
||||||
m_parameterNames,
|
m_parameterNames,
|
||||||
returnParameterNames,
|
returnParameterNames,
|
||||||
|
9
Types.h
9
Types.h
@ -735,10 +735,11 @@ public:
|
|||||||
/// of the parameters to fals.
|
/// of the parameters to fals.
|
||||||
TypePointer copyAndSetGasOrValue(bool _setGas, bool _setValue) const;
|
TypePointer copyAndSetGasOrValue(bool _setGas, bool _setValue) const;
|
||||||
|
|
||||||
/// @returns a copy of this function type where all return parameters of dynamic size are removed.
|
/// @returns a copy of this function type where all return parameters of dynamic size are
|
||||||
/// This is needed if external functions are called internally, as they cannot return dynamic
|
/// removed and the location of reference types is changed from CallData to Memory.
|
||||||
/// values.
|
/// This is needed if external functions are called on other contracts, as they cannot return
|
||||||
FunctionTypePointer removeDynamicReturnTypes() const;
|
/// dynamic values.
|
||||||
|
FunctionTypePointer asMemberFunction() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static TypePointers parseElementaryTypeVector(strings const& _types);
|
static TypePointers parseElementaryTypeVector(strings const& _types);
|
||||||
|
Loading…
Reference in New Issue
Block a user