blob: 7a0279dc4d65015469a716b70707c93b3984f47c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Test printing interpreter internal data structures.
# Ignore flake8 errors "undefined name 'assert_pretty'"
# As it caused by the way we instanciate this file
# flake8: noqa: F821
assert_subprinter_registered("SpiderMonkey", "js::InterpreterRegs")
run_fragment("Interpreter.Regs")
assert_pretty("regs", "{ fp_ = , sp = fp_.slots() + 2, pc = (JSOp::True) }")
run_fragment("Interpreter.AbstractFramePtr")
assert_pretty(
"ifptr", "AbstractFramePtr ((js::InterpreterFrame *) ) = {ptr_ = 146464513}"
)
assert_pretty(
"bfptr", "AbstractFramePtr ((js::jit::BaselineFrame *) ) = {ptr_ = 3135025122}"
)
assert_pretty(
"rfptr",
"AbstractFramePtr ((js::jit::RematerializedFrame *) ) = {ptr_ = 3669732611}",
)
|