Add test for deoptimization bug.
authortitzer <titzer@chromium.org>
Wed, 22 Apr 2015 14:33:06 +0000 (07:33 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 22 Apr 2015 14:32:49 +0000 (14:32 +0000)
R=jarin@chromium.org,mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1100113002

Cr-Commit-Position: refs/heads/master@{#28013}

test/mjsunit/compiler/deopt-bool.js [new file with mode: 0644]
test/mjsunit/compiler/deopt-bool2.js [new file with mode: 0644]
test/mjsunit/mjsunit.status

diff --git a/test/mjsunit/compiler/deopt-bool.js b/test/mjsunit/compiler/deopt-bool.js
new file mode 100644 (file)
index 0000000..13a4a97
--- /dev/null
@@ -0,0 +1,28 @@
+// Copyright 2015 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
+
+function foo(a, b) {
+  var passed = a == 3;
+  if (passed) {
+    if (passed) {
+      passed = b == 4;
+    }
+  }
+  %DeoptimizeFunction(foo);
+  return passed;
+}
+
+assertTrue(foo(3, 4));
+assertTrue(foo(3, 4));
+assertFalse(foo(3.1, 4));
+assertFalse(foo(3, 4.1));
+
+%OptimizeFunctionOnNextCall(foo);
+
+assertTrue(foo(3, 4));
+assertTrue(foo(3, 4));
+assertFalse(foo(3.1, 4));
+assertFalse(foo(3, 4.1));
diff --git a/test/mjsunit/compiler/deopt-bool2.js b/test/mjsunit/compiler/deopt-bool2.js
new file mode 100644 (file)
index 0000000..4d1c41e
--- /dev/null
@@ -0,0 +1,31 @@
+// Copyright 2015 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
+
+function foo(expected, x) {
+  var passed = expected.length == x.length;
+  for (var i = 0; i < expected.length; i++) {
+    if (passed)
+      passed = expected[i] == x[i];
+  }
+  print("a");
+  print(passed);
+
+  %DeoptimizeFunction(foo);
+
+  print("b");
+  print(passed);
+  return passed;
+}
+
+assertTrue(foo([0,1], [0,1]));
+assertTrue(foo([0,2], [0,2]));
+assertFalse(foo([0,2.25], [0,2.75]));
+
+%OptimizeFunctionOnNextCall(foo);
+
+assertTrue(foo([0,1], [0,1]));
+assertTrue(foo([0,2], [0,2]));
+assertFalse(foo([0,2.25], [0,2.75]));
index 9aa83a2..ee5bf77 100644 (file)
   # from the deoptimizer to do that.
   'arguments-indirect': [PASS, NO_VARIANTS],
 
+  # TODO(jarin): deoptimizer materializes a number instead of a boolean.
+  'compiler/deopt-bool': [PASS, NO_VARIANTS],
+  'compiler/deopt-bool2': [PASS, NO_VARIANTS],
+
   # TODO(verwaest): Some tests are over-restrictive about object layout.
   'array-constructor-feedback': [PASS, NO_VARIANTS],
   'array-feedback': [PASS, NO_VARIANTS],