Go to file
Marja Hölttä df73fd6031 Reland "[rab/gsab] Temporarily stage --harmony-rab-gsab to enable fuzzing"
This reverts commit 24286b8e24.

Reason for revert: Re-staging the experimental flag for fuzzing

Original change's description:
> Revert "[rab/gsab] Temporarily stage --harmony-rab-gsab to enable fuzzing"
>
> This reverts commit b8f88be06e.
>
> Reason: disabling an experimental feature in release branch
>
> Bug: v8:11111,v8:12870
> Change-Id: I6fbd6bdb318c0d25e69c04db208a0d5f2b9ebbd7
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3647357
> Auto-Submit: Marja Hölttä <marja@chromium.org>
> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
> Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#80520}

Bug: v8:11111,v8:12870
Change-Id: I0a45ed5ce53010196949dda23773d152aa605846
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3647836
Commit-Queue: Marja Hölttä <marja@chromium.org>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#80576}
2022-05-17 08:19:38 +00:00
.github
bazel [build] Fix bazel build 2022-05-13 07:16:26 +00:00
build_overrides
custom_deps
docs
gni cppgc: Introduce pointer compression based on thread-local base 2022-05-13 11:15:43 +00:00
include cppgc: Avoid compression/decompression in Member operators/ctors 2022-05-16 22:17:47 +00:00
infra [maglev] Enable the maglev variant on FYI bots 2022-05-05 11:44:51 +00:00
samples [test] Add a unittest platform setup mixin 2022-04-06 13:07:43 +00:00
src Reland "[rab/gsab] Temporarily stage --harmony-rab-gsab to enable fuzzing" 2022-05-17 08:19:38 +00:00
test [test] Move cctest/{test-bignum-dtoa, test-dtoa 2022-05-17 01:38:57 +00:00
testing
third_party
tools Replace STATIC_ASSERT with static_assert 2022-05-13 13:46:27 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.style.yapf
.vpython
.vpython3
.ycm_extra_conf.py
AUTHORS Fix typos, shit_right -> shift_right 2022-05-06 07:51:55 +00:00
BUILD.bazel [utils] Introduce SparseBitVector 2022-05-16 10:23:26 +00:00
BUILD.gn [utils] Introduce SparseBitVector 2022-05-16 10:23:26 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update google_benchmark 2022-05-12 06:02:30 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE

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.