v8/test/mjsunit/ignition/regress-599001-verifyheap.js
mythria 8a9ada4863 [Interpreter] Handles BytecodeArrays when scanning objects in heap.
Handles bytecodeArray Objects when verifying the heap and also when
collecting code statistics. The changes include:
1. BytecodeArrays could be a part of the large object space. When
verifying the large object space we should also allow BytecodeArray
objects.
2. Adds support for BytecodeArrays when collecting code statistics.

BUG=v8:4280,chromium:599001
LOG=N

Review URL: https://codereview.chromium.org/1850443006

Cr-Commit-Position: refs/heads/master@{#35202}
2016-04-01 13:14:33 +00:00

18 lines
503 B
JavaScript

// 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.
// Flags: --verify-heap --expose-gc
// Tests that verify heap works for BytecodeArrays in the large object space.
// Creates a list of variable declarations and calls it through eval to
// generate a large BytecodeArray.
var s = "";
for (var i = 0; i < 65535; i++) {
s += ("var a" + i + ";");
}
(function() { eval(s); })();
gc();