• Mythri A's avatar
    [compiler] Cache OSR optimized code · cfb10028
    Mythri A authored
    With lazy feedback allocation, for functions that get OSRed we may
    not have feedback for the initial part of the functions since feedback
    vectors might be allocated after the function started executing. Hence
    we would not be able to optimize the function on the next call. This
    means we may have to OSR twice before we actually optimize function.
    This cl introduces OSR cache, so we could reuse the optimized code. One
    side effect of this cl is that the OSRed code won't be function context
    specialized anymore.
    
    Bug: chromium:987523
    Change-Id: Ic1e2abca85ccfa0a66a0fa83f7247392cc1e7cb2
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1796329
    Commit-Queue: Mythri Alle <mythria@chromium.org>
    Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
    Reviewed-by: 's avatarGeorg Neis <neis@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#64014}
    cfb10028
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...
deoptimize-reason.cc Loading commit data...
deoptimize-reason.h Loading commit data...
deoptimizer.cc Loading commit data...
deoptimizer.h Loading commit data...