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

Unified Diff: test/mjsunit/compiler/inlined-array-pop-getter2.js

Issue 2239703002: [turbofan] Add inlined Array.prototype.pop support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Only convert hole to undefined for holey elements Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/compiler/inlined-array-pop-getter1.js ('k') | test/mjsunit/compiler/inlined-array-pop-opt.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/inlined-array-pop-getter2.js
diff --git a/test/mjsunit/compiler/inlined-array-pop-getter2.js b/test/mjsunit/compiler/inlined-array-pop-getter2.js
new file mode 100644
index 0000000000000000000000000000000000000000..8ae642619e73744a961a7b7de9b36bd1cd398940
--- /dev/null
+++ b/test/mjsunit/compiler/inlined-array-pop-getter2.js
@@ -0,0 +1,23 @@
+// Copyright 2016 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
+
+var pop = Array.prototype.pop;
+
+function foo(a) {
+ a.length;
+ return pop.call(a);
+}
+
+var a = new Array(4);
+var o = {}
+o.__defineGetter__(0, function() { return 1; });
+
+assertEquals(undefined, foo(a));
+assertEquals(undefined, foo(a));
+%OptimizeFunctionOnNextCall(foo);
+assertEquals(undefined, foo(a));
+Array.prototype.__proto__ = o;
+assertEquals(1, foo(a));
« no previous file with comments | « test/mjsunit/compiler/inlined-array-pop-getter1.js ('k') | test/mjsunit/compiler/inlined-array-pop-opt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698