mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			240 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			240 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| 	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/>.
 | |
| */
 | |
| // SPDX-License-Identifier: GPL-3.0
 | |
| #include <libyul/optimiser/ControlFlowSimplifier.h>
 | |
| #include <libyul/optimiser/Semantics.h>
 | |
| #include <libyul/optimiser/OptimiserStep.h>
 | |
| #include <libyul/optimiser/TypeInfo.h>
 | |
| #include <libyul/AST.h>
 | |
| #include <libyul/Utilities.h>
 | |
| #include <libyul/Dialect.h>
 | |
| #include <libsolutil/CommonData.h>
 | |
| #include <libsolutil/Visitor.h>
 | |
| 
 | |
| #include <boost/range/algorithm_ext/erase.hpp>
 | |
| 
 | |
| using namespace std;
 | |
| using namespace solidity;
 | |
| using namespace solidity::util;
 | |
| using namespace solidity::yul;
 | |
| 
 | |
| using OptionalStatements = std::optional<vector<Statement>>;
 | |
| 
 | |
| namespace
 | |
| {
 | |
| 
 | |
| ExpressionStatement makeDiscardCall(
 | |
| 	langutil::SourceLocation const& _location,
 | |
| 	BuiltinFunction const& _discardFunction,
 | |
| 	Expression&& _expression
 | |
| )
 | |
| {
 | |
| 	return {_location, FunctionCall{
 | |
| 		_location,
 | |
| 		Identifier{_location, _discardFunction.name},
 | |
| 		{std::move(_expression)}
 | |
| 	}};
 | |
| }
 | |
| 
 | |
| void removeEmptyDefaultFromSwitch(Switch& _switchStmt)
 | |
| {
 | |
| 	boost::remove_erase_if(
 | |
| 		_switchStmt.cases,
 | |
| 		[](Case const& _case) { return !_case.value && _case.body.statements.empty(); }
 | |
| 	);
 | |
| }
 | |
| 
 | |
| void removeEmptyCasesFromSwitch(Switch& _switchStmt)
 | |
| {
 | |
| 	bool hasDefault = std::any_of(
 | |
| 		_switchStmt.cases.begin(),
 | |
| 		_switchStmt.cases.end(),
 | |
| 		[](Case const& _case) { return !_case.value; }
 | |
| 	);
 | |
| 
 | |
| 	if (hasDefault)
 | |
| 		return;
 | |
| 
 | |
| 	boost::remove_erase_if(
 | |
| 		_switchStmt.cases,
 | |
| 		[](Case const& _case) { return _case.body.statements.empty(); }
 | |
| 	);
 | |
| }
 | |
| 
 | |
| }
 | |
| 
 | |
| void ControlFlowSimplifier::run(OptimiserStepContext& _context, Block& _ast)
 | |
| {
 | |
| 	TypeInfo typeInfo(_context.dialect, _ast);
 | |
| 	ControlFlowSimplifier{_context.dialect, typeInfo}(_ast);
 | |
| }
 | |
| 
 | |
| void ControlFlowSimplifier::operator()(Block& _block)
 | |
| {
 | |
| 	simplify(_block.statements);
 | |
| }
 | |
| 
 | |
| void ControlFlowSimplifier::operator()(FunctionDefinition& _funDef)
 | |
| {
 | |
| 	ASTModifier::operator()(_funDef);
 | |
| 	if (!_funDef.body.statements.empty() && holds_alternative<Leave>(_funDef.body.statements.back()))
 | |
| 		_funDef.body.statements.pop_back();
 | |
| }
 | |
| 
 | |
| void ControlFlowSimplifier::visit(Statement& _st)
 | |
| {
 | |
| 	if (holds_alternative<ForLoop>(_st))
 | |
| 	{
 | |
| 		ForLoop& forLoop = std::get<ForLoop>(_st);
 | |
| 		yulAssert(forLoop.pre.statements.empty(), "");
 | |
| 
 | |
| 		size_t outerBreak = m_numBreakStatements;
 | |
| 		size_t outerContinue = m_numContinueStatements;
 | |
| 		m_numBreakStatements = 0;
 | |
| 		m_numContinueStatements = 0;
 | |
| 
 | |
| 		ASTModifier::visit(_st);
 | |
| 
 | |
| 		if (!forLoop.body.statements.empty())
 | |
| 		{
 | |
| 			bool isTerminating = false;
 | |
| 			TerminationFinder::ControlFlow controlFlow = TerminationFinder{m_dialect}.controlFlowKind(forLoop.body.statements.back());
 | |
| 			if (controlFlow == TerminationFinder::ControlFlow::Break)
 | |
| 			{
 | |
| 				isTerminating = true;
 | |
| 				--m_numBreakStatements;
 | |
| 			}
 | |
| 			else if (
 | |
| 				controlFlow == TerminationFinder::ControlFlow::Terminate ||
 | |
| 				controlFlow == TerminationFinder::ControlFlow::Leave
 | |
| 			)
 | |
| 				isTerminating = true;
 | |
| 
 | |
| 			if (isTerminating && m_numContinueStatements == 0 && m_numBreakStatements == 0)
 | |
| 			{
 | |
| 				If replacement{forLoop.location, std::move(forLoop.condition), std::move(forLoop.body)};
 | |
| 				if (controlFlow == TerminationFinder::ControlFlow::Break)
 | |
| 					replacement.body.statements.resize(replacement.body.statements.size() - 1);
 | |
| 				_st = std::move(replacement);
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		m_numBreakStatements = outerBreak;
 | |
| 		m_numContinueStatements = outerContinue;
 | |
| 	}
 | |
| 	else
 | |
| 		ASTModifier::visit(_st);
 | |
| }
 | |
| 
 | |
| void ControlFlowSimplifier::simplify(std::vector<yul::Statement>& _statements)
 | |
| {
 | |
| 	GenericVisitor visitor{
 | |
| 		VisitorFallback<OptionalStatements>{},
 | |
| 		[&](If& _ifStmt) -> OptionalStatements {
 | |
| 			if (_ifStmt.body.statements.empty() && m_dialect.discardFunction(m_dialect.boolType))
 | |
| 			{
 | |
| 				OptionalStatements s = vector<Statement>{};
 | |
| 				s->emplace_back(makeDiscardCall(
 | |
| 					_ifStmt.location,
 | |
| 					*m_dialect.discardFunction(m_dialect.boolType),
 | |
| 					std::move(*_ifStmt.condition)
 | |
| 				));
 | |
| 				return s;
 | |
| 			}
 | |
| 			return {};
 | |
| 		},
 | |
| 		[&](Switch& _switchStmt) -> OptionalStatements {
 | |
| 			removeEmptyDefaultFromSwitch(_switchStmt);
 | |
| 			removeEmptyCasesFromSwitch(_switchStmt);
 | |
| 
 | |
| 			if (_switchStmt.cases.empty())
 | |
| 				return reduceNoCaseSwitch(_switchStmt);
 | |
| 			else if (_switchStmt.cases.size() == 1)
 | |
| 				return reduceSingleCaseSwitch(_switchStmt);
 | |
| 
 | |
| 			return {};
 | |
| 		}
 | |
| 	};
 | |
| 	iterateReplacing(
 | |
| 		_statements,
 | |
| 		[&](Statement& _stmt) -> OptionalStatements
 | |
| 		{
 | |
| 			OptionalStatements result = std::visit(visitor, _stmt);
 | |
| 			if (result)
 | |
| 				simplify(*result);
 | |
| 			else
 | |
| 				visit(_stmt);
 | |
| 			return result;
 | |
| 		}
 | |
| 	);
 | |
| }
 | |
| 
 | |
| OptionalStatements ControlFlowSimplifier::reduceNoCaseSwitch(Switch& _switchStmt) const
 | |
| {
 | |
| 	yulAssert(_switchStmt.cases.empty(), "Expected no case!");
 | |
| 	BuiltinFunction const* discardFunction =
 | |
| 		m_dialect.discardFunction(m_typeInfo.typeOf(*_switchStmt.expression));
 | |
| 	if (!discardFunction)
 | |
| 		return {};
 | |
| 
 | |
| 	auto loc = locationOf(*_switchStmt.expression);
 | |
| 
 | |
| 	return make_vector<Statement>(makeDiscardCall(
 | |
| 		loc,
 | |
| 		*discardFunction,
 | |
| 		std::move(*_switchStmt.expression)
 | |
| 	));
 | |
| }
 | |
| 
 | |
| OptionalStatements ControlFlowSimplifier::reduceSingleCaseSwitch(Switch& _switchStmt) const
 | |
| {
 | |
| 	yulAssert(_switchStmt.cases.size() == 1, "Expected only one case!");
 | |
| 
 | |
| 	auto& switchCase = _switchStmt.cases.front();
 | |
| 	auto loc = locationOf(*_switchStmt.expression);
 | |
| 	YulString type = m_typeInfo.typeOf(*_switchStmt.expression);
 | |
| 	if (switchCase.value)
 | |
| 	{
 | |
| 		if (!m_dialect.equalityFunction(type))
 | |
| 			return {};
 | |
| 		return make_vector<Statement>(If{
 | |
| 			std::move(_switchStmt.location),
 | |
| 			make_unique<Expression>(FunctionCall{
 | |
| 				loc,
 | |
| 				Identifier{loc, m_dialect.equalityFunction(type)->name},
 | |
| 				{std::move(*switchCase.value), std::move(*_switchStmt.expression)}
 | |
| 			}),
 | |
| 			std::move(switchCase.body)
 | |
| 		});
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		if (!m_dialect.discardFunction(type))
 | |
| 			return {};
 | |
| 
 | |
| 		return make_vector<Statement>(
 | |
| 			makeDiscardCall(
 | |
| 				loc,
 | |
| 				*m_dialect.discardFunction(type),
 | |
| 				std::move(*_switchStmt.expression)
 | |
| 			),
 | |
| 			std::move(switchCase.body)
 | |
| 		);
 | |
| 	}
 | |
| }
 | |
| 
 |