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/ignition/regress-672027.js

Issue 2557173004: [Interpreter] Allocate registers used as call arguments on-demand. (Closed)
Patch Set: Created 4 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --max-old-space-size=100
6
7 (function() {
8 var source = "[]"
9 for (var i = 0; i < 300; i++) {
10 source += ".concat([";
11 for (var j = 0; j < 1000; j++) {
12 source += "0,";
13 }
14 source += "0])"
15 }
16 eval(source);
17 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698