• Jakob Gruber's avatar
    [nci] Update interrupt budget from NCI code · 980e224a
    Jakob Gruber authored
    This is the first step towards implementing a tier-up mechanism from
    NCI code to TF. We will follow the existing Ignition-to-Turbofan
    mechanics, which are, roughly:
    
    1. Track a bytecode interrupt budget.
    2. When exhausted, call the runtime profiler, which increments
       profiler ticks for the top frame's function.
    3. When a function should tier up, it is marked as such using the
       FeedbackVector::optimized_code_weak_or_smi slot / the
       OptimizationMarker mechanism.
    4. The InterpreterEntryTrampoline checks this slot and calls into
       runtime to compile if needed.
    5. The finished code is also placed into this slot, as well as
       installed on the JSFunction.
    6. Again, the IET checks the slot and tail-calls the code object if it
       exists.
    
    This CL implements step 1 for NCI code by inserting the new simplified
    UpdateInterruptBudget operator at the same spots (and using the same
    offsets) as Ignition. When the budget is exhausted, we call a runtime
    function that currently does nothing and will be implemented in the
    next CL.
    
    Bug: v8:8888
    Change-Id: I98c0f8d96f32d515218dc2a76f961d44fe281c86
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2312778
    Commit-Queue: Jakob Gruber <jgruber@chromium.org>
    Reviewed-by: 's avatarGeorg Neis <neis@chromium.org>
    Reviewed-by: 's avatarMythri Alle <mythria@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#69124}
    980e224a
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
builtins Loading commit data...
codegen Loading commit data...
common Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
d8 Loading commit data...
date Loading commit data...
debug Loading commit data...
deoptimizer Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
extensions Loading commit data...
flags Loading commit data...
handles Loading commit data...
heap Loading commit data...
ic Loading commit data...
init Loading commit data...
inspector Loading commit data...
interpreter Loading commit data...
json Loading commit data...
libplatform Loading commit data...
libsampler Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parsing Loading commit data...
profiler Loading commit data...
protobuf Loading commit data...
regexp Loading commit data...
roots Loading commit data...
runtime Loading commit data...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks Loading commit data...
third_party Loading commit data...
torque Loading commit data...
tracing Loading commit data...
trap-handler Loading commit data...
utils Loading commit data...
wasm Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...