Go to file
leszeks bcb38979f7 [turbofan] Add and use bytecode loop assigment analysis
Adds assignment tracking to the bytecode analysis pass, and updates
bytecode graph builder to only create LoopExitValues for assigned
values.

Review-Url: https://codereview.chromium.org/2558093005
Cr-Commit-Position: refs/heads/master@{#41719}
2016-12-15 13:24:19 +00:00
benchmarks
build_overrides [build] Roll build a3b623a:11a223f 2016-11-29 11:17:15 +00:00
docs
gni [build] Use MSVS 2015 by default. 2016-12-01 08:50:57 +00:00
gypfiles [build] Use MSVS 2015 by default. 2016-12-01 08:50:57 +00:00
include [serializer] API to re-use global proxy in v8::Context::FromSnapshot. 2016-12-13 11:24:58 +00:00
infra [build] Make x87 bot use the snapshot. 2016-12-05 08:18:28 +00:00
samples Reland of land "Turn libbase into a component" (patchset #1 id:1 of https://codereview.chromium.org/2396933002/ ) 2016-10-07 07:56:52 +00:00
src [turbofan] Add and use bytecode loop assigment analysis 2016-12-15 13:24:19 +00:00
test [turbofan] Add and use bytecode loop assigment analysis 2016-12-15 13:24:19 +00:00
testing
third_party [inspector] Roll inspector_protocol to c65b17da8a32bc6ab25b4ebbef1008f23c69e7d1. 2016-12-05 16:22:12 +00:00
tools [release] Make release scripts work without gnumbd 2016-12-15 11:48:54 +00:00
.clang-format
.gitignore fix typo in .gitignore 2016-12-01 07:49:45 +00:00
.gn [build] Roll build a3b623a:11a223f 2016-11-29 11:17:15 +00:00
.ycm_extra_conf.py
AUTHORS Return false in TryNumberToSize if the number is 1 << 64. 2016-12-08 09:20:30 +00:00
BUILD.gn Add a basic compiler dispatcher 2016-12-12 15:36:25 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2016-12-15 04:32:39 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile Add v8_os_page_size flag for cross compilation 2016-11-15 14:41:03 +00:00
Makefile.android
OWNERS Remove oth from OWNERS 2016-09-05 13:38:25 +00:00
PRESUBMIT.py [test] Only run presubmit for changed status files 2016-12-06 11:42:11 +00:00
README.md
snapshot_toolchain.gni Use clang for snapshot_toolchain by default, except on ChromeOS. 2016-08-23 14:04:27 +00:00
WATCHLISTS [inspector] added devtools-reviews@chromium.org in WATCHLISTS for inspector 2016-09-29 15:16:54 +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://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.