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

Side by Side Diff: test/mjsunit/array-push11.js

Issue 2497243002: [stubs] Port builtin for Array.push fast-case from Crankshaft to TF (Closed)
Patch Set: Cleanup Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 function __f_17(__v_9) { 5 function __f_17(__v_9) {
6 var __v_10 = 0; 6 var __v_10 = 0;
7 var count = 100000; 7 var count = 100000;
8 while (count-- != 0) { 8 while (count-- != 0) {
9 var l = __v_9.push(0); 9 var l = __v_9.push(0);
10 if (++__v_10 >= 2) return __v_9; 10 if (++__v_10 >= 2) return __v_9;
11 __v_10 = {}; 11 __v_10 = {};
12 } 12 }
13 return __v_9;
13 } 14 }
14 15
15 __f_17([]); 16 let a = __f_17([]);
17 assertEquals(a[0], 0);
18 assertEquals(a[10000], 0);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698