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

Side by Side Diff: test/mjsunit/regress/regress-6373.js

Issue 2803853005: Inline Array.prototype.forEach in TurboFan (Closed)
Patch Set: Review feedback Created 3 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2017 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 var A = {}
6
7 A[Symbol.hasInstance] = function(x) {
8 %DeoptimizeFunction(foo);
9 return 1;
10 }
11
12 var a = {}
13
14 function foo(o) {
15 return o instanceof A;
16 }
17
18 foo(a);
19 foo(a);
20 assertTrue(foo(a) !== 1);
21 %OptimizeFunctionOnNextCall(foo);
22 assertTrue(foo(a) !== 1);
OLDNEW
« src/builtins/ia32/builtins-ia32.cc ('K') | « test/mjsunit/optimized-foreach.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698