• Georg Neis's avatar
    [compiler][test] Give tests control over finalization · 8b87e36e
    Georg Neis authored
    Some tests want to invalidate part of the VM state after an optimization
    has consumed the old state but before the code is installed.
    
    The existing mechanism for this is --block-concurrent-recompilation
    and %UnblockConcurrentRecompilation(). The former suspends optimization
    right after PrepareJob, before the background ExecuteJob phase. The
    intrinsic can then be used to unblock it again.
    
    This was good enough so far because the main "consume" work used to
    happen on the main thread. With concurrent inlining this is no longer
    true and we need something else.
    
    This CL introduces three intrinsics:
    
    %DisableOptimizationFinalization turns off automatic finalization of
    background optimizations.
    
    %FinalizeOptimization() can then be called at an appropriate time to
    manually finalize (and thus install) the code and reenable automatic
    finalization.
    
    In case one wants to perform some action on the main thread after the
    concurrent optimization has finished but before it is finalized, one can
    do so with the help of %WaitForBackgroundOptimization() (see tests).
    
    In a followup CL I'm removing the old mechanism since it now seems
    redundant.
    
    Bug: v8:12041, v8:7790
    Change-Id: Ib7195789105922eb7e4bff86dc5bc11e96a4f97b
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3071400
    Commit-Queue: Georg Neis <neis@chromium.org>
    Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
    Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#76190}
    8b87e36e
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
baseline Loading commit data...
bigint 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...
web-snapshot Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
OWNERS Loading commit data...