aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerUtils.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-15 08:02:38 +0800
committerChristian <c@ethdev.com>2015-02-17 02:25:27 +0800
commitd630a67812900036ba4aa7bfd47f07c7adddb247 (patch)
tree5796f5b5229fb6f9c4d66663cb53a29826ea6158 /CompilerUtils.cpp
parent1f6e3651362bdcdaa39773156875c36053d5f6be (diff)
downloaddexon-solidity-d630a67812900036ba4aa7bfd47f07c7adddb247.tar.gz
dexon-solidity-d630a67812900036ba4aa7bfd47f07c7adddb247.tar.zst
dexon-solidity-d630a67812900036ba4aa7bfd47f07c7adddb247.zip
loadFromMemoryDynamic
Diffstat (limited to 'CompilerUtils.cpp')
-rw-r--r--CompilerUtils.cpp63
1 files changed, 39 insertions, 24 deletions
diff --git a/CompilerUtils.cpp b/CompilerUtils.cpp
index 6f99dc7c..0a95c3ad 100644
--- a/CompilerUtils.cpp
+++ b/CompilerUtils.cpp
@@ -37,32 +37,22 @@ unsigned CompilerUtils::loadFromMemory(unsigned _offset, Type const& _type,
bool _fromCalldata, bool _padToWordBoundaries)
{
solAssert(_type.getCategory() != Type::Category::ByteArray, "Unable to statically load dynamic type.");
- unsigned _encodedSize = _type.getCalldataEncodedSize();
- unsigned numBytes = _padToWordBoundaries ? getPaddedSize(_encodedSize) : _encodedSize;
- bool leftAligned = _type.getCategory() == Type::Category::String;
- if (numBytes == 0)
- m_context << u256(0);
- else
- {
- eth::Instruction load = _fromCalldata ? eth::Instruction::CALLDATALOAD : eth::Instruction::MLOAD;
- solAssert(numBytes <= 32, "Static memory load of more than 32 bytes requested.");
- if (numBytes == 32)
- m_context << u256(_offset) << load;
- else
- {
- // load data and add leading or trailing zeros by dividing/multiplying depending on alignment
- u256 shiftFactor = u256(1) << ((32 - numBytes) * 8);
- m_context << shiftFactor;
- if (leftAligned)
- m_context << eth::Instruction::DUP1;
- m_context << u256(_offset) << load << eth::Instruction::DIV;
- if (leftAligned)
- m_context << eth::Instruction::MUL;
- }
- }
- return numBytes;
+ m_context << u256(_offset);
+ return loadFromMemoryHelper(_type, _fromCalldata, _padToWordBoundaries);
+}
+
+void CompilerUtils::loadFromMemoryDynamic(Type const& _type, bool _fromCalldata, bool _padToWordBoundaries)
+{
+ solAssert(_type.getCategory() != Type::Category::ByteArray, "Byte arrays not yet implemented.");
+ m_context << eth::Instruction::DUP1;
+ unsigned numBytes = loadFromMemoryHelper(_type, _fromCalldata, _padToWordBoundaries);
+ // update memory counter
+ for (unsigned i = 0; i < _type.getSizeOnStack(); ++i)
+ m_context << eth::swapInstruction(1 + i);
+ m_context << u256(numBytes) << eth::Instruction::ADD;
}
+
unsigned CompilerUtils::storeInMemory(unsigned _offset, Type const& _type, bool _padToWordBoundaries)
{
solAssert(_type.getCategory() != Type::Category::ByteArray, "Unable to statically store dynamic type.");
@@ -121,6 +111,7 @@ void CompilerUtils::storeInMemoryDynamic(Type const& _type, bool _padToWordBound
unsigned numBytes = prepareMemoryStore(_type, _padToWordBoundaries);
if (numBytes > 0)
{
+ solAssert(_type.getSizeOnStack() == 1, "Memory store of types with stack size != 1 not implemented.");
m_context << eth::Instruction::DUP2 << eth::Instruction::MSTORE;
m_context << u256(numBytes) << eth::Instruction::ADD;
}
@@ -290,6 +281,30 @@ void CompilerUtils::copyByteArrayToStorage(ByteArrayType const& _targetType,
}
}
+unsigned CompilerUtils::loadFromMemoryHelper(Type const& _type, bool _fromCalldata, bool _padToWordBoundaries)
+{
+ unsigned _encodedSize = _type.getCalldataEncodedSize();
+ unsigned numBytes = _padToWordBoundaries ? getPaddedSize(_encodedSize) : _encodedSize;
+ bool leftAligned = _type.getCategory() == Type::Category::String;
+ if (numBytes == 0)
+ m_context << eth::Instruction::POP << u256(0);
+ else
+ {
+ solAssert(numBytes <= 32, "Static memory load of more than 32 bytes requested.");
+ m_context << (_fromCalldata ? eth::Instruction::CALLDATALOAD : eth::Instruction::MLOAD);
+ if (numBytes != 32)
+ {
+ // add leading or trailing zeros by dividing/multiplying depending on alignment
+ u256 shiftFactor = u256(1) << ((32 - numBytes) * 8);
+ m_context << shiftFactor << eth::Instruction::SWAP1 << eth::Instruction::DIV;
+ if (leftAligned)
+ m_context << shiftFactor << eth::Instruction::MUL;
+ }
+ }
+
+ return numBytes;
+}
+
void CompilerUtils::clearByteArray(ByteArrayType const& _type) const
{
solAssert(_type.getLocation() == ByteArrayType::Location::Storage, "");