About
Contact
QtCreator
KDevelop
Solarized
1
/*
2
* Copyright 2020 WebAssembly Community Group participants
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
*
http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
17
DELEGATE
(
Nop
);
18
DELEGATE
(
Block
);
19
DELEGATE
(
If
);
20
DELEGATE
(
Loop
);
21
DELEGATE
(
Break
);
22
DELEGATE
(
Switch
);
23
DELEGATE
(
Call
);
24
DELEGATE
(
CallIndirect
);
25
DELEGATE
(
LocalGet
);
26
DELEGATE
(
LocalSet
);
27
DELEGATE
(
GlobalGet
);
28
DELEGATE
(
GlobalSet
);
29
DELEGATE
(
Load
);
30
DELEGATE
(
Store
);
31
DELEGATE
(
AtomicRMW
);
32
DELEGATE
(
AtomicCmpxchg
);
33
DELEGATE
(
AtomicWait
);
34
DELEGATE
(
AtomicNotify
);
35
DELEGATE
(
AtomicFence
);
36
DELEGATE
(
SIMDExtract
);
37
DELEGATE
(
SIMDReplace
);
38
DELEGATE
(
SIMDShuffle
);
39
DELEGATE
(
SIMDTernary
);
40
DELEGATE
(
SIMDShift
);
41
DELEGATE
(
SIMDLoad
);
42
DELEGATE
(
SIMDLoadStoreLane
);
43
DELEGATE
(
MemoryInit
);
44
DELEGATE
(
DataDrop
);
45
DELEGATE
(
MemoryCopy
);
46
DELEGATE
(
MemoryFill
);
47
DELEGATE
(
Const
);
48
DELEGATE
(
Unary
);
49
DELEGATE
(
Binary
);
50
DELEGATE
(
Select
);
51
DELEGATE
(
Drop
);
52
DELEGATE
(
Return
);
53
DELEGATE
(
MemorySize
);
54
DELEGATE
(
MemoryGrow
);
55
DELEGATE
(
Unreachable
);
56
DELEGATE
(
Pop
);
57
DELEGATE
(
RefNull
);
58
DELEGATE
(
RefIsNull
);
59
DELEGATE
(
RefFunc
);
60
DELEGATE
(
RefEq
);
61
DELEGATE
(
TableGet
);
62
DELEGATE
(
TableSet
);
63
DELEGATE
(
TableSize
);
64
DELEGATE
(
TableGrow
);
65
DELEGATE
(
Try
);
66
DELEGATE
(
Throw
);
67
DELEGATE
(
Rethrow
);
68
DELEGATE
(
TupleMake
);
69
DELEGATE
(
TupleExtract
);
70
DELEGATE
(
I31New
);
71
DELEGATE
(
I31Get
);
72
DELEGATE
(
CallRef
);
73
DELEGATE
(
RefTest
);
74
DELEGATE
(
RefCast
);
75
DELEGATE
(
BrOn
);
76
DELEGATE
(
StructNew
);
77
DELEGATE
(
StructGet
);
78
DELEGATE
(
StructSet
);
79
DELEGATE
(
ArrayNew
);
80
DELEGATE
(
ArrayNewData
);
81
DELEGATE
(
ArrayNewElem
);
82
DELEGATE
(
ArrayNewFixed
);
83
DELEGATE
(
ArrayGet
);
84
DELEGATE
(
ArraySet
);
85
DELEGATE
(
ArrayLen
);
86
DELEGATE
(
ArrayCopy
);
87
DELEGATE
(
ArrayFill
);
88
DELEGATE
(
ArrayInitData
);
89
DELEGATE
(
ArrayInitElem
);
90
DELEGATE
(
RefAs
);
91
DELEGATE
(
StringNew
);
92
DELEGATE
(
StringConst
);
93
DELEGATE
(
StringMeasure
);
94
DELEGATE
(
StringEncode
);
95
DELEGATE
(
StringConcat
);
96
DELEGATE
(
StringEq
);
97
DELEGATE
(
StringAs
);
98
DELEGATE
(
StringWTF8Advance
);
99
DELEGATE
(
StringWTF16Get
);
100
DELEGATE
(
StringIterNext
);
101
DELEGATE
(
StringIterMove
);
102
DELEGATE
(
StringSliceWTF
);
103
DELEGATE
(
StringSliceIter
);
104
105
#undef
DELEGATE
106