aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ArrayUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/codegen/ArrayUtils.cpp')
-rw-r--r--libsolidity/codegen/ArrayUtils.cpp432
1 files changed, 216 insertions, 216 deletions
diff --git a/libsolidity/codegen/ArrayUtils.cpp b/libsolidity/codegen/ArrayUtils.cpp
index c06d83e2..8e568be5 100644
--- a/libsolidity/codegen/ArrayUtils.cpp
+++ b/libsolidity/codegen/ArrayUtils.cpp
@@ -56,7 +56,7 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
// stack: source_ref [source_length] target_ref
// store target_ref
for (unsigned i = _sourceType.sizeOnStack(); i > 0; --i)
- m_context << solidity::swapInstruction(i);
+ m_context << swapInstruction(i);
// stack: target_ref source_ref [source_length]
// stack: target_ref source_ref [source_length]
// retrieve source length
@@ -65,12 +65,12 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
if (_sourceType.location() == DataLocation::Memory && _sourceType.isDynamicallySized())
{
// increment source pointer to point to data
- m_context << solidity::Instruction::SWAP1 << u256(0x20);
- m_context << solidity::Instruction::ADD << Instruction::SWAP1;
+ m_context << Instruction::SWAP1 << u256(0x20);
+ m_context << Instruction::ADD << Instruction::SWAP1;
}
// stack: target_ref source_ref source_length
- m_context << solidity::Instruction::DUP3;
+ m_context << Instruction::DUP3;
// stack: target_ref source_ref source_length target_ref
retrieveLength(_targetType);
// stack: target_ref source_ref source_length target_ref target_length
@@ -78,28 +78,28 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
// store new target length
if (!_targetType.isByteArray())
// Otherwise, length will be stored below.
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::DUP3 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP3 << Instruction::DUP3 << Instruction::SSTORE;
if (sourceBaseType->category() == Type::Category::Mapping)
{
solAssert(targetBaseType->category() == Type::Category::Mapping, "");
solAssert(_sourceType.location() == DataLocation::Storage, "");
// nothing to copy
m_context
- << solidity::Instruction::POP << solidity::Instruction::POP
- << solidity::Instruction::POP << solidity::Instruction::POP;
+ << Instruction::POP << Instruction::POP
+ << Instruction::POP << Instruction::POP;
return;
}
// stack: target_ref source_ref source_length target_ref target_length
// compute hashes (data positions)
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
if (_targetType.isDynamicallySized())
CompilerUtils(m_context).computeHashStatic();
// stack: target_ref source_ref source_length target_length target_data_pos
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
convertLengthToSize(_targetType);
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::ADD;
+ m_context << Instruction::DUP2 << Instruction::ADD;
// stack: target_ref source_ref source_length target_data_pos target_data_end
- m_context << solidity::Instruction::SWAP3;
+ m_context << Instruction::SWAP3;
// stack: target_ref target_data_end source_length target_data_pos source_ref
eth::AssemblyItem copyLoopEndWithoutByteOffset = m_context.newTag();
@@ -108,47 +108,47 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
if (_targetType.isByteArray())
{
// stack: target_ref target_data_end source_length target_data_pos source_ref
- m_context << solidity::Instruction::DUP3 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
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
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::SLOAD;
- m_context << solidity::Instruction::DUP6 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP1 << Instruction::SLOAD;
+ m_context << Instruction::DUP6 << Instruction::SSTORE;
}
else
{
- m_context << solidity::Instruction::DUP1;
+ m_context << Instruction::DUP1;
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
- m_context << u256(0xff) << solidity::Instruction::NOT << solidity::Instruction::AND;
+ m_context << u256(0xff) << Instruction::NOT << Instruction::AND;
// fetch the length and shift it left by one
- m_context << solidity::Instruction::DUP4 << solidity::Instruction::DUP1 << solidity::Instruction::ADD;
+ m_context << Instruction::DUP4 << Instruction::DUP1 << Instruction::ADD;
// combine value and length and store them
- m_context << solidity::Instruction::OR << solidity::Instruction::DUP6 << solidity::Instruction::SSTORE;
+ m_context << Instruction::OR << Instruction::DUP6 << Instruction::SSTORE;
}
// end of special case, jump right into cleaning target data area
m_context.appendJumpTo(copyLoopEndWithoutByteOffset);
m_context << longByteArray;
// Store length (2*length+1)
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::DUP1 << solidity::Instruction::ADD;
- m_context << u256(1) << solidity::Instruction::ADD;
- m_context << solidity::Instruction::DUP6 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP3 << Instruction::DUP1 << Instruction::ADD;
+ m_context << u256(1) << Instruction::ADD;
+ m_context << Instruction::DUP6 << Instruction::SSTORE;
}
// skip copying if source length is zero
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP3 << Instruction::ISZERO;
m_context.appendConditionalJumpTo(copyLoopEndWithoutByteOffset);
if (_sourceType.location() == DataLocation::Storage && _sourceType.isDynamicallySized())
CompilerUtils(m_context).computeHashStatic();
// stack: target_ref target_data_end source_length target_data_pos source_data_pos
- m_context << solidity::Instruction::SWAP2;
+ m_context << Instruction::SWAP2;
convertLengthToSize(_sourceType);
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::ADD;
+ m_context << Instruction::DUP3 << Instruction::ADD;
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end
if (haveByteOffsetTarget)
m_context << u256(0);
@@ -159,8 +159,8 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
m_context << copyLoopStart;
// check for loop condition
m_context
- << solidity::dupInstruction(3 + byteOffsetSize) << solidity::dupInstruction(2 + byteOffsetSize)
- << solidity::Instruction::GT << solidity::Instruction::ISZERO;
+ << dupInstruction(3 + byteOffsetSize) << dupInstruction(2 + byteOffsetSize)
+ << Instruction::GT << Instruction::ISZERO;
eth::AssemblyItem copyLoopEnd = m_context.appendConditionalJump();
// stack: target_ref target_data_end source_data_pos target_data_pos source_data_end [target_byte_offset] [source_byte_offset]
// copy
@@ -168,19 +168,19 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
{
solAssert(byteOffsetSize == 0, "Byte offset for array as base type.");
auto const& sourceBaseArrayType = dynamic_cast<ArrayType const&>(*sourceBaseType);
- m_context << solidity::Instruction::DUP3;
+ m_context << Instruction::DUP3;
if (sourceBaseArrayType.location() == DataLocation::Memory)
- m_context << solidity::Instruction::MLOAD;
- m_context << solidity::Instruction::DUP3;
+ m_context << Instruction::MLOAD;
+ m_context << Instruction::DUP3;
copyArrayToStorage(dynamic_cast<ArrayType const&>(*targetBaseType), sourceBaseArrayType);
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
else if (directCopy)
{
solAssert(byteOffsetSize == 0, "Byte offset for direct copy.");
m_context
- << solidity::Instruction::DUP3 << solidity::Instruction::SLOAD
- << solidity::Instruction::DUP3 << solidity::Instruction::SSTORE;
+ << Instruction::DUP3 << Instruction::SLOAD
+ << Instruction::DUP3 << Instruction::SSTORE;
}
else
{
@@ -188,11 +188,11 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
// 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]
- m_context << solidity::dupInstruction(3 + byteOffsetSize);
+ m_context << dupInstruction(3 + byteOffsetSize);
if (_sourceType.location() == DataLocation::Storage)
{
if (haveByteOffsetSource)
- m_context << solidity::Instruction::DUP2;
+ m_context << Instruction::DUP2;
else
m_context << u256(0);
StorageItem(m_context, *sourceBaseType).retrieveValue(SourceLocation(), true);
@@ -207,9 +207,9 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
"Stack too deep, try removing local variables."
);
// fetch target storage reference
- m_context << solidity::dupInstruction(2 + byteOffsetSize + sourceBaseType->sizeOnStack());
+ m_context << dupInstruction(2 + byteOffsetSize + sourceBaseType->sizeOnStack());
if (haveByteOffsetTarget)
- m_context << solidity::dupInstruction(1 + byteOffsetSize + sourceBaseType->sizeOnStack());
+ m_context << dupInstruction(1 + byteOffsetSize + sourceBaseType->sizeOnStack());
else
m_context << u256(0);
StorageItem(m_context, *targetBaseType).storeValue(*sourceBaseType, SourceLocation(), true);
@@ -220,7 +220,7 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
incrementByteOffset(sourceBaseType->storageBytes(), 1, haveByteOffsetTarget ? 5 : 4);
else
{
- m_context << solidity::swapInstruction(2 + byteOffsetSize);
+ m_context << swapInstruction(2 + byteOffsetSize);
if (sourceIsStorage)
m_context << sourceBaseType->storageSize();
else if (_sourceType.location() == DataLocation::Memory)
@@ -228,44 +228,44 @@ void ArrayUtils::copyArrayToStorage(ArrayType const& _targetType, ArrayType cons
else
m_context << sourceBaseType->calldataEncodedSize(true);
m_context
- << solidity::Instruction::ADD
- << solidity::swapInstruction(2 + byteOffsetSize);
+ << Instruction::ADD
+ << swapInstruction(2 + byteOffsetSize);
}
// increment target
if (haveByteOffsetTarget)
incrementByteOffset(targetBaseType->storageBytes(), byteOffsetSize, byteOffsetSize + 2);
else
m_context
- << solidity::swapInstruction(1 + byteOffsetSize)
+ << swapInstruction(1 + byteOffsetSize)
<< targetBaseType->storageSize()
- << solidity::Instruction::ADD
- << solidity::swapInstruction(1 + byteOffsetSize);
+ << Instruction::ADD
+ << swapInstruction(1 + byteOffsetSize);
m_context.appendJumpTo(copyLoopStart);
m_context << copyLoopEnd;
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]
- m_context << solidity::dupInstruction(byteOffsetSize) << solidity::Instruction::ISZERO;
+ m_context << dupInstruction(byteOffsetSize) << Instruction::ISZERO;
eth::AssemblyItem copyCleanupLoopEnd = m_context.appendConditionalJump();
- m_context << solidity::dupInstruction(2 + byteOffsetSize) << solidity::dupInstruction(1 + byteOffsetSize);
+ m_context << dupInstruction(2 + byteOffsetSize) << dupInstruction(1 + byteOffsetSize);
StorageItem(m_context, *targetBaseType).setToZero(SourceLocation(), true);
incrementByteOffset(targetBaseType->storageBytes(), byteOffsetSize, byteOffsetSize + 2);
m_context.appendJumpTo(copyLoopEnd);
m_context << copyCleanupLoopEnd;
- m_context << solidity::Instruction::POP; // might pop the source, but then target is popped next
+ m_context << Instruction::POP; // might pop the source, but then target is popped next
}
if (haveByteOffsetSource)
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
m_context << copyLoopEndWithoutByteOffset;
// zero-out leftovers in target
// stack: target_ref target_data_end source_data_pos target_data_pos_updated source_data_end
- m_context << solidity::Instruction::POP << solidity::Instruction::SWAP1 << solidity::Instruction::POP;
+ m_context << Instruction::POP << Instruction::SWAP1 << Instruction::POP;
// stack: target_ref target_data_end target_data_pos_updated
clearStorageLoop(*targetBaseType);
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWordBoundaries) const
@@ -285,13 +285,13 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
if (!_sourceType.isDynamicallySized())
m_context << _sourceType.length();
if (baseSize > 1)
- m_context << u256(baseSize) << solidity::Instruction::MUL;
+ m_context << u256(baseSize) << Instruction::MUL;
// stack: target source_offset source_len
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::DUP3 << solidity::Instruction::DUP5;
+ m_context << Instruction::DUP1 << Instruction::DUP3 << Instruction::DUP5;
// stack: target source_offset source_len source_len source_offset target
- m_context << solidity::Instruction::CALLDATACOPY;
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP2 << solidity::Instruction::POP << solidity::Instruction::POP;
+ m_context << Instruction::CALLDATACOPY;
+ m_context << Instruction::DUP3 << Instruction::ADD;
+ m_context << Instruction::SWAP2 << Instruction::POP << Instruction::POP;
}
else if (_sourceType.location() == DataLocation::Memory)
{
@@ -300,25 +300,25 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
if (!_sourceType.baseType()->isValueType())
{
// copy using a loop
- m_context << u256(0) << solidity::Instruction::SWAP3;
+ m_context << u256(0) << Instruction::SWAP3;
// stack: counter source length target
auto repeat = m_context.newTag();
m_context << repeat;
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::DUP5;
- m_context << solidity::Instruction::LT << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP2 << Instruction::DUP5;
+ m_context << Instruction::LT << Instruction::ISZERO;
auto loopEnd = m_context.appendConditionalJump();
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::DUP5;
+ m_context << Instruction::DUP3 << Instruction::DUP5;
accessIndex(_sourceType, false);
MemoryItem(m_context, *_sourceType.baseType(), true).retrieveValue(SourceLocation(), true);
if (auto baseArray = dynamic_cast<ArrayType const*>(_sourceType.baseType().get()))
copyArrayToMemory(*baseArray, _padToWordBoundaries);
else
utils.storeInMemoryDynamic(*_sourceType.baseType());
- m_context << solidity::Instruction::SWAP3 << u256(1) << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP3;
+ m_context << Instruction::SWAP3 << u256(1) << Instruction::ADD;
+ m_context << Instruction::SWAP3;
m_context.appendJumpTo(repeat);
m_context << loopEnd;
- m_context << solidity::Instruction::SWAP3;
+ m_context << Instruction::SWAP3;
utils.popStackSlots(3);
// stack: updated_target_pos
return;
@@ -328,18 +328,18 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
if (_sourceType.isDynamicallySized())
{
// change pointer to data part
- m_context << solidity::Instruction::SWAP1 << u256(32) << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1 << u256(32) << Instruction::ADD;
+ m_context << Instruction::SWAP1;
}
// convert length to size
if (baseSize > 1)
- m_context << u256(baseSize) << solidity::Instruction::MUL;
+ m_context << u256(baseSize) << Instruction::MUL;
// stack: <target> <source> <size>
//@TODO do not use ::CALL if less than 32 bytes?
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::DUP4 << solidity::Instruction::DUP4;
+ m_context << Instruction::DUP1 << Instruction::DUP4 << Instruction::DUP4;
utils.memoryCopy();
- m_context << solidity::Instruction::SWAP1 << solidity::Instruction::POP;
+ m_context << Instruction::SWAP1 << Instruction::POP;
// stack: <target> <size>
bool paddingNeeded = false;
@@ -350,43 +350,43 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
if (paddingNeeded)
{
// stack: <target> <size>
- m_context << solidity::Instruction::SWAP1 << solidity::Instruction::DUP2 << solidity::Instruction::ADD;
+ m_context << Instruction::SWAP1 << Instruction::DUP2 << Instruction::ADD;
// stack: <length> <target + size>
- m_context << solidity::Instruction::SWAP1 << u256(31) << solidity::Instruction::AND;
+ m_context << Instruction::SWAP1 << u256(31) << Instruction::AND;
// stack: <target + size> <remainder = size % 32>
eth::AssemblyItem skip = m_context.newTag();
if (_sourceType.isDynamicallySized())
{
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP1 << Instruction::ISZERO;
m_context.appendConditionalJumpTo(skip);
}
// round off, load from there.
// stack <target + size> <remainder = size % 32>
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::DUP3;
- m_context << solidity::Instruction::SUB;
+ m_context << Instruction::DUP1 << Instruction::DUP3;
+ m_context << Instruction::SUB;
// stack: target+size remainder <target + size - remainder>
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::MLOAD;
+ m_context << Instruction::DUP1 << Instruction::MLOAD;
// Now we AND it with ~(2**(8 * (32 - remainder)) - 1)
m_context << u256(1);
- m_context << solidity::Instruction::DUP4 << u256(32) << solidity::Instruction::SUB;
+ m_context << Instruction::DUP4 << u256(32) << Instruction::SUB;
// stack: ...<v> 1 <32 - remainder>
- m_context << u256(0x100) << solidity::Instruction::EXP << solidity::Instruction::SUB;
- m_context << solidity::Instruction::NOT << solidity::Instruction::AND;
+ m_context << u256(0x100) << Instruction::EXP << Instruction::SUB;
+ m_context << Instruction::NOT << Instruction::AND;
// stack: target+size remainder target+size-remainder <v & ...>
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::MSTORE;
+ m_context << Instruction::DUP2 << Instruction::MSTORE;
// stack: target+size remainder target+size-remainder
- m_context << u256(32) << solidity::Instruction::ADD;
+ m_context << u256(32) << Instruction::ADD;
// stack: target+size remainder <new_padded_end>
- m_context << solidity::Instruction::SWAP2 << solidity::Instruction::POP;
+ m_context << Instruction::SWAP2 << Instruction::POP;
if (_sourceType.isDynamicallySized())
m_context << skip.tag();
// stack <target + "size"> <remainder = size % 32>
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
else
// stack: <target> <size>
- m_context << solidity::Instruction::ADD;
+ m_context << Instruction::ADD;
}
else
{
@@ -398,48 +398,48 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
retrieveLength(_sourceType);
// stack here: memory_offset storage_offset length
// jump to end if length is zero
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP1 << Instruction::ISZERO;
eth::AssemblyItem loopEnd = m_context.appendConditionalJump();
// Special case for tightly-stored byte arrays
if (_sourceType.isByteArray())
{
// stack here: memory_offset storage_offset length
- m_context << solidity::Instruction::DUP1 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP1 << u256(31) << Instruction::LT;
eth::AssemblyItem longByteArray = m_context.appendConditionalJump();
// store the short byte array (discard lower-order byte)
- m_context << u256(0x100) << solidity::Instruction::DUP1;
- m_context << solidity::Instruction::DUP4 << solidity::Instruction::SLOAD;
- m_context << solidity::Instruction::DIV << solidity::Instruction::MUL;
- m_context << solidity::Instruction::DUP4 << solidity::Instruction::MSTORE;
+ m_context << u256(0x100) << Instruction::DUP1;
+ m_context << Instruction::DUP4 << Instruction::SLOAD;
+ m_context << Instruction::DIV << Instruction::MUL;
+ m_context << Instruction::DUP4 << Instruction::MSTORE;
// stack here: memory_offset storage_offset length
// add 32 or length to memory offset
- m_context << solidity::Instruction::SWAP2;
+ m_context << Instruction::SWAP2;
if (_padToWordBoundaries)
m_context << u256(32);
else
- m_context << solidity::Instruction::DUP3;
- m_context << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP2;
+ m_context << Instruction::DUP3;
+ m_context << Instruction::ADD;
+ m_context << Instruction::SWAP2;
m_context.appendJumpTo(loopEnd);
m_context << longByteArray;
}
// compute memory end offset
if (baseSize > 1)
// convert length to memory size
- m_context << u256(baseSize) << solidity::Instruction::MUL;
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::ADD << solidity::Instruction::SWAP2;
+ m_context << u256(baseSize) << Instruction::MUL;
+ m_context << Instruction::DUP3 << Instruction::ADD << Instruction::SWAP2;
if (_sourceType.isDynamicallySized())
{
// actual array data is stored at SHA3(storage_offset)
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
utils.computeHashStatic();
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
}
// stack here: memory_end_offset storage_data_offset memory_offset
bool haveByteOffset = !_sourceType.isByteArray() && storageBytes <= 16;
if (haveByteOffset)
- m_context << u256(0) << solidity::Instruction::SWAP1;
+ m_context << u256(0) << Instruction::SWAP1;
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
eth::AssemblyItem loopStart = m_context.newTag();
m_context << loopStart;
@@ -447,20 +447,20 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
if (_sourceType.isByteArray())
{
// Packed both in storage and memory.
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::SLOAD;
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::MSTORE;
+ m_context << Instruction::DUP2 << Instruction::SLOAD;
+ m_context << Instruction::DUP2 << Instruction::MSTORE;
// increment storage_data_offset by 1
- m_context << solidity::Instruction::SWAP1 << u256(1) << solidity::Instruction::ADD;
+ m_context << Instruction::SWAP1 << u256(1) << Instruction::ADD;
// increment memory offset by 32
- m_context << solidity::Instruction::SWAP1 << u256(32) << solidity::Instruction::ADD;
+ m_context << Instruction::SWAP1 << u256(32) << Instruction::ADD;
}
else
{
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
if (haveByteOffset)
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::DUP3;
+ m_context << Instruction::DUP3 << Instruction::DUP3;
else
- m_context << solidity::Instruction::DUP2 << u256(0);
+ m_context << Instruction::DUP2 << u256(0);
StorageItem(m_context, *_sourceType.baseType()).retrieveValue(SourceLocation(), true);
if (auto baseArray = dynamic_cast<ArrayType const*>(_sourceType.baseType().get()))
copyArrayToMemory(*baseArray, _padToWordBoundaries);
@@ -471,29 +471,29 @@ void ArrayUtils::copyArrayToMemory(ArrayType const& _sourceType, bool _padToWord
incrementByteOffset(storageBytes, 2, 3);
else
{
- m_context << solidity::Instruction::SWAP1;
- m_context << storageSize << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
+ m_context << storageSize << Instruction::ADD;
+ m_context << Instruction::SWAP1;
}
}
// check for loop condition
- m_context << solidity::Instruction::DUP1 << solidity::dupInstruction(haveByteOffset ? 5 : 4);
- m_context << solidity::Instruction::GT;
+ m_context << Instruction::DUP1 << dupInstruction(haveByteOffset ? 5 : 4);
+ m_context << Instruction::GT;
m_context.appendConditionalJumpTo(loopStart);
// stack here: memory_end_offset storage_data_offset [storage_byte_offset] memory_offset
if (haveByteOffset)
- m_context << solidity::Instruction::SWAP1 << solidity::Instruction::POP;
+ m_context << Instruction::SWAP1 << Instruction::POP;
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
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::SWAP1 << solidity::Instruction::SUB;
- m_context << u256(31) << solidity::Instruction::AND;
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::ADD;
- m_context << solidity::Instruction::SWAP2;
+ m_context << Instruction::DUP3 << Instruction::SWAP1 << Instruction::SUB;
+ m_context << u256(31) << Instruction::AND;
+ m_context << Instruction::DUP3 << Instruction::ADD;
+ m_context << Instruction::SWAP2;
}
- m_context << loopEnd << solidity::Instruction::POP << solidity::Instruction::POP;
+ m_context << loopEnd << Instruction::POP << Instruction::POP;
}
}
@@ -509,20 +509,20 @@ void ArrayUtils::clearArray(ArrayType const& _type) const
if (_type.baseType()->isValueType())
solAssert(_type.baseType()->storageSize() <= 1, "Invalid size for value type.");
- m_context << solidity::Instruction::POP; // remove byte offset
+ m_context << Instruction::POP; // remove byte offset
if (_type.isDynamicallySized())
clearDynamicArray(_type);
else if (_type.length() == 0 || _type.baseType()->category() == Type::Category::Mapping)
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
else if (_type.baseType()->isValueType() && _type.storageSize() <= 5)
{
// unroll loop for small arrays @todo choose a good value
// Note that we loop over storage slots here, not elements.
for (unsigned i = 1; i < _type.storageSize(); ++i)
m_context
- << u256(0) << solidity::Instruction::DUP2 << solidity::Instruction::SSTORE
- << u256(1) << solidity::Instruction::ADD;
- m_context << u256(0) << solidity::Instruction::SWAP1 << solidity::Instruction::SSTORE;
+ << u256(0) << Instruction::DUP2 << Instruction::SSTORE
+ << u256(1) << Instruction::ADD;
+ m_context << u256(0) << Instruction::SWAP1 << Instruction::SSTORE;
}
else if (!_type.baseType()->isValueType() && _type.length() <= 4)
{
@@ -533,22 +533,22 @@ void ArrayUtils::clearArray(ArrayType const& _type) const
m_context << u256(0);
StorageItem(m_context, *_type.baseType()).setToZero(SourceLocation(), false);
m_context
- << solidity::Instruction::POP
- << u256(_type.baseType()->storageSize()) << solidity::Instruction::ADD;
+ << Instruction::POP
+ << u256(_type.baseType()->storageSize()) << Instruction::ADD;
}
m_context << u256(0);
StorageItem(m_context, *_type.baseType()).setToZero(SourceLocation(), true);
}
else
{
- m_context << solidity::Instruction::DUP1 << _type.length();
+ m_context << Instruction::DUP1 << _type.length();
convertLengthToSize(_type);
- m_context << solidity::Instruction::ADD << solidity::Instruction::SWAP1;
+ m_context << Instruction::ADD << Instruction::SWAP1;
if (_type.baseType()->storageBytes() < 32)
clearStorageLoop(IntegerType(256));
else
clearStorageLoop(*_type.baseType());
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
solAssert(m_context.stackHeight() == stackHeightStart - 2, "");
}
@@ -561,15 +561,15 @@ void ArrayUtils::clearDynamicArray(ArrayType const& _type) const
// fetch length
retrieveLength(_type);
// set length to zero
- m_context << u256(0) << solidity::Instruction::DUP3 << solidity::Instruction::SSTORE;
+ m_context << u256(0) << Instruction::DUP3 << Instruction::SSTORE;
// Special case: short byte arrays are stored togeher with their length
eth::AssemblyItem endTag = m_context.newTag();
if (_type.isByteArray())
{
// stack: ref old_length
- m_context << solidity::Instruction::DUP1 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP1 << u256(31) << Instruction::LT;
eth::AssemblyItem longByteArray = m_context.appendConditionalJump();
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
m_context.appendJumpTo(endTag);
m_context.adjustStackOffset(1); // needed because of jump
m_context << longByteArray;
@@ -577,11 +577,11 @@ void ArrayUtils::clearDynamicArray(ArrayType const& _type) const
// stack: ref old_length
convertLengthToSize(_type);
// compute data positions
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
CompilerUtils(m_context).computeHashStatic();
// stack: len data_pos
- m_context << solidity::Instruction::SWAP1 << solidity::Instruction::DUP2 << solidity::Instruction::ADD
- << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1 << Instruction::DUP2 << Instruction::ADD
+ << Instruction::SWAP1;
// stack: data_pos_end data_pos
if (_type.isByteArray() || _type.baseType()->storageBytes() < 32)
clearStorageLoop(IntegerType(256));
@@ -589,7 +589,7 @@ void ArrayUtils::clearDynamicArray(ArrayType const& _type) const
clearStorageLoop(*_type.baseType());
// cleanup
m_context << endTag;
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
@@ -614,13 +614,13 @@ void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
eth::AssemblyItem regularPath = m_context.newTag();
// We start by a large case-distinction about the old and new length of the byte array.
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::SLOAD;
+ m_context << Instruction::DUP3 << Instruction::SLOAD;
// stack: ref new_length current_length ref_value
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
- m_context << solidity::Instruction::DUP2 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP2 << u256(31) << Instruction::LT;
eth::AssemblyItem currentIsLong = m_context.appendConditionalJump();
- m_context << solidity::Instruction::DUP3 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
eth::AssemblyItem newIsLong = m_context.appendConditionalJump();
// Here: short -> short
@@ -628,17 +628,17 @@ void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
// Compute 1 << (256 - 8 * new_size)
eth::AssemblyItem shortToShort = m_context.newTag();
m_context << shortToShort;
- m_context << solidity::Instruction::DUP3 << u256(8) << solidity::Instruction::MUL;
- m_context << u256(0x100) << solidity::Instruction::SUB;
- m_context << u256(2) << solidity::Instruction::EXP;
+ m_context << Instruction::DUP3 << u256(8) << Instruction::MUL;
+ m_context << u256(0x100) << Instruction::SUB;
+ m_context << u256(2) << Instruction::EXP;
// Divide and multiply by that value, clearing bits.
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::SWAP2;
- m_context << solidity::Instruction::DIV << solidity::Instruction::MUL;
+ m_context << Instruction::DUP1 << Instruction::SWAP2;
+ m_context << Instruction::DIV << Instruction::MUL;
// Insert 2*length.
- m_context << solidity::Instruction::DUP3 << solidity::Instruction::DUP1 << solidity::Instruction::ADD;
- m_context << solidity::Instruction::OR;
+ m_context << Instruction::DUP3 << Instruction::DUP1 << Instruction::ADD;
+ m_context << Instruction::OR;
// Store.
- m_context << solidity::Instruction::DUP4 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP4 << Instruction::SSTORE;
solAssert(m_context.stackHeight() - stackHeightStart == 3 - 2, "3");
m_context.appendJumpTo(resizeEnd);
@@ -649,24 +649,24 @@ void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
// stack: ref new_length current_length ref_value
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
// Zero out lower-order byte.
- m_context << u256(0xff) << solidity::Instruction::NOT << solidity::Instruction::AND;
+ m_context << u256(0xff) << Instruction::NOT << Instruction::AND;
// Store at data location.
- m_context << solidity::Instruction::DUP4;
+ m_context << Instruction::DUP4;
CompilerUtils(m_context).computeHashStatic();
- m_context << solidity::Instruction::SSTORE;
+ m_context << Instruction::SSTORE;
// stack: ref new_length current_length
// Store new length: Compule 2*length + 1 and store it.
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::DUP1 << solidity::Instruction::ADD;
- m_context << u256(1) << solidity::Instruction::ADD;
+ m_context << Instruction::DUP2 << Instruction::DUP1 << Instruction::ADD;
+ m_context << u256(1) << Instruction::ADD;
// stack: ref new_length current_length 2*new_length+1
- m_context << solidity::Instruction::DUP4 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP4 << Instruction::SSTORE;
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;
- m_context << solidity::Instruction::DUP3 << u256(31) << solidity::Instruction::LT;
+ m_context << Instruction::DUP3 << u256(31) << Instruction::LT;
m_context.appendConditionalJumpTo(regularPath);
// Here: long -> short
@@ -675,51 +675,51 @@ void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
// stack: ref new_length current_length ref_value
solAssert(m_context.stackHeight() - stackHeightStart == 4 - 2, "3");
- m_context << solidity::Instruction::POP << solidity::Instruction::DUP3;
+ m_context << Instruction::POP << Instruction::DUP3;
CompilerUtils(m_context).computeHashStatic();
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::SLOAD << solidity::Instruction::SWAP1;
+ m_context << Instruction::DUP1 << Instruction::SLOAD << Instruction::SWAP1;
// stack: ref new_length current_length first_word data_location
- m_context << solidity::Instruction::DUP3;
+ m_context << Instruction::DUP3;
convertLengthToSize(_type);
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::ADD << solidity::Instruction::SWAP1;
+ m_context << Instruction::DUP2 << Instruction::ADD << Instruction::SWAP1;
// stack: ref new_length current_length first_word data_location_end data_location
clearStorageLoop(IntegerType(256));
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
// 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
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
}
// Change of length for a regular array (i.e. length at location, data at sha3(location)).
// stack: ref new_length old_length
// store new length
- m_context << solidity::Instruction::DUP2;
+ m_context << Instruction::DUP2;
if (_type.isByteArray())
// For a "long" byte array, store length as 2*length+1
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::ADD << u256(1) << solidity::Instruction::ADD;
- m_context<< solidity::Instruction::DUP4 << solidity::Instruction::SSTORE;
+ m_context << Instruction::DUP1 << Instruction::ADD << u256(1) << Instruction::ADD;
+ m_context<< Instruction::DUP4 << Instruction::SSTORE;
// skip if size is not reduced
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::DUP2
- << solidity::Instruction::ISZERO << solidity::Instruction::GT;
+ m_context << Instruction::DUP2 << Instruction::DUP2
+ << Instruction::ISZERO << Instruction::GT;
m_context.appendConditionalJumpTo(resizeEnd);
// size reduced, clear the end of the array
// stack: ref new_length old_length
convertLengthToSize(_type);
- m_context << solidity::Instruction::DUP2;
+ m_context << Instruction::DUP2;
convertLengthToSize(_type);
// stack: ref new_length old_size new_size
// compute data positions
- m_context << solidity::Instruction::DUP4;
+ m_context << Instruction::DUP4;
CompilerUtils(m_context).computeHashStatic();
// stack: ref new_length old_size new_size data_pos
- m_context << solidity::Instruction::SWAP2 << solidity::Instruction::DUP3 << solidity::Instruction::ADD;
+ m_context << Instruction::SWAP2 << Instruction::DUP3 << Instruction::ADD;
// stack: ref new_length data_pos new_size delete_end
- m_context << solidity::Instruction::SWAP2 << solidity::Instruction::ADD;
+ m_context << Instruction::SWAP2 << Instruction::ADD;
// stack: ref new_length delete_end delete_start
if (_type.isByteArray() || _type.baseType()->storageBytes() < 32)
clearStorageLoop(IntegerType(256));
@@ -728,7 +728,7 @@ void ArrayUtils::resizeDynamicArray(ArrayType const& _type) const
m_context << resizeEnd;
// cleanup
- m_context << solidity::Instruction::POP << solidity::Instruction::POP << solidity::Instruction::POP;
+ m_context << Instruction::POP << Instruction::POP << Instruction::POP;
solAssert(m_context.stackHeight() == stackHeightStart - 2, "");
}
@@ -737,35 +737,35 @@ void ArrayUtils::clearStorageLoop(Type const& _type) const
unsigned stackHeightStart = m_context.stackHeight();
if (_type.category() == Type::Category::Mapping)
{
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
return;
}
// stack: end_pos pos
// jump to and return from the loop to allow for duplicate code removal
eth::AssemblyItem returnTag = m_context.pushNewTag();
- m_context << solidity::Instruction::SWAP2 << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP2 << Instruction::SWAP1;
// stack: <return tag> end_pos pos
eth::AssemblyItem loopStart = m_context.appendJumpToNew();
m_context << loopStart;
// check for loop condition
- m_context << solidity::Instruction::DUP1 << solidity::Instruction::DUP3
- << solidity::Instruction::GT << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP1 << Instruction::DUP3
+ << Instruction::GT << Instruction::ISZERO;
eth::AssemblyItem zeroLoopEnd = m_context.newTag();
m_context.appendConditionalJumpTo(zeroLoopEnd);
// delete
m_context << u256(0);
StorageItem(m_context, _type).setToZero(SourceLocation(), false);
- m_context << solidity::Instruction::POP;
+ m_context << Instruction::POP;
// increment
- m_context << u256(1) << solidity::Instruction::ADD;
+ m_context << u256(1) << Instruction::ADD;
m_context.appendJumpTo(loopStart);
// cleanup
m_context << zeroLoopEnd;
- m_context << solidity::Instruction::POP << solidity::Instruction::SWAP1;
+ m_context << Instruction::POP << Instruction::SWAP1;
// "return"
- m_context << solidity::Instruction::JUMP;
+ m_context << Instruction::JUMP;
m_context << returnTag;
solAssert(m_context.stackHeight() == stackHeightStart - 1, "");
@@ -779,17 +779,17 @@ void ArrayUtils::convertLengthToSize(ArrayType const& _arrayType, bool _pad) con
{
unsigned baseBytes = _arrayType.baseType()->storageBytes();
if (baseBytes == 0)
- m_context << solidity::Instruction::POP << u256(1);
+ m_context << Instruction::POP << u256(1);
else if (baseBytes <= 16)
{
unsigned itemsPerSlot = 32 / baseBytes;
m_context
- << u256(itemsPerSlot - 1) << solidity::Instruction::ADD
- << u256(itemsPerSlot) << solidity::Instruction::SWAP1 << solidity::Instruction::DIV;
+ << u256(itemsPerSlot - 1) << Instruction::ADD
+ << u256(itemsPerSlot) << Instruction::SWAP1 << Instruction::DIV;
}
}
else
- m_context << _arrayType.baseType()->storageSize() << solidity::Instruction::MUL;
+ m_context << _arrayType.baseType()->storageSize() << Instruction::MUL;
}
else
{
@@ -799,12 +799,12 @@ void ArrayUtils::convertLengthToSize(ArrayType const& _arrayType, bool _pad) con
m_context << _arrayType.baseType()->memoryHeadSize();
else
m_context << _arrayType.baseType()->calldataEncodedSize();
- m_context << solidity::Instruction::MUL;
+ m_context << Instruction::MUL;
}
else if (_pad)
- m_context << u256(31) << solidity::Instruction::ADD
- << u256(32) << solidity::Instruction::DUP1
- << solidity::Instruction::SWAP2 << solidity::Instruction::DIV << solidity::Instruction::MUL;
+ m_context << u256(31) << Instruction::ADD
+ << u256(32) << Instruction::DUP1
+ << Instruction::SWAP2 << Instruction::DIV << Instruction::MUL;
}
}
@@ -814,27 +814,27 @@ void ArrayUtils::retrieveLength(ArrayType const& _arrayType, unsigned _stackDept
m_context << _arrayType.length();
else
{
- m_context << solidity::dupInstruction(1 + _stackDepth);
+ m_context << dupInstruction(1 + _stackDepth);
switch (_arrayType.location())
{
case DataLocation::CallData:
// length is stored on the stack
break;
case DataLocation::Memory:
- m_context << solidity::Instruction::MLOAD;
+ m_context << Instruction::MLOAD;
break;
case DataLocation::Storage:
- m_context << solidity::Instruction::SLOAD;
+ m_context << Instruction::SLOAD;
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.
- m_context << u256(1) << solidity::Instruction::DUP2 << u256(1) << solidity::Instruction::AND;
- m_context << solidity::Instruction::ISZERO << u256(0x100) << solidity::Instruction::MUL;
- m_context << solidity::Instruction::SUB << solidity::Instruction::AND;
- m_context << u256(2) << solidity::Instruction::SWAP1 << solidity::Instruction::DIV;
+ 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;
}
break;
}
@@ -852,34 +852,34 @@ void ArrayUtils::accessIndex(ArrayType const& _arrayType, bool _doBoundsCheck) c
ArrayUtils::retrieveLength(_arrayType, 1);
// Stack: ref [length] index length
// check out-of-bounds access
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::LT << solidity::Instruction::ISZERO;
+ m_context << Instruction::DUP2 << Instruction::LT << Instruction::ISZERO;
// out-of-bounds access throws exception
m_context.appendConditionalJumpTo(m_context.errorTag());
}
if (location == DataLocation::CallData && _arrayType.isDynamicallySized())
// remove length if present
- m_context << solidity::Instruction::SWAP1 << solidity::Instruction::POP;
+ m_context << Instruction::SWAP1 << Instruction::POP;
// stack: <base_ref> <index>
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
// stack: <index> <base_ref>
switch (location)
{
case DataLocation::Memory:
if (_arrayType.isDynamicallySized())
- m_context << u256(32) << solidity::Instruction::ADD;
+ m_context << u256(32) << Instruction::ADD;
// fall-through
case DataLocation::CallData:
if (!_arrayType.isByteArray())
{
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
if (location == DataLocation::CallData)
m_context << _arrayType.baseType()->calldataEncodedSize();
else
m_context << u256(_arrayType.memoryHeadSize());
- m_context << solidity::Instruction::MUL;
+ m_context << Instruction::MUL;
}
- m_context << solidity::Instruction::ADD;
+ m_context << Instruction::ADD;
break;
case DataLocation::Storage:
{
@@ -887,16 +887,16 @@ void ArrayUtils::accessIndex(ArrayType const& _arrayType, bool _doBoundsCheck) c
if (_arrayType.isByteArray())
{
// Special case of short byte arrays.
- m_context << solidity::Instruction::SWAP1;
- m_context << solidity::Instruction::DUP2 << solidity::Instruction::SLOAD;
- m_context << u256(1) << solidity::Instruction::AND << solidity::Instruction::ISZERO;
+ m_context << Instruction::SWAP1;
+ m_context << Instruction::DUP2 << Instruction::SLOAD;
+ m_context << u256(1) << Instruction::AND << Instruction::ISZERO;
// No action needed for short byte arrays.
m_context.appendConditionalJumpTo(endTag);
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
}
if (_arrayType.isDynamicallySized())
CompilerUtils(m_context).computeHashStatic();
- m_context << solidity::Instruction::SWAP1;
+ m_context << Instruction::SWAP1;
if (_arrayType.baseType()->storageBytes() <= 16)
{
// stack: <data_ref> <index>
@@ -905,22 +905,22 @@ void ArrayUtils::accessIndex(ArrayType const& _arrayType, bool _doBoundsCheck) c
unsigned byteSize = _arrayType.baseType()->storageBytes();
solAssert(byteSize != 0, "");
unsigned itemsPerSlot = 32 / byteSize;
- m_context << u256(itemsPerSlot) << solidity::Instruction::SWAP2;
+ m_context << u256(itemsPerSlot) << Instruction::SWAP2;
// stack: itemsPerSlot index data_ref
m_context
- << solidity::Instruction::DUP3 << solidity::Instruction::DUP3
- << solidity::Instruction::DIV << solidity::Instruction::ADD
+ << Instruction::DUP3 << Instruction::DUP3
+ << Instruction::DIV << Instruction::ADD
// stack: itemsPerSlot index (data_ref + index / itemsPerSlot)
- << solidity::Instruction::SWAP2 << solidity::Instruction::SWAP1
- << solidity::Instruction::MOD;
+ << Instruction::SWAP2 << Instruction::SWAP1
+ << Instruction::MOD;
if (byteSize != 1)
- m_context << u256(byteSize) << solidity::Instruction::MUL;
+ m_context << u256(byteSize) << Instruction::MUL;
}
else
{
if (_arrayType.baseType()->storageSize() != 1)
- m_context << _arrayType.baseType()->storageSize() << solidity::Instruction::MUL;
- m_context << solidity::Instruction::ADD << u256(0);
+ m_context << _arrayType.baseType()->storageSize() << Instruction::MUL;
+ m_context << Instruction::ADD << u256(0);
}
m_context << endTag;
break;
@@ -942,27 +942,27 @@ void ArrayUtils::incrementByteOffset(unsigned _byteSize, unsigned _byteOffsetPos
// byteOffset = 0;
// }
if (_byteOffsetPosition > 1)
- m_context << solidity::swapInstruction(_byteOffsetPosition - 1);
- m_context << u256(_byteSize) << solidity::Instruction::ADD;
+ m_context << swapInstruction(_byteOffsetPosition - 1);
+ m_context << u256(_byteSize) << Instruction::ADD;
if (_byteOffsetPosition > 1)
- m_context << solidity::swapInstruction(_byteOffsetPosition - 1);
+ m_context << swapInstruction(_byteOffsetPosition - 1);
// compute, X := (byteOffset + byteSize - 1) / 32, should be 1 iff byteOffset + bytesize > 32
m_context
- << u256(32) << solidity::dupInstruction(1 + _byteOffsetPosition) << u256(_byteSize - 1)
- << solidity::Instruction::ADD << solidity::Instruction::DIV;
+ << u256(32) << dupInstruction(1 + _byteOffsetPosition) << u256(_byteSize - 1)
+ << Instruction::ADD << Instruction::DIV;
// increment storage offset if X == 1 (just add X to it)
// stack: X
m_context
- << solidity::swapInstruction(_storageOffsetPosition) << solidity::dupInstruction(_storageOffsetPosition + 1)
- << solidity::Instruction::ADD << solidity::swapInstruction(_storageOffsetPosition);
+ << swapInstruction(_storageOffsetPosition) << dupInstruction(_storageOffsetPosition + 1)
+ << Instruction::ADD << swapInstruction(_storageOffsetPosition);
// stack: X
// set source_byte_offset to zero if X == 1 (using source_byte_offset *= 1 - X)
- m_context << u256(1) << solidity::Instruction::SUB;
+ m_context << u256(1) << Instruction::SUB;
// stack: 1 - X
if (_byteOffsetPosition == 1)
- m_context << solidity::Instruction::MUL;
+ m_context << Instruction::MUL;
else
m_context
- << solidity::dupInstruction(_byteOffsetPosition + 1) << solidity::Instruction::MUL
- << solidity::swapInstruction(_byteOffsetPosition) << solidity::Instruction::POP;
+ << dupInstruction(_byteOffsetPosition + 1) << Instruction::MUL
+ << swapInstruction(_byteOffsetPosition) << Instruction::POP;
}