Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: test/mjsunit/regress/regress-crbug-469768.js

Issue 1056913003: JSEntryTrampoline: check for stack space before pushing arguments (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x64/builtins-x64.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Try several different argument counts to make sure none of them
6 // sneak through the system of stack checks.
7
8 try {
9 Array.prototype.concat.apply([], new Array(100000));
10 } catch (e) {
11 // Throwing is fine, just don't crash.
12 }
13
14
15 try {
16 Array.prototype.concat.apply([], new Array(150000));
17 } catch (e) {
18 // Throwing is fine, just don't crash.
19 }
20
21
22 try {
23 Array.prototype.concat.apply([], new Array(200000));
24 } catch (e) {
25 // Throwing is fine, just don't crash.
26 }
27
28
29 try {
30 Array.prototype.concat.apply([], new Array(248000));
31 } catch (e) {
32 // Throwing is fine, just don't crash.
33 }
OLDNEW
« no previous file with comments | « src/x64/builtins-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698