2019-03-15 18:35:06 +05:30
|
|
|
// Copyright 2019 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 --noenable-slow-asserts
|
2019-11-08 15:39:11 +01:00
|
|
|
// This test triggers optimization manually, no stress mode necessary.
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --noalways-turbofan
|
2019-03-15 18:35:06 +05:30
|
|
|
|
|
|
|
// This call ensures that TurboFan won't inline array constructors.
|
2019-08-16 11:32:46 +02:00
|
|
|
Array(2 ** 30);
|
2019-03-15 18:35:06 +05:30
|
|
|
|
|
|
|
// Set up a fast holey smi array, and generate optimized code.
|
2019-08-16 11:32:46 +02:00
|
|
|
let a = [1, 2, , , , 3];
|
2019-03-15 18:35:06 +05:30
|
|
|
function mapping(a) {
|
|
|
|
return a.map(v => v);
|
2019-08-16 11:32:46 +02:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(mapping);
|
2019-03-15 18:35:06 +05:30
|
|
|
mapping(a);
|
|
|
|
mapping(a);
|
|
|
|
%OptimizeFunctionOnNextCall(mapping);
|
|
|
|
mapping(a);
|
|
|
|
|
|
|
|
// Now lengthen the array, but ensure that it points to a non-dictionary
|
|
|
|
// backing store.
|
2025-04-29 08:03:15 +02:00
|
|
|
a.length = d8.constants.maxFastArrayLength - 1;
|
2019-08-16 11:32:46 +02:00
|
|
|
a.fill(1, 0);
|
2019-03-15 18:35:06 +05:30
|
|
|
a.push(2);
|
|
|
|
a.length += 500;
|
|
|
|
// Now, the non-inlined array constructor should produce an array with
|
|
|
|
// dictionary elements: causing a crash.
|
|
|
|
mapping(a);
|