d234118e29
Reason for revert: failing gc stress tests: https://build.chromium.org/p/client.v8/builders/V8%20Mac%20GC%20Stress/builds/7223/steps/Mjsunit/logs/stdio Original issue's description: > [runtime] making heap verification more aggressive > > - check that packed elements do not contain the_hole (with fix) > - verify argument objects with elements kind > - use JSObjectVerifiy in all JSObject "subclasses" > - change initialization order for ArrayLiteralBoilerplate to simplify verification > > BUG=v8:5188 > > Committed: https://crrev.com/599aa2e106ca8ab79f5cc489d1b93b6a26b19714 > Cr-Commit-Position: refs/heads/master@{#37680} TBR=ishell@chromium.org,ulan@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=v8:5188 Review-Url: https://codereview.chromium.org/2140163002 Cr-Commit-Position: refs/heads/master@{#37682}
36 lines
958 B
JavaScript
36 lines
958 B
JavaScript
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
function loader(dst, src, i) {
|
|
dst[i] = src[i];
|
|
}
|
|
|
|
var ab = new ArrayBuffer(8);
|
|
var i_view = new Int32Array(ab);
|
|
i_view[0] = %GetHoleNaNUpper()
|
|
i_view[1] = %GetHoleNaNLower();
|
|
var f_view = new Float64Array(ab);
|
|
|
|
var fixed_double_elements = new Float64Array(1);
|
|
|
|
function opt_store() { fixed_double_elements[0] = f_view[0]; }
|
|
|
|
opt_store();
|
|
opt_store();
|
|
%OptimizeFunctionOnNextCall(opt_store);
|
|
opt_store();
|
|
|
|
var i32 = new Int32Array(fixed_double_elements.buffer);
|
|
assertEquals(i_view[0], i32[0]);
|
|
assertEquals(i_view[1], i32[1]);
|
|
|
|
var doubles = [0.5];
|
|
loader(doubles, fixed_double_elements, 0);
|
|
loader(doubles, fixed_double_elements, 0);
|
|
%OptimizeFunctionOnNextCall(loader);
|
|
loader(doubles, fixed_double_elements, 0);
|
|
assertTrue(doubles[0] !== undefined);
|