2017-01-06 15:16:11 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-01-06 15:16:11 +00:00
|
|
|
/**
|
|
|
|
* @file SimplificationRules
|
|
|
|
* @author Christian <chris@ethereum.org>
|
|
|
|
* @date 2017
|
|
|
|
* Module for applying replacement rules against Expressions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libevmasm/ExpressionClasses.h>
|
2018-02-06 11:20:00 +00:00
|
|
|
#include <libevmasm/SimplificationRule.h>
|
2017-01-06 15:16:11 +00:00
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2019-11-07 20:29:56 +00:00
|
|
|
|
2018-09-14 13:49:55 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
|
2017-01-06 15:16:11 +00:00
|
|
|
#include <functional>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::langutil
|
2018-11-14 16:11:55 +00:00
|
|
|
{
|
|
|
|
struct SourceLocation;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::evmasm
|
2017-01-06 15:16:11 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Pattern;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Container for all simplification rules.
|
|
|
|
*/
|
|
|
|
class Rules: public boost::noncopyable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Expression = ExpressionClasses::Expression;
|
|
|
|
|
|
|
|
Rules();
|
|
|
|
|
|
|
|
/// @returns a pointer to the first matching pattern and sets the match
|
|
|
|
/// groups accordingly.
|
2018-02-06 11:20:00 +00:00
|
|
|
SimplificationRule<Pattern> const* findFirstMatch(
|
2017-01-06 15:16:11 +00:00
|
|
|
Expression const& _expr,
|
|
|
|
ExpressionClasses const& _classes
|
|
|
|
);
|
|
|
|
|
2018-09-14 13:49:55 +00:00
|
|
|
/// Checks whether the rulelist is non-empty. This is usually enforced
|
|
|
|
/// by the constructor, but we had some issues with static initialization.
|
|
|
|
bool isInitialized() const;
|
|
|
|
|
2017-01-06 15:16:11 +00:00
|
|
|
private:
|
2018-02-06 11:20:00 +00:00
|
|
|
void addRules(std::vector<SimplificationRule<Pattern>> const& _rules);
|
|
|
|
void addRule(SimplificationRule<Pattern> const& _rule);
|
2017-01-06 15:16:11 +00:00
|
|
|
|
|
|
|
void resetMatchGroups() { m_matchGroups.clear(); }
|
|
|
|
|
|
|
|
std::map<unsigned, Expression const*> m_matchGroups;
|
2018-01-17 18:18:42 +00:00
|
|
|
/// Pattern to match, replacement to be applied and flag indicating whether
|
|
|
|
/// the replacement might remove some elements (except constants).
|
2018-02-06 11:20:00 +00:00
|
|
|
std::vector<SimplificationRule<Pattern>> m_rules[256];
|
2017-01-06 15:16:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pattern to match against an expression.
|
|
|
|
* Also stores matched expressions to retrieve them later, for constructing new expressions using
|
|
|
|
* ExpressionTemplate.
|
|
|
|
*/
|
|
|
|
class Pattern
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Expression = ExpressionClasses::Expression;
|
|
|
|
using Id = ExpressionClasses::Id;
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
using Builtins = evmasm::EVMBuiltins<Pattern>;
|
2019-11-06 21:12:40 +00:00
|
|
|
static constexpr size_t WordSize = 256;
|
|
|
|
using Word = u256;
|
|
|
|
|
2017-01-06 15:16:11 +00:00
|
|
|
// Matches a specific constant value.
|
|
|
|
Pattern(unsigned _value): Pattern(u256(_value)) {}
|
2019-11-07 20:29:56 +00:00
|
|
|
Pattern(int _value): Pattern(u256(_value)) {}
|
|
|
|
Pattern(long unsigned _value): Pattern(u256(_value)) {}
|
2017-01-06 15:16:11 +00:00
|
|
|
// Matches a specific constant value.
|
|
|
|
Pattern(u256 const& _value): m_type(Push), m_requireDataMatch(true), m_data(std::make_shared<u256>(_value)) {}
|
|
|
|
// Matches a specific assembly item type or anything if not given.
|
|
|
|
Pattern(AssemblyItemType _type = UndefinedItem): m_type(_type) {}
|
|
|
|
// Matches a given instruction with given arguments
|
2019-11-07 20:29:56 +00:00
|
|
|
Pattern(Instruction _instruction, std::initializer_list<Pattern> _arguments = {});
|
2017-01-06 15:16:11 +00:00
|
|
|
/// Sets this pattern to be part of the match group with the identifier @a _group.
|
|
|
|
/// Inside one rule, all patterns in the same match group have to match expressions from the
|
|
|
|
/// same expression equivalence class.
|
|
|
|
void setMatchGroup(unsigned _group, std::map<unsigned, Expression const*>& _matchGroups);
|
|
|
|
unsigned matchGroup() const { return m_matchGroup; }
|
|
|
|
bool matches(Expression const& _expr, ExpressionClasses const& _classes) const;
|
|
|
|
|
2018-11-14 16:11:55 +00:00
|
|
|
AssemblyItem toAssemblyItem(langutil::SourceLocation const& _location) const;
|
2017-01-06 15:16:11 +00:00
|
|
|
std::vector<Pattern> arguments() const { return m_arguments; }
|
|
|
|
|
|
|
|
/// @returns the id of the matched expression if this pattern is part of a match group.
|
|
|
|
Id id() const { return matchGroupValue().id; }
|
|
|
|
/// @returns the data of the matched expression if this pattern is part of a match group.
|
|
|
|
u256 const& d() const { return matchGroupValue().item->data(); }
|
|
|
|
|
|
|
|
std::string toString() const;
|
|
|
|
|
|
|
|
AssemblyItemType type() const { return m_type; }
|
|
|
|
Instruction instruction() const
|
|
|
|
{
|
|
|
|
assertThrow(type() == Operation, OptimizerException, "");
|
|
|
|
return m_instruction;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool matchesBaseItem(AssemblyItem const* _item) const;
|
|
|
|
Expression const& matchGroupValue() const;
|
|
|
|
u256 const& data() const;
|
|
|
|
|
|
|
|
AssemblyItemType m_type;
|
|
|
|
bool m_requireDataMatch = false;
|
|
|
|
Instruction m_instruction; ///< Only valid if m_type is Operation
|
|
|
|
std::shared_ptr<u256> m_data; ///< Only valid if m_type is not Operation
|
|
|
|
std::vector<Pattern> m_arguments;
|
|
|
|
unsigned m_matchGroup = 0;
|
|
|
|
std::map<unsigned, Expression const*>* m_matchGroups = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Template for a new expression that can be built from matched patterns.
|
|
|
|
*/
|
|
|
|
struct ExpressionTemplate
|
|
|
|
{
|
|
|
|
using Expression = ExpressionClasses::Expression;
|
|
|
|
using Id = ExpressionClasses::Id;
|
2018-11-14 16:11:55 +00:00
|
|
|
explicit ExpressionTemplate(Pattern const& _pattern, langutil::SourceLocation const& _location);
|
2017-01-06 15:16:11 +00:00
|
|
|
std::string toString() const;
|
|
|
|
bool hasId = false;
|
|
|
|
/// Id of the matched expression, if available.
|
|
|
|
Id id = Id(-1);
|
|
|
|
// Otherwise, assembly item.
|
|
|
|
AssemblyItem item = UndefinedItem;
|
|
|
|
std::vector<ExpressionTemplate> arguments;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|