Version 4.7.80.4 (cherry-pick)

Merged ba79bd48c264fc3f6dc25c944cad7b47c53ef3d2
Merged aa30d4e29d782d52dcb870e80e7cad71685758ba
Merged 623e8021322325cc979a7e32af81627db4bad98b
Merged 8de7235cafa2b8a0666682f052e6ad46caf89e41
Merged 96d6fcffa59b48ef968d4726654ec433953f14aa
Merged aeefe1013d268a1c8df7ac17e8b09fbbca90cc6e
Merged 6fb3708d68aa0a5c98bf026b099e068256800f64
Merged 1ed17f20574b9bef0f6dfabfe4d53dc0f7c9fee6

PPC: [builtin] Refactor Invoke to deal with any kind of callable.

PPC: [runtime] Remove weird pushing of something on StackOverflow.

PPC: [es6] Introduce spec compliant IsConstructor.

PPC: [turbofan] Call ArgumentsAccessStub to materialize arguments.

PPC: [es6] Fix invalid ToString in implementation of ToName.

PPC: Introduce LiteralsArray to hide it's implementation.

PPC: Full code shouldn't embed the type feedback vector.

[Interpreter] Fix cctest/test-bytecode-generator/IfConditions.

BUG=chromium:534881,v8:4413,v8:4413,v8:4430,v8:4430
LOG=N
R=hablich@chromium.org

Review URL: https://codereview.chromium.org/1374423003 .

Cr-Commit-Position: refs/branch-heads/4.7@{#7}
Cr-Branched-From: f3c89267db0fc6120d95046c3ff35a35ca34614f-refs/heads/master@{#31014}
9 files changed
tree: 33a27587c16bd2db19fac87732602f3584b219bc
  1. benchmarks/
  2. build/
  3. docs/
  4. include/
  5. infra/
  6. samples/
  7. src/
  8. test/
  9. testing/
  10. third_party/
  11. tools/
  12. .clang-format
  13. .gitignore
  14. .ycm_extra_conf.py
  15. AUTHORS
  16. BUILD.gn
  17. ChangeLog
  18. codereview.settings
  19. DEPS
  20. LICENSE
  21. LICENSE.strongtalk
  22. LICENSE.v8
  23. LICENSE.valgrind
  24. Makefile
  25. Makefile.android
  26. Makefile.nacl
  27. OWNERS
  28. PRESUBMIT.py
  29. README.md
  30. snapshot_toolchain.gni
  31. WATCHLISTS
README.md

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://code.google.com/p/v8/

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.