OLD | NEW |
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: --use-osr --turbo-osr | 5 // Flags: --use-osr |
6 | 6 |
7 function f1(a,b,c) { | 7 function f1(a,b,c) { |
8 var x = 0; | 8 var x = 0; |
9 var y = 0; | 9 var y = 0; |
10 var z = 0; | 10 var z = 0; |
11 while (a > 0) { x += 19; a--; } | 11 while (a > 0) { x += 19; a--; } |
12 while (b > 0) { y += 23; b--; } | 12 while (b > 0) { y += 23; b--; } |
13 while (c > 0) { z += 29; c--; } | 13 while (c > 0) { z += 29; c--; } |
14 return x + y + z; | 14 return x + y + z; |
15 } | 15 } |
(...skipping 19 matching lines...) Expand all Loading... |
35 return x + y + z; | 35 return x + y + z; |
36 } | 36 } |
37 | 37 |
38 function check(f,a,b,c) { | 38 function check(f,a,b,c) { |
39 assertEquals(a * 19 + b * 23 + c * 29, f(a,b,c)); | 39 assertEquals(a * 19 + b * 23 + c * 29, f(a,b,c)); |
40 } | 40 } |
41 | 41 |
42 check(f1, 50000, 5, 6); | 42 check(f1, 50000, 5, 6); |
43 check(f2, 4, 50000, 6); | 43 check(f2, 4, 50000, 6); |
44 check(f3, 11, 12, 50000); | 44 check(f3, 11, 12, 50000); |
OLD | NEW |