node/deps/v8
Keyhan Vakil 25eba3d20b deps: V8: cherry-pick de611e69ad51
Original commit message:

    [maglev] fix non-ptr-compr compilation on old compilers

    When pointer compression is disabled, the preprocessor expands some
    static asserts to static_assert(false), which doesn't compile on
    compilers not implementing the C++ defect report CWG2518, notably clang
    before version 17 and gcc before version 13.

    Adding in part of the template parameter to the static assert prevents
    it from being evaluated immediately which fixes the compilation.

    Test: compiled with gcc-11 and clang-14 without pointer compression.
    Change-Id: I95ce29bdb1278e6dad9e592d6f9476395f8aeb59
    Fixed: v8:14355
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5022760
    Reviewed-by: Leszek Swirski <leszeks@chromium.org>
    Commit-Queue: Leszek Swirski <leszeks@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#91553}

Refs: de611e69ad
PR-URL: https://github.com/nodejs/node/pull/51200
Refs: https://github.com/nodejs/node/issues/50690
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2024-01-02 15:05:25 -03:00
..
.github
base/trace_event/common deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
bazel deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
build_overrides deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
custom_deps
docs
gni deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
include deps: V8: cherry-pick 0fd478bcdabd 2023-12-15 15:26:24 -03:00
infra deps: patch V8 to 11.8.172.17 2023-11-14 09:17:49 +01:00
samples deps: V8: cherry-pick 93b1a74cbc9b 2023-10-10 08:26:32 +02:00
src deps: V8: cherry-pick de611e69ad51 2024-01-02 15:05:25 -03:00
test deps: V8: cherry-pick 0fd478bcdabd 2023-12-15 15:26:24 -03:00
testing
third_party deps: patch V8 to avoid duplicated zlib symbol 2023-10-10 08:26:26 +02:00
tools deps: V8: cherry-pick 475c8cdf9a95 2023-11-29 09:46:33 -03:00
.bazelrc
.clang-format deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
.gitattributes
.gitignore deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.gn deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.mailmap
.style.yapf deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
.vpython3 deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.ycm_extra_conf.py deps: update V8 to 10.9.194.4 2022-11-27 17:27:13 +00:00
AUTHORS deps: V8: cherry-pick f7d000a7ae7b 2023-10-24 09:41:06 +02:00
BUILD.bazel deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
BUILD.gn deps: V8: cherry-pick 475c8cdf9a95 2023-11-29 09:46:33 -03:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
DEPS deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
DIR_METADATA
ENG_REVIEW_OWNERS deps: update V8 to 10.8.168.20 2022-11-19 09:11:32 +00:00
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS deps: update V8 to 10.9.194.4 2022-11-27 17:27:13 +00:00
PPC_OWNERS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
PRESUBMIT.py deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
README.md
RISCV_OWNERS
S390_OWNERS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
WATCHLISTS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
WORKSPACE deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00

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.