diff options
author | Michaël Zasso <targos@protonmail.com> | 2017-12-05 16:41:55 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2017-12-06 12:52:07 +0100 |
commit | 1854ba04e9a68f062beb299dd6e1479279b26363 (patch) | |
tree | d5b2df9b8c1deb6388f7a728fca8e1c98c779abe /deps/v8/test/mjsunit/regress/wasm/regress-775710.js | |
parent | b52c23b75f96e1c9d2c7b3a7e5619170d0a0d8e1 (diff) | |
download | node-new-1854ba04e9a68f062beb299dd6e1479279b26363.tar.gz |
deps: update V8 to 6.3.292.46
PR-URL: https://github.com/nodejs/node/pull/16271
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/v8/test/mjsunit/regress/wasm/regress-775710.js')
-rw-r--r-- | deps/v8/test/mjsunit/regress/wasm/regress-775710.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/regress/wasm/regress-775710.js b/deps/v8/test/mjsunit/regress/wasm/regress-775710.js new file mode 100644 index 0000000000..5e6fb8c50b --- /dev/null +++ b/deps/v8/test/mjsunit/regress/wasm/regress-775710.js @@ -0,0 +1,20 @@ +// Copyright 2017 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: --validate-asm --allow-natives-syntax + +const kMaxLocals = 50000; +const fn_template = '"use asm";\nfunction f() { LOCALS }\nreturn f;'; +for (var num_locals = kMaxLocals; num_locals < kMaxLocals + 2; ++num_locals) { + const fn_code = fn_template.replace( + 'LOCALS', + Array(num_locals) + .fill() + .map((_, idx) => 'var l' + idx + ' = 0;') + .join('\n')); + const asm_fn = new Function(fn_code); + const f = asm_fn(); + f(); + assertEquals(num_locals <= kMaxLocals, %IsAsmWasmCode(asm_fn)); +} |