Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: src/wasm/wasm-macro-gen.h

Issue 2644323002: [wasm] Use the official opcode names everywhere. (Closed)
Patch Set: [wasm] Use the official opcode names everywhere. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/wasm/function-body-decoder.cc ('k') | src/wasm/wasm-opcodes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 623
624 //------------------------------------------------------------------------------ 624 //------------------------------------------------------------------------------
625 // Simd Operations. 625 // Simd Operations.
626 //------------------------------------------------------------------------------ 626 //------------------------------------------------------------------------------
627 #define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff 627 #define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff
628 #define WASM_SIMD_F32x4_EXTRACT_LANE(lane, x) \ 628 #define WASM_SIMD_F32x4_EXTRACT_LANE(lane, x) \
629 x, kSimdPrefix, kExprF32x4ExtractLane & 0xff, static_cast<byte>(lane) 629 x, kSimdPrefix, kExprF32x4ExtractLane & 0xff, static_cast<byte>(lane)
630 #define WASM_SIMD_F32x4_REPLACE_LANE(lane, x, y) \ 630 #define WASM_SIMD_F32x4_REPLACE_LANE(lane, x, y) \
631 x, y, kSimdPrefix, kExprF32x4ReplaceLane & 0xff, static_cast<byte>(lane) 631 x, y, kSimdPrefix, kExprF32x4ReplaceLane & 0xff, static_cast<byte>(lane)
632 #define WASM_SIMD_F32x4_FROM_I32x4(x) \ 632 #define WASM_SIMD_F32x4_FROM_I32x4(x) \
633 x, kSimdPrefix, kExprF32x4FromInt32x4 & 0xff 633 x, kSimdPrefix, kExprF32x4SConvertI32x4 & 0xff
634 #define WASM_SIMD_F32x4_FROM_U32x4(x) \ 634 #define WASM_SIMD_F32x4_FROM_U32x4(x) \
635 x, kSimdPrefix, kExprF32x4FromUint32x4 & 0xff 635 x, kSimdPrefix, kExprF32x4UConvertI32x4 & 0xff
636 #define WASM_SIMD_F32x4_ADD(x, y) x, y, kSimdPrefix, kExprF32x4Add & 0xff 636 #define WASM_SIMD_F32x4_ADD(x, y) x, y, kSimdPrefix, kExprF32x4Add & 0xff
637 #define WASM_SIMD_F32x4_SUB(x, y) x, y, kSimdPrefix, kExprF32x4Sub & 0xff 637 #define WASM_SIMD_F32x4_SUB(x, y) x, y, kSimdPrefix, kExprF32x4Sub & 0xff
638 638
639 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff 639 #define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff
640 #define WASM_SIMD_I32x4_EXTRACT_LANE(lane, x) \ 640 #define WASM_SIMD_I32x4_EXTRACT_LANE(lane, x) \
641 x, kSimdPrefix, kExprI32x4ExtractLane & 0xff, static_cast<byte>(lane) 641 x, kSimdPrefix, kExprI32x4ExtractLane & 0xff, static_cast<byte>(lane)
642 #define WASM_SIMD_I32x4_REPLACE_LANE(lane, x, y) \ 642 #define WASM_SIMD_I32x4_REPLACE_LANE(lane, x, y) \
643 x, y, kSimdPrefix, kExprI32x4ReplaceLane & 0xff, static_cast<byte>(lane) 643 x, y, kSimdPrefix, kExprI32x4ReplaceLane & 0xff, static_cast<byte>(lane)
644 #define WASM_SIMD_I32x4_FROM_F32x4(x) \ 644 #define WASM_SIMD_I32x4_FROM_F32x4(x) \
645 x, kSimdPrefix, kExprI32x4FromFloat32x4 & 0xff 645 x, kSimdPrefix, kExprI32x4SConvertF32x4 & 0xff
646 #define WASM_SIMD_U32x4_FROM_F32x4(x) \ 646 #define WASM_SIMD_U32x4_FROM_F32x4(x) \
647 x, kSimdPrefix, kExprUi32x4FromFloat32x4 & 0xff 647 x, kSimdPrefix, kExprI32x4UConvertF32x4 & 0xff
648 #define WASM_SIMD_S32x4_SELECT(x, y, z) \ 648 #define WASM_SIMD_S32x4_SELECT(x, y, z) \
649 x, y, z, kSimdPrefix, kExprS32x4Select & 0xff 649 x, y, z, kSimdPrefix, kExprS32x4Select & 0xff
650 #define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff 650 #define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff
651 #define WASM_SIMD_I32x4_SUB(x, y) x, y, kSimdPrefix, kExprI32x4Sub & 0xff 651 #define WASM_SIMD_I32x4_SUB(x, y) x, y, kSimdPrefix, kExprI32x4Sub & 0xff
652 652
653 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 653 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0
654 #define SIZEOF_SIG_ENTRY_v_v 3 654 #define SIZEOF_SIG_ENTRY_v_v 3
655 655
656 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 656 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0
657 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 657 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0
(...skipping 14 matching lines...) Expand all
672 #define WASM_BRV(depth, val) val, kExprBr, static_cast<byte>(depth) 672 #define WASM_BRV(depth, val) val, kExprBr, static_cast<byte>(depth)
673 #define WASM_BRV_IF(depth, val, cond) \ 673 #define WASM_BRV_IF(depth, val, cond) \
674 val, cond, kExprBrIf, static_cast<byte>(depth) 674 val, cond, kExprBrIf, static_cast<byte>(depth)
675 #define WASM_BRV_IFD(depth, val, cond) \ 675 #define WASM_BRV_IFD(depth, val, cond) \
676 val, cond, kExprBrIf, static_cast<byte>(depth), kExprDrop 676 val, cond, kExprBrIf, static_cast<byte>(depth), kExprDrop
677 #define WASM_IFB(cond, ...) cond, kExprIf, kLocalVoid, __VA_ARGS__, kExprEnd 677 #define WASM_IFB(cond, ...) cond, kExprIf, kLocalVoid, __VA_ARGS__, kExprEnd
678 #define WASM_BR_TABLEV(val, key, count, ...) \ 678 #define WASM_BR_TABLEV(val, key, count, ...) \
679 val, key, kExprBrTable, U32V_1(count), __VA_ARGS__ 679 val, key, kExprBrTable, U32V_1(count), __VA_ARGS__
680 680
681 #endif // V8_WASM_MACRO_GEN_H_ 681 #endif // V8_WASM_MACRO_GEN_H_
OLDNEW
« no previous file with comments | « src/wasm/function-body-decoder.cc ('k') | src/wasm/wasm-opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698