2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <libdevcore/Common.h>
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libdevcore/CommonIO.h>
|
|
|
|
#include <libsolidity/Scanner.h>
|
|
|
|
#include <libsolidity/Parser.h>
|
|
|
|
#include <libsolidity/ASTPrinter.h>
|
2014-10-13 13:07:21 +00:00
|
|
|
#include <libsolidity/NameAndTypeResolver.h>
|
2014-10-16 15:56:10 +00:00
|
|
|
#include <libsolidity/Exceptions.h>
|
2014-10-20 10:41:56 +00:00
|
|
|
#include <libsolidity/Compiler.h>
|
2014-10-23 17:22:30 +00:00
|
|
|
#include <libsolidity/SourceReferenceFormatter.h>
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2014-10-16 15:56:10 +00:00
|
|
|
using namespace dev;
|
|
|
|
using namespace solidity;
|
2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
void help()
|
|
|
|
{
|
|
|
|
std::cout
|
2014-10-16 12:08:54 +00:00
|
|
|
<< "Usage solc [OPTIONS] <file>" << std::endl
|
|
|
|
<< "Options:" << std::endl
|
|
|
|
<< " -h,--help Show this help message and exit." << std::endl
|
|
|
|
<< " -V,--version Show the version and exit." << std::endl;
|
2014-10-10 14:37:54 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void version()
|
|
|
|
{
|
|
|
|
std::cout
|
|
|
|
<< "solc, the solidity complier commandline interface " << dev::Version << std::endl
|
|
|
|
<< " by Christian <c@ethdev.com>, (c) 2014." << std::endl
|
|
|
|
<< "Build: " << DEV_QUOTED(ETH_BUILD_PLATFORM) << "/" << DEV_QUOTED(ETH_BUILD_TYPE) << std::endl;
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2014-10-20 10:41:56 +00:00
|
|
|
|
|
|
|
/// Helper class that extracts the first expression in an AST.
|
|
|
|
class FirstExpressionExtractor: private ASTVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FirstExpressionExtractor(ASTNode& _node): m_expression(nullptr) { _node.accept(*this); }
|
|
|
|
Expression* getExpression() const { return m_expression; }
|
|
|
|
private:
|
|
|
|
virtual bool visit(Expression& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(Assignment& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(UnaryOperation& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(BinaryOperation& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(FunctionCall& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(MemberAccess& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(IndexAccess& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(PrimaryExpression& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(Identifier& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(ElementaryTypeNameExpression& _expression) override { return checkExpression(_expression); }
|
|
|
|
virtual bool visit(Literal& _expression) override { return checkExpression(_expression); }
|
|
|
|
bool checkExpression(Expression& _expression)
|
|
|
|
{
|
|
|
|
if (m_expression == nullptr)
|
|
|
|
m_expression = &_expression;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Expression* m_expression;
|
|
|
|
};
|
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
std::string infile;
|
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
{
|
|
|
|
std::string arg = argv[i];
|
|
|
|
if (arg == "-h" || arg == "--help")
|
|
|
|
help();
|
|
|
|
else if (arg == "-V" || arg == "--version")
|
|
|
|
version();
|
|
|
|
else
|
|
|
|
infile = argv[i];
|
|
|
|
}
|
2014-10-16 15:56:10 +00:00
|
|
|
std::string sourceCode;
|
2014-10-10 14:37:54 +00:00
|
|
|
if (infile.empty())
|
|
|
|
{
|
|
|
|
std::string s;
|
|
|
|
while (!std::cin.eof())
|
|
|
|
{
|
|
|
|
getline(std::cin, s);
|
2014-10-16 15:56:10 +00:00
|
|
|
sourceCode.append(s);
|
2014-10-10 14:37:54 +00:00
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-16 15:56:10 +00:00
|
|
|
sourceCode = asString(dev::contents(infile));
|
|
|
|
|
|
|
|
ASTPointer<ContractDefinition> ast;
|
|
|
|
std::shared_ptr<Scanner> scanner = std::make_shared<Scanner>(CharStream(sourceCode));
|
|
|
|
Parser parser;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ast = parser.parse(scanner);
|
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (ParserError const& exception)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-23 17:22:30 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(std::cerr, exception, "Parser error", *scanner);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
2014-10-10 14:37:54 +00:00
|
|
|
}
|
2014-10-16 15:56:10 +00:00
|
|
|
|
|
|
|
dev::solidity::NameAndTypeResolver resolver;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
resolver.resolveNamesAndTypes(*ast.get());
|
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (DeclarationError const& exception)
|
2014-10-16 15:56:10 +00:00
|
|
|
{
|
2014-10-23 17:22:30 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(std::cerr, exception, "Declaration error", *scanner);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (TypeError const& exception)
|
2014-10-16 15:56:10 +00:00
|
|
|
{
|
2014-10-23 17:22:30 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(std::cerr, exception, "Type error", *scanner);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
std::cout << "Syntax tree for the contract:" << std::endl;
|
2014-10-16 15:56:10 +00:00
|
|
|
dev::solidity::ASTPrinter printer(ast, sourceCode);
|
2014-10-10 14:37:54 +00:00
|
|
|
printer.print(std::cout);
|
2014-10-20 10:41:56 +00:00
|
|
|
|
|
|
|
FirstExpressionExtractor extractor(*ast);
|
|
|
|
|
|
|
|
CompilerContext context;
|
|
|
|
ExpressionCompiler compiler(context);
|
|
|
|
compiler.compile(*extractor.getExpression());
|
|
|
|
bytes instructions = compiler.getAssembledBytecode();
|
|
|
|
// debug
|
|
|
|
std::cout << "Bytecode for the first expression: " << std::endl;
|
|
|
|
std::cout << eth::disassemble(instructions) << std::endl;
|
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|