mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.9 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 <libsolidity/codegen/ir/IRVariable.h>
 | 
						|
#include <libsolidity/ast/AST.h>
 | 
						|
#include <boost/range/adaptor/transformed.hpp>
 | 
						|
#include <libsolutil/StringUtils.h>
 | 
						|
 | 
						|
using namespace std;
 | 
						|
using namespace solidity;
 | 
						|
using namespace solidity::frontend;
 | 
						|
using namespace solidity::util;
 | 
						|
 | 
						|
IRVariable::IRVariable(std::string _baseName, Type const& _type):
 | 
						|
	m_baseName(std::move(_baseName)), m_type(_type)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
IRVariable::IRVariable(VariableDeclaration const& _declaration):
 | 
						|
	IRVariable(
 | 
						|
		"vloc_" + _declaration.name() + '_' + std::to_string(_declaration.id()),
 | 
						|
		*_declaration.annotation().type
 | 
						|
	)
 | 
						|
{
 | 
						|
	solAssert(!_declaration.isStateVariable(), "");
 | 
						|
}
 | 
						|
 | 
						|
IRVariable::IRVariable(Expression const& _expression):
 | 
						|
	IRVariable(
 | 
						|
		"expr_" + to_string(_expression.id()),
 | 
						|
		*_expression.annotation().type
 | 
						|
	)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
IRVariable IRVariable::part(string const& _name) const
 | 
						|
{
 | 
						|
	for (auto const& [itemName, itemType]: m_type.stackItems())
 | 
						|
		if (itemName == _name)
 | 
						|
		{
 | 
						|
			solAssert(itemName.empty() || itemType, "");
 | 
						|
			return IRVariable{suffixedName(itemName), itemType ? *itemType : m_type};
 | 
						|
		}
 | 
						|
	solAssert(false, "Invalid stack item name: " + _name);
 | 
						|
}
 | 
						|
 | 
						|
vector<string> IRVariable::stackSlots() const
 | 
						|
{
 | 
						|
	vector<string> result;
 | 
						|
	for (auto const& [itemName, itemType]: m_type.stackItems())
 | 
						|
		if (itemType)
 | 
						|
		{
 | 
						|
			solAssert(!itemName.empty(), "");
 | 
						|
			solAssert(m_type != *itemType, "");
 | 
						|
			result += IRVariable{suffixedName(itemName), *itemType}.stackSlots();
 | 
						|
		}
 | 
						|
		else
 | 
						|
		{
 | 
						|
			solAssert(itemName.empty(), "");
 | 
						|
			result.emplace_back(m_baseName);
 | 
						|
		}
 | 
						|
	return result;
 | 
						|
}
 | 
						|
 | 
						|
string IRVariable::commaSeparatedList() const
 | 
						|
{
 | 
						|
	return joinHumanReadable(stackSlots());
 | 
						|
}
 | 
						|
 | 
						|
string IRVariable::commaSeparatedListPrefixed() const
 | 
						|
{
 | 
						|
	return joinHumanReadablePrefixed(stackSlots());
 | 
						|
}
 | 
						|
 | 
						|
string IRVariable::name() const
 | 
						|
{
 | 
						|
	solAssert(m_type.sizeOnStack() == 1, "");
 | 
						|
	auto const& [itemName, type] = m_type.stackItems().front();
 | 
						|
	solAssert(!type, "Expected null type for name " + itemName);
 | 
						|
	return suffixedName(itemName);
 | 
						|
}
 | 
						|
 | 
						|
IRVariable IRVariable::tupleComponent(size_t _i) const
 | 
						|
{
 | 
						|
	solAssert(
 | 
						|
		m_type.category() == Type::Category::Tuple,
 | 
						|
		"Requested tuple component of non-tuple IR variable."
 | 
						|
	);
 | 
						|
	return part("component_" + std::to_string(_i + 1));
 | 
						|
}
 | 
						|
 | 
						|
string IRVariable::suffixedName(string const& _suffix) const
 | 
						|
{
 | 
						|
	if (_suffix.empty())
 | 
						|
		return m_baseName;
 | 
						|
	else
 | 
						|
		return m_baseName + '_' + _suffix;
 | 
						|
}
 |