Closed Bug 1552154 Opened 5 years ago Closed 5 years ago

Stop storing native code offset for each bytecode pc in BaselineScript

Categories

(Core :: JavaScript Engine: JIT, task, P2)

task

Tracking

()

RESOLVED FIXED
mozilla70
Tracking Status
firefox69 --- wontfix
firefox70 --- fixed

People

(Reporter: jandem, Assigned: jandem)

References

Details

Attachments

(6 files)

BaselineScript::nativeCodeForPC has the following consumers:

  1. Ion bailouts
  2. DebugModeOSR
  3. Exception handling
  4. OSR
  5. Profiler (also BaselineScript::approximatePcForNativeAddress)

I'm hoping we can change 1-3 to resume in the interpreter instead, once it's enabled by default (we would switch to Baseline JIT code at the next loop edge or call).

For 4 we only care about JSOP_LOOPENTRY ops. When the profiler is enabled we could choose to record more offsets but we wouldn't have to do this for every op - it would be more of a heuristic.

This should speed up BaselineCompiler a bit, use less memory, and simplify the code a bit (no need to handle and worry about unsynced stack values for example).

Type: defect → task
Priority: -- → P2
Depends on: 1567438
Assignee: nobody → jdemooij
Status: NEW → ASSIGNED

Because DebugTrapEntries are only present if the script has debugger instrumentation
it should be fine to store this as a simple list of entries.

Depends on D40947

Depends on: 1567920
Pushed by jdemooij@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/235c854c3233
part 1 - Use mozilla::Span<> in BaselineScript, clean up RetAddrEntry code a bit. r=tcampbell
https://hg.mozilla.org/integration/autoland/rev/77497544ca03
part 2 - Stop using pc-to-native map for OSR into Baseline JIT. r=tcampbell
https://hg.mozilla.org/integration/autoland/rev/941b29575f6a
part 3 - Stop using pc-to-native map for BaselineScript::computeResumeNativeOffsets. r=tcampbell
https://hg.mozilla.org/integration/autoland/rev/703a39b468df
part 4 - Stop using pc-to-native map for BaselineScript::approximatePcForNativeAddress. r=tcampbell
https://hg.mozilla.org/integration/autoland/rev/e481b4ed7784
part 5 - Stop using pc-to-native map for BaselineScript::toggleDebugTraps. r=tcampbell
https://hg.mozilla.org/integration/autoland/rev/937e9c6da43c
part 6 - Remove BaselineScript's pc-to-native map. r=tcampbell
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: