Closed Bug 1566330 Opened 5 years ago Closed 5 years ago

Remove BaselineDebugModeOSRInfo and trampoline

Categories

(Core :: JavaScript Engine, task, P1)

task

Tracking

()

RESOLVED FIXED
mozilla70
Tracking Status
firefox70 --- fixed

People

(Reporter: jandem, Assigned: jandem)

References

Details

Attachments

(2 files)

Once the Baseline JIT can no longer be enabled without the Baseline Interpreter, we can remove BaselineDebugModeOSRInfo and simplify BaselineDebugModeOSR a bit. I prototyped it yesterday and this should remove a few hundred lines of complicated code. It will also fix some tricky leaks that Gary has been finding with LeakSanitizer.

Er, we can't remove the whole mechanism, but we can remove the BaselineDebugModeOSRInfo data structure, one of the most complicated parts.

Summary: Remove BaselineDebugModeOSR and trampoline → Remove BaselineDebugModeOSRInfo and trampoline
Depends on: 1566332
Priority: -- → P1

At this point most of the DebugModeOSR complexity came from dealing with the
On -> Off case because debugger callVMs are not present in the recompiled script.
We also had to worry about loading unsynced stack values in R0/R1 in the
DebugTrap case (because it resumes at the start of a bytecode op).

We can now change these cases to resume after the corresponding Interpreter
callVMs instead. This lets us remove BaselineDebugModeOSRInfo and the
continuation fixer trampoline. We also no longer have to worry about unsynced
R0/R1 stack values for DebugTrap because the interpreter always has a synced
stack at the beginning of a bytecode op.

This removes about 360 lines of complicated code. It also fixes a memory leak the
fuzzers found a few days ago (bug 1566189).

The call needs to be part of the bytecode op for the JIT, but the interpreter can emit
a single call at the end. Results in more compact code and we can now assert unique
callVMs in recordCallRetAddr.

Depends on D38477

Pushed by jdemooij@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/49a2da59aa3e Let BaselineDebugModeOSR resume in the interpreter, remove BaselineDebugModeOSRInfo. r=iain https://hg.mozilla.org/integration/autoland/rev/499c8fa689ad follow-up - De-duplicate DebugEpilogue calls in the interpreter. r=iain
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla70
Blocks: 1567920
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: