commit | 7bb6dc0e06fa158df508bc8997f0fce4e33512a5 | [log] [tgz] |
---|---|---|
author | Jaroslav Sevcik <jarin@chromium.org> | Fri Feb 08 15:26:18 2019 |
committer | Commit Bot <commit-bot@chromium.org> | Fri Feb 08 16:14:23 2019 |
tree | 07b647c8d1916d1c682edd84302a047550bef6bf | |
parent | d3c4a0b087673a3ad81d73c9955bd544b27edc90 [diff] |
[turbofan] Introduce aborting bounds checks. Instead of eliminating bounds checks based on types, we introduce an aborting bounds check that crashes rather than deopts. Bug: v8:8806 Change-Id: Icbd9c4554b6ad20fe4135b8622590093679dac3f Reviewed-on: https://chromium-review.googlesource.com/c/1460461 Commit-Queue: Jaroslav Sevcik <jarin@chromium.org> Reviewed-by: Tobias Tebbi <tebbi@chromium.org> Cr-Commit-Position: refs/heads/master@{#59467}
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.