view graal/com.oracle.graal.truffle.test/src/sl/TestTruffleBoundary01.sl @ 23247:d455abbf413d

Do not peel loops with loop exits that unwind.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 02 Jan 2016 13:26:48 +0100
parents bba4e91a2d63
children
line wrap: on
line source

/* 
 * This test verifies that CallTargets cannot exceed the TruffleInliningMaxCallerSize limit when inlining.
 */

function test1() {
    testTruffleBoundary01();
}
function main() {
    callUntilOptimized(test1);
    assertTrue(isOptimized(test1), "inlinableFunction must be compiled properly");
}