• Darius Mercadier's avatar
    Makes sure FreeListCategories never contain empty elements · 303ca9ac
    Darius Mercadier authored
    The linked lists of FreeLists could contain empty elements
    (FreeListCategories whose `top()` is null). The code is carefuly
    written so that this case won't break anything (probably just slow
    things a little bit).  When `FreeList::FindNodeIn` (the fast path of
    `FreeList::Allocate`) found such an empty `FreeListCategory`, it
    removed it by calling `FreeList::RemoveCategory`, and looked in the
    next `FreeListCategory` of the same size. However, on the slow path of
    `FreeList::Allocate`, the functions that iterates the
    `FreeListCategory` are `FreeList::TryFindNodeIn` and
    `FreeListCategory::PickNodeFromList`, none of which removed empty
    elements. Therefore, it could happen that a `FreeListCategory` "real"
    first element could be used, but was never considered due to the top of
    the linked list being empty. The behavior for the slow path should be
    the same as for the fast path on that regard.
    
    The problem was actually deeper than that: FreeListCategories were not
    always in a consistent state, since they could have empty members. The
    removal of those empty elements should be done as soon as they are
    created, ie when allocating the last element.
    
    This CL ensures that empty FreeListCategories are removed as soon as
    they become empty.
    
    Bug: v8:9329
    Change-Id: Idda8096dc5978745894854a0405da59f7e8691a6
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1648476
    Commit-Queue: Darius Mercadier <dmercadier@google.com>
    Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
    Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#62058}
    303ca9ac
Name
Last commit
Last update
benchmarks Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...