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
|
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Exceptions.h>
|
|
|
|
#include <liblangutil/EVMVersion.h>
|
2017-05-24 16:34:19 +00:00
|
|
|
|
2018-12-03 14:49:23 +00:00
|
|
|
#include <libyul/Dialect.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmScope.h>
|
2018-12-03 14:49:23 +00:00
|
|
|
#include <libyul/AsmDataForward.h>
|
2017-06-13 22:07:13 +00:00
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/backends/evm/AbstractAssembly.h>
|
2019-02-21 20:56:30 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
2017-03-21 18:38:37 +00:00
|
|
|
|
2017-02-15 13:52:53 +00:00
|
|
|
#include <boost/variant.hpp>
|
2018-02-15 14:18:09 +00:00
|
|
|
#include <boost/optional.hpp>
|
2017-02-15 13:52:53 +00:00
|
|
|
|
|
|
|
#include <functional>
|
2019-03-04 14:38:05 +00:00
|
|
|
#include <list>
|
2017-02-15 13:52:53 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2018-11-14 16:11:55 +00:00
|
|
|
namespace langutil
|
|
|
|
{
|
|
|
|
class ErrorReporter;
|
|
|
|
struct SourceLocation;
|
|
|
|
}
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
namespace yul
|
2017-02-15 13:52:53 +00:00
|
|
|
{
|
|
|
|
|
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,
|
2018-11-14 16:11:55 +00:00
|
|
|
langutil::ErrorReporter& _errorReporter,
|
|
|
|
boost::optional<langutil::Error::Type> _errorTypeForLoose,
|
2018-12-06 23:56:16 +00:00
|
|
|
std::shared_ptr<Dialect> _dialect,
|
2018-11-21 11:42:34 +00:00
|
|
|
ExternalIdentifierAccess::Resolver const& _resolver = ExternalIdentifierAccess::Resolver()
|
2018-02-15 14:18:09 +00:00
|
|
|
):
|
|
|
|
m_resolver(_resolver),
|
|
|
|
m_info(_analysisInfo),
|
|
|
|
m_errorReporter(_errorReporter),
|
2018-12-03 14:49:23 +00:00
|
|
|
m_dialect(std::move(_dialect)),
|
2018-02-15 14:18:09 +00:00
|
|
|
m_errorTypeForLoose(_errorTypeForLoose)
|
2019-02-21 20:56:30 +00:00
|
|
|
{
|
|
|
|
if (EVMDialect const* evmDialect = dynamic_cast<EVMDialect const*>(m_dialect.get()))
|
|
|
|
m_evmVersion = evmDialect->evmVersion();
|
|
|
|
}
|
2017-02-17 15:05:22 +00:00
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
bool analyze(Block const& _block);
|
|
|
|
|
2019-01-29 14:01:30 +00:00
|
|
|
static AsmAnalysisInfo analyzeStrictAssertCorrect(
|
|
|
|
std::shared_ptr<Dialect> _dialect,
|
|
|
|
Block const& _ast
|
|
|
|
);
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
bool operator()(Instruction const&);
|
|
|
|
bool operator()(Literal const& _literal);
|
|
|
|
bool operator()(Identifier const&);
|
|
|
|
bool operator()(FunctionalInstruction const& _functionalInstruction);
|
|
|
|
bool operator()(Label const& _label);
|
|
|
|
bool operator()(ExpressionStatement const&);
|
|
|
|
bool operator()(StackAssignment const&);
|
|
|
|
bool operator()(Assignment const& _assignment);
|
|
|
|
bool operator()(VariableDeclaration const& _variableDeclaration);
|
|
|
|
bool operator()(FunctionDefinition const& _functionDefinition);
|
|
|
|
bool operator()(FunctionCall const& _functionCall);
|
|
|
|
bool operator()(If const& _if);
|
|
|
|
bool operator()(Switch const& _switch);
|
|
|
|
bool operator()(ForLoop const& _forLoop);
|
2019-03-04 14:38:05 +00:00
|
|
|
bool operator()(Break const&);
|
|
|
|
bool operator()(Continue const&);
|
2018-11-21 11:42:34 +00:00
|
|
|
bool operator()(Block const& _block);
|
2017-02-15 13:52:53 +00:00
|
|
|
|
|
|
|
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);
|
2018-11-14 16:11:55 +00:00
|
|
|
bool expectDeposit(int _deposit, int _oldHeight, langutil::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.
|
2018-11-21 11:42:34 +00:00
|
|
|
bool checkAssignment(Identifier const& _assignment, size_t _valueSize = size_t(-1));
|
2017-06-01 12:16:01 +00:00
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
Scope& scope(Block const* _block);
|
2018-11-14 16:11:55 +00:00
|
|
|
void expectValidType(std::string const& type, langutil::SourceLocation const& _location);
|
2019-03-28 11:47:21 +00:00
|
|
|
void warnOnInstructions(dev::eth::Instruction _instr, langutil::SourceLocation const& _location);
|
2017-02-17 11:03:55 +00:00
|
|
|
|
2018-02-15 14:18:09 +00:00
|
|
|
/// Depending on @a m_flavour and @a m_errorTypeForLoose, throws an internal compiler
|
|
|
|
/// exception (if the flavour is not Loose), reports an error/warning
|
|
|
|
/// (if m_errorTypeForLoose is set) or does nothing.
|
2018-11-14 16:11:55 +00:00
|
|
|
void checkLooseFeature(langutil::SourceLocation const& _location, std::string const& _description);
|
2018-02-15 14:18:09 +00:00
|
|
|
|
2017-03-22 12:21:58 +00:00
|
|
|
int m_stackHeight = 0;
|
2018-10-15 09:58:51 +00:00
|
|
|
yul::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;
|
2018-11-14 16:11:55 +00:00
|
|
|
langutil::ErrorReporter& m_errorReporter;
|
2019-02-25 14:29:57 +00:00
|
|
|
langutil::EVMVersion m_evmVersion;
|
2018-12-06 23:56:16 +00:00
|
|
|
std::shared_ptr<Dialect> m_dialect;
|
2018-11-14 16:11:55 +00:00
|
|
|
boost::optional<langutil::Error::Type> m_errorTypeForLoose;
|
2019-03-04 14:38:05 +00:00
|
|
|
ForLoop const* m_currentForLoop = nullptr;
|
2017-02-15 13:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|