commit | a943c9e4d8b144c6cdf276e5245a0b8c3390e6a2 | [log] [tgz] |
---|---|---|
author | Miran.Karic <Miran.Karic@imgtec.com> | Thu Oct 06 13:57:43 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Oct 06 13:57:59 2016 |
tree | 6d9515700380b1b9e8c648af91a6a840b7824cf4 | |
parent | 3b1b544c205fe6913dd00e7aeef6e22984ba67ea [diff] |
MIPS: Fix segment alignment. Recent changes in Segment class caused many tests to fail on mips32 because of an unaligned read error. Setting the alignment to 8 for mips fixes the issue. Accessing doubles on mips32 must be eight bit aligned. BUG= Review-Url: https://codereview.chromium.org/2390303003 Cr-Commit-Position: refs/heads/master@{#40039}
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
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/*
Please follow the instructions mentioned on the V8 wiki.