2016-11-11 13:11:07 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2016-11-11 13:11:07 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-11-11 13:11:07 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-11-11 13:11:07 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-11-11 13:11:07 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2016-11-11 13:11:07 +00:00
|
|
|
/**
|
|
|
|
* @file PeepholeOptimiser.h
|
|
|
|
* Performs local optimising code changes to assembly.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <cstddef>
|
2016-11-14 12:13:37 +00:00
|
|
|
#include <iterator>
|
2016-11-11 13:11:07 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::evmasm
|
2016-11-11 13:11:07 +00:00
|
|
|
{
|
|
|
|
class AssemblyItem;
|
|
|
|
using AssemblyItems = std::vector<AssemblyItem>;
|
|
|
|
|
|
|
|
class PeepholeOptimisationMethod
|
|
|
|
{
|
|
|
|
public:
|
2018-05-02 11:29:16 +00:00
|
|
|
virtual ~PeepholeOptimisationMethod() = default;
|
2016-11-11 13:11:07 +00:00
|
|
|
virtual size_t windowSize() const;
|
|
|
|
virtual bool apply(AssemblyItems::const_iterator _in, std::back_insert_iterator<AssemblyItems> _out);
|
|
|
|
};
|
|
|
|
|
|
|
|
class PeepholeOptimiser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit PeepholeOptimiser(AssemblyItems& _items): m_items(_items) {}
|
2018-05-02 11:29:16 +00:00
|
|
|
virtual ~PeepholeOptimiser() = default;
|
2016-11-11 13:11:07 +00:00
|
|
|
|
|
|
|
bool optimise();
|
|
|
|
|
|
|
|
private:
|
|
|
|
AssemblyItems& m_items;
|
|
|
|
AssemblyItems m_optimisedItems;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|