summaryrefslogtreecommitdiff
path: root/src/asmjs/shared-constants.cpp
blob: 57b9c4f87901742b4ea40602e9afaf4ee6e79447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright 2016 WebAssembly Community Group participants
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "asmjs/shared-constants.h"

namespace wasm {

IString TOPMOST("topmost");
IString INT8ARRAY("Int8Array");
IString INT16ARRAY("Int16Array");
IString INT32ARRAY("Int32Array");
IString UINT8ARRAY("Uint8Array");
IString UINT16ARRAY("Uint16Array");
IString UINT32ARRAY("Uint32Array");
IString FLOAT32ARRAY("Float32Array");
IString FLOAT64ARRAY("Float64Array");
IString ARRAY_BUFFER("ArrayBuffer");
IString ASM_MODULE("asmModule");
IString MATH("Math");
IString IMUL("imul");
IString CLZ32("clz32");
IString FROUND("fround");
IString ASM2WASM("asm2wasm");
IString MIN("min");
IString MAX("max");
IString F64_REM("f64-rem");
IString F64_TO_INT("f64-to-int");
IString F64_TO_UINT("f64-to-uint");
IString F64_TO_INT64("f64-to-int64");
IString F64_TO_UINT64("f64-to-uint64");
IString F32_TO_INT("f32-to-int");
IString F32_TO_UINT("f32-to-uint");
IString F32_TO_INT64("f32-to-int64");
IString F32_TO_UINT64("f32-to-uint64");
IString I32S_DIV("i32s-div");
IString I32U_DIV("i32u-div");
IString I32S_REM("i32s-rem");
IString I32U_REM("i32u-rem");
IString ABS("abs");
IString FLOOR("floor");
IString CEIL("ceil");
IString TRUNC("trunc");
IString SQRT("sqrt");
IString POW("pow");
IString I32_TEMP("asm2wasm_i32_temp");
IString DEBUGGER("debugger");
IString BUFFER("buffer");
IString ENV("env");
IString STACKTOP("STACKTOP");
IString STACK_MAX("STACK_MAX");
IString INSTRUMENT("instrument");
IString MATH_IMUL("Math_imul");
IString MATH_ABS("Math_abs");
IString MATH_CEIL("Math_ceil");
IString MATH_CLZ32("Math_clz32");
IString MATH_FLOOR("Math_floor");
IString MATH_TRUNC("Math_trunc");
IString MATH_SQRT("Math_sqrt");
IString MATH_MIN("Math_min");
IString MATH_MAX("Math_max");
IString WASM_CTZ32("__wasm_ctz_i32");
IString WASM_CTZ64("__wasm_ctz_i64");
IString WASM_CLZ32("__wasm_clz_i32");
IString WASM_CLZ64("__wasm_clz_i64");
IString WASM_POPCNT32("__wasm_popcnt_i32");
IString WASM_POPCNT64("__wasm_popcnt_i64");
IString WASM_ROTL32("__wasm_rotl_i32");
IString WASM_ROTL64("__wasm_rotl_i64");
IString WASM_ROTR32("__wasm_rotr_i32");
IString WASM_ROTR64("__wasm_rotr_i64");
IString WASM_MEMORY_GROW("__wasm_memory_grow");
IString WASM_MEMORY_SIZE("__wasm_memory_size");
IString WASM_FETCH_HIGH_BITS("__wasm_fetch_high_bits");
IString INT64_TO_32_HIGH_BITS("i64toi32_i32$HIGH_BITS");
IString WASM_NEAREST_F32("__wasm_nearest_f32");
IString WASM_NEAREST_F64("__wasm_nearest_f64");
IString WASM_I64_MUL("__wasm_i64_mul");
IString WASM_I64_SDIV("__wasm_i64_sdiv");
IString WASM_I64_UDIV("__wasm_i64_udiv");
IString WASM_I64_SREM("__wasm_i64_srem");
IString WASM_I64_UREM("__wasm_i64_urem");

IString ASM_FUNC("asmFunc");
IString FUNCTION_TABLE("FUNCTION_TABLE");
IString NO_RESULT("wasm2js$noresult"); // no result at all
// result in an expression, no temp var
IString EXPRESSION_RESULT("wasm2js$expresult");

namespace ABI {
namespace wasm2js {

IString SCRATCH_LOAD_I32("wasm2js_scratch_load_i32");
IString SCRATCH_STORE_I32("wasm2js_scratch_store_i32");
IString SCRATCH_LOAD_F32("wasm2js_scratch_load_f32");
IString SCRATCH_STORE_F32("wasm2js_scratch_store_f32");
IString SCRATCH_LOAD_F64("wasm2js_scratch_load_f64");
IString SCRATCH_STORE_F64("wasm2js_scratch_store_f64");
IString MEMORY_INIT("wasm2js_memory_init");
IString MEMORY_FILL("wasm2js_memory_fill");
IString MEMORY_COPY("wasm2js_memory_copy");
IString DATA_DROP("wasm2js_data_drop");
IString ATOMIC_WAIT_I32("wasm2js_atomic_wait_i32");
IString ATOMIC_RMW_I64("wasm2js_atomic_rmw_i64");
IString GET_STASHED_BITS("wasm2js_get_stashed_bits");
IString TRAP("wasm2js_trap");

} // namespace wasm2js
} // namespace ABI

} // namespace wasm