• Daniel Clark's avatar
    Fix top-level await crash from synthetic module being evaluated twice · f033e2a1
    Daniel Clark authored
    With top-level await, when Evaluate is performed on an already-evaluated
    synthetic module, Module::InnerEvaluate returns undefined.  This breaks
    top-level await's assumption that the returned value is always a
    promise.
    
    In order to make SyntheticModule's behavior consistent with
    SourceTextModule, the top_level_capability field is moved up to Module
    and SyntheticModule::Evaluate places the promise returned from the
    host's evaluation steps in that field.  Now SourceTextModule and
    SyntheticModule can share the same code to handle the case where the
    module is either kErrored or kEvaluated, so the code for this
    is moved up to Module.
    
    Thus, SyntheticModule is now guaranteed to return the
    promise from the evaluation steps even on subsequent Evaluate() calls.
    
    Unfortunately Node hasn't yet updated their EvaluationStepsCallback
    to return a Promise, so we can't yet assume that the returned value
    is a Promise without breaking Node.  So, this change also adds a clause
    to check for this condition and create a new resolved Promise if one
    was not provided by the callback steps.  This could eventually be
    removed once Node's callback steps are updated for top-level await.
    
    Change-Id: I2d6ae918abfeba9e3a757838502d4df92946edaa
    Bug: v8:11398
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2673794Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
    Reviewed-by: 's avatarDominik Inführ <dinfuehr@chromium.org>
    Commit-Queue: Dan Clark <daniec@microsoft.com>
    Cr-Commit-Position: refs/heads/master@{#72629}
    f033e2a1
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...
DIR_METADATA Loading commit data...
OWNERS Loading commit data...