OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_WASM_MACRO_GEN_H_ | 5 #ifndef V8_WASM_MACRO_GEN_H_ |
6 #define V8_WASM_MACRO_GEN_H_ | 6 #define V8_WASM_MACRO_GEN_H_ |
7 | 7 |
8 #include "src/wasm/wasm-opcodes.h" | 8 #include "src/wasm/wasm-opcodes.h" |
9 | 9 |
10 #include "src/zone-containers.h" | 10 #include "src/zone-containers.h" |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 #define WASM_F64_REINTERPRET_I64(x) x, kExprF64ReinterpretI64 | 578 #define WASM_F64_REINTERPRET_I64(x) x, kExprF64ReinterpretI64 |
579 #define WASM_I32_REINTERPRET_F32(x) x, kExprI32ReinterpretF32 | 579 #define WASM_I32_REINTERPRET_F32(x) x, kExprI32ReinterpretF32 |
580 #define WASM_I64_REINTERPRET_F64(x) x, kExprI64ReinterpretF64 | 580 #define WASM_I64_REINTERPRET_F64(x) x, kExprI64ReinterpretF64 |
581 | 581 |
582 //------------------------------------------------------------------------------ | 582 //------------------------------------------------------------------------------ |
583 // Simd Operations. | 583 // Simd Operations. |
584 //------------------------------------------------------------------------------ | 584 //------------------------------------------------------------------------------ |
585 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff | 585 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff |
586 #define WASM_SIMD_I32x4_EXTRACT_LANE(x, y) \ | 586 #define WASM_SIMD_I32x4_EXTRACT_LANE(x, y) \ |
587 x, y, kSimdPrefix, kExprI32x4ExtractLane & 0xff | 587 x, y, kSimdPrefix, kExprI32x4ExtractLane & 0xff |
| 588 #define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff |
| 589 #define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff |
| 590 #define WASM_SIMD_F32x4_EXTRACT_LANE(x, y) \ |
| 591 x, y, kSimdPrefix, kExprF32x4ExtractLane & 0xff |
| 592 #define WASM_SIMD_F32x4_ADD(x, y) x, y, kSimdPrefix, kExprF32x4Add & 0xff |
588 | 593 |
589 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 | 594 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 |
590 #define SIZEOF_SIG_ENTRY_v_v 3 | 595 #define SIZEOF_SIG_ENTRY_v_v 3 |
591 | 596 |
592 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 | 597 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 |
593 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 | 598 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 |
594 #define SIG_ENTRY_v_xxx(a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 0 | 599 #define SIG_ENTRY_v_xxx(a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 0 |
595 #define SIZEOF_SIG_ENTRY_v_x 4 | 600 #define SIZEOF_SIG_ENTRY_v_x 4 |
596 #define SIZEOF_SIG_ENTRY_v_xx 5 | 601 #define SIZEOF_SIG_ENTRY_v_xx 5 |
597 #define SIZEOF_SIG_ENTRY_v_xxx 6 | 602 #define SIZEOF_SIG_ENTRY_v_xxx 6 |
598 | 603 |
599 #define SIG_ENTRY_x(r) kWasmFunctionTypeForm, 0, 1, r | 604 #define SIG_ENTRY_x(r) kWasmFunctionTypeForm, 0, 1, r |
600 #define SIG_ENTRY_x_x(r, a) kWasmFunctionTypeForm, 1, a, 1, r | 605 #define SIG_ENTRY_x_x(r, a) kWasmFunctionTypeForm, 1, a, 1, r |
601 #define SIG_ENTRY_x_xx(r, a, b) kWasmFunctionTypeForm, 2, a, b, 1, r | 606 #define SIG_ENTRY_x_xx(r, a, b) kWasmFunctionTypeForm, 2, a, b, 1, r |
602 #define SIG_ENTRY_x_xxx(r, a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 1, r | 607 #define SIG_ENTRY_x_xxx(r, a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 1, r |
603 #define SIZEOF_SIG_ENTRY_x 4 | 608 #define SIZEOF_SIG_ENTRY_x 4 |
604 #define SIZEOF_SIG_ENTRY_x_x 5 | 609 #define SIZEOF_SIG_ENTRY_x_x 5 |
605 #define SIZEOF_SIG_ENTRY_x_xx 6 | 610 #define SIZEOF_SIG_ENTRY_x_xx 6 |
606 #define SIZEOF_SIG_ENTRY_x_xxx 7 | 611 #define SIZEOF_SIG_ENTRY_x_xxx 7 |
607 | 612 |
608 #endif // V8_WASM_MACRO_GEN_H_ | 613 #endif // V8_WASM_MACRO_GEN_H_ |
OLD | NEW |