mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
63 lines
2.1 KiB
C++
63 lines
2.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/>.
|
|
*/
|
|
/**
|
|
* @author Christian <c@ethdev.com>
|
|
* @date 2017
|
|
* Converts a parsed assembly into its textual form.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <libyul/AsmDataForward.h>
|
|
|
|
#include <libyul/YulString.h>
|
|
|
|
namespace yul
|
|
{
|
|
|
|
class AsmPrinter
|
|
{
|
|
public:
|
|
explicit AsmPrinter(bool _yul = false): m_yul(_yul) {}
|
|
|
|
std::string operator()(Instruction const& _instruction) const;
|
|
std::string operator()(Literal const& _literal) const;
|
|
std::string operator()(Identifier const& _identifier) const;
|
|
std::string operator()(FunctionalInstruction const& _functionalInstruction) const;
|
|
std::string operator()(ExpressionStatement const& _expr) const;
|
|
std::string operator()(Label const& _label) const;
|
|
std::string operator()(StackAssignment const& _assignment) const;
|
|
std::string operator()(Assignment const& _assignment) const;
|
|
std::string operator()(VariableDeclaration const& _variableDeclaration) const;
|
|
std::string operator()(FunctionDefinition const& _functionDefinition) const;
|
|
std::string operator()(FunctionCall const& _functionCall) const;
|
|
std::string operator()(If const& _if) const;
|
|
std::string operator()(Switch const& _switch) const;
|
|
std::string operator()(ForLoop const& _forLoop) const;
|
|
std::string operator()(Break const& _break) const;
|
|
std::string operator()(Continue const& _continue) const;
|
|
std::string operator()(Block const& _block) const;
|
|
|
|
private:
|
|
std::string formatTypedName(TypedName _variable) const;
|
|
std::string appendTypeName(YulString _type) const;
|
|
|
|
bool m_yul = false;
|
|
};
|
|
|
|
}
|