2015-05-06 08:43:59 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/** @file GasMeter.cpp
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "GasMeter.h"
|
2015-05-19 22:27:07 +00:00
|
|
|
#include <libevmasm/KnownState.h>
|
2015-05-06 08:43:59 +00:00
|
|
|
#include <libevmcore/Params.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::eth;
|
|
|
|
|
|
|
|
GasMeter::GasConsumption& GasMeter::GasConsumption::operator+=(GasConsumption const& _other)
|
|
|
|
{
|
2015-05-22 07:33:57 +00:00
|
|
|
if (_other.isInfinite && !isInfinite)
|
|
|
|
*this = infinite();
|
2015-05-06 08:43:59 +00:00
|
|
|
if (isInfinite)
|
|
|
|
return *this;
|
|
|
|
bigint v = bigint(value) + _other.value;
|
|
|
|
if (v > std::numeric_limits<u256>::max())
|
2015-05-22 07:33:57 +00:00
|
|
|
*this = infinite();
|
2015-05-06 08:43:59 +00:00
|
|
|
else
|
|
|
|
value = u256(v);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
GasMeter::GasConsumption GasMeter::estimateMax(AssemblyItem const& _item)
|
|
|
|
{
|
2015-05-19 22:27:07 +00:00
|
|
|
GasConsumption gas;
|
|
|
|
switch (_item.type())
|
|
|
|
{
|
2015-05-06 08:43:59 +00:00
|
|
|
case Push:
|
|
|
|
case PushTag:
|
2015-05-19 22:27:07 +00:00
|
|
|
case PushData:
|
|
|
|
case PushString:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
|
|
|
gas = runGas(Instruction::PUSH1);
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Tag:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = runGas(Instruction::JUMPDEST);
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Operation:
|
|
|
|
{
|
2015-05-19 22:27:07 +00:00
|
|
|
ExpressionClasses& classes = m_state->expressionClasses();
|
|
|
|
gas = runGas(_item.instruction());
|
2015-05-06 08:43:59 +00:00
|
|
|
switch (_item.instruction())
|
|
|
|
{
|
|
|
|
case Instruction::SSTORE:
|
2015-05-19 22:27:07 +00:00
|
|
|
{
|
|
|
|
ExpressionClasses::Id slot = m_state->relativeStackElement(0);
|
|
|
|
ExpressionClasses::Id value = m_state->relativeStackElement(-1);
|
|
|
|
if (classes.knownZero(value) || (
|
|
|
|
m_state->storageContent().count(slot) &&
|
|
|
|
classes.knownNonZero(m_state->storageContent().at(slot))
|
|
|
|
))
|
|
|
|
gas += c_sstoreResetGas; //@todo take refunds into account
|
|
|
|
else
|
|
|
|
gas += c_sstoreSetGas;
|
2015-05-06 08:43:59 +00:00
|
|
|
break;
|
2015-05-19 22:27:07 +00:00
|
|
|
}
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::SLOAD:
|
|
|
|
gas += c_sloadGas;
|
|
|
|
break;
|
2015-05-19 22:27:07 +00:00
|
|
|
case Instruction::RETURN:
|
|
|
|
gas += memoryGas(0, -1);
|
|
|
|
break;
|
|
|
|
case Instruction::MLOAD:
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::MSTORE:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas += memoryGas(classes.find(eth::Instruction::ADD, {
|
|
|
|
m_state->relativeStackElement(0),
|
|
|
|
classes.find(AssemblyItem(32))
|
|
|
|
}));
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::MSTORE8:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas += memoryGas(classes.find(eth::Instruction::ADD, {
|
|
|
|
m_state->relativeStackElement(0),
|
|
|
|
classes.find(AssemblyItem(1))
|
|
|
|
}));
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::SHA3:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = c_sha3Gas;
|
|
|
|
gas += wordGas(c_sha3WordGas, m_state->relativeStackElement(-1));
|
|
|
|
gas += memoryGas(0, -1);
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::CALLDATACOPY:
|
|
|
|
case Instruction::CODECOPY:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas += memoryGas(0, -2);
|
|
|
|
gas += wordGas(c_copyGas, m_state->relativeStackElement(-2));
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::EXTCODECOPY:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas += memoryGas(-1, -3);
|
|
|
|
gas += wordGas(c_copyGas, m_state->relativeStackElement(-3));
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::LOG0:
|
|
|
|
case Instruction::LOG1:
|
|
|
|
case Instruction::LOG2:
|
|
|
|
case Instruction::LOG3:
|
|
|
|
case Instruction::LOG4:
|
2015-05-19 22:27:07 +00:00
|
|
|
{
|
|
|
|
unsigned n = unsigned(_item.instruction()) - unsigned(Instruction::LOG0);
|
|
|
|
gas = c_logGas + c_logTopicGas * n;
|
|
|
|
gas += memoryGas(0, -1);
|
|
|
|
if (u256 const* value = classes.knownConstant(m_state->relativeStackElement(-1)))
|
|
|
|
gas += c_logDataGas * (*value);
|
|
|
|
else
|
|
|
|
gas = GasConsumption::infinite();
|
|
|
|
break;
|
|
|
|
}
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = c_callGas;
|
|
|
|
if (u256 const* value = classes.knownConstant(m_state->relativeStackElement(0)))
|
|
|
|
gas += (*value);
|
|
|
|
else
|
|
|
|
gas = GasConsumption::infinite();
|
|
|
|
if (_item.instruction() != Instruction::CALLCODE)
|
|
|
|
gas += c_callNewAccountGas; // We very rarely know whether the address exists.
|
|
|
|
if (!classes.knownZero(m_state->relativeStackElement(-2)))
|
|
|
|
gas += c_callValueTransferGas;
|
|
|
|
gas += memoryGas(-3, -4);
|
|
|
|
gas += memoryGas(-5, -6);
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::CREATE:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = c_createGas;
|
|
|
|
gas += memoryGas(-1, -2);
|
|
|
|
break;
|
2015-05-06 08:43:59 +00:00
|
|
|
case Instruction::EXP:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = c_expGas;
|
|
|
|
if (u256 const* value = classes.knownConstant(m_state->relativeStackElement(-1)))
|
|
|
|
gas += c_expByteGas * (32 - (h256(*value).firstBitSet() / 8));
|
|
|
|
else
|
|
|
|
gas = GasConsumption::infinite();
|
2015-05-06 08:43:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2015-05-19 22:27:07 +00:00
|
|
|
gas = GasConsumption::infinite();
|
2015-05-06 08:43:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-05-19 22:27:07 +00:00
|
|
|
m_state->feedItem(_item);
|
|
|
|
return gas;
|
|
|
|
}
|
|
|
|
|
|
|
|
GasMeter::GasConsumption GasMeter::wordGas(u256 const& _multiplier, ExpressionClasses::Id _position)
|
|
|
|
{
|
|
|
|
u256 const* value = m_state->expressionClasses().knownConstant(_position);
|
|
|
|
if (!value)
|
|
|
|
return GasConsumption::infinite();
|
|
|
|
return GasConsumption(_multiplier * ((*value + 31) / 32));
|
|
|
|
}
|
|
|
|
|
|
|
|
GasMeter::GasConsumption GasMeter::memoryGas(ExpressionClasses::Id _position)
|
|
|
|
{
|
|
|
|
u256 const* value = m_state->expressionClasses().knownConstant(_position);
|
|
|
|
if (!value)
|
|
|
|
return GasConsumption::infinite();
|
|
|
|
if (*value < m_largestMemoryAccess)
|
|
|
|
return GasConsumption(u256(0));
|
|
|
|
u256 previous = m_largestMemoryAccess;
|
|
|
|
m_largestMemoryAccess = *value;
|
|
|
|
auto memGas = [](u256 const& pos) -> u256
|
|
|
|
{
|
|
|
|
u256 size = (pos + 31) / 32;
|
|
|
|
return c_memoryGas * size + size * size / c_quadCoeffDiv;
|
|
|
|
};
|
|
|
|
return memGas(*value) - memGas(previous);
|
|
|
|
}
|
|
|
|
|
|
|
|
GasMeter::GasConsumption GasMeter::memoryGas(int _stackPosOffset, int _stackPosSize)
|
|
|
|
{
|
|
|
|
ExpressionClasses& classes = m_state->expressionClasses();
|
|
|
|
if (classes.knownZero(m_state->relativeStackElement(_stackPosSize)))
|
|
|
|
return GasConsumption(0);
|
|
|
|
else
|
|
|
|
return memoryGas(classes.find(eth::Instruction::ADD, {
|
|
|
|
m_state->relativeStackElement(_stackPosOffset),
|
|
|
|
m_state->relativeStackElement(_stackPosSize)
|
|
|
|
}));
|
2015-05-06 08:43:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GasMeter::GasConsumption GasMeter::runGas(Instruction _instruction)
|
|
|
|
{
|
|
|
|
if (_instruction == Instruction::JUMPDEST)
|
|
|
|
return GasConsumption(1);
|
|
|
|
|
|
|
|
int tier = instructionInfo(_instruction).gasPriceTier;
|
|
|
|
return tier == InvalidTier ? GasConsumption::infinite() : c_tierStepGas[tier];
|
|
|
|
}
|
|
|
|
|
|
|
|
|