2017-02-15 13:52:53 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Analysis part of inline assembly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
#include <libsolidity/interface/Exceptions.h>
|
|
|
|
|
2017-06-13 22:07:13 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmScope.h>
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
#include <libjulia/backends/evm/AbstractAssembly.h>
|
2017-03-21 18:38:37 +00:00
|
|
|
|
2017-06-01 13:41:51 +00:00
|
|
|
#include <libsolidity/inlineasm/AsmDataForward.h>
|
|
|
|
|
2017-02-15 13:52:53 +00:00
|
|
|
#include <boost/variant.hpp>
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2017-05-11 13:26:35 +00:00
|
|
|
class ErrorReporter;
|
2017-02-15 13:52:53 +00:00
|
|
|
namespace assembly
|
|
|
|
{
|
|
|
|
|
2017-04-26 13:41:08 +00:00
|
|
|
struct AsmAnalysisInfo;
|
2017-04-26 10:34:24 +00:00
|
|
|
|
2017-02-17 15:05:22 +00:00
|
|
|
/**
|
|
|
|
* Performs the full analysis stage, calls the ScopeFiller internally, then resolves
|
|
|
|
* references and performs other checks.
|
2017-03-22 12:21:58 +00:00
|
|
|
* If all these checks pass, code generation should not throw errors.
|
2017-02-17 15:05:22 +00:00
|
|
|
*/
|
2017-02-15 13:52:53 +00:00
|
|
|
class AsmAnalyzer: public boost::static_visitor<bool>
|
|
|
|
{
|
|
|
|
public:
|
2017-05-24 23:19:11 +00:00
|
|
|
explicit AsmAnalyzer(
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo& _analysisInfo,
|
2017-05-11 13:26:35 +00:00
|
|
|
ErrorReporter& _errorReporter,
|
2017-12-13 13:40:54 +00:00
|
|
|
AsmFlavour _flavour = AsmFlavour::Loose,
|
2017-05-23 17:21:14 +00:00
|
|
|
julia::ExternalIdentifierAccess::Resolver const& _resolver = julia::ExternalIdentifierAccess::Resolver()
|
2017-12-13 13:40:54 +00:00
|
|
|
): m_resolver(_resolver), m_info(_analysisInfo), m_errorReporter(_errorReporter), m_flavour(_flavour) {}
|
2017-02-17 15:05:22 +00:00
|
|
|
|
|
|
|
bool analyze(assembly::Block const& _block);
|
2017-02-15 13:52:53 +00:00
|
|
|
|
2017-03-22 12:21:58 +00:00
|
|
|
bool operator()(assembly::Instruction const&);
|
2017-02-15 13:52:53 +00:00
|
|
|
bool operator()(assembly::Literal const& _literal);
|
2017-02-17 15:05:22 +00:00
|
|
|
bool operator()(assembly::Identifier const&);
|
2017-02-15 13:52:53 +00:00
|
|
|
bool operator()(assembly::FunctionalInstruction const& _functionalInstruction);
|
2017-04-26 10:34:24 +00:00
|
|
|
bool operator()(assembly::Label const& _label);
|
2017-12-08 13:01:22 +00:00
|
|
|
bool operator()(assembly::ExpressionStatement const&);
|
2017-05-24 00:02:11 +00:00
|
|
|
bool operator()(assembly::StackAssignment const&);
|
2017-05-24 00:07:00 +00:00
|
|
|
bool operator()(assembly::Assignment const& _assignment);
|
2017-02-15 13:52:53 +00:00
|
|
|
bool operator()(assembly::VariableDeclaration const& _variableDeclaration);
|
2017-02-16 22:44:22 +00:00
|
|
|
bool operator()(assembly::FunctionDefinition const& _functionDefinition);
|
|
|
|
bool operator()(assembly::FunctionCall const& _functionCall);
|
2017-11-21 12:36:41 +00:00
|
|
|
bool operator()(assembly::If const& _if);
|
2017-04-28 13:27:56 +00:00
|
|
|
bool operator()(assembly::Switch const& _switch);
|
2017-04-28 13:33:52 +00:00
|
|
|
bool operator()(assembly::ForLoop const& _forLoop);
|
2017-02-15 13:52:53 +00:00
|
|
|
bool operator()(assembly::Block const& _block);
|
|
|
|
|
|
|
|
private:
|
2017-06-01 12:16:01 +00:00
|
|
|
/// Visits the statement and expects it to deposit one item onto the stack.
|
2017-12-08 13:01:22 +00:00
|
|
|
bool expectExpression(Expression const& _expr);
|
2017-06-07 09:40:47 +00:00
|
|
|
bool expectDeposit(int _deposit, int _oldHeight, SourceLocation const& _location);
|
2017-06-01 12:16:01 +00:00
|
|
|
|
2017-03-22 12:21:58 +00:00
|
|
|
/// Verifies that a variable to be assigned to exists and has the same size
|
|
|
|
/// as the value, @a _valueSize, unless that is equal to -1.
|
|
|
|
bool checkAssignment(assembly::Identifier const& _assignment, size_t _valueSize = size_t(-1));
|
2017-06-01 12:16:01 +00:00
|
|
|
|
2017-02-17 11:03:55 +00:00
|
|
|
Scope& scope(assembly::Block const* _block);
|
2017-05-24 23:27:48 +00:00
|
|
|
void expectValidType(std::string const& type, SourceLocation const& _location);
|
2017-06-13 18:10:26 +00:00
|
|
|
void warnOnInstructions(solidity::Instruction _instr, SourceLocation const& _location);
|
2017-02-17 11:03:55 +00:00
|
|
|
|
2017-03-22 12:21:58 +00:00
|
|
|
int m_stackHeight = 0;
|
2017-06-07 12:15:39 +00:00
|
|
|
julia::ExternalIdentifierAccess::Resolver m_resolver;
|
2017-02-15 13:52:53 +00:00
|
|
|
Scope* m_currentScope = nullptr;
|
2017-06-13 22:07:13 +00:00
|
|
|
/// Variables that are active at the current point in assembly (as opposed to
|
|
|
|
/// "part of the scope but not yet declared")
|
|
|
|
std::set<Scope::Variable const*> m_activeVariables;
|
2017-04-26 13:41:08 +00:00
|
|
|
AsmAnalysisInfo& m_info;
|
2017-05-11 13:26:35 +00:00
|
|
|
ErrorReporter& m_errorReporter;
|
2017-12-13 13:40:54 +00:00
|
|
|
AsmFlavour m_flavour = AsmFlavour::Loose;
|
2017-02-15 13:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|