aboutsummaryrefslogtreecommitdiffstats
path: root/ArrayUtils.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-28 05:52:02 +0800
committerChristian <c@ethdev.com>2015-02-28 05:52:19 +0800
commit3074d08b44d4696e32d69db85d915dcf79df5e86 (patch)
tree94d9252f248acec2577dae117f0a66ed255214d9 /ArrayUtils.cpp
parent2ea8f3a75a9eaf6006052426168cb70ef5c6fa8d (diff)
downloaddexon-solidity-3074d08b44d4696e32d69db85d915dcf79df5e86.tar.gz
dexon-solidity-3074d08b44d4696e32d69db85d915dcf79df5e86.tar.zst
dexon-solidity-3074d08b44d4696e32d69db85d915dcf79df5e86.zip
Array copy storage to storage.
Diffstat (limited to 'ArrayUtils.cpp')
-rw-r--r--ArrayUtils.cpp72
1 files changed, 46 insertions, 26 deletions
diff --git a/ArrayUtils.cpp b/ArrayUtils.cpp
index 07949c79..43cc6fd4 100644
--- a/ArrayUtils.cpp
+++ b/ArrayUtils.cpp
@@ -37,13 +37,17 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
// stack layout: [source_ref] target_ref (top)
// need to leave target_ref on the stack at the end
solAssert(_targetType.getLocation() == ArrayType::Location::Storage, "");
- solAssert(_targetType.isByteArray(), "Non byte arrays not yet implemented here.");
- solAssert(_sourceType.isByteArray(), "Non byte arrays not yet implemented here.");
+
+ IntegerType uint256(256);
+ Type const* targetBaseType = _targetType.isByteArray() ? &uint256 : &(*_targetType.getBaseType());
+ Type const* sourceBaseType = _sourceType.isByteArray() ? &uint256 : &(*_sourceType.getBaseType());
switch (_sourceType.getLocation())
{
case ArrayType::Location::CallData:
{
+ solAssert(_targetType.isByteArray(), "Non byte arrays not yet implemented here.");
+ solAssert(_sourceType.isByteArray(), "Non byte arrays not yet implemented here.");
// This also assumes that after "length" we only have zeros, i.e. it cannot be used to
// slice a byte array from calldata.
@@ -97,30 +101,37 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
{
// this copies source to target and also clears target if it was larger
+ solAssert(sourceBaseType->getStorageSize() == targetBaseType->getStorageSize(),
+ "Copying with different storage sizes not yet implemented.");
// stack: source_ref target_ref
// store target_ref
m_context << eth::Instruction::SWAP1 << eth::Instruction::DUP2;
+ // stack: target_ref source_ref target_ref
// fetch lengthes
- m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD << eth::Instruction::SWAP2
- << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
- // stack: target_ref target_len_bytes target_ref source_ref source_len_bytes
- // store new target length
- m_context << eth::Instruction::DUP1 << eth::Instruction::DUP4 << eth::Instruction::SSTORE;
+ retrieveLength(_targetType);
+ m_context << eth::Instruction::SWAP2;
+ // stack: target_ref target_len target_ref source_ref
+ retrieveLength(_sourceType);
+ // stack: target_ref target_len target_ref source_ref source_len
+ if (_targetType.isDynamicallySized())
+ // store new target length
+ m_context << eth::Instruction::DUP1 << eth::Instruction::DUP4 << eth::Instruction::SSTORE;
// compute hashes (data positions)
m_context << eth::Instruction::SWAP2;
- CompilerUtils(m_context).computeHashStatic();
+ if (_targetType.isDynamicallySized())
+ CompilerUtils(m_context).computeHashStatic();
m_context << eth::Instruction::SWAP1;
- CompilerUtils(m_context).computeHashStatic();
- // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos
- // convert lengthes from bytes to storage slots
- m_context << u256(31) << u256(32) << eth::Instruction::DUP1 << eth::Instruction::DUP3
- << eth::Instruction::DUP8 << eth::Instruction::ADD << eth::Instruction::DIV
- << eth::Instruction::SWAP2
- << eth::Instruction::DUP6 << eth::Instruction::ADD << eth::Instruction::DIV;
- // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len
+ if (_sourceType.isDynamicallySized())
+ CompilerUtils(m_context).computeHashStatic();
+ // stack: target_ref target_len source_len target_data_pos source_data_pos
+ m_context << eth::Instruction::DUP4;
+ convertLengthToSize(_sourceType);
+ m_context << eth::Instruction::DUP4;
+ convertLengthToSize(_sourceType);
+ // stack: target_ref target_len source_len target_data_pos source_data_pos target_size source_size
// @todo we might be able to go without a third counter
m_context << u256(0);
- // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len counter
+ // stack: target_ref target_len source_len target_data_pos source_data_pos target_size source_size counter
eth::AssemblyItem copyLoopStart = m_context.newTag();
m_context << copyLoopStart;
// check for loop condition
@@ -129,27 +140,28 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
eth::AssemblyItem copyLoopEnd = m_context.newTag();
m_context.appendConditionalJumpTo(copyLoopEnd);
// copy
- m_context << eth::Instruction::DUP4 << eth::Instruction::DUP2 << eth::Instruction::ADD
- << eth::Instruction::SLOAD
- << eth::Instruction::DUP6 << eth::Instruction::DUP3 << eth::Instruction::ADD
- << eth::Instruction::SSTORE;
+ m_context << eth::Instruction::DUP4 << eth::Instruction::DUP2 << eth::Instruction::ADD;
+ StorageItem(m_context, *sourceBaseType).retrieveValue(SourceLocation(), true);
+ m_context << eth::dupInstruction(5 + sourceBaseType->getSizeOnStack())
+ << eth::dupInstruction(2 + sourceBaseType->getSizeOnStack()) << eth::Instruction::ADD;
+ StorageItem(m_context, *targetBaseType).storeValue(*sourceBaseType, SourceLocation(), true);
// increment
- m_context << u256(1) << eth::Instruction::ADD;
+ m_context << targetBaseType->getStorageSize() << eth::Instruction::ADD;
m_context.appendJumpTo(copyLoopStart);
m_context << copyLoopEnd;
// zero-out leftovers in target
- // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len counter
+ // stack: target_ref target_len source_len target_data_pos source_data_pos target_size source_size counter
// add counter to target_data_pos
m_context << eth::Instruction::DUP5 << eth::Instruction::ADD
<< eth::Instruction::SWAP5 << eth::Instruction::POP;
- // stack: target_ref target_len_bytes target_data_pos_updated target_data_pos source_data_pos target_len source_len
- // add length to target_data_pos to get target_data_end
+ // stack: target_ref target_len target_data_pos_updated target_data_pos source_data_pos target_size source_size
+ // add size to target_data_pos to get target_data_end
m_context << eth::Instruction::POP << eth::Instruction::DUP3 << eth::Instruction::ADD
<< eth::Instruction::SWAP4
<< eth::Instruction::POP << eth::Instruction::POP << eth::Instruction::POP;
// stack: target_ref target_data_end target_data_pos_updated
- clearStorageLoop(IntegerType(256));
+ clearStorageLoop(*targetBaseType);
m_context << eth::Instruction::POP;
break;
}
@@ -282,3 +294,11 @@ void ArrayUtils::convertLengthToSize(ArrayType const& _arrayType) const
m_context << _arrayType.getBaseType()->getStorageSize() << eth::Instruction::MUL;
}
+void ArrayUtils::retrieveLength(ArrayType const& _arrayType) const
+{
+ if (_arrayType.isDynamicallySized())
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
+ else
+ m_context << _arrayType.getLength();
+}
+