Align SnapshotData to word boundary.  DO NOT MERGE.

Point fix for a misaligned memory access crash in pacprocessor.
Ideally we might want to pull in a more recent v8 snapshot here,
but external/v8 is currently only used by external/chromium-libpac
to parse Javascript-based PAC files and the latter no longer has
a owner. So let's just fix this particular crash for now and keep
the rest untouched.

Bug: 26150045
Change-Id: I28e4c8fede9b97009049857aa253da78f68a6368
(cherry picked from commit 3be4787cb29a331821b788e04e7589e1d29a8d15)

Bug: 31987131
Bug: 29178923
1 file changed
tree: e5e070ef8ea9b2a6e6fb079545dba892ed7ed8e0
  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. V8_MERGE_REVISION
  36. 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/*