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
17DELEGATE(Nop);
18DELEGATE(Block);
19DELEGATE(If);
20DELEGATE(Loop);
21DELEGATE(Break);
22DELEGATE(Switch);
23DELEGATE(Call);
24DELEGATE(CallIndirect);
25DELEGATE(LocalGet);
26DELEGATE(LocalSet);
27DELEGATE(GlobalGet);
28DELEGATE(GlobalSet);
29DELEGATE(Load);
30DELEGATE(Store);
31DELEGATE(AtomicRMW);
32DELEGATE(AtomicCmpxchg);
33DELEGATE(AtomicWait);
34DELEGATE(AtomicNotify);
35DELEGATE(AtomicFence);
36DELEGATE(SIMDExtract);
37DELEGATE(SIMDReplace);
38DELEGATE(SIMDShuffle);
39DELEGATE(SIMDTernary);
40DELEGATE(SIMDShift);
41DELEGATE(SIMDLoad);
42DELEGATE(SIMDLoadStoreLane);
43DELEGATE(MemoryInit);
44DELEGATE(DataDrop);
45DELEGATE(MemoryCopy);
46DELEGATE(MemoryFill);
47DELEGATE(Const);
48DELEGATE(Unary);
49DELEGATE(Binary);
50DELEGATE(Select);
51DELEGATE(Drop);
52DELEGATE(Return);
53DELEGATE(MemorySize);
54DELEGATE(MemoryGrow);
55DELEGATE(Unreachable);
56DELEGATE(Pop);
57DELEGATE(RefNull);
58DELEGATE(RefIsNull);
59DELEGATE(RefFunc);
60DELEGATE(RefEq);
61DELEGATE(TableGet);
62DELEGATE(TableSet);
63DELEGATE(TableSize);
64DELEGATE(TableGrow);
65DELEGATE(Try);
66DELEGATE(Throw);
67DELEGATE(Rethrow);
68DELEGATE(TupleMake);
69DELEGATE(TupleExtract);
70DELEGATE(I31New);
71DELEGATE(I31Get);
72DELEGATE(CallRef);
73DELEGATE(RefTest);
74DELEGATE(RefCast);
75DELEGATE(BrOn);
76DELEGATE(StructNew);
77DELEGATE(StructGet);
78DELEGATE(StructSet);
79DELEGATE(ArrayNew);
80DELEGATE(ArrayNewData);
81DELEGATE(ArrayNewElem);
82DELEGATE(ArrayNewFixed);
83DELEGATE(ArrayGet);
84DELEGATE(ArraySet);
85DELEGATE(ArrayLen);
86DELEGATE(ArrayCopy);
87DELEGATE(ArrayFill);
88DELEGATE(ArrayInitData);
89DELEGATE(ArrayInitElem);
90DELEGATE(RefAs);
91DELEGATE(StringNew);
92DELEGATE(StringConst);
93DELEGATE(StringMeasure);
94DELEGATE(StringEncode);
95DELEGATE(StringConcat);
96DELEGATE(StringEq);
97DELEGATE(StringAs);
98DELEGATE(StringWTF8Advance);
99DELEGATE(StringWTF16Get);
100DELEGATE(StringIterNext);
101DELEGATE(StringIterMove);
102DELEGATE(StringSliceWTF);
103DELEGATE(StringSliceIter);
104
105#undef DELEGATE
106

source code of dart_sdk/third_party/binaryen/src/src/wasm-delegations.def