• Benedikt Meurer's avatar
    [ic] Improve KeyedStoreIC performance for dictionaries. · a9b09801
    Benedikt Meurer authored
    Once the KeyedStoreIC was in MEGAMORPHIC state storing to dictionary
    mode objects, we'd constantly hit the slow-path implemented via the
    %SetProperty runtime function, if the dictionary was created with a
    null prototype, i.e. via Object.create(null). This goes against the
    advice of using Object.create(null) for dictionaries (compared to
    using empty object literal), which is unfortunate.
    
    This CL addresses two issues, starting with
    
    - adding support for null prototypes to LookupPropertyOnPrototypeChain,
      which was always hitting the slow path for null prototypes, and
    - using the dedicated %AddDictionaryProperty runtime call when we
      have to grow the backing store.
    
    These changes combined improve the micro-benchmark from
    
      storeToDictionary: 559 ms.
      storeToFast: 95 ms.
    
    to
    
      storeToDictionary: 201 ms.
      storeToFast: 94 ms.
    
    which reduces overhead by about 65%. This overall improves the chai test
    on the web-tooling-benchmark by about 4%, which still leaves some room
    for improvement.
    
    Bug: v8:6936, v8:6985
    Change-Id: I97b78961f51edb3a3e198bdb31457fd78bed947f
    Reviewed-on: https://chromium-review.googlesource.com/735139Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
    Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#48858}
    a9b09801
Name
Last commit
Last update
..
arm Loading commit data...
arm64 Loading commit data...
ia32 Loading commit data...
mips Loading commit data...
mips64 Loading commit data...
ppc Loading commit data...
s390 Loading commit data...
x64 Loading commit data...
OWNERS Loading commit data...
access-compiler-data.h Loading commit data...
access-compiler.cc Loading commit data...
access-compiler.h Loading commit data...
accessor-assembler.cc Loading commit data...
accessor-assembler.h Loading commit data...
binary-op-assembler.cc Loading commit data...
binary-op-assembler.h Loading commit data...
call-optimization.cc Loading commit data...
call-optimization.h Loading commit data...
handler-compiler.cc Loading commit data...
handler-compiler.h Loading commit data...
handler-configuration-inl.h Loading commit data...
handler-configuration.cc Loading commit data...
handler-configuration.h Loading commit data...
ic-inl.h Loading commit data...
ic-stats.cc Loading commit data...
ic-stats.h Loading commit data...
ic.cc Loading commit data...
ic.h Loading commit data...
keyed-store-generic.cc Loading commit data...
keyed-store-generic.h Loading commit data...
stub-cache.cc Loading commit data...
stub-cache.h Loading commit data...