forked from WebAssembly/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.json
162 lines (162 loc) · 4.87 KB
/
features.json
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"features": {
"bigInt": {
"description": "JS BigInt to Wasm i64 integration",
"url": "https://github.com/WebAssembly/JS-BigInt-integration",
"phase": 4
},
"bulkMemory": {
"description": "Bulk memory operations",
"url": "https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md",
"phase": 4
},
"exceptions": {
"description": "Exception handling",
"url": "https://github.com/WebAssembly/exception-handling/blob/master/proposals/exception-handling/Exceptions.md",
"phase": 2
},
"moduleLinking": {
"description": "Module Linking",
"url": "https://github.com/WebAssembly/module-linking/blob/master/proposals/module-linking/Explainer.md",
"phase": 1
},
"multiValue": {
"description": "Multi-value",
"url": "https://github.com/WebAssembly/spec/blob/master/proposals/multi-value/Overview.md",
"phase": 4
},
"mutableGlobals": {
"description": "Import & export of mutable globals",
"url": "https://github.com/WebAssembly/mutable-global/blob/master/proposals/mutable-global/Overview.md",
"phase": 4
},
"referenceTypes": {
"description": "Reference types",
"url": "https://github.com/WebAssembly/reference-types/blob/master/proposals/reference-types/Overview.md",
"phase": 4
},
"saturatedFloatToInt": {
"description": "Non-trapping float-to-int conversions",
"url": "https://github.com/WebAssembly/spec/blob/master/proposals/nontrapping-float-to-int-conversion/Overview.md",
"phase": 4
},
"signExtensions": {
"description": "Sign-extension operations",
"url": "https://github.com/WebAssembly/spec/blob/master/proposals/sign-extension-ops/Overview.md",
"phase": 4
},
"simd": {
"description": "Fixed-width SIMD",
"url": "https://github.com/WebAssembly/simd/blob/master/proposals/simd/SIMD.md",
"phase": 4
},
"tailCall": {
"description": "Tail calls",
"url": "https://github.com/WebAssembly/tail-call/blob/master/proposals/tail-call/Overview.md",
"phase": 3
},
"threads": {
"description": "Threads and atomics",
"url": "https://github.com/WebAssembly/threads/blob/master/proposals/threads/Overview.md",
"phase": 2
}
},
"browsers": {
"Chrome": {
"url": "https://www.google.com/chrome/",
"logo": "/images/chrome.svg",
"version": "90",
"features": {
"bigInt": true,
"bulkMemory": true,
"exceptions": "#enable-experimental-webassembly-features or WebAssembly Exception Handling Origin Trial",
"multiValue": true,
"mutableGlobals": true,
"referenceTypes": "#enable-experimental-webassembly-features",
"saturatedFloatToInt": true,
"signExtensions": true,
"simd": "#enable-webassembly-simd or WebAssembly SIMD Origin Trial",
"tailCall": "#enable-experimental-webassembly-features",
"threads": true
}
},
"Firefox": {
"url": "https://www.mozilla.org/firefox/",
"logo": "/images/firefox.svg",
"version": "79",
"features": {
"bigInt": true,
"bulkMemory": true,
"multiValue": true,
"mutableGlobals": true,
"referenceTypes": true,
"saturatedFloatToInt": true,
"signExtensions": true,
"simd": "about:config -> javascript.options.wasm_simd, x86 and x86-64 only",
"threads": true
}
},
"Safari": {
"url": "https://www.apple.com/safari/",
"logo": "/images/safari_48x48.png",
"version": "14.1",
"features": {
"bigInt": true,
"bulkMemory": "JSC_useWebAssemblyReferences, enabled in Safari Technology Preview",
"multiValue": true,
"mutableGlobals": true,
"referenceTypes": "JSC_useWebAssemblyReferences, enabled in Safari Technology Preview",
"saturatedFloatToInt": "Enabled in Safari Technology Preview",
"signExtensions": true,
"threads": "JSC_useWebAssemblyThreading"
}
},
"Wasmtime": {
"url": "https://wasmtime.dev/",
"logo": "/images/bca.png",
"version": "0.22",
"features": {
"bigInt": null,
"bulkMemory": true,
"moduleLinking": "--enable-module-linking",
"multiValue": true,
"mutableGlobals": true,
"referenceTypes": true,
"saturatedFloatToInt": true,
"signExtensions": true,
"simd": "--enable-simd"
}
},
"Wasmer": {
"url": "https://wasmer.io/",
"logo": "/images/wasmer.png",
"version": "1.0",
"features": {
"bigInt": null,
"bulkMemory": true,
"multiValue": true,
"mutableGlobals": true,
"saturatedFloatToInt": true,
"signExtensions": true,
"simd": "--enable-simd",
"threads": "--enable-threads"
}
},
"Node.js": {
"url": "https://nodejs.org/",
"logo": "/images/nodejs.svg",
"version": "15.0",
"features": {
"bigInt": true,
"bulkMemory": true,
"multiValue": true,
"mutableGlobals": true,
"referenceTypes": "--experimental-wasm-anyref",
"saturatedFloatToInt": true,
"signExtensions": true,
"simd": "--experimental-wasm-simd",
"threads": "--experimental-wasm-threads"
}
}
}
}