Go to file
Junliang Yan fa6928544b [sandbox] Use 64k block size on ppc64
Bug: v8:10391

Change-Id: Ib07287b166cfc54d4f52575ffecdc929f7ec3892
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3863406
Reviewed-by: Samuel Groß <saelo@chromium.org>
Commit-Queue: Junliang Yan <junyan@redhat.com>
Cr-Commit-Position: refs/heads/main@{#82820}
2022-08-30 13:53:03 +00:00
.github
bazel [bazel] Remove zlib dependency 2022-08-17 15:30:25 +00:00
build_overrides
custom_deps
docs
gni [infra] Change all Python shebangs to Python3 2022-08-05 14:55:00 +00:00
include [shared-struct] Use PersistentHandles to convey shared values 2022-08-29 19:44:47 +00:00
infra [infra] Add config for V8 Linux64 - predictable builder 2022-08-22 09:34:05 +00:00
samples
src [sandbox] Use 64k block size on ppc64 2022-08-30 13:53:03 +00:00
test [test] Skip test not working with gc stress 2022-08-30 13:33:08 +00:00
testing
third_party [change-array-by-copy] Implement Array.prototype.toSorted 2022-08-16 14:11:53 +00:00
tools [cleanup] Iterate WasmFrame and TypedFrame 2022-08-30 09:02:47 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore [cleanup] Add .idea to .gitignore 2022-08-22 19:54:38 +00:00
.gn [fuchsia] Add API target level default value 2022-08-29 14:46:45 +00:00
.mailmap
.style.yapf
.vpython
.vpython3
.ycm_extra_conf.py
AUTHORS [buildins] Use ACCESSOR_GETTER_LIST to expose accessor getters 2022-08-29 08:58:37 +00:00
BUILD.bazel [heap] Move Verify* methods out of the heap class 2022-08-30 09:22:27 +00:00
BUILD.gn [maglev] Implement Maglev-to-Turbofan OSR 2022-08-30 11:51:28 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS (trusted) 2022-08-30 03:53:27 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS Reland "[riscv32] Add RISCV32 backend" 2022-08-04 12:47:44 +00:00
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS Reland "[WATCHLISTS] Add riscv watch" 2022-08-19 07:33:57 +00:00
WORKSPACE [bazel] Remove zlib dependency 2022-08-17 15:30:25 +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.