mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.6 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/>.
 | 
						|
*/
 | 
						|
 | 
						|
#include <libyul/optimiser/NameSimplifier.h>
 | 
						|
#include <libyul/optimiser/NameCollector.h>
 | 
						|
#include <libyul/AST.h>
 | 
						|
#include <libyul/Dialect.h>
 | 
						|
#include <libyul/YulString.h>
 | 
						|
#include <libyul/optimiser/NameDispenser.h>
 | 
						|
#include <libyul/optimiser/OptimizerUtilities.h>
 | 
						|
 | 
						|
#include <libsolutil/CommonData.h>
 | 
						|
 | 
						|
#include <regex>
 | 
						|
 | 
						|
using namespace solidity::yul;
 | 
						|
using namespace std;
 | 
						|
 | 
						|
NameSimplifier::NameSimplifier(OptimiserStepContext& _context, Block const& _ast):
 | 
						|
	m_context(_context)
 | 
						|
{
 | 
						|
	for (YulString name: _context.reservedIdentifiers)
 | 
						|
		m_translations[name] = name;
 | 
						|
 | 
						|
	for (YulString const& name: NameCollector(_ast).names())
 | 
						|
		findSimplification(name);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::operator()(FunctionDefinition& _funDef)
 | 
						|
{
 | 
						|
	translate(_funDef.name);
 | 
						|
	renameVariables(_funDef.parameters);
 | 
						|
	renameVariables(_funDef.returnVariables);
 | 
						|
	ASTModifier::operator()(_funDef);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::operator()(VariableDeclaration& _varDecl)
 | 
						|
{
 | 
						|
	renameVariables(_varDecl.variables);
 | 
						|
	ASTModifier::operator()(_varDecl);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::renameVariables(vector<TypedName>& _variables)
 | 
						|
{
 | 
						|
	for (TypedName& typedName: _variables)
 | 
						|
		translate(typedName.name);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::operator()(Identifier& _identifier)
 | 
						|
{
 | 
						|
	translate(_identifier.name);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::operator()(FunctionCall& _funCall)
 | 
						|
{
 | 
						|
	// The visitor on its own does not visit the function name.
 | 
						|
	if (!m_context.dialect.builtin(_funCall.functionName.name))
 | 
						|
		(*this)(_funCall.functionName);
 | 
						|
	ASTModifier::operator()(_funCall);
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::findSimplification(YulString const& _name)
 | 
						|
{
 | 
						|
	if (m_translations.count(_name))
 | 
						|
		return;
 | 
						|
 | 
						|
	string name = _name.str();
 | 
						|
 | 
						|
	static auto replacements = vector<pair<regex, string>>{
 | 
						|
		{regex("_\\$|\\$_"), "_"}, // remove type mangling delimiters
 | 
						|
		{regex("_[0-9]+([^0-9a-fA-Fx])"), "$1"}, // removes AST IDs that are not hex.
 | 
						|
		{regex("_[0-9]+$"), ""}, // removes AST IDs that are not hex.
 | 
						|
		{regex("_t_"), "_"}, // remove type prefixes
 | 
						|
		{regex("__"), "_"},
 | 
						|
		{regex("(abi_..code.*)_to_.*"), "$1"}, // removes _to... for abi functions
 | 
						|
		{regex("(stringliteral_?[0-9a-f][0-9a-f][0-9a-f][0-9a-f])[0-9a-f]*"), "$1"}, // shorten string literal
 | 
						|
		{regex("tuple_"), ""},
 | 
						|
		{regex("_memory_ptr"), ""},
 | 
						|
		{regex("_calldata_ptr"), "_calldata"},
 | 
						|
		{regex("_fromStack"), ""},
 | 
						|
		{regex("_storage_storage"), "_storage"},
 | 
						|
		{regex("(storage.*)_?storage"), "$1"},
 | 
						|
		{regex("_memory_memory"), "_memory"},
 | 
						|
		{regex("_contract\\$_([^_]*)_?"), "$1_"},
 | 
						|
		{regex("index_access_(t_)?array"), "index_access"},
 | 
						|
		{regex("[0-9]*_$"), ""}
 | 
						|
	};
 | 
						|
 | 
						|
	for (auto const& [pattern, substitute]: replacements)
 | 
						|
	{
 | 
						|
		string candidate = regex_replace(name, pattern, substitute);
 | 
						|
		if (!candidate.empty() && !m_context.dispenser.illegalName(YulString(candidate)))
 | 
						|
			name = candidate;
 | 
						|
	}
 | 
						|
 | 
						|
	if (name != _name.str())
 | 
						|
	{
 | 
						|
		YulString newName{name};
 | 
						|
		m_context.dispenser.markUsed(newName);
 | 
						|
		m_translations[_name] = move(newName);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void NameSimplifier::translate(YulString& _name)
 | 
						|
{
 | 
						|
	auto it = m_translations.find(_name);
 | 
						|
	if (it != m_translations.end())
 | 
						|
		_name = it->second;
 | 
						|
}
 |