node/deps/v8
Richard Lau faf8ada719
deps: V8: cherry-pick f6bef09b3b0a
Original commit message:

    [turboshaft] initialize constant_value_ to an empty value

    gcc-10 seems to have a bug were not initializing this value
    throws this compilation error:
    ```
    src/compiler/turboshaft/assembler.h:680:16: error: ‘<anonymous>’ is used uninitialized in this function [-Werror=uninitialized]
      680 |     return Get();
    ```
    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86465

    Bug: v8:12783
    Change-Id: I7a5fee5009b866a801326fba734c156c3cfdb1b0
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5503350
    Reviewed-by: Nico Hartmann <nicohartmann@chromium.org>
    Commit-Queue: Milad Farazmand <mfarazma@redhat.com>
    Cr-Commit-Position: refs/heads/main@{#93675}

Refs: f6bef09b3b
PR-URL: https://github.com/nodejs/node/pull/52802
Fixes: https://github.com/nodejs/node/issues/52661
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
2024-05-08 07:12:37 +02:00
..
.github
base/trace_event/common
bazel deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
build_overrides deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
custom_deps
docs
gni deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
include deps: silence irrelevant V8 warning 2024-04-22 19:10:43 -03:00
infra deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
samples deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
src deps: V8: cherry-pick f6bef09b3b0a 2024-05-08 07:12:37 +02:00
test deps: V8: cherry-pick cd10ad7cdbe5 2024-04-22 19:10:43 -03:00
testing
third_party deps: patch V8 to avoid duplicated zlib symbol 2024-04-22 19:10:43 -03:00
tools deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
.bazelrc
.clang-format deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
.gn
.mailmap
.style.yapf
.vpython3
.ycm_extra_conf.py
AUTHORS deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
BUILD.bazel deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
BUILD.gn deps: V8: cherry-pick 500de8bd371b 2024-04-29 22:46:32 +02:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
DIR_METADATA
ENG_REVIEW_OWNERS deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
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 deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03: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.