2019-04-18 14:37:59 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
2019-12-09 16:36:12 +00:00
|
|
|
* Component that transforms internal Wasm representation to text.
|
2019-04-18 14:37:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-12-10 23:43:52 +00:00
|
|
|
#include <libyul/backends/wasm/WasmAST.h>
|
2019-04-18 14:37:59 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2019-04-18 14:37:59 +00:00
|
|
|
{
|
|
|
|
struct AsmAnalysisInfo;
|
2019-12-11 16:31:36 +00:00
|
|
|
}
|
2019-04-18 14:37:59 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul::wasm
|
2019-12-09 16:43:22 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class TextTransform
|
2019-04-18 14:37:59 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-10-31 16:27:52 +00:00
|
|
|
std::string run(wasm::Module const& _module);
|
2019-04-18 14:37:59 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
std::string operator()(wasm::Literal const& _literal);
|
2019-06-24 14:51:59 +00:00
|
|
|
std::string operator()(wasm::StringLiteral const& _literal);
|
2019-04-23 08:45:16 +00:00
|
|
|
std::string operator()(wasm::LocalVariable const& _identifier);
|
|
|
|
std::string operator()(wasm::GlobalVariable const& _identifier);
|
2019-04-18 14:37:59 +00:00
|
|
|
std::string operator()(wasm::BuiltinCall const& _builinCall);
|
|
|
|
std::string operator()(wasm::FunctionCall const& _functionCall);
|
|
|
|
std::string operator()(wasm::LocalAssignment const& _assignment);
|
2019-04-23 08:45:16 +00:00
|
|
|
std::string operator()(wasm::GlobalAssignment const& _assignment);
|
2019-04-18 14:37:59 +00:00
|
|
|
std::string operator()(wasm::If const& _if);
|
|
|
|
std::string operator()(wasm::Loop const& _loop);
|
|
|
|
std::string operator()(wasm::Break const& _break);
|
2019-10-28 14:25:02 +00:00
|
|
|
std::string operator()(wasm::Return const& _return);
|
2019-10-17 11:14:19 +00:00
|
|
|
std::string operator()(wasm::BreakIf const& _break);
|
2019-04-18 14:37:59 +00:00
|
|
|
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);
|
2019-07-11 15:02:53 +00:00
|
|
|
std::string joinTransformed(
|
|
|
|
std::vector<wasm::Expression> const& _expressions,
|
|
|
|
char _separator = ' '
|
|
|
|
);
|
2019-04-18 14:37:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|