blob: 7619fc0a858342c476773d3299ee7ed3a6cb8218 [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001// WebAssemblyInstrInfo.td-Describe the WebAssembly Instructions-*- tablegen -*-
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Dan Gohman10e730a2015-06-29 23:51:55 +00006//
7//===----------------------------------------------------------------------===//
JF Bastien5ca0bac2015-07-10 18:23:10 +00008///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// WebAssembly Instruction definitions.
JF Bastien5ca0bac2015-07-10 18:23:10 +000011///
Dan Gohman10e730a2015-06-29 23:51:55 +000012//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15// WebAssembly Instruction Predicate Definitions.
16//===----------------------------------------------------------------------===//
17
JF Bastien03855df2015-07-01 23:41:25 +000018def HasAddr32 : Predicate<"!Subtarget->hasAddr64()">;
Thomas Lively88058d42019-01-31 21:02:19 +000019
JF Bastien03855df2015-07-01 23:41:25 +000020def HasAddr64 : Predicate<"Subtarget->hasAddr64()">;
Thomas Lively88058d42019-01-31 21:02:19 +000021
22def HasSIMD128 :
23 Predicate<"Subtarget->hasSIMD128()">,
24 AssemblerPredicate<"FeatureSIMD128", "simd128">;
25
Thomas Lively64a39a12019-01-10 22:32:11 +000026def HasUnimplementedSIMD128 :
27 Predicate<"Subtarget->hasUnimplementedSIMD128()">,
28 AssemblerPredicate<"FeatureUnimplementedSIMD128", "unimplemented-simd128">;
Thomas Lively88058d42019-01-31 21:02:19 +000029
30def HasAtomics :
31 Predicate<"Subtarget->hasAtomics()">,
32 AssemblerPredicate<"FeatureAtomics", "atomics">;
33
Dan Gohmancdd48b82017-11-28 01:13:40 +000034def HasNontrappingFPToInt :
35 Predicate<"Subtarget->hasNontrappingFPToInt()">,
Thomas Lively88058d42019-01-31 21:02:19 +000036 AssemblerPredicate<"FeatureNontrappingFPToInt", "nontrapping-fptoint">;
37
Dan Gohmancdd48b82017-11-28 01:13:40 +000038def NotHasNontrappingFPToInt :
39 Predicate<"!Subtarget->hasNontrappingFPToInt()">,
Thomas Lively88058d42019-01-31 21:02:19 +000040 AssemblerPredicate<"!FeatureNontrappingFPToInt", "nontrapping-fptoint">;
41
Dan Gohman5d2b9352018-01-19 17:16:24 +000042def HasSignExt :
43 Predicate<"Subtarget->hasSignExt()">,
Thomas Lively88058d42019-01-31 21:02:19 +000044 AssemblerPredicate<"FeatureSignExt", "sign-ext">;
45
Dan Gohman5d2b9352018-01-19 17:16:24 +000046def NotHasSignExt :
47 Predicate<"!Subtarget->hasSignExt()">,
Thomas Lively88058d42019-01-31 21:02:19 +000048 AssemblerPredicate<"!FeatureSignExt", "sign-ext">;
JF Bastien03855df2015-07-01 23:41:25 +000049
Heejin Ahn9386bde2018-02-24 00:40:50 +000050def HasExceptionHandling :
51 Predicate<"Subtarget->hasExceptionHandling()">,
Thomas Lively88058d42019-01-31 21:02:19 +000052 AssemblerPredicate<"FeatureExceptionHandling", "exception-handling">;
Heejin Ahn9386bde2018-02-24 00:40:50 +000053
54def NotHasExceptionHandling :
55 Predicate<"!Subtarget->hasExceptionHandling()">,
Thomas Lively88058d42019-01-31 21:02:19 +000056 AssemblerPredicate<"!FeatureExceptionHandling", "exception-handling">;
57
58def HasBulkMemory :
59 Predicate<"Subtarget->hasBulkMemory()">,
60 AssemblerPredicate<"FeatureBulkMemory", "bulk-memory">;
Heejin Ahn9386bde2018-02-24 00:40:50 +000061
Dan Gohman10e730a2015-06-29 23:51:55 +000062//===----------------------------------------------------------------------===//
63// WebAssembly-specific DAG Node Types.
64//===----------------------------------------------------------------------===//
65
Serge Pavlovd526b132017-05-09 13:35:13 +000066def SDT_WebAssemblyCallSeqStart : SDCallSeqStart<[SDTCisVT<0, iPTR>,
67 SDTCisVT<1, iPTR>]>;
JF Bastienaf111db2015-08-24 22:16:48 +000068def SDT_WebAssemblyCallSeqEnd :
69 SDCallSeqEnd<[SDTCisVT<0, iPTR>, SDTCisVT<1, iPTR>]>;
Dan Gohmanf71abef2015-09-09 16:13:47 +000070def SDT_WebAssemblyCall0 : SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>;
71def SDT_WebAssemblyCall1 : SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>;
Dan Gohman14026062016-03-08 03:18:12 +000072def SDT_WebAssemblyBrTable : SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>;
JF Bastien600aee92015-07-31 17:53:38 +000073def SDT_WebAssemblyArgument : SDTypeProfile<1, 1, [SDTCisVT<1, i32>]>;
JF Bastien4a2d5602015-07-31 21:04:18 +000074def SDT_WebAssemblyReturn : SDTypeProfile<0, -1, []>;
JF Bastienaf111db2015-08-24 22:16:48 +000075def SDT_WebAssemblyWrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>,
76 SDTCisPtrTy<0>]>;
Heejin Ahnd6f48782019-01-30 03:21:57 +000077def SDT_WebAssemblyThrow : SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>;
JF Bastien600aee92015-07-31 17:53:38 +000078
Dan Gohman10e730a2015-06-29 23:51:55 +000079//===----------------------------------------------------------------------===//
80// WebAssembly-specific DAG Nodes.
81//===----------------------------------------------------------------------===//
82
JF Bastienaf111db2015-08-24 22:16:48 +000083def WebAssemblycallseq_start :
84 SDNode<"ISD::CALLSEQ_START", SDT_WebAssemblyCallSeqStart,
85 [SDNPHasChain, SDNPOutGlue]>;
86def WebAssemblycallseq_end :
87 SDNode<"ISD::CALLSEQ_END", SDT_WebAssemblyCallSeqEnd,
88 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Dan Gohmanf71abef2015-09-09 16:13:47 +000089def WebAssemblycall0 : SDNode<"WebAssemblyISD::CALL0",
90 SDT_WebAssemblyCall0,
91 [SDNPHasChain, SDNPVariadic]>;
92def WebAssemblycall1 : SDNode<"WebAssemblyISD::CALL1",
93 SDT_WebAssemblyCall1,
94 [SDNPHasChain, SDNPVariadic]>;
Dan Gohman14026062016-03-08 03:18:12 +000095def WebAssemblybr_table : SDNode<"WebAssemblyISD::BR_TABLE",
96 SDT_WebAssemblyBrTable,
97 [SDNPHasChain, SDNPVariadic]>;
JF Bastien600aee92015-07-31 17:53:38 +000098def WebAssemblyargument : SDNode<"WebAssemblyISD::ARGUMENT",
99 SDT_WebAssemblyArgument>;
100def WebAssemblyreturn : SDNode<"WebAssemblyISD::RETURN",
JF Bastienaf111db2015-08-24 22:16:48 +0000101 SDT_WebAssemblyReturn, [SDNPHasChain]>;
102def WebAssemblywrapper : SDNode<"WebAssemblyISD::Wrapper",
103 SDT_WebAssemblyWrapper>;
Heejin Ahnda419bd2018-11-14 02:46:21 +0000104def WebAssemblythrow : SDNode<"WebAssemblyISD::THROW", SDT_WebAssemblyThrow,
Heejin Ahnd6f48782019-01-30 03:21:57 +0000105 [SDNPHasChain, SDNPVariadic]>;
JF Bastien600aee92015-07-31 17:53:38 +0000106
Dan Gohman10e730a2015-06-29 23:51:55 +0000107//===----------------------------------------------------------------------===//
108// WebAssembly-specific Operands.
109//===----------------------------------------------------------------------===//
110
Dan Gohmana11fb232016-01-12 03:09:16 +0000111let OperandNamespace = "WebAssembly" in {
112
113let OperandType = "OPERAND_BASIC_BLOCK" in
Dan Gohman950a13c2015-09-16 16:51:30 +0000114def bb_op : Operand<OtherVT>;
JF Bastienaf111db2015-08-24 22:16:48 +0000115
Dan Gohman4fc4e422016-10-24 19:49:43 +0000116let OperandType = "OPERAND_LOCAL" in
117def local_op : Operand<i32>;
118
Dan Gohmanb89f2d32017-02-02 19:29:44 +0000119let OperandType = "OPERAND_GLOBAL" in
120def global_op : Operand<i32>;
121
Dan Gohman5a68ec72016-10-05 21:24:08 +0000122let OperandType = "OPERAND_I32IMM" in
123def i32imm_op : Operand<i32>;
124
125let OperandType = "OPERAND_I64IMM" in
126def i64imm_op : Operand<i64>;
127
Dan Gohman4b8e8be2016-10-03 21:31:31 +0000128let OperandType = "OPERAND_F32IMM" in
Dan Gohmana11fb232016-01-12 03:09:16 +0000129def f32imm_op : Operand<f32>;
Dan Gohmanaa742912016-02-16 15:14:23 +0000130
Dan Gohman4b8e8be2016-10-03 21:31:31 +0000131let OperandType = "OPERAND_F64IMM" in
Dan Gohmana11fb232016-01-12 03:09:16 +0000132def f64imm_op : Operand<f64>;
Dan Gohmana11fb232016-01-12 03:09:16 +0000133
Thomas Lively22442922018-08-21 21:03:18 +0000134let OperandType = "OPERAND_VEC_I8IMM" in
135def vec_i8imm_op : Operand<i32>;
136
137let OperandType = "OPERAND_VEC_I16IMM" in
138def vec_i16imm_op : Operand<i32>;
139
140let OperandType = "OPERAND_VEC_I32IMM" in
141def vec_i32imm_op : Operand<i32>;
142
143let OperandType = "OPERAND_VEC_I64IMM" in
144def vec_i64imm_op : Operand<i64>;
145
Dan Gohman00d734d2016-12-23 03:23:52 +0000146let OperandType = "OPERAND_FUNCTION32" in
147def function32_op : Operand<i32>;
148
149let OperandType = "OPERAND_OFFSET32" in
150def offset32_op : Operand<i32>;
151
Dan Gohmanbb372242016-01-26 03:39:31 +0000152let OperandType = "OPERAND_P2ALIGN" in {
153def P2Align : Operand<i32> {
154 let PrintMethod = "printWebAssemblyP2AlignOperand";
155}
Heejin Ahnda419bd2018-11-14 02:46:21 +0000156
157let OperandType = "OPERAND_EVENT" in
158def event_op : Operand<i32>;
159
Dan Gohmanbb372242016-01-26 03:39:31 +0000160} // OperandType = "OPERAND_P2ALIGN"
161
Dan Gohman2726b882016-10-06 22:29:32 +0000162let OperandType = "OPERAND_SIGNATURE" in {
163def Signature : Operand<i32> {
164 let PrintMethod = "printWebAssemblySignatureOperand";
165}
166} // OperandType = "OPERAND_SIGNATURE"
167
Dan Gohmand934cb82017-02-24 23:18:00 +0000168let OperandType = "OPERAND_TYPEINDEX" in
169def TypeIndex : Operand<i32>;
170
Dan Gohmana11fb232016-01-12 03:09:16 +0000171} // OperandNamespace = "WebAssembly"
172
Dan Gohman10e730a2015-06-29 23:51:55 +0000173//===----------------------------------------------------------------------===//
Thomas Livelyc63b5fc2018-10-22 21:55:26 +0000174// WebAssembly Register to Stack instruction mapping
175//===----------------------------------------------------------------------===//
176
177class StackRel;
178def getStackOpcode : InstrMapping {
179 let FilterClass = "StackRel";
180 let RowFields = ["BaseName"];
181 let ColFields = ["StackBased"];
182 let KeyCol = ["false"];
183 let ValueCols = [["true"]];
184}
185
186//===----------------------------------------------------------------------===//
Dan Gohman10e730a2015-06-29 23:51:55 +0000187// WebAssembly Instruction Format Definitions.
188//===----------------------------------------------------------------------===//
189
190include "WebAssemblyInstrFormats.td"
191
Dan Gohman4ba48162015-11-18 16:12:01 +0000192//===----------------------------------------------------------------------===//
193// Additional instructions.
194//===----------------------------------------------------------------------===//
195
Thomas Lively0ff82ac2018-10-13 07:09:10 +0000196multiclass ARGUMENT<WebAssemblyRegClass reg, ValueType vt> {
Thomas Livelyf04bed82018-10-11 20:21:22 +0000197 let hasSideEffects = 1, isCodeGenOnly = 1,
198 Defs = []<Register>, Uses = [ARGUMENTS] in
Thomas Lively0ff82ac2018-10-13 07:09:10 +0000199 defm ARGUMENT_#vt :
200 I<(outs reg:$res), (ins i32imm:$argno), (outs), (ins i32imm:$argno),
201 [(set (vt reg:$res), (WebAssemblyargument timm:$argno))]>;
JF Bastien8f9aea02015-08-01 04:48:44 +0000202}
Thomas Lively0ff82ac2018-10-13 07:09:10 +0000203defm "": ARGUMENT<I32, i32>;
204defm "": ARGUMENT<I64, i64>;
205defm "": ARGUMENT<F32, f32>;
206defm "": ARGUMENT<F64, f64>;
207defm "": ARGUMENT<EXCEPT_REF, ExceptRef>;
JF Bastien600aee92015-07-31 17:53:38 +0000208
Thomas Lively6a87dda2019-01-08 06:25:55 +0000209// local.get and local.set are not generated by instruction selection; they
Dan Gohmanadf28172016-01-28 01:22:44 +0000210// are implied by virtual register uses and defs.
Dan Gohman4ba48162015-11-18 16:12:01 +0000211multiclass LOCAL<WebAssemblyRegClass vt> {
Dan Gohman4817a752016-05-16 19:16:32 +0000212let hasSideEffects = 0 in {
Thomas Lively6a87dda2019-01-08 06:25:55 +0000213 // COPY is not an actual instruction in wasm, but since we allow local.get and
214 // local.set to be implicit during most of codegen, we can have a COPY which
215 // is actually a no-op because all the work is done in the implied local.get
216 // and local.set. COPYs are eliminated (and replaced with
217 // local.get/local.set) in the ExplicitLocals pass.
Dan Gohman4fc4e422016-10-24 19:49:43 +0000218 let isAsCheapAsAMove = 1, isCodeGenOnly = 1 in
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000219 defm COPY_#vt : I<(outs vt:$res), (ins vt:$src), (outs), (ins), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000220 "local.copy\t$res, $src", "local.copy">;
Dan Gohmanadf28172016-01-28 01:22:44 +0000221
Dan Gohman4fc4e422016-10-24 19:49:43 +0000222 // TEE is similar to COPY, but writes two copies of its result. Typically
223 // this would be used to stackify one result and write the other result to a
224 // local.
225 let isAsCheapAsAMove = 1, isCodeGenOnly = 1 in
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000226 defm TEE_#vt : I<(outs vt:$res, vt:$also), (ins vt:$src), (outs), (ins), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000227 "local.tee\t$res, $also, $src", "local.tee">;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000228
Thomas Lively6a87dda2019-01-08 06:25:55 +0000229 // This is the actual local.get instruction in wasm. These are made explicit
Dan Gohman4fc4e422016-10-24 19:49:43 +0000230 // by the ExplicitLocals pass. It has mayLoad because it reads from a wasm
231 // local, which is a side effect not otherwise modeled in LLVM.
232 let mayLoad = 1, isAsCheapAsAMove = 1 in
Thomas Lively6a87dda2019-01-08 06:25:55 +0000233 defm LOCAL_GET_#vt : I<(outs vt:$res), (ins local_op:$local),
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000234 (outs), (ins local_op:$local), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000235 "local.get\t$res, $local", "local.get\t$local", 0x20>;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000236
Thomas Lively6a87dda2019-01-08 06:25:55 +0000237 // This is the actual local.set instruction in wasm. These are made explicit
Dan Gohman4fc4e422016-10-24 19:49:43 +0000238 // by the ExplicitLocals pass. It has mayStore because it writes to a wasm
239 // local, which is a side effect not otherwise modeled in LLVM.
240 let mayStore = 1, isAsCheapAsAMove = 1 in
Thomas Lively6a87dda2019-01-08 06:25:55 +0000241 defm LOCAL_SET_#vt : I<(outs), (ins local_op:$local, vt:$src),
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000242 (outs), (ins local_op:$local), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000243 "local.set\t$local, $src", "local.set\t$local", 0x21>;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000244
Thomas Lively6a87dda2019-01-08 06:25:55 +0000245 // This is the actual local.tee instruction in wasm. TEEs are turned into
246 // LOCAL_TEEs by the ExplicitLocals pass. It has mayStore for the same reason
247 // as LOCAL_SET.
Dan Gohman4fc4e422016-10-24 19:49:43 +0000248 let mayStore = 1, isAsCheapAsAMove = 1 in
Thomas Lively6a87dda2019-01-08 06:25:55 +0000249 defm LOCAL_TEE_#vt : I<(outs vt:$res), (ins local_op:$local, vt:$src),
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000250 (outs), (ins local_op:$local), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000251 "local.tee\t$res, $local, $src", "local.tee\t$local",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000252 0x22>;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000253
Dan Gohmanb89f2d32017-02-02 19:29:44 +0000254 // Unused values must be dropped in some contexts.
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000255 defm DROP_#vt : I<(outs), (ins vt:$src), (outs), (ins), [],
256 "drop\t$src", "drop", 0x1a>;
Dan Gohmanb89f2d32017-02-02 19:29:44 +0000257
258 let mayLoad = 1 in
Thomas Lively6a87dda2019-01-08 06:25:55 +0000259 defm GLOBAL_GET_#vt : I<(outs vt:$res), (ins global_op:$local),
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000260 (outs), (ins global_op:$local), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000261 "global.get\t$res, $local", "global.get\t$local",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000262 0x23>;
Dan Gohmanb89f2d32017-02-02 19:29:44 +0000263
264 let mayStore = 1 in
Thomas Lively6a87dda2019-01-08 06:25:55 +0000265 defm GLOBAL_SET_#vt : I<(outs), (ins global_op:$local, vt:$src),
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000266 (outs), (ins global_op:$local), [],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000267 "global.set\t$local, $src", "global.set\t$local",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000268 0x24>;
Dan Gohmanb89f2d32017-02-02 19:29:44 +0000269
Dan Gohman4817a752016-05-16 19:16:32 +0000270} // hasSideEffects = 0
Dan Gohman4ba48162015-11-18 16:12:01 +0000271}
Sam Clegg537afe62018-06-04 16:59:26 +0000272defm "" : LOCAL<I32>;
273defm "" : LOCAL<I64>;
274defm "" : LOCAL<F32>;
275defm "" : LOCAL<F64>;
276defm "" : LOCAL<V128>, Requires<[HasSIMD128]>;
277defm "" : LOCAL<EXCEPT_REF>, Requires<[HasExceptionHandling]>;
JF Bastien4a642252015-08-10 22:36:48 +0000278
Dan Gohmanb6fd39a2016-01-19 16:59:23 +0000279let isMoveImm = 1, isAsCheapAsAMove = 1, isReMaterializable = 1 in {
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000280defm CONST_I32 : I<(outs I32:$res), (ins i32imm_op:$imm),
281 (outs), (ins i32imm_op:$imm),
282 [(set I32:$res, imm:$imm)],
283 "i32.const\t$res, $imm", "i32.const\t$imm", 0x41>;
284defm CONST_I64 : I<(outs I64:$res), (ins i64imm_op:$imm),
285 (outs), (ins i64imm_op:$imm),
286 [(set I64:$res, imm:$imm)],
287 "i64.const\t$res, $imm", "i64.const\t$imm", 0x42>;
288defm CONST_F32 : I<(outs F32:$res), (ins f32imm_op:$imm),
289 (outs), (ins f32imm_op:$imm),
290 [(set F32:$res, fpimm:$imm)],
291 "f32.const\t$res, $imm", "f32.const\t$imm", 0x43>;
292defm CONST_F64 : I<(outs F64:$res), (ins f64imm_op:$imm),
293 (outs), (ins f64imm_op:$imm),
294 [(set F64:$res, fpimm:$imm)],
295 "f64.const\t$res, $imm", "f64.const\t$imm", 0x44>;
Dan Gohmanb6fd39a2016-01-19 16:59:23 +0000296} // isMoveImm = 1, isAsCheapAsAMove = 1, isReMaterializable = 1
JF Bastien4a642252015-08-10 22:36:48 +0000297
Dan Gohman8633eed2016-01-08 00:50:33 +0000298def : Pat<(i32 (WebAssemblywrapper tglobaladdr:$addr)),
299 (CONST_I32 tglobaladdr:$addr)>;
300def : Pat<(i32 (WebAssemblywrapper texternalsym:$addr)),
301 (CONST_I32 texternalsym:$addr)>;
Heejin Ahn24faf852018-10-25 23:55:10 +0000302def : Pat<(i32 (WebAssemblywrapper mcsym:$sym)), (CONST_I32 mcsym:$sym)>;
303def : Pat<(i64 (WebAssemblywrapper mcsym:$sym)), (CONST_I64 mcsym:$sym)>;
Derek Schuff71e81692015-11-17 00:20:44 +0000304
Dan Gohman10e730a2015-06-29 23:51:55 +0000305//===----------------------------------------------------------------------===//
306// Additional sets of instructions.
307//===----------------------------------------------------------------------===//
308
JF Bastien5ca0bac2015-07-10 18:23:10 +0000309include "WebAssemblyInstrMemory.td"
310include "WebAssemblyInstrCall.td"
JF Bastien600aee92015-07-31 17:53:38 +0000311include "WebAssemblyInstrControl.td"
JF Bastien5ca0bac2015-07-10 18:23:10 +0000312include "WebAssemblyInstrInteger.td"
JF Bastien5ca0bac2015-07-10 18:23:10 +0000313include "WebAssemblyInstrConv.td"
Dan Gohmanf170ba02015-12-10 04:55:31 +0000314include "WebAssemblyInstrFloat.td"
Dan Gohman10e730a2015-06-29 23:51:55 +0000315include "WebAssemblyInstrAtomics.td"
316include "WebAssemblyInstrSIMD.td"
Heejin Ahn0de58722018-03-08 04:05:37 +0000317include "WebAssemblyInstrExceptRef.td"
Thomas Livelyd99af232019-02-05 00:49:55 +0000318include "WebAssemblyInstrBulkMemory.td"