• Leszek Swirski's avatar
    [offthread] Add OffThreadFactory · e659917a
    Leszek Swirski authored
    Introduce OffThreadFactory with initial string construction support.
    
    The OffThreadFactory shares with Factory a new CRTP base class, called
    FactoryBase. Methods in FactoryBase return a FactoryHandle<Factory, T>
    alias, which is Handle<T> for normal Factory and a new OffThreadHandle<T>
    for OffThreadFactory. OffThreadHandle<T> behaves like Handle<T>, except
    it stores the object in-line rather than needing external storage.
    
    Any shared factory methods are moved into FactoryBase, which uses CRTP
    to call the sub-class's AllocateRaw method (plus a few more customization
    points which need Isolate access on the main thread).
    
    Methods that used to take an Isolate or Factory, and are needed off the
    main thread, are now expected to be templated on the factory type and
    to use the appropriate handle.
    
    Once an OffThreadFactory has finished being used (e.g. off-thread
    compilation completed) its pages are "Published" into the main-thread
    Heap. To deal with string internalization without creating a bunch of
    ThinStrings, this is done in two stages:
    
      1. 'FinishOffThread': The off-thread pages are walked to
         collect all slots pointing to "internalized" strings. After this is
         called it is invalid to allocate any more objects with the factory.
      2. 'Publish': On the main thread, we transform these slots into
         <Handle to holder, offset> pairs, then for each saved slot
         re-internalize its string and update the slot to point to the
         internalized string.
    
    Bug: chromium:1011762
    Change-Id: I008a694da3c357de34362bd86fe7e1f46b535d5e
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1992434
    Commit-Queue: Leszek Swirski <leszeks@chromium.org>
    Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
    Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#65787}
    e659917a
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...