mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			162 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			162 lines
		
	
	
		
			4.1 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/>.
 | 
						|
*/
 | 
						|
/**
 | 
						|
 * Assembly interface that ignores everything. Can be used as a backend for a compilation dry-run.
 | 
						|
 */
 | 
						|
 | 
						|
#include <libyul/backends/evm/NoOutputAssembly.h>
 | 
						|
#include <libyul/Exceptions.h>
 | 
						|
 | 
						|
#include <libevmasm/Instruction.h>
 | 
						|
 | 
						|
using namespace std;
 | 
						|
using namespace dev;
 | 
						|
using namespace langutil;
 | 
						|
using namespace yul;
 | 
						|
 | 
						|
 | 
						|
void NoOutputAssembly::appendInstruction(dev::eth::Instruction _instr)
 | 
						|
{
 | 
						|
	m_stackHeight += instructionInfo(_instr).ret - instructionInfo(_instr).args;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendConstant(u256 const&)
 | 
						|
{
 | 
						|
	appendInstruction(dev::eth::pushInstruction(1));
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendLabel(LabelID)
 | 
						|
{
 | 
						|
	appendInstruction(dev::eth::Instruction::JUMPDEST);
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendLabelReference(LabelID)
 | 
						|
{
 | 
						|
	yulAssert(!m_evm15, "Cannot use plain label references in EMV1.5 mode.");
 | 
						|
	appendInstruction(dev::eth::pushInstruction(1));
 | 
						|
}
 | 
						|
 | 
						|
NoOutputAssembly::LabelID NoOutputAssembly::newLabelId()
 | 
						|
{
 | 
						|
	return 1;
 | 
						|
}
 | 
						|
 | 
						|
AbstractAssembly::LabelID NoOutputAssembly::namedLabel(string const&)
 | 
						|
{
 | 
						|
	return 1;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendLinkerSymbol(string const&)
 | 
						|
{
 | 
						|
	yulAssert(false, "Linker symbols not yet implemented.");
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendJump(int _stackDiffAfter)
 | 
						|
{
 | 
						|
	yulAssert(!m_evm15, "Plain JUMP used for EVM 1.5");
 | 
						|
	appendInstruction(dev::eth::Instruction::JUMP);
 | 
						|
	m_stackHeight += _stackDiffAfter;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendJumpTo(LabelID _labelId, int _stackDiffAfter)
 | 
						|
{
 | 
						|
	if (m_evm15)
 | 
						|
		m_stackHeight += _stackDiffAfter;
 | 
						|
	else
 | 
						|
	{
 | 
						|
		appendLabelReference(_labelId);
 | 
						|
		appendJump(_stackDiffAfter);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendJumpToIf(LabelID _labelId)
 | 
						|
{
 | 
						|
	if (m_evm15)
 | 
						|
		m_stackHeight--;
 | 
						|
	else
 | 
						|
	{
 | 
						|
		appendLabelReference(_labelId);
 | 
						|
		appendInstruction(dev::eth::Instruction::JUMPI);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendBeginsub(LabelID, int _arguments)
 | 
						|
{
 | 
						|
	yulAssert(m_evm15, "BEGINSUB used for EVM 1.0");
 | 
						|
	yulAssert(_arguments >= 0, "");
 | 
						|
	m_stackHeight += _arguments;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendJumpsub(LabelID, int _arguments, int _returns)
 | 
						|
{
 | 
						|
	yulAssert(m_evm15, "JUMPSUB used for EVM 1.0");
 | 
						|
	yulAssert(_arguments >= 0 && _returns >= 0, "");
 | 
						|
	m_stackHeight += _returns - _arguments;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendReturnsub(int _returns, int _stackDiffAfter)
 | 
						|
{
 | 
						|
	yulAssert(m_evm15, "RETURNSUB used for EVM 1.0");
 | 
						|
	yulAssert(_returns >= 0, "");
 | 
						|
	m_stackHeight += _stackDiffAfter - _returns;
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendAssemblySize()
 | 
						|
{
 | 
						|
	appendInstruction(dev::eth::Instruction::PUSH1);
 | 
						|
}
 | 
						|
 | 
						|
pair<shared_ptr<AbstractAssembly>, AbstractAssembly::SubID> NoOutputAssembly::createSubAssembly()
 | 
						|
{
 | 
						|
	yulAssert(false, "Sub assemblies not implemented.");
 | 
						|
	return {};
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendDataOffset(AbstractAssembly::SubID)
 | 
						|
{
 | 
						|
	appendInstruction(dev::eth::Instruction::PUSH1);
 | 
						|
}
 | 
						|
 | 
						|
void NoOutputAssembly::appendDataSize(AbstractAssembly::SubID)
 | 
						|
{
 | 
						|
	appendInstruction(dev::eth::Instruction::PUSH1);
 | 
						|
}
 | 
						|
 | 
						|
AbstractAssembly::SubID NoOutputAssembly::appendData(bytes const&)
 | 
						|
{
 | 
						|
	return 1;
 | 
						|
}
 | 
						|
 | 
						|
NoOutputEVMDialect::NoOutputEVMDialect(EVMDialect const& _copyFrom):
 | 
						|
	EVMDialect(_copyFrom.flavour, _copyFrom.providesObjectAccess(), _copyFrom.evmVersion())
 | 
						|
{
 | 
						|
	for (auto& fun: m_functions)
 | 
						|
	{
 | 
						|
		size_t parameters = fun.second.parameters.size();
 | 
						|
		size_t returns = fun.second.returns.size();
 | 
						|
		fun.second.generateCode = [=](FunctionCall const&, AbstractAssembly& _assembly, BuiltinContext&, std::function<void()> _visitArguments)
 | 
						|
		{
 | 
						|
			_visitArguments();
 | 
						|
			for (size_t i = 0; i < parameters; i++)
 | 
						|
				_assembly.appendInstruction(dev::eth::Instruction::POP);
 | 
						|
 | 
						|
			for (size_t i = 0; i < returns; i++)
 | 
						|
				_assembly.appendConstant(u256(0));
 | 
						|
		};
 | 
						|
	}
 | 
						|
}
 |