2019-04-17 17:14:27 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-04-17 17:14:27 +00:00
|
|
|
/**
|
|
|
|
* Dialects for Wasm.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libyul/Dialect.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2019-04-17 17:14:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class YulString;
|
|
|
|
using Type = YulString;
|
|
|
|
struct FunctionCall;
|
|
|
|
struct Object;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Yul dialect for Wasm as a backend.
|
|
|
|
*
|
2020-02-18 23:18:13 +00:00
|
|
|
* Builtin functions are a subset of the wasm instructions.
|
|
|
|
*
|
2020-12-01 02:01:06 +00:00
|
|
|
* There is a builtin function `i32.drop` that takes an i32, while `i64.drop` takes i64.
|
2019-04-17 17:14:27 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct WasmDialect: public Dialect
|
|
|
|
{
|
2019-04-24 12:03:09 +00:00
|
|
|
WasmDialect();
|
2019-04-17 17:14:27 +00:00
|
|
|
|
2019-04-24 12:03:09 +00:00
|
|
|
BuiltinFunction const* builtin(YulString _name) const override;
|
2020-02-18 23:18:13 +00:00
|
|
|
BuiltinFunction const* discardFunction(YulString _type) const override;
|
|
|
|
BuiltinFunction const* equalityFunction(YulString _type) const override;
|
|
|
|
BuiltinFunction const* booleanNegationFunction() const override { return builtin("i32.eqz"_yulstring); }
|
2019-05-16 08:56:56 +00:00
|
|
|
|
2019-05-29 21:14:06 +00:00
|
|
|
std::set<YulString> fixedFunctionNames() const override { return {"main"_yulstring}; }
|
|
|
|
|
2019-04-24 12:03:09 +00:00
|
|
|
static WasmDialect const& instance();
|
2019-05-16 08:56:56 +00:00
|
|
|
|
2019-04-24 12:03:09 +00:00
|
|
|
private:
|
2020-09-30 00:23:47 +00:00
|
|
|
void addExternals();
|
2019-07-09 13:19:50 +00:00
|
|
|
|
2020-01-30 18:40:06 +00:00
|
|
|
void addFunction(
|
|
|
|
std::string _name,
|
|
|
|
std::vector<YulString> _params,
|
|
|
|
std::vector<YulString> _returns,
|
|
|
|
bool _movable = true,
|
2020-08-04 15:30:16 +00:00
|
|
|
std::vector<std::optional<LiteralKind>> _literalArguments = std::vector<std::optional<LiteralKind>>{}
|
2020-01-30 18:40:06 +00:00
|
|
|
);
|
2019-04-17 17:14:27 +00:00
|
|
|
|
|
|
|
std::map<YulString, BuiltinFunction> m_functions;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|