view graal/com.oracle.graal.truffle.test/src/sl/TestCompilationThreshold.sl @ 23296:2bd7d1d8acd4 graal-0.12

updated CHANGELOG.md for 0.12 release
author Doug Simon <doug.simon@oracle.com>
date Tue, 12 Jan 2016 15:33:25 +0100
parents bba4e91a2d63
children
line wrap: on
line source

/*
 * This test verifies the compilation threshold property.
 */
function test() {
}  

function main() {  
    /* TODO disableSplitting is required because otherwise it needs more calls to warm up. This still needs to be fixed. */
    disableSplitting(test); 
    threshold = getOption("TruffleCompilationThreshold");
    i = 0;
    while (i < threshold -1) {
        test();
        i = i + 1;
    }
    assertFalse(isOptimized(waitForOptimization(test)));
    test();                         // triggers compilation
    assertTrue(isOptimized(waitForOptimization(test)));
}