2019-05-18 05:35:36 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libyul/optimiser/ForLoopConditionIntoBody.h>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
2019-05-18 05:35:36 +00:00
|
|
|
#include <libyul/AsmData.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2019-05-18 05:35:36 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
2019-05-18 05:35:36 +00:00
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
void ForLoopConditionIntoBody::run(OptimiserStepContext& _context, Block& _ast)
|
|
|
|
{
|
|
|
|
ForLoopConditionIntoBody{_context.dialect}(_ast);
|
|
|
|
}
|
|
|
|
|
2019-05-18 05:35:36 +00:00
|
|
|
void ForLoopConditionIntoBody::operator()(ForLoop& _forLoop)
|
|
|
|
{
|
2019-09-19 15:03:30 +00:00
|
|
|
if (
|
|
|
|
m_dialect.booleanNegationFunction() &&
|
2019-11-19 15:42:49 +00:00
|
|
|
!holds_alternative<Literal>(*_forLoop.condition) &&
|
|
|
|
!holds_alternative<Identifier>(*_forLoop.condition)
|
2019-09-19 15:03:30 +00:00
|
|
|
)
|
2019-05-18 05:35:36 +00:00
|
|
|
{
|
2019-11-01 12:43:06 +00:00
|
|
|
langutil::SourceLocation const loc = locationOf(*_forLoop.condition);
|
|
|
|
|
|
|
|
_forLoop.body.statements.emplace(
|
|
|
|
begin(_forLoop.body.statements),
|
2019-05-18 05:35:36 +00:00
|
|
|
If {
|
|
|
|
loc,
|
|
|
|
make_unique<Expression>(
|
2019-09-11 14:30:47 +00:00
|
|
|
FunctionCall {
|
2019-05-18 05:35:36 +00:00
|
|
|
loc,
|
2019-09-11 14:30:47 +00:00
|
|
|
{loc, m_dialect.booleanNegationFunction()->name},
|
2019-12-11 16:31:36 +00:00
|
|
|
util::make_vector<Expression>(std::move(*_forLoop.condition))
|
2019-05-18 05:35:36 +00:00
|
|
|
}
|
|
|
|
),
|
2019-12-11 16:31:36 +00:00
|
|
|
Block {loc, util::make_vector<Statement>(Break{{}})}
|
2019-05-18 05:35:36 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
_forLoop.condition = make_unique<Expression>(
|
|
|
|
Literal {
|
|
|
|
loc,
|
2020-02-19 15:39:59 +00:00
|
|
|
LiteralKind::Boolean,
|
|
|
|
"true"_yulstring,
|
|
|
|
m_dialect.boolType
|
2019-05-18 05:35:36 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
ASTModifier::operator()(_forLoop);
|
|
|
|
}
|
|
|
|
|