mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Functional gas estimator.
This commit is contained in:
parent
c82a3e06a0
commit
61fae129f2
@ -42,7 +42,7 @@
|
|||||||
#include <libsolidity/Exceptions.h>
|
#include <libsolidity/Exceptions.h>
|
||||||
#include <libsolidity/CompilerStack.h>
|
#include <libsolidity/CompilerStack.h>
|
||||||
#include <libsolidity/SourceReferenceFormatter.h>
|
#include <libsolidity/SourceReferenceFormatter.h>
|
||||||
#include <libsolidity/StructuralGasEstimator.h>
|
#include <libsolidity/GasEstimator.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
namespace po = boost::program_options;
|
namespace po = boost::program_options;
|
||||||
@ -465,14 +465,13 @@ void CommandLineInterface::handleAst(string const& _argStr)
|
|||||||
// do we need AST output?
|
// do we need AST output?
|
||||||
if (m_args.count(_argStr))
|
if (m_args.count(_argStr))
|
||||||
{
|
{
|
||||||
StructuralGasEstimator gasEstimator;
|
|
||||||
vector<ASTNode const*> asts;
|
vector<ASTNode const*> asts;
|
||||||
for (auto const& sourceCode: m_sourceCodes)
|
for (auto const& sourceCode: m_sourceCodes)
|
||||||
asts.push_back(&m_compiler->getAST(sourceCode.first));
|
asts.push_back(&m_compiler->getAST(sourceCode.first));
|
||||||
map<ASTNode const*, eth::GasMeter::GasConsumption> gasCosts;
|
map<ASTNode const*, eth::GasMeter::GasConsumption> gasCosts;
|
||||||
if (m_compiler->getRuntimeAssemblyItems())
|
if (m_compiler->getRuntimeAssemblyItems())
|
||||||
gasCosts = gasEstimator.breakToStatementLevel(
|
gasCosts = GasEstimator::breakToStatementLevel(
|
||||||
gasEstimator.performEstimation(*m_compiler->getRuntimeAssemblyItems(), asts),
|
GasEstimator::structuralEstimation(*m_compiler->getRuntimeAssemblyItems(), asts),
|
||||||
asts
|
asts
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user