view graal/com.oracle.graal.truffle.test/src/sl/TestIsCompilationConstant1.sl @ 23269:52f1bd96653f

ensure OptionValues have a name if profiling their reads
author Doug Simon <doug.simon@oracle.com>
date Thu, 07 Jan 2016 15:00:09 +0100
parents bba4e91a2d63
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");
}