0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 07:53:06 +01:00
nodejs/deps/v8
Keyhan Vakil 0da3beebfc
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>
PR-URL: https://github.com/nodejs/node/pull/50115
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2024-01-04 09:31:51 +01:00
..
.github
base/trace_event/common deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
bazel deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
build_overrides
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 2024-01-04 09:31:46 +01:00
infra deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
samples deps: V8: cherry-pick 93b1a74cbc9b 2023-10-10 08:26:32 +02:00
src deps: V8: cherry-pick de611e69ad51 2024-01-04 09:31:51 +01:00
test deps: V8: cherry-pick 0fd478bcdabd 2024-01-04 09:31:46 +01:00
testing
third_party deps: patch V8 to avoid duplicated zlib symbol 2024-01-04 09:31:29 +01:00
tools deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01: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
.gitattributes
.gitignore deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
.gn deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
.mailmap
.style.yapf
.vpython3 deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.ycm_extra_conf.py
AUTHORS deps: V8: cherry-pick f7d000a7ae7b 2024-01-04 09:31:40 +01:00
BUILD.bazel deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
BUILD.gn deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01: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.9.169.7 2024-01-04 09:30:13 +01: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 deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
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.