-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathDialect.h
94 lines (76 loc) · 3.3 KB
/
Dialect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
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
/**
* Yul dialect.
*/
#pragma once
#include <libyul/Builtins.h>
#include <libyul/ControlFlowSideEffects.h>
#include <libyul/Exceptions.h>
#include <libyul/SideEffects.h>
#include <libyul/YulString.h>
#include <optional>
#include <string>
#include <string_view>
#include <vector>
namespace solidity::yul
{
enum class LiteralKind;
class LiteralValue;
struct Literal;
struct BuiltinFunction
{
std::string name;
size_t numParameters;
size_t numReturns;
SideEffects sideEffects;
ControlFlowSideEffects controlFlowSideEffects;
/// If true, this is the msize instruction or might contain it.
bool isMSize = false;
/// Must be empty or the same length as the arguments.
/// If set at index i, the i'th argument has to be a literal which means it can't be moved to variables.
std::vector<std::optional<LiteralKind>> literalArguments{};
std::optional<LiteralKind> literalArgument(size_t i) const
{
return literalArguments.empty() ? std::nullopt : literalArguments.at(i);
}
};
class Dialect
{
public:
/// Noncopiable.
Dialect(Dialect const&) = delete;
Dialect& operator=(Dialect const&) = delete;
/// Finds a builtin by name and returns the corresponding handle.
/// @returns Builtin handle or null if the name does not match any builtin in the dialect.
virtual std::optional<BuiltinHandle> findBuiltin(std::string_view /*_name*/) const { return std::nullopt; }
/// Retrieves the description of a builtin function by its handle.
/// Note that handles are dialect-specific and can be used only with a dialect that created them.
virtual BuiltinFunction const& builtin(BuiltinHandle const&) const { yulAssert(false); }
/// @returns true if the identifier is reserved. This includes the builtins too.
virtual bool reservedIdentifier(std::string_view _name) const { return findBuiltin(_name).has_value(); }
virtual std::optional<BuiltinHandle> discardFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> equalityFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> booleanNegationFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> memoryStoreFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> memoryLoadFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> storageStoreFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> storageLoadFunctionHandle() const { return std::nullopt; }
virtual std::optional<BuiltinHandle> hashFunctionHandle() const { return std::nullopt; }
Literal zeroLiteral() const;
Dialect() = default;
virtual ~Dialect() = default;
};
}