view graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/UnsafeCastNode.java @ 7037:dd81042f4eb1

added unit tests for ResolvedJavaType replaced some CompilerToVM methods used by HotSpotResolvedJavaType with pure Java code
author Doug Simon <doug.simon@oracle.com>
date Tue, 27 Nov 2012 11:21:48 +0100
parents 2e577202843c
children 6644cecbd3a7
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().isObject() ? StampFactory.object(toType, exactType, nonNull || object.stamp().nonNull()) : StampFactory.forKind(toType.getKind()));
    }

    @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() != other.type() && my.type().isAssignableTo(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);
}