2015-02-25 19:27:55 +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 2015
|
|
|
|
* Code generation utils that handle arrays.
|
|
|
|
*/
|
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/codegen/ArrayUtils.h>
|
2016-04-01 20:11:01 +00:00
|
|
|
#include <libevmasm/Instruction.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/codegen/CompilerContext.h>
|
|
|
|
#include <libsolidity/codegen/CompilerUtils.h>
|
|
|
|
#include <libsolidity/ast/Types.h>
|
|
|
|
#include <libsolidity/interface/Utils.h>
|
|
|
|
#include <libsolidity/codegen/LValue.h>
|
2015-02-25 19:27:55 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace solidity;
|
|
|
|
|
|
|
|
void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType const& _sourceType) const
|
|
|
|
{
|
2015-03-11 17:09:35 +00:00
|
|
|
// this copies source to target and also clears target if it was larger
|
|
|
|
// need to leave "target_ref target_byte_off" on the stack at the end
|
|
|
|
|
2015-07-14 09:58:16 +00:00
|
|
|
// stack layout: [source_ref] [source length] target_ref (top)
|
2015-06-17 10:01:39 +00:00
|
|
|
solAssert(_targetType.location() == DataLocation::Storage, "");
|
2015-02-27 21:52:02 +00:00
|
|
|
|
|
|
|
IntegerType uint256(256);
|
2015-08-31 16:44:29 +00:00
|
|
|
Type const* targetBaseType = _targetType.isByteArray() ? &uint256 : &(*_targetType.baseType());
|
|
|
|
Type const* sourceBaseType = _sourceType.isByteArray() ? &uint256 : &(*_sourceType.baseType());
|
2015-02-25 19:27:55 +00:00
|
|
|
|
2015-03-05 17:22:17 +00:00
|
|
|
// TODO unroll loop for small sizes
|
2015-02-25 19:27:55 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
bool sourceIsStorage = _sourceType.location() == DataLocation::Storage;
|
2015-06-22 10:50:09 +00:00
|
|
|
bool fromCalldata = _sourceType.location() == DataLocation::CallData;
|
2015-03-16 16:52:19 +00:00
|
|
|
bool directCopy = sourceIsStorage && sourceBaseType->isValueType() && *sourceBaseType == *targetBaseType;
|
2015-08-31 16:44:29 +00:00
|
|
|
bool haveByteOffsetSource = !directCopy && sourceIsStorage && sourceBaseType->storageBytes() <= 16;
|
|
|
|
bool haveByteOffsetTarget = !directCopy && targetBaseType->storageBytes() <= 16;
|
2015-03-16 16:52:19 +00:00
|
|
|
unsigned byteOffsetSize = (haveByteOffsetSource ? 1 : 0) + (haveByteOffsetTarget ? 1 : 0);
|
2015-03-11 17:09:35 +00:00
|
|
|
|
2015-07-14 09:58:16 +00:00
|
|
|
// stack: source_ref [source_length] target_ref
|
2015-03-05 17:22:17 +00:00
|
|
|
// store target_ref
|
2015-08-31 16:44:29 +00:00
|
|
|
for (unsigned i = _sourceType.sizeOnStack(); i > 0; --i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(i);
|
2015-07-14 09:58:16 +00:00
|
|
|
// stack: target_ref source_ref [source_length]
|
2015-03-11 17:09:35 +00:00
|
|
|
// stack: target_ref source_ref [source_length]
|
|
|
|
// retrieve source length
|
2015-06-17 10:01:39 +00:00
|
|
|
if (_sourceType.location() != DataLocation::CallData || !_sourceType.isDynamicallySized())
|
2015-03-05 17:22:17 +00:00
|
|
|
retrieveLength(_sourceType); // otherwise, length is already there
|
2015-06-22 10:50:09 +00:00
|
|
|
if (_sourceType.location() == DataLocation::Memory && _sourceType.isDynamicallySized())
|
|
|
|
{
|
|
|
|
// increment source pointer to point to data
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << u256(0x20);
|
|
|
|
m_context << Instruction::ADD << Instruction::SWAP1;
|
2015-06-22 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref source_ref source_length
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3;
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref source_ref source_length target_ref
|
|
|
|
retrieveLength(_targetType);
|
|
|
|
// stack: target_ref source_ref source_length target_ref target_length
|
|
|
|
if (_targetType.isDynamicallySized())
|
|
|
|
// store new target length
|
2015-09-25 15:13:29 +00:00
|
|
|
if (!_targetType.isByteArray())
|
|
|
|
// Otherwise, length will be stored below.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP3 << Instruction::SSTORE;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (sourceBaseType->category() == Type::Category::Mapping)
|
2015-03-06 12:00:54 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(targetBaseType->category() == Type::Category::Mapping, "");
|
2015-06-17 10:01:39 +00:00
|
|
|
solAssert(_sourceType.location() == DataLocation::Storage, "");
|
2015-03-06 12:00:54 +00:00
|
|
|
// nothing to copy
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::POP << Instruction::POP
|
|
|
|
<< Instruction::POP << Instruction::POP;
|
2015-03-06 12:00:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: target_ref source_ref source_length target_ref target_length
|
2015-03-05 17:22:17 +00:00
|
|
|
// compute hashes (data positions)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-03-05 17:22:17 +00:00
|
|
|
if (_targetType.isDynamicallySized())
|
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
|
|
|
// stack: target_ref source_ref source_length target_length target_data_pos
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-03-05 17:22:17 +00:00
|
|
|
convertLengthToSize(_targetType);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::ADD;
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref source_ref source_length target_data_pos target_data_end
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP3;
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref target_data_end source_length target_data_pos source_ref
|
2015-09-25 15:13:29 +00:00
|
|
|
|
|
|
|
eth::AssemblyItem copyLoopEndWithoutByteOffset = m_context.newTag();
|
|
|
|
|
|
|
|
// special case for short byte arrays: Store them together with their length.
|
|
|
|
if (_targetType.isByteArray())
|
|
|
|
{
|
|
|
|
// stack: target_ref target_data_end source_length target_data_pos source_ref
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem longByteArray = m_context.appendConditionalJump();
|
|
|
|
// store the short byte array
|
|
|
|
solAssert(_sourceType.isByteArray(), "");
|
|
|
|
if (_sourceType.location() == DataLocation::Storage)
|
|
|
|
{
|
|
|
|
// just copy the slot, it contains length and data
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::SLOAD;
|
|
|
|
m_context << Instruction::DUP6 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2015-09-25 15:13:29 +00:00
|
|
|
CompilerUtils(m_context).loadFromMemoryDynamic(*sourceBaseType, fromCalldata, true, false);
|
|
|
|
// stack: target_ref target_data_end source_length target_data_pos source_ref value
|
|
|
|
// clear the lower-order byte - which will hold the length
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0xff) << Instruction::NOT << Instruction::AND;
|
2015-09-25 15:13:29 +00:00
|
|
|
// fetch the length and shift it left by one
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4 << Instruction::DUP1 << Instruction::ADD;
|
2015-09-25 15:13:29 +00:00
|
|
|
// combine value and length and store them
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::OR << Instruction::DUP6 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
|
|
|
// end of special case, jump right into cleaning target data area
|
|
|
|
m_context.appendJumpTo(copyLoopEndWithoutByteOffset);
|
|
|
|
m_context << longByteArray;
|
|
|
|
// Store length (2*length+1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP1 << Instruction::ADD;
|
|
|
|
m_context << u256(1) << Instruction::ADD;
|
|
|
|
m_context << Instruction::DUP6 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 17:22:17 +00:00
|
|
|
// skip copying if source length is zero
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::ISZERO;
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context.appendConditionalJumpTo(copyLoopEndWithoutByteOffset);
|
2015-02-25 19:27:55 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
if (_sourceType.location() == DataLocation::Storage && _sourceType.isDynamicallySized())
|
2015-03-05 17:22:17 +00:00
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
|
|
|
// stack: target_ref target_data_end source_length target_data_pos source_data_pos
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2;
|
2015-03-05 17:22:17 +00:00
|
|
|
convertLengthToSize(_sourceType);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::ADD;
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetTarget)
|
|
|
|
m_context << u256(0);
|
|
|
|
if (haveByteOffsetSource)
|
|
|
|
m_context << u256(0);
|
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset]
|
2015-03-05 17:22:17 +00:00
|
|
|
eth::AssemblyItem copyLoopStart = m_context.newTag();
|
|
|
|
m_context << copyLoopStart;
|
|
|
|
// check for loop condition
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< dupInstruction(3 + byteOffsetSize) << dupInstruction(2 + byteOffsetSize)
|
|
|
|
<< Instruction::GT << Instruction::ISZERO;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem copyLoopEnd = m_context.appendConditionalJump();
|
2015-03-16 16:52:19 +00:00
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset]
|
2015-03-05 17:22:17 +00:00
|
|
|
// copy
|
2015-08-31 16:44:29 +00:00
|
|
|
if (sourceBaseType->category() == Type::Category::Array)
|
2015-02-25 19:27:55 +00:00
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
solAssert(byteOffsetSize == 0, "Byte offset for array as base type.");
|
2015-06-26 18:27:56 +00:00
|
|
|
auto const& sourceBaseArrayType = dynamic_cast<ArrayType const&>(*sourceBaseType);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3;
|
2015-07-14 09:58:16 +00:00
|
|
|
if (sourceBaseArrayType.location() == DataLocation::Memory)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::MLOAD;
|
|
|
|
m_context << Instruction::DUP3;
|
2015-06-26 18:27:56 +00:00
|
|
|
copyArrayToStorage(dynamic_cast<ArrayType const&>(*targetBaseType), sourceBaseArrayType);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
2015-03-16 16:52:19 +00:00
|
|
|
else if (directCopy)
|
|
|
|
{
|
|
|
|
solAssert(byteOffsetSize == 0, "Byte offset for direct copy.");
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::DUP3 << Instruction::SLOAD
|
|
|
|
<< Instruction::DUP3 << Instruction::SSTORE;
|
2015-03-16 16:52:19 +00:00
|
|
|
}
|
2015-03-05 17:22:17 +00:00
|
|
|
else
|
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
// Note that we have to copy each element on its own in case conversion is involved.
|
|
|
|
// We might copy too much if there is padding at the last element, but this way end
|
|
|
|
// checking is easier.
|
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset]
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(3 + byteOffsetSize);
|
2015-06-17 10:01:39 +00:00
|
|
|
if (_sourceType.location() == DataLocation::Storage)
|
2015-03-11 17:09:35 +00:00
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetSource)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2;
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
|
|
|
m_context << u256(0);
|
2015-03-05 17:22:17 +00:00
|
|
|
StorageItem(m_context, *sourceBaseType).retrieveValue(SourceLocation(), true);
|
2015-03-11 17:09:35 +00:00
|
|
|
}
|
2015-03-05 17:22:17 +00:00
|
|
|
else if (sourceBaseType->isValueType())
|
2015-06-22 10:50:09 +00:00
|
|
|
CompilerUtils(m_context).loadFromMemoryDynamic(*sourceBaseType, fromCalldata, true, false);
|
2015-03-05 17:22:17 +00:00
|
|
|
else
|
2015-06-22 10:50:09 +00:00
|
|
|
solAssert(false, "Copying of type " + _sourceType.toString(false) + " to storage not yet supported.");
|
2015-03-16 16:52:19 +00:00
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset] <source_value>...
|
2015-06-05 23:04:55 +00:00
|
|
|
solAssert(
|
2015-08-31 16:44:29 +00:00
|
|
|
2 + byteOffsetSize + sourceBaseType->sizeOnStack() <= 16,
|
2015-06-05 23:04:55 +00:00
|
|
|
"Stack too deep, try removing local variables."
|
|
|
|
);
|
2015-03-16 16:52:19 +00:00
|
|
|
// fetch target storage reference
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(2 + byteOffsetSize + sourceBaseType->sizeOnStack());
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetTarget)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(1 + byteOffsetSize + sourceBaseType->sizeOnStack());
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
|
|
|
m_context << u256(0);
|
2015-03-05 17:22:17 +00:00
|
|
|
StorageItem(m_context, *targetBaseType).storeValue(*sourceBaseType, SourceLocation(), true);
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
2015-03-16 16:52:19 +00:00
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset]
|
2015-03-05 17:22:17 +00:00
|
|
|
// increment source
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetSource)
|
2015-08-31 16:44:29 +00:00
|
|
|
incrementByteOffset(sourceBaseType->storageBytes(), 1, haveByteOffsetTarget ? 5 : 4);
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
2015-06-26 18:27:56 +00:00
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(2 + byteOffsetSize);
|
2015-06-26 18:27:56 +00:00
|
|
|
if (sourceIsStorage)
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << sourceBaseType->storageSize();
|
2015-06-26 18:27:56 +00:00
|
|
|
else if (_sourceType.location() == DataLocation::Memory)
|
|
|
|
m_context << sourceBaseType->memoryHeadSize();
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << sourceBaseType->calldataEncodedSize(true);
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::ADD
|
|
|
|
<< swapInstruction(2 + byteOffsetSize);
|
2015-06-26 18:27:56 +00:00
|
|
|
}
|
2015-03-05 17:22:17 +00:00
|
|
|
// increment target
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetTarget)
|
2015-08-31 16:44:29 +00:00
|
|
|
incrementByteOffset(targetBaseType->storageBytes(), byteOffsetSize, byteOffsetSize + 2);
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< swapInstruction(1 + byteOffsetSize)
|
2015-08-31 16:44:29 +00:00
|
|
|
<< targetBaseType->storageSize()
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::ADD
|
|
|
|
<< swapInstruction(1 + byteOffsetSize);
|
2015-03-05 17:22:17 +00:00
|
|
|
m_context.appendJumpTo(copyLoopStart);
|
|
|
|
m_context << copyLoopEnd;
|
2015-03-16 16:52:19 +00:00
|
|
|
if (haveByteOffsetTarget)
|
|
|
|
{
|
|
|
|
// clear elements that might be left over in the current slot in target
|
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end target_byte_offset [source_byte_offset]
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(byteOffsetSize) << Instruction::ISZERO;
|
2015-03-16 16:52:19 +00:00
|
|
|
eth::AssemblyItem copyCleanupLoopEnd = m_context.appendConditionalJump();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(2 + byteOffsetSize) << dupInstruction(1 + byteOffsetSize);
|
2015-03-16 16:52:19 +00:00
|
|
|
StorageItem(m_context, *targetBaseType).setToZero(SourceLocation(), true);
|
2015-08-31 16:44:29 +00:00
|
|
|
incrementByteOffset(targetBaseType->storageBytes(), byteOffsetSize, byteOffsetSize + 2);
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context.appendJumpTo(copyLoopEnd);
|
|
|
|
|
|
|
|
m_context << copyCleanupLoopEnd;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP; // might pop the source, but then target is popped next
|
2015-03-16 16:52:19 +00:00
|
|
|
}
|
|
|
|
if (haveByteOffsetSource)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context << copyLoopEndWithoutByteOffset;
|
2015-03-05 17:22:17 +00:00
|
|
|
|
|
|
|
// zero-out leftovers in target
|
2015-03-11 17:09:35 +00:00
|
|
|
// stack: target_ref target_data_end source_data_pos target_data_pos_updated source_data_end
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << Instruction::SWAP1 << Instruction::POP;
|
2015-03-05 17:22:17 +00:00
|
|
|
// stack: target_ref target_data_end target_data_pos_updated
|
|
|
|
clearStorageLoop(*targetBaseType);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:13:29 +00:00
|
|
|
void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWordBoundaries) const
|
2015-06-23 12:55:33 +00:00
|
|
|
{
|
|
|
|
solAssert(
|
2015-11-24 13:54:37 +00:00
|
|
|
!_sourceType.baseType()->isDynamicallySized(),
|
2015-06-25 15:51:01 +00:00
|
|
|
"Nested dynamic arrays not implemented here."
|
2015-06-23 12:55:33 +00:00
|
|
|
);
|
2015-06-25 15:51:01 +00:00
|
|
|
CompilerUtils utils(m_context);
|
2015-06-23 12:55:33 +00:00
|
|
|
unsigned baseSize = 1;
|
|
|
|
if (!_sourceType.isByteArray())
|
|
|
|
// We always pad the elements, regardless of _padToWordBoundaries.
|
2015-08-31 16:44:29 +00:00
|
|
|
baseSize = _sourceType.baseType()->calldataEncodedSize();
|
2015-06-23 12:55:33 +00:00
|
|
|
|
|
|
|
if (_sourceType.location() == DataLocation::CallData)
|
|
|
|
{
|
|
|
|
if (!_sourceType.isDynamicallySized())
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << _sourceType.length();
|
2015-06-25 15:51:01 +00:00
|
|
|
if (baseSize > 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(baseSize) << Instruction::MUL;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target source_offset source_len
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::DUP3 << Instruction::DUP5;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target source_offset source_len source_len source_offset target
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::CALLDATACOPY;
|
|
|
|
m_context << Instruction::DUP3 << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP2 << Instruction::POP << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
else if (_sourceType.location() == DataLocation::Memory)
|
|
|
|
{
|
|
|
|
retrieveLength(_sourceType);
|
2015-06-25 15:51:01 +00:00
|
|
|
// stack: target source length
|
2015-08-31 16:44:29 +00:00
|
|
|
if (!_sourceType.baseType()->isValueType())
|
2015-06-25 15:51:01 +00:00
|
|
|
{
|
|
|
|
// copy using a loop
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0) << Instruction::SWAP3;
|
2015-06-25 15:51:01 +00:00
|
|
|
// stack: counter source length target
|
|
|
|
auto repeat = m_context.newTag();
|
|
|
|
m_context << repeat;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::DUP5;
|
|
|
|
m_context << Instruction::LT << Instruction::ISZERO;
|
2015-06-25 15:51:01 +00:00
|
|
|
auto loopEnd = m_context.appendConditionalJump();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP5;
|
2015-06-25 15:51:01 +00:00
|
|
|
accessIndex(_sourceType, false);
|
2015-08-31 16:44:29 +00:00
|
|
|
MemoryItem(m_context, *_sourceType.baseType(), true).retrieveValue(SourceLocation(), true);
|
|
|
|
if (auto baseArray = dynamic_cast<ArrayType const*>(_sourceType.baseType().get()))
|
2015-06-25 15:51:01 +00:00
|
|
|
copyArrayToMemory(*baseArray, _padToWordBoundaries);
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
utils.storeInMemoryDynamic(*_sourceType.baseType());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP3 << u256(1) << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP3;
|
2015-06-25 15:51:01 +00:00
|
|
|
m_context.appendJumpTo(repeat);
|
|
|
|
m_context << loopEnd;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP3;
|
2015-06-25 15:51:01 +00:00
|
|
|
utils.popStackSlots(3);
|
|
|
|
// stack: updated_target_pos
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// memcpy using the built-in contract
|
2015-06-23 12:55:33 +00:00
|
|
|
if (_sourceType.isDynamicallySized())
|
|
|
|
{
|
|
|
|
// change pointer to data part
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << u256(32) << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
// convert length to size
|
|
|
|
if (baseSize > 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(baseSize) << Instruction::MUL;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: <target> <source> <size>
|
|
|
|
//@TODO do not use ::CALL if less than 32 bytes?
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::DUP4 << Instruction::DUP4;
|
2015-06-25 15:51:01 +00:00
|
|
|
utils.memoryCopy();
|
2015-06-23 12:55:33 +00:00
|
|
|
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: <target> <size>
|
|
|
|
|
|
|
|
bool paddingNeeded = false;
|
|
|
|
if (_sourceType.isDynamicallySized())
|
|
|
|
paddingNeeded = _padToWordBoundaries && ((baseSize % 32) != 0);
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
paddingNeeded = _padToWordBoundaries && (((_sourceType.length() * baseSize) % 32) != 0);
|
2015-06-23 12:55:33 +00:00
|
|
|
if (paddingNeeded)
|
|
|
|
{
|
|
|
|
// stack: <target> <size>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::DUP2 << Instruction::ADD;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: <length> <target + size>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << u256(31) << Instruction::AND;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: <target + size> <remainder = size % 32>
|
|
|
|
eth::AssemblyItem skip = m_context.newTag();
|
|
|
|
if (_sourceType.isDynamicallySized())
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::ISZERO;
|
2015-06-23 12:55:33 +00:00
|
|
|
m_context.appendConditionalJumpTo(skip);
|
|
|
|
}
|
|
|
|
// round off, load from there.
|
|
|
|
// stack <target + size> <remainder = size % 32>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::DUP3;
|
|
|
|
m_context << Instruction::SUB;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target+size remainder <target + size - remainder>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::MLOAD;
|
2015-06-23 12:55:33 +00:00
|
|
|
// Now we AND it with ~(2**(8 * (32 - remainder)) - 1)
|
|
|
|
m_context << u256(1);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4 << u256(32) << Instruction::SUB;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: ...<v> 1 <32 - remainder>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0x100) << Instruction::EXP << Instruction::SUB;
|
|
|
|
m_context << Instruction::NOT << Instruction::AND;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target+size remainder target+size-remainder <v & ...>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target+size remainder target+size-remainder
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(32) << Instruction::ADD;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack: target+size remainder <new_padded_end>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2 << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
|
|
|
|
if (_sourceType.isDynamicallySized())
|
|
|
|
m_context << skip.tag();
|
|
|
|
// stack <target + "size"> <remainder = size % 32>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
// stack: <target> <size>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::ADD;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(_sourceType.location() == DataLocation::Storage, "");
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned storageBytes = _sourceType.baseType()->storageBytes();
|
|
|
|
u256 storageSize = _sourceType.baseType()->storageSize();
|
2015-06-23 12:55:33 +00:00
|
|
|
solAssert(storageSize > 1 || (storageSize == 1 && storageBytes > 0), "");
|
|
|
|
|
|
|
|
retrieveLength(_sourceType);
|
|
|
|
// stack here: memory_offset storage_offset length
|
|
|
|
// jump to end if length is zero
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::ISZERO;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem loopEnd = m_context.appendConditionalJump();
|
|
|
|
// Special case for tightly-stored byte arrays
|
|
|
|
if (_sourceType.isByteArray())
|
|
|
|
{
|
|
|
|
// stack here: memory_offset storage_offset length
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem longByteArray = m_context.appendConditionalJump();
|
|
|
|
// store the short byte array (discard lower-order byte)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0x100) << Instruction::DUP1;
|
|
|
|
m_context << Instruction::DUP4 << Instruction::SLOAD;
|
|
|
|
m_context << Instruction::DIV << Instruction::MUL;
|
|
|
|
m_context << Instruction::DUP4 << Instruction::MSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack here: memory_offset storage_offset length
|
|
|
|
// add 32 or length to memory offset
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2;
|
2015-09-25 15:13:29 +00:00
|
|
|
if (_padToWordBoundaries)
|
|
|
|
m_context << u256(32);
|
|
|
|
else
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3;
|
|
|
|
m_context << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP2;
|
2015-09-25 15:13:29 +00:00
|
|
|
m_context.appendJumpTo(loopEnd);
|
|
|
|
m_context << longByteArray;
|
|
|
|
}
|
2015-06-23 12:55:33 +00:00
|
|
|
// compute memory end offset
|
|
|
|
if (baseSize > 1)
|
|
|
|
// convert length to memory size
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(baseSize) << Instruction::MUL;
|
|
|
|
m_context << Instruction::DUP3 << Instruction::ADD << Instruction::SWAP2;
|
2015-06-23 12:55:33 +00:00
|
|
|
if (_sourceType.isDynamicallySized())
|
|
|
|
{
|
|
|
|
// actual array data is stored at SHA3(storage_offset)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-25 15:51:01 +00:00
|
|
|
utils.computeHashStatic();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// stack here: memory_end_offset storage_data_offset memory_offset
|
|
|
|
bool haveByteOffset = !_sourceType.isByteArray() && storageBytes <= 16;
|
|
|
|
if (haveByteOffset)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0) << Instruction::SWAP1;
|
2015-06-23 12:55:33 +00:00
|
|
|
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
|
|
|
|
eth::AssemblyItem loopStart = m_context.newTag();
|
|
|
|
m_context << loopStart;
|
|
|
|
// load and store
|
|
|
|
if (_sourceType.isByteArray())
|
|
|
|
{
|
|
|
|
// Packed both in storage and memory.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::SLOAD;
|
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
2015-06-23 12:55:33 +00:00
|
|
|
// increment storage_data_offset by 1
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << u256(1) << Instruction::ADD;
|
2015-06-23 12:55:33 +00:00
|
|
|
// increment memory offset by 32
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << u256(32) << Instruction::ADD;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
|
|
|
|
if (haveByteOffset)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP3;
|
2015-06-23 12:55:33 +00:00
|
|
|
else
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << u256(0);
|
2015-08-31 16:44:29 +00:00
|
|
|
StorageItem(m_context, *_sourceType.baseType()).retrieveValue(SourceLocation(), true);
|
|
|
|
if (auto baseArray = dynamic_cast<ArrayType const*>(_sourceType.baseType().get()))
|
2015-06-25 15:51:01 +00:00
|
|
|
copyArrayToMemory(*baseArray, _padToWordBoundaries);
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
utils.storeInMemoryDynamic(*_sourceType.baseType());
|
2015-06-23 12:55:33 +00:00
|
|
|
// increment storage_data_offset and byte offset
|
|
|
|
if (haveByteOffset)
|
|
|
|
incrementByteOffset(storageBytes, 2, 3);
|
|
|
|
else
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
m_context << storageSize << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// check for loop condition
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << dupInstruction(haveByteOffset ? 5 : 4);
|
|
|
|
m_context << Instruction::GT;
|
2015-06-23 12:55:33 +00:00
|
|
|
m_context.appendConditionalJumpTo(loopStart);
|
|
|
|
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
|
|
|
|
if (haveByteOffset)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
if (_padToWordBoundaries && baseSize % 32 != 0)
|
|
|
|
{
|
|
|
|
// memory_end_offset - start is the actual length (we want to compute the ceil of).
|
|
|
|
// memory_offset - start is its next multiple of 32, but it might be off by 32.
|
|
|
|
// so we compute: memory_end_offset += (memory_offset - memory_end_offest) & 31
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::SWAP1 << Instruction::SUB;
|
|
|
|
m_context << u256(31) << Instruction::AND;
|
|
|
|
m_context << Instruction::DUP3 << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP2;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << loopEnd << Instruction::POP << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-25 19:27:55 +00:00
|
|
|
void ArrayUtils::clearArray(ArrayType const& _type) const
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned stackHeightStart = m_context.stackHeight();
|
2015-06-17 10:01:39 +00:00
|
|
|
solAssert(_type.location() == DataLocation::Storage, "");
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_type.baseType()->storageBytes() < 32)
|
2015-03-11 17:09:35 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(_type.baseType()->isValueType(), "Invalid storage size for non-value type.");
|
|
|
|
solAssert(_type.baseType()->storageSize() <= 1, "Invalid storage size for type.");
|
2015-03-11 17:09:35 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_type.baseType()->isValueType())
|
|
|
|
solAssert(_type.baseType()->storageSize() <= 1, "Invalid size for value type.");
|
2015-03-16 16:52:19 +00:00
|
|
|
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP; // remove byte offset
|
2015-03-16 16:52:19 +00:00
|
|
|
if (_type.isDynamicallySized())
|
|
|
|
clearDynamicArray(_type);
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (_type.length() == 0 || _type.baseType()->category() == Type::Category::Mapping)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (_type.baseType()->isValueType() && _type.storageSize() <= 5)
|
2015-03-16 16:52:19 +00:00
|
|
|
{
|
|
|
|
// unroll loop for small arrays @todo choose a good value
|
|
|
|
// Note that we loop over storage slots here, not elements.
|
2015-08-31 16:44:29 +00:00
|
|
|
for (unsigned i = 1; i < _type.storageSize(); ++i)
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< u256(0) << Instruction::DUP2 << Instruction::SSTORE
|
|
|
|
<< u256(1) << Instruction::ADD;
|
|
|
|
m_context << u256(0) << Instruction::SWAP1 << Instruction::SSTORE;
|
2015-03-16 16:52:19 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (!_type.baseType()->isValueType() && _type.length() <= 4)
|
2015-02-25 19:27:55 +00:00
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
// unroll loop for small arrays @todo choose a good value
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(_type.baseType()->storageBytes() >= 32, "Invalid storage size.");
|
|
|
|
for (unsigned i = 1; i < _type.length(); ++i)
|
2015-02-25 19:27:55 +00:00
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context << u256(0);
|
2015-08-31 16:44:29 +00:00
|
|
|
StorageItem(m_context, *_type.baseType()).setToZero(SourceLocation(), false);
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::POP
|
|
|
|
<< u256(_type.baseType()->storageSize()) << Instruction::ADD;
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context << u256(0);
|
2015-08-31 16:44:29 +00:00
|
|
|
StorageItem(m_context, *_type.baseType()).setToZero(SourceLocation(), true);
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << _type.length();
|
2015-03-11 17:09:35 +00:00
|
|
|
convertLengthToSize(_type);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::ADD << Instruction::SWAP1;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_type.baseType()->storageBytes() < 32)
|
2015-03-16 16:52:19 +00:00
|
|
|
clearStorageLoop(IntegerType(256));
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
clearStorageLoop(*_type.baseType());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(m_context.stackHeight() == stackHeightStart - 2, "");
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ArrayUtils::clearDynamicArray(ArrayType const& _type) const
|
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
solAssert(_type.location() == DataLocation::Storage, "");
|
2015-02-25 19:27:55 +00:00
|
|
|
solAssert(_type.isDynamicallySized(), "");
|
|
|
|
|
|
|
|
// fetch length
|
2015-09-25 15:13:29 +00:00
|
|
|
retrieveLength(_type);
|
2015-02-25 19:27:55 +00:00
|
|
|
// set length to zero
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0) << Instruction::DUP3 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
// Special case: short byte arrays are stored togeher with their length
|
|
|
|
eth::AssemblyItem endTag = m_context.newTag();
|
|
|
|
if (_type.isByteArray())
|
|
|
|
{
|
|
|
|
// stack: ref old_length
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem longByteArray = m_context.appendConditionalJump();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-09-25 15:13:29 +00:00
|
|
|
m_context.appendJumpTo(endTag);
|
|
|
|
m_context.adjustStackOffset(1); // needed because of jump
|
|
|
|
m_context << longByteArray;
|
|
|
|
}
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: ref old_length
|
|
|
|
convertLengthToSize(_type);
|
|
|
|
// compute data positions
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-02-25 19:27:55 +00:00
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
2015-03-11 17:09:35 +00:00
|
|
|
// stack: len data_pos
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::DUP2 << Instruction::ADD
|
|
|
|
<< Instruction::SWAP1;
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: data_pos_end data_pos
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_type.isByteArray() || _type.baseType()->storageBytes() < 32)
|
2015-02-25 19:27:55 +00:00
|
|
|
clearStorageLoop(IntegerType(256));
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
clearStorageLoop(*_type.baseType());
|
2015-02-25 19:27:55 +00:00
|
|
|
// cleanup
|
2015-09-25 15:13:29 +00:00
|
|
|
m_context << endTag;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:13:29 +00:00
|
|
|
void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
|
2015-02-25 19:27:55 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
solAssert(_type.location() == DataLocation::Storage, "");
|
2015-02-25 19:27:55 +00:00
|
|
|
solAssert(_type.isDynamicallySized(), "");
|
2015-08-31 16:44:29 +00:00
|
|
|
if (!_type.isByteArray() && _type.baseType()->storageBytes() < 32)
|
|
|
|
solAssert(_type.baseType()->isValueType(), "Invalid storage size for non-value type.");
|
2015-02-25 19:27:55 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned stackHeightStart = m_context.stackHeight();
|
2015-02-25 19:27:55 +00:00
|
|
|
eth::AssemblyItem resizeEnd = m_context.newTag();
|
|
|
|
|
|
|
|
// stack: ref new_length
|
|
|
|
// fetch old length
|
2015-09-25 15:13:29 +00:00
|
|
|
retrieveLength(_type, 1);
|
|
|
|
// stack: ref new_length old_length
|
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 3 - 2, "2");
|
|
|
|
|
|
|
|
// Special case for short byte arrays, they are stored together with their length
|
|
|
|
if (_type.isByteArray())
|
|
|
|
{
|
|
|
|
eth::AssemblyItem regularPath = m_context.newTag();
|
|
|
|
// We start by a large case-distinction about the old and new length of the byte array.
|
|
|
|
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::SLOAD;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length ref_value
|
|
|
|
|
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem currentIsLong = m_context.appendConditionalJump();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
eth::AssemblyItem newIsLong = m_context.appendConditionalJump();
|
|
|
|
|
|
|
|
// Here: short -> short
|
|
|
|
|
|
|
|
// Compute 1 << (256 - 8 * new_size)
|
|
|
|
eth::AssemblyItem shortToShort = m_context.newTag();
|
|
|
|
m_context << shortToShort;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << u256(8) << Instruction::MUL;
|
|
|
|
m_context << u256(0x100) << Instruction::SUB;
|
|
|
|
m_context << u256(2) << Instruction::EXP;
|
2015-09-25 15:13:29 +00:00
|
|
|
// Divide and multiply by that value, clearing bits.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::SWAP2;
|
|
|
|
m_context << Instruction::DIV << Instruction::MUL;
|
2015-09-25 15:13:29 +00:00
|
|
|
// Insert 2*length.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP1 << Instruction::ADD;
|
|
|
|
m_context << Instruction::OR;
|
2015-09-25 15:13:29 +00:00
|
|
|
// Store.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 3 - 2, "3");
|
|
|
|
m_context.appendJumpTo(resizeEnd);
|
|
|
|
|
|
|
|
m_context.adjustStackOffset(1); // we have to do that because of the jumps
|
|
|
|
// Here: short -> long
|
|
|
|
|
|
|
|
m_context << newIsLong;
|
|
|
|
// stack: ref new_length current_length ref_value
|
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
|
|
|
|
// Zero out lower-order byte.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(0xff) << Instruction::NOT << Instruction::AND;
|
2015-09-25 15:13:29 +00:00
|
|
|
// Store at data location.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4;
|
2015-09-25 15:13:29 +00:00
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length
|
|
|
|
// Store new length: Compule 2*length + 1 and store it.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::DUP1 << Instruction::ADD;
|
|
|
|
m_context << u256(1) << Instruction::ADD;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length 2*new_length+1
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4 << Instruction::SSTORE;
|
2015-09-25 15:13:29 +00:00
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 3 - 2, "3");
|
|
|
|
m_context.appendJumpTo(resizeEnd);
|
|
|
|
|
|
|
|
m_context.adjustStackOffset(1); // we have to do that because of the jumps
|
|
|
|
|
|
|
|
m_context << currentIsLong;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
|
2015-09-25 15:13:29 +00:00
|
|
|
m_context.appendConditionalJumpTo(regularPath);
|
|
|
|
|
|
|
|
// Here: long -> short
|
|
|
|
// Read the first word of the data and store it on the stack. Clear the data location and
|
|
|
|
// then jump to the short -> short case.
|
|
|
|
|
|
|
|
// stack: ref new_length current_length ref_value
|
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << Instruction::DUP3;
|
2015-09-25 15:13:29 +00:00
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::SLOAD << Instruction::SWAP1;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length first_word data_location
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP3;
|
2015-09-25 15:13:29 +00:00
|
|
|
convertLengthToSize(_type);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::ADD << Instruction::SWAP1;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length first_word data_location_end data_location
|
|
|
|
clearStorageLoop(IntegerType(256));
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: ref new_length current_length first_word
|
|
|
|
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
|
|
|
|
m_context.appendJumpTo(shortToShort);
|
|
|
|
|
|
|
|
m_context << regularPath;
|
|
|
|
// stack: ref new_length current_length ref_value
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change of length for a regular array (i.e. length at location, data at sha3(location)).
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: ref new_length old_length
|
|
|
|
// store new length
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2;
|
2015-09-25 15:13:29 +00:00
|
|
|
if (_type.isByteArray())
|
|
|
|
// For a "long" byte array, store length as 2*length+1
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::ADD << u256(1) << Instruction::ADD;
|
|
|
|
m_context<< Instruction::DUP4 << Instruction::SSTORE;
|
2015-02-25 19:27:55 +00:00
|
|
|
// skip if size is not reduced
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::DUP2
|
|
|
|
<< Instruction::ISZERO << Instruction::GT;
|
2015-02-25 19:27:55 +00:00
|
|
|
m_context.appendConditionalJumpTo(resizeEnd);
|
|
|
|
|
|
|
|
// size reduced, clear the end of the array
|
|
|
|
// stack: ref new_length old_length
|
|
|
|
convertLengthToSize(_type);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2;
|
2015-02-25 19:27:55 +00:00
|
|
|
convertLengthToSize(_type);
|
|
|
|
// stack: ref new_length old_size new_size
|
|
|
|
// compute data positions
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP4;
|
2015-02-25 19:27:55 +00:00
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
|
|
|
// stack: ref new_length old_size new_size data_pos
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2 << Instruction::DUP3 << Instruction::ADD;
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: ref new_length data_pos new_size delete_end
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2 << Instruction::ADD;
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: ref new_length delete_end delete_start
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_type.isByteArray() || _type.baseType()->storageBytes() < 32)
|
2015-02-25 19:27:55 +00:00
|
|
|
clearStorageLoop(IntegerType(256));
|
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
clearStorageLoop(*_type.baseType());
|
2015-02-25 19:27:55 +00:00
|
|
|
|
|
|
|
m_context << resizeEnd;
|
|
|
|
// cleanup
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << Instruction::POP << Instruction::POP;
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(m_context.stackHeight() == stackHeightStart - 2, "");
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ArrayUtils::clearStorageLoop(Type const& _type) const
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned stackHeightStart = m_context.stackHeight();
|
|
|
|
if (_type.category() == Type::Category::Mapping)
|
2015-03-06 12:00:54 +00:00
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-03-06 12:00:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-02-25 19:27:55 +00:00
|
|
|
// stack: end_pos pos
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
// jump to and return from the loop to allow for duplicate code removal
|
|
|
|
eth::AssemblyItem returnTag = m_context.pushNewTag();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP2 << Instruction::SWAP1;
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
// stack: <return tag> end_pos pos
|
|
|
|
eth::AssemblyItem loopStart = m_context.appendJumpToNew();
|
2015-02-25 19:27:55 +00:00
|
|
|
m_context << loopStart;
|
|
|
|
// check for loop condition
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::DUP3
|
|
|
|
<< Instruction::GT << Instruction::ISZERO;
|
2015-02-25 19:27:55 +00:00
|
|
|
eth::AssemblyItem zeroLoopEnd = m_context.newTag();
|
|
|
|
m_context.appendConditionalJumpTo(zeroLoopEnd);
|
|
|
|
// delete
|
2015-03-16 16:52:19 +00:00
|
|
|
m_context << u256(0);
|
2015-02-25 19:27:55 +00:00
|
|
|
StorageItem(m_context, _type).setToZero(SourceLocation(), false);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-02-25 19:27:55 +00:00
|
|
|
// increment
|
2016-04-15 14:49:59 +00:00
|
|
|
m_context << _type.storageSize() << Instruction::ADD;
|
2015-02-25 19:27:55 +00:00
|
|
|
m_context.appendJumpTo(loopStart);
|
|
|
|
// cleanup
|
|
|
|
m_context << zeroLoopEnd;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << Instruction::SWAP1;
|
2015-05-28 12:43:46 +00:00
|
|
|
// "return"
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::JUMP;
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
m_context << returnTag;
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(m_context.stackHeight() == stackHeightStart - 1, "");
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 17:22:17 +00:00
|
|
|
void ArrayUtils::convertLengthToSize(ArrayType const& _arrayType, bool _pad) const
|
2015-02-25 19:27:55 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
if (_arrayType.location() == DataLocation::Storage)
|
2015-03-05 17:22:17 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_arrayType.baseType()->storageSize() <= 1)
|
2015-03-16 16:52:19 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned baseBytes = _arrayType.baseType()->storageBytes();
|
2015-03-16 16:52:19 +00:00
|
|
|
if (baseBytes == 0)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << u256(1);
|
2015-03-16 16:52:19 +00:00
|
|
|
else if (baseBytes <= 16)
|
|
|
|
{
|
|
|
|
unsigned itemsPerSlot = 32 / baseBytes;
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< u256(itemsPerSlot - 1) << Instruction::ADD
|
|
|
|
<< u256(itemsPerSlot) << Instruction::SWAP1 << Instruction::DIV;
|
2015-03-16 16:52:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << _arrayType.baseType()->storageSize() << Instruction::MUL;
|
2015-03-05 17:22:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!_arrayType.isByteArray())
|
2015-06-25 15:51:01 +00:00
|
|
|
{
|
|
|
|
if (_arrayType.location() == DataLocation::Memory)
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << _arrayType.baseType()->memoryHeadSize();
|
2015-06-25 15:51:01 +00:00
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << _arrayType.baseType()->calldataEncodedSize();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::MUL;
|
2015-06-25 15:51:01 +00:00
|
|
|
}
|
2015-03-05 17:22:17 +00:00
|
|
|
else if (_pad)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(31) << Instruction::ADD
|
|
|
|
<< u256(32) << Instruction::DUP1
|
|
|
|
<< Instruction::SWAP2 << Instruction::DIV << Instruction::MUL;
|
2015-03-05 17:22:17 +00:00
|
|
|
}
|
2015-02-25 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:13:29 +00:00
|
|
|
void ArrayUtils::retrieveLength(ArrayType const& _arrayType, unsigned _stackDepth) const
|
2015-02-27 21:52:02 +00:00
|
|
|
{
|
2015-03-03 16:55:28 +00:00
|
|
|
if (!_arrayType.isDynamicallySized())
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << _arrayType.length();
|
2015-03-03 16:55:28 +00:00
|
|
|
else
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(1 + _stackDepth);
|
2015-06-05 09:07:50 +00:00
|
|
|
switch (_arrayType.location())
|
2015-03-03 16:55:28 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::CallData:
|
2015-03-03 16:55:28 +00:00
|
|
|
// length is stored on the stack
|
|
|
|
break;
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Memory:
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::MLOAD;
|
2015-03-03 16:55:28 +00:00
|
|
|
break;
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Storage:
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SLOAD;
|
2015-09-25 15:13:29 +00:00
|
|
|
if (_arrayType.isByteArray())
|
|
|
|
{
|
|
|
|
// Retrieve length both for in-place strings and off-place strings:
|
|
|
|
// Computes (x & (0x100 * (ISZERO (x & 1)) - 1)) / 2
|
|
|
|
// i.e. for short strings (x & 1 == 0) it does (x & 0xff) / 2 and for long strings it
|
|
|
|
// computes (x & (-1)) / 2, which is equivalent to just x / 2.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(1) << Instruction::DUP2 << u256(1) << Instruction::AND;
|
|
|
|
m_context << Instruction::ISZERO << u256(0x100) << Instruction::MUL;
|
|
|
|
m_context << Instruction::SUB << Instruction::AND;
|
|
|
|
m_context << u256(2) << Instruction::SWAP1 << Instruction::DIV;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
2015-03-03 16:55:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
2015-06-25 15:51:01 +00:00
|
|
|
void ArrayUtils::accessIndex(ArrayType const& _arrayType, bool _doBoundsCheck) const
|
2015-03-30 17:31:57 +00:00
|
|
|
{
|
2015-09-25 15:13:29 +00:00
|
|
|
/// Stack: reference [length] index
|
2015-06-17 10:01:39 +00:00
|
|
|
DataLocation location = _arrayType.location();
|
2015-03-30 17:31:57 +00:00
|
|
|
|
2015-06-25 15:51:01 +00:00
|
|
|
if (_doBoundsCheck)
|
|
|
|
{
|
|
|
|
// retrieve length
|
2015-09-25 15:13:29 +00:00
|
|
|
ArrayUtils::retrieveLength(_arrayType, 1);
|
|
|
|
// Stack: ref [length] index length
|
2015-06-25 15:51:01 +00:00
|
|
|
// check out-of-bounds access
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::LT << Instruction::ISZERO;
|
2015-06-25 15:51:01 +00:00
|
|
|
// out-of-bounds access throws exception
|
|
|
|
m_context.appendConditionalJumpTo(m_context.errorTag());
|
|
|
|
}
|
2015-09-25 15:13:29 +00:00
|
|
|
if (location == DataLocation::CallData && _arrayType.isDynamicallySized())
|
2015-06-26 18:27:56 +00:00
|
|
|
// remove length if present
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::POP;
|
2015-03-30 17:31:57 +00:00
|
|
|
|
|
|
|
// stack: <base_ref> <index>
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-09-25 15:13:29 +00:00
|
|
|
// stack: <index> <base_ref>
|
2015-03-31 12:59:38 +00:00
|
|
|
switch (location)
|
|
|
|
{
|
2015-06-22 10:50:09 +00:00
|
|
|
case DataLocation::Memory:
|
2015-09-25 15:13:29 +00:00
|
|
|
if (_arrayType.isDynamicallySized())
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(32) << Instruction::ADD;
|
2015-09-25 15:13:29 +00:00
|
|
|
// fall-through
|
|
|
|
case DataLocation::CallData:
|
2015-03-31 12:59:38 +00:00
|
|
|
if (!_arrayType.isByteArray())
|
2015-06-17 10:01:39 +00:00
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-25 15:51:01 +00:00
|
|
|
if (location == DataLocation::CallData)
|
2015-08-31 16:44:29 +00:00
|
|
|
m_context << _arrayType.baseType()->calldataEncodedSize();
|
2015-06-25 15:51:01 +00:00
|
|
|
else
|
|
|
|
m_context << u256(_arrayType.memoryHeadSize());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::MUL;
|
2015-06-17 10:01:39 +00:00
|
|
|
}
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::ADD;
|
2015-03-31 12:59:38 +00:00
|
|
|
break;
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Storage:
|
2015-09-25 15:13:29 +00:00
|
|
|
{
|
|
|
|
eth::AssemblyItem endTag = m_context.newTag();
|
|
|
|
if (_arrayType.isByteArray())
|
|
|
|
{
|
|
|
|
// Special case of short byte arrays.
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
m_context << Instruction::DUP2 << Instruction::SLOAD;
|
|
|
|
m_context << u256(1) << Instruction::AND << Instruction::ISZERO;
|
2015-09-25 15:13:29 +00:00
|
|
|
// No action needed for short byte arrays.
|
|
|
|
m_context.appendConditionalJumpTo(endTag);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-09-25 15:13:29 +00:00
|
|
|
}
|
|
|
|
if (_arrayType.isDynamicallySized())
|
|
|
|
CompilerUtils(m_context).computeHashStatic();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_arrayType.baseType()->storageBytes() <= 16)
|
2015-03-31 12:59:38 +00:00
|
|
|
{
|
|
|
|
// stack: <data_ref> <index>
|
|
|
|
// goal:
|
|
|
|
// <ref> <byte_number> = <base_ref + index / itemsPerSlot> <(index % itemsPerSlot) * byteSize>
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned byteSize = _arrayType.baseType()->storageBytes();
|
2015-03-31 12:59:38 +00:00
|
|
|
solAssert(byteSize != 0, "");
|
|
|
|
unsigned itemsPerSlot = 32 / byteSize;
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(itemsPerSlot) << Instruction::SWAP2;
|
2015-03-31 12:59:38 +00:00
|
|
|
// stack: itemsPerSlot index data_ref
|
2015-03-30 17:31:57 +00:00
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::DUP3 << Instruction::DUP3
|
|
|
|
<< Instruction::DIV << Instruction::ADD
|
2015-03-31 12:59:38 +00:00
|
|
|
// stack: itemsPerSlot index (data_ref + index / itemsPerSlot)
|
2016-04-04 11:41:35 +00:00
|
|
|
<< Instruction::SWAP2 << Instruction::SWAP1
|
|
|
|
<< Instruction::MOD;
|
2015-03-31 12:59:38 +00:00
|
|
|
if (byteSize != 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(byteSize) << Instruction::MUL;
|
2015-03-30 17:31:57 +00:00
|
|
|
}
|
2015-03-31 12:59:38 +00:00
|
|
|
else
|
2015-03-30 17:31:57 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_arrayType.baseType()->storageSize() != 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << _arrayType.baseType()->storageSize() << Instruction::MUL;
|
|
|
|
m_context << Instruction::ADD << u256(0);
|
2015-03-30 17:31:57 +00:00
|
|
|
}
|
2015-09-25 15:13:29 +00:00
|
|
|
m_context << endTag;
|
2015-03-31 12:59:38 +00:00
|
|
|
break;
|
2015-03-30 17:31:57 +00:00
|
|
|
}
|
2015-09-25 15:13:29 +00:00
|
|
|
default:
|
|
|
|
solAssert(false, "");
|
|
|
|
}
|
2015-03-30 17:31:57 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 17:15:16 +00:00
|
|
|
void ArrayUtils::incrementByteOffset(unsigned _byteSize, unsigned _byteOffsetPosition, unsigned _storageOffsetPosition) const
|
2015-03-16 16:52:19 +00:00
|
|
|
{
|
2015-03-19 17:15:16 +00:00
|
|
|
solAssert(_byteSize < 32, "");
|
|
|
|
solAssert(_byteSize != 0, "");
|
2015-03-16 16:52:19 +00:00
|
|
|
// We do the following, but avoiding jumps:
|
|
|
|
// byteOffset += byteSize
|
|
|
|
// if (byteOffset + byteSize > 32)
|
|
|
|
// {
|
|
|
|
// storageOffset++;
|
|
|
|
// byteOffset = 0;
|
|
|
|
// }
|
2015-03-19 17:15:16 +00:00
|
|
|
if (_byteOffsetPosition > 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(_byteOffsetPosition - 1);
|
|
|
|
m_context << u256(_byteSize) << Instruction::ADD;
|
2015-03-19 17:15:16 +00:00
|
|
|
if (_byteOffsetPosition > 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(_byteOffsetPosition - 1);
|
2015-03-16 16:52:19 +00:00
|
|
|
// compute, X := (byteOffset + byteSize - 1) / 32, should be 1 iff byteOffset + bytesize > 32
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< u256(32) << dupInstruction(1 + _byteOffsetPosition) << u256(_byteSize - 1)
|
|
|
|
<< Instruction::ADD << Instruction::DIV;
|
2015-03-16 16:52:19 +00:00
|
|
|
// increment storage offset if X == 1 (just add X to it)
|
|
|
|
// stack: X
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< swapInstruction(_storageOffsetPosition) << dupInstruction(_storageOffsetPosition + 1)
|
|
|
|
<< Instruction::ADD << swapInstruction(_storageOffsetPosition);
|
2015-03-16 16:52:19 +00:00
|
|
|
// stack: X
|
|
|
|
// set source_byte_offset to zero if X == 1 (using source_byte_offset *= 1 - X)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(1) << Instruction::SUB;
|
2015-03-16 16:52:19 +00:00
|
|
|
// stack: 1 - X
|
2015-03-19 17:15:16 +00:00
|
|
|
if (_byteOffsetPosition == 1)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::MUL;
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
|
|
|
m_context
|
2016-04-04 11:41:35 +00:00
|
|
|
<< dupInstruction(_byteOffsetPosition + 1) << Instruction::MUL
|
|
|
|
<< swapInstruction(_byteOffsetPosition) << Instruction::POP;
|
2015-03-16 16:52:19 +00:00
|
|
|
}
|