view graal/com.oracle.graal.truffle.test/sl/TestInliningMaxCallerSize.sl @ 19960:999430bcc941

Small fix for memory schedule verification. The begin node is not always the first node in the block if it is at the same time also the end node.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 19 Mar 2015 15:38:33 +0100
parents 04d6bb76cfb3
children bb7e95512781
line wrap: on
line source

/* 
 * This test verifies that CallTargets cannot exceed the TruffleInliningMaxCallerSize limit when inlining.
 */
function inlinableFunction() { 
    generateDummyNodes(getOption("TruffleInliningMaxCallerSize") - 8);
}

function notInlinableFunction() { 
    generateDummyNodes(getOption("TruffleInliningMaxCallerSize") - 7);
}

function test1() {
    inlinableFunction(); 
}

function test2() {
    notInlinableFunction(); 
}

function main() {
    originalMaxCallerSize = getOption("TruffleInliningMaxCallerSize");
    setOption("TruffleInliningMaxCallerSize", 20);
    callUntilOptimized(test1);
    assertTrue(isInlined(test1, test1, inlinableFunction), "inlinableFunction is not inlined");
    
    callUntilOptimized(test2); 
    assertFalse(isInlined(test2, test2, notInlinableFunction), "notInlinableFunction is inlined"); 
    setOption("TruffleInliningMaxCallerSize", originalMaxCallerSize);
}