view graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java @ 19530:863c42893cc4

[SPARC] Fix SPARCHotSpotJumpToExceptionHandlerInCallerOp and SPARCAllocatorTest
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Sat, 21 Feb 2015 22:26:55 +0100
parents 88a0c46687d9
children b14a235f06eb
line wrap: on
line source

/*
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package com.oracle.graal.compiler.sparc.test;

import static org.junit.Assume.*;

import org.junit.*;

import com.oracle.graal.compiler.test.backend.*;
import com.oracle.graal.sparc.*;

public class SPARCAllocatorTest extends AllocatorTest {

    @Before
    public void checkSPARC() {
        assumeTrue("skipping SPARC specific test", getTarget().arch instanceof SPARC);
    }

    @Test
    public void test1() {
        testAllocation("test1snippet", 1, 0, 0);
    }

    public static long test1snippet(long x) {
        return x + 5;
    }

    @Test
    public void test2() {
        testAllocation("test2snippet", 1, 0, 0);
    }

    public static long test2snippet(long x) {
        return x * 5;
    }

    @Test
    public void test3() {
        testAllocation("test3snippet", 3, 1, 0);
    }

    public static long test3snippet(long x) {
        return x / 3 + x % 3;
    }

}