• Leszek Swirski's avatar
    [parser] Fix variable caching for conflict lookup · 026a0c21
    Leszek Swirski authored
    During conflict lookup (for lexical variables and sloppy block function
    hoisting), we cache the looked-up variable on the current scope if the
    lookup goes through a ScopeInfo. However, for variable lookup during
    scope analysis, we use the "entry point" as the cache.
    
    Since both lookups can create Variables, this can cause us to create
    duplicate variables, e.g. a duplicate function name variable in the
    attached test.
    
    Instead, for ScopeInfo conflict lookups we can cache the result on the
    function's outer scope, which shoud be equivalent to the entry point.
    
    As a (necessary) drive-by, we can terminate the lookup early if we find
    a VAR with the same name, as we can safely assume that its existence
    means that it doesn't conflict, which means that our variable can't
    conflict either.
    
    Bug: chromium:1026603
    Change-Id: I19f80f65597ba6573ebe0b48aa5698f55e5c3ea1
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1928861
    Commit-Queue: Leszek Swirski <leszeks@chromium.org>
    Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#65138}
    026a0c21
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...