mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:51:35 +00:00

PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
20 lines
641 B
JavaScript
20 lines
641 B
JavaScript
// Copyright 2020 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: --no-wasm-trap-handler
|
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
// Without trap handlers, we are able to allocate basically arbitrarily many
|
|
// memories, because we don't need to reserve a huge amount of virtual address
|
|
// space.
|
|
|
|
const num_memories = 10000;
|
|
|
|
const memories = [];
|
|
while (memories.length < num_memories) {
|
|
print('Allocating memory #' + memories.length);
|
|
memories.push(new WebAssembly.Memory({initial: 1, maximum: 1}));
|
|
}
|