blob: 1e776c20083f10c000524381a49a6f444f9902d4 (
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 >= 5, true);
|