commit | 8279c47df01ac6dc28d67c411dfa36c61a068c62 | [log] [tgz] |
---|---|---|
author | Bryan Ferris <bferris@google.com> | Tue Mar 05 17:18:50 2019 -0800 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Wed Mar 13 18:01:15 2019 +0000 |
tree | d203d4f727f2610f7071ec39b2e8d9d0ac8f8a7d | |
parent | a84c4b763ed287f762e4112c73d9fb357605b02c [diff] |
Fix type confusion in libpac From the upstream patch (https://chromium.googlesource.com/v8/v8/+/ea55b873f2ed8336604540a532cbd460eeb66430%5E%21/#F0): """ Don't generate elements kind transitions from stable maps. IC system does its best to properly mark stable transition source maps as unstable (see https://chromium-review.googlesource.com/483442) however an already recorded map can be deprecated later and the optimizing compiler may try to generate an elements kind transition from the updated version of deprecated map which can "become" stable again. """ Bug: 117607414 Test: /data/nativetest/proxy_resolver_v8_unittest/proxy_resolver_v8_unittest Test: gts-tradefed run gts --test \ com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest \ --module GtsGmscoreHostTestCases Test: PoC from bug report Merged-In: I2e02d994f107e64e4f465b4d8a02d4159a95240e Change-Id: I12c501bffd190e20d4a45a4256a403c5343350eb (cherry picked from commit 97832faf9d62ce9d6ca0639eacac0a930e51df8a)
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.