Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: test/mjsunit/regress/regress-undefined-nan3.js

Issue 863153002: Double field values need sNaN -> qNaN canonicalization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/regress/regress-undefined-nan.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --allow-natives-syntax 5 // Flags: --allow-natives-syntax
6 6
7 function loader(dst, src, i) {
8 dst[i] = src[i];
9 }
10
11 var ab = new ArrayBuffer(8); 7 var ab = new ArrayBuffer(8);
12 var i_view = new Int32Array(ab); 8 var i_view = new Int32Array(ab);
13 i_view[0] = 0xFFF7FFFF; 9 i_view[0] = 0xFFF7FFFF;
14 i_view[1] = 0xFFF7FFFF; 10 i_view[1] = 0xFFF7FFFF;
15 var f_view = new Float64Array(ab); 11 var f_view = new Float64Array(ab);
16 12
17 var fixed_double_elements = new Float64Array(1); 13 var fixed_double_elements = new Float64Array(1);
18 fixed_double_elements[0] = f_view[0]; 14 fixed_double_elements[0] = f_view[0];
19 15
16 function A(src) { this.x = src[0]; }
17
18 new A(fixed_double_elements);
19 new A(fixed_double_elements);
20
21 %OptimizeFunctionOnNextCall(A);
22
23 var obj = new A(fixed_double_elements);
24
25 function move_x(dst, obj) { dst[0] = obj.x; }
26
20 var doubles = [0.5]; 27 var doubles = [0.5];
21 loader(doubles, fixed_double_elements, 0); 28 move_x(doubles, obj);
22 loader(doubles, fixed_double_elements, 0); 29 move_x(doubles, obj);
23 %OptimizeFunctionOnNextCall(loader); 30 %OptimizeFunctionOnNextCall(move_x);
24 loader(doubles, fixed_double_elements, 0); 31 move_x(doubles, obj);
25 assertTrue(doubles[0] !== undefined); 32 assertTrue(doubles[0] !== undefined);
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-undefined-nan.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698