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 #define U32_LE(v) \ | 10 #define U32_LE(v) \ |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 #define WASM_F32_REINTERPRET_I32(x) x, kExprF32ReinterpretI32 | 557 #define WASM_F32_REINTERPRET_I32(x) x, kExprF32ReinterpretI32 |
558 #define WASM_F64_SCONVERT_I32(x) x, kExprF64SConvertI32 | 558 #define WASM_F64_SCONVERT_I32(x) x, kExprF64SConvertI32 |
559 #define WASM_F64_UCONVERT_I32(x) x, kExprF64UConvertI32 | 559 #define WASM_F64_UCONVERT_I32(x) x, kExprF64UConvertI32 |
560 #define WASM_F64_SCONVERT_I64(x) x, kExprF64SConvertI64 | 560 #define WASM_F64_SCONVERT_I64(x) x, kExprF64SConvertI64 |
561 #define WASM_F64_UCONVERT_I64(x) x, kExprF64UConvertI64 | 561 #define WASM_F64_UCONVERT_I64(x) x, kExprF64UConvertI64 |
562 #define WASM_F64_CONVERT_F32(x) x, kExprF64ConvertF32 | 562 #define WASM_F64_CONVERT_F32(x) x, kExprF64ConvertF32 |
563 #define WASM_F64_REINTERPRET_I64(x) x, kExprF64ReinterpretI64 | 563 #define WASM_F64_REINTERPRET_I64(x) x, kExprF64ReinterpretI64 |
564 #define WASM_I32_REINTERPRET_F32(x) x, kExprI32ReinterpretF32 | 564 #define WASM_I32_REINTERPRET_F32(x) x, kExprI32ReinterpretF32 |
565 #define WASM_I64_REINTERPRET_F64(x) x, kExprI64ReinterpretF64 | 565 #define WASM_I64_REINTERPRET_F64(x) x, kExprI64ReinterpretF64 |
566 | 566 |
| 567 #define SIG_ENTRY_v_v kWasmFunctionTypeForm, 0, 0 |
| 568 #define SIZEOF_SIG_ENTRY_v_v 3 |
| 569 |
| 570 #define SIG_ENTRY_v_x(a) kWasmFunctionTypeForm, 1, a, 0 |
| 571 #define SIG_ENTRY_v_xx(a, b) kWasmFunctionTypeForm, 2, a, b, 0 |
| 572 #define SIG_ENTRY_v_xxx(a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 0 |
| 573 #define SIZEOF_SIG_ENTRY_v_x 4 |
| 574 #define SIZEOF_SIG_ENTRY_v_xx 5 |
| 575 #define SIZEOF_SIG_ENTRY_v_xxx 6 |
| 576 |
| 577 #define SIG_ENTRY_x(r) kWasmFunctionTypeForm, 0, 1, r |
| 578 #define SIG_ENTRY_x_x(r, a) kWasmFunctionTypeForm, 1, a, 1, r |
| 579 #define SIG_ENTRY_x_xx(r, a, b) kWasmFunctionTypeForm, 2, a, b, 1, r |
| 580 #define SIG_ENTRY_x_xxx(r, a, b, c) kWasmFunctionTypeForm, 3, a, b, c, 1, r |
| 581 #define SIZEOF_SIG_ENTRY_x 4 |
| 582 #define SIZEOF_SIG_ENTRY_x_x 5 |
| 583 #define SIZEOF_SIG_ENTRY_x_xx 6 |
| 584 #define SIZEOF_SIG_ENTRY_x_xxx 7 |
| 585 |
567 #endif // V8_WASM_MACRO_GEN_H_ | 586 #endif // V8_WASM_MACRO_GEN_H_ |
OLD | NEW |