Go to file
leszeks 1c0c5fda26 [Interpreter] Move context chain search loop to handler
Moves the context chain search loop out of generated bytecode, and into
the (Lda|Ldr|Sda)ContextSlot handler, by passing the context depth in as
an additional operand. This should decrease the bytecode size and
increase performance for deep context chain searches, at the cost of
slightly increasing bytecode size for shallow context access.

Review-Url: https://codereview.chromium.org/2336643002
Cr-Commit-Position: refs/heads/master@{#39378}
2016-09-13 11:09:33 +00:00
benchmarks
build_overrides
docs
gni
gypfiles [gn] Switch off gyp in runhooks by default 2016-09-09 14:23:14 +00:00
include Add two CpuProfileNode API functions to allow thread safe access to the node. 2016-09-09 15:51:02 +00:00
infra [gn] Switch mipsel and mips64el bots to gn 2016-09-13 07:42:09 +00:00
samples
src [Interpreter] Move context chain search loop to handler 2016-09-13 11:09:33 +00:00
test [Interpreter] Move context chain search loop to handler 2016-09-13 11:09:33 +00:00
testing
third_party/binutils
tools [turbolizer] Give the HTML file a title, for bookmarks and tab labels. 2016-09-08 21:29:01 +00:00
.clang-format
.gitignore
.gn
.ycm_extra_conf.py
AUTHORS
BUILD.gn [gn] Add gn configs for mips to match old behavior 2016-09-13 07:33:11 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2016-09-12 14:34:27 +00:00
LICENSE
LICENSE.fdlibm
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.