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

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

Issue 1801573002: Version 5.0.71.17 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Patch Set: Created 4 years, 9 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 | « test/mjsunit/regress/regress-crbug-592343.js ('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 2016 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 // Flags: --expose-gc --stack-size=120
6
7 var __v_11 = {};
8 function __f_2(depth) {
9 try {
10 __f_5(depth, __v_11);
11 return true;
12 } catch (e) {
13 gc();
14 }
15 }
16 function __f_5(n, __v_4) {
17 if (--n == 0) {
18 __f_1(__v_4);
19 return;
20 }
21 __f_5(n, __v_4);
22 }
23 function __f_1(__v_4) {
24 var __v_5 = new RegExp(__v_4);
25 }
26 function __f_4() {
27 var __v_1 = 100;
28 var __v_8 = 100000;
29 while (__v_1 < __v_8 - 1) {
30 var __v_3 = Math.floor((__v_1 + __v_8) / 2);
31 if (__f_2(__v_3)) {
32 __v_1 = __v_3;
33 } else {
34 __v_8 = __v_3;
35 }
36 }
37 }
38 __f_4();
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-crbug-592343.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698