Go to file
cbruni 381aa94d37 [tools] Run callstats.py with --enable-benchmarking
Without --enable-benchmarking we might get flaky results due to active
finch experiments.

BUG=
NOTRY=true

Review-Url: https://codereview.chromium.org/2369903002
Cr-Commit-Position: refs/heads/master@{#39752}
2016-09-27 08:02:30 +00:00
benchmarks
build_overrides
docs
gni
gypfiles
include Revert of [tracing] Support ConvertableToTraceFormat argument type. (patchset #5 id:80001 of https://codereview.chromium.org/2367603002/ ) 2016-09-27 07:02:02 +00:00
infra [build] Enable shared libraries for arm debug 2016-09-26 10:22:19 +00:00
samples
src [stubs] Port store IC dispatcher to TurboFan. 2016-09-27 07:20:53 +00:00
test [stubs] Port store IC dispatcher to TurboFan. 2016-09-27 07:20:53 +00:00
testing
third_party/binutils
tools [tools] Run callstats.py with --enable-benchmarking 2016-09-27 08:02:30 +00:00
.clang-format
.gitignore
.gn
.ycm_extra_conf.py
AUTHORS
BUILD.gn Enable component builds for fuzzers 2016-09-26 07:40:44 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2016-09-27 03:29:37 +00:00
LICENSE
LICENSE.fdlibm Add LICENSE.fdlibm for all the fdlibm imported sources. 2016-06-09 07:17:03 +00:00
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile
Makefile.android
OWNERS
PRESUBMIT.py
README.md
snapshot_toolchain.gni
WATCHLISTS

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://github.com/v8/v8/wiki

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 on the V8 wiki.