mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.0 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/>.
 | |
| */
 | |
| /**
 | |
|  * Component that transforms interval EWasm representation to text.
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <libyul/backends/wasm/EWasmAST.h>
 | |
| 
 | |
| #include <vector>
 | |
| 
 | |
| namespace yul
 | |
| {
 | |
| struct AsmAnalysisInfo;
 | |
| 
 | |
| class EWasmToText: public boost::static_visitor<std::string>
 | |
| {
 | |
| public:
 | |
| 	std::string run(
 | |
| 		std::vector<wasm::GlobalVariableDeclaration> const& _globals,
 | |
| 		std::vector<wasm::FunctionDefinition> const& _functions
 | |
| 	);
 | |
| 
 | |
| public:
 | |
| 	std::string operator()(wasm::Literal const& _literal);
 | |
| 	std::string operator()(wasm::LocalVariable const& _identifier);
 | |
| 	std::string operator()(wasm::GlobalVariable const& _identifier);
 | |
| 	std::string operator()(wasm::Label const& _label);
 | |
| 	std::string operator()(wasm::BuiltinCall const& _builinCall);
 | |
| 	std::string operator()(wasm::FunctionCall const& _functionCall);
 | |
| 	std::string operator()(wasm::LocalAssignment const& _assignment);
 | |
| 	std::string operator()(wasm::GlobalAssignment const& _assignment);
 | |
| 	std::string operator()(wasm::If const& _if);
 | |
| 	std::string operator()(wasm::Loop const& _loop);
 | |
| 	std::string operator()(wasm::Break const& _break);
 | |
| 	std::string operator()(wasm::Continue const& _continue);
 | |
| 	std::string operator()(wasm::Block const& _block);
 | |
| 
 | |
| private:
 | |
| 	std::string indented(std::string const& _in);
 | |
| 
 | |
| 	std::string transform(wasm::FunctionDefinition const& _function);
 | |
| 
 | |
| 	std::string visit(wasm::Expression const& _expression);
 | |
| 	std::string joinTransformed(std::vector<wasm::Expression> const& _expressions);
 | |
| };
 | |
| 
 | |
| }
 |