2017-12-20 12:46:43 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Some useful snippets for the optimiser.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/Utilities.h>
|
2017-12-20 12:46:43 +00:00
|
|
|
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmData.h>
|
2018-12-03 16:19:37 +00:00
|
|
|
#include <libyul/Exceptions.h>
|
2017-12-20 12:46:43 +00:00
|
|
|
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
|
|
|
|
#include <boost/range/algorithm_ext/erase.hpp>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace yul;
|
2017-12-20 12:46:43 +00:00
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
void yul::removeEmptyBlocks(Block& _block)
|
2017-12-20 12:46:43 +00:00
|
|
|
{
|
|
|
|
auto isEmptyBlock = [](Statement const& _st) -> bool {
|
|
|
|
return _st.type() == typeid(Block) && boost::get<Block>(_st).statements.empty();
|
|
|
|
};
|
|
|
|
boost::range::remove_erase_if(_block.statements, isEmptyBlock);
|
|
|
|
}
|
2018-12-03 16:19:37 +00:00
|
|
|
|
|
|
|
u256 yul::valueOfNumberLiteral(Literal const& _literal)
|
|
|
|
{
|
|
|
|
assertThrow(_literal.kind == LiteralKind::Number, OptimizerException, "");
|
|
|
|
std::string const& literalString = _literal.value.str();
|
|
|
|
assertThrow(isValidDecimal(literalString) || isValidHex(literalString), OptimizerException, "");
|
|
|
|
return u256(literalString);
|
|
|
|
}
|