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/zone-containers.h" | 10 #include "src/zone/zone-containers.h" |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 //------------------------------------------------------------------------------ | 617 //------------------------------------------------------------------------------ |
618 #define WASM_GROW_MEMORY(x) x, kExprGrowMemory, 0 | 618 #define WASM_GROW_MEMORY(x) x, kExprGrowMemory, 0 |
619 #define WASM_MEMORY_SIZE kExprMemorySize, 0 | 619 #define WASM_MEMORY_SIZE kExprMemorySize, 0 |
620 | 620 |
621 //------------------------------------------------------------------------------ | 621 //------------------------------------------------------------------------------ |
622 // Simd Operations. | 622 // Simd Operations. |
623 //------------------------------------------------------------------------------ | 623 //------------------------------------------------------------------------------ |
624 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff | 624 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff |
625 #define WASM_SIMD_I32x4_EXTRACT_LANE(lane, x) \ | 625 #define WASM_SIMD_I32x4_EXTRACT_LANE(lane, x) \ |
626 x, kSimdPrefix, kExprI32x4ExtractLane & 0xff, static_cast<byte>(lane) | 626 x, kSimdPrefix, kExprI32x4ExtractLane & 0xff, static_cast<byte>(lane) |
| 627 #define WASM_SIMD_I32x4_REPLACE_LANE(lane, x, y) \ |
| 628 x, y, kSimdPrefix, kExprI32x4ReplaceLane & 0xff, static_cast<byte>(lane) |
627 #define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff | 629 #define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff |
| 630 #define WASM_SIMD_I32x4_SUB(x, y) x, y, kSimdPrefix, kExprI32x4Sub & 0xff |
628 #define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff | 631 #define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff |
629 #define WASM_SIMD_F32x4_EXTRACT_LANE(lane, x) \ | 632 #define WASM_SIMD_F32x4_EXTRACT_LANE(lane, x) \ |
630 x, kSimdPrefix, kExprF32x4ExtractLane & 0xff, static_cast<byte>(lane) | 633 x, kSimdPrefix, kExprF32x4ExtractLane & 0xff, static_cast<byte>(lane) |
631 #define WASM_SIMD_F32x4_ADD(x, y) x, y, kSimdPrefix, kExprF32x4Add & 0xff | 634 #define WASM_SIMD_F32x4_ADD(x, y) x, y, kSimdPrefix, kExprF32x4Add & 0xff |
632 | 635 |
633 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 | 636 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 |
634 #define SIZEOF_SIG_ENTRY_v_v 3 | 637 #define SIZEOF_SIG_ENTRY_v_v 3 |
635 | 638 |
636 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 | 639 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 |
637 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 | 640 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 |
(...skipping 14 matching lines...) Expand all Loading... |
652 #define WASM_BRV(depth, val) val, kExprBr, static_cast<byte>(depth) | 655 #define WASM_BRV(depth, val) val, kExprBr, static_cast<byte>(depth) |
653 #define WASM_BRV_IF(depth, val, cond) \ | 656 #define WASM_BRV_IF(depth, val, cond) \ |
654 val, cond, kExprBrIf, static_cast<byte>(depth) | 657 val, cond, kExprBrIf, static_cast<byte>(depth) |
655 #define WASM_BRV_IFD(depth, val, cond) \ | 658 #define WASM_BRV_IFD(depth, val, cond) \ |
656 val, cond, kExprBrIf, static_cast<byte>(depth), kExprDrop | 659 val, cond, kExprBrIf, static_cast<byte>(depth), kExprDrop |
657 #define WASM_IFB(cond, ...) cond, kExprIf, kLocalVoid, __VA_ARGS__, kExprEnd | 660 #define WASM_IFB(cond, ...) cond, kExprIf, kLocalVoid, __VA_ARGS__, kExprEnd |
658 #define WASM_BR_TABLEV(val, key, count, ...) \ | 661 #define WASM_BR_TABLEV(val, key, count, ...) \ |
659 val, key, kExprBrTable, U32V_1(count), __VA_ARGS__ | 662 val, key, kExprBrTable, U32V_1(count), __VA_ARGS__ |
660 | 663 |
661 #endif // V8_WASM_MACRO_GEN_H_ | 664 #endif // V8_WASM_MACRO_GEN_H_ |
OLD | NEW |