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

Side by Side Diff: test/mjsunit/compiler/deopt-string-outofbounds.js

Issue 2653753007: [tests] Cleanup tests that use assertOptimized()/assertUnoptimized(). (Closed)
Patch Set: Addressing comments Created 3 years, 11 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
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --allow-natives-syntax 5 // Flags: --allow-natives-syntax --crankshaft --no-always-opt
6 6
7 var s = "12345"; 7 var s = "12345";
8 8
9 (function() { 9 (function() {
10 function foo() { return s[5]; } 10 function foo() { return s[5]; }
11 11
12 foo(); 12 foo();
13 foo(); 13 foo();
14 %OptimizeFunctionOnNextCall(foo); 14 %OptimizeFunctionOnNextCall(foo);
15 foo(); 15 foo();
16 %OptimizeFunctionOnNextCall(foo); 16 %OptimizeFunctionOnNextCall(foo);
17 foo(); 17 foo();
18 assertOptimized(foo); 18 assertOptimized(foo);
19 })(); 19 })();
20 20
21 (function() { 21 (function() {
22 function foo(i) { return s[i]; } 22 function foo(i) { return s[i]; }
23 23
24 foo(0); 24 foo(0);
25 foo(1); 25 foo(1);
26 %OptimizeFunctionOnNextCall(foo); 26 %OptimizeFunctionOnNextCall(foo);
27 foo(5); 27 foo(5);
28 %OptimizeFunctionOnNextCall(foo); 28 %OptimizeFunctionOnNextCall(foo);
29 foo(5); 29 foo(5);
30 assertOptimized(foo); 30 assertOptimized(foo);
31 })(); 31 })();
OLDNEW
« no previous file with comments | « test/mjsunit/compiler/deopt-numberoroddball-binop.js ('k') | test/mjsunit/compiler/increment-typefeedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698