solidity/libsolidity/interface/CompilerStack.cpp

1171 lines
37 KiB
C++
Raw Normal View History

/*
This file is part of solidity.
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @author Christian <c@ethdev.com>
2015-01-09 06:39:30 +00:00
* @author Gav Wood <g@ethdev.com>
* @date 2014
* Full-stack compiler that converts a source code string to bytecode.
*/
#include <libsolidity/interface/CompilerStack.h>
#include <libsolidity/analysis/ControlFlowAnalyzer.h>
2018-05-04 13:58:10 +00:00
#include <libsolidity/analysis/ControlFlowGraph.h>
2018-12-17 18:24:42 +00:00
#include <libsolidity/analysis/ContractLevelChecker.h>
#include <libsolidity/analysis/DocStringAnalyser.h>
2015-10-20 22:21:52 +00:00
#include <libsolidity/analysis/GlobalContext.h>
#include <libsolidity/analysis/NameAndTypeResolver.h>
#include <libsolidity/analysis/PostTypeChecker.h>
2018-12-17 18:24:42 +00:00
#include <libsolidity/analysis/SemVerHandler.h>
#include <libsolidity/analysis/StaticAnalyzer.h>
#include <libsolidity/analysis/SyntaxChecker.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>
2018-12-17 18:24:42 +00:00
#include <libsolidity/ast/AST.h>
2015-10-20 22:21:52 +00:00
#include <libsolidity/codegen/Compiler.h>
2017-07-06 09:05:05 +00:00
#include <libsolidity/formal/SMTChecker.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>
2018-12-17 18:24:42 +00:00
#include <libsolidity/interface/Version.h>
#include <libsolidity/parsing/Parser.h>
2018-11-08 23:21:37 +00:00
#include <libyul/YulString.h>
#include <liblangutil/Scanner.h>
#include <libevmasm/Exceptions.h>
2016-11-14 10:46:43 +00:00
#include <libdevcore/SwarmHash.h>
2016-11-16 13:36:19 +00:00
#include <libdevcore/JSON.h>
2016-11-14 10:46:43 +00:00
#include <json/json.h>
#include <boost/algorithm/string.hpp>
using namespace std;
2016-01-12 00:04:39 +00:00
using namespace dev;
using namespace langutil;
2016-01-12 00:04:39 +00:00
using namespace dev::solidity;
2018-08-09 18:37:49 +00:00
boost::optional<CompilerStack::Remapping> CompilerStack::parseRemapping(string const& _remapping)
{
auto eq = find(_remapping.begin(), _remapping.end(), '=');
if (eq == _remapping.end())
return {};
auto colon = find(_remapping.begin(), eq, ':');
Remapping r;
r.context = colon == eq ? string() : string(_remapping.begin(), colon);
r.prefix = colon == eq ? string(_remapping.begin(), eq) : string(colon + 1, eq);
r.target = string(eq + 1, _remapping.end());
if (r.prefix.empty())
return {};
return r;
}
void CompilerStack::setRemappings(vector<Remapping> const& _remappings)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must set remappings before parsing."));
for (auto const& remapping: _remappings)
2018-08-09 18:37:49 +00:00
solAssert(!remapping.prefix.empty(), "");
m_remappings = _remappings;
}
void CompilerStack::setEVMVersion(langutil::EVMVersion _version)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must set EVM version before parsing."));
m_evmVersion = _version;
}
void CompilerStack::setLibraries(std::map<std::string, h160> const& _libraries)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must set libraries before parsing."));
m_libraries = _libraries;
}
void CompilerStack::setOptimiserSettings(bool _optimize, unsigned _runs)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must set optimiser settings before parsing."));
m_optimize = _optimize;
m_optimizeRuns = _runs;
}
void CompilerStack::useMetadataLiteralSources(bool _metadataLiteralSources)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must set use literal sources before parsing."));
m_metadataLiteralSources = _metadataLiteralSources;
}
void CompilerStack::addSMTLib2Response(h256 const& _hash, string const& _response)
{
if (m_stackState >= ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Must add SMTLib2 responses before parsing."));
m_smtlib2Responses[_hash] = _response;
}
2016-08-15 14:58:01 +00:00
void CompilerStack::reset(bool _keepSources)
{
if (_keepSources)
{
m_stackState = SourcesSet;
for (auto sourcePair: m_sources)
sourcePair.second.reset();
}
else
{
2017-06-01 12:28:32 +00:00
m_stackState = Empty;
m_sources.clear();
}
m_smtlib2Responses.clear();
m_unhandledSMTLib2Queries.clear();
2017-07-17 10:49:45 +00:00
m_libraries.clear();
m_evmVersion = langutil::EVMVersion();
2016-11-14 10:46:43 +00:00
m_optimize = false;
m_optimizeRuns = 200;
m_globalContext.reset();
2017-01-31 21:59:56 +00:00
m_scopes.clear();
m_sourceOrder.clear();
m_contracts.clear();
m_errorReporter.clear();
}
2015-02-20 17:15:34 +00:00
bool CompilerStack::addSource(string const& _name, string const& _content, bool _isLibrary)
{
2015-01-13 10:18:08 +00:00
bool existed = m_sources.count(_name) != 0;
reset(true);
m_sources[_name].scanner = make_shared<Scanner>(CharStream(_content, _name));
2015-02-20 17:15:34 +00:00
m_sources[_name].isLibrary = _isLibrary;
2017-04-28 13:24:59 +00:00
m_stackState = SourcesSet;
return existed;
}
2015-09-21 17:43:56 +00:00
bool CompilerStack::parse()
{
2015-10-15 14:08:02 +00:00
//reset
2018-09-17 14:13:21 +00:00
if (m_stackState != SourcesSet)
2017-04-28 13:24:59 +00:00
return false;
m_errorReporter.clear();
ASTNode::resetID();
2015-09-21 17:43:56 +00:00
if (SemVerVersion{string(VersionString)}.isPrerelease())
m_errorReporter.warning("This is a pre-release compiler version, please do not use it in production.");
2016-01-12 00:04:39 +00:00
vector<string> sourcesToParse;
for (auto const& s: m_sources)
sourcesToParse.push_back(s.first);
for (size_t i = 0; i < sourcesToParse.size(); ++i)
{
2016-01-12 00:04:39 +00:00
string const& path = sourcesToParse[i];
Source& source = m_sources[path];
source.scanner->reset();
source.ast = Parser(m_errorReporter).parse(source.scanner);
2016-01-12 00:04:39 +00:00
if (!source.ast)
solAssert(!Error::containsOnlyWarnings(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;
for (auto const& newSource: loadMissingSources(*source.ast, path))
{
string const& newPath = newSource.first;
string const& newContents = newSource.second;
m_sources[newPath].scanner = make_shared<Scanner>(CharStream(newContents, newPath));
2016-01-12 00:04:39 +00:00
sourcesToParse.push_back(newPath);
}
}
}
if (Error::containsOnlyWarnings(m_errorReporter.errors()))
2017-04-28 13:24:59 +00:00
{
m_stackState = ParsingSuccessful;
return true;
}
else
return false;
}
bool CompilerStack::analyze()
{
if (m_stackState != ParsingSuccessful)
2017-04-28 13:24:59 +00:00
return false;
resolveImports();
2015-10-26 14:13:36 +00:00
bool noErrors = true;
try {
2018-04-05 12:25:51 +00:00
SyntaxChecker syntaxChecker(m_errorReporter);
for (Source const* source: m_sourceOrder)
2018-04-05 12:25:51 +00:00
if (!syntaxChecker.checkSyntax(*source->ast))
noErrors = false;
2018-04-05 12:25:51 +00:00
DocStringAnalyser docStringAnalyser(m_errorReporter);
for (Source const* source: m_sourceOrder)
2018-04-05 12:25:51 +00:00
if (!docStringAnalyser.analyseDocStrings(*source->ast))
noErrors = false;
2018-04-05 12:25:51 +00:00
m_globalContext = make_shared<GlobalContext>();
NameAndTypeResolver resolver(m_globalContext->declarations(), m_scopes, m_errorReporter);
2017-08-28 17:48:34 +00:00
for (Source const* source: m_sourceOrder)
2018-04-05 12:25:51 +00:00
if (!resolver.registerDeclarations(*source->ast))
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)
if (!resolver.performImports(*source->ast, sourceUnitsByName))
return false;
2017-08-28 17:48:34 +00:00
// This is the main name and type resolution loop. Needs to be run for every contract, because
// the special variables "this" and "super" must be set appropriately.
2017-07-06 09:05:05 +00:00
for (Source const* source: m_sourceOrder)
2018-04-05 12:25:51 +00:00
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
{
m_globalContext->setCurrentContract(*contract);
if (!resolver.updateDeclaration(*m_globalContext->currentThis())) return false;
if (!resolver.updateDeclaration(*m_globalContext->currentSuper())) return false;
if (!resolver.resolveNamesAndTypes(*contract)) return false;
// 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
// already causes a double-declaration error elsewhere, so we do not report
// an error here and instead silently drop any additional contracts we find.
if (m_contracts.find(contract->fullyQualifiedName()) == m_contracts.end())
m_contracts[contract->fullyQualifiedName()].contract = contract;
}
// 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);
for (Source const* source: m_sourceOrder)
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
if (!contractLevelChecker.check(*contract))
noErrors = false;
// New we run full type checks that go down to the expression level. This
// 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.
//
// 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)
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
if (!typeChecker.checkTypeRequirements(*contract))
noErrors = false;
if (noErrors)
{
// 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)
if (!postTypeChecker.check(*source->ast))
noErrors = false;
}
2018-05-04 13:58:10 +00:00
if (noErrors)
{
// 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)
if (!cfg.constructFlow(*source->ast))
noErrors = false;
if (noErrors)
{
ControlFlowAnalyzer controlFlowAnalyzer(cfg, m_errorReporter);
for (Source const* source: m_sourceOrder)
if (!controlFlowAnalyzer.analyze(*source->ast))
noErrors = false;
}
2018-05-04 13:58:10 +00:00
}
2018-04-05 12:25:51 +00:00
if (noErrors)
{
// 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)
if (!staticAnalyzer.analyze(*source->ast))
noErrors = false;
}
if (noErrors)
{
// 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)
ast.push_back(source->ast);
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)
{
SMTChecker smtChecker(m_errorReporter, m_smtlib2Responses);
2018-04-05 12:25:51 +00:00
for (Source const* source: m_sourceOrder)
smtChecker.analyze(*source->ast, source->scanner);
m_unhandledSMTLib2Queries += smtChecker.unhandledQueries();
2018-04-05 12:25:51 +00:00
}
}
catch(FatalError const&)
{
if (m_errorReporter.errors().empty())
throw; // Something is weird here, rather throw again.
noErrors = false;
}
2017-04-28 13:24:59 +00:00
if (noErrors)
{
m_stackState = AnalysisSuccessful;
return true;
}
else
return false;
}
bool CompilerStack::parseAndAnalyze()
{
return parse() && analyze();
}
bool CompilerStack::isRequestedContract(ContractDefinition const& _contract) const
{
return
m_requestedContractNames.empty() ||
m_requestedContractNames.count(_contract.fullyQualifiedName()) ||
m_requestedContractNames.count(_contract.name());
}
bool CompilerStack::compile()
{
2017-04-28 13:24:59 +00:00
if (m_stackState < AnalysisSuccessful)
if (!parseAndAnalyze())
2015-09-21 17:43:56 +00:00
return false;
// Only compile contracts individually which have been requested.
map<ContractDefinition const*, shared_ptr<Compiler const>> otherCompilers;
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()))
if (isRequestedContract(*contract))
compileContract(*contract, otherCompilers);
2017-04-28 13:24:59 +00:00
m_stackState = CompilationSuccessful;
this->link();
2015-09-21 17:43:56 +00:00
return true;
}
2016-11-14 10:46:43 +00:00
void CompilerStack::link()
2015-09-11 17:35:01 +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
}
}
vector<string> CompilerStack::contractNames() const
{
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Parsing was not successful."));
vector<string> contractNames;
for (auto const& contract: m_contracts)
contractNames.push_back(contract.first);
return contractNames;
}
string const CompilerStack::lastContractName() const
{
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Parsing was not successful."));
// try to find some user-supplied contract
string contractName;
for (auto const& it: m_sources)
for (ASTPointer<ASTNode> const& node: it.second.ast->nodes())
if (auto contract = dynamic_cast<ContractDefinition const*>(node.get()))
contractName = contract->fullyQualifiedName();
return contractName;
}
2015-08-31 16:44:29 +00:00
eth::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)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2015-08-31 16:44:29 +00:00
Contract const& currentContract = contract(_contractName);
return currentContract.compiler ? &contract(_contractName).compiler->assemblyItems() : nullptr;
2015-03-02 00:13:10 +00:00
}
2015-08-31 16:44:29 +00:00
eth::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)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2015-08-31 16:44:29 +00:00
Contract const& currentContract = contract(_contractName);
return currentContract.compiler ? &contract(_contractName).compiler->runtimeAssemblyItems() : nullptr;
2015-03-02 00:13:10 +00:00
}
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)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2016-07-01 08:14:50 +00:00
Contract const& c = contract(_contractName);
if (!c.sourceMapping)
{
if (auto items = assemblyItems(_contractName))
c.sourceMapping.reset(new string(computeSourceMapping(*items)));
}
return c.sourceMapping.get();
}
string const* CompilerStack::runtimeSourceMapping(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2016-07-01 08:14:50 +00:00
Contract const& c = contract(_contractName);
if (!c.runtimeSourceMapping)
{
if (auto items = runtimeAssemblyItems(_contractName))
c.runtimeSourceMapping.reset(new string(computeSourceMapping(*items)));
}
return c.runtimeSourceMapping.get();
}
std::string const CompilerStack::filesystemFriendlyName(string const& _contractName) const
{
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("No compiled contracts found."));
// 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();
}
eth::LinkerObject const& CompilerStack::object(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
return contract(_contractName).object;
}
eth::LinkerObject const& CompilerStack::runtimeObject(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
return contract(_contractName).runtimeObject;
}
/// TODO: cache this string
2017-08-30 01:17:15 +00:00
string CompilerStack::assemblyString(string const& _contractName, StringMap _sourceCodes) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2015-08-31 16:44:29 +00:00
Contract const& currentContract = contract(_contractName);
if (currentContract.compiler)
2017-08-30 01:17:15 +00:00
return currentContract.compiler->assemblyString(_sourceCodes);
else
2017-08-30 01:17:15 +00:00
return string();
}
/// TODO: cache the JSON
Json::Value CompilerStack::assemblyJSON(string const& _contractName, StringMap _sourceCodes) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
Contract const& currentContract = contract(_contractName);
if (currentContract.compiler)
return currentContract.compiler->assemblyJSON(_sourceCodes);
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;
unsigned index = 0;
2016-07-01 08:14:50 +00:00
for (auto const& s: m_sources)
indices[s.first] = index++;
2016-07-01 08:14:50 +00:00
return indices;
}
Json::Value const& CompilerStack::contractABI(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
2017-05-10 09:54:23 +00:00
return contractABI(contract(_contractName));
}
2017-05-06 17:02:56 +00:00
Json::Value const& CompilerStack::contractABI(Contract const& _contract) const
{
2017-05-10 09:54:23 +00:00
if (m_stackState < AnalysisSuccessful)
2018-12-18 17:27:38 +00:00
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
2017-05-10 09:54:23 +00:00
solAssert(_contract.contract, "");
// caches the result
if (!_contract.abi)
_contract.abi.reset(new Json::Value(ABI::generate(*_contract.contract)));
return *_contract.abi;
2017-05-06 17:02:56 +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
{
2018-12-18 17:27:38 +00:00
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
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
{
2017-04-28 13:47:30 +00:00
if (m_stackState < AnalysisSuccessful)
2018-12-18 17:27:38 +00:00
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
solAssert(_contract.contract, "");
2015-07-15 14:23:10 +00:00
2017-07-27 10:28:04 +00:00
// caches the result
if (!_contract.userDocumentation)
_contract.userDocumentation.reset(new Json::Value(Natspec::userDocumentation(*_contract.contract)));
return *_contract.userDocumentation;
}
Json::Value const& CompilerStack::natspecDev(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
2017-07-27 10:28:04 +00:00
return natspecDev(contract(_contractName));
}
Json::Value const& CompilerStack::natspecDev(Contract const& _contract) const
{
if (m_stackState < AnalysisSuccessful)
2018-12-18 17:27:38 +00:00
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
2017-07-27 10:28:04 +00:00
solAssert(_contract.contract, "");
// caches the result
if (!_contract.devDocumentation)
_contract.devDocumentation.reset(new Json::Value(Natspec::devDocumentation(*_contract.contract)));
2017-07-27 10:28:04 +00:00
return *_contract.devDocumentation;
}
Json::Value CompilerStack::methodIdentifiers(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
Json::Value methodIdentifiers(Json::objectValue);
for (auto const& it: contractDefinition(_contractName).interfaceFunctions())
2018-12-05 19:34:27 +00:00
methodIdentifiers[it.second->externalSignature()] = it.first.hex();
return methodIdentifiers;
}
2017-05-19 15:10:32 +00:00
string const& CompilerStack::metadata(string const& _contractName) const
2016-11-14 10:46:43 +00:00
{
2017-04-28 13:24:59 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2016-11-14 10:46:43 +00:00
2017-05-19 15:10:32 +00:00
return contract(_contractName).metadata;
2016-11-14 10:46:43 +00:00
}
2015-08-31 16:44:29 +00:00
Scanner const& CompilerStack::scanner(string const& _sourceName) const
{
if (m_stackState < SourcesSet)
2017-05-26 09:13:32 +00:00
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("No sources set."));
2015-08-31 16:44:29 +00:00
return *source(_sourceName).scanner;
}
SourceUnit const& CompilerStack::ast(string const& _sourceName) const
{
2017-05-06 16:47:08 +00:00
if (m_stackState < ParsingSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Parsing was not successful."));
2015-08-31 16:44:29 +00:00
return *source(_sourceName).ast;
}
2015-08-31 16:44:29 +00:00
ContractDefinition const& CompilerStack::contractDefinition(string const& _contractName) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState < AnalysisSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Analysis was not successful."));
2015-08-31 16:44:29 +00:00
return *contract(_contractName).contract;
}
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)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2017-06-01 12:28:32 +00:00
shared_ptr<Compiler> const& compiler = contract(_contractName).compiler;
if (!compiler)
return 0;
eth::AssemblyItem tag = compiler->functionEntryLabel(_function);
if (tag.type() == eth::UndefinedItem)
return 0;
eth::AssemblyItems const& items = compiler->runtimeAssemblyItems();
for (size_t i = 0; i < items.size(); ++i)
if (items.at(i).type() == eth::Tag && items.at(i).data() == tag.data())
return i;
return 0;
}
tuple<int, int, int, int> CompilerStack::positionFromSourceLocation(SourceLocation const& _sourceLocation) const
{
int startLine;
int startColumn;
int endLine;
int endColumn;
tie(startLine, startColumn) = scanner(_sourceLocation.source->name()).translatePositionToLineColumn(_sourceLocation.start);
tie(endLine, endColumn) = scanner(_sourceLocation.source->name()).translatePositionToLineColumn(_sourceLocation.end);
return make_tuple(++startLine, ++startColumn, ++endLine, ++endColumn);
}
2018-12-18 15:38:25 +00:00
h256 const& CompilerStack::Source::keccak256() const
{
if (keccak256HashCached == h256{})
keccak256HashCached = dev::keccak256(scanner->source());
return keccak256HashCached;
}
h256 const& CompilerStack::Source::swarmHash() const
{
if (swarmHashCached == h256{})
swarmHashCached = dev::swarmHash(scanner->source());
return swarmHashCached;
}
StringMap CompilerStack::loadMissingSources(SourceUnit const& _ast, std::string const& _sourcePath)
2016-01-12 00:04:39 +00:00
{
solAssert(m_stackState < ParsingSuccessful, "");
2016-01-12 00:04:39 +00:00
StringMap newSources;
for (auto const& node: _ast.nodes())
if (ImportDirective const* import = dynamic_cast<ImportDirective*>(node.get()))
{
2019-01-25 01:59:42 +00:00
solAssert(!import->path().empty(), "Import path cannot be empty.");
string importPath = dev::absolutePath(import->path(), _sourcePath);
// 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.
importPath = applyRemapping(importPath, _sourcePath);
import->annotation().absolutePath = importPath;
if (m_sources.count(importPath) || newSources.count(importPath))
2016-01-12 00:04:39 +00:00
continue;
2017-07-13 19:06:04 +00:00
ReadCallback::Result result{false, string("File not supplied initially.")};
if (m_readFile)
result = m_readFile(importPath);
if (result.success)
2017-07-13 19:06:04 +00:00
newSources[importPath] = result.responseOrErrorMessage;
2016-01-12 00:04:39 +00:00
else
{
m_errorReporter.parserError(
import->location(),
2017-07-13 19:06:04 +00:00
string("Source \"" + importPath + "\" not found: " + result.responseOrErrorMessage)
);
2016-01-12 00:04:39 +00:00
continue;
}
}
return newSources;
}
string CompilerStack::applyRemapping(string const& _path, string const& _context)
{
solAssert(m_stackState < ParsingSuccessful, "");
// Try to find the longest prefix match in all remappings that are active in the current context.
auto isPrefixOf = [](string const& _a, string const& _b)
{
if (_a.length() > _b.length())
return false;
return std::equal(_a.begin(), _a.end(), _b.begin());
};
size_t longestPrefix = 0;
size_t longestContext = 0;
string bestMatchTarget;
for (auto const& redir: m_remappings)
{
string context = dev::sanitizePath(redir.context);
string prefix = dev::sanitizePath(redir.prefix);
// Skip if current context is closer
if (context.length() < longestContext)
continue;
// Skip if redir.context is not a prefix of _context
if (!isPrefixOf(context, _context))
continue;
// Skip if we already have a closer prefix match.
if (prefix.length() < longestPrefix && context.length() == longestContext)
continue;
// Skip if the prefix does not match.
if (!isPrefixOf(prefix, _path))
continue;
longestContext = context.length();
longestPrefix = prefix.length();
bestMatchTarget = dev::sanitizePath(redir.target);
}
string path = bestMatchTarget;
path.append(_path.begin() + longestPrefix, _path.end());
return path;
}
void CompilerStack::resolveImports()
{
solAssert(m_stackState == ParsingSuccessful, "");
// 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)
{
if (sourcesSeen.count(_source))
return;
sourcesSeen.insert(_source);
2015-08-31 16:44:29 +00:00
for (ASTPointer<ASTNode> const& node: _source->ast->nodes())
if (ImportDirective const* import = dynamic_cast<ImportDirective*>(node.get()))
{
2016-01-12 00:04:39 +00:00
string const& path = import->annotation().absolutePath;
solAssert(!path.empty(), "");
solAssert(m_sources.count(path), "");
import->annotation().sourceUnit = m_sources[path].ast.get();
toposort(&m_sources[path]);
}
sourceOrder.push_back(_source);
};
for (auto const& sourcePair: m_sources)
2015-02-20 17:15:34 +00:00
if (!sourcePair.second.isLibrary)
2016-01-12 00:04:39 +00:00
toposort(&sourcePair.second);
swap(m_sourceOrder, sourceOrder);
}
namespace
{
bool onlySafeExperimentalFeaturesActivated(set<ExperimentalFeature> const& features)
{
for (auto const feature: features)
if (!ExperimentalFeatureOnlyAnalysis.count(feature))
return false;
return true;
}
}
2015-10-07 13:57:17 +00:00
void CompilerStack::compileContract(
ContractDefinition const& _contract,
map<ContractDefinition const*, shared_ptr<Compiler const>>& _otherCompilers
2015-10-07 13:57:17 +00:00
)
{
solAssert(m_stackState >= AnalysisSuccessful, "");
if (_otherCompilers.count(&_contract) || !_contract.canBeDeployed())
2015-10-07 13:57:17 +00:00
return;
for (auto const* dependency: _contract.annotation().contractDependencies)
compileContract(*dependency, _otherCompilers);
2015-10-07 13:57:17 +00:00
Contract& compiledContract = m_contracts.at(_contract.fullyQualifiedName());
shared_ptr<Compiler> compiler = make_shared<Compiler>(m_evmVersion, m_optimize, m_optimizeRuns);
compiledContract.compiler = compiler;
2017-05-19 15:10:32 +00:00
string metadata = createMetadata(compiledContract);
compiledContract.metadata = metadata;
2018-06-22 10:02:50 +00:00
bytes cborEncodedMetadata = createCBORMetadata(
metadata,
!onlySafeExperimentalFeaturesActivated(_contract.sourceUnit().annotation().experimentalFeatures)
);
try
{
// Run optimiser and compile the contract.
compiler->compileContract(_contract, _otherCompilers, cborEncodedMetadata);
}
catch(eth::OptimizerException const&)
{
solAssert(false, "Optimizer exception during compilation");
}
try
{
// Assemble deployment (incl. runtime) object.
compiledContract.object = compiler->assembledObject();
}
catch(eth::AssemblyException const&)
{
solAssert(false, "Assembly exception for bytecode");
}
try
{
// Assemble runtime object.
compiledContract.runtimeObject = compiler->runtimeObject();
}
catch(eth::AssemblyException const&)
{
solAssert(false, "Assembly exception for deployed bytecode");
}
_otherCompilers[compiledContract.contract] = compiler;
2015-10-07 13:57:17 +00:00
}
2015-08-31 16:44:29 +00:00
CompilerStack::Contract const& CompilerStack::contract(string const& _contractName) const
{
solAssert(m_stackState >= AnalysisSuccessful, "");
auto it = m_contracts.find(_contractName);
if (it != m_contracts.end())
return it->second;
// 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)
{
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, ':');
if (foundName == _contractName)
return contractEntry.second;
}
}
// If we get here, both lookup methods failed.
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Contract \"" + _contractName + "\" not found."));
}
2015-08-31 16:44:29 +00:00
CompilerStack::Source const& CompilerStack::source(string const& _sourceName) const
{
auto it = m_sources.find(_sourceName);
if (it == m_sources.end())
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Given source file not found."));
return it->second;
}
2016-07-01 08:14:50 +00:00
2017-05-19 15:10:32 +00:00
string CompilerStack::createMetadata(Contract const& _contract) const
2016-11-14 10:46:43 +00:00
{
Json::Value meta;
meta["version"] = 1;
meta["language"] = "Solidity";
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;
referencedSources.insert(_contract.contract->sourceUnit().annotation().path);
for (auto const sourceUnit: _contract.contract->sourceUnit().referencedSourceUnits(true))
referencedSources.insert(sourceUnit->annotation().path);
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;
2016-11-14 10:46:43 +00:00
solAssert(s.second.scanner, "Scanner not available");
2018-12-18 15:38:25 +00:00
meta["sources"][s.first]["keccak256"] = "0x" + toHex(s.second.keccak256().asBytes());
if (m_metadataLiteralSources)
meta["sources"][s.first]["content"] = s.second.scanner->source();
else
{
meta["sources"][s.first]["urls"] = Json::arrayValue;
2018-12-18 15:38:25 +00:00
meta["sources"][s.first]["urls"].append("bzzr://" + toHex(s.second.swarmHash().asBytes()));
}
2016-11-14 10:46:43 +00:00
}
meta["settings"]["optimizer"]["enabled"] = m_optimize;
meta["settings"]["optimizer"]["runs"] = m_optimizeRuns;
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()] =
_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;
for (auto const& r: m_remappings)
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)
meta["settings"]["libraries"][library.first] = "0x" + toHex(library.second.asBytes());
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
2016-11-16 13:36:19 +00:00
return jsonCompactPrint(meta);
2016-11-14 10:46:43 +00:00
}
2018-12-18 15:38:25 +00:00
bytes CompilerStack::createCBORMetadata(string const& _metadata, bool _experimentalMode)
2018-06-22 10:02:50 +00:00
{
bytes cborEncodedHash =
// CBOR-encoding of the key "bzzr0"
bytes{0x65, 'b', 'z', 'z', 'r', '0'}+
// CBOR-encoding of the hash
bytes{0x58, 0x20} + dev::swarmHash(_metadata).asBytes();
bytes cborEncodedMetadata;
if (_experimentalMode)
cborEncodedMetadata =
// CBOR-encoding of {"bzzr0": dev::swarmHash(metadata), "experimental": true}
bytes{0xa2} +
cborEncodedHash +
bytes{0x6c, 'e', 'x', 'p', 'e', 'r', 'i', 'm', 'e', 'n', 't', 'a', 'l', 0xf5};
else
cborEncodedMetadata =
// CBOR-encoding of {"bzzr0": dev::swarmHash(metadata)}
bytes{0xa1} +
cborEncodedHash;
solAssert(cborEncodedMetadata.size() <= 0xffff, "Metadata too large");
// 16-bit big endian length
cborEncodedMetadata += toCompactBigEndian(cborEncodedMetadata.size(), 2);
return cborEncodedMetadata;
}
2016-07-01 08:14:50 +00:00
string CompilerStack::computeSourceMapping(eth::AssemblyItems const& _items) const
{
2018-12-18 17:27:38 +00:00
if (m_stackState != CompilationSuccessful)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2016-07-01 08:14:50 +00:00
string ret;
map<string, unsigned> sourceIndicesMap = sourceIndices();
int prevStart = -1;
int prevLength = -1;
int prevSourceIndex = -1;
char prevJump = 0;
for (auto const& item: _items)
{
if (!ret.empty())
ret += ";";
SourceLocation const& location = item.location();
int length = location.start != -1 && location.end != -1 ? location.end - location.start : -1;
int sourceIndex =
location.source && sourceIndicesMap.count(location.source->name()) ?
sourceIndicesMap.at(location.source->name()) :
2016-07-01 08:14:50 +00:00
-1;
char jump = '-';
if (item.getJumpType() == eth::AssemblyItem::JumpType::IntoFunction)
jump = 'i';
else if (item.getJumpType() == eth::AssemblyItem::JumpType::OutOfFunction)
jump = 'o';
unsigned components = 4;
if (jump == prevJump)
{
components--;
if (sourceIndex == prevSourceIndex)
{
components--;
if (length == prevLength)
{
components--;
if (location.start == prevStart)
components--;
}
}
}
if (components-- > 0)
{
if (location.start != prevStart)
ret += to_string(location.start);
2016-07-01 08:14:50 +00:00
if (components-- > 0)
{
ret += ':';
if (length != prevLength)
ret += to_string(length);
2016-07-01 08:14:50 +00:00
if (components-- > 0)
{
ret += ':';
if (sourceIndex != prevSourceIndex)
ret += to_string(sourceIndex);
2016-07-01 08:14:50 +00:00
if (components-- > 0)
{
ret += ':';
if (jump != prevJump)
ret += jump;
}
}
}
}
prevStart = location.start;
prevLength = length;
prevSourceIndex = sourceIndex;
prevJump = jump;
}
return ret;
}
2017-04-10 13:00:24 +00:00
namespace
{
Json::Value gasToJson(GasEstimator::GasConsumption const& _gas)
{
if (_gas.isInfinite)
return Json::Value("infinite");
2017-04-10 13:00:24 +00:00
else
return Json::Value(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)
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Compilation was not successful."));
2017-04-10 13:00:24 +00:00
if (!assemblyItems(_contractName) && !runtimeAssemblyItems(_contractName))
return Json::Value();
using Gas = GasEstimator::GasConsumption;
GasEstimator gasEstimator(m_evmVersion);
2017-04-10 13:00:24 +00:00
Json::Value output(Json::objectValue);
if (eth::AssemblyItems const* items = assemblyItems(_contractName))
{
Gas executionGas = gasEstimator.functionalEstimation(*items);
Gas codeDepositGas{eth::GasMeter::dataGas(runtimeObject(_contractName).bytecode, false)};
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;
}
if (eth::AssemblyItems const* items = runtimeAssemblyItems(_contractName))
{
/// External functions
ContractDefinition const& contract = contractDefinition(_contractName);
Json::Value externalFunctions(Json::objectValue);
for (auto it: contract.interfaceFunctions())
{
string sig = it.second->externalSignature();
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.
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())
{
/// Exclude externally visible functions, constructor and the fallback function
2017-07-27 19:55:55 +00:00
if (it->isPartOfExternalInterface() || it->isConstructor() || it->isFallback())
2017-04-10 13:00:24 +00:00
continue;
size_t entry = functionEntryPoint(_contractName, *it);
GasEstimator::GasConsumption gas = GasEstimator::GasConsumption::infinite();
if (entry > 0)
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;
}