view graal/com.oracle.graal.truffle.test/sl/TestCompilationThreshold.sl @ 18981:48b79b8e18f1

fix TruffleBoundary usage in SLCallUntilOptimizedBuiltin
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 27 Jan 2015 23:19:40 +0100
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)));
}