Go to file
Clemens Backes ef68870faf [liftoff] Merge i32.eqz + if
We currently merge i32 binary operations with a subsequent if or br_if,
and we merge i32.eqz with a subsequent br_if. The combination i32.eqz +
if was missing, even thought there is already support for that in the
"if" handler.

R=ahaas@chromium.org

Change-Id: Id4386d0c5d6dcf3605c72ea1146169d2088abe98
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2996196
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#75477}
2021-06-30 14:16:55 +00:00
.github
bazel [bazel] Adds ICU 2021-06-30 12:54:15 +00:00
build_overrides
custom_deps
docs
gni
include Add noexcept to cppgc::BasicPersistent's move assignment operator. 2021-06-24 07:23:53 +00:00
infra Add "V8 Linux64 - builder - reclient" to mb_config.pyl. 2021-06-30 12:16:15 +00:00
samples
src [liftoff] Merge i32.eqz + if 2021-06-30 14:16:55 +00:00
test [wasm] Refactor initializer expression handling 2021-06-30 14:15:45 +00:00
testing [macros] Upstream Google3 changes 2021-06-24 16:36:14 +00:00
third_party [base] Move utils/vector.h to base/vector.h 2021-06-18 13:33:13 +00:00
tools [tools][system-analyzer] Display timer events 2021-06-29 11:43:02 +00:00
.bazelrc [bazel] Compile V8 with bazel 2021-06-15 14:52:09 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore [log] Include tickprocessor log files in git 2021-06-21 15:26:29 +00:00
.gn [infra] Force Python 3 to be used in build. 2021-05-11 12:04:34 +00:00
.mailmap Restore consistency between .mailmap and AUTHORS 2021-06-24 08:58:04 +00:00
.vpython
.ycm_extra_conf.py
AUTHORS A jump-table implementation for constant case switch statements 2021-06-23 09:26:23 +00:00
BUILD.bazel [wasm] Refactor initializer expression handling 2021-06-30 14:15:45 +00:00
BUILD.gn [wasm] Refactor initializer expression handling 2021-06-30 14:15:45 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS Remove ulan@ from OWNERS 2021-06-08 13:10:21 +00:00
DEPS Update google_benchmark 2021-06-30 05:52:39 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
MIPS_OWNERS
OWNERS Allow COMMON_OWNERS to LGTM .mailmap CLs 2021-06-24 07:21:03 +00:00
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS [bazel] Add bazel files to watchlist 2021-06-17 09:26:11 +00:00
WORKSPACE [bazel] Adds ICU 2021-06-30 12:54:15 +00: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.