if-folding.js 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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.

function Module() {
  "use asm";

  function if0() {
    if (0) return 11;
    return 12;
  }

  function if1() {
    if (1) return 13;
    return 14;
  }

  function if2() {
    if (0) return 15;
    else return 16;
21
    return 0;  // needed for validation
22 23 24 25 26
  }

  function if3() {
    if (1) return 17;
    else return 18;
27
    return 0;  // needed for validation
28 29 30
  }

  function if4() {
31
    return (1 ? 19 : 20) | 0;
32 33 34
  }

  function if5() {
35
    return (0 ? 21 : 22) | 0;
36 37 38
  }

  function if6() {
39 40 41
    var x = 0;
    x = 0 ? 23 : 24;
    return x | 0;
42 43 44
  }

  function if7() {
45 46 47 48 49 50 51
    var x = 0;
    if (0) {
      x = 0 ? 25 : 26;
    } else {
      x = 0 ? 27 : 28;
    }
    return x | 0;
52 53 54
  }

  function if8() {
55
    var x = 0;
56
    if (0) {
57 58 59 60 61
      if (0) {
        x = 0 ? 29 : 30;
      } else {
        x = 0 ? 31 : 32;
      }
62
    } else {
63 64 65 66 67
      if (0) {
        x = 0 ? 33 : 34;
      } else {
        x = 0 ? 35 : 36;
      }
68
    }
69
    return x | 0;
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  }

  return {if0: if0, if1: if1, if2: if2, if3: if3, if4: if4, if5: if5, if6: if6, if7: if7, if8: if8 };
}

var m = Module();
assertEquals(12, m.if0());
assertEquals(13, m.if1());
assertEquals(16, m.if2());
assertEquals(17, m.if3());
assertEquals(19, m.if4());
assertEquals(22, m.if5());
assertEquals(24, m.if6());
assertEquals(28, m.if7());
assertEquals(36, m.if8());


87
function Spec0(stdlib, foreign, heap) {
88 89
  "use asm";

90 91 92
  var xx = foreign.a | 0;
  var yy = foreign.b | 0;
  var zz = foreign.c | 0;
93 94

  function f() {
95
    var x = 0;
96
    if (xx) {
97 98 99 100 101
      if (yy) {
        x = zz ? 29 : 30;
      } else {
        x = zz ? 31 : 32;
      }
102
    } else {
103 104 105 106 107
      if (yy) {
        x = zz ? 33 : 34;
      } else {
        x = zz ? 35 : 36;
      }
108
    }
109
    return x | 0;
110 111 112
  }
  return {f: f};
}
113
var Spec = (a, b, c) => Spec0(this, {a: a, b: b, c: c});
114 115 116 117 118 119 120 121 122

assertEquals(36, Spec(0,0,0).f());
assertEquals(35, Spec(0,0,1).f());
assertEquals(34, Spec(0,1,0).f());
assertEquals(33, Spec(0,1,1).f());
assertEquals(32, Spec(1,0,0).f());
assertEquals(31, Spec(1,0,1).f());
assertEquals(30, Spec(1,1,0).f());
assertEquals(29, Spec(1,1,1).f());