Comment #1 on issue 3839 by [email protected]: Use signaling NaN as
hole_nan for FixedDoubleArrays
https://code.google.com/p/v8/issues/detail?id=3839
The NeedsCanonicalization predicate is still wrong, the following test
fails with Crankshaft:
var ab = new ArrayBuffer(8);
var i_view = new Int32Array(ab);
i_view[0] = 0xFFF7FFFF;
i_view[1] = 0xFFF7FFFF;
var f_view = new Float64Array(ab);
var fixed_double_elements = new Float64Array(1);
fixed_double_elements[0] = f_view[0];
function A(src) { this.x = src[0]; }
new A(fixed_double_elements);
new A(fixed_double_elements);
%OptimizeFunctionOnNextCall(A);
var obj = new A(fixed_double_elements);
function move_x(dst, obj) { dst[0] = obj.x; }
var doubles = [0.5];
move_x(doubles, obj);
move_x(doubles, obj);
%OptimizeFunctionOnNextCall(move_x);
move_x(doubles, obj);
assertTrue(doubles[0] !== undefined);
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.