summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-1138075.js
blob: e68e1b5471300ed6a0b7252d36308f971bc3ac65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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: --allow-natives-syntax --turboprop --max-semi-space-size=1

function runNearStackLimit(f) {
  function t() {
    try {
      return t();
    } catch (e) {
      return f();
    }
  }
  %PrepareFunctionForOptimization(t);
  %OptimizeFunctionOnNextCall(t);
  return t();
}

function foo(a) {}
function bar(a, b) {}

for (let i = 0; i < 150; i++) {
  runNearStackLimit(() => {
    return foo(bar(3, 4) === false);
  });
}