view graal/com.oracle.graal.truffle.test/sl/TestIsCompilationConstant1.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 2834b4432586
children
line wrap: on
line source



function testConstantValue1() {
    return isCompilationConstant(42);
}

function testConstantValue2() {
    return isCompilationConstant(21 + 21);
}

function testConstantSequence() {
    40;
    return isCompilationConstant(42);
}

function testConstantLocalVariable() {
    x = 42;
    return isCompilationConstant(x);
}

function testNonConstantAdd() {
    return isCompilationConstant(42 + "42");
}


function main() {
    callFunctionsWith("testConstant", harnessTrue);
    callFunctionsWith("testNonConstant", harnessFalse);
}  

function harnessTrue(testFunction) {
    callUntilOptimized(testFunction);
    assertTrue(testFunction(), "test function " + testFunction + " is not constant");
}


function harnessFalse(testFunction) {
    callUntilOptimized(testFunction);
    assertFalse(testFunction(), "test function " + testFunction + " is constant");
}