summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/osr-multiple.js
blob: 72fff8546c8c17bc8c13cddc7f89f6b4d17d364e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2014 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: --use-osr

function f1(a,b,c) {
  var x = 0;
  var y = 0;
  var z = 0;
  while (a > 0) { x += 19; a--; }
  while (b > 0) { y += 23; b--; }
  while (c > 0) { z += 29; c--; }
  return x + y + z;
}

function f2(a,b,c) {
  var x = 0;
  var y = 0;
  var z = 0;
  while (a > 0) { x += 19; a--; }
  while (b > 0) { y += 23; b--; }
  while (c > 0) { z += 29; c--; }
  return x + y + z;
}


function f3(a,b,c) {
  var x = 0;
  var y = 0;
  var z = 0;
  while (a > 0) { x += 19; a--; }
  while (b > 0) { y += 23; b--; }
  while (c > 0) { z += 29; c--; }
  return x + y + z;
}

function check(f,a,b,c) {
  assertEquals(a * 19 + b * 23 + c * 29, f(a,b,c));
}

check(f1, 50000,     5,     6);
check(f2,     4, 50000,     6);
check(f3,    11,    12, 50000);