forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop-mult.js
More file actions
43 lines (40 loc) · 1007 Bytes
/
loop-mult.js
File metadata and controls
43 lines (40 loc) · 1007 Bytes
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
import Builder from '../Builder.js'
import * as assert from '../assert.js'
const b = new Builder();
b.Type().End()
.Function().End()
.Export()
.Function("loop")
.End()
.Code()
.Function("loop", { params: ["i32"], ret: "i32" }, ["i32"])
.I32Const(0)
.SetLocal(1)
.Loop("void")
.Block("void", b =>
b.GetLocal(0)
.I32Const(0)
.I32Eq()
.BrIf(0)
.GetLocal(0)
.GetLocal(1)
.I32Add()
.SetLocal(1)
.GetLocal(0)
.I32Const(1)
.I32Sub()
.SetLocal(0)
.Br(1)
)
.End()
.GetLocal(1)
.Return()
.End()
.End()
const bin = b.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const instance = new WebAssembly.Instance(module);
assert.eq(0, instance.exports.loop(0));
assert.eq(1, instance.exports.loop(1));
assert.eq(3, instance.exports.loop(2));
assert.eq(5050, instance.exports.loop(100));