mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.7 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 <test/libyul/EVMCodeTransformTest.h>
 | |
| #include <test/libyul/Common.h>
 | |
| 
 | |
| #include <test/Common.h>
 | |
| 
 | |
| #include <libyul/YulStack.h>
 | |
| #include <libyul/backends/evm/EthAssemblyAdapter.h>
 | |
| #include <libyul/backends/evm/EVMObjectCompiler.h>
 | |
| 
 | |
| #include <libevmasm/Assembly.h>
 | |
| 
 | |
| #include <liblangutil/SourceReferenceFormatter.h>
 | |
| 
 | |
| #include <libsolutil/AnsiColorized.h>
 | |
| 
 | |
| using namespace solidity;
 | |
| using namespace solidity::util;
 | |
| using namespace solidity::langutil;
 | |
| using namespace solidity::yul;
 | |
| using namespace solidity::yul::test;
 | |
| using namespace solidity::frontend;
 | |
| using namespace solidity::frontend::test;
 | |
| using namespace std;
 | |
| 
 | |
| EVMCodeTransformTest::EVMCodeTransformTest(string const& _filename):
 | |
| 	EVMVersionRestrictedTestCase(_filename)
 | |
| {
 | |
| 	m_source = m_reader.source();
 | |
| 	m_stackOpt = m_reader.boolSetting("stackOptimization", false);
 | |
| 	m_expectation = m_reader.simpleExpectations();
 | |
| }
 | |
| 
 | |
| TestCase::TestResult EVMCodeTransformTest::run(ostream& _stream, string const& _linePrefix, bool const _formatted)
 | |
| {
 | |
| 	solidity::frontend::OptimiserSettings settings = solidity::frontend::OptimiserSettings::none();
 | |
| 	settings.runYulOptimiser = false;
 | |
| 	settings.optimizeStackAllocation = m_stackOpt;
 | |
| 	YulStack stack(
 | |
| 		EVMVersion{},
 | |
| 		nullopt,
 | |
| 		YulStack::Language::StrictAssembly,
 | |
| 		settings,
 | |
| 		DebugInfoSelection::All()
 | |
| 	);
 | |
| 	if (!stack.parseAndAnalyze("", m_source))
 | |
| 	{
 | |
| 		AnsiColorized(_stream, _formatted, {formatting::BOLD, formatting::RED}) << _linePrefix << "Error parsing source." << endl;
 | |
| 		SourceReferenceFormatter{_stream, stack, true, false}
 | |
| 			.printErrorInformation(stack.errors());
 | |
| 		return TestResult::FatalError;
 | |
| 	}
 | |
| 
 | |
| 	evmasm::Assembly assembly{solidity::test::CommonOptions::get().evmVersion(), false, {}};
 | |
| 	EthAssemblyAdapter adapter(assembly);
 | |
| 	EVMObjectCompiler::compile(
 | |
| 		*stack.parserResult(),
 | |
| 		adapter,
 | |
| 		EVMDialect::strictAssemblyForEVMObjects(EVMVersion{}),
 | |
| 		m_stackOpt,
 | |
| 		nullopt
 | |
| 	);
 | |
| 
 | |
| 	std::ostringstream output;
 | |
| 	output << assembly;
 | |
| 	m_obtainedResult = output.str();
 | |
| 
 | |
| 	return checkResult(_stream, _linePrefix, _formatted);
 | |
| }
 |