view graal/com.oracle.truffle.sl.test/tests/LoopInvalidate.sl @ 18755:59953a46c56f

Truffle-DSL: migrate DSL tests to use @GenerateNodeFactory.
author Christian Humer <christian.humer@gmail.com>
date Mon, 29 Dec 2014 23:38:30 +0100
parents afd6fa5e8229
children
line wrap: on
line source

function add(a, b) {
  return a + b;
}

function loop(n) {
  i = 0;  
  while (i < n) {  
    i = add(i, 1);  
  }  
  return i;
}  

function main() {
  i = 0;
  while (i < 20) {
    loop(1000);
    i = i + 1;
  }
  add("a", "b");
  println(loop(1000));  
}