• Simon Zünd's avatar
    [torque] Refactor compiler interface to not 'leak' contextuals · 724d6586
    Simon Zünd authored
    The Torque compiler makes heavy use of scoped globals (contextuals).
    This created a problem for the design of the compiler interface:
    
        - Either the compiler provides all the necessary scopes itself,
          disallowing callers any access to the contextuals, which might
          contain data the caller is interested in (such as the
          compilation result).
        - Or the caller provides all the necessary scopes.
    
    This design was fine when the compiler executable was the only user.
    With the recent addition of unit tests and the language server, this
    interface became brittle, as missing scopes are only detected at
    runtime.
    
    This CL refactors the compiler interface to not leak contextual
    scopes past the interface boundary. Content of contextuals is
    collected and returned, providing access for the caller and freedom
    to either use the data directly or move it into the callers own scopes.
    
    R=sigurds@chromium.org
    
    Bug: v8:7793
    Change-Id: Ieb988522d08fc6026b3fb74d976008e566146770
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1529000
    Commit-Queue: Simon Zünd <szuend@chromium.org>
    Reviewed-by: 's avatarSigurd Schneider <sigurds@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#60867}
    724d6586
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
assembler Loading commit data...
base Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
heap Loading commit data...
interpreter Loading commit data...
libplatform Loading commit data...
parser Loading commit data...
regress Loading commit data...
torque Loading commit data...
wasm Loading commit data...
zone Loading commit data...
BUILD.gn Loading commit data...
DEPS Loading commit data...
allocation-unittest.cc Loading commit data...
background-compile-task-unittest.cc Loading commit data...
bigint-unittest.cc Loading commit data...
cancelable-tasks-unittest.cc Loading commit data...
char-predicates-unittest.cc Loading commit data...
code-stub-assembler-unittest.cc Loading commit data...
code-stub-assembler-unittest.h Loading commit data...
conversions-unittest.cc Loading commit data...
counters-unittest.cc Loading commit data...
detachable-vector-unittest.cc Loading commit data...
eh-frame-iterator-unittest.cc Loading commit data...
eh-frame-writer-unittest.cc Loading commit data...
locked-queue-unittest.cc Loading commit data...
microtask-queue-unittest.cc Loading commit data...
object-unittest.cc Loading commit data...
register-configuration-unittest.cc Loading commit data...
run-all-unittests.cc Loading commit data...
source-position-table-unittest.cc Loading commit data...
strings-storage-unittest.cc Loading commit data...
test-helpers.cc Loading commit data...
test-helpers.h Loading commit data...
test-utils.cc Loading commit data...
test-utils.h Loading commit data...
testcfg.py Loading commit data...
unicode-unittest.cc Loading commit data...
unittests.status Loading commit data...
utils-unittest.cc Loading commit data...
value-serializer-unittest.cc Loading commit data...