view graal/com.oracle.graal.truffle.test/sl/TestCompilationThreshold.sl @ 19344:83b35b97959c

Merge with f7b121b82697c3c3adcce9f9ea3fcc241c2eb968
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Thu, 12 Feb 2015 16:57:30 -0800
parents 004e3f0a0517
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)));
}