summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js')
-rw-r--r--deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js b/deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js
new file mode 100644
index 0000000000..c0ccb8c7ca
--- /dev/null
+++ b/deps/v8/test/mjsunit/maglev/inline-fresh-parent-deopt-frame.js
@@ -0,0 +1,22 @@
+// Copyright 2022 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 --maglev --maglev-inlining
+
+function inlined(x) {
+ return x + x;
+}
+
+function foo(y) {
+ let a = inlined(1);
+ let b = inlined(y);
+ return a + b;
+}
+
+%PrepareFunctionForOptimization(foo);
+%PrepareFunctionForOptimization(inlined);
+assertEquals(6, foo(2));
+%OptimizeMaglevOnNextCall(foo);
+assertEquals(6, foo(2));
+assertEquals(6.2, foo(2.1));