Update V8 to version 4.1.0.21

This is a cherry-pick of all commits up to and including the
4.1.0.21 cherry-pick in Chromium.

Original commit message:

Version 4.1.0.21 (cherry-pick)

Merged 206e9136bde0f2b5ae8cb77afbb1e7833e5bd412

Unlink pages from the space page list after evacuation.

BUG=430201
LOG=N
R=jkummerow@chromium.org

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

Cr-Commit-Position: refs/branch-heads/4.1@{#22}
Cr-Branched-From: 2e08d2a7aa9d65d269d8c57aba82eb38a8cb0a18-refs/heads/candidates@{#25353}

---

Change-Id: I8c23c7bbb70772b4858fe8a47b64fa97ee0d1f8c
1279 files changed
tree: a63ee37f93192ad427f88ed926743f6bb6014312
  1. benchmarks/
  2. build/
  3. include/
  4. preparser/
  5. samples/
  6. src/
  7. test/
  8. testing/
  9. tools/
  10. .gitignore
  11. Android.d8.mk
  12. Android.libv8.mk
  13. Android.mk
  14. Android.mksnapshot.mk
  15. Android.v8common.mk
  16. AUTHORS
  17. BUILD.gn
  18. ChangeLog
  19. CleanSpec.mk
  20. codereview.settings
  21. DEPS
  22. LICENSE
  23. LICENSE.strongtalk
  24. LICENSE.v8
  25. LICENSE.valgrind
  26. Makefile
  27. Makefile.android
  28. Makefile.nacl
  29. MODULE_LICENSE_BSD
  30. NOTICE
  31. OWNERS
  32. PRESUBMIT.py
  33. README.md
  34. SConstruct
  35. snap.cc
  36. V8_MERGE_REVISION
  37. 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/*