Go to file
Clemens Hammacher ec379ea8a8 [wasm][gc] Discard pages of freed wasm code
To reduce physical memory consumption, discard code pages that are
fully freed.
To determine pages which only become fully free after several freed
wasm code objects, this CL adds a {DisjointAllocationPool} to track all
freed code ({freed_code_space_} in {NativeModule}).

R=mstarzinger@chromium.org

Bug: v8:8217
Change-Id: I22ad92d2c0bd4469e92f0dfd5aec05c03b5a47d6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1594728
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#61244}
2019-05-06 14:31:31 +00:00
benchmarks
build_overrides
custom_deps
docs
gni
include [api] Deprecate one {SetFlagsFromString} variant 2019-05-06 14:23:28 +00:00
infra
samples
src [wasm][gc] Discard pages of freed wasm code 2019-05-06 14:31:31 +00:00
test [wasm-hints] Fix lazy compilation and validation in interpreter 2019-05-06 13:56:38 +00:00
testing
third_party [DevTools] Add V8InspectorSession::state(), which returns binary (CBOR). 2019-05-03 16:54:51 +00:00
tools Remove outdated node scripts 2019-05-06 12:24:44 +00:00
.clang-format
.clang-tidy
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS [arm64][turbofan] FP simplification 2019-05-06 08:25:22 +00:00
BUILD.gn Port StringPrototypeToString, StringPrototypeValueOf to Torque 2019-05-03 20:01:16 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2019-05-06 05:37:08 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS
PRESUBMIT.py
README.md [docs] Change links from old wiki to v8.dev 2019-03-07 12:13:30 +00:00
snapshot_toolchain.gni
WATCHLISTS

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://v8.dev/docs

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned at v8.dev/docs/contribute.