2019-09-11 09:42:59 +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
|
2019-09-11 09:42:59 +00:00
|
|
|
#include <libyul/optimiser/ConditionalSimplifier.h>
|
|
|
|
#include <libyul/optimiser/Semantics.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2019-09-11 09:42:59 +00:00
|
|
|
#include <libyul/Utilities.h>
|
|
|
|
#include <libyul/optimiser/NameCollector.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
|
|
|
#include <libsolutil/Visitor.h>
|
2019-09-11 09:42:59 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::util;
|
2019-09-11 09:42:59 +00:00
|
|
|
|
|
|
|
void ConditionalSimplifier::operator()(Switch& _switch)
|
|
|
|
{
|
|
|
|
visit(*_switch.expression);
|
2019-11-19 15:42:49 +00:00
|
|
|
if (!holds_alternative<Identifier>(*_switch.expression))
|
2019-09-11 09:42:59 +00:00
|
|
|
{
|
|
|
|
ASTModifier::operator()(_switch);
|
|
|
|
return;
|
|
|
|
}
|
2019-11-19 15:42:49 +00:00
|
|
|
YulString expr = std::get<Identifier>(*_switch.expression).name;
|
2019-09-11 09:42:59 +00:00
|
|
|
for (auto& _case: _switch.cases)
|
|
|
|
{
|
|
|
|
if (_case.value)
|
|
|
|
{
|
|
|
|
(*this)(*_case.value);
|
|
|
|
_case.body.statements.insert(_case.body.statements.begin(),
|
|
|
|
Assignment{
|
2021-04-27 14:53:04 +00:00
|
|
|
_case.body.debugData,
|
|
|
|
{Identifier{_case.body.debugData, expr}},
|
2019-09-11 09:42:59 +00:00
|
|
|
make_unique<Expression>(*_case.value)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
(*this)(_case.body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConditionalSimplifier::operator()(Block& _block)
|
|
|
|
{
|
|
|
|
iterateReplacing(
|
|
|
|
_block.statements,
|
|
|
|
[&](Statement& _s) -> std::optional<vector<Statement>>
|
|
|
|
{
|
|
|
|
visit(_s);
|
2019-11-19 15:42:49 +00:00
|
|
|
if (holds_alternative<If>(_s))
|
2019-09-11 09:42:59 +00:00
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
If& _if = std::get<If>(_s);
|
2019-09-11 09:42:59 +00:00
|
|
|
if (
|
2019-11-19 15:42:49 +00:00
|
|
|
holds_alternative<Identifier>(*_if.condition) &&
|
2019-09-11 09:42:59 +00:00
|
|
|
!_if.body.statements.empty() &&
|
|
|
|
TerminationFinder(m_dialect).controlFlowKind(_if.body.statements.back()) !=
|
|
|
|
TerminationFinder::ControlFlow::FlowOut
|
|
|
|
)
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
YulString condition = std::get<Identifier>(*_if.condition).name;
|
2021-04-27 14:53:04 +00:00
|
|
|
std::shared_ptr<DebugData const> debugData = _if.debugData;
|
2019-09-11 09:42:59 +00:00
|
|
|
return make_vector<Statement>(
|
|
|
|
std::move(_s),
|
|
|
|
Assignment{
|
2021-04-27 14:53:04 +00:00
|
|
|
debugData,
|
|
|
|
{Identifier{debugData, condition}},
|
2020-02-19 15:39:59 +00:00
|
|
|
make_unique<Expression>(m_dialect.zeroLiteralForType(m_dialect.boolType))
|
2019-09-11 09:42:59 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|