2016-12-23 16:30:57 +01:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --no-always-turbofan
|
2017-10-18 15:03:02 -07:00
|
|
|
|
2016-12-23 16:30:57 +01:00
|
|
|
// Generate a function with a very large closure.
|
|
|
|
source = "(function() {\n"
|
|
|
|
for (var i = 0; i < 65000; i++) {
|
|
|
|
source += " var a_" + i + " = 0;\n";
|
|
|
|
}
|
|
|
|
source += " return function() {\n"
|
|
|
|
for (var i = 0; i < 65000; i++) {
|
|
|
|
source += "a_" + i + "++;\n";
|
|
|
|
}
|
|
|
|
source += "}})();\n"
|
|
|
|
|
|
|
|
eval(source);
|