LLVM 23.0.0git
WebAssemblyMCTargetDesc.h
Go to the documentation of this file.
1//==- WebAssemblyMCTargetDesc.h - WebAssembly Target Descriptions -*- C++ -*-=//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file provides WebAssembly-specific target descriptions.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
15#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
16
18#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCInstrDesc.h"
22#include <memory>
23
24namespace llvm {
25
26class MCAsmBackend;
27class MCCodeEmitter;
28class MCInstrInfo;
30class Triple;
31
33 MCContext &Ctx);
34
36
37std::unique_ptr<MCObjectTargetWriter>
38createWebAssemblyWasmObjectWriter(bool Is64Bit, bool IsEmscripten);
39
40namespace WebAssembly {
41
43 /// Basic block label in a branch construct.
45 /// Local index.
47 /// Global index.
49 /// 32-bit integer immediates.
51 /// 64-bit integer immediates.
53 /// 32-bit floating-point immediates.
55 /// 64-bit floating-point immediates.
57 /// 8-bit vector lane immediate
59 /// 16-bit vector lane immediate
61 /// 32-bit vector lane immediate
63 /// 64-bit vector lane immediate
65 /// 32-bit unsigned function indices.
67 /// 32-bit unsigned memory offsets.
69 /// 64-bit unsigned memory offsets.
71 /// p2align immediate for load and store address alignment.
73 /// signature immediate for block/loop.
75 /// type signature immediate for call_indirect.
77 /// Tag index.
79 /// A list of branch targets for br_list.
81 /// 32-bit unsigned table number.
83 /// A list of catch clauses for try_table.
85 /// Memory ordering immediate for atomic instructions.
87 /// A vector of value types for select t*.
89};
90} // end namespace WebAssembly
91
92namespace WebAssemblyII {
93
94/// Target Operand Flag enum.
95enum TOF {
97
98 // On a symbol operand this indicates that the immediate is a wasm global
99 // index. The value of the wasm global will be set to the symbol address at
100 // runtime. This adds a level of indirection similar to the GOT on native
101 // platforms.
103
104 // Same as MO_GOT but the address stored in the global is a TLS address.
106
107 // On a symbol operand this indicates that the immediate is the symbol
108 // address relative the __memory_base wasm global.
109 // Only applicable to data symbols.
111
112 // On a symbol operand this indicates that the immediate is the symbol
113 // address relative the __tls_base wasm global.
114 // Only applicable to data symbols.
116
117 // On a symbol operand this indicates that the immediate is the symbol
118 // address relative the __table_base wasm global.
119 // Only applicable to function symbols.
121
122 // On a block signature operand this indicates that this is a destination
123 // block of a (catch_ref) clause in try_table.
125};
126
127} // end namespace WebAssemblyII
128
129} // end namespace llvm
130
131// Defines symbolic names for WebAssembly registers. This defines a mapping from
132// register name to register number.
133//
134#define GET_REGINFO_ENUM
135#include "WebAssemblyGenRegisterInfo.inc"
136
137// Defines symbolic names for the WebAssembly instructions.
138//
139#define GET_INSTRINFO_ENUM
140#define GET_INSTRINFO_MC_HELPER_DECLS
141#include "WebAssemblyGenInstrInfo.inc"
142
143namespace llvm {
144namespace WebAssembly {
145
146/// Instruction opcodes emitted via means other than CodeGen.
147static const unsigned Nop = 0x01;
148static const unsigned End = 0x0b;
149
150/// Return the default p2align value for a load or store with the given opcode.
151inline unsigned GetDefaultP2AlignAny(unsigned Opc) {
152 switch (Opc) {
153#define WASM_LOAD_STORE(NAME) \
154 case WebAssembly::NAME##_A32: \
155 case WebAssembly::NAME##_A64: \
156 case WebAssembly::NAME##_A32_S: \
157 case WebAssembly::NAME##_A64_S:
158 WASM_LOAD_STORE(LOAD8_S_I32)
159 WASM_LOAD_STORE(LOAD8_U_I32)
160 WASM_LOAD_STORE(LOAD8_S_I64)
161 WASM_LOAD_STORE(LOAD8_U_I64)
162 WASM_LOAD_STORE(ATOMIC_LOAD8_U_I32)
163 WASM_LOAD_STORE(ATOMIC_LOAD8_U_I64)
164 WASM_LOAD_STORE(STORE8_I32)
165 WASM_LOAD_STORE(STORE8_I64)
166 WASM_LOAD_STORE(ATOMIC_STORE8_I32)
167 WASM_LOAD_STORE(ATOMIC_STORE8_I64)
168 WASM_LOAD_STORE(ATOMIC_RMW8_U_ADD_I32)
169 WASM_LOAD_STORE(ATOMIC_RMW8_U_ADD_I64)
170 WASM_LOAD_STORE(ATOMIC_RMW8_U_SUB_I32)
171 WASM_LOAD_STORE(ATOMIC_RMW8_U_SUB_I64)
172 WASM_LOAD_STORE(ATOMIC_RMW8_U_AND_I32)
173 WASM_LOAD_STORE(ATOMIC_RMW8_U_AND_I64)
174 WASM_LOAD_STORE(ATOMIC_RMW8_U_OR_I32)
175 WASM_LOAD_STORE(ATOMIC_RMW8_U_OR_I64)
176 WASM_LOAD_STORE(ATOMIC_RMW8_U_XOR_I32)
177 WASM_LOAD_STORE(ATOMIC_RMW8_U_XOR_I64)
178 WASM_LOAD_STORE(ATOMIC_RMW8_U_XCHG_I32)
179 WASM_LOAD_STORE(ATOMIC_RMW8_U_XCHG_I64)
180 WASM_LOAD_STORE(ATOMIC_RMW8_U_CMPXCHG_I32)
181 WASM_LOAD_STORE(ATOMIC_RMW8_U_CMPXCHG_I64)
182 WASM_LOAD_STORE(LOAD8_SPLAT)
183 WASM_LOAD_STORE(LOAD_LANE_8)
184 WASM_LOAD_STORE(STORE_LANE_I8x16)
185 return 0;
186 WASM_LOAD_STORE(LOAD16_S_I32)
187 WASM_LOAD_STORE(LOAD16_U_I32)
188 WASM_LOAD_STORE(LOAD16_S_I64)
189 WASM_LOAD_STORE(LOAD16_U_I64)
190 WASM_LOAD_STORE(ATOMIC_LOAD16_U_I32)
191 WASM_LOAD_STORE(ATOMIC_LOAD16_U_I64)
192 WASM_LOAD_STORE(STORE16_I32)
193 WASM_LOAD_STORE(STORE16_I64)
194 WASM_LOAD_STORE(ATOMIC_STORE16_I32)
195 WASM_LOAD_STORE(ATOMIC_STORE16_I64)
196 WASM_LOAD_STORE(ATOMIC_RMW16_U_ADD_I32)
197 WASM_LOAD_STORE(ATOMIC_RMW16_U_ADD_I64)
198 WASM_LOAD_STORE(ATOMIC_RMW16_U_SUB_I32)
199 WASM_LOAD_STORE(ATOMIC_RMW16_U_SUB_I64)
200 WASM_LOAD_STORE(ATOMIC_RMW16_U_AND_I32)
201 WASM_LOAD_STORE(ATOMIC_RMW16_U_AND_I64)
202 WASM_LOAD_STORE(ATOMIC_RMW16_U_OR_I32)
203 WASM_LOAD_STORE(ATOMIC_RMW16_U_OR_I64)
204 WASM_LOAD_STORE(ATOMIC_RMW16_U_XOR_I32)
205 WASM_LOAD_STORE(ATOMIC_RMW16_U_XOR_I64)
206 WASM_LOAD_STORE(ATOMIC_RMW16_U_XCHG_I32)
207 WASM_LOAD_STORE(ATOMIC_RMW16_U_XCHG_I64)
208 WASM_LOAD_STORE(ATOMIC_RMW16_U_CMPXCHG_I32)
209 WASM_LOAD_STORE(ATOMIC_RMW16_U_CMPXCHG_I64)
210 WASM_LOAD_STORE(LOAD16_SPLAT)
211 WASM_LOAD_STORE(LOAD_LANE_16)
212 WASM_LOAD_STORE(STORE_LANE_I16x8)
213 WASM_LOAD_STORE(LOAD_F16_F32)
214 WASM_LOAD_STORE(STORE_F16_F32)
215 return 1;
216 WASM_LOAD_STORE(LOAD_I32)
217 WASM_LOAD_STORE(LOAD_F32)
218 WASM_LOAD_STORE(STORE_I32)
219 WASM_LOAD_STORE(STORE_F32)
220 WASM_LOAD_STORE(LOAD32_S_I64)
221 WASM_LOAD_STORE(LOAD32_U_I64)
222 WASM_LOAD_STORE(STORE32_I64)
223 WASM_LOAD_STORE(ATOMIC_LOAD_I32)
224 WASM_LOAD_STORE(ATOMIC_LOAD32_U_I64)
225 WASM_LOAD_STORE(ATOMIC_STORE_I32)
226 WASM_LOAD_STORE(ATOMIC_STORE32_I64)
227 WASM_LOAD_STORE(ATOMIC_RMW_ADD_I32)
228 WASM_LOAD_STORE(ATOMIC_RMW32_U_ADD_I64)
229 WASM_LOAD_STORE(ATOMIC_RMW_SUB_I32)
230 WASM_LOAD_STORE(ATOMIC_RMW32_U_SUB_I64)
231 WASM_LOAD_STORE(ATOMIC_RMW_AND_I32)
232 WASM_LOAD_STORE(ATOMIC_RMW32_U_AND_I64)
233 WASM_LOAD_STORE(ATOMIC_RMW_OR_I32)
234 WASM_LOAD_STORE(ATOMIC_RMW32_U_OR_I64)
235 WASM_LOAD_STORE(ATOMIC_RMW_XOR_I32)
236 WASM_LOAD_STORE(ATOMIC_RMW32_U_XOR_I64)
237 WASM_LOAD_STORE(ATOMIC_RMW_XCHG_I32)
238 WASM_LOAD_STORE(ATOMIC_RMW32_U_XCHG_I64)
239 WASM_LOAD_STORE(ATOMIC_RMW_CMPXCHG_I32)
240 WASM_LOAD_STORE(ATOMIC_RMW32_U_CMPXCHG_I64)
241 WASM_LOAD_STORE(MEMORY_ATOMIC_NOTIFY)
242 WASM_LOAD_STORE(MEMORY_ATOMIC_WAIT32)
243 WASM_LOAD_STORE(LOAD32_SPLAT)
244 WASM_LOAD_STORE(LOAD_ZERO_32)
245 WASM_LOAD_STORE(LOAD_LANE_32)
246 WASM_LOAD_STORE(STORE_LANE_I32x4)
247 return 2;
248 WASM_LOAD_STORE(LOAD_I64)
249 WASM_LOAD_STORE(LOAD_F64)
250 WASM_LOAD_STORE(STORE_I64)
251 WASM_LOAD_STORE(STORE_F64)
252 WASM_LOAD_STORE(ATOMIC_LOAD_I64)
253 WASM_LOAD_STORE(ATOMIC_STORE_I64)
254 WASM_LOAD_STORE(ATOMIC_RMW_ADD_I64)
255 WASM_LOAD_STORE(ATOMIC_RMW_SUB_I64)
256 WASM_LOAD_STORE(ATOMIC_RMW_AND_I64)
257 WASM_LOAD_STORE(ATOMIC_RMW_OR_I64)
258 WASM_LOAD_STORE(ATOMIC_RMW_XOR_I64)
259 WASM_LOAD_STORE(ATOMIC_RMW_XCHG_I64)
260 WASM_LOAD_STORE(ATOMIC_RMW_CMPXCHG_I64)
261 WASM_LOAD_STORE(MEMORY_ATOMIC_WAIT64)
262 WASM_LOAD_STORE(LOAD64_SPLAT)
263 WASM_LOAD_STORE(LOAD_EXTEND_S_I16x8)
264 WASM_LOAD_STORE(LOAD_EXTEND_U_I16x8)
265 WASM_LOAD_STORE(LOAD_EXTEND_S_I32x4)
266 WASM_LOAD_STORE(LOAD_EXTEND_U_I32x4)
267 WASM_LOAD_STORE(LOAD_EXTEND_S_I64x2)
268 WASM_LOAD_STORE(LOAD_EXTEND_U_I64x2)
269 WASM_LOAD_STORE(LOAD_ZERO_64)
270 WASM_LOAD_STORE(LOAD_LANE_64)
271 WASM_LOAD_STORE(STORE_LANE_I64x2)
272 return 3;
273 WASM_LOAD_STORE(LOAD_V128)
274 WASM_LOAD_STORE(STORE_V128)
275 return 4;
276 default:
277 return -1;
278 }
279#undef WASM_LOAD_STORE
280}
281
282inline unsigned GetDefaultP2Align(unsigned Opc) {
284 if (Align == -1U) {
285 llvm_unreachable("Only loads and stores have p2align values");
286 }
287 return Align;
288}
289
290inline bool isConst(unsigned Opc) {
291 switch (Opc) {
292 case WebAssembly::CONST_I32:
293 case WebAssembly::CONST_I32_S:
294 case WebAssembly::CONST_I64:
295 case WebAssembly::CONST_I64_S:
296 case WebAssembly::CONST_F32:
297 case WebAssembly::CONST_F32_S:
298 case WebAssembly::CONST_F64:
299 case WebAssembly::CONST_F64_S:
300 case WebAssembly::CONST_V128_I8x16:
301 case WebAssembly::CONST_V128_I8x16_S:
302 case WebAssembly::CONST_V128_I16x8:
303 case WebAssembly::CONST_V128_I16x8_S:
304 case WebAssembly::CONST_V128_I32x4:
305 case WebAssembly::CONST_V128_I32x4_S:
306 case WebAssembly::CONST_V128_I64x2:
307 case WebAssembly::CONST_V128_I64x2_S:
308 case WebAssembly::CONST_V128_F32x4:
309 case WebAssembly::CONST_V128_F32x4_S:
310 case WebAssembly::CONST_V128_F64x2:
311 case WebAssembly::CONST_V128_F64x2_S:
312 return true;
313 default:
314 return false;
315 }
316}
317
318inline bool isScalarConst(unsigned Opc) {
319 switch (Opc) {
320 case WebAssembly::CONST_I32:
321 case WebAssembly::CONST_I32_S:
322 case WebAssembly::CONST_I64:
323 case WebAssembly::CONST_I64_S:
324 case WebAssembly::CONST_F32:
325 case WebAssembly::CONST_F32_S:
326 case WebAssembly::CONST_F64:
327 case WebAssembly::CONST_F64_S:
328 return true;
329 default:
330 return false;
331 }
332}
333
334inline bool isArgument(unsigned Opc) {
335 switch (Opc) {
336 case WebAssembly::ARGUMENT_i32:
337 case WebAssembly::ARGUMENT_i32_S:
338 case WebAssembly::ARGUMENT_i64:
339 case WebAssembly::ARGUMENT_i64_S:
340 case WebAssembly::ARGUMENT_f32:
341 case WebAssembly::ARGUMENT_f32_S:
342 case WebAssembly::ARGUMENT_f64:
343 case WebAssembly::ARGUMENT_f64_S:
344 case WebAssembly::ARGUMENT_v16i8:
345 case WebAssembly::ARGUMENT_v16i8_S:
346 case WebAssembly::ARGUMENT_v8i16:
347 case WebAssembly::ARGUMENT_v8i16_S:
348 case WebAssembly::ARGUMENT_v4i32:
349 case WebAssembly::ARGUMENT_v4i32_S:
350 case WebAssembly::ARGUMENT_v2i64:
351 case WebAssembly::ARGUMENT_v2i64_S:
352 case WebAssembly::ARGUMENT_v8f16:
353 case WebAssembly::ARGUMENT_v8f16_S:
354 case WebAssembly::ARGUMENT_v4f32:
355 case WebAssembly::ARGUMENT_v4f32_S:
356 case WebAssembly::ARGUMENT_v2f64:
357 case WebAssembly::ARGUMENT_v2f64_S:
358 case WebAssembly::ARGUMENT_funcref:
359 case WebAssembly::ARGUMENT_funcref_S:
360 case WebAssembly::ARGUMENT_externref:
361 case WebAssembly::ARGUMENT_externref_S:
362 case WebAssembly::ARGUMENT_exnref:
363 case WebAssembly::ARGUMENT_exnref_S:
364 return true;
365 default:
366 return false;
367 }
368}
369
370inline bool isCopy(unsigned Opc) {
371 switch (Opc) {
372 case WebAssembly::COPY_I32:
373 case WebAssembly::COPY_I32_S:
374 case WebAssembly::COPY_I64:
375 case WebAssembly::COPY_I64_S:
376 case WebAssembly::COPY_F32:
377 case WebAssembly::COPY_F32_S:
378 case WebAssembly::COPY_F64:
379 case WebAssembly::COPY_F64_S:
380 case WebAssembly::COPY_V128:
381 case WebAssembly::COPY_V128_S:
382 case WebAssembly::COPY_FUNCREF:
383 case WebAssembly::COPY_FUNCREF_S:
384 case WebAssembly::COPY_EXTERNREF:
385 case WebAssembly::COPY_EXTERNREF_S:
386 case WebAssembly::COPY_EXNREF:
387 case WebAssembly::COPY_EXNREF_S:
388 return true;
389 default:
390 return false;
391 }
392}
393
394inline bool isTee(unsigned Opc) {
395 switch (Opc) {
396 case WebAssembly::TEE_I32:
397 case WebAssembly::TEE_I32_S:
398 case WebAssembly::TEE_I64:
399 case WebAssembly::TEE_I64_S:
400 case WebAssembly::TEE_F32:
401 case WebAssembly::TEE_F32_S:
402 case WebAssembly::TEE_F64:
403 case WebAssembly::TEE_F64_S:
404 case WebAssembly::TEE_V128:
405 case WebAssembly::TEE_V128_S:
406 case WebAssembly::TEE_FUNCREF:
407 case WebAssembly::TEE_FUNCREF_S:
408 case WebAssembly::TEE_EXTERNREF:
409 case WebAssembly::TEE_EXTERNREF_S:
410 case WebAssembly::TEE_EXNREF:
411 case WebAssembly::TEE_EXNREF_S:
412 return true;
413 default:
414 return false;
415 }
416}
417
418inline bool isCallDirect(unsigned Opc) {
419 switch (Opc) {
420 case WebAssembly::CALL:
421 case WebAssembly::CALL_S:
422 case WebAssembly::RET_CALL:
423 case WebAssembly::RET_CALL_S:
424 return true;
425 default:
426 return false;
427 }
428}
429
430inline bool isCallIndirect(unsigned Opc) {
431 switch (Opc) {
432 case WebAssembly::CALL_INDIRECT:
433 case WebAssembly::CALL_INDIRECT_S:
434 case WebAssembly::RET_CALL_INDIRECT:
435 case WebAssembly::RET_CALL_INDIRECT_S:
436 return true;
437 default:
438 return false;
439 }
440}
441
442inline bool isBrTable(unsigned Opc) {
443 switch (Opc) {
444 case WebAssembly::BR_TABLE_I32:
445 case WebAssembly::BR_TABLE_I32_S:
446 case WebAssembly::BR_TABLE_I64:
447 case WebAssembly::BR_TABLE_I64_S:
448 return true;
449 default:
450 return false;
451 }
452}
453
454inline bool isMarker(unsigned Opc) {
455 switch (Opc) {
456 case WebAssembly::BLOCK:
457 case WebAssembly::BLOCK_S:
458 case WebAssembly::END_BLOCK:
459 case WebAssembly::END_BLOCK_S:
460 case WebAssembly::LOOP:
461 case WebAssembly::LOOP_S:
462 case WebAssembly::END_LOOP:
463 case WebAssembly::END_LOOP_S:
464 case WebAssembly::TRY:
465 case WebAssembly::TRY_S:
466 case WebAssembly::END_TRY:
467 case WebAssembly::END_TRY_S:
468 case WebAssembly::TRY_TABLE:
469 case WebAssembly::TRY_TABLE_S:
470 case WebAssembly::END_TRY_TABLE:
471 case WebAssembly::END_TRY_TABLE_S:
472 return true;
473 default:
474 return false;
475 }
476}
477
478inline bool isEndMarker(unsigned Opc) {
479 switch (Opc) {
480 case WebAssembly::END_BLOCK:
481 case WebAssembly::END_BLOCK_S:
482 case WebAssembly::END_LOOP:
483 case WebAssembly::END_LOOP_S:
484 case WebAssembly::END_TRY:
485 case WebAssembly::END_TRY_S:
486 case WebAssembly::END_TRY_TABLE:
487 case WebAssembly::END_TRY_TABLE_S:
488 return true;
489 default:
490 return false;
491 }
492}
493
494inline bool isTry(unsigned Opc) {
495 switch (Opc) {
496 case WebAssembly::TRY:
497 case WebAssembly::TRY_S:
498 case WebAssembly::TRY_TABLE:
499 case WebAssembly::TRY_TABLE_S:
500 return true;
501 default:
502 return false;
503 }
504}
505
506inline bool isCatch(unsigned Opc) {
507 switch (Opc) {
508 case WebAssembly::CATCH_LEGACY:
509 case WebAssembly::CATCH_LEGACY_S:
510 case WebAssembly::CATCH_ALL_LEGACY:
511 case WebAssembly::CATCH_ALL_LEGACY_S:
512 case WebAssembly::CATCH:
513 case WebAssembly::CATCH_S:
514 case WebAssembly::CATCH_REF:
515 case WebAssembly::CATCH_REF_S:
516 case WebAssembly::CATCH_ALL:
517 case WebAssembly::CATCH_ALL_S:
518 case WebAssembly::CATCH_ALL_REF:
519 case WebAssembly::CATCH_ALL_REF_S:
520 return true;
521 default:
522 return false;
523 }
524}
525
526inline bool isCatchAll(unsigned Opc) {
527 switch (Opc) {
528 case WebAssembly::CATCH_ALL_LEGACY:
529 case WebAssembly::CATCH_ALL_LEGACY_S:
530 case WebAssembly::CATCH_ALL:
531 case WebAssembly::CATCH_ALL_S:
532 case WebAssembly::CATCH_ALL_REF:
533 case WebAssembly::CATCH_ALL_REF_S:
534 return true;
535 default:
536 return false;
537 }
538}
539
540inline bool isLocalGet(unsigned Opc) {
541 switch (Opc) {
542 case WebAssembly::LOCAL_GET_I32:
543 case WebAssembly::LOCAL_GET_I32_S:
544 case WebAssembly::LOCAL_GET_I64:
545 case WebAssembly::LOCAL_GET_I64_S:
546 case WebAssembly::LOCAL_GET_F32:
547 case WebAssembly::LOCAL_GET_F32_S:
548 case WebAssembly::LOCAL_GET_F64:
549 case WebAssembly::LOCAL_GET_F64_S:
550 case WebAssembly::LOCAL_GET_V128:
551 case WebAssembly::LOCAL_GET_V128_S:
552 case WebAssembly::LOCAL_GET_FUNCREF:
553 case WebAssembly::LOCAL_GET_FUNCREF_S:
554 case WebAssembly::LOCAL_GET_EXTERNREF:
555 case WebAssembly::LOCAL_GET_EXTERNREF_S:
556 case WebAssembly::LOCAL_GET_EXNREF:
557 case WebAssembly::LOCAL_GET_EXNREF_S:
558 return true;
559 default:
560 return false;
561 }
562}
563
564inline bool isLocalSet(unsigned Opc) {
565 switch (Opc) {
566 case WebAssembly::LOCAL_SET_I32:
567 case WebAssembly::LOCAL_SET_I32_S:
568 case WebAssembly::LOCAL_SET_I64:
569 case WebAssembly::LOCAL_SET_I64_S:
570 case WebAssembly::LOCAL_SET_F32:
571 case WebAssembly::LOCAL_SET_F32_S:
572 case WebAssembly::LOCAL_SET_F64:
573 case WebAssembly::LOCAL_SET_F64_S:
574 case WebAssembly::LOCAL_SET_V128:
575 case WebAssembly::LOCAL_SET_V128_S:
576 case WebAssembly::LOCAL_SET_FUNCREF:
577 case WebAssembly::LOCAL_SET_FUNCREF_S:
578 case WebAssembly::LOCAL_SET_EXTERNREF:
579 case WebAssembly::LOCAL_SET_EXTERNREF_S:
580 case WebAssembly::LOCAL_SET_EXNREF:
581 case WebAssembly::LOCAL_SET_EXNREF_S:
582 return true;
583 default:
584 return false;
585 }
586}
587
588inline bool isLocalTee(unsigned Opc) {
589 switch (Opc) {
590 case WebAssembly::LOCAL_TEE_I32:
591 case WebAssembly::LOCAL_TEE_I32_S:
592 case WebAssembly::LOCAL_TEE_I64:
593 case WebAssembly::LOCAL_TEE_I64_S:
594 case WebAssembly::LOCAL_TEE_F32:
595 case WebAssembly::LOCAL_TEE_F32_S:
596 case WebAssembly::LOCAL_TEE_F64:
597 case WebAssembly::LOCAL_TEE_F64_S:
598 case WebAssembly::LOCAL_TEE_V128:
599 case WebAssembly::LOCAL_TEE_V128_S:
600 case WebAssembly::LOCAL_TEE_FUNCREF:
601 case WebAssembly::LOCAL_TEE_FUNCREF_S:
602 case WebAssembly::LOCAL_TEE_EXTERNREF:
603 case WebAssembly::LOCAL_TEE_EXTERNREF_S:
604 case WebAssembly::LOCAL_TEE_EXNREF:
605 case WebAssembly::LOCAL_TEE_EXNREF_S:
606 return true;
607 default:
608 return false;
609 }
610}
611
612static const unsigned UnusedReg = -1u;
613
614// For a given stackified WAReg, return the id number to print with push/pop.
616 assert(Reg.id() & INT32_MIN);
617 return Reg.id() & INT32_MAX;
618}
619
620} // end namespace WebAssembly
621} // end namespace llvm
622
623#define GET_SUBTARGETINFO_ENUM
624#include "WebAssemblyGenSubtargetInfo.inc"
625
626#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Register Reg
#define WASM_LOAD_STORE(NAME)
Generic interface to target specific assembler backends.
MCCodeEmitter - Generic instruction encoding interface.
Context object for machine code objects.
Definition MCContext.h:83
Interface to description of machine instruction set.
Definition MCInstrInfo.h:27
Base class for classes that define behaviour that is specific to both the target and the object forma...
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ OPERAND_FIRST_TARGET
Definition MCInstrDesc.h:79
TOF
Target Operand Flag enum.
bool isLocalTee(unsigned Opc)
bool isArgument(unsigned Opc)
bool isCallIndirect(unsigned Opc)
unsigned GetDefaultP2Align(unsigned Opc)
bool isCatchAll(unsigned Opc)
bool isMarker(unsigned Opc)
bool isBrTable(unsigned Opc)
bool isEndMarker(unsigned Opc)
bool isCatch(unsigned Opc)
static const unsigned UnusedReg
static const unsigned Nop
Instruction opcodes emitted via means other than CodeGen.
bool isCopy(unsigned Opc)
static const unsigned End
bool isConst(unsigned Opc)
@ OPERAND_CATCH_LIST
A list of catch clauses for try_table.
@ OPERAND_VALTYPE_LIST
A vector of value types for select t*.
@ OPERAND_OFFSET64
64-bit unsigned memory offsets.
@ OPERAND_MEMORDER
Memory ordering immediate for atomic instructions.
@ OPERAND_I32IMM
32-bit integer immediates.
@ OPERAND_P2ALIGN
p2align immediate for load and store address alignment.
@ OPERAND_TABLE
32-bit unsigned table number.
@ OPERAND_VEC_I64IMM
64-bit vector lane immediate
@ OPERAND_VEC_I16IMM
16-bit vector lane immediate
@ OPERAND_TYPEINDEX
type signature immediate for call_indirect.
@ OPERAND_FUNCTION32
32-bit unsigned function indices.
@ OPERAND_F32IMM
32-bit floating-point immediates.
@ OPERAND_BASIC_BLOCK
Basic block label in a branch construct.
@ OPERAND_VEC_I32IMM
32-bit vector lane immediate
@ OPERAND_BRLIST
A list of branch targets for br_list.
@ OPERAND_F64IMM
64-bit floating-point immediates.
@ OPERAND_VEC_I8IMM
8-bit vector lane immediate
@ OPERAND_SIGNATURE
signature immediate for block/loop.
@ OPERAND_I64IMM
64-bit integer immediates.
@ OPERAND_OFFSET32
32-bit unsigned memory offsets.
unsigned GetDefaultP2AlignAny(unsigned Opc)
Return the default p2align value for a load or store with the given opcode.
unsigned getWARegStackId(MCRegister Reg)
bool isCallDirect(unsigned Opc)
bool isScalarConst(unsigned Opc)
bool isLocalSet(unsigned Opc)
bool isLocalGet(unsigned Opc)
This is an optimization pass for GlobalISel generic memory operations.
MCCodeEmitter * createWebAssemblyMCCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx)
MCAsmBackend * createWebAssemblyAsmBackend(const Triple &TT)
std::unique_ptr< MCObjectTargetWriter > createWebAssemblyWasmObjectWriter(bool Is64Bit, bool IsEmscripten)
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39