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

Side by Side Diff: test/mjsunit/compiler/osr-manual2.js

Issue 1960043002: [turbofan] Remove deprecated --turbo-osr flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « test/mjsunit/compiler/osr-manual1.js ('k') | test/mjsunit/compiler/osr-multiple.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 --use-osr --turbo-osr 5 // Flags: --allow-natives-syntax --use-osr
6 6
7 var counter = 188; 7 var counter = 188;
8 8
9 function gen(w) { // defeat compiler cache. 9 function gen(w) { // defeat compiler cache.
10 var num = counter++; 10 var num = counter++;
11 var Z = [ "", "", "", ]; 11 var Z = [ "", "", "", ];
12 Z[w] = "%OptimizeOsr()"; 12 Z[w] = "%OptimizeOsr()";
13 var src = 13 var src =
14 "function f" + num + "(a,b,c) {" + 14 "function f" + num + "(a,b,c) {" +
15 " var x = 0;" + 15 " var x = 0;" +
(...skipping 10 matching lines...) Expand all
26 function check(x,a,b,c) { 26 function check(x,a,b,c) {
27 for (var i = 0; i < 3; i++) { 27 for (var i = 0; i < 3; i++) {
28 var f = gen(i); 28 var f = gen(i);
29 assertEquals(x, f(a, b, c)); 29 assertEquals(x, f(a, b, c));
30 } 30 }
31 } 31 }
32 32
33 check(213, 3,3,3); 33 check(213, 3,3,3);
34 check(365, 4,5,6); 34 check(365, 4,5,6);
35 check(6948, 99,98,97); 35 check(6948, 99,98,97);
OLDNEW
« no previous file with comments | « test/mjsunit/compiler/osr-manual1.js ('k') | test/mjsunit/compiler/osr-multiple.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698