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

Side by Side Diff: test/mjsunit/ignition/regress-599001-verifyheap.js

Issue 1962723002: [turbofan] Implement top-level lookup slot declaration. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip timeouts. Created 4 years, 7 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 | « src/full-codegen/x87/full-codegen-x87.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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: --verify-heap --expose-gc 5 // Flags: --ignition --verify-heap --expose-gc
6 6
7 // Tests that verify heap works for BytecodeArrays in the large object space. 7 // Tests that verify heap works for BytecodeArrays in the large object space.
8 8
9 // Creates a list of variable declarations and calls it through eval to 9 // Creates a list of variable declarations and calls it through eval to
10 // generate a large BytecodeArray. 10 // generate a large BytecodeArray.
11 var s = ""; 11 var s = "";
12 for (var i = 0; i < 65535; i++) { 12 for (var i = 0; i < 65535; i++) {
13 s += ("var a" + i + ";"); 13 s += ("var a" + i + ";");
14 } 14 }
15 15
16 (function() { eval(s); })(); 16 (function() { eval(s); })();
17 gc(); 17 gc();
OLDNEW
« no previous file with comments | « src/full-codegen/x87/full-codegen-x87.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698