view graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnsafeCastNode.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 c1a5c3bc5656
children 630ea5001e33
line wrap: on
line source

/*
 * Copyright (c) 2009, 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.nodes.extended;

import com.oracle.graal.api.meta.*;
import com.oracle.graal.nodes.*;
import com.oracle.graal.nodes.calc.*;
import com.oracle.graal.nodes.spi.*;
import com.oracle.graal.nodes.type.*;

/**
 * The {@code UnsafeCastNode} produces the same value as its input, but with a different type.
 */
public class UnsafeCastNode extends FloatingNode implements Canonicalizable, LIRLowerable {

    @Input private ValueNode object;

    public ValueNode object() {
        return object;
    }

    public UnsafeCastNode(ValueNode object, Stamp stamp) {
        super(stamp);
        this.object = object;
    }

    public UnsafeCastNode(ValueNode object, ResolvedJavaType toType, boolean exactType, boolean nonNull) {
        this(object, toType.getKind() == Kind.Object ? StampFactory.object(toType, exactType, nonNull || object.stamp().nonNull()) : StampFactory.forKind(toType.getKind()));
    }

    @Override
    public boolean inferStamp() {
        if (kind() != Kind.Object || object().kind() != Kind.Object) {
            return false;
        }
        if (object().objectStamp().alwaysNull() && objectStamp().nonNull()) {
            // a null value flowing into a nonNull UnsafeCastNode should be guarded by a type/isNull
            // guard, but the
            // compiler might see this situation before the branch is deleted
            return false;
        }
        return updateStamp(stamp().join(object().stamp()));
    }

    @Override
    public ValueNode canonical(CanonicalizerTool tool) {
        if (kind() != object.kind()) {
            return this;
        }

        if (kind() == Kind.Object) {
            ObjectStamp my = objectStamp();
            ObjectStamp other = object.objectStamp();

            if (my.type() == null || other.type() == null) {
                return this;
            }
            if (my.isExactType() && !other.isExactType()) {
                return this;
            }
            if (my.nonNull() && !other.nonNull()) {
                return this;
            }
            if (!my.type().isAssignableFrom(other.type())) {
                return this;
            }
        }
        return object;
    }

    @Override
    public void generate(LIRGeneratorTool generator) {
        if (kind() != object.kind()) {
            assert generator.target().sizeInBytes(kind()) == generator.target().sizeInBytes(object.kind()) : "unsafe cast cannot be used to change the size of a value";
            Value result = generator.newVariable(kind());
            generator.emitMove(generator.operand(object), result);
            generator.setResult(this, result);
        } else {
            // The LIR only cares about the kind of an operand, not the actual type of an object. So
            // we do not have to
            // introduce a new operand when the kind is the same.
            generator.setResult(this, generator.operand(object));
        }
    }

    @NodeIntrinsic
    public static native <T> T unsafeCast(Object object, @ConstantNodeParameter
    Stamp stamp);

    @NodeIntrinsic
    public static native <T> T unsafeCast(Object object, @ConstantNodeParameter
    Class<T> toType, @ConstantNodeParameter
    boolean exactType, @ConstantNodeParameter
    boolean nonNull);
}