Go to file
Leszek Swirski 1db500a0e3 Revert "Reland "[offthread] Enable off-thread finalization in --future""
This reverts commit 853efc77c6.

Reason for revert: More TSAN failures: https://ci.chromium.org/p/v8/builders/ci/V8%20NumFuzz%20-%20TSAN/11176

Original change's description:
> Reland "[offthread] Enable off-thread finalization in --future"
> 
> This is a reland of ff0c5cfaf6
> 
> Relanding after fixing TSAN failure in https://crrev.com/c/2404767.
> 
> Original change's description:
> > [offthread] Enable off-thread finalization in --future
> >
> > Enable the new LocalHeap-based off-thread finalization behind --future.
> >
> > Bug: chromium:1011762
> > Change-Id: I4b33fc300a34530d75aa1a3e197e0d1326994efa
> > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2403252
> > Commit-Queue: Leszek Swirski <leszeks@chromium.org>
> > Commit-Queue: Dominik Inführ <dinfuehr@chromium.org>
> > Auto-Submit: Leszek Swirski <leszeks@chromium.org>
> > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
> > Reviewed-by: Dominik Inführ <dinfuehr@chromium.org>
> > Cr-Commit-Position: refs/heads/master@{#69813}
> 
> Bug: chromium:1011762
> Change-Id: I552a2668391707ee69162eb94143daa7c11721d6
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2404772
> Reviewed-by: Dominik Inführ <dinfuehr@chromium.org>
> Commit-Queue: Leszek Swirski <leszeks@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#69841}

TBR=ulan@chromium.org,leszeks@chromium.org,verwaest@chromium.org,dinfuehr@chromium.org

Change-Id: I291c16272a3fd02ee3afa23e2af7e66bae82a92e
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:1011762
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2404824
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69846}
2020-09-11 12:55:53 +00:00
build_overrides
custom_deps
docs
gni [heap] Add object start bitmap for conservative stack scanning 2020-08-31 07:10:36 +00:00
include heap-snapshot: Add detachedness field 2020-09-09 14:42:41 +00:00
infra Add "default_min_sdk_version=19" to android gn args 2020-09-10 21:28:09 +00:00
samples [api][cleanup] Use Template::Set with const char* name 2020-09-09 15:39:36 +00:00
src Revert "Reland "[offthread] Enable off-thread finalization in --future"" 2020-09-11 12:55:53 +00:00
test [turboprop] Store minimorphic access info indexed on FeedbackSource 2020-09-11 11:38:11 +00:00
testing
third_party [csa][cleanup] Remove ParameterMode/TNodify StoreFixedDoubleArrayElement 2020-08-26 17:14:44 +00:00
tools Reland "[wasm-simd] Stage SIMD" 2020-09-10 16:04:35 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS Check interrupts in runtime BigInt parser 2020-09-07 15:21:33 +00:00
BUILD.gn Reland "Reland "cppgc, heap: Don't eagerly allocate worklist segments"" 2020-09-10 22:26:25 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS Adding vahl@ to the common owners to be able to handle 2020-08-21 09:04:56 +00:00
DEPS Update V8 DEPS. 2020-09-11 03:52:16 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS Add team members as owners 2020-08-18 08:29:04 +00:00
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py [presubmit] Allow use of test functions in runtime-test.cc 2020-08-10 12:12:55 +00:00
README.md
S390_OWNERS
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.