/* * * * Copyright 1990-2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program 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 program 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 at /legal/license.txt). * * 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 Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */ package components; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import jcc.Str2ID; import util.*; import jcc.Const; /* * Represents an CONSTANT_Fieldref, CONSTANT_Methodref or * CONSTANT_InterfaceMethodref. */ public class FMIrefConstant extends ConstantObject { // These fields are filled in by Clas.resolveConstant(). public NameAndTypeConstant sig; public ClassConstant clas; boolean computedID; int ID; // These fields are read from the class file public int classIndex; public int sigIndex; FMIrefConstant(){ nSlots = 1; } protected FMIrefConstant( int t, ClassConstant c, NameAndTypeConstant s ){ tag = t; clas = c; sig = s; resolved = true; nSlots = 1; } public void read( DataInput in ) throws IOException { classIndex = in.readUnsignedShort(); sigIndex = in.readUnsignedShort(); } public void resolve( ConstantObject table[] ){ if (resolved) return; try{ //DEBUG sig = (NameAndTypeConstant)table[sigIndex]; clas = (ClassConstant)table[classIndex]; } catch( RuntimeException t ){//DEBUG System.out.println(Localizer.getString("fmirefconstant.trouble_processing", this.toString())); throw t; }//end DEBUG resolved = true; } public void externalize( ConstantPool p ){ sig = (NameAndTypeConstant)p.add( sig ); clas = (ClassConstant)p.dup( clas ); } public void write( DataOutput out) throws IOException { out.writeByte( tag ); if ( resolved ){ out.writeShort( clas.index ); out.writeShort( sig.index ); } else { throw new DataFormatException(Localizer.getString("fmirefconstant.unresolved_fmirefconstant.dataformatexception")); //out.writeShort( classIndex ); //out.writeShort( sigIndex ); } } public String toString(){ String t = (tag==Const.CONSTANT_FIELD)?/*NOI18N*/"FieldRef: ": (tag==Const.CONSTANT_METHOD)?/*NOI18N*/"MethodRef: ": /*NOI18N*/"InterfaceRef: "; if (resolved) return t+clas.name.string+/*NOI18N*/" . "+sig.name.string+/*NOI18N*/" : "+sig.type.string; else return t+/*NOI18N*/"[ "+classIndex+/*NOI18N*/" . "+sigIndex+/*NOI18N*/" ]"; } public void incReference() { references++; sig.incReference(); clas.incReference(); } public void decReference() { references--; sig.decReference(); clas.decReference(); } public int hashCode() { return tag + sig.hashCode() + clas.hashCode(); } public boolean equals(Object o) { if (o instanceof FMIrefConstant) { FMIrefConstant f = (FMIrefConstant) o; return tag == f.tag && clas.name.equals(f.clas.name) && sig.name.equals(f.sig.name) && sig.type.equals(f.sig.type); } else { return false; } } public int getID(){ if ( ! computedID ){ ID = Str2ID.sigHash.getID( sig.name, sig.type ); computedID = true; } return ID; } public ClassComponent find( boolean isMethod ){ if ( ! computedID ){ ID = Str2ID.sigHash.getID( sig.name, sig.type ); computedID = true; } ClassInfo c = ClassInfo.lookupClass( clas.name.string ); while ( c != null ){ ClassMemberInfo t[] = isMethod ? (ClassMemberInfo[])c.methods : (ClassMemberInfo[])c.fields; int l = t.length; int thisID = this.getID(); for ( int i = 0; i < l ; i++ ){ if ( thisID == t[i].getID() ) return t[i]; } c = c.superClassInfo; } return null; } public boolean isResolved(){ return find( tag!=Const.CONSTANT_FIELD ) != null; } }