blob: 6fd073c0d264b69a7ead0fc5e32c3d277bc320f9 (
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
|
// |jit-test| test-also=--wasm-compiler=optimizing; skip-if: !wasmDebuggingEnabled()
// Test single-stepping where the TLS register can be evicted by a non-trivial
// function body.
var g = newGlobal({newCompartment: true});
g.parent = this;
g.eval(`
var dbg = new Debugger(parent);
`);
var i = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
(module
(func (export "f2")
i64.const 0
i64.const 0
i32.const 0
select
drop
)
)
`)));
g.eval(`
var calledOnStep = 0;
dbg.onEnterFrame = frame => {
if (frame.type === "wasmcall")
frame.onStep = () => { calledOnStep++ }
};
`);
i.exports.f2();
assertEq(g.calledOnStep, 2);
|