view graal/com.oracle.graal.snippets/src/com/oracle/graal/snippets/UnsignedMathSubstitutions.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents fe9f252f0d05
children 630ea5001e33
line wrap: on
line source

/*
 * Copyright (c) 2011, 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.snippets;

import static com.oracle.graal.nodes.MaterializeNode.*;
import static com.oracle.graal.nodes.calc.Condition.*;

import com.oracle.graal.api.code.*;
import com.oracle.graal.api.meta.*;
import com.oracle.graal.nodes.calc.*;
import com.oracle.graal.snippets.ClassSubstitution.*;

/**
 * Substitutions for {@link UnsignedMath}.
 */
@ClassSubstitution(UnsignedMath.class)
public class UnsignedMathSubstitutions {

    @MethodSubstitution
    public static boolean aboveThan(int a, int b) {
        return materialize(BT, b, a);
    }

    @MethodSubstitution
    public static boolean aboveOrEqual(int a, int b) {
        return !materialize(BT, a, b);
    }

    /**
     * Unsigned comparison belowThan for two numbers.
     */
    @MethodSubstitution
    public static boolean belowThan(int a, int b) {
        return materialize(BT, a, b);
    }

    /**
     * Unsigned comparison belowOrEqual for two numbers.
     */
    @MethodSubstitution
    public static boolean belowOrEqual(int a, int b) {
        return !materialize(BT, b, a);
    }

    /**
     * Unsigned comparison aboveThan for two numbers.
     */
    @MethodSubstitution
    public static boolean aboveThan(long a, long b) {
        return materialize(BT, b, a);
    }

    /**
     * Unsigned comparison aboveOrEqual for two numbers.
     */
    @MethodSubstitution
    public static boolean aboveOrEqual(long a, long b) {
        return !materialize(BT, a, b);
    }

    /**
     * Unsigned comparison belowThan for two numbers.
     */
    @MethodSubstitution
    public static boolean belowThan(long a, long b) {
        return materialize(BT, a, b);
    }

    /**
     * Unsigned comparison belowOrEqual for two numbers.
     */
    @MethodSubstitution
    public static boolean belowOrEqual(long a, long b) {
        return !materialize(BT, b, a);
    }

    /**
     * Unsigned division for two numbers.
     */
    @MethodSubstitution
    public static int divide(int a, int b) {
        return unsignedDivide(Kind.Int, a, b);
    }

    /**
     * Unsigned remainder for two numbers.
     */
    @MethodSubstitution
    public static int remainder(int a, int b) {
        return unsignedRemainder(Kind.Int, a, b);
    }

    /**
     * Unsigned division for two numbers.
     */
    @MethodSubstitution
    public static long divide(long a, long b) {
        return unsignedDivide(Kind.Long, a, b);
    }

    /**
     * Unsigned remainder for two numbers.
     */
    @MethodSubstitution
    public static long remainder(long a, long b) {
        return unsignedRemainder(Kind.Long, a, b);
    }

    @NodeIntrinsic(UnsignedDivNode.class)
    private static native int unsignedDivide(@ConstantNodeParameter
    Kind kind, int a, int b);

    @NodeIntrinsic(UnsignedDivNode.class)
    private static native long unsignedDivide(@ConstantNodeParameter
    Kind kind, long a, long b);

    @NodeIntrinsic(UnsignedRemNode.class)
    private static native int unsignedRemainder(@ConstantNodeParameter
    Kind kind, int a, int b);

    @NodeIntrinsic(UnsignedRemNode.class)
    private static native long unsignedRemainder(@ConstantNodeParameter
    Kind kind, long a, long b);
}