• Darius Mercadier's avatar
    [heap] Add fast allocation strategy (--gc-freelist-strategy=1) · b0abfb4f
    Darius Mercadier authored
    This CL adds a new FreeList strategy, that can be turned on by using flag
    `--gc-freelist-strategy=1`.  It is inspired by FreeListLegacy, and differs from
    it in the following ways:
     - Only has 3 categories: Medium, Large and Huge.
     - Any block that would have belong to tiniest, tiny or small in FreeListLegacy
       is considered wasted.
     - Allocation is done only in Huge, Medium and Large (in that order), using a
       first-fit strategy (only the first block of each freelist is ever considered
       though).
     - Performances is supposed to be better than FreeListLegacy, but memory usage
       should be higher (because fragmentation will probably be higher).
    
    Bug: v8:9329
    Change-Id: Ib399196788f1dfaa1aeddc3dc721375dd7da65f1
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1697248
    Commit-Queue: Darius Mercadier <dmercadier@google.com>
    Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#62667}
    b0abfb4f
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...