2014-10-13 15:13:48 +00:00
|
|
|
/*
|
2014-10-16 12:08:54 +00:00
|
|
|
This file is part of cpp-ethereum.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum 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.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum 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.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-13 15:13:48 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Parser part that determines the declarations corresponding to names and the types of expressions.
|
|
|
|
*/
|
|
|
|
|
2014-10-13 13:07:21 +00:00
|
|
|
#include <libsolidity/NameAndTypeResolver.h>
|
|
|
|
#include <libsolidity/AST.h>
|
2014-10-15 12:45:51 +00:00
|
|
|
#include <libsolidity/Exceptions.h>
|
2014-10-13 13:07:21 +00:00
|
|
|
|
2014-10-24 17:06:30 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-13 13:07:21 +00:00
|
|
|
|
|
|
|
|
2014-11-20 17:33:23 +00:00
|
|
|
NameAndTypeResolver::NameAndTypeResolver(std::vector<Declaration*> const& _globals)
|
|
|
|
{
|
|
|
|
for (Declaration* declaration: _globals)
|
|
|
|
m_scopes[nullptr].registerDeclaration(*declaration);
|
|
|
|
}
|
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
void NameAndTypeResolver::registerDeclarations(SourceUnit& _sourceUnit)
|
|
|
|
{
|
2014-12-05 14:35:05 +00:00
|
|
|
// The helper registers all declarations in m_scopes as a side-effect of its construction.
|
2014-12-03 16:45:12 +00:00
|
|
|
DeclarationRegistrationHelper registrar(m_scopes, _sourceUnit);
|
|
|
|
}
|
|
|
|
|
2014-10-13 13:07:21 +00:00
|
|
|
void NameAndTypeResolver::resolveNamesAndTypes(ContractDefinition& _contract)
|
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
m_currentScope = &m_scopes[&_contract];
|
2014-11-13 00:12:57 +00:00
|
|
|
for (ASTPointer<StructDefinition> const& structDef: _contract.getDefinedStructs())
|
|
|
|
ReferencesResolver resolver(*structDef, *this, nullptr);
|
|
|
|
for (ASTPointer<StructDefinition> const& structDef: _contract.getDefinedStructs())
|
2014-11-20 17:33:23 +00:00
|
|
|
structDef->checkValidityOfMembers();
|
2014-10-20 12:00:37 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: _contract.getStateVariables())
|
2014-10-15 13:54:41 +00:00
|
|
|
ReferencesResolver resolver(*variable, *this, nullptr);
|
2014-10-20 12:00:37 +00:00
|
|
|
for (ASTPointer<FunctionDefinition> const& function: _contract.getDefinedFunctions())
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
m_currentScope = &m_scopes[function.get()];
|
|
|
|
ReferencesResolver referencesResolver(*function, *this,
|
|
|
|
function->getReturnParameterList().get());
|
|
|
|
}
|
2014-10-16 21:49:45 +00:00
|
|
|
// First, the parameter types of all functions need to be resolved before we can check
|
2014-10-15 13:54:41 +00:00
|
|
|
// the types, since it is possible to call functions that are only defined later
|
|
|
|
// in the source.
|
2014-10-20 12:00:37 +00:00
|
|
|
for (ASTPointer<FunctionDefinition> const& function: _contract.getDefinedFunctions())
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
m_currentScope = &m_scopes[function.get()];
|
2014-11-10 16:31:09 +00:00
|
|
|
function->checkTypeRequirements();
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
2014-10-30 00:20:32 +00:00
|
|
|
m_currentScope = &m_scopes[nullptr];
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
void NameAndTypeResolver::updateDeclaration(Declaration& _declaration)
|
|
|
|
{
|
|
|
|
m_scopes[nullptr].registerDeclaration(_declaration, true);
|
|
|
|
_declaration.setScope(nullptr);
|
|
|
|
}
|
|
|
|
|
2014-10-30 00:20:32 +00:00
|
|
|
Declaration* NameAndTypeResolver::resolveName(ASTString const& _name, Declaration const* _scope) const
|
2014-10-13 13:07:21 +00:00
|
|
|
{
|
2014-10-30 00:20:32 +00:00
|
|
|
auto iterator = m_scopes.find(_scope);
|
|
|
|
if (iterator == end(m_scopes))
|
|
|
|
return nullptr;
|
|
|
|
return iterator->second.resolveName(_name, false);
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
Declaration* NameAndTypeResolver::getNameFromCurrentScope(ASTString const& _name, bool _recursive)
|
2014-10-13 13:07:21 +00:00
|
|
|
{
|
|
|
|
return m_currentScope->resolveName(_name, _recursive);
|
|
|
|
}
|
|
|
|
|
2014-12-01 14:22:45 +00:00
|
|
|
DeclarationRegistrationHelper::DeclarationRegistrationHelper(map<ASTNode const*, DeclarationContainer>& _scopes,
|
2014-10-22 22:24:07 +00:00
|
|
|
ASTNode& _astRoot):
|
2014-12-01 14:22:45 +00:00
|
|
|
m_scopes(_scopes), m_currentScope(nullptr)
|
2014-10-15 13:54:41 +00:00
|
|
|
{
|
|
|
|
_astRoot.accept(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DeclarationRegistrationHelper::visit(ContractDefinition& _contract)
|
|
|
|
{
|
|
|
|
registerDeclaration(_contract, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeclarationRegistrationHelper::endVisit(ContractDefinition&)
|
|
|
|
{
|
|
|
|
closeCurrentScope();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DeclarationRegistrationHelper::visit(StructDefinition& _struct)
|
|
|
|
{
|
|
|
|
registerDeclaration(_struct, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeclarationRegistrationHelper::endVisit(StructDefinition&)
|
|
|
|
{
|
|
|
|
closeCurrentScope();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DeclarationRegistrationHelper::visit(FunctionDefinition& _function)
|
|
|
|
{
|
|
|
|
registerDeclaration(_function, true);
|
2014-10-30 00:20:32 +00:00
|
|
|
m_currentFunction = &_function;
|
2014-10-15 13:54:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeclarationRegistrationHelper::endVisit(FunctionDefinition&)
|
|
|
|
{
|
2014-10-30 00:20:32 +00:00
|
|
|
m_currentFunction = nullptr;
|
2014-10-15 13:54:41 +00:00
|
|
|
closeCurrentScope();
|
|
|
|
}
|
|
|
|
|
2014-10-30 00:20:32 +00:00
|
|
|
void DeclarationRegistrationHelper::endVisit(VariableDefinition& _variableDefinition)
|
2014-10-15 13:54:41 +00:00
|
|
|
{
|
2014-10-30 00:20:32 +00:00
|
|
|
// Register the local variables with the function
|
|
|
|
// This does not fit here perfectly, but it saves us another AST visit.
|
2014-11-05 13:20:56 +00:00
|
|
|
if (asserts(m_currentFunction))
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Variable definition without function."));
|
2014-10-30 00:20:32 +00:00
|
|
|
m_currentFunction->addLocalVariable(_variableDefinition.getDeclaration());
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-10-30 00:20:32 +00:00
|
|
|
bool DeclarationRegistrationHelper::visit(VariableDeclaration& _declaration)
|
2014-10-13 13:07:21 +00:00
|
|
|
{
|
2014-10-30 00:20:32 +00:00
|
|
|
registerDeclaration(_declaration, false);
|
|
|
|
return true;
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-12-01 14:22:45 +00:00
|
|
|
void DeclarationRegistrationHelper::enterNewSubScope(Declaration& _declaration)
|
2014-10-15 13:54:41 +00:00
|
|
|
{
|
2014-12-01 14:22:45 +00:00
|
|
|
map<ASTNode const*, DeclarationContainer>::iterator iter;
|
2014-10-13 13:07:21 +00:00
|
|
|
bool newlyAdded;
|
2014-12-01 14:22:45 +00:00
|
|
|
tie(iter, newlyAdded) = m_scopes.emplace(&_declaration, DeclarationContainer(m_currentScope, &m_scopes[m_currentScope]));
|
2014-11-05 13:20:56 +00:00
|
|
|
if (asserts(newlyAdded))
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unable to add new scope."));
|
2014-12-01 14:22:45 +00:00
|
|
|
m_currentScope = &_declaration;
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:54:41 +00:00
|
|
|
void DeclarationRegistrationHelper::closeCurrentScope()
|
2014-10-13 13:07:21 +00:00
|
|
|
{
|
2014-11-05 13:20:56 +00:00
|
|
|
if (asserts(m_currentScope))
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Closed non-existing scope."));
|
2014-12-01 14:22:45 +00:00
|
|
|
m_currentScope = m_scopes[m_currentScope].getEnclosingDeclaration();
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:54:41 +00:00
|
|
|
void DeclarationRegistrationHelper::registerDeclaration(Declaration& _declaration, bool _opensScope)
|
|
|
|
{
|
2014-12-01 14:22:45 +00:00
|
|
|
if (!m_scopes[m_currentScope].registerDeclaration(_declaration))
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(DeclarationError() << errinfo_sourceLocation(_declaration.getLocation())
|
|
|
|
<< errinfo_comment("Identifier already declared."));
|
2014-10-16 15:56:10 +00:00
|
|
|
//@todo the exception should also contain the location of the first declaration
|
2014-12-01 14:22:45 +00:00
|
|
|
_declaration.setScope(m_currentScope);
|
2014-10-15 13:54:41 +00:00
|
|
|
if (_opensScope)
|
|
|
|
enterNewSubScope(_declaration);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReferencesResolver::ReferencesResolver(ASTNode& _root, NameAndTypeResolver& _resolver,
|
2014-11-13 00:12:57 +00:00
|
|
|
ParameterList* _returnParameters, bool _allowLazyTypes):
|
|
|
|
m_resolver(_resolver), m_returnParameters(_returnParameters), m_allowLazyTypes(_allowLazyTypes)
|
2014-10-15 13:54:41 +00:00
|
|
|
{
|
|
|
|
_root.accept(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReferencesResolver::endVisit(VariableDeclaration& _variable)
|
|
|
|
{
|
|
|
|
// endVisit because the internal type needs resolving if it is a user defined type
|
|
|
|
// or mapping
|
2014-10-24 14:43:11 +00:00
|
|
|
if (_variable.getTypeName())
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
_variable.setType(_variable.getTypeName()->toType());
|
2014-11-20 17:33:23 +00:00
|
|
|
if (!_variable.getType())
|
|
|
|
BOOST_THROW_EXCEPTION(_variable.getTypeName()->createTypeError("Invalid type name"));
|
|
|
|
}
|
2014-11-13 00:12:57 +00:00
|
|
|
else if (!m_allowLazyTypes)
|
|
|
|
BOOST_THROW_EXCEPTION(_variable.createTypeError("Explicit type needed."));
|
2014-10-15 13:54:41 +00:00
|
|
|
// otherwise we have a "var"-declaration whose type is resolved by the first assignment
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReferencesResolver::visit(Return& _return)
|
|
|
|
{
|
2014-11-05 13:20:56 +00:00
|
|
|
if (asserts(m_returnParameters))
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Return parameters not set."));
|
2014-10-15 13:54:41 +00:00
|
|
|
_return.setFunctionReturnParameters(*m_returnParameters);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-10 16:31:09 +00:00
|
|
|
bool ReferencesResolver::visit(Mapping& _mapping)
|
2014-10-15 13:54:41 +00:00
|
|
|
{
|
2014-11-18 16:49:31 +00:00
|
|
|
(void)_mapping;
|
2014-10-15 13:54:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReferencesResolver::visit(UserDefinedTypeName& _typeName)
|
|
|
|
{
|
|
|
|
Declaration* declaration = m_resolver.getNameFromCurrentScope(_typeName.getName());
|
2014-10-24 14:43:11 +00:00
|
|
|
if (!declaration)
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(DeclarationError() << errinfo_sourceLocation(_typeName.getLocation())
|
|
|
|
<< errinfo_comment("Undeclared identifier."));
|
2014-11-20 17:33:23 +00:00
|
|
|
_typeName.setReferencedDeclaration(*declaration);
|
2014-10-15 13:54:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReferencesResolver::visit(Identifier& _identifier)
|
|
|
|
{
|
|
|
|
Declaration* declaration = m_resolver.getNameFromCurrentScope(_identifier.getName());
|
2014-10-24 14:43:11 +00:00
|
|
|
if (!declaration)
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(DeclarationError() << errinfo_sourceLocation(_identifier.getLocation())
|
|
|
|
<< errinfo_comment("Undeclared identifier."));
|
2014-10-15 13:54:41 +00:00
|
|
|
_identifier.setReferencedDeclaration(*declaration);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|