2015-05-12 14:16:44 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-05-12 14:16:44 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-05-12 14:16:44 +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,
|
2015-05-12 14:16:44 +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/>.
|
2015-05-12 14:16:44 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2015-05-12 14:16:44 +00:00
|
|
|
/**
|
|
|
|
* @file BlockDeduplicator.cpp
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
* Unifies basic blocks that share content.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libevmasm/BlockDeduplicator.h>
|
2017-08-25 10:07:02 +00:00
|
|
|
|
2015-05-12 14:16:44 +00:00
|
|
|
#include <libevmasm/AssemblyItem.h>
|
|
|
|
#include <libevmasm/SemanticInformation.h>
|
|
|
|
|
2017-08-25 10:07:02 +00:00
|
|
|
#include <functional>
|
|
|
|
#include <set>
|
|
|
|
|
2015-05-12 14:16:44 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::evmasm;
|
2015-05-12 14:16:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool BlockDeduplicator::deduplicate()
|
|
|
|
{
|
|
|
|
// Compares indices based on the suffix that starts there, ignoring tags and stopping at
|
|
|
|
// opcodes that stop the control flow.
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
// Virtual tag that signifies "the current block" and which is used to optimise loops.
|
|
|
|
// We abort if this virtual tag actually exists.
|
2018-12-10 18:03:47 +00:00
|
|
|
AssemblyItem pushSelf{PushTag, u256(-4)};
|
2015-05-28 12:43:46 +00:00
|
|
|
if (
|
|
|
|
std::count(m_items.cbegin(), m_items.cend(), pushSelf.tag()) ||
|
|
|
|
std::count(m_items.cbegin(), m_items.cend(), pushSelf.pushTag())
|
|
|
|
)
|
|
|
|
return false;
|
|
|
|
|
2015-05-12 14:16:44 +00:00
|
|
|
function<bool(size_t, size_t)> comparator = [&](size_t _i, size_t _j)
|
|
|
|
{
|
|
|
|
if (_i == _j)
|
|
|
|
return false;
|
|
|
|
|
2015-05-28 12:43:46 +00:00
|
|
|
// To compare recursive loops, we have to already unify PushTag opcodes of the
|
|
|
|
// block's own tag.
|
2018-12-10 18:03:47 +00:00
|
|
|
AssemblyItem pushFirstTag{pushSelf};
|
|
|
|
AssemblyItem pushSecondTag{pushSelf};
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
if (_i < m_items.size() && m_items.at(_i).type() == Tag)
|
|
|
|
pushFirstTag = m_items.at(_i).pushTag();
|
|
|
|
if (_j < m_items.size() && m_items.at(_j).type() == Tag)
|
|
|
|
pushSecondTag = m_items.at(_j).pushTag();
|
|
|
|
|
2020-06-02 13:10:14 +00:00
|
|
|
using diff_type = BlockIterator::difference_type;
|
|
|
|
BlockIterator first{m_items.begin() + diff_type(_i), m_items.end(), &pushFirstTag, &pushSelf};
|
|
|
|
BlockIterator second{m_items.begin() + diff_type(_j), m_items.end(), &pushSecondTag, &pushSelf};
|
2018-12-10 18:03:47 +00:00
|
|
|
BlockIterator end{m_items.end(), m_items.end()};
|
2015-05-12 14:16:44 +00:00
|
|
|
|
|
|
|
if (first != end && (*first).type() == Tag)
|
|
|
|
++first;
|
|
|
|
if (second != end && (*second).type() == Tag)
|
|
|
|
++second;
|
|
|
|
|
|
|
|
return std::lexicographical_compare(first, end, second, end);
|
|
|
|
};
|
|
|
|
|
2015-05-28 12:43:46 +00:00
|
|
|
size_t iterations = 0;
|
|
|
|
for (; ; ++iterations)
|
2015-05-12 14:16:44 +00:00
|
|
|
{
|
2015-05-28 12:43:46 +00:00
|
|
|
//@todo this should probably be optimized.
|
|
|
|
set<size_t, function<bool(size_t, size_t)>> blocksSeen(comparator);
|
|
|
|
for (size_t i = 0; i < m_items.size(); ++i)
|
2015-05-12 14:16:44 +00:00
|
|
|
{
|
2015-05-28 12:43:46 +00:00
|
|
|
if (m_items.at(i).type() != Tag)
|
|
|
|
continue;
|
|
|
|
auto it = blocksSeen.find(i);
|
|
|
|
if (it == blocksSeen.end())
|
|
|
|
blocksSeen.insert(i);
|
|
|
|
else
|
2016-11-10 17:16:21 +00:00
|
|
|
m_replacedTags[m_items.at(i).data()] = m_items.at(*it).data();
|
2015-05-12 14:16:44 +00:00
|
|
|
}
|
2015-05-28 12:43:46 +00:00
|
|
|
|
2016-11-10 17:16:21 +00:00
|
|
|
if (!applyTagReplacement(m_items, m_replacedTags))
|
2015-05-28 12:43:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return iterations > 0;
|
2015-05-12 14:16:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 17:16:21 +00:00
|
|
|
bool BlockDeduplicator::applyTagReplacement(
|
|
|
|
AssemblyItems& _items,
|
|
|
|
map<u256, u256> const& _replacements,
|
|
|
|
size_t _subId
|
|
|
|
)
|
|
|
|
{
|
|
|
|
bool changed = false;
|
|
|
|
for (AssemblyItem& item: _items)
|
|
|
|
if (item.type() == PushTag)
|
|
|
|
{
|
|
|
|
size_t subId;
|
|
|
|
size_t tagId;
|
|
|
|
tie(subId, tagId) = item.splitForeignPushTag();
|
|
|
|
if (subId != _subId)
|
|
|
|
continue;
|
|
|
|
auto it = _replacements.find(tagId);
|
2020-05-15 15:16:50 +00:00
|
|
|
// Recursively look for the element replaced by tagId
|
|
|
|
for (auto _it = it; _it != _replacements.end(); _it = _replacements.find(_it->second))
|
|
|
|
it = _it;
|
|
|
|
|
2016-11-10 17:16:21 +00:00
|
|
|
if (it != _replacements.end())
|
|
|
|
{
|
|
|
|
changed = true;
|
2020-06-02 13:10:14 +00:00
|
|
|
item.setPushTagSubIdAndTag(subId, static_cast<size_t>(it->second));
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
2015-05-12 14:16:44 +00:00
|
|
|
BlockDeduplicator::BlockIterator& BlockDeduplicator::BlockIterator::operator++()
|
|
|
|
{
|
|
|
|
if (it == end)
|
|
|
|
return *this;
|
2018-12-10 18:03:47 +00:00
|
|
|
if (SemanticInformation::altersControlFlow(*it) && *it != AssemblyItem{Instruction::JUMPI})
|
2015-05-12 14:16:44 +00:00
|
|
|
it = end;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
while (it != end && it->type() == Tag)
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
2015-05-28 12:43:46 +00:00
|
|
|
|
|
|
|
AssemblyItem const& BlockDeduplicator::BlockIterator::operator*() const
|
|
|
|
{
|
|
|
|
if (replaceItem && replaceWith && *it == *replaceItem)
|
|
|
|
return *replaceWith;
|
|
|
|
else
|
|
|
|
return *it;
|
|
|
|
}
|