aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerUtils.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-11 21:32:46 +0800
committerChristian <c@ethdev.com>2015-02-12 18:33:10 +0800
commit9b8cf4af1db58f3b38ca3172faf53dc5deab84ce (patch)
tree92b63ed6a3993e6ce7277db71c077bba199981f8 /CompilerUtils.cpp
parent8a2879a603b256dbff9c4592943c48e68fba1aea (diff)
downloaddexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.tar.gz
dexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.tar.zst
dexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.zip
Moved copy code to CompilerUtils.
Diffstat (limited to 'CompilerUtils.cpp')
-rw-r--r--CompilerUtils.cpp213
1 files changed, 208 insertions, 5 deletions
diff --git a/CompilerUtils.cpp b/CompilerUtils.cpp
index c38149c1..192d66d5 100644
--- a/CompilerUtils.cpp
+++ b/CompilerUtils.cpp
@@ -64,6 +64,7 @@ unsigned CompilerUtils::loadFromMemory(unsigned _offset, unsigned _bytes, bool _
unsigned CompilerUtils::storeInMemory(unsigned _offset, Type const& _type, bool _padToWordBoundaries)
{
+ solAssert(_type.getCategory() != Type::Category::ByteArray, "Unable to statically store dynamic type.");
unsigned numBytes = prepareMemoryStore(_type, _padToWordBoundaries);
if (numBytes > 0)
m_context << u256(_offset) << eth::Instruction::MSTORE;
@@ -72,11 +73,47 @@ unsigned CompilerUtils::storeInMemory(unsigned _offset, Type const& _type, bool
void CompilerUtils::storeInMemoryDynamic(Type const& _type, bool _padToWordBoundaries)
{
- unsigned numBytes = prepareMemoryStore(_type, _padToWordBoundaries);
- if (numBytes > 0)
+ if (_type.getCategory() == Type::Category::ByteArray)
{
- m_context << eth::Instruction::DUP2 << eth::Instruction::MSTORE;
- m_context << u256(numBytes) << eth::Instruction::ADD;
+ auto const& type = dynamic_cast<ByteArrayType const&>(_type);
+ solAssert(type.getLocation() == ByteArrayType::Location::Storage, "Non-storage byte arrays not yet implemented.");
+
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
+ // stack here: memory_offset storage_offset length_bytes
+ // jump to end if length is zero
+ m_context << eth::Instruction::DUP1 << eth::Instruction::ISZERO;
+ eth::AssemblyItem loopEnd = m_context.newTag();
+ m_context.appendConditionalJumpTo(loopEnd);
+ // compute memory end offset
+ m_context << eth::Instruction::DUP3 << eth::Instruction::ADD << eth::Instruction::SWAP2;
+ // actual array data is stored at SHA3(storage_offset)
+ m_context << eth::Instruction::SWAP1;
+ CompilerUtils(m_context).computeHashStatic();
+ m_context << eth::Instruction::SWAP1;
+
+ // stack here: memory_end_offset storage_data_offset memory_offset
+ eth::AssemblyItem loopStart = m_context.newTag();
+ m_context << loopStart
+ // load and store
+ << eth::Instruction::DUP2 << eth::Instruction::SLOAD
+ << eth::Instruction::DUP2 << eth::Instruction::MSTORE
+ // increment storage_data_offset by 1
+ << eth::Instruction::SWAP1 << u256(1) << eth::Instruction::ADD
+ // increment memory offset by 32
+ << eth::Instruction::SWAP1 << u256(32) << eth::Instruction::ADD
+ // check for loop condition
+ << eth::Instruction::DUP1 << eth::Instruction::DUP4 << eth::Instruction::GT;
+ m_context.appendConditionalJumpTo(loopStart);
+ m_context << loopEnd << eth::Instruction::POP << eth::Instruction::POP;
+ }
+ else
+ {
+ unsigned numBytes = prepareMemoryStore(_type, _padToWordBoundaries);
+ if (numBytes > 0)
+ {
+ m_context << eth::Instruction::DUP2 << eth::Instruction::MSTORE;
+ m_context << u256(numBytes) << eth::Instruction::ADD;
+ }
}
}
@@ -122,7 +159,153 @@ void CompilerUtils::computeHashStatic(Type const& _type, bool _padToWordBoundari
m_context << u256(length) << u256(0) << eth::Instruction::SHA3;
}
-unsigned CompilerUtils::prepareMemoryStore(Type const& _type, bool _padToWordBoundaries)
+void CompilerUtils::copyByteArrayToStorage(ByteArrayType const& _targetType,
+ ByteArrayType const& _sourceType) const
+{
+ // stack layout: [source_ref] target_ref (top)
+ // need to leave target_ref on the stack at the end
+ solAssert(_targetType.getLocation() == ByteArrayType::Location::Storage, "");
+
+ switch (_sourceType.getLocation())
+ {
+ case ByteArrayType::Location::CallData:
+ {
+ // @todo this does not take length into account. It also assumes that after "CALLDATALENGTH" we only have zeros.
+ // fetch old length and convert to words
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
+ m_context << u256(31) << eth::Instruction::ADD
+ << u256(32) << eth::Instruction::SWAP1 << eth::Instruction::DIV;
+ // stack here: target_ref target_length_words
+ // actual array data is stored at SHA3(storage_offset)
+ m_context << eth::Instruction::DUP2;
+ CompilerUtils(m_context).computeHashStatic();
+ // compute target_data_end
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SWAP2 << eth::Instruction::ADD
+ << eth::Instruction::SWAP1;
+ // stack here: target_ref target_data_end target_data_ref
+ // store length (in bytes)
+ if (_sourceType.getOffset() == 0)
+ m_context << eth::Instruction::CALLDATASIZE;
+ else
+ m_context << _sourceType.getOffset() << eth::Instruction::CALLDATASIZE << eth::Instruction::SUB;
+ m_context << eth::Instruction::DUP1 << eth::Instruction::DUP5 << eth::Instruction::SSTORE;
+ // jump to end if length is zero
+ m_context << eth::Instruction::ISZERO;
+ eth::AssemblyItem copyLoopEnd = m_context.newTag();
+ m_context.appendConditionalJumpTo(copyLoopEnd);
+
+ m_context << _sourceType.getOffset();
+ // stack now: target_ref target_data_end target_data_ref calldata_offset
+ eth::AssemblyItem copyLoopStart = m_context.newTag();
+ m_context << copyLoopStart
+ // copy from calldata and store
+ << eth::Instruction::DUP1 << eth::Instruction::CALLDATALOAD
+ << eth::Instruction::DUP3 << eth::Instruction::SSTORE
+ // increment target_data_ref by 1
+ << eth::Instruction::SWAP1 << u256(1) << eth::Instruction::ADD
+ // increment calldata_offset by 32
+ << eth::Instruction::SWAP1 << u256(32) << eth::Instruction::ADD
+ // check for loop condition
+ << eth::Instruction::DUP1 << eth::Instruction::CALLDATASIZE << eth::Instruction::GT;
+ m_context.appendConditionalJumpTo(copyLoopStart);
+ m_context << eth::Instruction::POP;
+ m_context << copyLoopEnd;
+
+ // now clear leftover bytes of the old value
+ // stack now: target_ref target_data_end target_data_ref
+ clearStorageLoop();
+
+ m_context << eth::Instruction::POP;
+ break;
+ }
+ case ByteArrayType::Location::Storage:
+ {
+ // this copies source to target and also clears target if it was larger
+
+ // stack: source_ref target_ref
+ // store target_ref
+ m_context << eth::Instruction::SWAP1 << eth::Instruction::DUP2;
+ // fetch lengthes
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD << eth::Instruction::SWAP2
+ << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
+ // stack: target_ref target_len_bytes target_ref source_ref source_len_bytes
+ // store new target length
+ m_context << eth::Instruction::DUP1 << eth::Instruction::DUP4 << eth::Instruction::SSTORE;
+ // compute hashes (data positions)
+ m_context << eth::Instruction::SWAP2;
+ CompilerUtils(m_context).computeHashStatic();
+ m_context << eth::Instruction::SWAP1;
+ CompilerUtils(m_context).computeHashStatic();
+ // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos
+ // convert lengthes from bytes to storage slots
+ m_context << u256(31) << u256(32) << eth::Instruction::DUP1 << eth::Instruction::DUP3
+ << eth::Instruction::DUP8 << eth::Instruction::ADD << eth::Instruction::DIV
+ << eth::Instruction::SWAP2
+ << eth::Instruction::DUP6 << eth::Instruction::ADD << eth::Instruction::DIV;
+ // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len
+ // @todo we might be able to go without a third counter
+ m_context << u256(0);
+ // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len counter
+ eth::AssemblyItem copyLoopStart = m_context.newTag();
+ m_context << copyLoopStart;
+ // check for loop condition
+ m_context << eth::Instruction::DUP1 << eth::Instruction::DUP3
+ << eth::Instruction::GT << eth::Instruction::ISZERO;
+ eth::AssemblyItem copyLoopEnd = m_context.newTag();
+ m_context.appendConditionalJumpTo(copyLoopEnd);
+ // copy
+ m_context << eth::Instruction::DUP4 << eth::Instruction::DUP2 << eth::Instruction::ADD
+ << eth::Instruction::SLOAD
+ << eth::Instruction::DUP6 << eth::Instruction::DUP3 << eth::Instruction::ADD
+ << eth::Instruction::SSTORE;
+ // increment
+ m_context << u256(1) << eth::Instruction::ADD;
+ m_context.appendJumpTo(copyLoopStart);
+ m_context << copyLoopEnd;
+
+ // zero-out leftovers in target
+ // stack: target_ref target_len_bytes source_len_bytes target_data_pos source_data_pos target_len source_len counter
+ // add counter to target_data_pos
+ m_context << eth::Instruction::DUP5 << eth::Instruction::ADD
+ << eth::Instruction::SWAP5 << eth::Instruction::POP;
+ // stack: target_ref target_len_bytes target_data_pos_updated target_data_pos source_data_pos target_len source_len
+ // add length to target_data_pos to get target_data_end
+ m_context << eth::Instruction::POP << eth::Instruction::DUP3 << eth::Instruction::ADD
+ << eth::Instruction::SWAP4
+ << eth::Instruction::POP << eth::Instruction::POP << eth::Instruction::POP;
+ // stack: target_ref target_data_end target_data_pos_updated
+ clearStorageLoop();
+ m_context << eth::Instruction::POP;
+ break;
+ }
+ default:
+ solAssert(false, "Given byte array location not implemented.");
+ }
+}
+
+void CompilerUtils::clearByteArray(ByteArrayType const& _type) const
+{
+ solAssert(_type.getLocation() == ByteArrayType::Location::Storage, "");
+
+ // fetch length
+ m_context << eth::Instruction::DUP1 << eth::Instruction::SLOAD;
+ // set length to zero
+ m_context << u256(0) << eth::Instruction::DUP3 << eth::Instruction::SSTORE;
+ // convert length from bytes to storage slots
+ m_context << u256(31) << eth::Instruction::ADD
+ << u256(32) << eth::Instruction::SWAP1 << eth::Instruction::DIV;
+ // compute data positions
+ m_context << eth::Instruction::SWAP1;
+ CompilerUtils(m_context).computeHashStatic();
+ // stack: len data_pos
+ m_context << eth::Instruction::SWAP1 << eth::Instruction::DUP2 << eth::Instruction::ADD
+ << eth::Instruction::SWAP1;
+ clearStorageLoop();
+ // cleanup
+ m_context << eth::Instruction::POP;
+}
+
+unsigned CompilerUtils::prepareMemoryStore(Type const& _type, bool _padToWordBoundaries) const
{
unsigned _encodedSize = _type.getCalldataEncodedSize();
unsigned numBytes = _padToWordBoundaries ? getPaddedSize(_encodedSize) : _encodedSize;
@@ -139,5 +322,25 @@ unsigned CompilerUtils::prepareMemoryStore(Type const& _type, bool _padToWordBou
return numBytes;
}
+void CompilerUtils::clearStorageLoop() const
+{
+ // stack: end_pos pos
+ eth::AssemblyItem loopStart = m_context.newTag();
+ m_context << loopStart;
+ // check for loop condition
+ m_context << eth::Instruction::DUP1 << eth::Instruction::DUP3
+ << eth::Instruction::GT << eth::Instruction::ISZERO;
+ eth::AssemblyItem zeroLoopEnd = m_context.newTag();
+ m_context.appendConditionalJumpTo(zeroLoopEnd);
+ // zero out
+ m_context << u256(0) << eth::Instruction::DUP2 << eth::Instruction::SSTORE;
+ // increment
+ m_context << u256(1) << eth::Instruction::ADD;
+ m_context.appendJumpTo(loopStart);
+ // cleanup
+ m_context << zeroLoopEnd;
+ m_context << eth::Instruction::POP;
+}
+
}
}