2014-12-09 12:43:08 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-12-09 12:43:08 +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-12-09 12:43:08 +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-12-09 12:43:08 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Lefteris <lefteris@ethdev.com>
|
2015-01-09 07:05:52 +00:00
|
|
|
* @author Gav Wood <g@ethdev.com>
|
2014-12-09 12:43:08 +00:00
|
|
|
* @date 2014
|
2014-12-09 16:39:34 +00:00
|
|
|
* Solidity command line interface.
|
2014-12-09 12:43:08 +00:00
|
|
|
*/
|
2014-12-09 16:39:34 +00:00
|
|
|
#include "CommandLineInterface.h"
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-05-13 18:51:41 +00:00
|
|
|
#ifdef _WIN32 // windows
|
|
|
|
#include <io.h>
|
|
|
|
#define isatty _isatty
|
|
|
|
#define fileno _fileno
|
|
|
|
#else // unix
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2014-12-09 12:43:08 +00:00
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
2016-01-29 22:09:05 +00:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
2015-04-23 12:40:42 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2015-09-16 13:55:25 +00:00
|
|
|
#include "solidity/BuildInfo.h"
|
2014-12-09 12:43:08 +00:00
|
|
|
#include <libdevcore/Common.h>
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libdevcore/CommonIO.h>
|
2016-11-15 17:33:28 +00:00
|
|
|
#include <libdevcore/JSON.h>
|
2016-04-01 20:11:01 +00:00
|
|
|
#include <libevmasm/Instruction.h>
|
2016-04-06 18:55:46 +00:00
|
|
|
#include <libevmasm/GasMeter.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/Version.h>
|
|
|
|
#include <libsolidity/parsing/Scanner.h>
|
|
|
|
#include <libsolidity/parsing/Parser.h>
|
|
|
|
#include <libsolidity/ast/ASTPrinter.h>
|
|
|
|
#include <libsolidity/ast/ASTJsonConverter.h>
|
|
|
|
#include <libsolidity/analysis/NameAndTypeResolver.h>
|
|
|
|
#include <libsolidity/interface/Exceptions.h>
|
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
|
|
|
#include <libsolidity/interface/SourceReferenceFormatter.h>
|
|
|
|
#include <libsolidity/interface/GasEstimator.h>
|
2016-02-22 01:13:41 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmParser.h>
|
2015-10-21 14:43:31 +00:00
|
|
|
#include <libsolidity/formal/Why3Translator.h>
|
2014-12-09 12:43:08 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strAbi = "abi";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strAddStandard = "add-std";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strAsm = "asm";
|
|
|
|
static string const g_strAsmJson = "asm-json";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strAssemble = "assemble";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strAst = "ast";
|
|
|
|
static string const g_strAstJson = "ast-json";
|
|
|
|
static string const g_strBinary = "bin";
|
|
|
|
static string const g_strBinaryRuntime = "bin-runtime";
|
|
|
|
static string const g_strCloneBinary = "clone-bin";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strCombinedJson = "combined-json";
|
|
|
|
static string const g_strContracts = "contracts";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strFormal = "formal";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strGas = "gas";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strHelp = "help";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strInputFile = "input-file";
|
|
|
|
static string const g_strInterface = "interface";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strLibraries = "libraries";
|
|
|
|
static string const g_strLink = "link";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strMetadata = "metadata";
|
|
|
|
static string const g_strNatspecDev = "devdoc";
|
|
|
|
static string const g_strNatspecUser = "userdoc";
|
|
|
|
static string const g_strOpcodes = "opcodes";
|
|
|
|
static string const g_strOptimize = "optimize";
|
|
|
|
static string const g_strOptimizeRuns = "optimize-runs";
|
|
|
|
static string const g_strOutputDir = "output-dir";
|
|
|
|
static string const g_strSignatureHashes = "hashes";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_strSources = "sources";
|
|
|
|
static string const g_strSourceList = "sourceList";
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_strSrcMap = "srcmap";
|
|
|
|
static string const g_strSrcMapRuntime = "srcmap-runtime";
|
|
|
|
static string const g_strVersion = "version";
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_stdinFileNameStr = "<stdin>";
|
2017-01-25 12:45:18 +00:00
|
|
|
static string const g_strMetadataLiteral = "metadata-literal";
|
2016-10-22 15:02:28 +00:00
|
|
|
|
|
|
|
static string const g_argAbi = g_strAbi;
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_argAddStandard = g_strAddStandard;
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_argAsm = g_strAsm;
|
|
|
|
static string const g_argAsmJson = g_strAsmJson;
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_argAssemble = g_strAssemble;
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_argAst = g_strAst;
|
|
|
|
static string const g_argAstJson = g_strAstJson;
|
|
|
|
static string const g_argBinary = g_strBinary;
|
|
|
|
static string const g_argBinaryRuntime = g_strBinaryRuntime;
|
|
|
|
static string const g_argCloneBinary = g_strCloneBinary;
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_argCombinedJson = g_strCombinedJson;
|
|
|
|
static string const g_argFormal = g_strFormal;
|
|
|
|
static string const g_argGas = g_strGas;
|
|
|
|
static string const g_argHelp = g_strHelp;
|
|
|
|
static string const g_argInputFile = g_strInputFile;
|
|
|
|
static string const g_argLibraries = g_strLibraries;
|
|
|
|
static string const g_argLink = g_strLink;
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_argMetadata = g_strMetadata;
|
|
|
|
static string const g_argNatspecDev = g_strNatspecDev;
|
|
|
|
static string const g_argNatspecUser = g_strNatspecUser;
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_argOpcodes = g_strOpcodes;
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_argOptimize = g_strOptimize;
|
|
|
|
static string const g_argOptimizeRuns = g_strOptimizeRuns;
|
2016-10-22 15:17:49 +00:00
|
|
|
static string const g_argOutputDir = g_strOutputDir;
|
|
|
|
static string const g_argSignatureHashes = g_strSignatureHashes;
|
|
|
|
static string const g_argVersion = g_strVersion;
|
2016-10-22 15:02:28 +00:00
|
|
|
static string const g_stdinFileName = g_stdinFileNameStr;
|
2017-01-25 12:45:18 +00:00
|
|
|
static string const g_argMetadataLiteral = g_strMetadataLiteral;
|
2014-12-16 22:55:38 +00:00
|
|
|
|
2015-04-23 12:40:42 +00:00
|
|
|
/// Possible arguments to for --combined-json
|
|
|
|
static set<string> const g_combinedJsonArgs{
|
2016-10-22 15:17:49 +00:00
|
|
|
g_strAbi,
|
|
|
|
g_strAsm,
|
|
|
|
g_strAst,
|
2016-10-22 15:02:28 +00:00
|
|
|
g_strBinary,
|
|
|
|
g_strBinaryRuntime,
|
|
|
|
g_strCloneBinary,
|
|
|
|
g_strInterface,
|
|
|
|
g_strMetadata,
|
|
|
|
g_strNatspecUser,
|
2016-10-22 15:17:49 +00:00
|
|
|
g_strNatspecDev,
|
|
|
|
g_strOpcodes,
|
|
|
|
g_strSrcMap,
|
|
|
|
g_strSrcMapRuntime
|
2015-04-23 12:40:42 +00:00
|
|
|
};
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
static void version()
|
|
|
|
{
|
2015-07-08 17:32:43 +00:00
|
|
|
cout <<
|
|
|
|
"solc, the solidity compiler commandline interface" <<
|
|
|
|
endl <<
|
|
|
|
"Version: " <<
|
|
|
|
dev::solidity::VersionString <<
|
|
|
|
endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2015-04-23 12:40:42 +00:00
|
|
|
static bool needsHumanTargetedStdout(po::variables_map const& _args)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-10-21 14:43:31 +00:00
|
|
|
if (_args.count(g_argGas))
|
|
|
|
return true;
|
2016-10-22 15:02:28 +00:00
|
|
|
if (_args.count(g_argOutputDir))
|
2015-10-21 14:43:31 +00:00
|
|
|
return false;
|
|
|
|
for (string const& arg: {
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argAbi,
|
|
|
|
g_argAsm,
|
|
|
|
g_argAsmJson,
|
2015-10-21 14:43:31 +00:00
|
|
|
g_argAstJson,
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argBinary,
|
|
|
|
g_argBinaryRuntime,
|
|
|
|
g_argCloneBinary,
|
2016-10-22 15:17:49 +00:00
|
|
|
g_argFormal,
|
|
|
|
g_argMetadata,
|
|
|
|
g_argNatspecUser,
|
|
|
|
g_argNatspecDev,
|
|
|
|
g_argOpcodes,
|
|
|
|
g_argSignatureHashes
|
2015-10-21 14:43:31 +00:00
|
|
|
})
|
|
|
|
if (_args.count(arg))
|
|
|
|
return true;
|
|
|
|
return false;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleBinary(string const& _contract)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argBinary))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2017-01-06 01:08:34 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2016-12-11 22:17:38 +00:00
|
|
|
createFile(m_compiler->filesystemFriendlyName(_contract) + ".bin", m_compiler->object(_contract).toHex());
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "Binary: " << endl;
|
2015-09-10 10:01:05 +00:00
|
|
|
cout << m_compiler->object(_contract).toHex() << endl;
|
2015-08-10 10:40:02 +00:00
|
|
|
}
|
2014-12-09 19:29:29 +00:00
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argCloneBinary))
|
2014-12-09 19:29:29 +00:00
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2015-09-10 10:01:05 +00:00
|
|
|
createFile(_contract + ".clone_bin", m_compiler->cloneObject(_contract).toHex());
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "Clone Binary: " << endl;
|
2015-09-10 10:01:05 +00:00
|
|
|
cout << m_compiler->cloneObject(_contract).toHex() << endl;
|
2015-08-10 10:40:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argBinaryRuntime))
|
2015-08-24 15:24:48 +00:00
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2015-09-23 12:34:42 +00:00
|
|
|
createFile(_contract + ".bin-runtime", m_compiler->runtimeObject(_contract).toHex());
|
2015-08-24 15:24:48 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "Binary of the runtime part: " << endl;
|
2015-09-10 10:01:05 +00:00
|
|
|
cout << m_compiler->runtimeObject(_contract).toHex() << endl;
|
2015-08-24 15:24:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-09 19:29:29 +00:00
|
|
|
}
|
2014-12-09 17:17:54 +00:00
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleOpcode(string const& _contract)
|
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2016-04-02 12:56:43 +00:00
|
|
|
createFile(_contract + ".opcode", solidity::disassemble(m_compiler->object(_contract).bytecode));
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
2014-12-09 19:29:29 +00:00
|
|
|
{
|
|
|
|
cout << "Opcodes: " << endl;
|
2016-04-02 12:56:43 +00:00
|
|
|
cout << solidity::disassemble(m_compiler->object(_contract).bytecode);
|
2014-12-09 19:29:29 +00:00
|
|
|
cout << endl;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleBytecode(string const& _contract)
|
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOpcodes))
|
2014-12-09 19:29:29 +00:00
|
|
|
handleOpcode(_contract);
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argBinary) || m_args.count(g_argCloneBinary) || m_args.count(g_argBinaryRuntime))
|
2014-12-09 19:29:29 +00:00
|
|
|
handleBinary(_contract);
|
|
|
|
}
|
|
|
|
|
2015-05-04 14:21:44 +00:00
|
|
|
void CommandLineInterface::handleSignatureHashes(string const& _contract)
|
|
|
|
{
|
2015-05-05 15:08:30 +00:00
|
|
|
if (!m_args.count(g_argSignatureHashes))
|
|
|
|
return;
|
|
|
|
|
2015-05-04 14:21:44 +00:00
|
|
|
string out;
|
2015-08-31 16:44:29 +00:00
|
|
|
for (auto const& it: m_compiler->contractDefinition(_contract).interfaceFunctions())
|
2015-05-04 14:21:44 +00:00
|
|
|
out += toHex(it.first.ref()) + ": " + it.second->externalSignature() + "\n";
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2015-08-19 23:09:39 +00:00
|
|
|
createFile(_contract + ".signatures", out);
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
|
|
|
cout << "Function signatures: " << endl << out;
|
2015-05-04 14:21:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 10:46:43 +00:00
|
|
|
void CommandLineInterface::handleOnChainMetadata(string const& _contract)
|
|
|
|
{
|
|
|
|
if (!m_args.count(g_argMetadata))
|
|
|
|
return;
|
|
|
|
|
|
|
|
string data = m_compiler->onChainMetadata(_contract);
|
|
|
|
if (m_args.count("output-dir"))
|
2016-11-23 18:04:50 +00:00
|
|
|
createFile(_contract + "_meta.json", data);
|
2016-11-14 10:46:43 +00:00
|
|
|
else
|
|
|
|
cout << "Metadata: " << endl << data << endl;
|
|
|
|
}
|
|
|
|
|
2015-01-09 07:05:52 +00:00
|
|
|
void CommandLineInterface::handleMeta(DocumentationType _type, string const& _contract)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
std::string argName;
|
|
|
|
std::string suffix;
|
|
|
|
std::string title;
|
|
|
|
switch(_type)
|
|
|
|
{
|
2015-02-09 13:12:36 +00:00
|
|
|
case DocumentationType::ABIInterface:
|
2016-10-22 15:02:28 +00:00
|
|
|
argName = g_argAbi;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".abi";
|
2015-01-09 07:09:30 +00:00
|
|
|
title = "Contract JSON ABI";
|
2014-12-09 12:43:08 +00:00
|
|
|
break;
|
2015-02-09 13:12:36 +00:00
|
|
|
case DocumentationType::NatspecUser:
|
2016-10-22 15:02:28 +00:00
|
|
|
argName = g_argNatspecUser;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".docuser";
|
|
|
|
title = "User Documentation";
|
|
|
|
break;
|
2015-02-09 13:12:36 +00:00
|
|
|
case DocumentationType::NatspecDev:
|
2016-10-22 15:02:28 +00:00
|
|
|
argName = g_argNatspecDev;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".docdev";
|
|
|
|
title = "Developer Documentation";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// should never happen
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation _type"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_args.count(argName))
|
|
|
|
{
|
2016-11-15 01:04:00 +00:00
|
|
|
std::string output;
|
|
|
|
if (_type == DocumentationType::ABIInterface)
|
2016-11-15 17:33:28 +00:00
|
|
|
output = dev::jsonCompactPrint(m_compiler->metadata(_contract, _type));
|
2016-11-15 01:04:00 +00:00
|
|
|
else
|
2016-11-15 17:33:28 +00:00
|
|
|
output = dev::jsonPrettyPrint(m_compiler->metadata(_contract, _type));
|
2016-11-15 01:04:00 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2016-11-15 01:04:00 +00:00
|
|
|
createFile(_contract + suffix, output);
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << title << endl;
|
2016-11-15 01:04:00 +00:00
|
|
|
cout << output << endl;
|
2015-08-10 10:40:02 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-22 12:19:58 +00:00
|
|
|
void CommandLineInterface::handleGasEstimation(string const& _contract)
|
|
|
|
{
|
|
|
|
using Gas = GasEstimator::GasConsumption;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (!m_compiler->assemblyItems(_contract) && !m_compiler->runtimeAssemblyItems(_contract))
|
2015-05-22 12:19:58 +00:00
|
|
|
return;
|
|
|
|
cout << "Gas estimation:" << endl;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (eth::AssemblyItems const* items = m_compiler->assemblyItems(_contract))
|
2015-05-22 12:19:58 +00:00
|
|
|
{
|
|
|
|
Gas gas = GasEstimator::functionalEstimation(*items);
|
2015-09-10 10:01:05 +00:00
|
|
|
u256 bytecodeSize(m_compiler->runtimeObject(_contract).bytecode.size());
|
2015-05-26 09:27:59 +00:00
|
|
|
cout << "construction:" << endl;
|
2016-04-06 18:55:46 +00:00
|
|
|
cout << " " << gas << " + " << (bytecodeSize * eth::GasCosts::createDataGas) << " = ";
|
|
|
|
gas += bytecodeSize * eth::GasCosts::createDataGas;
|
2015-05-22 12:19:58 +00:00
|
|
|
cout << gas << endl;
|
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
if (eth::AssemblyItems const* items = m_compiler->runtimeAssemblyItems(_contract))
|
2015-05-26 09:27:59 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
ContractDefinition const& contract = m_compiler->contractDefinition(_contract);
|
2015-05-26 09:27:59 +00:00
|
|
|
cout << "external:" << endl;
|
2015-08-31 16:44:29 +00:00
|
|
|
for (auto it: contract.interfaceFunctions())
|
2015-05-22 12:19:58 +00:00
|
|
|
{
|
|
|
|
string sig = it.second->externalSignature();
|
|
|
|
GasEstimator::GasConsumption gas = GasEstimator::functionalEstimation(*items, sig);
|
2015-05-26 09:27:59 +00:00
|
|
|
cout << " " << sig << ":\t" << gas << endl;
|
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
if (contract.fallbackFunction())
|
2015-06-18 15:38:26 +00:00
|
|
|
{
|
|
|
|
GasEstimator::GasConsumption gas = GasEstimator::functionalEstimation(*items, "INVALID");
|
|
|
|
cout << " fallback:\t" << gas << endl;
|
|
|
|
}
|
2015-05-26 09:27:59 +00:00
|
|
|
cout << "internal:" << endl;
|
2015-08-31 16:44:29 +00:00
|
|
|
for (auto const& it: contract.definedFunctions())
|
2015-05-26 09:27:59 +00:00
|
|
|
{
|
|
|
|
if (it->isPartOfExternalInterface() || it->isConstructor())
|
|
|
|
continue;
|
2015-08-31 16:44:29 +00:00
|
|
|
size_t entry = m_compiler->functionEntryPoint(_contract, *it);
|
2015-05-26 09:27:59 +00:00
|
|
|
GasEstimator::GasConsumption gas = GasEstimator::GasConsumption::infinite();
|
|
|
|
if (entry > 0)
|
|
|
|
gas = GasEstimator::functionalEstimation(*items, entry, *it);
|
|
|
|
FunctionType type(*it);
|
2015-08-31 16:44:29 +00:00
|
|
|
cout << " " << it->name() << "(";
|
2015-12-09 16:53:15 +00:00
|
|
|
auto paramTypes = type.parameterTypes();
|
|
|
|
for (auto it = paramTypes.begin(); it != paramTypes.end(); ++it)
|
|
|
|
cout << (*it)->toString() << (it + 1 == paramTypes.end() ? "" : ",");
|
2015-05-26 09:27:59 +00:00
|
|
|
cout << "):\t" << gas << endl;
|
2015-05-22 12:19:58 +00:00
|
|
|
}
|
2015-05-26 09:27:59 +00:00
|
|
|
}
|
2015-05-22 12:19:58 +00:00
|
|
|
}
|
|
|
|
|
2015-10-21 14:43:31 +00:00
|
|
|
void CommandLineInterface::handleFormal()
|
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (!m_args.count(g_argFormal))
|
2015-10-21 14:43:31 +00:00
|
|
|
return;
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2015-10-21 14:43:31 +00:00
|
|
|
createFile("solidity.mlw", m_compiler->formalTranslation());
|
|
|
|
else
|
|
|
|
cout << "Formal version:" << endl << m_compiler->formalTranslation() << endl;
|
|
|
|
}
|
|
|
|
|
2016-01-25 18:42:17 +00:00
|
|
|
void CommandLineInterface::readInputFilesAndConfigureRemappings()
|
|
|
|
{
|
2016-08-16 15:06:56 +00:00
|
|
|
bool addStdin = false;
|
2016-10-22 15:02:28 +00:00
|
|
|
if (!m_args.count(g_argInputFile))
|
2016-08-16 15:06:56 +00:00
|
|
|
addStdin = true;
|
2016-01-25 18:42:17 +00:00
|
|
|
else
|
2016-10-22 15:02:28 +00:00
|
|
|
for (string path: m_args[g_argInputFile].as<vector<string>>())
|
2016-01-25 18:42:17 +00:00
|
|
|
{
|
2016-06-07 17:44:32 +00:00
|
|
|
auto eq = find(path.begin(), path.end(), '=');
|
|
|
|
if (eq != path.end())
|
|
|
|
path = string(eq + 1, path.end());
|
2016-08-16 15:06:56 +00:00
|
|
|
else if (path == "-")
|
|
|
|
addStdin = true;
|
2016-01-25 18:42:17 +00:00
|
|
|
else
|
|
|
|
{
|
2016-06-07 17:44:32 +00:00
|
|
|
auto infile = boost::filesystem::path(path);
|
|
|
|
if (!boost::filesystem::exists(infile))
|
2016-01-25 18:42:17 +00:00
|
|
|
{
|
2016-12-01 04:29:30 +00:00
|
|
|
cerr << "Skipping non-existent input file \"" << infile << "\"" << endl;
|
2016-01-25 18:42:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
if (!boost::filesystem::is_regular_file(infile))
|
2016-01-25 18:42:17 +00:00
|
|
|
{
|
|
|
|
cerr << "\"" << infile << "\" is not a valid file. Skipping" << endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
m_sourceCodes[infile.string()] = dev::contentsString(infile.string());
|
|
|
|
path = boost::filesystem::canonical(infile).string();
|
2016-01-25 18:42:17 +00:00
|
|
|
}
|
2016-06-07 17:44:32 +00:00
|
|
|
m_allowedDirectories.push_back(boost::filesystem::path(path).remove_filename());
|
2016-01-25 18:42:17 +00:00
|
|
|
}
|
2016-08-16 15:06:56 +00:00
|
|
|
if (addStdin)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
while (!cin.eof())
|
|
|
|
{
|
|
|
|
getline(cin, s);
|
|
|
|
m_sourceCodes[g_stdinFileName].append(s + '\n');
|
|
|
|
}
|
|
|
|
}
|
2016-01-25 18:42:17 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
bool CommandLineInterface::parseLibraryOption(string const& _input)
|
|
|
|
{
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
string data = fs::is_regular_file(_input) ? contentsString(_input) : _input;
|
|
|
|
|
|
|
|
vector<string> libraries;
|
|
|
|
boost::split(libraries, data, boost::is_space() || boost::is_any_of(","), boost::token_compress_on);
|
|
|
|
for (string const& lib: libraries)
|
|
|
|
if (!lib.empty())
|
|
|
|
{
|
|
|
|
auto colon = lib.find(':');
|
|
|
|
if (colon == string::npos)
|
|
|
|
{
|
|
|
|
cerr << "Colon separator missing in library address specifier \"" << lib << "\"" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
string libName(lib.begin(), lib.begin() + colon);
|
|
|
|
string addrString(lib.begin() + colon + 1, lib.end());
|
|
|
|
boost::trim(libName);
|
|
|
|
boost::trim(addrString);
|
|
|
|
bytes binAddr = fromHex(addrString);
|
|
|
|
h160 address(binAddr, h160::AlignRight);
|
|
|
|
if (binAddr.size() > 20 || address == h160())
|
|
|
|
{
|
|
|
|
cerr << "Invalid address for library \"" << libName << "\": " << addrString << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_libraries[libName] = address;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-10 10:44:59 +00:00
|
|
|
void CommandLineInterface::createFile(string const& _fileName, string const& _data)
|
|
|
|
{
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
// create directory if not existent
|
2016-10-22 15:02:28 +00:00
|
|
|
fs::path p(m_args.at(g_argOutputDir).as<string>());
|
2015-08-10 10:44:59 +00:00
|
|
|
fs::create_directories(p);
|
2015-08-19 23:09:39 +00:00
|
|
|
string pathName = (p / _fileName).string();
|
|
|
|
ofstream outFile(pathName);
|
2015-07-21 13:29:15 +00:00
|
|
|
outFile << _data;
|
2015-08-10 10:44:59 +00:00
|
|
|
if (!outFile)
|
2015-08-19 23:09:39 +00:00
|
|
|
BOOST_THROW_EXCEPTION(FileError() << errinfo_comment("Could not write to file: " + pathName));
|
2015-08-10 10:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CommandLineInterface::parseArguments(int _argc, char** _argv)
|
2014-12-09 16:39:34 +00:00
|
|
|
{
|
|
|
|
// Declare the supported options.
|
2015-08-19 23:09:39 +00:00
|
|
|
po::options_description desc(
|
|
|
|
R"(solc, the Solidity commandline compiler.
|
|
|
|
Usage: solc [options] [input_file...]
|
2016-08-16 15:06:56 +00:00
|
|
|
Compiles the given Solidity input files (or the standard input if none given or
|
|
|
|
"-" is used as a file name) and outputs the components specified in the options
|
|
|
|
at standard output or in files in the output directory, if specified.
|
2016-10-15 06:36:40 +00:00
|
|
|
Imports are automatically read from the filesystem, but it is also possible to
|
|
|
|
remap paths using the context:prefix=path syntax.
|
|
|
|
Example:
|
|
|
|
solc --bin -o /tmp/solcoutput dapp-bin=/usr/local/lib/dapp-bin contract.sol
|
2015-08-19 23:09:39 +00:00
|
|
|
|
|
|
|
Allowed options)",
|
|
|
|
po::options_description::m_default_line_length,
|
|
|
|
po::options_description::m_default_line_length - 23);
|
2014-12-09 16:39:34 +00:00
|
|
|
desc.add_options()
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argHelp.c_str(), "Show help message and exit.")
|
|
|
|
(g_argVersion.c_str(), "Show version and exit.")
|
|
|
|
(g_argOptimize.c_str(), "Enable bytecode optimizer.")
|
2015-08-19 23:09:39 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argOptimizeRuns.c_str(),
|
2015-08-19 23:09:39 +00:00
|
|
|
po::value<unsigned>()->value_name("n")->default_value(200),
|
|
|
|
"Estimated number of contract runs for optimizer tuning."
|
|
|
|
)
|
|
|
|
(g_argAddStandard.c_str(), "Add standard contracts.")
|
2015-09-11 17:35:01 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argLibraries.c_str(),
|
2015-09-11 17:35:01 +00:00
|
|
|
po::value<vector<string>>()->value_name("libs"),
|
|
|
|
"Direct string or file containing library addresses. Syntax: "
|
|
|
|
"<libraryName>: <address> [, or whitespace] ...\n"
|
|
|
|
"Address is interpreted as a hex string optionally prefixed by 0x."
|
|
|
|
)
|
2015-08-19 23:09:39 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argOutputDir + ",o").c_str(),
|
2015-08-19 23:09:39 +00:00
|
|
|
po::value<string>()->value_name("path"),
|
|
|
|
"If given, creates one file per component and contract/file at the specified directory."
|
|
|
|
)
|
2015-04-23 12:40:42 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argCombinedJson.c_str(),
|
2015-04-23 12:40:42 +00:00
|
|
|
po::value<string>()->value_name(boost::join(g_combinedJsonArgs, ",")),
|
2015-08-19 23:09:39 +00:00
|
|
|
"Output a single json document containing the specified information."
|
2015-04-23 12:40:42 +00:00
|
|
|
)
|
2015-09-11 17:35:01 +00:00
|
|
|
(g_argGas.c_str(), "Print an estimate of the maximal gas usage for each function.")
|
2016-02-22 01:13:41 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argAssemble.c_str(),
|
2016-02-22 01:13:41 +00:00
|
|
|
"Switch to assembly mode, ignoring all options and assumes input is assembly."
|
|
|
|
)
|
2015-09-11 17:35:01 +00:00
|
|
|
(
|
2016-10-22 15:02:28 +00:00
|
|
|
g_argLink.c_str(),
|
2015-09-11 17:35:01 +00:00
|
|
|
"Switch to linker mode, ignoring all options apart from --libraries "
|
|
|
|
"and modify binaries in place."
|
2017-01-25 12:45:18 +00:00
|
|
|
)
|
|
|
|
(g_argMetadataLiteral.c_str(), "Store referenced sources are literal data in the metadata output.");
|
2015-08-19 23:09:39 +00:00
|
|
|
po::options_description outputComponents("Output Components");
|
|
|
|
outputComponents.add_options()
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argAst.c_str(), "AST of all source files.")
|
2015-08-19 23:09:39 +00:00
|
|
|
(g_argAstJson.c_str(), "AST of all source files in JSON format.")
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argAsm.c_str(), "EVM assembly of the contracts.")
|
|
|
|
(g_argAsmJson.c_str(), "EVM assembly of the contracts in JSON format.")
|
|
|
|
(g_argOpcodes.c_str(), "Opcodes of the contracts.")
|
|
|
|
(g_argBinary.c_str(), "Binary of the contracts in hex.")
|
|
|
|
(g_argBinaryRuntime.c_str(), "Binary of the runtime part of the contracts in hex.")
|
|
|
|
(g_argCloneBinary.c_str(), "Binary of the clone contracts in hex.")
|
|
|
|
(g_argAbi.c_str(), "ABI specification of the contracts.")
|
2015-08-19 23:09:39 +00:00
|
|
|
(g_argSignatureHashes.c_str(), "Function signature hashes of the contracts.")
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argNatspecUser.c_str(), "Natspec user documentation of all contracts.")
|
|
|
|
(g_argNatspecDev.c_str(), "Natspec developer documentation of all contracts.")
|
2016-11-30 10:12:28 +00:00
|
|
|
(g_argMetadata.c_str(), "Combined Metadata JSON whose Swarm hash is stored on-chain.")
|
2016-10-22 15:02:28 +00:00
|
|
|
(g_argFormal.c_str(), "Translated source suitable for formal analysis.");
|
2015-08-19 23:09:39 +00:00
|
|
|
desc.add(outputComponents);
|
|
|
|
|
|
|
|
po::options_description allOptions = desc;
|
2016-10-22 15:02:28 +00:00
|
|
|
allOptions.add_options()(g_argInputFile.c_str(), po::value<vector<string>>(), "input file");
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
// All positional options should be interpreted as input files
|
2015-08-10 10:44:59 +00:00
|
|
|
po::positional_options_description filesPositions;
|
2016-10-22 15:02:28 +00:00
|
|
|
filesPositions.add(g_argInputFile.c_str(), -1);
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
// parse the compiler arguments
|
|
|
|
try
|
|
|
|
{
|
2015-08-19 23:09:39 +00:00
|
|
|
po::command_line_parser cmdLineParser(_argc, _argv);
|
2016-10-06 11:23:05 +00:00
|
|
|
cmdLineParser.options(allOptions).positional(filesPositions);
|
2015-08-19 23:09:39 +00:00
|
|
|
po::store(cmdLineParser.run(), m_args);
|
2014-12-09 16:39:34 +00:00
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (po::error const& _exception)
|
2014-12-09 16:39:34 +00:00
|
|
|
{
|
2015-04-23 16:42:01 +00:00
|
|
|
cerr << _exception.what() << endl;
|
2014-12-09 16:39:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-08-10 10:40:02 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argHelp) || (isatty(fileno(stdin)) && _argc == 1))
|
2014-12-09 16:39:34 +00:00
|
|
|
{
|
|
|
|
cout << desc;
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argVersion))
|
2014-12-09 16:39:34 +00:00
|
|
|
{
|
|
|
|
version();
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argCombinedJson))
|
2015-08-19 23:09:39 +00:00
|
|
|
{
|
|
|
|
vector<string> requests;
|
2016-10-22 15:02:28 +00:00
|
|
|
for (string const& item: boost::split(requests, m_args[g_argCombinedJson].as<string>(), boost::is_any_of(",")))
|
2015-08-19 23:09:39 +00:00
|
|
|
if (!g_combinedJsonArgs.count(item))
|
|
|
|
{
|
|
|
|
cerr << "Invalid option to --combined-json: " << item << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
po::notify(m_args);
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
return true;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
bool CommandLineInterface::processInput()
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2016-01-25 18:42:17 +00:00
|
|
|
readInputFilesAndConfigureRemappings();
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argLibraries))
|
|
|
|
for (string const& library: m_args[g_argLibraries].as<vector<string>>())
|
2015-09-11 17:35:01 +00:00
|
|
|
if (!parseLibraryOption(library))
|
|
|
|
return false;
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argAssemble))
|
2016-02-22 01:13:41 +00:00
|
|
|
{
|
|
|
|
// switch to assembly mode
|
|
|
|
m_onlyAssemble = true;
|
|
|
|
return assemble();
|
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argLink))
|
2015-09-11 17:35:01 +00:00
|
|
|
{
|
|
|
|
// switch to linker mode
|
|
|
|
m_onlyLink = true;
|
|
|
|
return link();
|
|
|
|
}
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
CompilerStack::ReadFileCallback fileReader = [this](string const& _path)
|
2016-01-12 00:04:39 +00:00
|
|
|
{
|
2016-07-11 13:31:38 +00:00
|
|
|
auto path = boost::filesystem::path(_path);
|
|
|
|
if (!boost::filesystem::exists(path))
|
2016-06-07 17:44:32 +00:00
|
|
|
return CompilerStack::ReadFileResult{false, "File not found."};
|
2016-07-11 13:31:38 +00:00
|
|
|
auto canonicalPath = boost::filesystem::canonical(path);
|
2016-06-07 17:44:32 +00:00
|
|
|
bool isAllowed = false;
|
|
|
|
for (auto const& allowedDir: m_allowedDirectories)
|
2016-01-25 18:42:17 +00:00
|
|
|
{
|
2016-06-07 17:44:32 +00:00
|
|
|
// If dir is a prefix of boostPath, we are fine.
|
|
|
|
if (
|
2016-07-11 13:31:38 +00:00
|
|
|
std::distance(allowedDir.begin(), allowedDir.end()) <= std::distance(canonicalPath.begin(), canonicalPath.end()) &&
|
|
|
|
std::equal(allowedDir.begin(), allowedDir.end(), canonicalPath.begin())
|
2016-06-07 17:44:32 +00:00
|
|
|
)
|
2016-01-29 22:09:05 +00:00
|
|
|
{
|
2016-06-07 17:44:32 +00:00
|
|
|
isAllowed = true;
|
|
|
|
break;
|
2016-01-25 18:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-07 17:44:32 +00:00
|
|
|
if (!isAllowed)
|
|
|
|
return CompilerStack::ReadFileResult{false, "File outside of allowed directories."};
|
2016-07-11 13:31:38 +00:00
|
|
|
else if (!boost::filesystem::is_regular_file(canonicalPath))
|
2016-06-07 17:44:32 +00:00
|
|
|
return CompilerStack::ReadFileResult{false, "Not a valid file."};
|
2016-01-29 22:09:05 +00:00
|
|
|
else
|
2016-06-07 17:44:32 +00:00
|
|
|
{
|
2016-07-11 13:31:38 +00:00
|
|
|
auto contents = dev::contentsString(canonicalPath.string());
|
|
|
|
m_sourceCodes[path.string()] = contents;
|
2016-06-07 17:44:32 +00:00
|
|
|
return CompilerStack::ReadFileResult{true, contents};
|
|
|
|
}
|
2016-01-12 00:04:39 +00:00
|
|
|
};
|
|
|
|
|
2016-08-15 14:58:01 +00:00
|
|
|
m_compiler.reset(new CompilerStack(fileReader));
|
2016-02-22 01:13:41 +00:00
|
|
|
auto scannerFromSourceName = [&](string const& _sourceName) -> solidity::Scanner const& { return m_compiler->scanner(_sourceName); };
|
2014-12-09 12:43:08 +00:00
|
|
|
try
|
|
|
|
{
|
2017-01-25 12:45:18 +00:00
|
|
|
if (m_args.count(g_argMetadataLiteral) > 0)
|
|
|
|
m_compiler->useMetadataLiteralSources(true);
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argInputFile))
|
|
|
|
m_compiler->setRemappings(m_args[g_argInputFile].as<vector<string>>());
|
2014-12-09 12:43:08 +00:00
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
2015-01-29 00:29:43 +00:00
|
|
|
m_compiler->addSource(sourceCode.first, sourceCode.second);
|
2014-12-09 16:39:34 +00:00
|
|
|
// TODO: Perhaps we should not compile unless requested
|
2016-10-22 15:02:28 +00:00
|
|
|
bool optimize = m_args.count(g_argOptimize) > 0;
|
|
|
|
unsigned runs = m_args[g_argOptimizeRuns].as<unsigned>();
|
2016-11-14 10:46:43 +00:00
|
|
|
bool successful = m_compiler->compile(optimize, runs, m_libraries);
|
2015-10-21 14:43:31 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (successful && m_args.count(g_argFormal))
|
2015-10-21 14:43:31 +00:00
|
|
|
if (!m_compiler->prepareFormalAnalysis())
|
|
|
|
successful = false;
|
|
|
|
|
2015-10-01 15:59:01 +00:00
|
|
|
for (auto const& error: m_compiler->errors())
|
|
|
|
SourceReferenceFormatter::printExceptionInformation(
|
|
|
|
cerr,
|
|
|
|
*error,
|
2016-02-22 01:13:41 +00:00
|
|
|
(error->type() == Error::Type::Warning) ? "Warning" : "Error",
|
|
|
|
scannerFromSourceName
|
2015-10-01 15:59:01 +00:00
|
|
|
);
|
2015-10-21 14:43:31 +00:00
|
|
|
|
2015-10-01 15:59:01 +00:00
|
|
|
if (!successful)
|
2015-09-21 17:43:56 +00:00
|
|
|
return false;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (CompilerError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2016-02-22 01:13:41 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _exception, "Compiler error", scannerFromSourceName);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (InternalCompilerError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 15:23:18 +00:00
|
|
|
cerr << "Internal compiler error during compilation:" << endl
|
2014-12-17 16:08:57 +00:00
|
|
|
<< boost::diagnostic_information(_exception);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-14 20:41:58 +00:00
|
|
|
catch (UnimplementedFeatureError const& _exception)
|
|
|
|
{
|
|
|
|
cerr << "Unimplemented feature:" << endl
|
|
|
|
<< boost::diagnostic_information(_exception);
|
|
|
|
return false;
|
|
|
|
}
|
2015-10-02 12:41:40 +00:00
|
|
|
catch (Error const& _error)
|
2015-06-15 13:21:23 +00:00
|
|
|
{
|
2015-10-02 12:41:40 +00:00
|
|
|
if (_error.type() == Error::Type::DocstringParsingError)
|
|
|
|
cerr << "Documentation parsing error: " << *boost::get_error_info<errinfo_comment>(_error) << endl;
|
|
|
|
else
|
2016-02-22 01:13:41 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _error, _error.typeName(), scannerFromSourceName);
|
2015-10-02 12:41:40 +00:00
|
|
|
|
2015-06-15 13:21:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (Exception const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
cerr << "Exception during compilation: " << boost::diagnostic_information(_exception) << endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
cerr << "Unknown exception during compilation." << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
return true;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-23 12:40:42 +00:00
|
|
|
void CommandLineInterface::handleCombinedJSON()
|
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (!m_args.count(g_argCombinedJson))
|
2015-04-24 09:48:23 +00:00
|
|
|
return;
|
|
|
|
|
2015-04-23 12:40:42 +00:00
|
|
|
Json::Value output(Json::objectValue);
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strVersion] = ::dev::solidity::VersionString;
|
2015-04-23 12:40:42 +00:00
|
|
|
set<string> requests;
|
2016-10-22 15:02:28 +00:00
|
|
|
boost::split(requests, m_args[g_argCombinedJson].as<string>(), boost::is_any_of(","));
|
2015-08-31 16:44:29 +00:00
|
|
|
vector<string> contracts = m_compiler->contractNames();
|
2015-04-23 12:40:42 +00:00
|
|
|
|
|
|
|
if (!contracts.empty())
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strContracts] = Json::Value(Json::objectValue);
|
2015-04-23 12:40:42 +00:00
|
|
|
for (string const& contractName: contracts)
|
|
|
|
{
|
|
|
|
Json::Value contractData(Json::objectValue);
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strAbi))
|
|
|
|
contractData[g_strAbi] = dev::jsonCompactPrint(m_compiler->interface(contractName));
|
2016-11-14 10:46:43 +00:00
|
|
|
if (requests.count("metadata"))
|
|
|
|
contractData["metadata"] = m_compiler->onChainMetadata(contractName);
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strBinary))
|
|
|
|
contractData[g_strBinary] = m_compiler->object(contractName).toHex();
|
|
|
|
if (requests.count(g_strBinaryRuntime))
|
|
|
|
contractData[g_strBinaryRuntime] = m_compiler->runtimeObject(contractName).toHex();
|
|
|
|
if (requests.count(g_strCloneBinary))
|
|
|
|
contractData[g_strCloneBinary] = m_compiler->cloneObject(contractName).toHex();
|
|
|
|
if (requests.count(g_strOpcodes))
|
|
|
|
contractData[g_strOpcodes] = solidity::disassemble(m_compiler->object(contractName).bytecode);
|
|
|
|
if (requests.count(g_strAsm))
|
2015-04-23 12:40:42 +00:00
|
|
|
{
|
|
|
|
ostringstream unused;
|
2016-10-22 15:02:28 +00:00
|
|
|
contractData[g_strAsm] = m_compiler->streamAssembly(unused, contractName, m_sourceCodes, true);
|
2015-04-23 12:40:42 +00:00
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strSrcMap))
|
2016-07-01 08:14:50 +00:00
|
|
|
{
|
|
|
|
auto map = m_compiler->sourceMapping(contractName);
|
2016-10-22 15:02:28 +00:00
|
|
|
contractData[g_strSrcMap] = map ? *map : "";
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strSrcMapRuntime))
|
2016-07-01 08:14:50 +00:00
|
|
|
{
|
|
|
|
auto map = m_compiler->runtimeSourceMapping(contractName);
|
2016-10-22 15:02:28 +00:00
|
|
|
contractData[g_strSrcMapRuntime] = map ? *map : "";
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strNatspecDev))
|
|
|
|
contractData[g_strNatspecDev] = dev::jsonCompactPrint(m_compiler->metadata(contractName, DocumentationType::NatspecDev));
|
|
|
|
if (requests.count(g_strNatspecUser))
|
|
|
|
contractData[g_strNatspecUser] = dev::jsonCompactPrint(m_compiler->metadata(contractName, DocumentationType::NatspecUser));
|
|
|
|
output[g_strContracts][contractName] = contractData;
|
2015-04-23 12:40:42 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
bool needsSourceList = requests.count(g_strAst) || requests.count(g_strSrcMap) || requests.count(g_strSrcMapRuntime);
|
2016-07-01 08:14:50 +00:00
|
|
|
if (needsSourceList)
|
|
|
|
{
|
|
|
|
// Indices into this array are used to abbreviate source names in source locations.
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strSourceList] = Json::Value(Json::arrayValue);
|
2016-07-01 08:14:50 +00:00
|
|
|
|
|
|
|
for (auto const& source: m_compiler->sourceNames())
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strSourceList].append(source);
|
2016-07-01 08:14:50 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (requests.count(g_strAst))
|
2015-04-23 12:40:42 +00:00
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strSources] = Json::Value(Json::objectValue);
|
2015-04-23 12:40:42 +00:00
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
{
|
2016-07-01 08:14:50 +00:00
|
|
|
ASTJsonConverter converter(m_compiler->ast(sourceCode.first), m_compiler->sourceIndices());
|
2016-10-22 15:02:28 +00:00
|
|
|
output[g_strSources][sourceCode.first] = Json::Value(Json::objectValue);
|
|
|
|
output[g_strSources][sourceCode.first]["AST"] = converter.json();
|
2015-04-23 12:40:42 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-15 17:33:28 +00:00
|
|
|
cout << dev::jsonCompactPrint(output) << endl;
|
2015-04-23 12:40:42 +00:00
|
|
|
}
|
|
|
|
|
2015-01-16 10:44:55 +00:00
|
|
|
void CommandLineInterface::handleAst(string const& _argStr)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-01-16 10:44:55 +00:00
|
|
|
string title;
|
2015-01-05 14:46:40 +00:00
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (_argStr == g_argAst)
|
2015-01-05 14:46:40 +00:00
|
|
|
title = "Syntax trees:";
|
|
|
|
else if (_argStr == g_argAstJson)
|
|
|
|
title = "JSON AST:";
|
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Illegal argStr for AST"));
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
// do we need AST output?
|
2015-01-05 14:46:40 +00:00
|
|
|
if (m_args.count(_argStr))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-05-06 08:43:59 +00:00
|
|
|
vector<ASTNode const*> asts;
|
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
2015-09-08 12:30:21 +00:00
|
|
|
asts.push_back(&m_compiler->ast(sourceCode.first));
|
2015-05-06 08:43:59 +00:00
|
|
|
map<ASTNode const*, eth::GasMeter::GasConsumption> gasCosts;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (m_compiler->runtimeAssemblyItems())
|
2015-05-22 08:48:54 +00:00
|
|
|
gasCosts = GasEstimator::breakToStatementLevel(
|
2015-08-31 16:44:29 +00:00
|
|
|
GasEstimator::structuralEstimation(*m_compiler->runtimeAssemblyItems(), asts),
|
2015-05-06 08:43:59 +00:00
|
|
|
asts
|
|
|
|
);
|
|
|
|
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
{
|
2015-08-10 10:44:59 +00:00
|
|
|
stringstream data;
|
2015-08-10 10:49:28 +00:00
|
|
|
string postfix = "";
|
2016-10-22 15:02:28 +00:00
|
|
|
if (_argStr == g_argAst)
|
2015-01-05 14:46:40 +00:00
|
|
|
{
|
2015-09-08 12:30:21 +00:00
|
|
|
ASTPrinter printer(m_compiler->ast(sourceCode.first), sourceCode.second);
|
2015-08-10 10:44:59 +00:00
|
|
|
printer.print(data);
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-08 12:30:21 +00:00
|
|
|
ASTJsonConverter converter(m_compiler->ast(sourceCode.first));
|
2015-08-10 10:44:59 +00:00
|
|
|
converter.print(data);
|
2015-08-10 10:49:28 +00:00
|
|
|
postfix += "_json";
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
2015-08-19 23:09:39 +00:00
|
|
|
boost::filesystem::path path(sourceCode.first);
|
|
|
|
createFile(path.filename().string() + postfix + ".ast", data.str());
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-08-10 10:40:02 +00:00
|
|
|
cout << title << endl << endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
{
|
2015-08-10 10:40:02 +00:00
|
|
|
cout << endl << "======= " << sourceCode.first << " =======" << endl;
|
2016-10-22 15:02:28 +00:00
|
|
|
if (_argStr == g_argAst)
|
2015-01-05 14:46:40 +00:00
|
|
|
{
|
2015-08-10 10:40:02 +00:00
|
|
|
ASTPrinter printer(
|
2015-09-08 12:30:21 +00:00
|
|
|
m_compiler->ast(sourceCode.first),
|
2015-08-10 10:40:02 +00:00
|
|
|
sourceCode.second,
|
|
|
|
gasCosts
|
|
|
|
);
|
|
|
|
printer.print(cout);
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-08 12:30:21 +00:00
|
|
|
ASTJsonConverter converter(m_compiler->ast(sourceCode.first));
|
2015-08-10 10:40:02 +00:00
|
|
|
converter.print(cout);
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CommandLineInterface::actOnInput()
|
2015-09-11 17:35:01 +00:00
|
|
|
{
|
2016-02-22 01:13:41 +00:00
|
|
|
if (m_onlyAssemble)
|
2016-03-01 21:56:39 +00:00
|
|
|
outputAssembly();
|
2016-02-22 01:13:41 +00:00
|
|
|
else if (m_onlyLink)
|
2015-09-11 17:35:01 +00:00
|
|
|
writeLinkedFiles();
|
|
|
|
else
|
|
|
|
outputCompilationResults();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CommandLineInterface::link()
|
|
|
|
{
|
2016-09-06 09:12:55 +00:00
|
|
|
// Map from how the libraries will be named inside the bytecode to their addresses.
|
2016-09-01 23:16:03 +00:00
|
|
|
map<string, h160> librariesReplacements;
|
2016-09-06 09:57:21 +00:00
|
|
|
int const placeholderSize = 40; // 20 bytes or 40 hex characters
|
2016-09-01 23:16:03 +00:00
|
|
|
for (auto const& library: m_libraries)
|
|
|
|
{
|
|
|
|
string const& name = library.first;
|
2016-09-06 09:12:55 +00:00
|
|
|
// Library placeholders are 40 hex digits (20 bytes) that start and end with '__'.
|
|
|
|
// This leaves 36 characters for the library name, while too short library names are
|
|
|
|
// padded on the right with '_' and too long names are truncated.
|
2016-09-01 23:16:03 +00:00
|
|
|
string replacement = "__";
|
2016-09-06 09:12:55 +00:00
|
|
|
for (size_t i = 0; i < placeholderSize - 4; ++i)
|
2016-09-01 23:16:03 +00:00
|
|
|
replacement.push_back(i < name.size() ? name[i] : '_');
|
|
|
|
replacement += "__";
|
|
|
|
librariesReplacements[replacement] = library.second;
|
|
|
|
}
|
2015-09-11 17:35:01 +00:00
|
|
|
for (auto& src: m_sourceCodes)
|
|
|
|
{
|
|
|
|
auto end = src.second.end();
|
|
|
|
for (auto it = src.second.begin(); it != end;)
|
|
|
|
{
|
|
|
|
while (it != end && *it != '_') ++it;
|
2016-09-01 23:16:03 +00:00
|
|
|
if (it == end) break;
|
2016-09-06 09:12:55 +00:00
|
|
|
if (end - it < placeholderSize)
|
2015-09-11 17:35:01 +00:00
|
|
|
{
|
2016-09-01 23:16:03 +00:00
|
|
|
cerr << "Error in binary object file " << src.first << " at position " << (end - src.second.begin()) << endl;
|
2015-09-11 17:35:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-09-06 09:12:55 +00:00
|
|
|
string name(it, it + placeholderSize);
|
2016-09-01 23:16:03 +00:00
|
|
|
if (librariesReplacements.count(name))
|
2015-09-11 17:35:01 +00:00
|
|
|
{
|
2016-09-01 23:16:03 +00:00
|
|
|
string hexStr(toHex(librariesReplacements.at(name).asBytes()));
|
|
|
|
copy(hexStr.begin(), hexStr.end(), it);
|
2015-09-11 17:35:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
cerr << "Reference \"" << name << "\" in file \"" << src.first << "\" still unresolved." << endl;
|
2016-09-06 09:12:55 +00:00
|
|
|
it += placeholderSize;
|
2015-09-11 17:35:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandLineInterface::writeLinkedFiles()
|
|
|
|
{
|
|
|
|
for (auto const& src: m_sourceCodes)
|
|
|
|
if (src.first == g_stdinFileName)
|
|
|
|
cout << src.second << endl;
|
|
|
|
else
|
|
|
|
writeFile(src.first, src.second);
|
|
|
|
}
|
|
|
|
|
2016-02-22 01:13:41 +00:00
|
|
|
bool CommandLineInterface::assemble()
|
|
|
|
{
|
|
|
|
//@TODO later, we will use the convenience interface and should also remove the include above
|
|
|
|
bool successful = true;
|
|
|
|
map<string, shared_ptr<Scanner>> scanners;
|
|
|
|
for (auto const& src: m_sourceCodes)
|
|
|
|
{
|
|
|
|
auto scanner = make_shared<Scanner>(CharStream(src.second), src.first);
|
|
|
|
scanners[src.first] = scanner;
|
2016-03-01 21:56:39 +00:00
|
|
|
if (!m_assemblyStacks[src.first].parse(scanner))
|
2016-02-22 01:13:41 +00:00
|
|
|
successful = false;
|
2016-03-01 21:56:39 +00:00
|
|
|
else
|
|
|
|
//@TODO we should not just throw away the result here
|
|
|
|
m_assemblyStacks[src.first].assemble();
|
2016-02-22 01:13:41 +00:00
|
|
|
}
|
2016-03-01 21:56:39 +00:00
|
|
|
for (auto const& stack: m_assemblyStacks)
|
|
|
|
for (auto const& error: stack.second.errors())
|
|
|
|
SourceReferenceFormatter::printExceptionInformation(
|
|
|
|
cerr,
|
|
|
|
*error,
|
|
|
|
(error->type() == Error::Type::Warning) ? "Warning" : "Error",
|
|
|
|
[&](string const& _source) -> Scanner const& { return *scanners.at(_source); }
|
|
|
|
);
|
2016-02-22 01:13:41 +00:00
|
|
|
|
|
|
|
return successful;
|
|
|
|
}
|
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
void CommandLineInterface::outputAssembly()
|
|
|
|
{
|
|
|
|
for (auto const& src: m_sourceCodes)
|
|
|
|
{
|
|
|
|
cout << endl << "======= " << src.first << " =======" << endl;
|
|
|
|
eth::Assembly assembly = m_assemblyStacks[src.first].assemble();
|
|
|
|
cout << assembly.assemble().toHex() << endl;
|
2016-04-18 11:47:40 +00:00
|
|
|
assembly.stream(cout, "", m_sourceCodes);
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
void CommandLineInterface::outputCompilationResults()
|
2015-01-05 14:46:40 +00:00
|
|
|
{
|
2015-04-23 12:40:42 +00:00
|
|
|
handleCombinedJSON();
|
|
|
|
|
2015-01-05 14:46:40 +00:00
|
|
|
// do we need AST output?
|
2016-10-22 15:02:28 +00:00
|
|
|
handleAst(g_argAst);
|
2015-01-05 14:46:40 +00:00
|
|
|
handleAst(g_argAstJson);
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
vector<string> contracts = m_compiler->contractNames();
|
2014-12-09 12:43:08 +00:00
|
|
|
for (string const& contract: contracts)
|
|
|
|
{
|
2015-04-23 12:40:42 +00:00
|
|
|
if (needsHumanTargetedStdout(m_args))
|
2014-12-09 12:43:08 +00:00
|
|
|
cout << endl << "======= " << contract << " =======" << endl;
|
|
|
|
|
|
|
|
// do we need EVM assembly?
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argAsm) || m_args.count(g_argAsmJson))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2016-10-22 15:02:28 +00:00
|
|
|
if (m_args.count(g_argOutputDir))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-08-10 10:44:59 +00:00
|
|
|
stringstream data;
|
2016-10-22 15:02:28 +00:00
|
|
|
m_compiler->streamAssembly(data, contract, m_sourceCodes, m_args.count(g_argAsmJson));
|
|
|
|
createFile(contract + (m_args.count(g_argAsmJson) ? "_evm.json" : ".evm"), data.str());
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
2015-08-10 10:40:02 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "EVM assembly:" << endl;
|
2016-10-22 15:02:28 +00:00
|
|
|
m_compiler->streamAssembly(cout, contract, m_sourceCodes, m_args.count(g_argAsmJson));
|
2015-08-10 10:40:02 +00:00
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2015-05-22 12:19:58 +00:00
|
|
|
if (m_args.count(g_argGas))
|
|
|
|
handleGasEstimation(contract);
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
handleBytecode(contract);
|
2015-05-04 14:21:44 +00:00
|
|
|
handleSignatureHashes(contract);
|
2016-11-14 10:46:43 +00:00
|
|
|
handleOnChainMetadata(contract);
|
2015-02-09 13:12:36 +00:00
|
|
|
handleMeta(DocumentationType::ABIInterface, contract);
|
|
|
|
handleMeta(DocumentationType::NatspecDev, contract);
|
|
|
|
handleMeta(DocumentationType::NatspecUser, contract);
|
2014-12-09 12:43:08 +00:00
|
|
|
} // end of contracts iteration
|
2015-10-21 14:43:31 +00:00
|
|
|
|
|
|
|
handleFormal();
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|