2014-12-08 17:52:30 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-12-08 17:52:30 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-12-08 17:52:30 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-12-08 17:52:30 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-12-08 17:52:30 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2014-12-08 17:52:30 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Routines used by both the compiler and the expression compiler.
|
|
|
|
*/
|
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/codegen/CompilerUtils.h>
|
2018-03-13 14:21:38 +00:00
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/ast/AST.h>
|
2019-04-15 13:33:39 +00:00
|
|
|
#include <libsolidity/ast/TypeProvider.h>
|
2018-12-17 16:06:11 +00:00
|
|
|
#include <libsolidity/codegen/ABIFunctions.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/codegen/ArrayUtils.h>
|
|
|
|
#include <libsolidity/codegen/LValue.h>
|
2020-10-12 14:36:48 +00:00
|
|
|
#include <libsolutil/FunctionSelector.h>
|
2017-12-13 16:23:37 +00:00
|
|
|
#include <libevmasm/Instruction.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/Whiskers.h>
|
2017-12-13 16:23:37 +00:00
|
|
|
|
2014-12-08 17:52:30 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::evmasm;
|
|
|
|
using namespace solidity::frontend;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
|
|
|
|
using solidity::util::Whiskers;
|
|
|
|
using solidity::util::h256;
|
|
|
|
using solidity::util::toCompactHexWithPrefix;
|
2014-12-08 17:52:30 +00:00
|
|
|
|
2019-02-14 10:53:00 +00:00
|
|
|
unsigned const CompilerUtils::dataStartOffset = 4;
|
|
|
|
size_t const CompilerUtils::freeMemoryPointer = 64;
|
|
|
|
size_t const CompilerUtils::zeroPointer = CompilerUtils::freeMemoryPointer + 32;
|
|
|
|
size_t const CompilerUtils::generalPurposeMemoryStart = CompilerUtils::zeroPointer + 32;
|
2015-06-05 15:32:13 +00:00
|
|
|
|
2018-03-13 14:21:38 +00:00
|
|
|
static_assert(CompilerUtils::freeMemoryPointer >= 64, "Free memory pointer must not overlap with scratch area.");
|
|
|
|
static_assert(CompilerUtils::zeroPointer >= CompilerUtils::freeMemoryPointer + 32, "Zero pointer must not overlap with free memory pointer.");
|
|
|
|
static_assert(CompilerUtils::generalPurposeMemoryStart >= CompilerUtils::zeroPointer + 32, "General purpose memory must not overlap with zero area.");
|
|
|
|
|
2015-06-05 15:32:13 +00:00
|
|
|
void CompilerUtils::initialiseFreeMemoryPointer()
|
|
|
|
{
|
2020-03-10 13:30:04 +00:00
|
|
|
size_t reservedMemory = m_context.reservedMemory();
|
|
|
|
solAssert(bigint(generalPurposeMemoryStart) + bigint(reservedMemory) < bigint(1) << 63, "");
|
|
|
|
m_context << (u256(generalPurposeMemoryStart) + reservedMemory);
|
2015-06-05 15:32:13 +00:00
|
|
|
storeFreeMemoryPointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::fetchFreeMemoryPointer()
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(freeMemoryPointer) << Instruction::MLOAD;
|
2015-06-05 15:32:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::storeFreeMemoryPointer()
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(freeMemoryPointer) << Instruction::MSTORE;
|
2015-06-05 15:32:13 +00:00
|
|
|
}
|
2015-01-08 23:27:26 +00:00
|
|
|
|
2015-06-25 15:51:01 +00:00
|
|
|
void CompilerUtils::allocateMemory()
|
|
|
|
{
|
|
|
|
fetchFreeMemoryPointer();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::DUP2 << Instruction::ADD;
|
2015-06-25 15:51:01 +00:00
|
|
|
storeFreeMemoryPointer();
|
|
|
|
}
|
|
|
|
|
2019-02-26 12:56:23 +00:00
|
|
|
void CompilerUtils::allocateMemory(u256 const& size)
|
|
|
|
{
|
|
|
|
fetchFreeMemoryPointer();
|
|
|
|
m_context << Instruction::DUP1 << size << Instruction::ADD;
|
|
|
|
storeFreeMemoryPointer();
|
|
|
|
}
|
|
|
|
|
2015-06-05 22:57:51 +00:00
|
|
|
void CompilerUtils::toSizeAfterFreeMemoryPointer()
|
|
|
|
{
|
|
|
|
fetchFreeMemoryPointer();
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << Instruction::SWAP2 << Instruction::SUB;
|
|
|
|
m_context << Instruction::SWAP1;
|
2015-06-05 22:57:51 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 13:14:55 +00:00
|
|
|
void CompilerUtils::revertWithStringData(Type const& _argumentType)
|
|
|
|
{
|
2019-04-15 13:33:39 +00:00
|
|
|
solAssert(_argumentType.isImplicitlyConvertibleTo(*TypeProvider::fromElementaryTypeName("string memory")), "");
|
2018-04-06 13:14:55 +00:00
|
|
|
fetchFreeMemoryPointer();
|
2020-10-12 14:36:48 +00:00
|
|
|
m_context << util::selectorFromSignature("Error(string)");
|
2018-04-06 13:14:55 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
|
|
|
m_context << u256(4) << Instruction::ADD;
|
|
|
|
// Stack: <string data> <mem pos of encoding start>
|
2019-04-17 11:40:50 +00:00
|
|
|
abiEncode({&_argumentType}, {TypeProvider::array(DataLocation::Memory, true)});
|
2018-04-06 13:14:55 +00:00
|
|
|
toSizeAfterFreeMemoryPointer();
|
|
|
|
m_context << Instruction::REVERT;
|
2021-01-28 11:56:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::revertWithError(
|
|
|
|
string const& _signature,
|
|
|
|
vector<Type const*> const& _parameterTypes,
|
|
|
|
vector<Type const*> const& _argumentTypes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
fetchFreeMemoryPointer();
|
|
|
|
m_context << util::selectorFromSignature(_signature);
|
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
|
|
|
m_context << u256(4) << Instruction::ADD;
|
|
|
|
// Stack: <arguments...> <mem pos of encoding start>
|
|
|
|
abiEncode(_argumentTypes, _parameterTypes);
|
|
|
|
toSizeAfterFreeMemoryPointer();
|
|
|
|
m_context << Instruction::REVERT;
|
2018-04-06 13:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 21:35:31 +00:00
|
|
|
void CompilerUtils::returnDataToArray()
|
|
|
|
{
|
|
|
|
if (m_context.evmVersion().supportsReturndata())
|
|
|
|
{
|
|
|
|
m_context << Instruction::RETURNDATASIZE;
|
|
|
|
m_context.appendInlineAssembly(R"({
|
|
|
|
switch v case 0 {
|
|
|
|
v := 0x60
|
|
|
|
} default {
|
|
|
|
v := mload(0x40)
|
|
|
|
mstore(0x40, add(v, and(add(returndatasize(), 0x3f), not(0x1f))))
|
|
|
|
mstore(v, returndatasize())
|
|
|
|
returndatacopy(add(v, 0x20), 0, returndatasize())
|
|
|
|
}
|
|
|
|
})", {"v"});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pushZeroPointer();
|
|
|
|
}
|
|
|
|
|
2019-03-06 15:35:05 +00:00
|
|
|
void CompilerUtils::accessCalldataTail(Type const& _type)
|
|
|
|
{
|
2020-03-02 15:33:12 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
m_context.callYulFunction(
|
|
|
|
m_context.utilFunctions().accessCalldataTailFunction(_type),
|
|
|
|
2,
|
|
|
|
_type.isDynamicallySized() ? 2 : 1
|
|
|
|
);
|
2019-03-06 15:35:05 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 14:41:39 +00:00
|
|
|
unsigned CompilerUtils::loadFromMemory(
|
|
|
|
unsigned _offset,
|
|
|
|
Type const& _type,
|
|
|
|
bool _fromCalldata,
|
|
|
|
bool _padToWordBoundaries
|
|
|
|
)
|
2014-12-10 16:15:17 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(_type.category() != Type::Category::Array, "Unable to statically load dynamic type.");
|
2015-02-15 00:02:38 +00:00
|
|
|
m_context << u256(_offset);
|
|
|
|
return loadFromMemoryHelper(_type, _fromCalldata, _padToWordBoundaries);
|
|
|
|
}
|
|
|
|
|
2015-03-03 16:55:28 +00:00
|
|
|
void CompilerUtils::loadFromMemoryDynamic(
|
2015-03-05 14:41:39 +00:00
|
|
|
Type const& _type,
|
|
|
|
bool _fromCalldata,
|
|
|
|
bool _padToWordBoundaries,
|
|
|
|
bool _keepUpdatedMemoryOffset
|
|
|
|
)
|
2018-05-06 22:52:12 +00:00
|
|
|
{
|
2015-03-03 16:55:28 +00:00
|
|
|
if (_keepUpdatedMemoryOffset)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2015-09-23 15:31:37 +00:00
|
|
|
|
|
|
|
if (auto arrayType = dynamic_cast<ArrayType const*>(&_type))
|
2015-03-03 16:55:28 +00:00
|
|
|
{
|
2015-09-23 15:31:37 +00:00
|
|
|
solAssert(!arrayType->isDynamicallySized(), "");
|
|
|
|
solAssert(!_fromCalldata, "");
|
|
|
|
solAssert(_padToWordBoundaries, "");
|
|
|
|
if (_keepUpdatedMemoryOffset)
|
2019-07-09 14:10:38 +00:00
|
|
|
m_context << arrayType->memoryDataSize() << Instruction::ADD;
|
2015-09-23 15:31:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned numBytes = loadFromMemoryHelper(_type, _fromCalldata, _padToWordBoundaries);
|
|
|
|
if (_keepUpdatedMemoryOffset)
|
|
|
|
{
|
|
|
|
// update memory counter
|
|
|
|
moveToStackTop(_type.sizeOnStack());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(numBytes) << Instruction::ADD;
|
2015-09-23 15:31:37 +00:00
|
|
|
}
|
2015-03-03 16:55:28 +00:00
|
|
|
}
|
2014-12-10 16:15:17 +00:00
|
|
|
}
|
|
|
|
|
2015-06-25 12:52:13 +00:00
|
|
|
void CompilerUtils::storeInMemory(unsigned _offset)
|
2014-12-10 16:15:17 +00:00
|
|
|
{
|
2019-04-15 16:10:43 +00:00
|
|
|
unsigned numBytes = prepareMemoryStore(*TypeProvider::uint256(), true);
|
2015-02-10 16:53:43 +00:00
|
|
|
if (numBytes > 0)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(_offset) << Instruction::MSTORE;
|
2015-02-10 16:53:43 +00:00
|
|
|
}
|
|
|
|
|
2020-06-08 15:52:40 +00:00
|
|
|
void CompilerUtils::storeInMemoryDynamic(Type const& _type, bool _padToWordBoundaries, bool _cleanup)
|
2015-02-10 16:53:43 +00:00
|
|
|
{
|
2018-10-11 05:25:27 +00:00
|
|
|
// process special types (Reference, StringLiteral, Function)
|
2015-06-25 15:51:01 +00:00
|
|
|
if (auto ref = dynamic_cast<ReferenceType const*>(&_type))
|
|
|
|
{
|
2018-10-11 05:25:27 +00:00
|
|
|
solUnimplementedAssert(
|
|
|
|
ref->location() == DataLocation::Memory,
|
|
|
|
"Only in-memory reference type can be stored."
|
|
|
|
);
|
2020-06-08 15:52:40 +00:00
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256(), _padToWordBoundaries, _cleanup);
|
2015-06-25 15:51:01 +00:00
|
|
|
}
|
2015-07-07 23:13:56 +00:00
|
|
|
else if (auto str = dynamic_cast<StringLiteralType const*>(&_type))
|
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2015-07-07 23:13:56 +00:00
|
|
|
storeStringData(bytesConstRef(str->value()));
|
|
|
|
if (_padToWordBoundaries)
|
2017-06-22 15:55:06 +00:00
|
|
|
m_context << u256(max<size_t>(32, ((str->value().size() + 31) / 32) * 32));
|
2015-07-07 23:13:56 +00:00
|
|
|
else
|
|
|
|
m_context << u256(str->value().size());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::ADD;
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
2016-09-28 17:22:23 +00:00
|
|
|
else if (
|
|
|
|
_type.category() == Type::Category::Function &&
|
2017-03-16 11:58:17 +00:00
|
|
|
dynamic_cast<FunctionType const&>(_type).kind() == FunctionType::Kind::External
|
2016-09-28 17:22:23 +00:00
|
|
|
)
|
|
|
|
{
|
2016-10-19 16:43:31 +00:00
|
|
|
combineExternalFunctionType(true);
|
2016-09-28 17:22:23 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
|
|
|
m_context << u256(_padToWordBoundaries ? 32 : 24) << Instruction::ADD;
|
|
|
|
}
|
2018-10-11 05:25:27 +00:00
|
|
|
else if (_type.isValueType())
|
2015-02-11 13:32:46 +00:00
|
|
|
{
|
2020-06-08 15:52:40 +00:00
|
|
|
unsigned numBytes = prepareMemoryStore(_type, _padToWordBoundaries, _cleanup);
|
2018-10-11 05:25:27 +00:00
|
|
|
m_context << Instruction::DUP2 << Instruction::MSTORE;
|
|
|
|
m_context << u256(numBytes) << Instruction::ADD;
|
|
|
|
}
|
|
|
|
else // Should never happen
|
|
|
|
{
|
|
|
|
solAssert(
|
|
|
|
false,
|
|
|
|
"Memory store of type " + _type.toString(true) + " not allowed."
|
|
|
|
);
|
2014-12-11 13:19:11 +00:00
|
|
|
}
|
2014-12-10 16:15:17 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 10:31:18 +00:00
|
|
|
void CompilerUtils::abiDecode(TypePointers const& _typeParameters, bool _fromMemory)
|
2018-02-20 09:13:58 +00:00
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
/// Stack: <source_offset> <length>
|
2020-10-22 17:19:14 +00:00
|
|
|
if (m_context.useABICoderV2())
|
2018-02-20 09:13:58 +00:00
|
|
|
{
|
2018-06-12 18:28:52 +00:00
|
|
|
// Use the new Yul-based decoding function
|
2018-02-20 09:13:58 +00:00
|
|
|
auto stackHeightBefore = m_context.stackHeight();
|
|
|
|
abiDecodeV2(_typeParameters, _fromMemory);
|
2017-12-13 16:23:37 +00:00
|
|
|
solAssert(m_context.stackHeight() - stackHeightBefore == sizeOnStack(_typeParameters) - 2, "");
|
2018-02-20 09:13:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//@todo this does not yet support nested dynamic arrays
|
2018-06-04 10:31:18 +00:00
|
|
|
size_t encodedSize = 0;
|
|
|
|
for (auto const& t: _typeParameters)
|
2019-07-09 14:10:38 +00:00
|
|
|
encodedSize += t->decodingType()->calldataHeadSize();
|
2020-01-22 14:48:56 +00:00
|
|
|
|
|
|
|
Whiskers templ(R"({
|
|
|
|
if lt(len, <encodedSize>) { <revertString> }
|
|
|
|
})");
|
|
|
|
templ("encodedSize", to_string(encodedSize));
|
|
|
|
templ("revertString", m_context.revertReasonIfDebug("Calldata too short"));
|
|
|
|
m_context.appendInlineAssembly(templ.render(), {"len"});
|
2017-12-13 16:23:37 +00:00
|
|
|
|
|
|
|
m_context << Instruction::DUP2 << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
/// Stack: <input_end> <source_offset>
|
|
|
|
|
2018-02-20 09:13:58 +00:00
|
|
|
// Retain the offset pointer as base_offset, the point from which the data offsets are computed.
|
|
|
|
m_context << Instruction::DUP1;
|
2021-03-22 16:12:05 +00:00
|
|
|
for (Type const* parameterType: _typeParameters)
|
2018-02-20 09:13:58 +00:00
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: v1 v2 ... v(k-1) input_end base_offset current_offset
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* type = parameterType->decodingType();
|
2018-02-20 09:13:58 +00:00
|
|
|
solUnimplementedAssert(type, "No decoding type found.");
|
|
|
|
if (type->category() == Type::Category::Array)
|
|
|
|
{
|
|
|
|
auto const& arrayType = dynamic_cast<ArrayType const&>(*type);
|
2018-02-21 10:07:30 +00:00
|
|
|
solUnimplementedAssert(!arrayType.baseType()->isDynamicallyEncoded(), "Nested arrays not yet implemented.");
|
2018-02-20 09:13:58 +00:00
|
|
|
if (_fromMemory)
|
|
|
|
{
|
|
|
|
solUnimplementedAssert(
|
|
|
|
arrayType.baseType()->isValueType(),
|
|
|
|
"Nested memory arrays not yet implemented here."
|
|
|
|
);
|
|
|
|
// @todo If base type is an array or struct, it is still calldata-style encoded, so
|
|
|
|
// we would have to convert it like below.
|
|
|
|
solAssert(arrayType.location() == DataLocation::Memory, "");
|
|
|
|
if (arrayType.isDynamicallySized())
|
|
|
|
{
|
|
|
|
// compute data pointer
|
|
|
|
m_context << Instruction::DUP1 << Instruction::MLOAD;
|
2019-08-05 12:07:55 +00:00
|
|
|
// stack: v1 v2 ... v(k-1) input_end base_offset current_offset data_offset
|
|
|
|
|
|
|
|
fetchFreeMemoryPointer();
|
|
|
|
// stack: v1 v2 ... v(k-1) input_end base_offset current_offset data_offset dstmem
|
|
|
|
moveIntoStack(4);
|
|
|
|
// stack: v1 v2 ... v(k-1) dstmem input_end base_offset current_offset data_offset
|
|
|
|
m_context << Instruction::DUP5;
|
|
|
|
// stack: v1 v2 ... v(k-1) dstmem input_end base_offset current_offset data_offset dstmem
|
|
|
|
|
2018-06-04 10:31:18 +00:00
|
|
|
// Check that the data pointer is valid and that length times
|
|
|
|
// item size is still inside the range.
|
|
|
|
Whiskers templ(R"({
|
2020-01-22 14:48:56 +00:00
|
|
|
if gt(ptr, 0x100000000) { <revertStringPointer> }
|
2018-06-04 10:31:18 +00:00
|
|
|
ptr := add(ptr, base_offset)
|
|
|
|
let array_data_start := add(ptr, 0x20)
|
2020-01-22 14:48:56 +00:00
|
|
|
if gt(array_data_start, input_end) { <revertStringStart> }
|
2018-06-04 10:31:18 +00:00
|
|
|
let array_length := mload(ptr)
|
|
|
|
if or(
|
|
|
|
gt(array_length, 0x100000000),
|
|
|
|
gt(add(array_data_start, mul(array_length, <item_size>)), input_end)
|
2020-01-22 14:48:56 +00:00
|
|
|
) { <revertStringLength> }
|
2019-08-05 12:07:55 +00:00
|
|
|
mstore(dst, array_length)
|
|
|
|
dst := add(dst, 0x20)
|
2018-06-04 10:31:18 +00:00
|
|
|
})");
|
2019-02-14 09:50:13 +00:00
|
|
|
templ("item_size", to_string(arrayType.calldataStride()));
|
2020-01-22 14:48:56 +00:00
|
|
|
// TODO add test
|
|
|
|
templ("revertStringPointer", m_context.revertReasonIfDebug("ABI memory decoding: invalid data pointer"));
|
|
|
|
templ("revertStringStart", m_context.revertReasonIfDebug("ABI memory decoding: invalid data start"));
|
|
|
|
templ("revertStringLength", m_context.revertReasonIfDebug("ABI memory decoding: invalid data length"));
|
2019-08-05 12:07:55 +00:00
|
|
|
m_context.appendInlineAssembly(templ.render(), {"input_end", "base_offset", "offset", "ptr", "dst"});
|
|
|
|
// stack: v1 v2 ... v(k-1) dstmem input_end base_offset current_offset data_ptr dstdata
|
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
// stack: v1 v2 ... v(k-1) dstmem input_end base_offset current_offset dstdata data_ptr
|
|
|
|
ArrayUtils(m_context).copyArrayToMemory(arrayType, true);
|
|
|
|
// stack: v1 v2 ... v(k-1) dstmem input_end base_offset current_offset mem_end
|
|
|
|
storeFreeMemoryPointer();
|
2018-02-20 09:13:58 +00:00
|
|
|
m_context << u256(0x20) << Instruction::ADD;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
// Size has already been checked for this one.
|
|
|
|
moveIntoStack(2);
|
|
|
|
m_context << Instruction::DUP3;
|
2019-07-09 14:10:38 +00:00
|
|
|
m_context << u256(arrayType.calldataHeadSize()) << Instruction::ADD;
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// first load from calldata and potentially convert to memory if arrayType is memory
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* calldataType = TypeProvider::withLocation(&arrayType, DataLocation::CallData, false);
|
2018-02-20 09:13:58 +00:00
|
|
|
if (calldataType->isDynamicallySized())
|
|
|
|
{
|
|
|
|
// put on stack: data_pointer length
|
2019-04-15 16:10:43 +00:00
|
|
|
loadFromMemoryDynamic(*TypeProvider::uint256(), !_fromMemory);
|
2017-12-13 16:23:37 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
// stack: input_end base_offset next_pointer data_offset
|
2020-01-22 14:48:56 +00:00
|
|
|
m_context.appendInlineAssembly(Whiskers(R"({
|
|
|
|
if gt(data_offset, 0x100000000) { <revertString> }
|
|
|
|
})")
|
|
|
|
// TODO add test
|
|
|
|
("revertString", m_context.revertReasonIfDebug("ABI calldata decoding: invalid data offset"))
|
|
|
|
.render(), {"data_offset"});
|
2017-12-13 16:23:37 +00:00
|
|
|
m_context << Instruction::DUP3 << Instruction::ADD;
|
|
|
|
// stack: input_end base_offset next_pointer array_head_ptr
|
2020-01-22 14:48:56 +00:00
|
|
|
m_context.appendInlineAssembly(Whiskers(R"({
|
|
|
|
if gt(add(array_head_ptr, 0x20), input_end) { <revertString> }
|
|
|
|
})")
|
|
|
|
("revertString", m_context.revertReasonIfDebug("ABI calldata decoding: invalid head pointer"))
|
|
|
|
.render(), {"input_end", "base_offset", "next_ptr", "array_head_ptr"});
|
|
|
|
|
2018-02-20 09:13:58 +00:00
|
|
|
// retrieve length
|
2019-04-15 16:10:43 +00:00
|
|
|
loadFromMemoryDynamic(*TypeProvider::uint256(), !_fromMemory, true);
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: input_end base_offset next_pointer array_length data_pointer
|
2018-02-20 09:13:58 +00:00
|
|
|
m_context << Instruction::SWAP2;
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: input_end base_offset data_pointer array_length next_pointer
|
2020-01-22 14:48:56 +00:00
|
|
|
m_context.appendInlineAssembly(Whiskers(R"({
|
2018-06-04 10:31:18 +00:00
|
|
|
if or(
|
|
|
|
gt(array_length, 0x100000000),
|
2019-02-14 09:50:13 +00:00
|
|
|
gt(add(data_ptr, mul(array_length, )" + to_string(arrayType.calldataStride()) + R"()), input_end)
|
2020-01-22 14:48:56 +00:00
|
|
|
) { <revertString> }
|
|
|
|
})")
|
|
|
|
("revertString", m_context.revertReasonIfDebug("ABI calldata decoding: invalid data pointer"))
|
|
|
|
.render(), {"input_end", "base_offset", "data_ptr", "array_length", "next_ptr"});
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
// size has already been checked
|
|
|
|
// stack: input_end base_offset data_offset
|
2018-02-20 09:13:58 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2019-07-09 14:10:38 +00:00
|
|
|
m_context << u256(calldataType->calldataHeadSize()) << Instruction::ADD;
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
|
|
|
if (arrayType.location() == DataLocation::Memory)
|
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: input_end base_offset calldata_ref [length] next_calldata
|
2018-02-20 09:13:58 +00:00
|
|
|
// copy to memory
|
|
|
|
// move calldata type up again
|
|
|
|
moveIntoStack(calldataType->sizeOnStack());
|
|
|
|
convertType(*calldataType, arrayType, false, false, true);
|
|
|
|
// fetch next pointer again
|
|
|
|
moveToStackTop(arrayType.sizeOnStack());
|
|
|
|
}
|
2017-12-13 16:23:37 +00:00
|
|
|
// move input_end up
|
|
|
|
// stack: input_end base_offset calldata_ref [length] next_calldata
|
|
|
|
moveToStackTop(2 + arrayType.sizeOnStack());
|
2018-02-20 09:13:58 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: base_offset calldata_ref [length] input_end next_calldata
|
|
|
|
moveToStackTop(2 + arrayType.sizeOnStack());
|
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
// stack: calldata_ref [length] input_end base_offset next_calldata
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-02-21 10:07:30 +00:00
|
|
|
solAssert(!type->isDynamicallyEncoded(), "Unknown dynamically sized type: " + type->toString());
|
2018-02-20 09:13:58 +00:00
|
|
|
loadFromMemoryDynamic(*type, !_fromMemory, true);
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: v1 v2 ... v(k-1) input_end base_offset v(k) mem_offset
|
|
|
|
moveToStackTop(1, type->sizeOnStack());
|
|
|
|
moveIntoStack(3, type->sizeOnStack());
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: v1 v2 ... v(k-1) v(k) input_end base_offset next_offset
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
2017-12-13 16:23:37 +00:00
|
|
|
popStackSlots(3);
|
2018-02-20 09:13:58 +00:00
|
|
|
}
|
|
|
|
|
2015-06-15 10:10:41 +00:00
|
|
|
void CompilerUtils::encodeToMemory(
|
|
|
|
TypePointers const& _givenTypes,
|
|
|
|
TypePointers const& _targetTypes,
|
|
|
|
bool _padToWordBoundaries,
|
2015-10-02 20:34:47 +00:00
|
|
|
bool _copyDynamicDataInPlace,
|
|
|
|
bool _encodeAsLibraryTypes
|
2015-06-15 10:10:41 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// stack: <v1> <v2> ... <vn> <mem>
|
2020-10-22 17:19:14 +00:00
|
|
|
bool const encoderV2 = m_context.useABICoderV2();
|
2015-06-15 10:10:41 +00:00
|
|
|
TypePointers targetTypes = _targetTypes.empty() ? _givenTypes : _targetTypes;
|
|
|
|
solAssert(targetTypes.size() == _givenTypes.size(), "");
|
2021-03-22 16:12:05 +00:00
|
|
|
for (Type const*& t: targetTypes)
|
2016-09-01 17:31:17 +00:00
|
|
|
{
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* tEncoding = t->fullEncodingType(_encodeAsLibraryTypes, encoderV2, !_padToWordBoundaries);
|
2018-07-18 13:46:23 +00:00
|
|
|
solUnimplementedAssert(tEncoding, "Encoding type \"" + t->toString() + "\" not yet implemented.");
|
|
|
|
t = std::move(tEncoding);
|
2016-09-01 17:31:17 +00:00
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
|
2017-06-30 12:09:35 +00:00
|
|
|
if (_givenTypes.empty())
|
|
|
|
return;
|
2019-01-23 10:32:25 +00:00
|
|
|
if (encoderV2)
|
2017-08-07 14:46:09 +00:00
|
|
|
{
|
2018-06-12 18:28:52 +00:00
|
|
|
// Use the new Yul-based encoding function
|
2019-01-23 10:32:25 +00:00
|
|
|
solAssert(
|
|
|
|
_padToWordBoundaries != _copyDynamicDataInPlace,
|
|
|
|
"Non-padded and in-place encoding can only be combined."
|
|
|
|
);
|
2017-08-07 14:46:09 +00:00
|
|
|
auto stackHeightBefore = m_context.stackHeight();
|
2019-01-23 10:32:25 +00:00
|
|
|
abiEncodeV2(_givenTypes, targetTypes, _encodeAsLibraryTypes, _padToWordBoundaries);
|
2017-08-07 14:46:09 +00:00
|
|
|
solAssert(stackHeightBefore - m_context.stackHeight() == sizeOnStack(_givenTypes), "");
|
|
|
|
return;
|
|
|
|
}
|
2017-06-30 12:09:35 +00:00
|
|
|
|
2015-06-15 10:10:41 +00:00
|
|
|
// Stack during operation:
|
|
|
|
// <v1> <v2> ... <vn> <mem_start> <dyn_head_1> ... <dyn_head_r> <end_of_mem>
|
2018-07-10 07:18:59 +00:00
|
|
|
// The values dyn_head_n are added during the first loop and they point to the head part
|
|
|
|
// of the nth dynamic parameter, which is filled once the dynamic parts are processed.
|
2015-06-15 10:10:41 +00:00
|
|
|
|
|
|
|
// store memory start pointer
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2015-06-15 10:10:41 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned argSize = CompilerUtils::sizeOnStack(_givenTypes);
|
2015-06-15 10:10:41 +00:00
|
|
|
unsigned stackPos = 0; // advances through the argument values
|
|
|
|
unsigned dynPointers = 0; // number of dynamic head pointers on the stack
|
|
|
|
for (size_t i = 0; i < _givenTypes.size(); ++i)
|
|
|
|
{
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* targetType = targetTypes[i];
|
2015-06-15 10:10:41 +00:00
|
|
|
solAssert(!!targetType, "Externalable type expected.");
|
|
|
|
if (targetType->isDynamicallySized() && !_copyDynamicDataInPlace)
|
|
|
|
{
|
|
|
|
// leave end_of_mem as dyn head pointer
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << u256(32) << Instruction::ADD;
|
2015-06-15 10:10:41 +00:00
|
|
|
dynPointers++;
|
2020-07-01 07:46:06 +00:00
|
|
|
assertThrow(
|
|
|
|
(argSize + dynPointers) < 16,
|
|
|
|
StackTooDeepError,
|
|
|
|
"Stack too deep, try using fewer variables."
|
|
|
|
);
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-08 15:52:40 +00:00
|
|
|
bool needCleanup = true;
|
2015-08-31 16:44:29 +00:00
|
|
|
copyToStackTop(argSize - stackPos + dynPointers + 2, _givenTypes[i]->sizeOnStack());
|
2015-06-15 10:10:41 +00:00
|
|
|
solAssert(!!targetType, "Externalable type expected.");
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* type = targetType;
|
2015-10-04 09:05:57 +00:00
|
|
|
if (_givenTypes[i]->dataStoredIn(DataLocation::Storage) && targetType->isValueType())
|
|
|
|
{
|
|
|
|
// special case: convert storage reference type to value type - this is only
|
|
|
|
// possible for library calls where we just forward the storage reference
|
|
|
|
solAssert(_encodeAsLibraryTypes, "");
|
|
|
|
solAssert(_givenTypes[i]->sizeOnStack() == 1, "");
|
|
|
|
}
|
|
|
|
else if (
|
2015-06-17 10:01:39 +00:00
|
|
|
_givenTypes[i]->dataStoredIn(DataLocation::Storage) ||
|
2015-07-07 23:13:56 +00:00
|
|
|
_givenTypes[i]->dataStoredIn(DataLocation::CallData) ||
|
2016-09-28 17:22:23 +00:00
|
|
|
_givenTypes[i]->category() == Type::Category::StringLiteral ||
|
|
|
|
_givenTypes[i]->category() == Type::Category::Function
|
2015-06-17 10:01:39 +00:00
|
|
|
)
|
2015-06-16 15:20:41 +00:00
|
|
|
type = _givenTypes[i]; // delay conversion
|
|
|
|
else
|
2020-06-08 15:52:40 +00:00
|
|
|
{
|
2015-06-16 15:20:41 +00:00
|
|
|
convertType(*_givenTypes[i], *targetType, true);
|
2020-06-08 15:52:40 +00:00
|
|
|
needCleanup = false;
|
|
|
|
}
|
|
|
|
|
2019-04-15 13:33:39 +00:00
|
|
|
if (auto arrayType = dynamic_cast<ArrayType const*>(type))
|
2015-06-25 15:51:01 +00:00
|
|
|
ArrayUtils(m_context).copyArrayToMemory(*arrayType, _padToWordBoundaries);
|
2020-05-13 08:25:46 +00:00
|
|
|
else if (auto arraySliceType = dynamic_cast<ArraySliceType const*>(type))
|
|
|
|
{
|
|
|
|
solAssert(
|
|
|
|
arraySliceType->dataStoredIn(DataLocation::CallData) &&
|
|
|
|
arraySliceType->isDynamicallySized() &&
|
|
|
|
!arraySliceType->arrayType().baseType()->isDynamicallyEncoded(),
|
|
|
|
""
|
|
|
|
);
|
|
|
|
ArrayUtils(m_context).copyArrayToMemory(arraySliceType->arrayType(), _padToWordBoundaries);
|
|
|
|
}
|
2015-06-25 15:51:01 +00:00
|
|
|
else
|
2020-06-08 15:52:40 +00:00
|
|
|
storeInMemoryDynamic(*type, _padToWordBoundaries, needCleanup);
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
stackPos += _givenTypes[i]->sizeOnStack();
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// now copy the dynamic part
|
|
|
|
// Stack: <v1> <v2> ... <vn> <mem_start> <dyn_head_1> ... <dyn_head_r> <end_of_mem>
|
|
|
|
stackPos = 0;
|
|
|
|
unsigned thisDynPointer = 0;
|
|
|
|
for (size_t i = 0; i < _givenTypes.size(); ++i)
|
|
|
|
{
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* targetType = targetTypes[i];
|
2015-06-15 10:10:41 +00:00
|
|
|
solAssert(!!targetType, "Externalable type expected.");
|
|
|
|
if (targetType->isDynamicallySized() && !_copyDynamicDataInPlace)
|
|
|
|
{
|
|
|
|
// copy tail pointer (=mem_end - mem_start) to memory
|
2020-07-01 07:46:06 +00:00
|
|
|
assertThrow(
|
2020-03-04 15:16:30 +00:00
|
|
|
(2 + dynPointers) <= 16,
|
2020-07-01 07:46:06 +00:00
|
|
|
StackTooDeepError,
|
2020-03-04 15:16:30 +00:00
|
|
|
"Stack too deep(" + to_string(2 + dynPointers) + "), try using fewer variables."
|
|
|
|
);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(2 + dynPointers) << Instruction::DUP2;
|
|
|
|
m_context << Instruction::SUB;
|
|
|
|
m_context << dupInstruction(2 + dynPointers - thisDynPointer);
|
|
|
|
m_context << Instruction::MSTORE;
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem>
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_givenTypes[i]->category() == Type::Category::StringLiteral)
|
2015-07-07 23:13:56 +00:00
|
|
|
{
|
|
|
|
auto const& strType = dynamic_cast<StringLiteralType const&>(*_givenTypes[i]);
|
2020-11-03 23:01:24 +00:00
|
|
|
auto const size = strType.value().size();
|
|
|
|
m_context << u256(size);
|
2019-04-15 16:10:43 +00:00
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256(), true);
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem'>
|
2020-11-03 23:01:24 +00:00
|
|
|
|
|
|
|
// Do not output empty padding for zero-length strings.
|
|
|
|
// TODO: handle this in storeInMemoryDynamic
|
|
|
|
if (size != 0)
|
|
|
|
storeInMemoryDynamic(strType, _padToWordBoundaries);
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
else
|
|
|
|
{
|
2020-05-13 08:25:46 +00:00
|
|
|
ArrayType const* arrayType = nullptr;
|
|
|
|
switch (_givenTypes[i]->category())
|
|
|
|
{
|
|
|
|
case Type::Category::Array:
|
|
|
|
arrayType = dynamic_cast<ArrayType const*>(_givenTypes[i]);
|
|
|
|
break;
|
|
|
|
case Type::Category::ArraySlice:
|
|
|
|
arrayType = &dynamic_cast<ArraySliceType const*>(_givenTypes[i])->arrayType();
|
|
|
|
solAssert(
|
|
|
|
arrayType->isDynamicallySized() &&
|
|
|
|
arrayType->dataStoredIn(DataLocation::CallData) &&
|
|
|
|
!arrayType->baseType()->isDynamicallyEncoded(),
|
|
|
|
""
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
solAssert(false, "Unknown dynamic type.");
|
|
|
|
break;
|
|
|
|
}
|
2015-07-07 23:13:56 +00:00
|
|
|
// now copy the array
|
2020-05-13 08:25:46 +00:00
|
|
|
copyToStackTop(argSize - stackPos + dynPointers + 2, arrayType->sizeOnStack());
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem> <value...>
|
|
|
|
// copy length to memory
|
2020-05-13 08:25:46 +00:00
|
|
|
m_context << dupInstruction(1 + arrayType->sizeOnStack());
|
|
|
|
ArrayUtils(m_context).retrieveLength(*arrayType, 1);
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem> <value...> <end_of_mem'> <length>
|
2019-04-15 16:10:43 +00:00
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256(), true);
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem> <value...> <end_of_mem''>
|
|
|
|
// copy the new memory pointer
|
2020-05-13 08:25:46 +00:00
|
|
|
m_context << swapInstruction(arrayType->sizeOnStack() + 1) << Instruction::POP;
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem''> <value...>
|
|
|
|
// copy data part
|
2020-05-13 08:25:46 +00:00
|
|
|
ArrayUtils(m_context).copyArrayToMemory(*arrayType, _padToWordBoundaries);
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: ... <end_of_mem'''>
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
thisDynPointer++;
|
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
stackPos += _givenTypes[i]->sizeOnStack();
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove unneeded stack elements (and retain memory pointer)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(argSize + dynPointers + 1);
|
2015-06-15 10:10:41 +00:00
|
|
|
popStackSlots(argSize + dynPointers + 1);
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:10:30 +00:00
|
|
|
void CompilerUtils::abiEncodeV2(
|
2017-08-07 14:46:09 +00:00
|
|
|
TypePointers const& _givenTypes,
|
|
|
|
TypePointers const& _targetTypes,
|
2019-01-23 10:32:25 +00:00
|
|
|
bool _encodeAsLibraryTypes,
|
|
|
|
bool _padToWordBoundaries
|
2017-08-07 14:46:09 +00:00
|
|
|
)
|
|
|
|
{
|
2019-01-23 10:32:25 +00:00
|
|
|
if (!_padToWordBoundaries)
|
|
|
|
solAssert(!_encodeAsLibraryTypes, "Library calls cannot be packed.");
|
|
|
|
|
2017-08-07 14:46:09 +00:00
|
|
|
// stack: <$value0> <$value1> ... <$value(n-1)> <$headStart>
|
|
|
|
|
2019-01-23 10:32:25 +00:00
|
|
|
string encoderName =
|
|
|
|
_padToWordBoundaries ?
|
2020-05-06 23:55:30 +00:00
|
|
|
m_context.abiFunctions().tupleEncoderReversed(_givenTypes, _targetTypes, _encodeAsLibraryTypes) :
|
|
|
|
m_context.abiFunctions().tupleEncoderPackedReversed(_givenTypes, _targetTypes);
|
2020-03-02 16:23:58 +00:00
|
|
|
m_context.callYulFunction(encoderName, sizeOnStack(_givenTypes) + 1, 1);
|
2017-08-07 14:46:09 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 11:59:21 +00:00
|
|
|
void CompilerUtils::abiDecodeV2(TypePointers const& _parameterTypes, bool _fromMemory)
|
|
|
|
{
|
2017-12-13 16:23:37 +00:00
|
|
|
// stack: <source_offset> <length> [stack top]
|
|
|
|
m_context << Instruction::DUP2 << Instruction::ADD;
|
2017-09-01 11:59:21 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2020-03-02 16:20:49 +00:00
|
|
|
// stack: <end> <start>
|
2017-09-01 11:59:21 +00:00
|
|
|
string decoderName = m_context.abiFunctions().tupleDecoder(_parameterTypes, _fromMemory);
|
2020-03-02 16:23:58 +00:00
|
|
|
m_context.callYulFunction(decoderName, 2, sizeOnStack(_parameterTypes));
|
2017-09-01 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
2015-11-17 14:15:00 +00:00
|
|
|
void CompilerUtils::zeroInitialiseMemoryArray(ArrayType const& _type)
|
|
|
|
{
|
2018-03-08 18:41:29 +00:00
|
|
|
if (_type.baseType()->hasSimpleZeroValueInMemory())
|
|
|
|
{
|
|
|
|
solAssert(_type.baseType()->isValueType(), "");
|
|
|
|
Whiskers templ(R"({
|
|
|
|
let size := mul(length, <element_size>)
|
|
|
|
// cheap way of zero-initializing a memory range
|
2020-01-22 16:49:15 +00:00
|
|
|
calldatacopy(memptr, calldatasize(), size)
|
2018-03-08 18:41:29 +00:00
|
|
|
memptr := add(memptr, size)
|
|
|
|
})");
|
2019-02-14 09:50:13 +00:00
|
|
|
templ("element_size", to_string(_type.memoryStride()));
|
2018-03-08 18:41:29 +00:00
|
|
|
m_context.appendInlineAssembly(templ.render(), {"length", "memptr"});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto repeat = m_context.newTag();
|
|
|
|
m_context << repeat;
|
|
|
|
pushZeroValue(*_type.baseType());
|
|
|
|
storeInMemoryDynamic(*_type.baseType());
|
|
|
|
m_context << Instruction::SWAP1 << u256(1) << Instruction::SWAP1;
|
|
|
|
m_context << Instruction::SUB << Instruction::SWAP1;
|
|
|
|
m_context << Instruction::DUP2;
|
|
|
|
m_context.appendConditionalJumpTo(repeat);
|
|
|
|
}
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::SWAP1 << Instruction::POP;
|
2015-11-17 14:15:00 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 16:51:17 +00:00
|
|
|
void CompilerUtils::memoryCopy32()
|
|
|
|
{
|
2015-06-23 12:55:33 +00:00
|
|
|
// Stack here: size target source
|
2016-10-19 23:02:44 +00:00
|
|
|
|
2016-12-11 16:51:17 +00:00
|
|
|
m_context.appendInlineAssembly(R"(
|
|
|
|
{
|
2017-06-22 16:25:22 +00:00
|
|
|
for { let i := 0 } lt(i, len) { i := add(i, 32) } {
|
|
|
|
mstore(add(dst, i), mload(add(src, i)))
|
|
|
|
}
|
2016-12-11 16:51:17 +00:00
|
|
|
}
|
|
|
|
)",
|
|
|
|
{ "len", "dst", "src" }
|
|
|
|
);
|
|
|
|
m_context << Instruction::POP << Instruction::POP << Instruction::POP;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::memoryCopy()
|
|
|
|
{
|
|
|
|
// Stack here: size target source
|
|
|
|
|
|
|
|
m_context.appendInlineAssembly(R"(
|
|
|
|
{
|
2017-06-22 16:25:22 +00:00
|
|
|
// copy 32 bytes at once
|
2017-06-26 07:19:11 +00:00
|
|
|
for
|
|
|
|
{}
|
|
|
|
iszero(lt(len, 32))
|
|
|
|
{
|
|
|
|
dst := add(dst, 32)
|
|
|
|
src := add(src, 32)
|
|
|
|
len := sub(len, 32)
|
|
|
|
}
|
|
|
|
{ mstore(dst, mload(src)) }
|
2016-12-11 16:51:17 +00:00
|
|
|
|
2017-06-22 16:25:22 +00:00
|
|
|
// copy the remainder (0 < len < 32)
|
|
|
|
let mask := sub(exp(256, sub(32, len)), 1)
|
|
|
|
let srcpart := and(mload(src), not(mask))
|
|
|
|
let dstpart := and(mload(dst), mask)
|
|
|
|
mstore(dst, or(srcpart, dstpart))
|
2016-12-11 16:51:17 +00:00
|
|
|
}
|
|
|
|
)",
|
|
|
|
{ "len", "dst", "src" }
|
|
|
|
);
|
|
|
|
m_context << Instruction::POP << Instruction::POP << Instruction::POP;
|
2015-06-23 12:55:33 +00:00
|
|
|
}
|
|
|
|
|
2016-10-19 16:43:31 +00:00
|
|
|
void CompilerUtils::splitExternalFunctionType(bool _leftAligned)
|
2016-10-14 10:27:46 +00:00
|
|
|
{
|
2016-11-14 12:13:37 +00:00
|
|
|
// We have to split the left-aligned <address><function identifier> into two stack slots:
|
2016-10-14 10:27:46 +00:00
|
|
|
// address (right aligned), function identifier (right aligned)
|
2016-10-19 16:43:31 +00:00
|
|
|
if (_leftAligned)
|
2016-11-14 12:13:37 +00:00
|
|
|
{
|
2017-02-12 14:48:46 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2018-04-06 14:25:13 +00:00
|
|
|
rightShiftNumberOnStack(64 + 32);
|
2016-11-14 12:13:37 +00:00
|
|
|
// <input> <address>
|
2017-02-12 14:48:46 +00:00
|
|
|
m_context << Instruction::SWAP1;
|
2018-04-06 14:25:13 +00:00
|
|
|
rightShiftNumberOnStack(64);
|
2016-11-14 12:13:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-12 14:48:46 +00:00
|
|
|
m_context << Instruction::DUP1;
|
2018-04-06 14:25:13 +00:00
|
|
|
rightShiftNumberOnStack(32);
|
2016-11-14 12:13:37 +00:00
|
|
|
m_context << ((u256(1) << 160) - 1) << Instruction::AND << Instruction::SWAP1;
|
|
|
|
}
|
|
|
|
m_context << u256(0xffffffffUL) << Instruction::AND;
|
2016-10-14 10:27:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-19 16:43:31 +00:00
|
|
|
void CompilerUtils::combineExternalFunctionType(bool _leftAligned)
|
2016-10-14 10:27:46 +00:00
|
|
|
{
|
2016-11-14 12:13:37 +00:00
|
|
|
// <address> <function_id>
|
|
|
|
m_context << u256(0xffffffffUL) << Instruction::AND << Instruction::SWAP1;
|
|
|
|
if (!_leftAligned)
|
|
|
|
m_context << ((u256(1) << 160) - 1) << Instruction::AND;
|
2016-11-30 10:03:26 +00:00
|
|
|
leftShiftNumberOnStack(32);
|
2016-11-14 12:13:37 +00:00
|
|
|
m_context << Instruction::OR;
|
2016-10-19 16:43:31 +00:00
|
|
|
if (_leftAligned)
|
2016-11-30 10:03:26 +00:00
|
|
|
leftShiftNumberOnStack(64);
|
2016-10-14 10:27:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 02:39:37 +00:00
|
|
|
void CompilerUtils::pushCombinedFunctionEntryLabel(Declaration const& _function, bool _runtimeOnly)
|
2016-11-10 17:16:21 +00:00
|
|
|
{
|
|
|
|
m_context << m_context.functionEntryLabel(_function).pushTag();
|
|
|
|
// If there is a runtime context, we have to merge both labels into the same
|
|
|
|
// stack slot in case we store it in storage.
|
|
|
|
if (CompilerContext* rtc = m_context.runtimeContext())
|
2017-02-12 14:48:46 +00:00
|
|
|
{
|
|
|
|
leftShiftNumberOnStack(32);
|
2018-03-27 02:39:37 +00:00
|
|
|
if (_runtimeOnly)
|
|
|
|
m_context <<
|
|
|
|
rtc->functionEntryLabel(_function).toSubAssemblyTag(m_context.runtimeSub()) <<
|
|
|
|
Instruction::OR;
|
2017-02-12 14:48:46 +00:00
|
|
|
}
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-24 09:47:43 +00:00
|
|
|
void CompilerUtils::convertType(
|
|
|
|
Type const& _typeOnStack,
|
|
|
|
Type const& _targetType,
|
|
|
|
bool _cleanupNeeded,
|
|
|
|
bool _chopSignBits,
|
|
|
|
bool _asPartOfArgumentDecoding
|
|
|
|
)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
|
|
|
// For a type extension, we need to remove all higher-order bits that we might have ignored in
|
|
|
|
// previous operations.
|
|
|
|
// @todo: store in the AST whether the operand might have "dirty" higher order bits
|
|
|
|
|
|
|
|
if (_typeOnStack == _targetType && !_cleanupNeeded)
|
|
|
|
return;
|
2015-08-31 16:44:29 +00:00
|
|
|
Type::Category stackTypeCategory = _typeOnStack.category();
|
|
|
|
Type::Category targetTypeCategory = _targetType.category();
|
2015-06-15 10:10:41 +00:00
|
|
|
|
2019-11-19 12:07:32 +00:00
|
|
|
if (auto contrType = dynamic_cast<ContractType const*>(&_typeOnStack))
|
|
|
|
solAssert(!contrType->isSuper(), "Cannot convert magic variable \"super\"");
|
|
|
|
|
2016-11-14 16:09:53 +00:00
|
|
|
bool enumOverflowCheckPending = (targetTypeCategory == Type::Category::Enum || stackTypeCategory == Type::Category::Enum);
|
2016-11-21 16:07:10 +00:00
|
|
|
bool chopSignBitsPending = _chopSignBits && targetTypeCategory == Type::Category::Integer;
|
|
|
|
if (chopSignBitsPending)
|
|
|
|
{
|
2019-02-14 10:53:00 +00:00
|
|
|
IntegerType const& targetIntegerType = dynamic_cast<IntegerType const&>(_targetType);
|
2016-11-21 16:07:10 +00:00
|
|
|
chopSignBitsPending = targetIntegerType.isSigned();
|
|
|
|
}
|
2016-11-14 10:11:39 +00:00
|
|
|
|
2019-02-25 19:25:50 +00:00
|
|
|
if (targetTypeCategory == Type::Category::FixedPoint)
|
|
|
|
solUnimplemented("Not yet implemented - FixedPointType.");
|
|
|
|
|
2015-06-15 10:10:41 +00:00
|
|
|
switch (stackTypeCategory)
|
|
|
|
{
|
|
|
|
case Type::Category::FixedBytes:
|
|
|
|
{
|
|
|
|
FixedBytesType const& typeOnStack = dynamic_cast<FixedBytesType const&>(_typeOnStack);
|
|
|
|
if (targetTypeCategory == Type::Category::Integer)
|
|
|
|
{
|
|
|
|
// conversion from bytes to integer. no need to clean the high bit
|
|
|
|
// only to shift right because of opposite alignment
|
|
|
|
IntegerType const& targetIntegerType = dynamic_cast<IntegerType const&>(_targetType);
|
2018-04-06 14:25:13 +00:00
|
|
|
rightShiftNumberOnStack(256 - typeOnStack.numBytes() * 8);
|
2015-08-31 16:44:29 +00:00
|
|
|
if (targetIntegerType.numBits() < typeOnStack.numBytes() * 8)
|
2015-07-07 23:13:56 +00:00
|
|
|
convertType(IntegerType(typeOnStack.numBytes() * 8), _targetType, _cleanupNeeded);
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
2018-09-03 15:45:58 +00:00
|
|
|
else if (targetTypeCategory == Type::Category::Address)
|
|
|
|
{
|
|
|
|
solAssert(typeOnStack.numBytes() * 8 == 160, "");
|
|
|
|
rightShiftNumberOnStack(256 - 160);
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
else
|
|
|
|
{
|
2016-05-20 14:22:31 +00:00
|
|
|
// clear for conversion to longer bytes
|
2015-06-15 10:10:41 +00:00
|
|
|
solAssert(targetTypeCategory == Type::Category::FixedBytes, "Invalid type conversion requested.");
|
|
|
|
FixedBytesType const& targetType = dynamic_cast<FixedBytesType const&>(_targetType);
|
2018-04-11 22:39:20 +00:00
|
|
|
if (typeOnStack.numBytes() == 0 || targetType.numBytes() == 0)
|
|
|
|
m_context << Instruction::POP << u256(0);
|
|
|
|
else if (targetType.numBytes() > typeOnStack.numBytes() || _cleanupNeeded)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
2018-05-01 05:58:04 +00:00
|
|
|
unsigned bytes = min(typeOnStack.numBytes(), targetType.numBytes());
|
2018-04-11 22:39:20 +00:00
|
|
|
m_context << ((u256(1) << (256 - bytes * 8)) - 1);
|
|
|
|
m_context << Instruction::NOT << Instruction::AND;
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-04-11 22:39:20 +00:00
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
case Type::Category::Enum:
|
2016-11-09 16:02:25 +00:00
|
|
|
solAssert(_targetType == _typeOnStack || targetTypeCategory == Type::Category::Integer, "");
|
2016-11-14 10:11:39 +00:00
|
|
|
if (enumOverflowCheckPending)
|
|
|
|
{
|
2016-11-14 16:09:53 +00:00
|
|
|
EnumType const& enumType = dynamic_cast<decltype(enumType)>(_typeOnStack);
|
2016-11-14 10:11:39 +00:00
|
|
|
solAssert(enumType.numberOfMembers() > 0, "empty enum should have caused a parser error.");
|
|
|
|
m_context << u256(enumType.numberOfMembers() - 1) << Instruction::DUP2 << Instruction::GT;
|
2017-05-24 09:47:43 +00:00
|
|
|
if (_asPartOfArgumentDecoding)
|
2020-01-22 14:48:56 +00:00
|
|
|
m_context.appendConditionalRevert(false, "Enum out of range");
|
2017-05-24 09:47:43 +00:00
|
|
|
else
|
2020-10-12 14:01:45 +00:00
|
|
|
m_context.appendConditionalPanic(util::PanicCode::EnumConversionError);
|
2016-11-14 10:11:39 +00:00
|
|
|
enumOverflowCheckPending = false;
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
break;
|
2016-05-10 12:57:29 +00:00
|
|
|
case Type::Category::FixedPoint:
|
2016-11-14 20:41:58 +00:00
|
|
|
solUnimplemented("Not yet implemented - FixedPointType.");
|
2018-09-03 15:45:58 +00:00
|
|
|
case Type::Category::Address:
|
2015-06-15 10:10:41 +00:00
|
|
|
case Type::Category::Integer:
|
|
|
|
case Type::Category::Contract:
|
2016-03-29 21:13:00 +00:00
|
|
|
case Type::Category::RationalNumber:
|
2015-06-15 10:10:41 +00:00
|
|
|
if (targetTypeCategory == Type::Category::FixedBytes)
|
|
|
|
{
|
2018-09-03 15:45:58 +00:00
|
|
|
solAssert(
|
|
|
|
stackTypeCategory == Type::Category::Address ||
|
|
|
|
stackTypeCategory == Type::Category::Integer ||
|
|
|
|
stackTypeCategory == Type::Category::RationalNumber,
|
|
|
|
"Invalid conversion to FixedBytesType requested."
|
|
|
|
);
|
2015-06-15 10:10:41 +00:00
|
|
|
// conversion from bytes to string. no need to clean the high bit
|
|
|
|
// only to shift left because of opposite alignment
|
|
|
|
FixedBytesType const& targetBytesType = dynamic_cast<FixedBytesType const&>(_targetType);
|
|
|
|
if (auto typeOnStack = dynamic_cast<IntegerType const*>(&_typeOnStack))
|
2018-09-03 15:45:58 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (targetBytesType.numBytes() * 8 > typeOnStack->numBits())
|
2015-06-15 10:10:41 +00:00
|
|
|
cleanHigherOrderBits(*typeOnStack);
|
2018-09-03 15:45:58 +00:00
|
|
|
}
|
|
|
|
else if (stackTypeCategory == Type::Category::Address)
|
|
|
|
solAssert(targetBytesType.numBytes() * 8 == 160, "");
|
2016-11-30 10:03:26 +00:00
|
|
|
leftShiftNumberOnStack(256 - targetBytesType.numBytes() * 8);
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
else if (targetTypeCategory == Type::Category::Enum)
|
2016-10-21 10:30:58 +00:00
|
|
|
{
|
2018-09-03 15:45:58 +00:00
|
|
|
solAssert(stackTypeCategory != Type::Category::Address, "Invalid conversion to EnumType requested.");
|
2016-10-21 10:30:58 +00:00
|
|
|
solAssert(_typeOnStack.mobileType(), "");
|
2015-06-15 10:10:41 +00:00
|
|
|
// just clean
|
|
|
|
convertType(_typeOnStack, *_typeOnStack.mobileType(), true);
|
2016-11-14 10:11:39 +00:00
|
|
|
EnumType const& enumType = dynamic_cast<decltype(enumType)>(_targetType);
|
|
|
|
solAssert(enumType.numberOfMembers() > 0, "empty enum should have caused a parser error.");
|
|
|
|
m_context << u256(enumType.numberOfMembers() - 1) << Instruction::DUP2 << Instruction::GT;
|
2020-10-12 14:01:45 +00:00
|
|
|
m_context.appendConditionalPanic(util::PanicCode::EnumConversionError);
|
2016-11-14 10:11:39 +00:00
|
|
|
enumOverflowCheckPending = false;
|
2016-10-21 10:30:58 +00:00
|
|
|
}
|
2016-02-18 22:39:11 +00:00
|
|
|
else if (targetTypeCategory == Type::Category::FixedPoint)
|
|
|
|
{
|
|
|
|
solAssert(
|
2018-05-06 22:52:12 +00:00
|
|
|
stackTypeCategory == Type::Category::Integer ||
|
2016-03-29 20:08:51 +00:00
|
|
|
stackTypeCategory == Type::Category::RationalNumber ||
|
2016-02-18 22:39:11 +00:00
|
|
|
stackTypeCategory == Type::Category::FixedPoint,
|
|
|
|
"Invalid conversion to FixedMxNType requested."
|
|
|
|
);
|
|
|
|
//shift all integer bits onto the left side of the fixed type
|
|
|
|
FixedPointType const& targetFixedPointType = dynamic_cast<FixedPointType const&>(_targetType);
|
|
|
|
if (auto typeOnStack = dynamic_cast<IntegerType const*>(&_typeOnStack))
|
2016-12-22 18:20:03 +00:00
|
|
|
if (targetFixedPointType.numBits() > typeOnStack->numBits())
|
2016-02-18 22:39:11 +00:00
|
|
|
cleanHigherOrderBits(*typeOnStack);
|
2016-11-14 20:41:58 +00:00
|
|
|
solUnimplemented("Not yet implemented - FixedPointType.");
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
else
|
|
|
|
{
|
2019-06-03 10:01:11 +00:00
|
|
|
solAssert(
|
|
|
|
targetTypeCategory == Type::Category::Integer ||
|
|
|
|
targetTypeCategory == Type::Category::Contract ||
|
|
|
|
targetTypeCategory == Type::Category::Address,
|
|
|
|
""
|
|
|
|
);
|
2018-09-03 15:45:58 +00:00
|
|
|
IntegerType addressType(160);
|
2015-06-15 10:10:41 +00:00
|
|
|
IntegerType const& targetType = targetTypeCategory == Type::Category::Integer
|
|
|
|
? dynamic_cast<IntegerType const&>(_targetType) : addressType;
|
2016-03-29 20:08:51 +00:00
|
|
|
if (stackTypeCategory == Type::Category::RationalNumber)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
2016-03-29 20:08:51 +00:00
|
|
|
RationalNumberType const& constType = dynamic_cast<RationalNumberType const&>(_typeOnStack);
|
2015-06-15 10:10:41 +00:00
|
|
|
// We know that the stack is clean, we only have to clean for a narrowing conversion
|
|
|
|
// where cleanup is forced.
|
2016-11-14 20:41:58 +00:00
|
|
|
solUnimplementedAssert(!constType.isFractional(), "Not yet implemented - FixedPointType.");
|
2015-08-31 16:44:29 +00:00
|
|
|
if (targetType.numBits() < constType.integerType()->numBits() && _cleanupNeeded)
|
2015-06-15 10:10:41 +00:00
|
|
|
cleanHigherOrderBits(targetType);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IntegerType const& typeOnStack = stackTypeCategory == Type::Category::Integer
|
|
|
|
? dynamic_cast<IntegerType const&>(_typeOnStack) : addressType;
|
|
|
|
// Widening: clean up according to source type width
|
|
|
|
// Non-widening and force: clean up according to target type bits
|
2015-08-31 16:44:29 +00:00
|
|
|
if (targetType.numBits() > typeOnStack.numBits())
|
2015-06-15 10:10:41 +00:00
|
|
|
cleanHigherOrderBits(typeOnStack);
|
|
|
|
else if (_cleanupNeeded)
|
|
|
|
cleanHigherOrderBits(targetType);
|
2016-11-21 16:07:10 +00:00
|
|
|
if (chopSignBitsPending)
|
|
|
|
{
|
2019-06-25 10:02:38 +00:00
|
|
|
if (targetType.numBits() < 256)
|
2016-11-21 16:07:10 +00:00
|
|
|
m_context
|
2019-06-25 10:02:38 +00:00
|
|
|
<< ((u256(1) << targetType.numBits()) - 1)
|
2016-11-24 16:03:17 +00:00
|
|
|
<< Instruction::AND;
|
2016-11-21 16:07:10 +00:00
|
|
|
chopSignBitsPending = false;
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-07-07 23:13:56 +00:00
|
|
|
case Type::Category::StringLiteral:
|
|
|
|
{
|
|
|
|
auto const& literalType = dynamic_cast<StringLiteralType const&>(_typeOnStack);
|
|
|
|
string const& value = literalType.value();
|
|
|
|
bytesConstRef data(value);
|
|
|
|
if (targetTypeCategory == Type::Category::FixedBytes)
|
|
|
|
{
|
2018-05-01 05:58:04 +00:00
|
|
|
unsigned const numBytes = dynamic_cast<FixedBytesType const&>(_targetType).numBytes();
|
2015-07-07 23:13:56 +00:00
|
|
|
solAssert(data.size() <= 32, "");
|
2020-10-12 14:36:48 +00:00
|
|
|
m_context << (u256(h256(data, h256::AlignLeft)) & (~(u256(-1) >> (8 * numBytes))));
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
|
|
|
else if (targetTypeCategory == Type::Category::Array)
|
|
|
|
{
|
|
|
|
auto const& arrayType = dynamic_cast<ArrayType const&>(_targetType);
|
|
|
|
solAssert(arrayType.isByteArray(), "");
|
2019-12-12 23:39:29 +00:00
|
|
|
size_t storageSize = 32 + ((data.size() + 31) / 32) * 32;
|
2019-02-26 12:56:23 +00:00
|
|
|
allocateMemory(storageSize);
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: mempos
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::DUP1 << u256(data.size());
|
2019-04-15 16:10:43 +00:00
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256());
|
2015-07-07 23:13:56 +00:00
|
|
|
// stack: mempos datapos
|
|
|
|
storeStringData(data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
solAssert(
|
|
|
|
false,
|
|
|
|
"Invalid conversion from string literal to " + _targetType.toString(false) + " requested."
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
case Type::Category::Array:
|
|
|
|
{
|
|
|
|
solAssert(targetTypeCategory == stackTypeCategory, "");
|
2020-11-25 13:15:51 +00:00
|
|
|
auto const& typeOnStack = dynamic_cast<ArrayType const&>(_typeOnStack);
|
|
|
|
auto const& targetType = dynamic_cast<ArrayType const&>(_targetType);
|
2015-06-15 10:10:41 +00:00
|
|
|
switch (targetType.location())
|
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Storage:
|
2015-06-15 10:10:41 +00:00
|
|
|
// Other cases are done explicitly in LValue::storeValue, and only possible by assignment.
|
|
|
|
solAssert(
|
2015-08-04 09:06:57 +00:00
|
|
|
(targetType.isPointer() || (typeOnStack.isByteArray() && targetType.isByteArray())) &&
|
2015-06-17 10:01:39 +00:00
|
|
|
typeOnStack.location() == DataLocation::Storage,
|
2015-06-15 10:10:41 +00:00
|
|
|
"Invalid conversion to storage type."
|
|
|
|
);
|
|
|
|
break;
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Memory:
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
|
|
|
// Copy the array to a free position in memory, unless it is already in memory.
|
2015-06-17 10:01:39 +00:00
|
|
|
if (typeOnStack.location() != DataLocation::Memory)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
2020-11-25 12:23:05 +00:00
|
|
|
if (
|
|
|
|
typeOnStack.dataStoredIn(DataLocation::CallData) &&
|
|
|
|
typeOnStack.baseType()->isDynamicallyEncoded()
|
|
|
|
)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
2020-11-25 12:23:05 +00:00
|
|
|
solAssert(m_context.useABICoderV2(), "");
|
|
|
|
// stack: offset length(optional in case of dynamically sized array)
|
|
|
|
solAssert(typeOnStack.sizeOnStack() == (typeOnStack.isDynamicallySized() ? 2 : 1), "");
|
|
|
|
if (typeOnStack.isDynamicallySized())
|
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
|
|
|
|
m_context.callYulFunction(
|
|
|
|
m_context.utilFunctions().conversionFunction(typeOnStack, targetType),
|
|
|
|
typeOnStack.isDynamicallySized() ? 2 : 1,
|
|
|
|
1
|
|
|
|
);
|
2015-06-17 10:01:39 +00:00
|
|
|
}
|
|
|
|
else
|
2015-06-25 15:51:01 +00:00
|
|
|
{
|
2020-11-25 12:23:05 +00:00
|
|
|
// stack: <source ref> (variably sized)
|
|
|
|
unsigned stackSize = typeOnStack.sizeOnStack();
|
|
|
|
ArrayUtils(m_context).retrieveLength(typeOnStack);
|
2020-05-19 11:12:07 +00:00
|
|
|
|
2020-11-25 12:23:05 +00:00
|
|
|
// allocate memory
|
|
|
|
// stack: <source ref> (variably sized) <length>
|
|
|
|
m_context << Instruction::DUP1;
|
|
|
|
ArrayUtils(m_context).convertLengthToSize(targetType, true);
|
|
|
|
// stack: <source ref> (variably sized) <length> <size>
|
|
|
|
if (targetType.isDynamicallySized())
|
|
|
|
m_context << u256(0x20) << Instruction::ADD;
|
|
|
|
allocateMemory();
|
|
|
|
// stack: <source ref> (variably sized) <length> <mem start>
|
|
|
|
m_context << Instruction::DUP1;
|
|
|
|
moveIntoStack(2 + stackSize);
|
|
|
|
if (targetType.isDynamicallySized())
|
|
|
|
{
|
|
|
|
m_context << Instruction::DUP2;
|
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256());
|
|
|
|
}
|
|
|
|
// stack: <mem start> <source ref> (variably sized) <length> <mem data pos>
|
|
|
|
if (targetType.baseType()->isValueType())
|
|
|
|
{
|
|
|
|
copyToStackTop(2 + stackSize, stackSize);
|
|
|
|
ArrayUtils(m_context).copyArrayToMemory(typeOnStack);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_context << u256(0) << Instruction::SWAP1;
|
|
|
|
// stack: <mem start> <source ref> (variably sized) <length> <counter> <mem data pos>
|
|
|
|
auto repeat = m_context.newTag();
|
|
|
|
m_context << repeat;
|
|
|
|
m_context << Instruction::DUP3 << Instruction::DUP3;
|
|
|
|
m_context << Instruction::LT << Instruction::ISZERO;
|
|
|
|
auto loopEnd = m_context.appendConditionalJump();
|
|
|
|
copyToStackTop(3 + stackSize, stackSize);
|
|
|
|
copyToStackTop(2 + stackSize, 1);
|
|
|
|
ArrayUtils(m_context).accessIndex(typeOnStack, false);
|
|
|
|
if (typeOnStack.location() == DataLocation::Storage)
|
|
|
|
StorageItem(m_context, *typeOnStack.baseType()).retrieveValue(SourceLocation(), true);
|
|
|
|
convertType(*typeOnStack.baseType(), *targetType.baseType(), _cleanupNeeded);
|
|
|
|
storeInMemoryDynamic(*targetType.baseType(), true);
|
|
|
|
m_context << Instruction::SWAP1 << u256(1) << Instruction::ADD;
|
|
|
|
m_context << Instruction::SWAP1;
|
|
|
|
m_context.appendJumpTo(repeat);
|
|
|
|
m_context << loopEnd;
|
|
|
|
m_context << Instruction::POP;
|
|
|
|
}
|
|
|
|
// stack: <mem start> <source ref> (variably sized) <length> <mem data pos updated>
|
|
|
|
popStackSlots(2 + stackSize);
|
|
|
|
// Stack: <mem start>
|
2015-06-25 15:51:01 +00:00
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-08-04 09:06:57 +00:00
|
|
|
case DataLocation::CallData:
|
|
|
|
solAssert(
|
2019-06-03 10:01:11 +00:00
|
|
|
targetType.isByteArray() &&
|
|
|
|
typeOnStack.isByteArray() &&
|
|
|
|
typeOnStack.location() == DataLocation::CallData,
|
|
|
|
"Invalid conversion to calldata type."
|
|
|
|
);
|
2015-08-04 09:06:57 +00:00
|
|
|
break;
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-09-03 16:30:00 +00:00
|
|
|
case Type::Category::ArraySlice:
|
|
|
|
{
|
2020-12-11 10:06:30 +00:00
|
|
|
solAssert(_targetType.category() == Type::Category::Array, "");
|
2019-09-03 16:30:00 +00:00
|
|
|
auto& typeOnStack = dynamic_cast<ArraySliceType const&>(_typeOnStack);
|
2020-12-11 10:06:30 +00:00
|
|
|
auto const& targetArrayType = dynamic_cast<ArrayType const&>(_targetType);
|
2020-12-14 10:48:51 +00:00
|
|
|
solAssert(typeOnStack.arrayType().isImplicitlyConvertibleTo(targetArrayType), "");
|
|
|
|
solAssert(
|
|
|
|
typeOnStack.arrayType().dataStoredIn(DataLocation::CallData) &&
|
2020-05-13 09:00:47 +00:00
|
|
|
typeOnStack.arrayType().isDynamicallySized() &&
|
|
|
|
!typeOnStack.arrayType().baseType()->isDynamicallyEncoded(),
|
2019-09-03 16:30:00 +00:00
|
|
|
""
|
|
|
|
);
|
2020-12-14 10:48:51 +00:00
|
|
|
if (!_targetType.dataStoredIn(DataLocation::CallData))
|
|
|
|
return convertType(typeOnStack.arrayType(), _targetType);
|
2019-09-03 16:30:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
case Type::Category::Struct:
|
|
|
|
{
|
|
|
|
solAssert(targetTypeCategory == stackTypeCategory, "");
|
|
|
|
auto& targetType = dynamic_cast<StructType const&>(_targetType);
|
2015-06-30 09:54:51 +00:00
|
|
|
auto& typeOnStack = dynamic_cast<StructType const&>(_typeOnStack);
|
2015-06-15 10:10:41 +00:00
|
|
|
solAssert(
|
2019-02-05 19:29:57 +00:00
|
|
|
targetType.location() != DataLocation::CallData
|
2015-06-30 09:54:51 +00:00
|
|
|
, "");
|
|
|
|
switch (targetType.location())
|
|
|
|
{
|
|
|
|
case DataLocation::Storage:
|
|
|
|
// Other cases are done explicitly in LValue::storeValue, and only possible by assignment.
|
|
|
|
solAssert(
|
|
|
|
targetType.isPointer() &&
|
|
|
|
typeOnStack.location() == DataLocation::Storage,
|
|
|
|
"Invalid conversion to storage type."
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case DataLocation::Memory:
|
|
|
|
// Copy the array to a free position in memory, unless it is already in memory.
|
2019-02-05 19:29:57 +00:00
|
|
|
switch (typeOnStack.location())
|
2015-06-30 09:54:51 +00:00
|
|
|
{
|
2019-02-05 19:29:57 +00:00
|
|
|
case DataLocation::Storage:
|
2019-04-02 11:29:55 +00:00
|
|
|
{
|
2019-04-15 13:33:39 +00:00
|
|
|
auto conversionImpl =
|
|
|
|
[typeOnStack = &typeOnStack, targetType = &targetType](CompilerContext& _context)
|
|
|
|
{
|
2019-04-02 11:29:55 +00:00
|
|
|
CompilerUtils utils(_context);
|
|
|
|
// stack: <source ref>
|
2019-07-09 14:10:38 +00:00
|
|
|
utils.allocateMemory(typeOnStack->memoryDataSize());
|
2019-04-02 11:29:55 +00:00
|
|
|
_context << Instruction::SWAP1 << Instruction::DUP2;
|
|
|
|
// stack: <memory ptr> <source ref> <memory ptr>
|
|
|
|
for (auto const& member: typeOnStack->members(nullptr))
|
|
|
|
{
|
2020-06-03 10:38:35 +00:00
|
|
|
solAssert(!member.type->containsNestedMapping(), "");
|
2019-04-02 11:29:55 +00:00
|
|
|
pair<u256, unsigned> const& offsets = typeOnStack->storageOffsetsOfMember(member.name);
|
|
|
|
_context << offsets.first << Instruction::DUP3 << Instruction::ADD;
|
|
|
|
_context << u256(offsets.second);
|
|
|
|
StorageItem(_context, *member.type).retrieveValue(SourceLocation(), true);
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* targetMemberType = targetType->memberType(member.name);
|
2019-04-02 11:29:55 +00:00
|
|
|
solAssert(!!targetMemberType, "Member not found in target type.");
|
|
|
|
utils.convertType(*member.type, *targetMemberType, true);
|
|
|
|
utils.storeInMemoryDynamic(*targetMemberType, true);
|
|
|
|
}
|
|
|
|
_context << Instruction::POP << Instruction::POP;
|
|
|
|
};
|
|
|
|
if (typeOnStack.recursive())
|
|
|
|
m_context.callLowLevelFunction(
|
|
|
|
"$convertRecursiveArrayStorageToMemory_" + typeOnStack.identifier() + "_to_" + targetType.identifier(),
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
conversionImpl
|
|
|
|
);
|
|
|
|
else
|
|
|
|
conversionImpl(m_context);
|
2019-02-05 19:29:57 +00:00
|
|
|
break;
|
2019-04-02 11:29:55 +00:00
|
|
|
}
|
2019-02-05 19:29:57 +00:00
|
|
|
case DataLocation::CallData:
|
|
|
|
{
|
2020-11-24 14:12:31 +00:00
|
|
|
if (typeOnStack.isDynamicallyEncoded())
|
|
|
|
{
|
|
|
|
solAssert(m_context.useABICoderV2(), "");
|
|
|
|
m_context.callYulFunction(
|
|
|
|
m_context.utilFunctions().conversionFunction(typeOnStack, targetType),
|
|
|
|
1,
|
|
|
|
1
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_context << Instruction::DUP1;
|
|
|
|
m_context << Instruction::CALLDATASIZE;
|
|
|
|
m_context << Instruction::SUB;
|
|
|
|
abiDecode({&targetType}, false);
|
|
|
|
}
|
2019-02-05 19:29:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DataLocation::Memory:
|
|
|
|
// nothing to do
|
|
|
|
break;
|
2015-06-30 09:54:51 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DataLocation::CallData:
|
2015-07-03 16:15:05 +00:00
|
|
|
solAssert(false, "Invalid type conversion target location CallData.");
|
2015-06-30 09:54:51 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-06-15 10:10:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-10-14 13:19:50 +00:00
|
|
|
case Type::Category::Tuple:
|
|
|
|
{
|
|
|
|
TupleType const& sourceTuple = dynamic_cast<TupleType const&>(_typeOnStack);
|
|
|
|
TupleType const& targetTuple = dynamic_cast<TupleType const&>(_targetType);
|
2018-08-07 16:44:51 +00:00
|
|
|
solAssert(targetTuple.components().size() == sourceTuple.components().size(), "");
|
2015-10-14 13:19:50 +00:00
|
|
|
unsigned depth = sourceTuple.sizeOnStack();
|
|
|
|
for (size_t i = 0; i < sourceTuple.components().size(); ++i)
|
|
|
|
{
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* sourceType = sourceTuple.components()[i];
|
|
|
|
Type const* targetType = targetTuple.components()[i];
|
2015-10-14 13:19:50 +00:00
|
|
|
if (!sourceType)
|
|
|
|
{
|
|
|
|
solAssert(!targetType, "");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
unsigned sourceSize = sourceType->sizeOnStack();
|
2015-10-14 22:42:36 +00:00
|
|
|
unsigned targetSize = targetType ? targetType->sizeOnStack() : 0;
|
|
|
|
if (!targetType || *sourceType != *targetType || _cleanupNeeded)
|
2015-10-14 13:19:50 +00:00
|
|
|
{
|
2015-10-14 22:42:36 +00:00
|
|
|
if (targetType)
|
|
|
|
{
|
|
|
|
if (sourceSize > 0)
|
|
|
|
copyToStackTop(depth, sourceSize);
|
|
|
|
convertType(*sourceType, *targetType, _cleanupNeeded);
|
|
|
|
}
|
2015-10-14 13:19:50 +00:00
|
|
|
if (sourceSize > 0 || targetSize > 0)
|
|
|
|
{
|
|
|
|
// Move it back into its place.
|
|
|
|
for (unsigned j = 0; j < min(sourceSize, targetSize); ++j)
|
|
|
|
m_context <<
|
2016-04-04 11:41:35 +00:00
|
|
|
swapInstruction(depth + targetSize - sourceSize) <<
|
|
|
|
Instruction::POP;
|
2015-10-14 13:19:50 +00:00
|
|
|
// Value shrank
|
|
|
|
for (unsigned j = targetSize; j < sourceSize; ++j)
|
|
|
|
{
|
2020-04-05 02:04:08 +00:00
|
|
|
moveToStackTop(depth + targetSize - sourceSize, 1);
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-10-14 13:19:50 +00:00
|
|
|
}
|
|
|
|
// Value grew
|
|
|
|
if (targetSize > sourceSize)
|
2020-04-05 02:04:08 +00:00
|
|
|
moveIntoStack(depth - sourceSize, targetSize - sourceSize);
|
2015-10-14 13:19:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
depth -= sourceSize;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-05-20 14:22:31 +00:00
|
|
|
case Type::Category::Bool:
|
|
|
|
solAssert(_targetType == _typeOnStack, "Invalid conversion for bool.");
|
|
|
|
if (_cleanupNeeded)
|
|
|
|
m_context << Instruction::ISZERO << Instruction::ISZERO;
|
2016-11-14 15:14:59 +00:00
|
|
|
break;
|
2017-09-19 18:02:13 +00:00
|
|
|
default:
|
2019-08-13 14:43:25 +00:00
|
|
|
// we used to allow conversions from function to address
|
|
|
|
solAssert(!(stackTypeCategory == Type::Category::Function && targetTypeCategory == Type::Category::Address), "");
|
|
|
|
if (stackTypeCategory == Type::Category::Function && targetTypeCategory == Type::Category::Function)
|
2017-02-01 12:22:14 +00:00
|
|
|
{
|
|
|
|
FunctionType const& typeOnStack = dynamic_cast<FunctionType const&>(_typeOnStack);
|
2019-08-13 14:43:25 +00:00
|
|
|
FunctionType const& targetType = dynamic_cast<FunctionType const&>(_targetType);
|
|
|
|
solAssert(
|
|
|
|
typeOnStack.isImplicitlyConvertibleTo(targetType) &&
|
|
|
|
typeOnStack.sizeOnStack() == targetType.sizeOnStack() &&
|
|
|
|
(typeOnStack.kind() == FunctionType::Kind::Internal || typeOnStack.kind() == FunctionType::Kind::External) &&
|
|
|
|
typeOnStack.kind() == targetType.kind(),
|
|
|
|
"Invalid function type conversion requested."
|
|
|
|
);
|
2017-02-01 12:22:14 +00:00
|
|
|
}
|
2017-09-25 08:41:04 +00:00
|
|
|
else
|
2019-08-13 14:43:25 +00:00
|
|
|
// All other types should not be convertible to non-equal types.
|
|
|
|
solAssert(_typeOnStack == _targetType, "Invalid type conversion requested.");
|
2018-11-06 12:29:49 +00:00
|
|
|
|
2019-08-13 14:43:25 +00:00
|
|
|
if (_cleanupNeeded && _targetType.canBeStored() && _targetType.storageBytes() < 32)
|
|
|
|
m_context
|
|
|
|
<< ((u256(1) << (8 * _targetType.storageBytes())) - 1)
|
|
|
|
<< Instruction::AND;
|
2015-06-15 10:10:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-11-08 12:37:59 +00:00
|
|
|
|
2016-11-14 10:11:39 +00:00
|
|
|
solAssert(!enumOverflowCheckPending, "enum overflow checking missing.");
|
2016-11-21 16:07:10 +00:00
|
|
|
solAssert(!chopSignBitsPending, "forgot to chop the sign bits.");
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 13:54:37 +00:00
|
|
|
void CompilerUtils::pushZeroValue(Type const& _type)
|
2015-06-25 15:51:01 +00:00
|
|
|
{
|
2016-09-28 17:22:23 +00:00
|
|
|
if (auto const* funType = dynamic_cast<FunctionType const*>(&_type))
|
|
|
|
{
|
2017-03-16 11:58:17 +00:00
|
|
|
if (funType->kind() == FunctionType::Kind::Internal)
|
2016-09-28 17:22:23 +00:00
|
|
|
{
|
2017-01-26 15:24:03 +00:00
|
|
|
m_context << m_context.lowLevelFunctionTag("$invalidFunction", 0, 0, [](CompilerContext& _context) {
|
2020-10-12 14:01:45 +00:00
|
|
|
_context.appendPanic(util::PanicCode::InvalidInternalFunction);
|
2017-01-26 15:24:03 +00:00
|
|
|
});
|
2019-04-24 12:57:31 +00:00
|
|
|
if (CompilerContext* runCon = m_context.runtimeContext())
|
|
|
|
{
|
|
|
|
leftShiftNumberOnStack(32);
|
|
|
|
m_context << runCon->lowLevelFunctionTag("$invalidFunction", 0, 0, [](CompilerContext& _context) {
|
2020-10-12 14:01:45 +00:00
|
|
|
_context.appendPanic(util::PanicCode::InvalidInternalFunction);
|
2019-04-24 12:57:31 +00:00
|
|
|
}).toSubAssemblyTag(m_context.runtimeSub());
|
|
|
|
m_context << Instruction::OR;
|
|
|
|
}
|
2016-09-28 17:22:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-06-25 15:51:01 +00:00
|
|
|
auto const* referenceType = dynamic_cast<ReferenceType const*>(&_type);
|
|
|
|
if (!referenceType || referenceType->location() == DataLocation::Storage)
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
for (size_t i = 0; i < _type.sizeOnStack(); ++i)
|
2015-06-25 15:51:01 +00:00
|
|
|
m_context << u256(0);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-25 17:30:17 +00:00
|
|
|
if (referenceType->location() == DataLocation::CallData)
|
|
|
|
{
|
|
|
|
solAssert(referenceType->sizeOnStack() == 1 || referenceType->sizeOnStack() == 2, "");
|
|
|
|
m_context << Instruction::CALLDATASIZE;
|
|
|
|
if (referenceType->sizeOnStack() == 2)
|
|
|
|
m_context << 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-25 15:51:01 +00:00
|
|
|
solAssert(referenceType->location() == DataLocation::Memory, "");
|
2018-03-13 14:21:38 +00:00
|
|
|
if (auto arrayType = dynamic_cast<ArrayType const*>(&_type))
|
|
|
|
if (arrayType->isDynamicallySized())
|
|
|
|
{
|
|
|
|
// Push a memory location that is (hopefully) always zero.
|
|
|
|
pushZeroPointer();
|
|
|
|
return;
|
|
|
|
}
|
2015-06-25 15:51:01 +00:00
|
|
|
|
2021-03-22 16:12:05 +00:00
|
|
|
Type const* type = &_type;
|
2017-01-19 16:21:55 +00:00
|
|
|
m_context.callLowLevelFunction(
|
|
|
|
"$pushZeroValue_" + referenceType->identifier(),
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
[type](CompilerContext& _context) {
|
|
|
|
CompilerUtils utils(_context);
|
2019-07-09 14:10:38 +00:00
|
|
|
|
|
|
|
utils.allocateMemory(max<u256>(32u, type->memoryDataSize()));
|
2017-01-19 16:21:55 +00:00
|
|
|
_context << Instruction::DUP1;
|
|
|
|
|
2019-04-15 13:33:39 +00:00
|
|
|
if (auto structType = dynamic_cast<StructType const*>(type))
|
2017-01-19 16:21:55 +00:00
|
|
|
for (auto const& member: structType->members(nullptr))
|
|
|
|
{
|
|
|
|
utils.pushZeroValue(*member.type);
|
|
|
|
utils.storeInMemoryDynamic(*member.type);
|
|
|
|
}
|
2019-04-15 13:33:39 +00:00
|
|
|
else if (auto arrayType = dynamic_cast<ArrayType const*>(type))
|
2017-01-19 16:21:55 +00:00
|
|
|
{
|
2018-03-13 14:21:38 +00:00
|
|
|
solAssert(!arrayType->isDynamicallySized(), "");
|
|
|
|
if (arrayType->length() > 0)
|
2017-01-19 16:21:55 +00:00
|
|
|
{
|
|
|
|
_context << arrayType->length() << Instruction::SWAP1;
|
|
|
|
// stack: items_to_do memory_pos
|
|
|
|
utils.zeroInitialiseMemoryArray(*arrayType);
|
|
|
|
// stack: updated_memory_pos
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
solAssert(false, "Requested initialisation for unknown type: " + type->toString());
|
2015-06-25 15:51:01 +00:00
|
|
|
|
2017-01-19 16:21:55 +00:00
|
|
|
// remove the updated memory pointer
|
|
|
|
_context << Instruction::POP;
|
2015-06-25 15:51:01 +00:00
|
|
|
}
|
2017-01-19 16:21:55 +00:00
|
|
|
);
|
2015-06-25 15:51:01 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 14:21:38 +00:00
|
|
|
void CompilerUtils::pushZeroPointer()
|
|
|
|
{
|
|
|
|
m_context << u256(zeroPointer);
|
|
|
|
}
|
|
|
|
|
2014-12-08 17:52:30 +00:00
|
|
|
void CompilerUtils::moveToStackVariable(VariableDeclaration const& _variable)
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned const stackPosition = m_context.baseToCurrentStackOffset(m_context.baseStackOffsetOfVariable(_variable));
|
2015-09-16 14:56:30 +00:00
|
|
|
unsigned const size = _variable.annotation().type->sizeOnStack();
|
2015-03-13 12:14:51 +00:00
|
|
|
solAssert(stackPosition >= size, "Variable size and position mismatch.");
|
2014-12-10 13:33:30 +00:00
|
|
|
// move variable starting from its top end in the stack
|
2014-12-08 21:18:19 +00:00
|
|
|
if (stackPosition - size + 1 > 16)
|
2015-06-05 23:04:55 +00:00
|
|
|
BOOST_THROW_EXCEPTION(
|
2020-07-01 07:46:06 +00:00
|
|
|
StackTooDeepError() <<
|
2015-08-31 16:44:29 +00:00
|
|
|
errinfo_sourceLocation(_variable.location()) <<
|
2019-12-11 16:31:36 +00:00
|
|
|
util::errinfo_comment("Stack too deep, try removing local variables.")
|
2015-06-05 23:04:55 +00:00
|
|
|
);
|
2014-12-08 17:52:30 +00:00
|
|
|
for (unsigned i = 0; i < size; ++i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(stackPosition - size + 1) << Instruction::POP;
|
2014-12-08 17:52:30 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 16:55:28 +00:00
|
|
|
void CompilerUtils::copyToStackTop(unsigned _stackDepth, unsigned _itemSize)
|
2014-12-10 11:51:26 +00:00
|
|
|
{
|
2020-07-01 07:46:06 +00:00
|
|
|
assertThrow(
|
|
|
|
_stackDepth <= 16,
|
|
|
|
StackTooDeepError,
|
|
|
|
"Stack too deep, try removing local variables."
|
|
|
|
);
|
2015-03-03 16:55:28 +00:00
|
|
|
for (unsigned i = 0; i < _itemSize; ++i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << dupInstruction(_stackDepth);
|
2014-12-10 11:51:26 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 13:19:50 +00:00
|
|
|
void CompilerUtils::moveToStackTop(unsigned _stackDepth, unsigned _itemSize)
|
2015-04-21 08:59:48 +00:00
|
|
|
{
|
2015-11-30 16:32:54 +00:00
|
|
|
moveIntoStack(_itemSize, _stackDepth);
|
2015-04-21 08:59:48 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 13:19:50 +00:00
|
|
|
void CompilerUtils::moveIntoStack(unsigned _stackDepth, unsigned _itemSize)
|
2015-06-15 10:10:41 +00:00
|
|
|
{
|
2015-11-30 16:32:54 +00:00
|
|
|
if (_stackDepth <= _itemSize)
|
|
|
|
for (unsigned i = 0; i < _stackDepth; ++i)
|
|
|
|
rotateStackDown(_stackDepth + _itemSize);
|
|
|
|
else
|
|
|
|
for (unsigned i = 0; i < _itemSize; ++i)
|
|
|
|
rotateStackUp(_stackDepth + _itemSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::rotateStackUp(unsigned _items)
|
|
|
|
{
|
2020-07-01 07:46:06 +00:00
|
|
|
assertThrow(
|
|
|
|
_items - 1 <= 16,
|
|
|
|
StackTooDeepError,
|
|
|
|
"Stack too deep, try removing local variables."
|
|
|
|
);
|
2015-11-30 16:32:54 +00:00
|
|
|
for (unsigned i = 1; i < _items; ++i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(_items - i);
|
2015-11-30 16:32:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::rotateStackDown(unsigned _items)
|
|
|
|
{
|
2020-07-01 07:46:06 +00:00
|
|
|
assertThrow(
|
|
|
|
_items - 1 <= 16,
|
|
|
|
StackTooDeepError,
|
|
|
|
"Stack too deep, try removing local variables."
|
|
|
|
);
|
2015-11-30 16:32:54 +00:00
|
|
|
for (unsigned i = 1; i < _items; ++i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << swapInstruction(i);
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 17:52:30 +00:00
|
|
|
void CompilerUtils::popStackElement(Type const& _type)
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
popStackSlots(_type.sizeOnStack());
|
2015-04-01 12:22:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerUtils::popStackSlots(size_t _amount)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < _amount; ++i)
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2014-12-08 17:52:30 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
void CompilerUtils::popAndJump(unsigned _toHeight, evmasm::AssemblyItem const& _jumpTo)
|
2018-07-04 12:14:41 +00:00
|
|
|
{
|
2018-07-06 07:56:27 +00:00
|
|
|
solAssert(m_context.stackHeight() >= _toHeight, "");
|
2018-07-04 12:14:41 +00:00
|
|
|
unsigned amount = m_context.stackHeight() - _toHeight;
|
|
|
|
popStackSlots(amount);
|
|
|
|
m_context.appendJumpTo(_jumpTo);
|
2020-06-02 13:42:46 +00:00
|
|
|
m_context.adjustStackOffset(static_cast<int>(amount));
|
2018-07-04 12:14:41 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 13:33:39 +00:00
|
|
|
unsigned CompilerUtils::sizeOnStack(vector<Type const*> const& _variableTypes)
|
2014-12-08 21:18:19 +00:00
|
|
|
{
|
|
|
|
unsigned size = 0;
|
2021-03-22 16:12:05 +00:00
|
|
|
for (Type const* type: _variableTypes)
|
2015-08-31 16:44:29 +00:00
|
|
|
size += type->sizeOnStack();
|
2014-12-08 21:18:19 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-06-25 12:52:13 +00:00
|
|
|
void CompilerUtils::computeHashStatic()
|
2015-02-11 13:24:34 +00:00
|
|
|
{
|
2015-06-25 12:52:13 +00:00
|
|
|
storeInMemory(0);
|
2017-05-10 07:48:00 +00:00
|
|
|
m_context << u256(32) << u256(0) << Instruction::KECCAK256;
|
2015-02-11 13:24:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:44:31 +00:00
|
|
|
void CompilerUtils::copyContractCodeToMemory(ContractDefinition const& contract, bool _creation)
|
|
|
|
{
|
|
|
|
string which = _creation ? "Creation" : "Runtime";
|
|
|
|
m_context.callLowLevelFunction(
|
|
|
|
"$copyContract" + which + "CodeToMemory_" + contract.type()->identifier(),
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
[&contract, _creation](CompilerContext& _context)
|
|
|
|
{
|
|
|
|
// copy the contract's code into memory
|
2019-12-11 16:31:36 +00:00
|
|
|
shared_ptr<evmasm::Assembly> assembly =
|
2019-01-10 15:44:31 +00:00
|
|
|
_creation ?
|
|
|
|
_context.compiledContract(contract) :
|
|
|
|
_context.compiledContractRuntime(contract);
|
|
|
|
// pushes size
|
2019-01-16 10:44:11 +00:00
|
|
|
auto subroutine = _context.addSubroutine(assembly);
|
2019-01-10 15:44:31 +00:00
|
|
|
_context << Instruction::DUP1 << subroutine;
|
|
|
|
_context << Instruction::DUP4 << Instruction::CODECOPY;
|
|
|
|
_context << Instruction::ADD;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
void CompilerUtils::storeStringData(bytesConstRef _data)
|
|
|
|
{
|
|
|
|
//@todo provide both alternatives to the optimiser
|
|
|
|
// stack: mempos
|
2018-12-06 14:33:26 +00:00
|
|
|
if (_data.size() <= 32)
|
2015-07-07 23:13:56 +00:00
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < _data.size(); i += 32)
|
|
|
|
{
|
2020-10-12 14:36:48 +00:00
|
|
|
m_context << u256(h256(_data.cropped(i), h256::AlignLeft));
|
2019-04-15 16:10:43 +00:00
|
|
|
storeInMemoryDynamic(*TypeProvider::uint256());
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP;
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// stack: mempos mempos_data
|
|
|
|
m_context.appendData(_data.toBytes());
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(_data.size()) << Instruction::SWAP2;
|
|
|
|
m_context << Instruction::CODECOPY;
|
2015-07-07 23:13:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-12 20:45:33 +00:00
|
|
|
unsigned CompilerUtils::loadFromMemoryHelper(Type const& _type, bool _fromCalldata, bool _padToWords)
|
2015-02-15 00:02:38 +00:00
|
|
|
{
|
2019-07-09 14:10:38 +00:00
|
|
|
solAssert(_type.isValueType(), "");
|
|
|
|
|
2016-12-12 20:45:33 +00:00
|
|
|
unsigned numBytes = _type.calldataEncodedSize(_padToWords);
|
2016-10-19 16:43:31 +00:00
|
|
|
bool isExternalFunctionType = false;
|
|
|
|
if (auto const* funType = dynamic_cast<FunctionType const*>(&_type))
|
2017-03-16 11:58:17 +00:00
|
|
|
if (funType->kind() == FunctionType::Kind::External)
|
2016-10-19 16:43:31 +00:00
|
|
|
isExternalFunctionType = true;
|
2015-02-15 00:02:38 +00:00
|
|
|
if (numBytes == 0)
|
2016-10-19 16:43:31 +00:00
|
|
|
{
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << Instruction::POP << u256(0);
|
2016-10-19 16:43:31 +00:00
|
|
|
return numBytes;
|
|
|
|
}
|
|
|
|
solAssert(numBytes <= 32, "Static memory load of more than 32 bytes requested.");
|
|
|
|
m_context << (_fromCalldata ? Instruction::CALLDATALOAD : Instruction::MLOAD);
|
2018-11-07 22:52:13 +00:00
|
|
|
bool cleanupNeeded = true;
|
2016-10-19 16:43:31 +00:00
|
|
|
if (isExternalFunctionType)
|
|
|
|
splitExternalFunctionType(true);
|
|
|
|
else if (numBytes != 32)
|
2015-02-15 00:02:38 +00:00
|
|
|
{
|
2016-10-19 16:43:31 +00:00
|
|
|
bool leftAligned = _type.category() == Type::Category::FixedBytes;
|
|
|
|
// add leading or trailing zeros by dividing/multiplying depending on alignment
|
2020-06-02 13:42:46 +00:00
|
|
|
unsigned shiftFactor = (32 - numBytes) * 8;
|
2018-04-06 14:25:13 +00:00
|
|
|
rightShiftNumberOnStack(shiftFactor);
|
2016-10-19 16:43:31 +00:00
|
|
|
if (leftAligned)
|
2018-11-07 22:52:13 +00:00
|
|
|
{
|
2016-11-21 12:23:51 +00:00
|
|
|
leftShiftNumberOnStack(shiftFactor);
|
2018-11-07 22:52:13 +00:00
|
|
|
cleanupNeeded = false;
|
|
|
|
}
|
|
|
|
else if (IntegerType const* intType = dynamic_cast<IntegerType const*>(&_type))
|
|
|
|
if (!intType->isSigned())
|
|
|
|
cleanupNeeded = false;
|
2015-02-15 00:02:38 +00:00
|
|
|
}
|
2016-11-24 10:57:28 +00:00
|
|
|
if (_fromCalldata)
|
2018-11-07 22:52:13 +00:00
|
|
|
convertType(_type, _type, cleanupNeeded, false, true);
|
2015-02-15 00:02:38 +00:00
|
|
|
|
|
|
|
return numBytes;
|
|
|
|
}
|
|
|
|
|
2015-06-15 10:10:41 +00:00
|
|
|
void CompilerUtils::cleanHigherOrderBits(IntegerType const& _typeOnStack)
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_typeOnStack.numBits() == 256)
|
2015-06-15 10:10:41 +00:00
|
|
|
return;
|
|
|
|
else if (_typeOnStack.isSigned())
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << u256(_typeOnStack.numBits() / 8 - 1) << Instruction::SIGNEXTEND;
|
2015-06-15 10:10:41 +00:00
|
|
|
else
|
2016-04-04 11:41:35 +00:00
|
|
|
m_context << ((u256(1) << _typeOnStack.numBits()) - 1) << Instruction::AND;
|
2015-06-15 10:10:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:03:26 +00:00
|
|
|
void CompilerUtils::leftShiftNumberOnStack(unsigned _bits)
|
2016-11-21 12:23:43 +00:00
|
|
|
{
|
2017-07-01 10:48:12 +00:00
|
|
|
solAssert(_bits < 256, "");
|
2018-03-29 08:56:51 +00:00
|
|
|
if (m_context.evmVersion().hasBitwiseShifting())
|
|
|
|
m_context << _bits << Instruction::SHL;
|
|
|
|
else
|
|
|
|
m_context << (u256(1) << _bits) << Instruction::MUL;
|
2016-11-21 12:23:43 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 14:25:13 +00:00
|
|
|
void CompilerUtils::rightShiftNumberOnStack(unsigned _bits)
|
2016-11-21 12:23:43 +00:00
|
|
|
{
|
2017-07-01 10:48:12 +00:00
|
|
|
solAssert(_bits < 256, "");
|
2018-04-06 14:25:13 +00:00
|
|
|
// NOTE: If we add signed right shift, SAR rounds differently than SDIV
|
|
|
|
if (m_context.evmVersion().hasBitwiseShifting())
|
2018-04-06 12:54:21 +00:00
|
|
|
m_context << _bits << Instruction::SHR;
|
2018-03-29 08:56:51 +00:00
|
|
|
else
|
2018-04-06 14:25:13 +00:00
|
|
|
m_context << (u256(1) << _bits) << Instruction::SWAP1 << Instruction::DIV;
|
2016-11-21 12:23:43 +00:00
|
|
|
}
|
|
|
|
|
2020-06-08 15:52:40 +00:00
|
|
|
unsigned CompilerUtils::prepareMemoryStore(Type const& _type, bool _padToWords, bool _cleanup)
|
2015-02-10 16:53:43 +00:00
|
|
|
{
|
2018-10-11 05:25:27 +00:00
|
|
|
solAssert(
|
|
|
|
_type.sizeOnStack() == 1,
|
|
|
|
"Memory store of types with stack size != 1 not allowed (Type: " + _type.toString(true) + ")."
|
|
|
|
);
|
|
|
|
|
2019-07-09 14:10:38 +00:00
|
|
|
solAssert(!_type.isDynamicallyEncoded(), "");
|
|
|
|
|
2016-12-12 20:45:33 +00:00
|
|
|
unsigned numBytes = _type.calldataEncodedSize(_padToWords);
|
2018-10-11 05:25:27 +00:00
|
|
|
|
|
|
|
solAssert(
|
|
|
|
numBytes > 0,
|
|
|
|
"Memory store of 0 bytes requested (Type: " + _type.toString(true) + ")."
|
|
|
|
);
|
|
|
|
|
|
|
|
solAssert(
|
|
|
|
numBytes <= 32,
|
|
|
|
"Memory store of more than 32 bytes requested (Type: " + _type.toString(true) + ")."
|
|
|
|
);
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
bool leftAligned = _type.category() == Type::Category::FixedBytes;
|
2018-10-11 05:25:27 +00:00
|
|
|
|
2020-06-08 15:52:40 +00:00
|
|
|
if (_cleanup)
|
|
|
|
convertType(_type, _type, true);
|
|
|
|
|
2018-10-11 05:25:27 +00:00
|
|
|
if (numBytes != 32 && !leftAligned && !_padToWords)
|
|
|
|
// shift the value accordingly before storing
|
|
|
|
leftShiftNumberOnStack((32 - numBytes) * 8);
|
|
|
|
|
2015-02-10 16:53:43 +00:00
|
|
|
return numBytes;
|
|
|
|
}
|