view graal/Runtime/src/com/oracle/graal/runtime/HotSpotMethodUnresolved.java @ 2501:6594e6d8bfe7

Rebranding to com.oracle.graal
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 26 Apr 2011 21:10:53 +0200
parents
children 3e3e8bd12730
line wrap: on
line source

/*
 * Copyright (c) 2010 Sun Microsystems, Inc.  All rights reserved.
 *
 * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product
 * that is described in this document. In particular, and without limitation, these intellectual property
 * rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or
 * more additional patents or pending patent applications in the U.S. and in other countries.
 *
 * U.S. Government Rights - Commercial software. Government users are subject to the Sun
 * Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its
 * supplements.
 *
 * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or
 * registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks
 * are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the
 * U.S. and other countries.
 *
 * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open
 * Company, Ltd.
 */
package com.oracle.graal.runtime;

import com.sun.cri.ci.*;
import com.sun.cri.ri.*;

/**
 * Implementation of RiMethod for unresolved HotSpot methods.
 *
 * @author Lukas Stadler
 */
public final class HotSpotMethodUnresolved extends HotSpotMethod {
    private final RiSignature signature;

    public HotSpotMethodUnresolved(Compiler compiler, String name, String signature, RiType holder) {
        super(compiler);
        this.name = name;
        this.holder = holder;
        this.signature = new HotSpotSignature(compiler, signature);
    }

    @Override
    public RiSignature signature() {
        return signature;
    }

    @Override
    public boolean isResolved() {
        return false;
    }

    @Override
    public byte[] code() {
        throw unresolved("code");
    }

    @Override
    public RiMethodProfile methodData() {
        throw unresolved("methodData");
    }

    @Override
    public String jniSymbol() {
        throw unresolved("jniSymbol");
    }

    @Override
    public int maxLocals() {
        throw unresolved("maxLocals");
    }

    @Override
    public int maxStackSize() {
        throw unresolved("maxStackSize");
    }

    @Override
    public boolean hasBalancedMonitors() {
        throw unresolved("hasBalancedMonitors");
    }

    @Override
    public RiMethod uniqueConcreteMethod() {
        throw unresolved("uniqueConcreteMethod()");
    }

    @Override
    public int accessFlags() {
        throw unresolved("accessFlags");
    }

    @Override
    public boolean isLeafMethod() {
        throw unresolved("isLeafMethod");
    }

    @Override
    public boolean isClassInitializer() {
        return "<clinit>".equals(name);
    }

    @Override
    public boolean isConstructor() {
        return "<init>".equals(name);
    }

    @Override
    public boolean isOverridden() {
        throw unresolved("isOverridden");
    }

    @Override
    public boolean noSafepoints() {
        return false;
    }

    @Override
    public CiBitMap[] livenessMap() {
        return null;
    }

    @Override
    public StackTraceElement toStackTraceElement(int bci) {
        return CiUtil.toStackTraceElement(this, bci);
    }

    @Override
    public boolean canBeStaticallyBound() {
        throw unresolved("canBeStaticallyBound");
    }

    @Override
    public RiExceptionHandler[] exceptionHandlers() {
        throw unresolved("exceptionHandlers");
    }

    @Override
    public boolean minimalDebugInfo() {
        throw unresolved("minimalDebugInfo");
    }

    private CiUnresolvedException unresolved(String operation) {
        return new CiUnresolvedException(operation + " not defined for unresolved method " + name);
    }

    @Override
    public String toString() {
        return "HotSpotMethod<" + holder.name() + ". " + name + ", unresolved>";
    }

    public boolean hasCompiledCode() {
        return false;
    }

    @Override
    public RiType accessor() {
        return null;
    }

    @Override
    public int intrinsic() {
        return 0;
    }
}