2015-01-22 08:36:01 +00:00
|
|
|
// 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
|
|
|
|
|
|
|
|
var ab = new ArrayBuffer(8);
|
|
|
|
var i_view = new Int32Array(ab);
|
2019-06-12 14:00:50 +00:00
|
|
|
i_view[0] = %GetHoleNaNUpper();
|
2015-12-10 10:05:44 +00:00
|
|
|
i_view[1] = %GetHoleNaNLower();
|
2015-01-22 08:36:01 +00:00
|
|
|
var f_view = new Float64Array(ab);
|
|
|
|
|
|
|
|
var fixed_double_elements = new Float64Array(1);
|
|
|
|
fixed_double_elements[0] = f_view[0];
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
function A(src) {
|
|
|
|
this.x = src[0];
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(A);
|
2015-01-22 08:36:01 +00:00
|
|
|
new A(fixed_double_elements);
|
|
|
|
new A(fixed_double_elements);
|
|
|
|
|
|
|
|
%OptimizeFunctionOnNextCall(A);
|
|
|
|
|
|
|
|
var obj = new A(fixed_double_elements);
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
function move_x(dst, obj) {
|
|
|
|
dst[0] = obj.x;
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(move_x);
|
2015-01-22 08:36:01 +00:00
|
|
|
var doubles = [0.5];
|
|
|
|
move_x(doubles, obj);
|
|
|
|
move_x(doubles, obj);
|
|
|
|
%OptimizeFunctionOnNextCall(move_x);
|
|
|
|
move_x(doubles, obj);
|
|
|
|
assertTrue(doubles[0] !== undefined);
|