2014-10-30 21:52:15 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-10-30 21:52:15 +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-10-30 21:52:15 +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-10-30 21:52:15 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2014-10-30 21:52:15 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
2015-01-09 06:39:30 +00:00
|
|
|
* @author Gav Wood <g@ethdev.com>
|
2014-10-30 21:52:15 +00:00
|
|
|
* @date 2014
|
|
|
|
* Full-stack compiler that converts a source code string to bytecode.
|
|
|
|
*/
|
|
|
|
|
2016-12-11 22:17:38 +00:00
|
|
|
|
2016-10-05 09:58:25 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2021-03-29 12:46:19 +00:00
|
|
|
#include <libsolidity/interface/ImportRemapper.h>
|
2016-10-05 09:58:25 +00:00
|
|
|
|
2018-05-04 13:58:24 +00:00
|
|
|
#include <libsolidity/analysis/ControlFlowAnalyzer.h>
|
2018-05-04 13:58:10 +00:00
|
|
|
#include <libsolidity/analysis/ControlFlowGraph.h>
|
2020-10-28 19:32:46 +00:00
|
|
|
#include <libsolidity/analysis/ControlFlowRevertPruner.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libsolidity/analysis/ContractLevelChecker.h>
|
2020-04-07 17:31:48 +00:00
|
|
|
#include <libsolidity/analysis/DeclarationTypeChecker.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libsolidity/analysis/DocStringAnalyser.h>
|
2020-06-29 12:30:09 +00:00
|
|
|
#include <libsolidity/analysis/DocStringTagParser.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/analysis/GlobalContext.h>
|
|
|
|
#include <libsolidity/analysis/NameAndTypeResolver.h>
|
2017-03-03 11:51:51 +00:00
|
|
|
#include <libsolidity/analysis/PostTypeChecker.h>
|
2021-03-18 12:28:04 +00:00
|
|
|
#include <libsolidity/analysis/PostTypeContractLevelChecker.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libsolidity/analysis/StaticAnalyzer.h>
|
2016-01-14 01:58:09 +00:00
|
|
|
#include <libsolidity/analysis/SyntaxChecker.h>
|
2020-08-06 12:46:04 +00:00
|
|
|
#include <libsolidity/analysis/Scoper.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libsolidity/analysis/TypeChecker.h>
|
2017-08-28 17:48:34 +00:00
|
|
|
#include <libsolidity/analysis/ViewPureChecker.h>
|
2020-03-10 17:15:50 +00:00
|
|
|
#include <libsolidity/analysis/ImmutableValidator.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
|
|
|
|
#include <libsolidity/ast/AST.h>
|
2019-04-15 13:33:39 +00:00
|
|
|
#include <libsolidity/ast/TypeProvider.h>
|
2019-09-11 19:16:35 +00:00
|
|
|
#include <libsolidity/ast/ASTJsonImporter.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/codegen/Compiler.h>
|
2019-06-25 10:46:17 +00:00
|
|
|
#include <libsolidity/formal/ModelChecker.h>
|
2017-05-10 09:54:23 +00:00
|
|
|
#include <libsolidity/interface/ABI.h>
|
2017-05-10 09:56:21 +00:00
|
|
|
#include <libsolidity/interface/Natspec.h>
|
2017-04-10 13:00:24 +00:00
|
|
|
#include <libsolidity/interface/GasEstimator.h>
|
2019-10-30 17:11:33 +00:00
|
|
|
#include <libsolidity/interface/StorageLayout.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
#include <libsolidity/interface/Version.h>
|
|
|
|
#include <libsolidity/parsing/Parser.h>
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2020-12-21 10:21:28 +00:00
|
|
|
#include <libsolidity/codegen/ir/Common.h>
|
2019-03-04 22:26:46 +00:00
|
|
|
#include <libsolidity/codegen/ir/IRGenerator.h>
|
|
|
|
|
2018-11-08 23:21:37 +00:00
|
|
|
#include <libyul/YulString.h>
|
2019-06-18 16:11:04 +00:00
|
|
|
#include <libyul/AsmPrinter.h>
|
2020-05-28 11:17:16 +00:00
|
|
|
#include <libyul/AsmJsonConverter.h>
|
2022-03-28 04:27:11 +00:00
|
|
|
#include <libyul/YulStack.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2021-04-27 14:53:04 +00:00
|
|
|
#include <libyul/AsmParser.h>
|
2018-11-08 23:21:37 +00:00
|
|
|
|
2018-11-23 10:31:45 +00:00
|
|
|
#include <liblangutil/Scanner.h>
|
2019-04-17 11:02:30 +00:00
|
|
|
#include <liblangutil/SemVerHandler.h>
|
2018-11-23 10:31:45 +00:00
|
|
|
|
|
|
|
#include <libevmasm/Exceptions.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/SwarmHash.h>
|
|
|
|
#include <libsolutil/IpfsHash.h>
|
|
|
|
#include <libsolutil/JSON.h>
|
2020-10-29 14:07:09 +00:00
|
|
|
#include <libsolutil/Algorithms.h>
|
2022-01-17 21:28:58 +00:00
|
|
|
#include <libsolutil/FunctionSelector.h>
|
2016-11-14 10:46:43 +00:00
|
|
|
|
|
|
|
#include <json/json.h>
|
2015-01-13 14:59:42 +00:00
|
|
|
|
2021-09-16 14:33:28 +00:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
|
2022-02-01 14:42:08 +00:00
|
|
|
#include <range/v3/view/concat.hpp>
|
|
|
|
|
2020-04-01 03:04:29 +00:00
|
|
|
#include <utility>
|
2020-10-29 14:07:09 +00:00
|
|
|
#include <map>
|
2021-09-16 14:33:28 +00:00
|
|
|
#include <limits>
|
2021-10-21 21:41:22 +00:00
|
|
|
#include <string>
|
2016-10-05 09:58:25 +00:00
|
|
|
|
2014-10-30 21:52:15 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::frontend;
|
|
|
|
|
|
|
|
using solidity::util::errinfo_comment;
|
|
|
|
using solidity::util::toHex;
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2019-04-15 13:33:39 +00:00
|
|
|
static int g_compilerStackCounts = 0;
|
|
|
|
|
2020-04-01 03:04:29 +00:00
|
|
|
CompilerStack::CompilerStack(ReadCallback::Callback _readFile):
|
|
|
|
m_readFile{std::move(_readFile)},
|
2019-04-15 13:33:39 +00:00
|
|
|
m_errorReporter{m_errorList}
|
|
|
|
{
|
|
|
|
// Because TypeProvider is currently a singleton API, we must ensure that
|
|
|
|
// no more than one entity is actually using it at a time.
|
|
|
|
solAssert(g_compilerStackCounts == 0, "You shall not have another CompilerStack aside me.");
|
|
|
|
++g_compilerStackCounts;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompilerStack::~CompilerStack()
|
|
|
|
{
|
|
|
|
--g_compilerStackCounts;
|
|
|
|
TypeProvider::reset();
|
|
|
|
}
|
|
|
|
|
2020-10-29 14:07:09 +00:00
|
|
|
void CompilerStack::createAndAssignCallGraphs()
|
|
|
|
{
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
{
|
|
|
|
if (!source->ast)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (ContractDefinition const* contract: ASTNode::filteredNodes<ContractDefinition>(source->ast->nodes()))
|
|
|
|
{
|
|
|
|
ContractDefinitionAnnotation& annotation =
|
|
|
|
m_contracts.at(contract->fullyQualifiedName()).contract->annotation();
|
|
|
|
|
|
|
|
annotation.creationCallGraph = make_unique<CallGraph>(
|
|
|
|
FunctionCallGraphBuilder::buildCreationGraph(*contract)
|
|
|
|
);
|
|
|
|
annotation.deployedCallGraph = make_unique<CallGraph>(
|
|
|
|
FunctionCallGraphBuilder::buildDeployedGraph(
|
|
|
|
*contract,
|
|
|
|
**annotation.creationCallGraph
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
solAssert(annotation.contractDependencies.empty(), "contractDependencies expected to be empty?!");
|
|
|
|
|
|
|
|
annotation.contractDependencies = annotation.creationCallGraph->get()->bytecodeDependency;
|
|
|
|
|
|
|
|
for (auto const& [dependencyContract, referencee]: annotation.deployedCallGraph->get()->bytecodeDependency)
|
|
|
|
annotation.contractDependencies.emplace(dependencyContract, referencee);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerStack::findAndReportCyclicContractDependencies()
|
|
|
|
{
|
|
|
|
// Cycles we found, used to avoid duplicate reports for the same reference
|
|
|
|
set<ASTNode const*, ASTNode::CompareByID> foundCycles;
|
|
|
|
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
{
|
|
|
|
if (!source->ast)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (ContractDefinition const* contractDefinition: ASTNode::filteredNodes<ContractDefinition>(source->ast->nodes()))
|
|
|
|
{
|
|
|
|
util::CycleDetector<ContractDefinition> cycleDetector{[&](
|
|
|
|
ContractDefinition const& _contract,
|
|
|
|
util::CycleDetector<ContractDefinition>& _cycleDetector,
|
|
|
|
size_t _depth
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// No specific reason for exactly that number, just a limit we're unlikely to hit.
|
|
|
|
if (_depth >= 256)
|
|
|
|
m_errorReporter.fatalTypeError(
|
|
|
|
7864_error,
|
|
|
|
_contract.location(),
|
|
|
|
"Contract dependencies exhausting cyclic dependency validator"
|
|
|
|
);
|
|
|
|
|
|
|
|
for (auto& [dependencyContract, referencee]: _contract.annotation().contractDependencies)
|
|
|
|
if (_cycleDetector.run(*dependencyContract))
|
|
|
|
return;
|
|
|
|
}};
|
|
|
|
|
|
|
|
ContractDefinition const* cycle = cycleDetector.run(*contractDefinition);
|
|
|
|
|
|
|
|
if (!cycle)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ASTNode const* referencee = contractDefinition->annotation().contractDependencies.at(cycle);
|
|
|
|
|
|
|
|
if (foundCycles.find(referencee) != foundCycles.end())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SecondarySourceLocation secondaryLocation{};
|
|
|
|
secondaryLocation.append("Referenced contract is here:"s, cycle->location());
|
|
|
|
|
|
|
|
m_errorReporter.typeError(
|
|
|
|
7813_error,
|
|
|
|
referencee->location(),
|
|
|
|
secondaryLocation,
|
|
|
|
"Circular reference to contract bytecode either via \"new\" or \"type(...).creationCode\" / \"type(...).runtimeCode\"."
|
|
|
|
);
|
|
|
|
|
|
|
|
foundCycles.emplace(referencee);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 12:46:19 +00:00
|
|
|
void CompilerStack::setRemappings(vector<ImportRemapper::Remapping> _remappings)
|
2016-06-07 17:44:32 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set remappings before parsing.");
|
2016-06-07 17:44:32 +00:00
|
|
|
for (auto const& remapping: _remappings)
|
2018-08-09 18:37:49 +00:00
|
|
|
solAssert(!remapping.prefix.empty(), "");
|
2022-08-23 17:28:45 +00:00
|
|
|
m_importRemapper.setRemappings(std::move(_remappings));
|
2016-06-07 17:44:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 18:59:19 +00:00
|
|
|
void CompilerStack::setViaIR(bool _viaIR)
|
|
|
|
{
|
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set viaIR before parsing.");
|
2020-10-28 18:59:19 +00:00
|
|
|
m_viaIR = _viaIR;
|
|
|
|
}
|
|
|
|
|
2019-02-25 14:29:57 +00:00
|
|
|
void CompilerStack::setEVMVersion(langutil::EVMVersion _version)
|
2018-02-21 22:43:40 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set EVM version before parsing.");
|
2018-02-21 22:43:40 +00:00
|
|
|
m_evmVersion = _version;
|
|
|
|
}
|
|
|
|
|
2020-11-02 20:20:20 +00:00
|
|
|
void CompilerStack::setModelCheckerSettings(ModelCheckerSettings _settings)
|
2020-10-14 15:44:40 +00:00
|
|
|
{
|
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set model checking settings before parsing.");
|
2020-11-02 20:20:20 +00:00
|
|
|
m_modelCheckerSettings = _settings;
|
2020-10-14 15:44:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
void CompilerStack::setLibraries(std::map<std::string, util::h160> const& _libraries)
|
2019-02-03 00:32:34 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set libraries before parsing.");
|
2019-02-03 00:32:34 +00:00
|
|
|
m_libraries = _libraries;
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:25:37 +00:00
|
|
|
void CompilerStack::setOptimiserSettings(bool _optimize, size_t _runs)
|
2017-07-17 11:12:00 +00:00
|
|
|
{
|
2019-03-20 15:15:07 +00:00
|
|
|
OptimiserSettings settings = _optimize ? OptimiserSettings::standard() : OptimiserSettings::minimal();
|
2017-07-17 11:12:00 +00:00
|
|
|
settings.expectedExecutionsPerDeployment = _runs;
|
|
|
|
setOptimiserSettings(std::move(settings));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerStack::setOptimiserSettings(OptimiserSettings _settings)
|
2019-02-03 00:32:34 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set optimiser settings before parsing.");
|
2017-07-17 11:12:00 +00:00
|
|
|
m_optimiserSettings = std::move(_settings);
|
2019-02-03 00:32:34 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 14:44:36 +00:00
|
|
|
void CompilerStack::setRevertStringBehaviour(RevertStrings _revertStrings)
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set revert string settings before parsing.");
|
2021-09-23 15:18:13 +00:00
|
|
|
solUnimplementedAssert(_revertStrings != RevertStrings::VerboseDebug);
|
2019-09-18 14:44:36 +00:00
|
|
|
m_revertStrings = _revertStrings;
|
|
|
|
}
|
|
|
|
|
2019-02-03 00:32:34 +00:00
|
|
|
void CompilerStack::useMetadataLiteralSources(bool _metadataLiteralSources)
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set use literal sources before parsing.");
|
2019-02-03 00:32:34 +00:00
|
|
|
m_metadataLiteralSources = _metadataLiteralSources;
|
|
|
|
}
|
|
|
|
|
2019-09-06 17:11:07 +00:00
|
|
|
void CompilerStack::setMetadataHash(MetadataHash _metadataHash)
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set metadata hash before parsing.");
|
2019-09-06 17:11:07 +00:00
|
|
|
m_metadataHash = _metadataHash;
|
|
|
|
}
|
|
|
|
|
2021-09-17 18:15:19 +00:00
|
|
|
void CompilerStack::selectDebugInfo(DebugInfoSelection _debugInfoSelection)
|
|
|
|
{
|
|
|
|
if (m_stackState >= CompilationSuccessful)
|
2022-03-07 04:25:35 +00:00
|
|
|
BOOST_THROW_EXCEPTION(CompilerError() << util::errinfo_comment("Must select debug info components before compilation."));
|
2021-09-17 18:15:19 +00:00
|
|
|
m_debugInfoSelection = _debugInfoSelection;
|
|
|
|
}
|
|
|
|
|
2019-02-03 00:32:34 +00:00
|
|
|
void CompilerStack::addSMTLib2Response(h256 const& _hash, string const& _response)
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= ParsedAndImported)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must add SMTLib2 responses before parsing.");
|
2019-02-03 00:32:34 +00:00
|
|
|
m_smtlib2Responses[_hash] = _response;
|
|
|
|
}
|
|
|
|
|
2019-03-25 15:16:25 +00:00
|
|
|
void CompilerStack::reset(bool _keepSettings)
|
2015-05-19 22:27:07 +00:00
|
|
|
{
|
2019-03-25 15:16:25 +00:00
|
|
|
m_stackState = Empty;
|
2019-05-28 15:24:54 +00:00
|
|
|
m_hasError = false;
|
2019-03-25 15:16:25 +00:00
|
|
|
m_sources.clear();
|
2017-10-13 13:19:53 +00:00
|
|
|
m_smtlib2Responses.clear();
|
|
|
|
m_unhandledSMTLib2Queries.clear();
|
2019-03-25 15:16:25 +00:00
|
|
|
if (!_keepSettings)
|
|
|
|
{
|
2021-03-29 12:46:19 +00:00
|
|
|
m_importRemapper.clear();
|
2019-03-25 15:16:25 +00:00
|
|
|
m_libraries.clear();
|
2020-10-28 18:59:19 +00:00
|
|
|
m_viaIR = false;
|
2019-03-25 15:16:25 +00:00
|
|
|
m_evmVersion = langutil::EVMVersion();
|
2020-11-02 20:20:20 +00:00
|
|
|
m_modelCheckerSettings = ModelCheckerSettings{};
|
2019-03-04 22:26:46 +00:00
|
|
|
m_generateIR = false;
|
2019-12-09 16:36:12 +00:00
|
|
|
m_generateEwasm = false;
|
2019-09-18 14:44:36 +00:00
|
|
|
m_revertStrings = RevertStrings::Default;
|
2019-03-25 15:16:25 +00:00
|
|
|
m_optimiserSettings = OptimiserSettings::minimal();
|
|
|
|
m_metadataLiteralSources = false;
|
2019-09-06 17:11:07 +00:00
|
|
|
m_metadataHash = MetadataHash::IPFS;
|
2020-07-08 20:08:50 +00:00
|
|
|
m_stopAfter = State::CompilationSuccessful;
|
2019-03-25 15:16:25 +00:00
|
|
|
}
|
2015-05-19 22:27:07 +00:00
|
|
|
m_globalContext.reset();
|
|
|
|
m_sourceOrder.clear();
|
|
|
|
m_contracts.clear();
|
2017-05-11 13:26:35 +00:00
|
|
|
m_errorReporter.clear();
|
2019-04-15 13:33:39 +00:00
|
|
|
TypeProvider::reset();
|
2015-05-19 22:27:07 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 23:48:37 +00:00
|
|
|
void CompilerStack::setSources(StringMap _sources)
|
2019-03-20 17:57:40 +00:00
|
|
|
{
|
|
|
|
if (m_stackState == SourcesSet)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Cannot change sources once set.");
|
2019-03-20 17:57:40 +00:00
|
|
|
if (m_stackState != Empty)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must set sources before parsing.");
|
2019-04-06 23:48:37 +00:00
|
|
|
for (auto source: _sources)
|
2021-07-14 10:53:39 +00:00
|
|
|
m_sources[source.first].charStream = make_unique<CharStream>(/*content*/std::move(source.second), /*name*/source.first);
|
2019-03-20 17:57:40 +00:00
|
|
|
m_stackState = SourcesSet;
|
|
|
|
}
|
|
|
|
|
2015-09-21 17:43:56 +00:00
|
|
|
bool CompilerStack::parse()
|
2014-11-11 16:41:48 +00:00
|
|
|
{
|
2018-09-17 14:13:21 +00:00
|
|
|
if (m_stackState != SourcesSet)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must call parse only after the SourcesSet state.");
|
2017-05-11 13:26:35 +00:00
|
|
|
m_errorReporter.clear();
|
2015-09-21 17:43:56 +00:00
|
|
|
|
2016-10-05 09:58:25 +00:00
|
|
|
if (SemVerVersion{string(VersionString)}.isPrerelease())
|
2020-05-05 22:38:28 +00:00
|
|
|
m_errorReporter.warning(3805_error, "This is a pre-release compiler version, please do not use it in production.");
|
2016-10-05 09:58:25 +00:00
|
|
|
|
2019-09-11 19:16:35 +00:00
|
|
|
Parser parser{m_errorReporter, m_evmVersion, m_parserErrorRecovery};
|
|
|
|
|
2016-01-12 00:04:39 +00:00
|
|
|
vector<string> sourcesToParse;
|
|
|
|
for (auto const& s: m_sources)
|
|
|
|
sourcesToParse.push_back(s.first);
|
2020-07-08 20:08:50 +00:00
|
|
|
|
2016-01-12 00:04:39 +00:00
|
|
|
for (size_t i = 0; i < sourcesToParse.size(); ++i)
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
2016-01-12 00:04:39 +00:00
|
|
|
string const& path = sourcesToParse[i];
|
|
|
|
Source& source = m_sources[path];
|
2021-07-14 10:53:39 +00:00
|
|
|
source.ast = parser.parse(*source.charStream);
|
2016-01-12 00:04:39 +00:00
|
|
|
if (!source.ast)
|
2021-06-30 12:48:45 +00:00
|
|
|
solAssert(Error::containsErrors(m_errorReporter.errors()), "Parser returned null but did not report error.");
|
2015-12-15 14:46:03 +00:00
|
|
|
else
|
2016-01-12 00:04:39 +00:00
|
|
|
{
|
|
|
|
source.ast->annotation().path = path;
|
2021-10-28 13:30:31 +00:00
|
|
|
|
|
|
|
for (auto const& import: ASTNode::filteredNodes<ImportDirective>(source.ast->nodes()))
|
|
|
|
{
|
|
|
|
solAssert(!import->path().empty(), "Import path cannot be empty.");
|
|
|
|
|
|
|
|
// The current value of `path` is the absolute path as seen from this source file.
|
|
|
|
// We first have to apply remappings before we can store the actual absolute path
|
|
|
|
// as seen globally.
|
|
|
|
import->annotation().absolutePath = applyRemapping(util::absolutePath(
|
|
|
|
import->path(),
|
|
|
|
path
|
|
|
|
), path);
|
|
|
|
}
|
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stopAfter >= ParsedAndImported)
|
2021-10-28 13:30:31 +00:00
|
|
|
for (auto const& newSource: loadMissingSources(*source.ast))
|
2020-07-08 20:08:50 +00:00
|
|
|
{
|
|
|
|
string const& newPath = newSource.first;
|
|
|
|
string const& newContents = newSource.second;
|
2021-07-14 10:53:39 +00:00
|
|
|
m_sources[newPath].charStream = make_shared<CharStream>(newContents, newPath);
|
2020-07-08 20:08:50 +00:00
|
|
|
sourcesToParse.push_back(newPath);
|
|
|
|
}
|
2016-01-12 00:04:39 +00:00
|
|
|
}
|
2014-12-03 16:45:12 +00:00
|
|
|
}
|
2019-05-28 15:24:54 +00:00
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stopAfter <= Parsed)
|
|
|
|
m_stackState = Parsed;
|
|
|
|
else
|
|
|
|
m_stackState = ParsedAndImported;
|
2021-06-30 12:48:45 +00:00
|
|
|
if (Error::containsErrors(m_errorReporter.errors()))
|
2019-05-28 15:24:54 +00:00
|
|
|
m_hasError = true;
|
2020-07-08 20:08:50 +00:00
|
|
|
|
|
|
|
storeContractDefinitions();
|
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
return !m_hasError;
|
2017-04-26 15:03:36 +00:00
|
|
|
}
|
2015-10-14 18:37:41 +00:00
|
|
|
|
2019-09-11 19:16:35 +00:00
|
|
|
void CompilerStack::importASTs(map<string, Json::Value> const& _sources)
|
|
|
|
{
|
|
|
|
if (m_stackState != Empty)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must call importASTs only before the SourcesSet state.");
|
2019-09-11 19:16:35 +00:00
|
|
|
m_sourceJsons = _sources;
|
|
|
|
map<string, ASTPointer<SourceUnit>> reconstructedSources = ASTJsonImporter(m_evmVersion).jsonToSourceUnit(m_sourceJsons);
|
|
|
|
for (auto& src: reconstructedSources)
|
|
|
|
{
|
|
|
|
string const& path = src.first;
|
|
|
|
Source source;
|
|
|
|
source.ast = src.second;
|
2021-07-14 10:53:39 +00:00
|
|
|
source.charStream = make_shared<CharStream>(
|
|
|
|
util::jsonCompactPrint(m_sourceJsons[src.first]),
|
2022-06-24 23:37:52 +00:00
|
|
|
src.first,
|
|
|
|
true // imported from AST
|
2021-07-14 10:53:39 +00:00
|
|
|
);
|
2022-08-23 17:28:45 +00:00
|
|
|
m_sources[path] = std::move(source);
|
2019-09-11 19:16:35 +00:00
|
|
|
}
|
2020-07-08 20:08:50 +00:00
|
|
|
m_stackState = ParsedAndImported;
|
2019-09-11 19:16:35 +00:00
|
|
|
m_importedSources = true;
|
2020-07-08 20:08:50 +00:00
|
|
|
|
|
|
|
storeContractDefinitions();
|
2019-09-11 19:16:35 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 15:03:36 +00:00
|
|
|
bool CompilerStack::analyze()
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState != ParsedAndImported || m_stackState >= AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Must call analyze only after parsing was performed.");
|
2014-12-03 16:45:12 +00:00
|
|
|
resolveImports();
|
|
|
|
|
2020-08-06 12:46:04 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast)
|
|
|
|
Scoper::assignScopes(*source->ast);
|
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
bool noErrors = true;
|
2018-04-05 12:23:36 +00:00
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
try
|
|
|
|
{
|
2019-05-27 12:01:53 +00:00
|
|
|
SyntaxChecker syntaxChecker(m_errorReporter, m_optimiserSettings.runYulOptimiser);
|
2017-03-03 11:51:51 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !syntaxChecker.checkSyntax(*source->ast))
|
2017-03-03 11:51:51 +00:00
|
|
|
noErrors = false;
|
|
|
|
|
2018-04-05 12:25:51 +00:00
|
|
|
m_globalContext = make_shared<GlobalContext>();
|
2020-05-14 09:56:10 +00:00
|
|
|
// We need to keep the same resolver during the whole process.
|
|
|
|
NameAndTypeResolver resolver(*m_globalContext, m_evmVersion, m_errorReporter);
|
2017-08-28 17:48:34 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !resolver.registerDeclarations(*source->ast))
|
2018-04-05 12:25:51 +00:00
|
|
|
return false;
|
2017-08-28 17:48:34 +00:00
|
|
|
|
2018-04-05 12:25:51 +00:00
|
|
|
map<string, SourceUnit const*> sourceUnitsByName;
|
|
|
|
for (auto& source: m_sources)
|
|
|
|
sourceUnitsByName[source.first] = source.second.ast.get();
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !resolver.performImports(*source->ast, sourceUnitsByName))
|
2018-04-05 12:25:51 +00:00
|
|
|
return false;
|
2017-08-28 17:48:34 +00:00
|
|
|
|
2020-10-07 22:41:04 +00:00
|
|
|
resolver.warnHomonymDeclarations();
|
|
|
|
|
2021-05-26 15:37:49 +00:00
|
|
|
DocStringTagParser docStringTagParser(m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !docStringTagParser.parseDocStrings(*source->ast))
|
|
|
|
noErrors = false;
|
|
|
|
|
|
|
|
// Requires DocStringTagParser
|
2020-06-11 15:17:07 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !resolver.resolveNamesAndTypes(*source->ast))
|
|
|
|
return false;
|
|
|
|
|
2020-04-07 17:31:48 +00:00
|
|
|
DeclarationTypeChecker declarationTypeChecker(m_errorReporter, m_evmVersion);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !declarationTypeChecker.check(*source->ast))
|
|
|
|
return false;
|
|
|
|
|
2021-05-26 15:37:49 +00:00
|
|
|
// Requires DeclarationTypeChecker to have run
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !docStringTagParser.validateDocStringsUsingTypes(*source->ast))
|
|
|
|
noErrors = false;
|
|
|
|
|
2018-11-29 16:35:14 +00:00
|
|
|
// Next, we check inheritance, overrides, function collisions and other things at
|
|
|
|
// contract or function level.
|
|
|
|
// This also calculates whether a contract is abstract, which is needed by the
|
|
|
|
// type checker.
|
|
|
|
ContractLevelChecker contractLevelChecker(m_errorReporter);
|
2020-09-21 13:36:00 +00:00
|
|
|
|
2018-11-29 16:35:14 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
2020-09-21 13:36:00 +00:00
|
|
|
if (auto sourceAst = source->ast)
|
|
|
|
noErrors = contractLevelChecker.check(*sourceAst);
|
2018-11-29 16:35:14 +00:00
|
|
|
|
2021-01-29 19:15:26 +00:00
|
|
|
// Now we run full type checks that go down to the expression level. This
|
2018-11-29 16:35:14 +00:00
|
|
|
// cannot be done earlier, because we need cross-contract types and information
|
|
|
|
// about whether a contract is abstract for the `new` expression.
|
|
|
|
// This populates the `type` annotation for all expressions.
|
2018-06-19 17:30:38 +00:00
|
|
|
//
|
|
|
|
// Note: this does not resolve overloaded functions. In order to do that, types of arguments are needed,
|
|
|
|
// which is only done one step later.
|
2018-04-05 12:25:51 +00:00
|
|
|
TypeChecker typeChecker(m_evmVersion, m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2020-06-11 15:17:07 +00:00
|
|
|
if (source->ast && !typeChecker.checkTypeRequirements(*source->ast))
|
|
|
|
noErrors = false;
|
2018-04-05 12:25:51 +00:00
|
|
|
|
2022-04-28 01:59:27 +00:00
|
|
|
if (noErrors)
|
|
|
|
{
|
|
|
|
// Requires ContractLevelChecker and TypeChecker
|
|
|
|
DocStringAnalyser docStringAnalyser(m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !docStringAnalyser.analyseDocStrings(*source->ast))
|
|
|
|
noErrors = false;
|
|
|
|
}
|
|
|
|
|
2018-04-05 12:25:51 +00:00
|
|
|
if (noErrors)
|
|
|
|
{
|
2018-06-19 17:30:38 +00:00
|
|
|
// Checks that can only be done when all types of all AST nodes are known.
|
2018-04-05 12:25:51 +00:00
|
|
|
PostTypeChecker postTypeChecker(m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !postTypeChecker.check(*source->ast))
|
2018-04-05 12:25:51 +00:00
|
|
|
noErrors = false;
|
2020-09-29 14:23:45 +00:00
|
|
|
if (!postTypeChecker.finalize())
|
|
|
|
noErrors = false;
|
2018-04-05 12:25:51 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 10:43:43 +00:00
|
|
|
// Create & assign callgraphs and check for contract dependency cycles
|
|
|
|
if (noErrors)
|
|
|
|
{
|
|
|
|
createAndAssignCallGraphs();
|
|
|
|
findAndReportCyclicContractDependencies();
|
|
|
|
}
|
|
|
|
|
2021-03-18 12:28:04 +00:00
|
|
|
if (noErrors)
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast && !PostTypeContractLevelChecker{m_errorReporter}.check(*source->ast))
|
|
|
|
noErrors = false;
|
|
|
|
|
2020-03-10 17:15:50 +00:00
|
|
|
// Check that immutable variables are never read in c'tors and assigned
|
|
|
|
// exactly once
|
|
|
|
if (noErrors)
|
|
|
|
for (Source const* source: m_sourceOrder)
|
|
|
|
if (source->ast)
|
|
|
|
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
ImmutableValidator(m_errorReporter, *contract).analyze();
|
|
|
|
|
2018-05-04 13:58:10 +00:00
|
|
|
if (noErrors)
|
|
|
|
{
|
2018-06-19 17:30:38 +00:00
|
|
|
// Control flow graph generator and analyzer. It can check for issues such as
|
|
|
|
// variable is used before it is assigned to.
|
2018-05-04 13:58:10 +00:00
|
|
|
CFG cfg(m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !cfg.constructFlow(*source->ast))
|
2018-05-04 13:58:10 +00:00
|
|
|
noErrors = false;
|
2018-05-04 13:58:24 +00:00
|
|
|
|
|
|
|
if (noErrors)
|
|
|
|
{
|
2020-10-28 19:32:46 +00:00
|
|
|
ControlFlowRevertPruner pruner(cfg);
|
|
|
|
pruner.run();
|
|
|
|
|
2018-05-04 13:58:24 +00:00
|
|
|
ControlFlowAnalyzer controlFlowAnalyzer(cfg, m_errorReporter);
|
2020-10-28 19:32:46 +00:00
|
|
|
if (!controlFlowAnalyzer.run())
|
|
|
|
noErrors = false;
|
2018-05-04 13:58:24 +00:00
|
|
|
}
|
2018-05-04 13:58:10 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 12:25:51 +00:00
|
|
|
if (noErrors)
|
|
|
|
{
|
2018-06-19 17:30:38 +00:00
|
|
|
// Checks for common mistakes. Only generates warnings.
|
2018-04-05 12:25:51 +00:00
|
|
|
StaticAnalyzer staticAnalyzer(m_errorReporter);
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast && !staticAnalyzer.analyze(*source->ast))
|
2018-04-05 12:25:51 +00:00
|
|
|
noErrors = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (noErrors)
|
|
|
|
{
|
2018-06-19 17:30:38 +00:00
|
|
|
// Check for state mutability in every function.
|
2018-04-05 12:25:51 +00:00
|
|
|
vector<ASTPointer<ASTNode>> ast;
|
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast)
|
|
|
|
ast.push_back(source->ast);
|
2018-04-05 12:25:51 +00:00
|
|
|
|
|
|
|
if (!ViewPureChecker(ast, m_errorReporter).check())
|
|
|
|
noErrors = false;
|
|
|
|
}
|
2017-07-06 09:05:05 +00:00
|
|
|
|
2018-04-05 12:25:51 +00:00
|
|
|
if (noErrors)
|
|
|
|
{
|
2021-05-19 15:35:19 +00:00
|
|
|
ModelChecker modelChecker(m_errorReporter, *this, m_smtlib2Responses, m_modelCheckerSettings, m_readFile);
|
2022-03-07 04:25:35 +00:00
|
|
|
auto allSources = util::applyMap(m_sourceOrder, [](Source const* _source) { return _source->ast; });
|
2021-04-15 10:31:45 +00:00
|
|
|
modelChecker.enableAllEnginesIfPragmaPresent(allSources);
|
|
|
|
modelChecker.checkRequestedSourcesAndContracts(allSources);
|
2018-04-05 12:25:51 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
2019-12-11 11:46:47 +00:00
|
|
|
if (source->ast)
|
|
|
|
modelChecker.analyze(*source->ast);
|
2019-06-25 10:46:17 +00:00
|
|
|
m_unhandledSMTLib2Queries += modelChecker.unhandledQueries();
|
2018-04-05 12:25:51 +00:00
|
|
|
}
|
2018-04-05 12:23:36 +00:00
|
|
|
}
|
2019-05-28 15:24:54 +00:00
|
|
|
catch (FatalError const&)
|
2018-04-05 12:23:36 +00:00
|
|
|
{
|
|
|
|
if (m_errorReporter.errors().empty())
|
|
|
|
throw; // Something is weird here, rather throw again.
|
|
|
|
noErrors = false;
|
|
|
|
}
|
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
m_stackState = AnalysisPerformed;
|
|
|
|
if (!noErrors)
|
|
|
|
m_hasError = true;
|
|
|
|
|
|
|
|
return !m_hasError;
|
2014-11-11 16:41:48 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
bool CompilerStack::parseAndAnalyze(State _stopAfter)
|
2017-04-26 15:03:36 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
m_stopAfter = _stopAfter;
|
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
bool success = parse();
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= m_stopAfter)
|
|
|
|
return success;
|
2019-05-28 15:24:54 +00:00
|
|
|
if (success || m_parserErrorRecovery)
|
|
|
|
success = analyze();
|
|
|
|
return success;
|
2017-04-26 15:03:36 +00:00
|
|
|
}
|
|
|
|
|
2019-06-28 14:14:31 +00:00
|
|
|
bool CompilerStack::isRequestedSource(string const& _sourceName) const
|
2017-09-13 18:43:16 +00:00
|
|
|
{
|
|
|
|
return
|
|
|
|
m_requestedContractNames.empty() ||
|
2019-06-28 14:14:31 +00:00
|
|
|
m_requestedContractNames.count("") ||
|
|
|
|
m_requestedContractNames.count(_sourceName);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CompilerStack::isRequestedContract(ContractDefinition const& _contract) const
|
|
|
|
{
|
|
|
|
/// In case nothing was specified in outputSelection.
|
|
|
|
if (m_requestedContractNames.empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (auto const& key: vector<string>{"", _contract.sourceUnitName()})
|
|
|
|
{
|
|
|
|
auto const& it = m_requestedContractNames.find(key);
|
|
|
|
if (it != m_requestedContractNames.end())
|
|
|
|
if (it->second.count(_contract.name()) || it->second.count(""))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2017-09-13 18:43:16 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
bool CompilerStack::compile(State _stopAfter)
|
2014-12-03 17:52:28 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
m_stopAfter = _stopAfter;
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2020-07-08 20:08:50 +00:00
|
|
|
if (!parseAndAnalyze(_stopAfter))
|
2015-09-21 17:43:56 +00:00
|
|
|
return false;
|
2015-09-16 14:56:30 +00:00
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState >= m_stopAfter)
|
|
|
|
return true;
|
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_hasError)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Called compile with errors.");
|
2019-05-28 15:24:54 +00:00
|
|
|
|
2018-06-19 17:30:38 +00:00
|
|
|
// Only compile contracts individually which have been requested.
|
2019-01-10 15:44:31 +00:00
|
|
|
map<ContractDefinition const*, shared_ptr<Compiler const>> otherCompilers;
|
2020-10-14 10:42:44 +00:00
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
for (Source const* source: m_sourceOrder)
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
|
2015-10-07 13:57:17 +00:00
|
|
|
if (auto contract = dynamic_cast<ContractDefinition const*>(node.get()))
|
2017-09-13 18:43:16 +00:00
|
|
|
if (isRequestedContract(*contract))
|
2019-03-04 22:26:46 +00:00
|
|
|
{
|
2020-07-21 13:20:05 +00:00
|
|
|
try
|
|
|
|
{
|
2020-10-28 18:59:19 +00:00
|
|
|
if (m_viaIR || m_generateIR || m_generateEwasm)
|
2020-09-11 10:02:10 +00:00
|
|
|
generateIR(*contract);
|
2020-10-28 18:59:19 +00:00
|
|
|
if (m_generateEvmBytecode)
|
|
|
|
{
|
|
|
|
if (m_viaIR)
|
|
|
|
generateEVMFromIR(*contract);
|
|
|
|
else
|
|
|
|
compileContract(*contract, otherCompilers);
|
|
|
|
}
|
2020-09-11 10:02:10 +00:00
|
|
|
if (m_generateEwasm)
|
|
|
|
generateEwasm(*contract);
|
2020-07-21 13:20:05 +00:00
|
|
|
}
|
|
|
|
catch (Error const& _error)
|
|
|
|
{
|
|
|
|
if (_error.type() != Error::Type::CodeGenerationError)
|
|
|
|
throw;
|
|
|
|
m_errorReporter.error(_error.errorId(), _error.type(), SourceLocation(), _error.what());
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-11 10:02:10 +00:00
|
|
|
catch (UnimplementedFeatureError const& _unimplementedError)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
SourceLocation const* sourceLocation =
|
|
|
|
boost::get_error_info<langutil::errinfo_sourceLocation>(_unimplementedError)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
string const* comment = _unimplementedError.comment();
|
|
|
|
m_errorReporter.error(
|
|
|
|
1834_error,
|
|
|
|
Error::Type::CodeGenerationError,
|
|
|
|
*sourceLocation,
|
|
|
|
"Unimplemented feature error" +
|
|
|
|
((comment && !comment->empty()) ? ": " + *comment : string{}) +
|
|
|
|
" in " +
|
|
|
|
_unimplementedError.lineInfo()
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw;
|
|
|
|
}
|
2019-03-04 22:26:46 +00:00
|
|
|
}
|
2017-04-28 13:24:59 +00:00
|
|
|
m_stackState = CompilationSuccessful;
|
2018-08-06 12:09:19 +00:00
|
|
|
this->link();
|
2015-09-21 17:43:56 +00:00
|
|
|
return true;
|
2014-11-11 16:41:48 +00:00
|
|
|
}
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2016-11-14 10:46:43 +00:00
|
|
|
void CompilerStack::link()
|
2015-09-11 17:35:01 +00:00
|
|
|
{
|
2018-08-06 12:09:19 +00:00
|
|
|
solAssert(m_stackState >= CompilationSuccessful, "");
|
2015-09-11 17:35:01 +00:00
|
|
|
for (auto& contract: m_contracts)
|
|
|
|
{
|
2016-11-14 10:46:43 +00:00
|
|
|
contract.second.object.link(m_libraries);
|
|
|
|
contract.second.runtimeObject.link(m_libraries);
|
2015-09-11 17:35:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 21:16:02 +00:00
|
|
|
vector<string> CompilerStack::contractNames() const
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState < Parsed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Parsing was not successful.");
|
2017-07-26 21:16:02 +00:00
|
|
|
vector<string> contractNames;
|
|
|
|
for (auto const& contract: m_contracts)
|
|
|
|
contractNames.push_back(contract.first);
|
|
|
|
return contractNames;
|
|
|
|
}
|
|
|
|
|
2021-03-15 22:52:24 +00:00
|
|
|
string const CompilerStack::lastContractName(optional<string> const& _sourceName) const
|
2018-08-06 12:00:21 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Parsing was not successful.");
|
2018-08-06 12:00:21 +00:00
|
|
|
// try to find some user-supplied contract
|
|
|
|
string contractName;
|
|
|
|
for (auto const& it: m_sources)
|
2021-03-15 22:52:24 +00:00
|
|
|
if (_sourceName.value_or(it.first) == it.first)
|
|
|
|
for (auto const* contract: ASTNode::filteredNodes<ContractDefinition>(it.second.ast->nodes()))
|
2018-08-06 12:00:21 +00:00
|
|
|
contractName = contract->fullyQualifiedName();
|
|
|
|
return contractName;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::AssemblyItems const* CompilerStack::assemblyItems(string const& _contractName) const
|
2015-03-02 00:13:10 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
Contract const& currentContract = contract(_contractName);
|
2020-11-17 23:05:18 +00:00
|
|
|
return currentContract.evmAssembly ? ¤tContract.evmAssembly->items() : nullptr;
|
2015-03-02 00:13:10 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::AssemblyItems const* CompilerStack::runtimeAssemblyItems(string const& _contractName) const
|
2015-03-02 00:13:10 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
Contract const& currentContract = contract(_contractName);
|
2020-11-17 23:05:18 +00:00
|
|
|
return currentContract.evmRuntimeAssembly ? ¤tContract.evmRuntimeAssembly->items() : nullptr;
|
2015-03-02 00:13:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-28 11:17:16 +00:00
|
|
|
Json::Value CompilerStack::generatedSources(string const& _contractName, bool _runtime) const
|
|
|
|
{
|
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2020-05-28 11:17:16 +00:00
|
|
|
|
|
|
|
Contract const& c = contract(_contractName);
|
|
|
|
util::LazyInit<Json::Value const> const& sources =
|
|
|
|
_runtime ?
|
|
|
|
c.runtimeGeneratedSources :
|
|
|
|
c.generatedSources;
|
|
|
|
return sources.init([&]{
|
|
|
|
Json::Value sources{Json::arrayValue};
|
|
|
|
// If there is no compiler, then no bytecode was generated and thus no
|
2021-07-15 14:06:38 +00:00
|
|
|
// sources were generated (or we compiled "via IR").
|
2020-05-28 11:17:16 +00:00
|
|
|
if (c.compiler)
|
|
|
|
{
|
2021-07-15 14:06:38 +00:00
|
|
|
solAssert(!m_viaIR, "");
|
2020-05-28 11:17:16 +00:00
|
|
|
string source =
|
|
|
|
_runtime ?
|
|
|
|
c.compiler->runtimeGeneratedYulUtilityCode() :
|
|
|
|
c.compiler->generatedYulUtilityCode();
|
|
|
|
if (!source.empty())
|
|
|
|
{
|
|
|
|
string sourceName = CompilerContext::yulUtilityFileName();
|
|
|
|
unsigned sourceIndex = sourceIndices()[sourceName];
|
|
|
|
ErrorList errors;
|
|
|
|
ErrorReporter errorReporter(errors);
|
2021-07-14 10:53:39 +00:00
|
|
|
CharStream charStream(source, sourceName);
|
2020-05-28 11:17:16 +00:00
|
|
|
yul::EVMDialect const& dialect = yul::EVMDialect::strictAssemblyForEVM(m_evmVersion);
|
2021-08-03 13:36:00 +00:00
|
|
|
shared_ptr<yul::Block> parserResult = yul::Parser{errorReporter, dialect}.parse(charStream);
|
2020-05-28 11:17:16 +00:00
|
|
|
solAssert(parserResult, "");
|
|
|
|
sources[0]["ast"] = yul::AsmJsonConverter{sourceIndex}(*parserResult);
|
|
|
|
sources[0]["name"] = sourceName;
|
|
|
|
sources[0]["id"] = sourceIndex;
|
|
|
|
sources[0]["language"] = "Yul";
|
2022-08-23 17:28:45 +00:00
|
|
|
sources[0]["contents"] = std::move(source);
|
2020-05-28 11:17:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sources;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
string const* CompilerStack::sourceMapping(string const& _contractName) const
|
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
Contract const& c = contract(_contractName);
|
|
|
|
if (!c.sourceMapping)
|
|
|
|
{
|
|
|
|
if (auto items = assemblyItems(_contractName))
|
2020-05-12 03:26:09 +00:00
|
|
|
c.sourceMapping.emplace(evmasm::AssemblyItem::computeSourceMapping(*items, sourceIndices()));
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
2020-05-12 03:26:09 +00:00
|
|
|
return c.sourceMapping ? &*c.sourceMapping : nullptr;
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string const* CompilerStack::runtimeSourceMapping(string const& _contractName) const
|
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
Contract const& c = contract(_contractName);
|
|
|
|
if (!c.runtimeSourceMapping)
|
|
|
|
{
|
|
|
|
if (auto items = runtimeAssemblyItems(_contractName))
|
2020-05-12 03:26:09 +00:00
|
|
|
c.runtimeSourceMapping.emplace(
|
2020-02-24 17:11:20 +00:00
|
|
|
evmasm::AssemblyItem::computeSourceMapping(*items, sourceIndices())
|
|
|
|
);
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
2020-05-12 03:26:09 +00:00
|
|
|
return c.runtimeSourceMapping ? &*c.runtimeSourceMapping : nullptr;
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 22:17:38 +00:00
|
|
|
std::string const CompilerStack::filesystemFriendlyName(string const& _contractName) const
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "No compiled contracts found.");
|
2018-08-06 11:56:28 +00:00
|
|
|
|
2016-12-11 22:17:38 +00:00
|
|
|
// Look up the contract (by its fully-qualified name)
|
|
|
|
Contract const& matchContract = m_contracts.at(_contractName);
|
|
|
|
// Check to see if it could collide on name
|
|
|
|
for (auto const& contract: m_contracts)
|
|
|
|
{
|
|
|
|
if (contract.second.contract->name() == matchContract.contract->name() &&
|
|
|
|
contract.second.contract != matchContract.contract)
|
|
|
|
{
|
|
|
|
// If it does, then return its fully-qualified name, made fs-friendly
|
|
|
|
std::string friendlyName = boost::algorithm::replace_all_copy(_contractName, "/", "_");
|
|
|
|
boost::algorithm::replace_all(friendlyName, ":", "_");
|
|
|
|
boost::algorithm::replace_all(friendlyName, ".", "_");
|
|
|
|
return friendlyName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If no collision, return the contract's name
|
2016-12-16 12:22:42 +00:00
|
|
|
return matchContract.contract->name();
|
2016-12-11 22:17:38 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 22:26:46 +00:00
|
|
|
string const& CompilerStack::yulIR(string const& _contractName) const
|
|
|
|
{
|
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2019-03-04 22:26:46 +00:00
|
|
|
|
|
|
|
return contract(_contractName).yulIR;
|
|
|
|
}
|
|
|
|
|
|
|
|
string const& CompilerStack::yulIROptimized(string const& _contractName) const
|
|
|
|
{
|
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2019-03-04 22:26:46 +00:00
|
|
|
|
|
|
|
return contract(_contractName).yulIROptimized;
|
|
|
|
}
|
|
|
|
|
2019-12-09 16:36:12 +00:00
|
|
|
string const& CompilerStack::ewasm(string const& _contractName) const
|
2019-06-18 16:11:04 +00:00
|
|
|
{
|
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2019-06-18 16:11:04 +00:00
|
|
|
|
2019-12-09 16:36:12 +00:00
|
|
|
return contract(_contractName).ewasm;
|
2019-06-18 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::LinkerObject const& CompilerStack::ewasmObject(string const& _contractName) const
|
2019-10-31 17:42:14 +00:00
|
|
|
{
|
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2019-10-31 17:42:14 +00:00
|
|
|
|
2019-12-09 16:36:12 +00:00
|
|
|
return contract(_contractName).ewasmObject;
|
2019-10-31 17:42:14 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::LinkerObject const& CompilerStack::object(string const& _contractName) const
|
2014-11-11 16:41:48 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2015-09-10 10:01:05 +00:00
|
|
|
return contract(_contractName).object;
|
2014-11-11 16:41:48 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::LinkerObject const& CompilerStack::runtimeObject(string const& _contractName) const
|
2015-01-13 14:59:42 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2015-09-10 10:01:05 +00:00
|
|
|
return contract(_contractName).runtimeObject;
|
2015-01-13 14:59:42 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 00:35:23 +00:00
|
|
|
/// TODO: cache this string
|
2021-03-17 11:13:57 +00:00
|
|
|
string CompilerStack::assemblyString(string const& _contractName, StringMap const& _sourceCodes) const
|
2014-11-11 16:41:48 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
Contract const& currentContract = contract(_contractName);
|
2020-11-17 23:05:18 +00:00
|
|
|
if (currentContract.evmAssembly)
|
2021-09-17 18:15:19 +00:00
|
|
|
return currentContract.evmAssembly->assemblyString(m_debugInfoSelection, _sourceCodes);
|
2015-04-02 13:10:35 +00:00
|
|
|
else
|
2017-08-30 01:17:15 +00:00
|
|
|
return string();
|
2014-12-03 16:45:12 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 00:35:23 +00:00
|
|
|
/// TODO: cache the JSON
|
2020-02-18 09:22:34 +00:00
|
|
|
Json::Value CompilerStack::assemblyJSON(string const& _contractName) const
|
2017-06-15 09:22:47 +00:00
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2017-06-15 09:22:47 +00:00
|
|
|
Contract const& currentContract = contract(_contractName);
|
2020-11-17 23:05:18 +00:00
|
|
|
if (currentContract.evmAssembly)
|
|
|
|
return currentContract.evmAssembly->assemblyJSON(sourceIndices());
|
2017-06-15 09:22:47 +00:00
|
|
|
else
|
|
|
|
return Json::Value();
|
|
|
|
}
|
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
vector<string> CompilerStack::sourceNames() const
|
|
|
|
{
|
|
|
|
vector<string> names;
|
|
|
|
for (auto const& s: m_sources)
|
|
|
|
names.push_back(s.first);
|
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
|
|
|
map<string, unsigned> CompilerStack::sourceIndices() const
|
|
|
|
{
|
|
|
|
map<string, unsigned> indices;
|
2017-04-20 17:44:07 +00:00
|
|
|
unsigned index = 0;
|
2016-07-01 08:14:50 +00:00
|
|
|
for (auto const& s: m_sources)
|
2017-04-20 17:44:07 +00:00
|
|
|
indices[s.first] = index++;
|
2020-05-28 11:17:16 +00:00
|
|
|
solAssert(!indices.count(CompilerContext::yulUtilityFileName()), "");
|
|
|
|
indices[CompilerContext::yulUtilityFileName()] = index++;
|
2016-07-01 08:14:50 +00:00
|
|
|
return indices;
|
|
|
|
}
|
|
|
|
|
2017-05-06 16:59:16 +00:00
|
|
|
Json::Value const& CompilerStack::contractABI(string const& _contractName) const
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2017-05-10 09:54:23 +00:00
|
|
|
return contractABI(contract(_contractName));
|
2014-12-05 14:27:07 +00:00
|
|
|
}
|
|
|
|
|
2017-05-06 17:02:56 +00:00
|
|
|
Json::Value const& CompilerStack::contractABI(Contract const& _contract) const
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2017-05-10 09:54:23 +00:00
|
|
|
|
|
|
|
solAssert(_contract.contract, "");
|
|
|
|
|
2020-05-13 18:02:40 +00:00
|
|
|
return _contract.abi.init([&]{ return ABI::generate(*_contract.contract); });
|
2017-05-06 17:02:56 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 17:11:33 +00:00
|
|
|
Json::Value const& CompilerStack::storageLayout(string const& _contractName) const
|
|
|
|
{
|
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2019-10-30 17:11:33 +00:00
|
|
|
|
|
|
|
return storageLayout(contract(_contractName));
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value const& CompilerStack::storageLayout(Contract const& _contract) const
|
|
|
|
{
|
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2019-10-30 17:11:33 +00:00
|
|
|
|
|
|
|
solAssert(_contract.contract, "");
|
|
|
|
|
2020-05-13 18:02:40 +00:00
|
|
|
return _contract.storageLayout.init([&]{ return StorageLayout().generate(*_contract.contract); });
|
2019-10-30 17:11:33 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 10:28:04 +00:00
|
|
|
Json::Value const& CompilerStack::natspecUser(string const& _contractName) const
|
2016-11-14 10:46:43 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2017-07-27 10:28:04 +00:00
|
|
|
return natspecUser(contract(_contractName));
|
2016-11-14 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 10:28:04 +00:00
|
|
|
Json::Value const& CompilerStack::natspecUser(Contract const& _contract) const
|
2014-12-01 16:03:04 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2016-11-24 09:32:52 +00:00
|
|
|
solAssert(_contract.contract, "");
|
2015-07-15 14:23:10 +00:00
|
|
|
|
2020-05-13 18:02:40 +00:00
|
|
|
return _contract.userDocumentation.init([&]{ return Natspec::userDocumentation(*_contract.contract); });
|
2017-07-27 10:28:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value const& CompilerStack::natspecDev(string const& _contractName) const
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2017-07-27 10:28:04 +00:00
|
|
|
return natspecDev(contract(_contractName));
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value const& CompilerStack::natspecDev(Contract const& _contract) const
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2017-07-27 10:28:04 +00:00
|
|
|
|
|
|
|
solAssert(_contract.contract, "");
|
|
|
|
|
2020-05-13 18:02:40 +00:00
|
|
|
return _contract.devDocumentation.init([&]{ return Natspec::devDocumentation(*_contract.contract); });
|
2014-12-03 16:45:12 +00:00
|
|
|
}
|
|
|
|
|
2022-02-01 14:42:08 +00:00
|
|
|
Json::Value CompilerStack::interfaceSymbols(string const& _contractName) const
|
2017-06-13 16:02:57 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2022-02-01 14:42:08 +00:00
|
|
|
Json::Value interfaceSymbols(Json::objectValue);
|
2022-01-31 16:52:08 +00:00
|
|
|
// Always have a methods object
|
2022-02-01 14:42:08 +00:00
|
|
|
interfaceSymbols["methods"] = Json::objectValue;
|
2017-06-13 16:02:57 +00:00
|
|
|
|
2022-01-31 16:52:08 +00:00
|
|
|
for (auto const& it: contractDefinition(_contractName).interfaceFunctions())
|
2022-02-01 14:42:08 +00:00
|
|
|
interfaceSymbols["methods"][it.second->externalSignature()] = it.first.hex();
|
2022-01-17 21:28:58 +00:00
|
|
|
for (ErrorDefinition const* error: contractDefinition(_contractName).interfaceErrors())
|
|
|
|
{
|
|
|
|
string signature = error->functionType(true)->externalSignature();
|
2022-03-07 04:25:35 +00:00
|
|
|
interfaceSymbols["errors"][signature] = util::toHex(toCompactBigEndian(util::selectorFromSignature32(signature), 4));
|
2022-01-17 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-01 14:42:08 +00:00
|
|
|
for (EventDefinition const* event: ranges::concat_view(
|
|
|
|
contractDefinition(_contractName).definedInterfaceEvents(),
|
|
|
|
contractDefinition(_contractName).usedInterfaceEvents()
|
|
|
|
))
|
2022-01-17 21:28:58 +00:00
|
|
|
if (!event->isAnonymous())
|
|
|
|
{
|
|
|
|
string signature = event->functionType(true)->externalSignature();
|
2022-03-07 04:25:35 +00:00
|
|
|
interfaceSymbols["events"][signature] = toHex(u256(h256::Arith(util::keccak256(signature))));
|
2022-01-17 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-01 14:42:08 +00:00
|
|
|
return interfaceSymbols;
|
2022-01-17 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
bytes CompilerStack::cborMetadata(string const& _contractName, bool _forIR) const
|
2016-11-14 10:46:43 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2019-02-03 00:25:36 +00:00
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
return createCBORMetadata(contract(_contractName), _forIR);
|
2020-07-28 21:20:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 00:25:36 +00:00
|
|
|
string const& CompilerStack::metadata(Contract const& _contract) const
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2016-11-14 10:46:43 +00:00
|
|
|
|
2019-02-03 00:25:36 +00:00
|
|
|
solAssert(_contract.contract, "");
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
return _contract.metadata.init([&]{ return createMetadata(_contract, m_viaIR); });
|
2016-11-14 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 12:38:59 +00:00
|
|
|
CharStream const& CompilerStack::charStream(string const& _sourceName) const
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
2017-05-24 21:45:10 +00:00
|
|
|
if (m_stackState < SourcesSet)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "No sources set.");
|
2017-05-11 07:01:39 +00:00
|
|
|
|
2021-07-14 10:53:39 +00:00
|
|
|
solAssert(source(_sourceName).charStream, "");
|
2021-06-29 12:38:59 +00:00
|
|
|
|
2021-07-14 10:53:39 +00:00
|
|
|
return *source(_sourceName).charStream;
|
2014-12-03 16:45:12 +00:00
|
|
|
}
|
|
|
|
|
2015-09-08 12:30:21 +00:00
|
|
|
SourceUnit const& CompilerStack::ast(string const& _sourceName) const
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
if (m_stackState < Parsed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Parsing not yet performed.");
|
2019-05-28 15:24:54 +00:00
|
|
|
if (!source(_sourceName).ast && !m_parserErrorRecovery)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Parsing was not successful.");
|
2017-05-06 16:47:08 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
return *source(_sourceName).ast;
|
2014-11-11 16:41:48 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
ContractDefinition const& CompilerStack::contractDefinition(string const& _contractName) const
|
2014-12-18 13:39:16 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
if (m_stackState < AnalysisPerformed)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Analysis was not successful.");
|
2017-05-11 07:01:39 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
return *contract(_contractName).contract;
|
2014-12-18 13:39:16 +00:00
|
|
|
}
|
|
|
|
|
2017-06-01 12:28:32 +00:00
|
|
|
size_t CompilerStack::functionEntryPoint(
|
|
|
|
std::string const& _contractName,
|
|
|
|
FunctionDefinition const& _function
|
|
|
|
) const
|
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2021-09-09 16:15:43 +00:00
|
|
|
for (auto&& [name, data]: contract(_contractName).runtimeObject.functionDebugData)
|
|
|
|
if (data.sourceID == _function.id())
|
|
|
|
if (data.instructionIndex)
|
|
|
|
return *data.instructionIndex;
|
2017-06-01 12:28:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-18 15:38:25 +00:00
|
|
|
h256 const& CompilerStack::Source::keccak256() const
|
|
|
|
{
|
|
|
|
if (keccak256HashCached == h256{})
|
2021-07-14 10:53:39 +00:00
|
|
|
keccak256HashCached = util::keccak256(charStream->source());
|
2018-12-18 15:38:25 +00:00
|
|
|
return keccak256HashCached;
|
|
|
|
}
|
|
|
|
|
|
|
|
h256 const& CompilerStack::Source::swarmHash() const
|
|
|
|
{
|
|
|
|
if (swarmHashCached == h256{})
|
2021-07-14 10:53:39 +00:00
|
|
|
swarmHashCached = util::bzzr1Hash(charStream->source());
|
2018-12-18 15:38:25 +00:00
|
|
|
return swarmHashCached;
|
|
|
|
}
|
|
|
|
|
2019-04-30 09:07:23 +00:00
|
|
|
string const& CompilerStack::Source::ipfsUrl() const
|
|
|
|
{
|
|
|
|
if (ipfsUrlCached.empty())
|
2021-07-14 10:53:39 +00:00
|
|
|
ipfsUrlCached = "dweb:/ipfs/" + util::ipfsHashBase58(charStream->source());
|
2019-04-30 09:07:23 +00:00
|
|
|
return ipfsUrlCached;
|
|
|
|
}
|
|
|
|
|
2021-10-28 13:30:31 +00:00
|
|
|
StringMap CompilerStack::loadMissingSources(SourceUnit const& _ast)
|
2016-01-12 00:04:39 +00:00
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
solAssert(m_stackState < ParsedAndImported, "");
|
2016-01-12 00:04:39 +00:00
|
|
|
StringMap newSources;
|
2020-02-04 00:01:23 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
for (auto const& node: _ast.nodes())
|
|
|
|
if (ImportDirective const* import = dynamic_cast<ImportDirective*>(node.get()))
|
2016-01-12 00:04:39 +00:00
|
|
|
{
|
2021-10-28 13:30:31 +00:00
|
|
|
string const& importPath = *import->annotation().absolutePath;
|
2020-02-04 00:01:23 +00:00
|
|
|
|
|
|
|
if (m_sources.count(importPath) || newSources.count(importPath))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ReadCallback::Result result{false, string("File not supplied initially.")};
|
|
|
|
if (m_readFile)
|
|
|
|
result = m_readFile(ReadCallback::kindString(ReadCallback::Kind::ReadFile), importPath);
|
|
|
|
|
|
|
|
if (result.success)
|
|
|
|
newSources[importPath] = result.responseOrErrorMessage;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_errorReporter.parserError(
|
2020-05-05 22:38:28 +00:00
|
|
|
6275_error,
|
2020-02-04 00:01:23 +00:00
|
|
|
import->location(),
|
|
|
|
string("Source \"" + importPath + "\" not found: " + result.responseOrErrorMessage)
|
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
2016-01-12 00:04:39 +00:00
|
|
|
}
|
2020-02-04 00:01:23 +00:00
|
|
|
}
|
|
|
|
catch (FatalError const&)
|
|
|
|
{
|
|
|
|
solAssert(m_errorReporter.hasErrors(), "");
|
|
|
|
}
|
2016-01-12 00:04:39 +00:00
|
|
|
return newSources;
|
|
|
|
}
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
string CompilerStack::applyRemapping(string const& _path, string const& _context)
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
solAssert(m_stackState < ParsedAndImported, "");
|
2021-03-29 12:46:19 +00:00
|
|
|
return m_importRemapper.apply(_path, _context);
|
2016-06-07 17:44:32 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
void CompilerStack::resolveImports()
|
|
|
|
{
|
2020-07-08 20:08:50 +00:00
|
|
|
solAssert(m_stackState == ParsedAndImported, "");
|
2018-08-06 12:09:19 +00:00
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
// topological sorting (depth first search) of the import graph, cutting potential cycles
|
|
|
|
vector<Source const*> sourceOrder;
|
|
|
|
set<Source const*> sourcesSeen;
|
|
|
|
|
2016-01-12 00:04:39 +00:00
|
|
|
function<void(Source const*)> toposort = [&](Source const* _source)
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
|
|
|
if (sourcesSeen.count(_source))
|
|
|
|
return;
|
|
|
|
sourcesSeen.insert(_source);
|
2019-05-28 15:24:54 +00:00
|
|
|
if (_source->ast)
|
|
|
|
for (ASTPointer<ASTNode> const& node: _source->ast->nodes())
|
|
|
|
if (ImportDirective const* import = dynamic_cast<ImportDirective*>(node.get()))
|
|
|
|
{
|
2020-09-10 10:01:23 +00:00
|
|
|
string const& path = *import->annotation().absolutePath;
|
2019-05-28 15:24:54 +00:00
|
|
|
solAssert(m_sources.count(path), "");
|
|
|
|
import->annotation().sourceUnit = m_sources[path].ast.get();
|
|
|
|
toposort(&m_sources[path]);
|
|
|
|
}
|
2014-12-03 16:45:12 +00:00
|
|
|
sourceOrder.push_back(_source);
|
|
|
|
};
|
|
|
|
|
|
|
|
for (auto const& sourcePair: m_sources)
|
2019-06-28 14:14:31 +00:00
|
|
|
if (isRequestedSource(sourcePair.first))
|
|
|
|
toposort(&sourcePair.second);
|
2014-11-11 16:41:48 +00:00
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
swap(m_sourceOrder, sourceOrder);
|
|
|
|
}
|
2014-11-11 16:41:48 +00:00
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
void CompilerStack::storeContractDefinitions()
|
|
|
|
{
|
|
|
|
for (auto const& pair: m_sources)
|
|
|
|
if (pair.second.ast)
|
|
|
|
for (
|
|
|
|
ContractDefinition const* contract:
|
|
|
|
ASTNode::filteredNodes<ContractDefinition>(pair.second.ast->nodes())
|
|
|
|
)
|
|
|
|
{
|
|
|
|
string fullyQualifiedName = *pair.second.ast->annotation().path + ":" + contract->name();
|
|
|
|
// Note that we now reference contracts by their fully qualified names, and
|
|
|
|
// thus contracts can only conflict if declared in the same source file. This
|
|
|
|
// should already cause a double-declaration error elsewhere.
|
|
|
|
if (!m_contracts.count(fullyQualifiedName))
|
|
|
|
m_contracts[fullyQualifiedName].contract = contract;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-10 16:16:55 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
bool onlySafeExperimentalFeaturesActivated(set<ExperimentalFeature> const& features)
|
|
|
|
{
|
|
|
|
for (auto const feature: features)
|
2019-11-20 11:29:08 +00:00
|
|
|
if (!ExperimentalFeatureWithoutWarning.count(feature))
|
2017-08-10 16:16:55 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-15 13:48:59 +00:00
|
|
|
void CompilerStack::assemble(
|
2015-10-07 13:57:17 +00:00
|
|
|
ContractDefinition const& _contract,
|
2021-06-15 13:48:59 +00:00
|
|
|
std::shared_ptr<evmasm::Assembly> _assembly,
|
|
|
|
std::shared_ptr<evmasm::Assembly> _runtimeAssembly
|
2015-10-07 13:57:17 +00:00
|
|
|
)
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
2021-06-15 13:48:59 +00:00
|
|
|
solAssert(!m_hasError, "");
|
2020-10-14 10:42:44 +00:00
|
|
|
|
2016-12-11 22:17:38 +00:00
|
|
|
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
|
2018-06-20 14:59:35 +00:00
|
|
|
|
2021-06-15 13:48:59 +00:00
|
|
|
compiledContract.evmAssembly = _assembly;
|
2020-11-17 23:05:18 +00:00
|
|
|
solAssert(compiledContract.evmAssembly, "");
|
2018-06-20 21:19:06 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
// Assemble deployment (incl. runtime) object.
|
2020-11-17 23:05:18 +00:00
|
|
|
compiledContract.object = compiledContract.evmAssembly->assemble();
|
2017-04-27 13:36:38 +00:00
|
|
|
}
|
2021-06-15 13:48:59 +00:00
|
|
|
catch (evmasm::AssemblyException const&)
|
2017-04-27 13:36:38 +00:00
|
|
|
{
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Assembly exception for bytecode");
|
2017-04-27 13:36:38 +00:00
|
|
|
}
|
2020-11-17 16:50:42 +00:00
|
|
|
solAssert(compiledContract.object.immutableReferences.empty(), "Leftover immutables.");
|
2017-04-27 13:36:38 +00:00
|
|
|
|
2021-06-15 13:48:59 +00:00
|
|
|
compiledContract.evmRuntimeAssembly = _runtimeAssembly;
|
2020-11-17 23:05:18 +00:00
|
|
|
solAssert(compiledContract.evmRuntimeAssembly, "");
|
2017-04-27 13:36:38 +00:00
|
|
|
try
|
|
|
|
{
|
2018-06-20 21:19:06 +00:00
|
|
|
// Assemble runtime object.
|
2020-11-17 23:05:18 +00:00
|
|
|
compiledContract.runtimeObject = compiledContract.evmRuntimeAssembly->assemble();
|
2017-04-27 13:36:38 +00:00
|
|
|
}
|
2021-06-15 13:48:59 +00:00
|
|
|
catch (evmasm::AssemblyException const&)
|
2017-04-27 13:36:38 +00:00
|
|
|
{
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Assembly exception for deployed bytecode");
|
2017-04-27 13:36:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 14:46:28 +00:00
|
|
|
// Throw a warning if EIP-170 limits are exceeded:
|
2020-11-17 13:13:51 +00:00
|
|
|
// If contract creation returns data with length greater than 0x6000 (214 + 213) bytes,
|
2019-12-13 14:46:28 +00:00
|
|
|
// contract creation fails with an out of gas error.
|
|
|
|
if (
|
|
|
|
m_evmVersion >= langutil::EVMVersion::spuriousDragon() &&
|
|
|
|
compiledContract.runtimeObject.bytecode.size() > 0x6000
|
|
|
|
)
|
|
|
|
m_errorReporter.warning(
|
2020-05-05 22:38:28 +00:00
|
|
|
5574_error,
|
2019-12-13 14:46:28 +00:00
|
|
|
_contract.location(),
|
2021-10-21 21:41:22 +00:00
|
|
|
"Contract code size is "s +
|
|
|
|
to_string(compiledContract.runtimeObject.bytecode.size()) +
|
|
|
|
" bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). "
|
2022-06-27 23:11:50 +00:00
|
|
|
"This contract may not be deployable on Mainnet. "
|
2019-12-13 14:46:28 +00:00
|
|
|
"Consider enabling the optimizer (with a low \"runs\" value!), "
|
|
|
|
"turning off revert strings, or using libraries."
|
|
|
|
);
|
2021-06-15 13:48:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompilerStack::compileContract(
|
|
|
|
ContractDefinition const& _contract,
|
|
|
|
map<ContractDefinition const*, shared_ptr<Compiler const>>& _otherCompilers
|
|
|
|
)
|
|
|
|
{
|
2021-07-15 14:06:38 +00:00
|
|
|
solAssert(!m_viaIR, "");
|
2021-06-15 13:48:59 +00:00
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
|
|
|
if (m_hasError)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Called compile with errors.");
|
2021-06-15 13:48:59 +00:00
|
|
|
|
|
|
|
if (_otherCompilers.count(&_contract))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (auto const& [dependency, referencee]: _contract.annotation().contractDependencies)
|
|
|
|
compileContract(*dependency, _otherCompilers);
|
|
|
|
|
|
|
|
if (!_contract.canBeDeployed())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
|
|
|
|
|
|
|
|
shared_ptr<Compiler> compiler = make_shared<Compiler>(m_evmVersion, m_revertStrings, m_optimiserSettings);
|
|
|
|
compiledContract.compiler = compiler;
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
solAssert(!m_viaIR, "");
|
|
|
|
bytes cborEncodedMetadata = createCBORMetadata(compiledContract, /* _forIR */ false);
|
2021-06-15 13:48:59 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Run optimiser and compile the contract.
|
|
|
|
compiler->compileContract(_contract, _otherCompilers, cborEncodedMetadata);
|
|
|
|
}
|
|
|
|
catch(evmasm::OptimizerException const&)
|
|
|
|
{
|
|
|
|
solAssert(false, "Optimizer exception during compilation");
|
|
|
|
}
|
2019-12-13 14:46:28 +00:00
|
|
|
|
2019-01-10 15:44:31 +00:00
|
|
|
_otherCompilers[compiledContract.contract] = compiler;
|
2021-06-15 13:48:59 +00:00
|
|
|
|
|
|
|
assemble(_contract, compiler->assemblyPtr(), compiler->runtimeAssemblyPtr());
|
2015-10-07 13:57:17 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 22:26:46 +00:00
|
|
|
void CompilerStack::generateIR(ContractDefinition const& _contract)
|
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
|
|
|
if (m_hasError)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Called generateIR with errors.");
|
2019-03-04 22:26:46 +00:00
|
|
|
|
|
|
|
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
|
|
|
|
if (!compiledContract.yulIR.empty())
|
|
|
|
return;
|
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
if (!*_contract.sourceUnit().annotation().useABICoderV2)
|
|
|
|
m_errorReporter.warning(
|
|
|
|
2066_error,
|
|
|
|
_contract.location(),
|
|
|
|
"Contract requests the ABI coder v1, which is incompatible with the IR. "
|
|
|
|
"Using ABI coder v2 instead."
|
|
|
|
);
|
|
|
|
|
2020-04-09 19:59:17 +00:00
|
|
|
string dependenciesSource;
|
2020-10-29 14:07:09 +00:00
|
|
|
for (auto const& [dependency, referencee]: _contract.annotation().contractDependencies)
|
2019-03-04 22:26:46 +00:00
|
|
|
generateIR(*dependency);
|
2020-10-14 10:42:44 +00:00
|
|
|
|
|
|
|
if (!_contract.canBeDeployed())
|
|
|
|
return;
|
|
|
|
|
|
|
|
map<ContractDefinition const*, string_view const> otherYulSources;
|
|
|
|
for (auto const& pair: m_contracts)
|
|
|
|
otherYulSources.emplace(pair.second.contract, pair.second.yulIR);
|
2019-03-04 22:26:46 +00:00
|
|
|
|
2021-09-17 18:15:19 +00:00
|
|
|
IRGenerator generator(m_evmVersion, m_revertStrings, m_optimiserSettings, sourceIndices(), m_debugInfoSelection, this);
|
2021-06-08 14:35:37 +00:00
|
|
|
tie(compiledContract.yulIR, compiledContract.yulIROptimized) = generator.run(
|
|
|
|
_contract,
|
2021-09-10 13:54:32 +00:00
|
|
|
createCBORMetadata(compiledContract, /* _forIR */ true),
|
2021-06-08 14:35:37 +00:00
|
|
|
otherYulSources
|
|
|
|
);
|
2019-03-04 22:26:46 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 18:59:19 +00:00
|
|
|
void CompilerStack::generateEVMFromIR(ContractDefinition const& _contract)
|
|
|
|
{
|
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
|
|
|
if (m_hasError)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Called generateEVMFromIR with errors.");
|
2020-10-28 18:59:19 +00:00
|
|
|
|
|
|
|
if (!_contract.canBeDeployed())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
|
|
|
|
solAssert(!compiledContract.yulIROptimized.empty(), "");
|
|
|
|
if (!compiledContract.object.bytecode.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Re-parse the Yul IR in EVM dialect
|
2022-03-28 04:27:11 +00:00
|
|
|
yul::YulStack stack(
|
2021-09-17 18:15:19 +00:00
|
|
|
m_evmVersion,
|
2022-03-28 04:27:11 +00:00
|
|
|
yul::YulStack::Language::StrictAssembly,
|
2021-09-17 18:15:19 +00:00
|
|
|
m_optimiserSettings,
|
|
|
|
m_debugInfoSelection
|
|
|
|
);
|
2020-10-28 18:59:19 +00:00
|
|
|
stack.parseAndAnalyze("", compiledContract.yulIROptimized);
|
|
|
|
stack.optimize();
|
|
|
|
|
|
|
|
//cout << yul::AsmPrinter{}(*stack.parserResult()->code) << endl;
|
|
|
|
|
2020-12-21 10:21:28 +00:00
|
|
|
string deployedName = IRNames::deployedObject(_contract);
|
|
|
|
solAssert(!deployedName.empty(), "");
|
|
|
|
tie(compiledContract.evmAssembly, compiledContract.evmRuntimeAssembly) = stack.assembleEVMWithDeployed(deployedName);
|
|
|
|
assemble(_contract, compiledContract.evmAssembly, compiledContract.evmRuntimeAssembly);
|
2020-10-28 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:36:12 +00:00
|
|
|
void CompilerStack::generateEwasm(ContractDefinition const& _contract)
|
2019-06-18 16:11:04 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
|
|
|
if (m_hasError)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Called generateEwasm with errors.");
|
2019-05-28 15:24:54 +00:00
|
|
|
|
2020-10-28 23:40:06 +00:00
|
|
|
if (!_contract.canBeDeployed())
|
|
|
|
return;
|
|
|
|
|
2019-06-18 16:11:04 +00:00
|
|
|
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
|
|
|
|
solAssert(!compiledContract.yulIROptimized.empty(), "");
|
2019-12-09 16:36:12 +00:00
|
|
|
if (!compiledContract.ewasm.empty())
|
2019-06-18 16:11:04 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Re-parse the Yul IR in EVM dialect
|
2022-03-28 04:27:11 +00:00
|
|
|
yul::YulStack stack(
|
2021-09-17 18:15:19 +00:00
|
|
|
m_evmVersion,
|
2022-03-28 04:27:11 +00:00
|
|
|
yul::YulStack::Language::StrictAssembly,
|
2021-09-17 18:15:19 +00:00
|
|
|
m_optimiserSettings,
|
|
|
|
m_debugInfoSelection
|
|
|
|
);
|
2019-11-27 18:36:58 +00:00
|
|
|
stack.parseAndAnalyze("", compiledContract.yulIROptimized);
|
2019-06-18 16:11:04 +00:00
|
|
|
|
2019-11-27 18:36:58 +00:00
|
|
|
stack.optimize();
|
2022-03-28 04:27:11 +00:00
|
|
|
stack.translate(yul::YulStack::Language::Ewasm);
|
2019-11-27 18:36:58 +00:00
|
|
|
stack.optimize();
|
2019-06-18 16:11:04 +00:00
|
|
|
|
2019-11-27 18:36:58 +00:00
|
|
|
//cout << yul::AsmPrinter{}(*stack.parserResult()->code) << endl;
|
2019-06-18 16:11:04 +00:00
|
|
|
|
2019-12-09 16:36:12 +00:00
|
|
|
// Turn into Ewasm text representation.
|
2022-03-28 04:27:11 +00:00
|
|
|
auto result = stack.assemble(yul::YulStack::Machine::Ewasm);
|
2019-12-09 16:36:12 +00:00
|
|
|
compiledContract.ewasm = std::move(result.assembly);
|
|
|
|
compiledContract.ewasmObject = std::move(*result.bytecode);
|
2019-06-18 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
CompilerStack::Contract const& CompilerStack::contract(string const& _contractName) const
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
2019-05-28 15:24:54 +00:00
|
|
|
solAssert(m_stackState >= AnalysisPerformed, "");
|
2017-10-18 22:17:06 +00:00
|
|
|
|
2017-08-21 20:49:58 +00:00
|
|
|
auto it = m_contracts.find(_contractName);
|
2017-10-18 22:17:06 +00:00
|
|
|
if (it != m_contracts.end())
|
|
|
|
return it->second;
|
|
|
|
|
2017-01-17 04:47:04 +00:00
|
|
|
// To provide a measure of backward-compatibility, if a contract is not located by its
|
|
|
|
// fully-qualified name, a lookup will be attempted purely on the contract's name to see
|
|
|
|
// if anything will satisfy.
|
2018-10-09 17:06:25 +00:00
|
|
|
if (_contractName.find(':') == string::npos)
|
2017-01-17 04:47:04 +00:00
|
|
|
{
|
|
|
|
for (auto const& contractEntry: m_contracts)
|
|
|
|
{
|
|
|
|
stringstream ss;
|
|
|
|
ss.str(contractEntry.first);
|
|
|
|
// All entries are <source>:<contract>
|
|
|
|
string source;
|
|
|
|
string foundName;
|
|
|
|
getline(ss, source, ':');
|
|
|
|
getline(ss, foundName, ':');
|
2017-10-18 22:17:06 +00:00
|
|
|
if (foundName == _contractName)
|
|
|
|
return contractEntry.second;
|
2017-01-17 04:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-18 22:17:06 +00:00
|
|
|
|
|
|
|
// If we get here, both lookup methods failed.
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Contract \"" + _contractName + "\" not found.");
|
2014-12-03 16:45:12 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
CompilerStack::Source const& CompilerStack::source(string const& _sourceName) const
|
2014-12-03 16:45:12 +00:00
|
|
|
{
|
|
|
|
auto it = m_sources.find(_sourceName);
|
|
|
|
if (it == m_sources.end())
|
2021-12-13 16:33:48 +00:00
|
|
|
solThrow(CompilerError, "Given source file not found: " + _sourceName);
|
2015-10-14 18:37:41 +00:00
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
return it->second;
|
|
|
|
}
|
2016-07-01 08:14:50 +00:00
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
string CompilerStack::createMetadata(Contract const& _contract, bool _forIR) const
|
2016-11-14 10:46:43 +00:00
|
|
|
{
|
2021-09-15 18:09:03 +00:00
|
|
|
Json::Value meta{Json::objectValue};
|
2016-11-14 10:46:43 +00:00
|
|
|
meta["version"] = 1;
|
2019-09-11 19:16:35 +00:00
|
|
|
meta["language"] = m_importedSources ? "SolidityAST" : "Solidity";
|
2017-01-17 12:09:13 +00:00
|
|
|
meta["compiler"]["version"] = VersionStringStrict;
|
2016-11-14 10:46:43 +00:00
|
|
|
|
2017-07-12 23:47:15 +00:00
|
|
|
/// All the source files (including self), which should be included in the metadata.
|
|
|
|
set<string> referencedSources;
|
2020-09-10 10:01:23 +00:00
|
|
|
referencedSources.insert(*_contract.contract->sourceUnit().annotation().path);
|
2017-07-12 23:47:15 +00:00
|
|
|
for (auto const sourceUnit: _contract.contract->sourceUnit().referencedSourceUnits(true))
|
2020-09-10 10:01:23 +00:00
|
|
|
referencedSources.insert(*sourceUnit->annotation().path);
|
2017-07-12 23:47:15 +00:00
|
|
|
|
2016-11-23 18:04:50 +00:00
|
|
|
meta["sources"] = Json::objectValue;
|
2016-11-14 10:46:43 +00:00
|
|
|
for (auto const& s: m_sources)
|
|
|
|
{
|
2017-07-12 23:47:15 +00:00
|
|
|
if (!referencedSources.count(s.first))
|
|
|
|
continue;
|
|
|
|
|
2021-07-14 10:53:39 +00:00
|
|
|
solAssert(s.second.charStream, "Character stream not available");
|
2022-03-07 04:25:35 +00:00
|
|
|
meta["sources"][s.first]["keccak256"] = "0x" + util::toHex(s.second.keccak256().asBytes());
|
2020-05-12 09:56:28 +00:00
|
|
|
if (optional<string> licenseString = s.second.ast->licenseString())
|
|
|
|
meta["sources"][s.first]["license"] = *licenseString;
|
2017-01-17 12:02:01 +00:00
|
|
|
if (m_metadataLiteralSources)
|
2021-07-14 10:53:39 +00:00
|
|
|
meta["sources"][s.first]["content"] = s.second.charStream->source();
|
2017-01-17 12:02:01 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
meta["sources"][s.first]["urls"] = Json::arrayValue;
|
2022-03-07 04:25:35 +00:00
|
|
|
meta["sources"][s.first]["urls"].append("bzz-raw://" + util::toHex(s.second.swarmHash().asBytes()));
|
2019-04-30 09:07:23 +00:00
|
|
|
meta["sources"][s.first]["urls"].append(s.second.ipfsUrl());
|
2017-01-17 12:02:01 +00:00
|
|
|
}
|
2016-11-14 10:46:43 +00:00
|
|
|
}
|
2017-07-17 11:12:00 +00:00
|
|
|
|
|
|
|
static_assert(sizeof(m_optimiserSettings.expectedExecutionsPerDeployment) <= sizeof(Json::LargestUInt), "Invalid word size.");
|
|
|
|
solAssert(static_cast<Json::LargestUInt>(m_optimiserSettings.expectedExecutionsPerDeployment) < std::numeric_limits<Json::LargestUInt>::max(), "");
|
|
|
|
meta["settings"]["optimizer"]["runs"] = Json::Value(Json::LargestUInt(m_optimiserSettings.expectedExecutionsPerDeployment));
|
|
|
|
|
|
|
|
/// Backwards compatibility: If set to one of the default settings, do not provide details.
|
|
|
|
OptimiserSettings settingsWithoutRuns = m_optimiserSettings;
|
|
|
|
// reset to default
|
|
|
|
settingsWithoutRuns.expectedExecutionsPerDeployment = OptimiserSettings::minimal().expectedExecutionsPerDeployment;
|
|
|
|
if (settingsWithoutRuns == OptimiserSettings::minimal())
|
|
|
|
meta["settings"]["optimizer"]["enabled"] = false;
|
2019-03-20 15:15:07 +00:00
|
|
|
else if (settingsWithoutRuns == OptimiserSettings::standard())
|
2017-07-17 11:12:00 +00:00
|
|
|
meta["settings"]["optimizer"]["enabled"] = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Json::Value details{Json::objectValue};
|
|
|
|
|
|
|
|
details["orderLiterals"] = m_optimiserSettings.runOrderLiterals;
|
2021-01-14 12:02:14 +00:00
|
|
|
details["inliner"] = m_optimiserSettings.runInliner;
|
2017-07-17 11:12:00 +00:00
|
|
|
details["jumpdestRemover"] = m_optimiserSettings.runJumpdestRemover;
|
|
|
|
details["peephole"] = m_optimiserSettings.runPeephole;
|
|
|
|
details["deduplicate"] = m_optimiserSettings.runDeduplicate;
|
|
|
|
details["cse"] = m_optimiserSettings.runCSE;
|
|
|
|
details["constantOptimizer"] = m_optimiserSettings.runConstantOptimiser;
|
|
|
|
details["yul"] = m_optimiserSettings.runYulOptimiser;
|
2019-02-26 18:55:13 +00:00
|
|
|
if (m_optimiserSettings.runYulOptimiser)
|
|
|
|
{
|
|
|
|
details["yulDetails"] = Json::objectValue;
|
|
|
|
details["yulDetails"]["stackAllocation"] = m_optimiserSettings.optimizeStackAllocation;
|
2022-09-05 07:52:17 +00:00
|
|
|
details["yulDetails"]["optimizerSteps"] = m_optimiserSettings.yulOptimiserSteps + ":" + m_optimiserSettings.yulOptimiserCleanupSteps;
|
2019-02-26 18:55:13 +00:00
|
|
|
}
|
2017-07-17 11:12:00 +00:00
|
|
|
|
|
|
|
meta["settings"]["optimizer"]["details"] = std::move(details);
|
|
|
|
}
|
|
|
|
|
2019-09-18 14:44:36 +00:00
|
|
|
if (m_revertStrings != RevertStrings::Default)
|
|
|
|
meta["settings"]["debug"]["revertStrings"] = revertStringsToString(m_revertStrings);
|
|
|
|
|
2019-04-23 19:53:24 +00:00
|
|
|
if (m_metadataLiteralSources)
|
|
|
|
meta["settings"]["metadata"]["useLiteralContent"] = true;
|
2019-09-06 17:11:07 +00:00
|
|
|
|
|
|
|
static vector<string> hashes{"ipfs", "bzzr1", "none"};
|
|
|
|
meta["settings"]["metadata"]["bytecodeHash"] = hashes.at(unsigned(m_metadataHash));
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
if (_forIR)
|
|
|
|
meta["settings"]["viaIR"] = _forIR;
|
2018-02-21 22:45:08 +00:00
|
|
|
meta["settings"]["evmVersion"] = m_evmVersion.name();
|
2016-11-16 13:36:19 +00:00
|
|
|
meta["settings"]["compilationTarget"][_contract.contract->sourceUnitName()] =
|
2020-09-10 10:01:23 +00:00
|
|
|
*_contract.contract->annotation().canonicalName;
|
2016-11-14 10:46:43 +00:00
|
|
|
|
2016-11-23 18:04:50 +00:00
|
|
|
meta["settings"]["remappings"] = Json::arrayValue;
|
2016-11-14 10:46:43 +00:00
|
|
|
set<string> remappings;
|
2021-03-29 12:46:19 +00:00
|
|
|
for (auto const& r: m_importRemapper.remappings())
|
2016-11-14 10:46:43 +00:00
|
|
|
remappings.insert(r.context + ":" + r.prefix + "=" + r.target);
|
|
|
|
for (auto const& r: remappings)
|
|
|
|
meta["settings"]["remappings"].append(r);
|
|
|
|
|
2016-11-23 18:04:50 +00:00
|
|
|
meta["settings"]["libraries"] = Json::objectValue;
|
2016-11-14 10:46:43 +00:00
|
|
|
for (auto const& library: m_libraries)
|
2022-03-07 04:25:35 +00:00
|
|
|
meta["settings"]["libraries"][library.first] = "0x" + util::toHex(library.second.asBytes());
|
2016-11-14 10:46:43 +00:00
|
|
|
|
2017-05-06 17:02:56 +00:00
|
|
|
meta["output"]["abi"] = contractABI(_contract);
|
2017-07-27 10:28:04 +00:00
|
|
|
meta["output"]["userdoc"] = natspecUser(_contract);
|
|
|
|
meta["output"]["devdoc"] = natspecDev(_contract);
|
2016-11-14 10:46:43 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
return util::jsonCompactPrint(meta);
|
2016-11-14 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
2019-03-19 16:06:19 +00:00
|
|
|
class MetadataCBOREncoder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void pushBytes(string const& key, bytes const& value)
|
|
|
|
{
|
|
|
|
m_entryCount++;
|
|
|
|
pushTextString(key);
|
|
|
|
pushByteString(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pushString(string const& key, string const& value)
|
|
|
|
{
|
|
|
|
m_entryCount++;
|
|
|
|
pushTextString(key);
|
|
|
|
pushTextString(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pushBool(string const& key, bool value)
|
|
|
|
{
|
|
|
|
m_entryCount++;
|
|
|
|
pushTextString(key);
|
|
|
|
pushBool(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes serialise() const
|
|
|
|
{
|
2019-12-12 23:39:29 +00:00
|
|
|
size_t size = m_data.size() + 1;
|
2019-03-19 16:06:19 +00:00
|
|
|
solAssert(size <= 0xffff, "Metadata too large.");
|
|
|
|
solAssert(m_entryCount <= 0x1f, "Too many map entries.");
|
|
|
|
|
|
|
|
// CBOR fixed-length map
|
|
|
|
bytes ret{static_cast<unsigned char>(0xa0 + m_entryCount)};
|
|
|
|
// The already encoded key-value pairs
|
|
|
|
ret += m_data;
|
|
|
|
// 16-bit big endian length
|
2021-09-16 14:33:28 +00:00
|
|
|
ret += toCompactBigEndian(size, 2);
|
2019-03-19 16:06:19 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void pushTextString(string const& key)
|
|
|
|
{
|
2019-12-12 23:39:29 +00:00
|
|
|
size_t length = key.size();
|
2019-03-19 16:06:19 +00:00
|
|
|
if (length < 24)
|
|
|
|
{
|
|
|
|
m_data += bytes{static_cast<unsigned char>(0x60 + length)};
|
|
|
|
m_data += key;
|
|
|
|
}
|
|
|
|
else if (length <= 256)
|
|
|
|
{
|
|
|
|
m_data += bytes{0x78, static_cast<unsigned char>(length)};
|
|
|
|
m_data += key;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
solAssert(false, "Text string too large.");
|
|
|
|
}
|
|
|
|
void pushByteString(bytes const& key)
|
|
|
|
{
|
2019-12-12 23:39:29 +00:00
|
|
|
size_t length = key.size();
|
2019-03-19 16:06:19 +00:00
|
|
|
if (length < 24)
|
|
|
|
{
|
|
|
|
m_data += bytes{static_cast<unsigned char>(0x40 + length)};
|
|
|
|
m_data += key;
|
|
|
|
}
|
|
|
|
else if (length <= 256)
|
|
|
|
{
|
|
|
|
m_data += bytes{0x58, static_cast<unsigned char>(length)};
|
|
|
|
m_data += key;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
solAssert(false, "Byte string too large.");
|
|
|
|
}
|
|
|
|
void pushBool(bool value)
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
m_data += bytes{0xf5};
|
|
|
|
else
|
|
|
|
m_data += bytes{0xf4};
|
|
|
|
}
|
|
|
|
unsigned m_entryCount = 0;
|
|
|
|
bytes m_data;
|
|
|
|
};
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
bytes CompilerStack::createCBORMetadata(Contract const& _contract, bool _forIR) const
|
2018-06-22 10:02:50 +00:00
|
|
|
{
|
2021-02-11 08:45:28 +00:00
|
|
|
if (m_metadataFormat == MetadataFormat::NoMetadata)
|
|
|
|
return bytes{};
|
|
|
|
|
2020-07-28 21:20:49 +00:00
|
|
|
bool const experimentalMode = !onlySafeExperimentalFeaturesActivated(
|
|
|
|
_contract.contract->sourceUnit().annotation().experimentalFeatures
|
|
|
|
);
|
|
|
|
|
2021-09-10 13:54:32 +00:00
|
|
|
string meta = (_forIR == m_viaIR ? metadata(_contract) : createMetadata(_contract, _forIR));
|
2020-07-28 21:20:49 +00:00
|
|
|
|
2019-03-19 16:06:19 +00:00
|
|
|
MetadataCBOREncoder encoder;
|
2019-09-06 17:11:07 +00:00
|
|
|
|
|
|
|
if (m_metadataHash == MetadataHash::IPFS)
|
2020-07-28 21:20:49 +00:00
|
|
|
encoder.pushBytes("ipfs", util::ipfsHash(meta));
|
2019-09-06 17:11:07 +00:00
|
|
|
else if (m_metadataHash == MetadataHash::Bzzr1)
|
2020-07-28 21:20:49 +00:00
|
|
|
encoder.pushBytes("bzzr1", util::bzzr1Hash(meta).asBytes());
|
2019-09-06 17:11:07 +00:00
|
|
|
else
|
|
|
|
solAssert(m_metadataHash == MetadataHash::None, "Invalid metadata hash");
|
|
|
|
|
2022-03-09 15:02:31 +00:00
|
|
|
if (experimentalMode)
|
2019-03-19 16:06:19 +00:00
|
|
|
encoder.pushBool("experimental", true);
|
2021-02-11 08:45:28 +00:00
|
|
|
if (m_metadataFormat == MetadataFormat::WithReleaseVersionTag)
|
2018-04-19 08:32:46 +00:00
|
|
|
encoder.pushBytes("solc", VersionCompactBytes);
|
|
|
|
else
|
2021-02-11 08:45:28 +00:00
|
|
|
{
|
|
|
|
solAssert(
|
|
|
|
m_metadataFormat == MetadataFormat::WithPrereleaseVersionTag,
|
|
|
|
"Invalid metadata format."
|
|
|
|
);
|
2018-04-19 08:32:46 +00:00
|
|
|
encoder.pushString("solc", VersionStringStrict);
|
2021-02-11 08:45:28 +00:00
|
|
|
}
|
2019-03-19 16:06:19 +00:00
|
|
|
return encoder.serialise();
|
2018-06-22 10:02:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 13:00:24 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
Json::Value gasToJson(GasEstimator::GasConsumption const& _gas)
|
|
|
|
{
|
2017-04-12 11:06:01 +00:00
|
|
|
if (_gas.isInfinite)
|
|
|
|
return Json::Value("infinite");
|
2017-04-10 13:00:24 +00:00
|
|
|
else
|
2019-12-11 16:31:36 +00:00
|
|
|
return Json::Value(util::toString(_gas.value));
|
2017-04-10 13:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value CompilerStack::gasEstimates(string const& _contractName) const
|
|
|
|
{
|
2018-12-18 17:27:38 +00:00
|
|
|
if (m_stackState != CompilationSuccessful)
|
2021-10-11 16:34:47 +00:00
|
|
|
solThrow(CompilerError, "Compilation was not successful.");
|
2018-12-18 17:27:38 +00:00
|
|
|
|
2017-04-10 13:00:24 +00:00
|
|
|
if (!assemblyItems(_contractName) && !runtimeAssemblyItems(_contractName))
|
|
|
|
return Json::Value();
|
|
|
|
|
|
|
|
using Gas = GasEstimator::GasConsumption;
|
2018-03-01 11:06:36 +00:00
|
|
|
GasEstimator gasEstimator(m_evmVersion);
|
2017-04-10 13:00:24 +00:00
|
|
|
Json::Value output(Json::objectValue);
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
if (evmasm::AssemblyItems const* items = assemblyItems(_contractName))
|
2017-04-10 13:00:24 +00:00
|
|
|
{
|
2018-03-01 11:06:36 +00:00
|
|
|
Gas executionGas = gasEstimator.functionalEstimation(*items);
|
2019-12-11 16:31:36 +00:00
|
|
|
Gas codeDepositGas{evmasm::GasMeter::dataGas(runtimeObject(_contractName).bytecode, false, m_evmVersion)};
|
2017-04-10 13:00:24 +00:00
|
|
|
|
|
|
|
Json::Value creation(Json::objectValue);
|
|
|
|
creation["codeDepositCost"] = gasToJson(codeDepositGas);
|
|
|
|
creation["executionCost"] = gasToJson(executionGas);
|
|
|
|
/// TODO: implement + overload to avoid the need of +=
|
|
|
|
executionGas += codeDepositGas;
|
|
|
|
creation["totalCost"] = gasToJson(executionGas);
|
|
|
|
output["creation"] = creation;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
if (evmasm::AssemblyItems const* items = runtimeAssemblyItems(_contractName))
|
2017-04-10 13:00:24 +00:00
|
|
|
{
|
|
|
|
/// External functions
|
|
|
|
ContractDefinition const& contract = contractDefinition(_contractName);
|
|
|
|
Json::Value externalFunctions(Json::objectValue);
|
|
|
|
for (auto it: contract.interfaceFunctions())
|
|
|
|
{
|
|
|
|
string sig = it.second->externalSignature();
|
2018-03-01 11:06:36 +00:00
|
|
|
externalFunctions[sig] = gasToJson(gasEstimator.functionalEstimation(*items, sig));
|
2017-04-10 13:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (contract.fallbackFunction())
|
|
|
|
/// This needs to be set to an invalid signature in order to trigger the fallback,
|
|
|
|
/// without the shortcut (of CALLDATSIZE == 0), and therefore to receive the upper bound.
|
|
|
|
/// An empty string ("") would work to trigger the shortcut only.
|
2018-03-01 11:06:36 +00:00
|
|
|
externalFunctions[""] = gasToJson(gasEstimator.functionalEstimation(*items, "INVALID"));
|
2017-04-10 13:00:24 +00:00
|
|
|
|
|
|
|
if (!externalFunctions.empty())
|
|
|
|
output["external"] = externalFunctions;
|
|
|
|
|
|
|
|
/// Internal functions
|
|
|
|
Json::Value internalFunctions(Json::objectValue);
|
|
|
|
for (auto const& it: contract.definedFunctions())
|
|
|
|
{
|
2019-09-09 16:22:02 +00:00
|
|
|
/// Exclude externally visible functions, constructor, fallback and receive ether function
|
|
|
|
if (it->isPartOfExternalInterface() || !it->isOrdinary())
|
2017-04-10 13:00:24 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
size_t entry = functionEntryPoint(_contractName, *it);
|
|
|
|
GasEstimator::GasConsumption gas = GasEstimator::GasConsumption::infinite();
|
|
|
|
if (entry > 0)
|
2018-03-01 11:06:36 +00:00
|
|
|
gas = gasEstimator.functionalEstimation(*items, entry, *it);
|
2017-04-10 13:00:24 +00:00
|
|
|
|
2017-07-27 19:55:55 +00:00
|
|
|
/// TODO: This could move into a method shared with externalSignature()
|
2017-04-10 13:00:24 +00:00
|
|
|
FunctionType type(*it);
|
|
|
|
string sig = it->name() + "(";
|
|
|
|
auto paramTypes = type.parameterTypes();
|
|
|
|
for (auto it = paramTypes.begin(); it != paramTypes.end(); ++it)
|
|
|
|
sig += (*it)->toString() + (it + 1 == paramTypes.end() ? "" : ",");
|
|
|
|
sig += ")";
|
2017-07-27 19:55:55 +00:00
|
|
|
|
2017-04-10 13:00:24 +00:00
|
|
|
internalFunctions[sig] = gasToJson(gas);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!internalFunctions.empty())
|
|
|
|
output["internal"] = internalFunctions;
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|