2014-11-20 17:33:23 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. 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>
|
2014-11-20 17:33:23 +00:00
|
|
|
* @date 2014
|
|
|
|
* Container of the (implicit and explicit) global objects.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <libsolidity/GlobalContext.h>
|
|
|
|
#include <libsolidity/AST.h>
|
|
|
|
#include <libsolidity/Types.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
2014-11-24 12:23:58 +00:00
|
|
|
GlobalContext::GlobalContext():
|
2014-12-11 11:08:51 +00:00
|
|
|
m_magicVariables(vector<shared_ptr<MagicVariableDeclaration const>>{make_shared<MagicVariableDeclaration>("block", make_shared<MagicType>(MagicType::Kind::BLOCK)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("msg", make_shared<MagicType>(MagicType::Kind::MSG)),
|
|
|
|
make_shared<MagicVariableDeclaration>("tx", make_shared<MagicType>(MagicType::Kind::TX)),
|
|
|
|
make_shared<MagicVariableDeclaration>("suicide",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"address"}, strings{}, FunctionType::Location::SUICIDE)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("sha3",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash"}, strings{"hash"}, FunctionType::Location::SHA3)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("log0",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash"},strings{}, FunctionType::Location::LOG0)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("log1",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash", "hash"},strings{}, FunctionType::Location::LOG1)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("log2",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash", "hash", "hash"},strings{}, FunctionType::Location::LOG2)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("log3",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash", "hash", "hash", "hash"},strings{}, FunctionType::Location::LOG3)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("log4",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash", "hash", "hash", "hash", "hash"},strings{}, FunctionType::Location::LOG4)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("sha256",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash"}, strings{"hash"}, FunctionType::Location::SHA256)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("ecrecover",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash", "hash8", "hash", "hash"}, strings{"address"}, FunctionType::Location::ECRECOVER)),
|
2015-01-08 23:22:06 +00:00
|
|
|
make_shared<MagicVariableDeclaration>("ripemd160",
|
2015-01-12 12:29:16 +00:00
|
|
|
make_shared<FunctionType>(strings{"hash"}, strings{"hash160"}, FunctionType::Location::RIPEMD160))})
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalContext::setCurrentContract(ContractDefinition const& _contract)
|
|
|
|
{
|
2014-11-21 18:14:56 +00:00
|
|
|
m_currentContract = &_contract;
|
2014-11-20 17:33:23 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:32:51 +00:00
|
|
|
vector<Declaration const*> GlobalContext::getDeclarations() const
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
2014-12-06 01:32:51 +00:00
|
|
|
vector<Declaration const*> declarations;
|
2015-01-16 17:52:27 +00:00
|
|
|
declarations.reserve(m_magicVariables.size());
|
2014-12-06 01:32:51 +00:00
|
|
|
for (ASTPointer<Declaration const> const& variable: m_magicVariables)
|
2014-11-21 18:14:56 +00:00
|
|
|
declarations.push_back(variable.get());
|
2014-11-20 17:33:23 +00:00
|
|
|
return declarations;
|
|
|
|
}
|
|
|
|
|
2014-12-06 01:32:51 +00:00
|
|
|
MagicVariableDeclaration const* GlobalContext::getCurrentThis() const
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
2014-11-21 18:14:56 +00:00
|
|
|
if (!m_thisPointer[m_currentContract])
|
|
|
|
m_thisPointer[m_currentContract] = make_shared<MagicVariableDeclaration>(
|
|
|
|
"this", make_shared<ContractType>(*m_currentContract));
|
|
|
|
return m_thisPointer[m_currentContract].get();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:32:59 +00:00
|
|
|
MagicVariableDeclaration const* GlobalContext::getCurrentSuper() const
|
|
|
|
{
|
|
|
|
if (!m_superPointer[m_currentContract])
|
|
|
|
m_superPointer[m_currentContract] = make_shared<MagicVariableDeclaration>(
|
|
|
|
"super", make_shared<ContractType>(*m_currentContract, true));
|
|
|
|
return m_superPointer[m_currentContract].get();
|
|
|
|
}
|
|
|
|
|
2014-11-20 17:33:23 +00:00
|
|
|
}
|
|
|
|
}
|