mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			225 lines
		
	
	
		
			7.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			225 lines
		
	
	
		
			7.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/>.
 | |
| */
 | |
| // SPDX-License-Identifier: GPL-3.0
 | |
| /**
 | |
|  * Code generator for translating Yul / inline assembly to EVM.
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <libyul/backends/evm/EVMDialect.h>
 | |
| #include <libyul/backends/evm/VariableReferenceCounter.h>
 | |
| #include <libyul/optimiser/ASTWalker.h>
 | |
| #include <libyul/AST.h>
 | |
| #include <libyul/Scope.h>
 | |
| 
 | |
| #include <optional>
 | |
| #include <stack>
 | |
| 
 | |
| namespace solidity::langutil
 | |
| {
 | |
| class ErrorReporter;
 | |
| }
 | |
| 
 | |
| namespace solidity::yul
 | |
| {
 | |
| 
 | |
| struct AsmAnalysisInfo;
 | |
| 
 | |
| struct CodeTransformContext
 | |
| {
 | |
| 	std::map<Scope::Function const*, AbstractAssembly::LabelID> functionEntryIDs;
 | |
| 	std::map<Scope::Variable const*, size_t> variableStackHeights;
 | |
| 	std::map<Scope::Variable const*, unsigned> variableReferences;
 | |
| 
 | |
| 	struct JumpInfo
 | |
| 	{
 | |
| 		AbstractAssembly::LabelID label;  ///< Jump's LabelID to jump to.
 | |
| 		int targetStackHeight;            ///< Stack height after the jump.
 | |
| 	};
 | |
| 
 | |
| 	struct ForLoopLabels
 | |
| 	{
 | |
| 		JumpInfo post; ///< Jump info for jumping to post branch.
 | |
| 		JumpInfo done; ///< Jump info for jumping to done branch.
 | |
| 	};
 | |
| 
 | |
| 	std::stack<ForLoopLabels> forLoopStack;
 | |
| };
 | |
| 
 | |
| class CodeTransform
 | |
| {
 | |
| public:
 | |
| 	/// Use named labels for functions 1) Yes and check that the names are unique
 | |
| 	/// 2) For none of the functions 3) for the first function of each name.
 | |
| 	enum class UseNamedLabels { YesAndForceUnique, Never, ForFirstFunctionOfEachName };
 | |
| 
 | |
| 	/// Create the code transformer.
 | |
| 	/// @param _identifierAccessCodeGen used to generate code for identifiers external to the inline assembly
 | |
| 	/// As a side-effect of its construction, translates the Yul code and appends it to the
 | |
| 	/// given assembly.
 | |
| 	/// Throws StackTooDeepError if a variable is not accessible or if a function has too
 | |
| 	/// many parameters.
 | |
| 	CodeTransform(
 | |
| 		AbstractAssembly& _assembly,
 | |
| 		AsmAnalysisInfo& _analysisInfo,
 | |
| 		Block const& _block,
 | |
| 		EVMDialect const& _dialect,
 | |
| 		BuiltinContext& _builtinContext,
 | |
| 		bool _allowStackOpt = false,
 | |
| 		ExternalIdentifierAccess::CodeGenerator const& _identifierAccessCodeGen = {},
 | |
| 		UseNamedLabels _useNamedLabelsForFunctions = UseNamedLabels::Never
 | |
| 	): CodeTransform(
 | |
| 		_assembly,
 | |
| 		_analysisInfo,
 | |
| 		_block,
 | |
| 		_allowStackOpt,
 | |
| 		_dialect,
 | |
| 		_builtinContext,
 | |
| 		_identifierAccessCodeGen,
 | |
| 		_useNamedLabelsForFunctions,
 | |
| 		nullptr,
 | |
| 		{},
 | |
| 		std::nullopt
 | |
| 	)
 | |
| 	{
 | |
| 	}
 | |
| 
 | |
| 	std::vector<StackTooDeepError> const& stackErrors() const { return m_stackErrors; }
 | |
| 
 | |
| protected:
 | |
| 	using Context = CodeTransformContext;
 | |
| 
 | |
| 	CodeTransform(
 | |
| 		AbstractAssembly& _assembly,
 | |
| 		AsmAnalysisInfo& _analysisInfo,
 | |
| 		Block const& _block,
 | |
| 		bool _allowStackOpt,
 | |
| 		EVMDialect const& _dialect,
 | |
| 		BuiltinContext& _builtinContext,
 | |
| 		ExternalIdentifierAccess::CodeGenerator _identifierAccessCodeGen,
 | |
| 		UseNamedLabels _useNamedLabelsForFunctions,
 | |
| 		std::shared_ptr<Context> _context,
 | |
| 		std::vector<TypedName> _delayedReturnVariables,
 | |
| 		std::optional<AbstractAssembly::LabelID> _functionExitLabel
 | |
| 	);
 | |
| 
 | |
| 	void decreaseReference(YulString _name, Scope::Variable const& _var);
 | |
| 	bool unreferenced(Scope::Variable const& _var) const;
 | |
| 	/// Marks slots of variables that are not used anymore
 | |
| 	/// and were defined in the current scope for reuse.
 | |
| 	/// Also POPs unused topmost stack slots,
 | |
| 	/// unless @a _popUnusedSlotsAtStackTop is set to false.
 | |
| 	void freeUnusedVariables(bool _popUnusedSlotsAtStackTop = true);
 | |
| 	/// Marks the stack slot of @a _var to be reused.
 | |
| 	void deleteVariable(Scope::Variable const& _var);
 | |
| 
 | |
| public:
 | |
| 	void operator()(Literal const& _literal);
 | |
| 	void operator()(Identifier const& _identifier);
 | |
| 	void operator()(FunctionCall const&);
 | |
| 	void operator()(ExpressionStatement const& _statement);
 | |
| 	void operator()(Assignment const& _assignment);
 | |
| 	void operator()(VariableDeclaration const& _varDecl);
 | |
| 	void operator()(If const& _if);
 | |
| 	void operator()(Switch const& _switch);
 | |
| 	void operator()(FunctionDefinition const&);
 | |
| 	void operator()(ForLoop const&);
 | |
| 	void operator()(Break const&);
 | |
| 	void operator()(Continue const&);
 | |
| 	void operator()(Leave const&);
 | |
| 	void operator()(Block const& _block);
 | |
| 
 | |
| private:
 | |
| 	AbstractAssembly::LabelID labelFromIdentifier(Identifier const& _identifier);
 | |
| 	void createFunctionEntryID(FunctionDefinition const& _function);
 | |
| 	AbstractAssembly::LabelID functionEntryID(Scope::Function const& _scopeFunction) const;
 | |
| 	/// Generates code for an expression that is supposed to return a single value.
 | |
| 	void visitExpression(Expression const& _expression);
 | |
| 
 | |
| 	void visitStatements(std::vector<Statement> const& _statements);
 | |
| 
 | |
| 	/// Pops all variables declared in the block and checks that the stack height is equal
 | |
| 	/// to @a _blockStartStackHeight.
 | |
| 	void finalizeBlock(Block const& _block, std::optional<int> _blockStartStackHeight);
 | |
| 
 | |
| 	void generateMultiAssignment(std::vector<Identifier> const& _variableNames);
 | |
| 	void generateAssignment(Identifier const& _variableName);
 | |
| 
 | |
| 	/// Determines the stack height difference to the given variables. Throws
 | |
| 	/// if it is not yet in scope or the height difference is too large. Returns
 | |
| 	/// the (positive) stack height difference otherwise.
 | |
| 	/// @param _forSwap if true, produces stack error if the difference is invalid for a swap
 | |
| 	///                 opcode, otherwise checks for validity for a dup opcode.
 | |
| 	size_t variableHeightDiff(Scope::Variable const& _var, YulString _name, bool _forSwap);
 | |
| 
 | |
| 	/// Determines the stack height of the given variable. Throws if the variable is not in scope.
 | |
| 	int variableStackHeight(YulString _name) const;
 | |
| 
 | |
| 	void expectDeposit(int _deposit, int _oldHeight) const;
 | |
| 
 | |
| 	/// Stores the stack error in the list of errors, appends an invalid opcode
 | |
| 	/// and corrects the stack height to the target stack height.
 | |
| 	void stackError(StackTooDeepError _error, int _targetStackSize);
 | |
| 
 | |
| 	/// Ensures stack height is down to @p _targetDepth by appending POP instructions to the output assembly.
 | |
| 	/// Returns the number of POP statements that have been appended.
 | |
| 	int appendPopUntil(int _targetDepth);
 | |
| 
 | |
| 	/// Allocates stack slots for remaining delayed return values and sets the function exit stack height.
 | |
| 	void setupReturnVariablesAndFunctionExit();
 | |
| 	bool returnVariablesAndFunctionExitAreSetup() const
 | |
| 	{
 | |
| 		return m_functionExitStackHeight.has_value();
 | |
| 	}
 | |
| 	bool isInsideFunction() const
 | |
| 	{
 | |
| 		return m_functionExitLabel.has_value();
 | |
| 	}
 | |
| 
 | |
| 	AbstractAssembly& m_assembly;
 | |
| 	AsmAnalysisInfo& m_info;
 | |
| 	Scope* m_scope = nullptr;
 | |
| 	EVMDialect const& m_dialect;
 | |
| 	BuiltinContext& m_builtinContext;
 | |
| 	bool const m_allowStackOpt = true;
 | |
| 	UseNamedLabels const m_useNamedLabelsForFunctions = UseNamedLabels::Never;
 | |
| 	std::set<YulString> m_assignedNamedLabels;
 | |
| 	ExternalIdentifierAccess::CodeGenerator m_identifierAccessCodeGen;
 | |
| 	std::shared_ptr<Context> m_context;
 | |
| 
 | |
| 	/// Set of variables whose reference counter has reached zero,
 | |
| 	/// and whose stack slot will be marked as unused once we reach
 | |
| 	/// statement level in the scope where the variable was defined.
 | |
| 	std::set<Scope::Variable const*> m_variablesScheduledForDeletion;
 | |
| 	std::set<int> m_unusedStackSlots;
 | |
| 
 | |
| 	/// A list of return variables for which no stack slots have been assigned yet.
 | |
| 	std::vector<TypedName> m_delayedReturnVariables;
 | |
| 
 | |
| 	/// Function exit label. Used as jump target for ``leave``.
 | |
| 	std::optional<AbstractAssembly::LabelID> m_functionExitLabel;
 | |
| 	/// The required stack height at the function exit label.
 | |
| 	/// This is the minimal stack height covering all return variables. Only set after all
 | |
| 	/// return variables were assigned slots.
 | |
| 	std::optional<int> m_functionExitStackHeight;
 | |
| 
 | |
| 	std::vector<StackTooDeepError> m_stackErrors;
 | |
| };
 | |
| 
 | |
| }
 |