Go to file
Qifan Pan 2d367eb352 [TurboFan] Remove inappropriate perf tests for BigInt multiply
Bug: v8:9407
Change-Id: I978f6d81c01bdf86131beca5a756181f23b0ed52
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3789500
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Reviewed-by: Nico Hartmann <nicohartmann@chromium.org>
Commit-Queue: Qifan Pan <panq@google.com>
Cr-Commit-Position: refs/heads/main@{#82005}
2022-07-27 14:27:48 +00:00
.github
bazel
build_overrides
custom_deps
docs
gni [Fuchsia] Use optimize_max on Fuchsia 2022-07-13 16:29:04 +00:00
include Fix vtunejit issues 2022-07-27 13:02:17 +00:00
infra [infra] Correct name for v8_mac64_asan_compile_rel builder 2022-07-27 08:33:07 +00:00
samples [sandbox] Initialize sandbox during V8::Initialize 2022-07-15 09:29:32 +00:00
src [heap] Implement page lookup for IPR 2022-07-27 13:07:48 +00:00
test [TurboFan] Remove inappropriate perf tests for BigInt multiply 2022-07-27 14:27:48 +00:00
testing
third_party google_benchmark: Manually roll and fix build 2022-07-25 07:47:46 +00:00
tools [tools][profile] Add support for maglev optimisation markers 2022-07-27 08:48:25 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.style.yapf
.vpython
.vpython3
.ycm_extra_conf.py
AUTHORS [fastcall] Implement support for Uint8Array arguments 2022-07-22 09:05:41 +00:00
BUILD.bazel [change-array-by-copy] Remove TypedArray.prototype.toSpliced 2022-07-27 07:51:12 +00:00
BUILD.gn Revert "Reland "cppgc: Enable pointer compression by default on Desktop"" 2022-07-27 12:52:18 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS (trusted-versions) 2022-07-27 03:49:17 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS Adding vahl@ as owner to speed up merge handling 2022-07-01 08:06:14 +00:00
INFRA_OWNERS [infra] Add alexschulze@ as infra owner 2022-07-18 09:08:54 +00:00
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS Make infra own their owners file 2022-07-18 08:26:45 +00:00
PPC_OWNERS
PRESUBMIT.py [wasm] Limit module size in streaming decoder 2022-07-08 09:43:41 +00:00
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE

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.