function build_getter(i) { var x = [i]; returnfunction f() { return x; }
}
function test()
{ var N = internalConst("MARK_STACK_BASE_CAPACITY") + 2; var o = {}; var descriptor = { enumerable: true}; for (var i = 0; i != N; ++i) {
descriptor.get = build_getter(i);
Object.defineProperty(o, i, descriptor);
}
// At this point we have an object o with N getters. Each getter in turn // is a closure storing an array. During the GC we push to the object // marking stack all the getters found in an object after we mark it. As N // exceeds the size of the object marking stack, this requires to run the // dealyed scanning for some closures to mark the array objects stored in // them. // // We run the GC twice to make sure that the background finalization // finishes before we access the objects.
gc();
gc(); for (var i = 0; i != N; ++i)
assertEq(o[i][0], i);
}
test();
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.