2015-05-06 08:43:59 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-05-06 08:43:59 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-05-06 08:43:59 +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,
|
2015-05-06 08:43:59 +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/>.
|
2015-05-06 08:43:59 +00:00
|
|
|
*/
|
|
|
|
/** @file GasMeter.cpp
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ostream>
|
2015-05-22 07:33:57 +00:00
|
|
|
#include <tuple>
|
2015-05-19 22:27:07 +00:00
|
|
|
#include <libevmasm/ExpressionClasses.h>
|
2015-05-06 08:43:59 +00:00
|
|
|
#include <libevmasm/AssemblyItem.h>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace eth
|
|
|
|
{
|
|
|
|
|
2015-05-19 22:27:07 +00:00
|
|
|
class KnownState;
|
|
|
|
|
2016-04-06 18:55:46 +00:00
|
|
|
namespace GasCosts
|
|
|
|
{
|
|
|
|
static unsigned const stackLimit = 1024;
|
|
|
|
static unsigned const tier0Gas = 0;
|
|
|
|
static unsigned const tier1Gas = 2;
|
|
|
|
static unsigned const tier2Gas = 3;
|
|
|
|
static unsigned const tier3Gas = 5;
|
|
|
|
static unsigned const tier4Gas = 8;
|
|
|
|
static unsigned const tier5Gas = 10;
|
|
|
|
static unsigned const tier6Gas = 20;
|
|
|
|
static unsigned const tier7Gas = 0;
|
2017-01-16 13:43:44 +00:00
|
|
|
static unsigned const extCodeGas = 700;
|
|
|
|
static unsigned const balanceGas = 400;
|
2016-04-06 18:55:46 +00:00
|
|
|
static unsigned const expGas = 10;
|
2017-01-17 13:36:07 +00:00
|
|
|
static unsigned const expByteGas = 50;
|
2017-05-10 07:48:00 +00:00
|
|
|
static unsigned const keccak256Gas = 30;
|
|
|
|
static unsigned const keccak256WordGas = 6;
|
2017-02-24 19:02:09 +00:00
|
|
|
static unsigned const sloadGas = 200;
|
2016-04-06 18:55:46 +00:00
|
|
|
static unsigned const sstoreSetGas = 20000;
|
|
|
|
static unsigned const sstoreResetGas = 5000;
|
|
|
|
static unsigned const sstoreRefundGas = 15000;
|
|
|
|
static unsigned const jumpdestGas = 1;
|
|
|
|
static unsigned const logGas = 375;
|
|
|
|
static unsigned const logDataGas = 8;
|
|
|
|
static unsigned const logTopicGas = 375;
|
|
|
|
static unsigned const createGas = 32000;
|
2017-01-16 13:49:14 +00:00
|
|
|
static unsigned const callGas = 700;
|
2016-04-06 18:55:46 +00:00
|
|
|
static unsigned const callStipend = 2300;
|
|
|
|
static unsigned const callValueTransferGas = 9000;
|
|
|
|
static unsigned const callNewAccountGas = 25000;
|
2017-01-16 13:49:14 +00:00
|
|
|
static unsigned const selfdestructGas = 5000;
|
2017-02-06 18:35:18 +00:00
|
|
|
static unsigned const selfdestructRefundGas = 24000;
|
2016-04-06 18:55:46 +00:00
|
|
|
static unsigned const memoryGas = 3;
|
|
|
|
static unsigned const quadCoeffDiv = 512;
|
|
|
|
static unsigned const createDataGas = 200;
|
|
|
|
static unsigned const txGas = 21000;
|
|
|
|
static unsigned const txCreateGas = 53000;
|
|
|
|
static unsigned const txDataZeroGas = 4;
|
|
|
|
static unsigned const txDataNonZeroGas = 68;
|
|
|
|
static unsigned const copyGas = 3;
|
|
|
|
}
|
2015-11-21 13:33:55 +00:00
|
|
|
|
2015-05-06 08:43:59 +00:00
|
|
|
/**
|
|
|
|
* Class that helps computing the maximum gas consumption for instructions.
|
2015-05-19 22:27:07 +00:00
|
|
|
* Has to be initialized with a certain known state that will be automatically updated for
|
|
|
|
* each call to estimateMax. These calls have to supply strictly subsequent AssemblyItems.
|
|
|
|
* A new gas meter has to be constructed (with a new state) for control flow changes.
|
2015-05-06 08:43:59 +00:00
|
|
|
*/
|
|
|
|
class GasMeter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct GasConsumption
|
|
|
|
{
|
2016-04-06 18:55:46 +00:00
|
|
|
GasConsumption(unsigned _value = 0, bool _infinite = false): value(_value), isInfinite(_infinite) {}
|
|
|
|
GasConsumption(u256 _value, bool _infinite = false): value(_value), isInfinite(_infinite) {}
|
2015-05-06 08:43:59 +00:00
|
|
|
static GasConsumption infinite() { return GasConsumption(0, true); }
|
|
|
|
|
2015-05-22 07:33:57 +00:00
|
|
|
GasConsumption& operator+=(GasConsumption const& _other);
|
|
|
|
bool operator<(GasConsumption const& _other) const { return this->tuple() < _other.tuple(); }
|
|
|
|
|
|
|
|
std::tuple<bool const&, u256 const&> tuple() const { return std::tie(isInfinite, value); }
|
2015-05-06 08:43:59 +00:00
|
|
|
|
|
|
|
u256 value;
|
|
|
|
bool isInfinite;
|
|
|
|
};
|
|
|
|
|
2015-05-19 22:27:07 +00:00
|
|
|
/// Constructs a new gas meter given the current state.
|
2015-05-22 07:33:57 +00:00
|
|
|
explicit GasMeter(std::shared_ptr<KnownState> const& _state, u256 const& _largestMemoryAccess = 0):
|
|
|
|
m_state(_state), m_largestMemoryAccess(_largestMemoryAccess) {}
|
2015-05-19 22:27:07 +00:00
|
|
|
|
|
|
|
/// @returns an upper bound on the gas consumed by the given instruction and updates
|
|
|
|
/// the state.
|
2016-11-14 22:28:26 +00:00
|
|
|
/// @param _inculdeExternalCosts if true, include costs caused by other contracts in calls.
|
|
|
|
GasConsumption estimateMax(AssemblyItem const& _item, bool _includeExternalCosts = true);
|
2015-05-06 08:43:59 +00:00
|
|
|
|
2015-05-22 07:33:57 +00:00
|
|
|
u256 const& largestMemoryAccess() const { return m_largestMemoryAccess; }
|
|
|
|
|
2016-04-06 18:55:46 +00:00
|
|
|
static unsigned runGas(Instruction _instruction);
|
2015-06-01 10:32:59 +00:00
|
|
|
|
2015-05-06 08:43:59 +00:00
|
|
|
private:
|
2015-05-19 22:27:07 +00:00
|
|
|
/// @returns _multiplier * (_value + 31) / 32, if _value is a known constant and infinite otherwise.
|
|
|
|
GasConsumption wordGas(u256 const& _multiplier, ExpressionClasses::Id _value);
|
|
|
|
/// @returns the gas needed to access the given memory position.
|
|
|
|
/// @todo this assumes that memory was never accessed before and thus over-estimates gas usage.
|
|
|
|
GasConsumption memoryGas(ExpressionClasses::Id _position);
|
|
|
|
/// @returns the memory gas for accessing the memory at a specific offset for a number of bytes
|
|
|
|
/// given as values on the stack at the given relative positions.
|
|
|
|
GasConsumption memoryGas(int _stackPosOffset, int _stackPosSize);
|
|
|
|
|
|
|
|
std::shared_ptr<KnownState> m_state;
|
|
|
|
/// Largest point where memory was accessed since the creation of this object.
|
|
|
|
u256 m_largestMemoryAccess;
|
2015-05-06 08:43:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inline std::ostream& operator<<(std::ostream& _str, GasMeter::GasConsumption const& _consumption)
|
|
|
|
{
|
|
|
|
if (_consumption.isInfinite)
|
2015-05-22 12:19:58 +00:00
|
|
|
return _str << "[???]";
|
2015-05-06 08:43:59 +00:00
|
|
|
else
|
2015-05-19 22:27:07 +00:00
|
|
|
return _str << std::dec << _consumption.value;
|
2015-05-06 08:43:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|