2018-11-07 10:18:02 +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/ForLoopInitRewriter.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmData.h>
|
2018-11-07 10:18:02 +00:00
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace yul;
|
2018-11-07 10:18:02 +00:00
|
|
|
|
|
|
|
void ForLoopInitRewriter::operator()(Block& _block)
|
|
|
|
{
|
|
|
|
iterateReplacing(
|
|
|
|
_block.statements,
|
2018-12-04 12:36:25 +00:00
|
|
|
[&](Statement& _stmt) -> boost::optional<vector<Statement>>
|
2018-11-07 10:18:02 +00:00
|
|
|
{
|
|
|
|
if (_stmt.type() == typeid(ForLoop))
|
|
|
|
{
|
|
|
|
auto& forLoop = boost::get<ForLoop>(_stmt);
|
2018-12-04 12:36:25 +00:00
|
|
|
(*this)(forLoop.pre);
|
|
|
|
(*this)(forLoop.body);
|
|
|
|
(*this)(forLoop.post);
|
2018-11-07 10:18:02 +00:00
|
|
|
vector<Statement> rewrite;
|
|
|
|
swap(rewrite, forLoop.pre.statements);
|
|
|
|
rewrite.emplace_back(move(forLoop));
|
2019-05-14 14:44:28 +00:00
|
|
|
return { std::move(rewrite) };
|
2018-11-07 10:18:02 +00:00
|
|
|
}
|
2018-12-04 12:36:25 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
visit(_stmt);
|
|
|
|
return {};
|
|
|
|
}
|
2018-11-07 10:18:02 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|