solidity/libyul/AsmPrinter.h

67 lines
2.2 KiB
C
Raw Normal View History

2017-02-09 13:04:23 +00:00
/*
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>
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2017-02-09 13:04:23 +00:00
{
2019-12-19 16:58:20 +00:00
struct Dialect;
2017-02-09 13:04:23 +00:00
/**
* Converts a parsed Yul AST into readable string representation.
* Ignores source locations.
* If a dialect is provided, the dialect's default type is omitted.
*/
class AsmPrinter
2017-02-09 13:04:23 +00:00
{
public:
AsmPrinter() {}
explicit AsmPrinter(Dialect const& _dialect): m_dialect(&_dialect) {}
2017-04-26 22:58:08 +00:00
2018-12-13 11:56:53 +00:00
std::string operator()(Literal const& _literal) const;
std::string operator()(Identifier const& _identifier) const;
std::string operator()(ExpressionStatement const& _expr) 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;
2019-10-28 14:25:02 +00:00
std::string operator()(Leave const& _continue) const;
2018-12-13 11:56:53 +00:00
std::string operator()(Block const& _block) const;
2017-04-26 22:58:08 +00:00
private:
std::string formatTypedName(TypedName _variable) const;
std::string appendTypeName(YulString _type, bool _isBoolLiteral = false) const;
Dialect const* m_dialect = nullptr;
2017-02-09 13:04:23 +00:00
};
}