src/share/classes/com/sun/tools/javac/jvm/ClassReader.java

Mon, 07 Feb 2011 18:10:13 +0000

author
mcimadamore
date
Mon, 07 Feb 2011 18:10:13 +0000
changeset 858
96d4226bdd60
parent 857
3aa269645199
child 909
7798e3a5ecf5
permissions
-rw-r--r--

7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
Summary: override clash algorithm is not implemented correctly
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javac.jvm;
    28 import java.io.*;
    29 import java.net.URI;
    30 import java.net.URISyntaxException;
    31 import java.nio.CharBuffer;
    32 import java.util.Arrays;
    33 import java.util.EnumSet;
    34 import java.util.HashMap;
    35 import java.util.HashSet;
    36 import java.util.Map;
    37 import java.util.Set;
    38 import javax.lang.model.SourceVersion;
    39 import javax.tools.JavaFileObject;
    40 import javax.tools.JavaFileManager;
    41 import javax.tools.JavaFileManager.Location;
    42 import javax.tools.StandardJavaFileManager;
    44 import static javax.tools.StandardLocation.*;
    46 import com.sun.tools.javac.comp.Annotate;
    47 import com.sun.tools.javac.code.*;
    48 import com.sun.tools.javac.code.Lint.LintCategory;
    49 import com.sun.tools.javac.code.Type.*;
    50 import com.sun.tools.javac.code.Symbol.*;
    51 import com.sun.tools.javac.code.Symtab;
    52 import com.sun.tools.javac.file.BaseFileObject;
    53 import com.sun.tools.javac.util.*;
    54 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
    56 import static com.sun.tools.javac.code.Flags.*;
    57 import static com.sun.tools.javac.code.Kinds.*;
    58 import static com.sun.tools.javac.code.TypeTags.*;
    59 import static com.sun.tools.javac.jvm.ClassFile.*;
    60 import static com.sun.tools.javac.jvm.ClassFile.Version.*;
    62 import static com.sun.tools.javac.main.OptionName.*;
    64 /** This class provides operations to read a classfile into an internal
    65  *  representation. The internal representation is anchored in a
    66  *  ClassSymbol which contains in its scope symbol representations
    67  *  for all other definitions in the classfile. Top-level Classes themselves
    68  *  appear as members of the scopes of PackageSymbols.
    69  *
    70  *  <p><b>This is NOT part of any supported API.
    71  *  If you write code that depends on this, you do so at your own risk.
    72  *  This code and its internal interfaces are subject to change or
    73  *  deletion without notice.</b>
    74  */
    75 public class ClassReader implements Completer {
    76     /** The context key for the class reader. */
    77     protected static final Context.Key<ClassReader> classReaderKey =
    78         new Context.Key<ClassReader>();
    80     public static final int INITIAL_BUFFER_SIZE = 0x0fff0;
    82     Annotate annotate;
    84     /** Switch: verbose output.
    85      */
    86     boolean verbose;
    88     /** Switch: check class file for correct minor version, unrecognized
    89      *  attributes.
    90      */
    91     boolean checkClassFile;
    93     /** Switch: read constant pool and code sections. This switch is initially
    94      *  set to false but can be turned on from outside.
    95      */
    96     public boolean readAllOfClassFile = false;
    98     /** Switch: read GJ signature information.
    99      */
   100     boolean allowGenerics;
   102     /** Switch: read varargs attribute.
   103      */
   104     boolean allowVarargs;
   106     /** Switch: allow annotations.
   107      */
   108     boolean allowAnnotations;
   110     /** Switch: allow simplified varargs.
   111      */
   112     boolean allowSimplifiedVarargs;
   114    /** Lint option: warn about classfile issues
   115      */
   116     boolean lintClassfile;
   119     /** Switch: preserve parameter names from the variable table.
   120      */
   121     public boolean saveParameterNames;
   123     /**
   124      * Switch: cache completion failures unless -XDdev is used
   125      */
   126     private boolean cacheCompletionFailure;
   128     /**
   129      * Switch: prefer source files instead of newer when both source
   130      * and class are available
   131      **/
   132     public boolean preferSource;
   134     /** The log to use for verbose output
   135      */
   136     final Log log;
   138     /** The symbol table. */
   139     Symtab syms;
   141     Types types;
   143     /** The name table. */
   144     final Names names;
   146     /** Force a completion failure on this name
   147      */
   148     final Name completionFailureName;
   150     /** Access to files
   151      */
   152     private final JavaFileManager fileManager;
   154     /** Factory for diagnostics
   155      */
   156     JCDiagnostic.Factory diagFactory;
   158     /** Can be reassigned from outside:
   159      *  the completer to be used for ".java" files. If this remains unassigned
   160      *  ".java" files will not be loaded.
   161      */
   162     public SourceCompleter sourceCompleter = null;
   164     /** A hashtable containing the encountered top-level and member classes,
   165      *  indexed by flat names. The table does not contain local classes.
   166      */
   167     private Map<Name,ClassSymbol> classes;
   169     /** A hashtable containing the encountered packages.
   170      */
   171     private Map<Name, PackageSymbol> packages;
   173     /** The current scope where type variables are entered.
   174      */
   175     protected Scope typevars;
   177     /** The path name of the class file currently being read.
   178      */
   179     protected JavaFileObject currentClassFile = null;
   181     /** The class or method currently being read.
   182      */
   183     protected Symbol currentOwner = null;
   185     /** The buffer containing the currently read class file.
   186      */
   187     byte[] buf = new byte[INITIAL_BUFFER_SIZE];
   189     /** The current input pointer.
   190      */
   191     int bp;
   193     /** The objects of the constant pool.
   194      */
   195     Object[] poolObj;
   197     /** For every constant pool entry, an index into buf where the
   198      *  defining section of the entry is found.
   199      */
   200     int[] poolIdx;
   202     /** The major version number of the class file being read. */
   203     int majorVersion;
   204     /** The minor version number of the class file being read. */
   205     int minorVersion;
   207     /** A table to hold the constant pool indices for method parameter
   208      * names, as given in LocalVariableTable attributes.
   209      */
   210     int[] parameterNameIndices;
   212     /**
   213      * Whether or not any parameter names have been found.
   214      */
   215     boolean haveParameterNameIndices;
   217     /**
   218      * The set of attribute names for which warnings have been generated for the current class
   219      */
   220     Set<Name> warnedAttrs = new HashSet<Name>();
   222     /** Get the ClassReader instance for this invocation. */
   223     public static ClassReader instance(Context context) {
   224         ClassReader instance = context.get(classReaderKey);
   225         if (instance == null)
   226             instance = new ClassReader(context, true);
   227         return instance;
   228     }
   230     /** Initialize classes and packages, treating this as the definitive classreader. */
   231     public void init(Symtab syms) {
   232         init(syms, true);
   233     }
   235     /** Initialize classes and packages, optionally treating this as
   236      *  the definitive classreader.
   237      */
   238     private void init(Symtab syms, boolean definitive) {
   239         if (classes != null) return;
   241         if (definitive) {
   242             Assert.check(packages == null || packages == syms.packages);
   243             packages = syms.packages;
   244             Assert.check(classes == null || classes == syms.classes);
   245             classes = syms.classes;
   246         } else {
   247             packages = new HashMap<Name, PackageSymbol>();
   248             classes = new HashMap<Name, ClassSymbol>();
   249         }
   251         packages.put(names.empty, syms.rootPackage);
   252         syms.rootPackage.completer = this;
   253         syms.unnamedPackage.completer = this;
   254     }
   256     /** Construct a new class reader, optionally treated as the
   257      *  definitive classreader for this invocation.
   258      */
   259     protected ClassReader(Context context, boolean definitive) {
   260         if (definitive) context.put(classReaderKey, this);
   262         names = Names.instance(context);
   263         syms = Symtab.instance(context);
   264         types = Types.instance(context);
   265         fileManager = context.get(JavaFileManager.class);
   266         if (fileManager == null)
   267             throw new AssertionError("FileManager initialization error");
   268         diagFactory = JCDiagnostic.Factory.instance(context);
   270         init(syms, definitive);
   271         log = Log.instance(context);
   273         Options options = Options.instance(context);
   274         annotate = Annotate.instance(context);
   275         verbose        = options.isSet(VERBOSE);
   276         checkClassFile = options.isSet("-checkclassfile");
   277         Source source = Source.instance(context);
   278         allowGenerics    = source.allowGenerics();
   279         allowVarargs     = source.allowVarargs();
   280         allowAnnotations = source.allowAnnotations();
   281         allowSimplifiedVarargs = source.allowSimplifiedVarargs();
   282         saveParameterNames = options.isSet("save-parameter-names");
   283         cacheCompletionFailure = options.isUnset("dev");
   284         preferSource = "source".equals(options.get("-Xprefer"));
   286         completionFailureName =
   287             options.isSet("failcomplete")
   288             ? names.fromString(options.get("failcomplete"))
   289             : null;
   291         typevars = new Scope(syms.noSymbol);
   293         lintClassfile = Lint.instance(context).isEnabled(LintCategory.CLASSFILE);
   295         initAttributeReaders();
   296     }
   298     /** Add member to class unless it is synthetic.
   299      */
   300     private void enterMember(ClassSymbol c, Symbol sym) {
   301         if ((sym.flags_field & (SYNTHETIC|BRIDGE)) != SYNTHETIC)
   302             c.members_field.enter(sym);
   303     }
   305 /************************************************************************
   306  * Error Diagnoses
   307  ***********************************************************************/
   310     public class BadClassFile extends CompletionFailure {
   311         private static final long serialVersionUID = 0;
   313         public BadClassFile(TypeSymbol sym, JavaFileObject file, JCDiagnostic diag) {
   314             super(sym, createBadClassFileDiagnostic(file, diag));
   315         }
   316     }
   317     // where
   318     private JCDiagnostic createBadClassFileDiagnostic(JavaFileObject file, JCDiagnostic diag) {
   319         String key = (file.getKind() == JavaFileObject.Kind.SOURCE
   320                     ? "bad.source.file.header" : "bad.class.file.header");
   321         return diagFactory.fragment(key, file, diag);
   322     }
   324     public BadClassFile badClassFile(String key, Object... args) {
   325         return new BadClassFile (
   326             currentOwner.enclClass(),
   327             currentClassFile,
   328             diagFactory.fragment(key, args));
   329     }
   331 /************************************************************************
   332  * Buffer Access
   333  ***********************************************************************/
   335     /** Read a character.
   336      */
   337     char nextChar() {
   338         return (char)(((buf[bp++] & 0xFF) << 8) + (buf[bp++] & 0xFF));
   339     }
   341     /** Read a byte.
   342      */
   343     byte nextByte() {
   344         return buf[bp++];
   345     }
   347     /** Read an integer.
   348      */
   349     int nextInt() {
   350         return
   351             ((buf[bp++] & 0xFF) << 24) +
   352             ((buf[bp++] & 0xFF) << 16) +
   353             ((buf[bp++] & 0xFF) << 8) +
   354             (buf[bp++] & 0xFF);
   355     }
   357     /** Extract a character at position bp from buf.
   358      */
   359     char getChar(int bp) {
   360         return
   361             (char)(((buf[bp] & 0xFF) << 8) + (buf[bp+1] & 0xFF));
   362     }
   364     /** Extract an integer at position bp from buf.
   365      */
   366     int getInt(int bp) {
   367         return
   368             ((buf[bp] & 0xFF) << 24) +
   369             ((buf[bp+1] & 0xFF) << 16) +
   370             ((buf[bp+2] & 0xFF) << 8) +
   371             (buf[bp+3] & 0xFF);
   372     }
   375     /** Extract a long integer at position bp from buf.
   376      */
   377     long getLong(int bp) {
   378         DataInputStream bufin =
   379             new DataInputStream(new ByteArrayInputStream(buf, bp, 8));
   380         try {
   381             return bufin.readLong();
   382         } catch (IOException e) {
   383             throw new AssertionError(e);
   384         }
   385     }
   387     /** Extract a float at position bp from buf.
   388      */
   389     float getFloat(int bp) {
   390         DataInputStream bufin =
   391             new DataInputStream(new ByteArrayInputStream(buf, bp, 4));
   392         try {
   393             return bufin.readFloat();
   394         } catch (IOException e) {
   395             throw new AssertionError(e);
   396         }
   397     }
   399     /** Extract a double at position bp from buf.
   400      */
   401     double getDouble(int bp) {
   402         DataInputStream bufin =
   403             new DataInputStream(new ByteArrayInputStream(buf, bp, 8));
   404         try {
   405             return bufin.readDouble();
   406         } catch (IOException e) {
   407             throw new AssertionError(e);
   408         }
   409     }
   411 /************************************************************************
   412  * Constant Pool Access
   413  ***********************************************************************/
   415     /** Index all constant pool entries, writing their start addresses into
   416      *  poolIdx.
   417      */
   418     void indexPool() {
   419         poolIdx = new int[nextChar()];
   420         poolObj = new Object[poolIdx.length];
   421         int i = 1;
   422         while (i < poolIdx.length) {
   423             poolIdx[i++] = bp;
   424             byte tag = buf[bp++];
   425             switch (tag) {
   426             case CONSTANT_Utf8: case CONSTANT_Unicode: {
   427                 int len = nextChar();
   428                 bp = bp + len;
   429                 break;
   430             }
   431             case CONSTANT_Class:
   432             case CONSTANT_String:
   433             case CONSTANT_MethodType:
   434                 bp = bp + 2;
   435                 break;
   436             case CONSTANT_MethodHandle:
   437                 bp = bp + 3;
   438                 break;
   439             case CONSTANT_Fieldref:
   440             case CONSTANT_Methodref:
   441             case CONSTANT_InterfaceMethodref:
   442             case CONSTANT_NameandType:
   443             case CONSTANT_Integer:
   444             case CONSTANT_Float:
   445             case CONSTANT_InvokeDynamic:
   446                 bp = bp + 4;
   447                 break;
   448             case CONSTANT_Long:
   449             case CONSTANT_Double:
   450                 bp = bp + 8;
   451                 i++;
   452                 break;
   453             default:
   454                 throw badClassFile("bad.const.pool.tag.at",
   455                                    Byte.toString(tag),
   456                                    Integer.toString(bp -1));
   457             }
   458         }
   459     }
   461     /** Read constant pool entry at start address i, use pool as a cache.
   462      */
   463     Object readPool(int i) {
   464         Object result = poolObj[i];
   465         if (result != null) return result;
   467         int index = poolIdx[i];
   468         if (index == 0) return null;
   470         byte tag = buf[index];
   471         switch (tag) {
   472         case CONSTANT_Utf8:
   473             poolObj[i] = names.fromUtf(buf, index + 3, getChar(index + 1));
   474             break;
   475         case CONSTANT_Unicode:
   476             throw badClassFile("unicode.str.not.supported");
   477         case CONSTANT_Class:
   478             poolObj[i] = readClassOrType(getChar(index + 1));
   479             break;
   480         case CONSTANT_String:
   481             // FIXME: (footprint) do not use toString here
   482             poolObj[i] = readName(getChar(index + 1)).toString();
   483             break;
   484         case CONSTANT_Fieldref: {
   485             ClassSymbol owner = readClassSymbol(getChar(index + 1));
   486             NameAndType nt = (NameAndType)readPool(getChar(index + 3));
   487             poolObj[i] = new VarSymbol(0, nt.name, nt.type, owner);
   488             break;
   489         }
   490         case CONSTANT_Methodref:
   491         case CONSTANT_InterfaceMethodref: {
   492             ClassSymbol owner = readClassSymbol(getChar(index + 1));
   493             NameAndType nt = (NameAndType)readPool(getChar(index + 3));
   494             poolObj[i] = new MethodSymbol(0, nt.name, nt.type, owner);
   495             break;
   496         }
   497         case CONSTANT_NameandType:
   498             poolObj[i] = new NameAndType(
   499                 readName(getChar(index + 1)),
   500                 readType(getChar(index + 3)));
   501             break;
   502         case CONSTANT_Integer:
   503             poolObj[i] = getInt(index + 1);
   504             break;
   505         case CONSTANT_Float:
   506             poolObj[i] = new Float(getFloat(index + 1));
   507             break;
   508         case CONSTANT_Long:
   509             poolObj[i] = new Long(getLong(index + 1));
   510             break;
   511         case CONSTANT_Double:
   512             poolObj[i] = new Double(getDouble(index + 1));
   513             break;
   514         case CONSTANT_MethodHandle:
   515             skipBytes(4);
   516             break;
   517         case CONSTANT_MethodType:
   518             skipBytes(3);
   519             break;
   520         case CONSTANT_InvokeDynamic:
   521             skipBytes(5);
   522             break;
   523         default:
   524             throw badClassFile("bad.const.pool.tag", Byte.toString(tag));
   525         }
   526         return poolObj[i];
   527     }
   529     /** Read signature and convert to type.
   530      */
   531     Type readType(int i) {
   532         int index = poolIdx[i];
   533         return sigToType(buf, index + 3, getChar(index + 1));
   534     }
   536     /** If name is an array type or class signature, return the
   537      *  corresponding type; otherwise return a ClassSymbol with given name.
   538      */
   539     Object readClassOrType(int i) {
   540         int index =  poolIdx[i];
   541         int len = getChar(index + 1);
   542         int start = index + 3;
   543         Assert.check(buf[start] == '[' || buf[start + len - 1] != ';');
   544         // by the above assertion, the following test can be
   545         // simplified to (buf[start] == '[')
   546         return (buf[start] == '[' || buf[start + len - 1] == ';')
   547             ? (Object)sigToType(buf, start, len)
   548             : (Object)enterClass(names.fromUtf(internalize(buf, start,
   549                                                            len)));
   550     }
   552     /** Read signature and convert to type parameters.
   553      */
   554     List<Type> readTypeParams(int i) {
   555         int index = poolIdx[i];
   556         return sigToTypeParams(buf, index + 3, getChar(index + 1));
   557     }
   559     /** Read class entry.
   560      */
   561     ClassSymbol readClassSymbol(int i) {
   562         return (ClassSymbol) (readPool(i));
   563     }
   565     /** Read name.
   566      */
   567     Name readName(int i) {
   568         return (Name) (readPool(i));
   569     }
   571 /************************************************************************
   572  * Reading Types
   573  ***********************************************************************/
   575     /** The unread portion of the currently read type is
   576      *  signature[sigp..siglimit-1].
   577      */
   578     byte[] signature;
   579     int sigp;
   580     int siglimit;
   581     boolean sigEnterPhase = false;
   583     /** Convert signature to type, where signature is a byte array segment.
   584      */
   585     Type sigToType(byte[] sig, int offset, int len) {
   586         signature = sig;
   587         sigp = offset;
   588         siglimit = offset + len;
   589         return sigToType();
   590     }
   592     /** Convert signature to type, where signature is implicit.
   593      */
   594     Type sigToType() {
   595         switch ((char) signature[sigp]) {
   596         case 'T':
   597             sigp++;
   598             int start = sigp;
   599             while (signature[sigp] != ';') sigp++;
   600             sigp++;
   601             return sigEnterPhase
   602                 ? Type.noType
   603                 : findTypeVar(names.fromUtf(signature, start, sigp - 1 - start));
   604         case '+': {
   605             sigp++;
   606             Type t = sigToType();
   607             return new WildcardType(t, BoundKind.EXTENDS,
   608                                     syms.boundClass);
   609         }
   610         case '*':
   611             sigp++;
   612             return new WildcardType(syms.objectType, BoundKind.UNBOUND,
   613                                     syms.boundClass);
   614         case '-': {
   615             sigp++;
   616             Type t = sigToType();
   617             return new WildcardType(t, BoundKind.SUPER,
   618                                     syms.boundClass);
   619         }
   620         case 'B':
   621             sigp++;
   622             return syms.byteType;
   623         case 'C':
   624             sigp++;
   625             return syms.charType;
   626         case 'D':
   627             sigp++;
   628             return syms.doubleType;
   629         case 'F':
   630             sigp++;
   631             return syms.floatType;
   632         case 'I':
   633             sigp++;
   634             return syms.intType;
   635         case 'J':
   636             sigp++;
   637             return syms.longType;
   638         case 'L':
   639             {
   640                 // int oldsigp = sigp;
   641                 Type t = classSigToType();
   642                 if (sigp < siglimit && signature[sigp] == '.')
   643                     throw badClassFile("deprecated inner class signature syntax " +
   644                                        "(please recompile from source)");
   645                 /*
   646                 System.err.println(" decoded " +
   647                                    new String(signature, oldsigp, sigp-oldsigp) +
   648                                    " => " + t + " outer " + t.outer());
   649                 */
   650                 return t;
   651             }
   652         case 'S':
   653             sigp++;
   654             return syms.shortType;
   655         case 'V':
   656             sigp++;
   657             return syms.voidType;
   658         case 'Z':
   659             sigp++;
   660             return syms.booleanType;
   661         case '[':
   662             sigp++;
   663             return new ArrayType(sigToType(), syms.arrayClass);
   664         case '(':
   665             sigp++;
   666             List<Type> argtypes = sigToTypes(')');
   667             Type restype = sigToType();
   668             List<Type> thrown = List.nil();
   669             while (signature[sigp] == '^') {
   670                 sigp++;
   671                 thrown = thrown.prepend(sigToType());
   672             }
   673             return new MethodType(argtypes,
   674                                   restype,
   675                                   thrown.reverse(),
   676                                   syms.methodClass);
   677         case '<':
   678             typevars = typevars.dup(currentOwner);
   679             Type poly = new ForAll(sigToTypeParams(), sigToType());
   680             typevars = typevars.leave();
   681             return poly;
   682         default:
   683             throw badClassFile("bad.signature",
   684                                Convert.utf2string(signature, sigp, 10));
   685         }
   686     }
   688     byte[] signatureBuffer = new byte[0];
   689     int sbp = 0;
   690     /** Convert class signature to type, where signature is implicit.
   691      */
   692     Type classSigToType() {
   693         if (signature[sigp] != 'L')
   694             throw badClassFile("bad.class.signature",
   695                                Convert.utf2string(signature, sigp, 10));
   696         sigp++;
   697         Type outer = Type.noType;
   698         int startSbp = sbp;
   700         while (true) {
   701             final byte c = signature[sigp++];
   702             switch (c) {
   704             case ';': {         // end
   705                 ClassSymbol t = enterClass(names.fromUtf(signatureBuffer,
   706                                                          startSbp,
   707                                                          sbp - startSbp));
   708                 if (outer == Type.noType)
   709                     outer = t.erasure(types);
   710                 else
   711                     outer = new ClassType(outer, List.<Type>nil(), t);
   712                 sbp = startSbp;
   713                 return outer;
   714             }
   716             case '<':           // generic arguments
   717                 ClassSymbol t = enterClass(names.fromUtf(signatureBuffer,
   718                                                          startSbp,
   719                                                          sbp - startSbp));
   720                 outer = new ClassType(outer, sigToTypes('>'), t) {
   721                         boolean completed = false;
   722                         @Override
   723                         public Type getEnclosingType() {
   724                             if (!completed) {
   725                                 completed = true;
   726                                 tsym.complete();
   727                                 Type enclosingType = tsym.type.getEnclosingType();
   728                                 if (enclosingType != Type.noType) {
   729                                     List<Type> typeArgs =
   730                                         super.getEnclosingType().allparams();
   731                                     List<Type> typeParams =
   732                                         enclosingType.allparams();
   733                                     if (typeParams.length() != typeArgs.length()) {
   734                                         // no "rare" types
   735                                         super.setEnclosingType(types.erasure(enclosingType));
   736                                     } else {
   737                                         super.setEnclosingType(types.subst(enclosingType,
   738                                                                            typeParams,
   739                                                                            typeArgs));
   740                                     }
   741                                 } else {
   742                                     super.setEnclosingType(Type.noType);
   743                                 }
   744                             }
   745                             return super.getEnclosingType();
   746                         }
   747                         @Override
   748                         public void setEnclosingType(Type outer) {
   749                             throw new UnsupportedOperationException();
   750                         }
   751                     };
   752                 switch (signature[sigp++]) {
   753                 case ';':
   754                     if (sigp < signature.length && signature[sigp] == '.') {
   755                         // support old-style GJC signatures
   756                         // The signature produced was
   757                         // Lfoo/Outer<Lfoo/X;>;.Lfoo/Outer$Inner<Lfoo/Y;>;
   758                         // rather than say
   759                         // Lfoo/Outer<Lfoo/X;>.Inner<Lfoo/Y;>;
   760                         // so we skip past ".Lfoo/Outer$"
   761                         sigp += (sbp - startSbp) + // "foo/Outer"
   762                             3;  // ".L" and "$"
   763                         signatureBuffer[sbp++] = (byte)'$';
   764                         break;
   765                     } else {
   766                         sbp = startSbp;
   767                         return outer;
   768                     }
   769                 case '.':
   770                     signatureBuffer[sbp++] = (byte)'$';
   771                     break;
   772                 default:
   773                     throw new AssertionError(signature[sigp-1]);
   774                 }
   775                 continue;
   777             case '.':
   778                 signatureBuffer[sbp++] = (byte)'$';
   779                 continue;
   780             case '/':
   781                 signatureBuffer[sbp++] = (byte)'.';
   782                 continue;
   783             default:
   784                 signatureBuffer[sbp++] = c;
   785                 continue;
   786             }
   787         }
   788     }
   790     /** Convert (implicit) signature to list of types
   791      *  until `terminator' is encountered.
   792      */
   793     List<Type> sigToTypes(char terminator) {
   794         List<Type> head = List.of(null);
   795         List<Type> tail = head;
   796         while (signature[sigp] != terminator)
   797             tail = tail.setTail(List.of(sigToType()));
   798         sigp++;
   799         return head.tail;
   800     }
   802     /** Convert signature to type parameters, where signature is a byte
   803      *  array segment.
   804      */
   805     List<Type> sigToTypeParams(byte[] sig, int offset, int len) {
   806         signature = sig;
   807         sigp = offset;
   808         siglimit = offset + len;
   809         return sigToTypeParams();
   810     }
   812     /** Convert signature to type parameters, where signature is implicit.
   813      */
   814     List<Type> sigToTypeParams() {
   815         List<Type> tvars = List.nil();
   816         if (signature[sigp] == '<') {
   817             sigp++;
   818             int start = sigp;
   819             sigEnterPhase = true;
   820             while (signature[sigp] != '>')
   821                 tvars = tvars.prepend(sigToTypeParam());
   822             sigEnterPhase = false;
   823             sigp = start;
   824             while (signature[sigp] != '>')
   825                 sigToTypeParam();
   826             sigp++;
   827         }
   828         return tvars.reverse();
   829     }
   831     /** Convert (implicit) signature to type parameter.
   832      */
   833     Type sigToTypeParam() {
   834         int start = sigp;
   835         while (signature[sigp] != ':') sigp++;
   836         Name name = names.fromUtf(signature, start, sigp - start);
   837         TypeVar tvar;
   838         if (sigEnterPhase) {
   839             tvar = new TypeVar(name, currentOwner, syms.botType);
   840             typevars.enter(tvar.tsym);
   841         } else {
   842             tvar = (TypeVar)findTypeVar(name);
   843         }
   844         List<Type> bounds = List.nil();
   845         Type st = null;
   846         if (signature[sigp] == ':' && signature[sigp+1] == ':') {
   847             sigp++;
   848             st = syms.objectType;
   849         }
   850         while (signature[sigp] == ':') {
   851             sigp++;
   852             bounds = bounds.prepend(sigToType());
   853         }
   854         if (!sigEnterPhase) {
   855             types.setBounds(tvar, bounds.reverse(), st);
   856         }
   857         return tvar;
   858     }
   860     /** Find type variable with given name in `typevars' scope.
   861      */
   862     Type findTypeVar(Name name) {
   863         Scope.Entry e = typevars.lookup(name);
   864         if (e.scope != null) {
   865             return e.sym.type;
   866         } else {
   867             if (readingClassAttr) {
   868                 // While reading the class attribute, the supertypes
   869                 // might refer to a type variable from an enclosing element
   870                 // (method or class).
   871                 // If the type variable is defined in the enclosing class,
   872                 // we can actually find it in
   873                 // currentOwner.owner.type.getTypeArguments()
   874                 // However, until we have read the enclosing method attribute
   875                 // we don't know for sure if this owner is correct.  It could
   876                 // be a method and there is no way to tell before reading the
   877                 // enclosing method attribute.
   878                 TypeVar t = new TypeVar(name, currentOwner, syms.botType);
   879                 missingTypeVariables = missingTypeVariables.prepend(t);
   880                 // System.err.println("Missing type var " + name);
   881                 return t;
   882             }
   883             throw badClassFile("undecl.type.var", name);
   884         }
   885     }
   887 /************************************************************************
   888  * Reading Attributes
   889  ***********************************************************************/
   891     protected enum AttributeKind { CLASS, MEMBER };
   892     protected abstract class AttributeReader {
   893         AttributeReader(Name name, ClassFile.Version version, Set<AttributeKind> kinds) {
   894             this.name = name;
   895             this.version = version;
   896             this.kinds = kinds;
   897         }
   899         boolean accepts(AttributeKind kind) {
   900             if (kinds.contains(kind)) {
   901                 if (majorVersion > version.major || (majorVersion == version.major && minorVersion >= version.minor))
   902                     return true;
   904                 if (lintClassfile && !warnedAttrs.contains(name)) {
   905                     JavaFileObject prev = log.useSource(currentClassFile);
   906                     try {
   907                         log.warning(LintCategory.CLASSFILE, (DiagnosticPosition) null, "future.attr",
   908                                 name, version.major, version.minor, majorVersion, minorVersion);
   909                     } finally {
   910                         log.useSource(prev);
   911                     }
   912                     warnedAttrs.add(name);
   913                 }
   914             }
   915             return false;
   916         }
   918         abstract void read(Symbol sym, int attrLen);
   920         final Name name;
   921         final ClassFile.Version version;
   922         final Set<AttributeKind> kinds;
   923     }
   925     protected Set<AttributeKind> CLASS_ATTRIBUTE =
   926             EnumSet.of(AttributeKind.CLASS);
   927     protected Set<AttributeKind> MEMBER_ATTRIBUTE =
   928             EnumSet.of(AttributeKind.MEMBER);
   929     protected Set<AttributeKind> CLASS_OR_MEMBER_ATTRIBUTE =
   930             EnumSet.of(AttributeKind.CLASS, AttributeKind.MEMBER);
   932     protected Map<Name, AttributeReader> attributeReaders = new HashMap<Name, AttributeReader>();
   934     private void initAttributeReaders() {
   935         AttributeReader[] readers = {
   936             // v45.3 attributes
   938             new AttributeReader(names.Code, V45_3, MEMBER_ATTRIBUTE) {
   939                 void read(Symbol sym, int attrLen) {
   940                     if (readAllOfClassFile || saveParameterNames)
   941                         ((MethodSymbol)sym).code = readCode(sym);
   942                     else
   943                         bp = bp + attrLen;
   944                 }
   945             },
   947             new AttributeReader(names.ConstantValue, V45_3, MEMBER_ATTRIBUTE) {
   948                 void read(Symbol sym, int attrLen) {
   949                     Object v = readPool(nextChar());
   950                     // Ignore ConstantValue attribute if field not final.
   951                     if ((sym.flags() & FINAL) != 0)
   952                         ((VarSymbol) sym).setData(v);
   953                 }
   954             },
   956             new AttributeReader(names.Deprecated, V45_3, CLASS_OR_MEMBER_ATTRIBUTE) {
   957                 void read(Symbol sym, int attrLen) {
   958                     sym.flags_field |= DEPRECATED;
   959                 }
   960             },
   962             new AttributeReader(names.Exceptions, V45_3, CLASS_OR_MEMBER_ATTRIBUTE) {
   963                 void read(Symbol sym, int attrLen) {
   964                     int nexceptions = nextChar();
   965                     List<Type> thrown = List.nil();
   966                     for (int j = 0; j < nexceptions; j++)
   967                         thrown = thrown.prepend(readClassSymbol(nextChar()).type);
   968                     if (sym.type.getThrownTypes().isEmpty())
   969                         sym.type.asMethodType().thrown = thrown.reverse();
   970                 }
   971             },
   973             new AttributeReader(names.InnerClasses, V45_3, CLASS_ATTRIBUTE) {
   974                 void read(Symbol sym, int attrLen) {
   975                     ClassSymbol c = (ClassSymbol) sym;
   976                     readInnerClasses(c);
   977                 }
   978             },
   980             new AttributeReader(names.LocalVariableTable, V45_3, CLASS_OR_MEMBER_ATTRIBUTE) {
   981                 void read(Symbol sym, int attrLen) {
   982                     int newbp = bp + attrLen;
   983                     if (saveParameterNames) {
   984                         // Pick up parameter names from the variable table.
   985                         // Parameter names are not explicitly identified as such,
   986                         // but all parameter name entries in the LocalVariableTable
   987                         // have a start_pc of 0.  Therefore, we record the name
   988                         // indicies of all slots with a start_pc of zero in the
   989                         // parameterNameIndicies array.
   990                         // Note that this implicitly honors the JVMS spec that
   991                         // there may be more than one LocalVariableTable, and that
   992                         // there is no specified ordering for the entries.
   993                         int numEntries = nextChar();
   994                         for (int i = 0; i < numEntries; i++) {
   995                             int start_pc = nextChar();
   996                             int length = nextChar();
   997                             int nameIndex = nextChar();
   998                             int sigIndex = nextChar();
   999                             int register = nextChar();
  1000                             if (start_pc == 0) {
  1001                                 // ensure array large enough
  1002                                 if (register >= parameterNameIndices.length) {
  1003                                     int newSize = Math.max(register, parameterNameIndices.length + 8);
  1004                                     parameterNameIndices =
  1005                                             Arrays.copyOf(parameterNameIndices, newSize);
  1007                                 parameterNameIndices[register] = nameIndex;
  1008                                 haveParameterNameIndices = true;
  1012                     bp = newbp;
  1014             },
  1016             new AttributeReader(names.SourceFile, V45_3, CLASS_ATTRIBUTE) {
  1017                 void read(Symbol sym, int attrLen) {
  1018                     ClassSymbol c = (ClassSymbol) sym;
  1019                     Name n = readName(nextChar());
  1020                     c.sourcefile = new SourceFileObject(n, c.flatname);
  1022             },
  1024             new AttributeReader(names.Synthetic, V45_3, CLASS_OR_MEMBER_ATTRIBUTE) {
  1025                 void read(Symbol sym, int attrLen) {
  1026                     // bridge methods are visible when generics not enabled
  1027                     if (allowGenerics || (sym.flags_field & BRIDGE) == 0)
  1028                         sym.flags_field |= SYNTHETIC;
  1030             },
  1032             // standard v49 attributes
  1034             new AttributeReader(names.EnclosingMethod, V49, CLASS_ATTRIBUTE) {
  1035                 void read(Symbol sym, int attrLen) {
  1036                     int newbp = bp + attrLen;
  1037                     readEnclosingMethodAttr(sym);
  1038                     bp = newbp;
  1040             },
  1042             new AttributeReader(names.Signature, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1043                 @Override
  1044                 boolean accepts(AttributeKind kind) {
  1045                     return super.accepts(kind) && allowGenerics;
  1048                 void read(Symbol sym, int attrLen) {
  1049                     if (sym.kind == TYP) {
  1050                         ClassSymbol c = (ClassSymbol) sym;
  1051                         readingClassAttr = true;
  1052                         try {
  1053                             ClassType ct1 = (ClassType)c.type;
  1054                             Assert.check(c == currentOwner);
  1055                             ct1.typarams_field = readTypeParams(nextChar());
  1056                             ct1.supertype_field = sigToType();
  1057                             ListBuffer<Type> is = new ListBuffer<Type>();
  1058                             while (sigp != siglimit) is.append(sigToType());
  1059                             ct1.interfaces_field = is.toList();
  1060                         } finally {
  1061                             readingClassAttr = false;
  1063                     } else {
  1064                         List<Type> thrown = sym.type.getThrownTypes();
  1065                         sym.type = readType(nextChar());
  1066                         //- System.err.println(" # " + sym.type);
  1067                         if (sym.kind == MTH && sym.type.getThrownTypes().isEmpty())
  1068                             sym.type.asMethodType().thrown = thrown;
  1072             },
  1074             // v49 annotation attributes
  1076             new AttributeReader(names.AnnotationDefault, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1077                 void read(Symbol sym, int attrLen) {
  1078                     attachAnnotationDefault(sym);
  1080             },
  1082             new AttributeReader(names.RuntimeInvisibleAnnotations, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1083                 void read(Symbol sym, int attrLen) {
  1084                     attachAnnotations(sym);
  1086             },
  1088             new AttributeReader(names.RuntimeInvisibleParameterAnnotations, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1089                 void read(Symbol sym, int attrLen) {
  1090                     attachParameterAnnotations(sym);
  1092             },
  1094             new AttributeReader(names.RuntimeVisibleAnnotations, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1095                 void read(Symbol sym, int attrLen) {
  1096                     attachAnnotations(sym);
  1098             },
  1100             new AttributeReader(names.RuntimeVisibleParameterAnnotations, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1101                 void read(Symbol sym, int attrLen) {
  1102                     attachParameterAnnotations(sym);
  1104             },
  1106             // additional "legacy" v49 attributes, superceded by flags
  1108             new AttributeReader(names.Annotation, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1109                 void read(Symbol sym, int attrLen) {
  1110                     if (allowAnnotations)
  1111                         sym.flags_field |= ANNOTATION;
  1113             },
  1115             new AttributeReader(names.Bridge, V49, MEMBER_ATTRIBUTE) {
  1116                 void read(Symbol sym, int attrLen) {
  1117                     sym.flags_field |= BRIDGE;
  1118                     if (!allowGenerics)
  1119                         sym.flags_field &= ~SYNTHETIC;
  1121             },
  1123             new AttributeReader(names.Enum, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1124                 void read(Symbol sym, int attrLen) {
  1125                     sym.flags_field |= ENUM;
  1127             },
  1129             new AttributeReader(names.Varargs, V49, CLASS_OR_MEMBER_ATTRIBUTE) {
  1130                 void read(Symbol sym, int attrLen) {
  1131                     if (allowVarargs)
  1132                         sym.flags_field |= VARARGS;
  1134             },
  1136             // The following attributes for a Code attribute are not currently handled
  1137             // StackMapTable
  1138             // SourceDebugExtension
  1139             // LineNumberTable
  1140             // LocalVariableTypeTable
  1141         };
  1143         for (AttributeReader r: readers)
  1144             attributeReaders.put(r.name, r);
  1147     /** Report unrecognized attribute.
  1148      */
  1149     void unrecognized(Name attrName) {
  1150         if (checkClassFile)
  1151             printCCF("ccf.unrecognized.attribute", attrName);
  1156     void readEnclosingMethodAttr(Symbol sym) {
  1157         // sym is a nested class with an "Enclosing Method" attribute
  1158         // remove sym from it's current owners scope and place it in
  1159         // the scope specified by the attribute
  1160         sym.owner.members().remove(sym);
  1161         ClassSymbol self = (ClassSymbol)sym;
  1162         ClassSymbol c = readClassSymbol(nextChar());
  1163         NameAndType nt = (NameAndType)readPool(nextChar());
  1165         MethodSymbol m = findMethod(nt, c.members_field, self.flags());
  1166         if (nt != null && m == null)
  1167             throw badClassFile("bad.enclosing.method", self);
  1169         self.name = simpleBinaryName(self.flatname, c.flatname) ;
  1170         self.owner = m != null ? m : c;
  1171         if (self.name.isEmpty())
  1172             self.fullname = names.empty;
  1173         else
  1174             self.fullname = ClassSymbol.formFullName(self.name, self.owner);
  1176         if (m != null) {
  1177             ((ClassType)sym.type).setEnclosingType(m.type);
  1178         } else if ((self.flags_field & STATIC) == 0) {
  1179             ((ClassType)sym.type).setEnclosingType(c.type);
  1180         } else {
  1181             ((ClassType)sym.type).setEnclosingType(Type.noType);
  1183         enterTypevars(self);
  1184         if (!missingTypeVariables.isEmpty()) {
  1185             ListBuffer<Type> typeVars =  new ListBuffer<Type>();
  1186             for (Type typevar : missingTypeVariables) {
  1187                 typeVars.append(findTypeVar(typevar.tsym.name));
  1189             foundTypeVariables = typeVars.toList();
  1190         } else {
  1191             foundTypeVariables = List.nil();
  1195     // See java.lang.Class
  1196     private Name simpleBinaryName(Name self, Name enclosing) {
  1197         String simpleBinaryName = self.toString().substring(enclosing.toString().length());
  1198         if (simpleBinaryName.length() < 1 || simpleBinaryName.charAt(0) != '$')
  1199             throw badClassFile("bad.enclosing.method", self);
  1200         int index = 1;
  1201         while (index < simpleBinaryName.length() &&
  1202                isAsciiDigit(simpleBinaryName.charAt(index)))
  1203             index++;
  1204         return names.fromString(simpleBinaryName.substring(index));
  1207     private MethodSymbol findMethod(NameAndType nt, Scope scope, long flags) {
  1208         if (nt == null)
  1209             return null;
  1211         MethodType type = nt.type.asMethodType();
  1213         for (Scope.Entry e = scope.lookup(nt.name); e.scope != null; e = e.next())
  1214             if (e.sym.kind == MTH && isSameBinaryType(e.sym.type.asMethodType(), type))
  1215                 return (MethodSymbol)e.sym;
  1217         if (nt.name != names.init)
  1218             // not a constructor
  1219             return null;
  1220         if ((flags & INTERFACE) != 0)
  1221             // no enclosing instance
  1222             return null;
  1223         if (nt.type.getParameterTypes().isEmpty())
  1224             // no parameters
  1225             return null;
  1227         // A constructor of an inner class.
  1228         // Remove the first argument (the enclosing instance)
  1229         nt.type = new MethodType(nt.type.getParameterTypes().tail,
  1230                                  nt.type.getReturnType(),
  1231                                  nt.type.getThrownTypes(),
  1232                                  syms.methodClass);
  1233         // Try searching again
  1234         return findMethod(nt, scope, flags);
  1237     /** Similar to Types.isSameType but avoids completion */
  1238     private boolean isSameBinaryType(MethodType mt1, MethodType mt2) {
  1239         List<Type> types1 = types.erasure(mt1.getParameterTypes())
  1240             .prepend(types.erasure(mt1.getReturnType()));
  1241         List<Type> types2 = mt2.getParameterTypes().prepend(mt2.getReturnType());
  1242         while (!types1.isEmpty() && !types2.isEmpty()) {
  1243             if (types1.head.tsym != types2.head.tsym)
  1244                 return false;
  1245             types1 = types1.tail;
  1246             types2 = types2.tail;
  1248         return types1.isEmpty() && types2.isEmpty();
  1251     /**
  1252      * Character.isDigit answers <tt>true</tt> to some non-ascii
  1253      * digits.  This one does not.  <b>copied from java.lang.Class</b>
  1254      */
  1255     private static boolean isAsciiDigit(char c) {
  1256         return '0' <= c && c <= '9';
  1259     /** Read member attributes.
  1260      */
  1261     void readMemberAttrs(Symbol sym) {
  1262         readAttrs(sym, AttributeKind.MEMBER);
  1265     void readAttrs(Symbol sym, AttributeKind kind) {
  1266         char ac = nextChar();
  1267         for (int i = 0; i < ac; i++) {
  1268             Name attrName = readName(nextChar());
  1269             int attrLen = nextInt();
  1270             AttributeReader r = attributeReaders.get(attrName);
  1271             if (r != null && r.accepts(kind))
  1272                 r.read(sym, attrLen);
  1273             else  {
  1274                 unrecognized(attrName);
  1275                 bp = bp + attrLen;
  1280     private boolean readingClassAttr = false;
  1281     private List<Type> missingTypeVariables = List.nil();
  1282     private List<Type> foundTypeVariables = List.nil();
  1284     /** Read class attributes.
  1285      */
  1286     void readClassAttrs(ClassSymbol c) {
  1287         readAttrs(c, AttributeKind.CLASS);
  1290     /** Read code block.
  1291      */
  1292     Code readCode(Symbol owner) {
  1293         nextChar(); // max_stack
  1294         nextChar(); // max_locals
  1295         final int  code_length = nextInt();
  1296         bp += code_length;
  1297         final char exception_table_length = nextChar();
  1298         bp += exception_table_length * 8;
  1299         readMemberAttrs(owner);
  1300         return null;
  1303 /************************************************************************
  1304  * Reading Java-language annotations
  1305  ***********************************************************************/
  1307     /** Attach annotations.
  1308      */
  1309     void attachAnnotations(final Symbol sym) {
  1310         int numAttributes = nextChar();
  1311         if (numAttributes != 0) {
  1312             ListBuffer<CompoundAnnotationProxy> proxies =
  1313                 new ListBuffer<CompoundAnnotationProxy>();
  1314             for (int i = 0; i<numAttributes; i++) {
  1315                 CompoundAnnotationProxy proxy = readCompoundAnnotation();
  1316                 if (proxy.type.tsym == syms.proprietaryType.tsym)
  1317                     sym.flags_field |= PROPRIETARY;
  1318                 else
  1319                     proxies.append(proxy);
  1320                 if (majorVersion >= V51.major &&
  1321                         (proxy.type.tsym == syms.polymorphicSignatureType.tsym ||
  1322                          proxy.type.tsym == syms.transientPolymorphicSignatureType.tsym)) {
  1323                     sym.flags_field |= POLYMORPHIC_SIGNATURE;
  1326             annotate.later(new AnnotationCompleter(sym, proxies.toList()));
  1330     /** Attach parameter annotations.
  1331      */
  1332     void attachParameterAnnotations(final Symbol method) {
  1333         final MethodSymbol meth = (MethodSymbol)method;
  1334         int numParameters = buf[bp++] & 0xFF;
  1335         List<VarSymbol> parameters = meth.params();
  1336         int pnum = 0;
  1337         while (parameters.tail != null) {
  1338             attachAnnotations(parameters.head);
  1339             parameters = parameters.tail;
  1340             pnum++;
  1342         if (pnum != numParameters) {
  1343             throw badClassFile("bad.runtime.invisible.param.annotations", meth);
  1347     /** Attach the default value for an annotation element.
  1348      */
  1349     void attachAnnotationDefault(final Symbol sym) {
  1350         final MethodSymbol meth = (MethodSymbol)sym; // only on methods
  1351         final Attribute value = readAttributeValue();
  1352         annotate.later(new AnnotationDefaultCompleter(meth, value));
  1355     Type readTypeOrClassSymbol(int i) {
  1356         // support preliminary jsr175-format class files
  1357         if (buf[poolIdx[i]] == CONSTANT_Class)
  1358             return readClassSymbol(i).type;
  1359         return readType(i);
  1361     Type readEnumType(int i) {
  1362         // support preliminary jsr175-format class files
  1363         int index = poolIdx[i];
  1364         int length = getChar(index + 1);
  1365         if (buf[index + length + 2] != ';')
  1366             return enterClass(readName(i)).type;
  1367         return readType(i);
  1370     CompoundAnnotationProxy readCompoundAnnotation() {
  1371         Type t = readTypeOrClassSymbol(nextChar());
  1372         int numFields = nextChar();
  1373         ListBuffer<Pair<Name,Attribute>> pairs =
  1374             new ListBuffer<Pair<Name,Attribute>>();
  1375         for (int i=0; i<numFields; i++) {
  1376             Name name = readName(nextChar());
  1377             Attribute value = readAttributeValue();
  1378             pairs.append(new Pair<Name,Attribute>(name, value));
  1380         return new CompoundAnnotationProxy(t, pairs.toList());
  1383     Attribute readAttributeValue() {
  1384         char c = (char) buf[bp++];
  1385         switch (c) {
  1386         case 'B':
  1387             return new Attribute.Constant(syms.byteType, readPool(nextChar()));
  1388         case 'C':
  1389             return new Attribute.Constant(syms.charType, readPool(nextChar()));
  1390         case 'D':
  1391             return new Attribute.Constant(syms.doubleType, readPool(nextChar()));
  1392         case 'F':
  1393             return new Attribute.Constant(syms.floatType, readPool(nextChar()));
  1394         case 'I':
  1395             return new Attribute.Constant(syms.intType, readPool(nextChar()));
  1396         case 'J':
  1397             return new Attribute.Constant(syms.longType, readPool(nextChar()));
  1398         case 'S':
  1399             return new Attribute.Constant(syms.shortType, readPool(nextChar()));
  1400         case 'Z':
  1401             return new Attribute.Constant(syms.booleanType, readPool(nextChar()));
  1402         case 's':
  1403             return new Attribute.Constant(syms.stringType, readPool(nextChar()).toString());
  1404         case 'e':
  1405             return new EnumAttributeProxy(readEnumType(nextChar()), readName(nextChar()));
  1406         case 'c':
  1407             return new Attribute.Class(types, readTypeOrClassSymbol(nextChar()));
  1408         case '[': {
  1409             int n = nextChar();
  1410             ListBuffer<Attribute> l = new ListBuffer<Attribute>();
  1411             for (int i=0; i<n; i++)
  1412                 l.append(readAttributeValue());
  1413             return new ArrayAttributeProxy(l.toList());
  1415         case '@':
  1416             return readCompoundAnnotation();
  1417         default:
  1418             throw new AssertionError("unknown annotation tag '" + c + "'");
  1422     interface ProxyVisitor extends Attribute.Visitor {
  1423         void visitEnumAttributeProxy(EnumAttributeProxy proxy);
  1424         void visitArrayAttributeProxy(ArrayAttributeProxy proxy);
  1425         void visitCompoundAnnotationProxy(CompoundAnnotationProxy proxy);
  1428     static class EnumAttributeProxy extends Attribute {
  1429         Type enumType;
  1430         Name enumerator;
  1431         public EnumAttributeProxy(Type enumType, Name enumerator) {
  1432             super(null);
  1433             this.enumType = enumType;
  1434             this.enumerator = enumerator;
  1436         public void accept(Visitor v) { ((ProxyVisitor)v).visitEnumAttributeProxy(this); }
  1437         @Override
  1438         public String toString() {
  1439             return "/*proxy enum*/" + enumType + "." + enumerator;
  1443     static class ArrayAttributeProxy extends Attribute {
  1444         List<Attribute> values;
  1445         ArrayAttributeProxy(List<Attribute> values) {
  1446             super(null);
  1447             this.values = values;
  1449         public void accept(Visitor v) { ((ProxyVisitor)v).visitArrayAttributeProxy(this); }
  1450         @Override
  1451         public String toString() {
  1452             return "{" + values + "}";
  1456     /** A temporary proxy representing a compound attribute.
  1457      */
  1458     static class CompoundAnnotationProxy extends Attribute {
  1459         final List<Pair<Name,Attribute>> values;
  1460         public CompoundAnnotationProxy(Type type,
  1461                                       List<Pair<Name,Attribute>> values) {
  1462             super(type);
  1463             this.values = values;
  1465         public void accept(Visitor v) { ((ProxyVisitor)v).visitCompoundAnnotationProxy(this); }
  1466         @Override
  1467         public String toString() {
  1468             StringBuilder buf = new StringBuilder();
  1469             buf.append("@");
  1470             buf.append(type.tsym.getQualifiedName());
  1471             buf.append("/*proxy*/{");
  1472             boolean first = true;
  1473             for (List<Pair<Name,Attribute>> v = values;
  1474                  v.nonEmpty(); v = v.tail) {
  1475                 Pair<Name,Attribute> value = v.head;
  1476                 if (!first) buf.append(",");
  1477                 first = false;
  1478                 buf.append(value.fst);
  1479                 buf.append("=");
  1480                 buf.append(value.snd);
  1482             buf.append("}");
  1483             return buf.toString();
  1487     /** A temporary proxy representing a type annotation.
  1488      */
  1489     static class TypeAnnotationProxy {
  1490         final CompoundAnnotationProxy compound;
  1491         final TypeAnnotationPosition position;
  1492         public TypeAnnotationProxy(CompoundAnnotationProxy compound,
  1493                 TypeAnnotationPosition position) {
  1494             this.compound = compound;
  1495             this.position = position;
  1499     class AnnotationDeproxy implements ProxyVisitor {
  1500         private ClassSymbol requestingOwner = currentOwner.kind == MTH
  1501             ? currentOwner.enclClass() : (ClassSymbol)currentOwner;
  1503         List<Attribute.Compound> deproxyCompoundList(List<CompoundAnnotationProxy> pl) {
  1504             // also must fill in types!!!!
  1505             ListBuffer<Attribute.Compound> buf =
  1506                 new ListBuffer<Attribute.Compound>();
  1507             for (List<CompoundAnnotationProxy> l = pl; l.nonEmpty(); l=l.tail) {
  1508                 buf.append(deproxyCompound(l.head));
  1510             return buf.toList();
  1513         Attribute.Compound deproxyCompound(CompoundAnnotationProxy a) {
  1514             ListBuffer<Pair<Symbol.MethodSymbol,Attribute>> buf =
  1515                 new ListBuffer<Pair<Symbol.MethodSymbol,Attribute>>();
  1516             for (List<Pair<Name,Attribute>> l = a.values;
  1517                  l.nonEmpty();
  1518                  l = l.tail) {
  1519                 MethodSymbol meth = findAccessMethod(a.type, l.head.fst);
  1520                 buf.append(new Pair<Symbol.MethodSymbol,Attribute>
  1521                            (meth, deproxy(meth.type.getReturnType(), l.head.snd)));
  1523             return new Attribute.Compound(a.type, buf.toList());
  1526         MethodSymbol findAccessMethod(Type container, Name name) {
  1527             CompletionFailure failure = null;
  1528             try {
  1529                 for (Scope.Entry e = container.tsym.members().lookup(name);
  1530                      e.scope != null;
  1531                      e = e.next()) {
  1532                     Symbol sym = e.sym;
  1533                     if (sym.kind == MTH && sym.type.getParameterTypes().length() == 0)
  1534                         return (MethodSymbol) sym;
  1536             } catch (CompletionFailure ex) {
  1537                 failure = ex;
  1539             // The method wasn't found: emit a warning and recover
  1540             JavaFileObject prevSource = log.useSource(requestingOwner.classfile);
  1541             try {
  1542                 if (failure == null) {
  1543                     log.warning("annotation.method.not.found",
  1544                                 container,
  1545                                 name);
  1546                 } else {
  1547                     log.warning("annotation.method.not.found.reason",
  1548                                 container,
  1549                                 name,
  1550                                 failure.getDetailValue());//diagnostic, if present
  1552             } finally {
  1553                 log.useSource(prevSource);
  1555             // Construct a new method type and symbol.  Use bottom
  1556             // type (typeof null) as return type because this type is
  1557             // a subtype of all reference types and can be converted
  1558             // to primitive types by unboxing.
  1559             MethodType mt = new MethodType(List.<Type>nil(),
  1560                                            syms.botType,
  1561                                            List.<Type>nil(),
  1562                                            syms.methodClass);
  1563             return new MethodSymbol(PUBLIC | ABSTRACT, name, mt, container.tsym);
  1566         Attribute result;
  1567         Type type;
  1568         Attribute deproxy(Type t, Attribute a) {
  1569             Type oldType = type;
  1570             try {
  1571                 type = t;
  1572                 a.accept(this);
  1573                 return result;
  1574             } finally {
  1575                 type = oldType;
  1579         // implement Attribute.Visitor below
  1581         public void visitConstant(Attribute.Constant value) {
  1582             // assert value.type == type;
  1583             result = value;
  1586         public void visitClass(Attribute.Class clazz) {
  1587             result = clazz;
  1590         public void visitEnum(Attribute.Enum e) {
  1591             throw new AssertionError(); // shouldn't happen
  1594         public void visitCompound(Attribute.Compound compound) {
  1595             throw new AssertionError(); // shouldn't happen
  1598         public void visitArray(Attribute.Array array) {
  1599             throw new AssertionError(); // shouldn't happen
  1602         public void visitError(Attribute.Error e) {
  1603             throw new AssertionError(); // shouldn't happen
  1606         public void visitEnumAttributeProxy(EnumAttributeProxy proxy) {
  1607             // type.tsym.flatName() should == proxy.enumFlatName
  1608             TypeSymbol enumTypeSym = proxy.enumType.tsym;
  1609             VarSymbol enumerator = null;
  1610             for (Scope.Entry e = enumTypeSym.members().lookup(proxy.enumerator);
  1611                  e.scope != null;
  1612                  e = e.next()) {
  1613                 if (e.sym.kind == VAR) {
  1614                     enumerator = (VarSymbol)e.sym;
  1615                     break;
  1618             if (enumerator == null) {
  1619                 log.error("unknown.enum.constant",
  1620                           currentClassFile, enumTypeSym, proxy.enumerator);
  1621                 result = new Attribute.Error(enumTypeSym.type);
  1622             } else {
  1623                 result = new Attribute.Enum(enumTypeSym.type, enumerator);
  1627         public void visitArrayAttributeProxy(ArrayAttributeProxy proxy) {
  1628             int length = proxy.values.length();
  1629             Attribute[] ats = new Attribute[length];
  1630             Type elemtype = types.elemtype(type);
  1631             int i = 0;
  1632             for (List<Attribute> p = proxy.values; p.nonEmpty(); p = p.tail) {
  1633                 ats[i++] = deproxy(elemtype, p.head);
  1635             result = new Attribute.Array(type, ats);
  1638         public void visitCompoundAnnotationProxy(CompoundAnnotationProxy proxy) {
  1639             result = deproxyCompound(proxy);
  1643     class AnnotationDefaultCompleter extends AnnotationDeproxy implements Annotate.Annotator {
  1644         final MethodSymbol sym;
  1645         final Attribute value;
  1646         final JavaFileObject classFile = currentClassFile;
  1647         @Override
  1648         public String toString() {
  1649             return " ClassReader store default for " + sym.owner + "." + sym + " is " + value;
  1651         AnnotationDefaultCompleter(MethodSymbol sym, Attribute value) {
  1652             this.sym = sym;
  1653             this.value = value;
  1655         // implement Annotate.Annotator.enterAnnotation()
  1656         public void enterAnnotation() {
  1657             JavaFileObject previousClassFile = currentClassFile;
  1658             try {
  1659                 currentClassFile = classFile;
  1660                 sym.defaultValue = deproxy(sym.type.getReturnType(), value);
  1661             } finally {
  1662                 currentClassFile = previousClassFile;
  1667     class AnnotationCompleter extends AnnotationDeproxy implements Annotate.Annotator {
  1668         final Symbol sym;
  1669         final List<CompoundAnnotationProxy> l;
  1670         final JavaFileObject classFile;
  1671         @Override
  1672         public String toString() {
  1673             return " ClassReader annotate " + sym.owner + "." + sym + " with " + l;
  1675         AnnotationCompleter(Symbol sym, List<CompoundAnnotationProxy> l) {
  1676             this.sym = sym;
  1677             this.l = l;
  1678             this.classFile = currentClassFile;
  1680         // implement Annotate.Annotator.enterAnnotation()
  1681         public void enterAnnotation() {
  1682             JavaFileObject previousClassFile = currentClassFile;
  1683             try {
  1684                 currentClassFile = classFile;
  1685                 List<Attribute.Compound> newList = deproxyCompoundList(l);
  1686                 sym.attributes_field = ((sym.attributes_field == null)
  1687                                         ? newList
  1688                                         : newList.prependList(sym.attributes_field));
  1689             } finally {
  1690                 currentClassFile = previousClassFile;
  1696 /************************************************************************
  1697  * Reading Symbols
  1698  ***********************************************************************/
  1700     /** Read a field.
  1701      */
  1702     VarSymbol readField() {
  1703         long flags = adjustFieldFlags(nextChar());
  1704         Name name = readName(nextChar());
  1705         Type type = readType(nextChar());
  1706         VarSymbol v = new VarSymbol(flags, name, type, currentOwner);
  1707         readMemberAttrs(v);
  1708         return v;
  1711     /** Read a method.
  1712      */
  1713     MethodSymbol readMethod() {
  1714         long flags = adjustMethodFlags(nextChar());
  1715         Name name = readName(nextChar());
  1716         Type type = readType(nextChar());
  1717         if (name == names.init && currentOwner.hasOuterInstance()) {
  1718             // Sometimes anonymous classes don't have an outer
  1719             // instance, however, there is no reliable way to tell so
  1720             // we never strip this$n
  1721             if (!currentOwner.name.isEmpty())
  1722                 type = new MethodType(adjustMethodParams(flags, type.getParameterTypes()),
  1723                                       type.getReturnType(),
  1724                                       type.getThrownTypes(),
  1725                                       syms.methodClass);
  1727         MethodSymbol m = new MethodSymbol(flags, name, type, currentOwner);
  1728         if (saveParameterNames)
  1729             initParameterNames(m);
  1730         Symbol prevOwner = currentOwner;
  1731         currentOwner = m;
  1732         try {
  1733             readMemberAttrs(m);
  1734         } finally {
  1735             currentOwner = prevOwner;
  1737         if (saveParameterNames)
  1738             setParameterNames(m, type);
  1739         return m;
  1742     private List<Type> adjustMethodParams(long flags, List<Type> args) {
  1743         boolean isVarargs = (flags & VARARGS) != 0;
  1744         if (isVarargs) {
  1745             Type varargsElem = args.last();
  1746             ListBuffer<Type> adjustedArgs = ListBuffer.lb();
  1747             for (Type t : args) {
  1748                 adjustedArgs.append(t != varargsElem ?
  1749                     t :
  1750                     ((ArrayType)t).makeVarargs());
  1752             args = adjustedArgs.toList();
  1754         return args.tail;
  1757     /**
  1758      * Init the parameter names array.
  1759      * Parameter names are currently inferred from the names in the
  1760      * LocalVariableTable attributes of a Code attribute.
  1761      * (Note: this means parameter names are currently not available for
  1762      * methods without a Code attribute.)
  1763      * This method initializes an array in which to store the name indexes
  1764      * of parameter names found in LocalVariableTable attributes. It is
  1765      * slightly supersized to allow for additional slots with a start_pc of 0.
  1766      */
  1767     void initParameterNames(MethodSymbol sym) {
  1768         // make allowance for synthetic parameters.
  1769         final int excessSlots = 4;
  1770         int expectedParameterSlots =
  1771                 Code.width(sym.type.getParameterTypes()) + excessSlots;
  1772         if (parameterNameIndices == null
  1773                 || parameterNameIndices.length < expectedParameterSlots) {
  1774             parameterNameIndices = new int[expectedParameterSlots];
  1775         } else
  1776             Arrays.fill(parameterNameIndices, 0);
  1777         haveParameterNameIndices = false;
  1780     /**
  1781      * Set the parameter names for a symbol from the name index in the
  1782      * parameterNameIndicies array. The type of the symbol may have changed
  1783      * while reading the method attributes (see the Signature attribute).
  1784      * This may be because of generic information or because anonymous
  1785      * synthetic parameters were added.   The original type (as read from
  1786      * the method descriptor) is used to help guess the existence of
  1787      * anonymous synthetic parameters.
  1788      * On completion, sym.savedParameter names will either be null (if
  1789      * no parameter names were found in the class file) or will be set to a
  1790      * list of names, one per entry in sym.type.getParameterTypes, with
  1791      * any missing names represented by the empty name.
  1792      */
  1793     void setParameterNames(MethodSymbol sym, Type jvmType) {
  1794         // if no names were found in the class file, there's nothing more to do
  1795         if (!haveParameterNameIndices)
  1796             return;
  1798         int firstParam = ((sym.flags() & STATIC) == 0) ? 1 : 0;
  1799         // the code in readMethod may have skipped the first parameter when
  1800         // setting up the MethodType. If so, we make a corresponding allowance
  1801         // here for the position of the first parameter.  Note that this
  1802         // assumes the skipped parameter has a width of 1 -- i.e. it is not
  1803         // a double width type (long or double.)
  1804         if (sym.name == names.init && currentOwner.hasOuterInstance()) {
  1805             // Sometimes anonymous classes don't have an outer
  1806             // instance, however, there is no reliable way to tell so
  1807             // we never strip this$n
  1808             if (!currentOwner.name.isEmpty())
  1809                 firstParam += 1;
  1812         if (sym.type != jvmType) {
  1813             // reading the method attributes has caused the symbol's type to
  1814             // be changed. (i.e. the Signature attribute.)  This may happen if
  1815             // there are hidden (synthetic) parameters in the descriptor, but
  1816             // not in the Signature.  The position of these hidden parameters
  1817             // is unspecified; for now, assume they are at the beginning, and
  1818             // so skip over them. The primary case for this is two hidden
  1819             // parameters passed into Enum constructors.
  1820             int skip = Code.width(jvmType.getParameterTypes())
  1821                     - Code.width(sym.type.getParameterTypes());
  1822             firstParam += skip;
  1824         List<Name> paramNames = List.nil();
  1825         int index = firstParam;
  1826         for (Type t: sym.type.getParameterTypes()) {
  1827             int nameIdx = (index < parameterNameIndices.length
  1828                     ? parameterNameIndices[index] : 0);
  1829             Name name = nameIdx == 0 ? names.empty : readName(nameIdx);
  1830             paramNames = paramNames.prepend(name);
  1831             index += Code.width(t);
  1833         sym.savedParameterNames = paramNames.reverse();
  1836     /**
  1837      * skip n bytes
  1838      */
  1839     void skipBytes(int n) {
  1840         bp = bp + n;
  1843     /** Skip a field or method
  1844      */
  1845     void skipMember() {
  1846         bp = bp + 6;
  1847         char ac = nextChar();
  1848         for (int i = 0; i < ac; i++) {
  1849             bp = bp + 2;
  1850             int attrLen = nextInt();
  1851             bp = bp + attrLen;
  1855     /** Enter type variables of this classtype and all enclosing ones in
  1856      *  `typevars'.
  1857      */
  1858     protected void enterTypevars(Type t) {
  1859         if (t.getEnclosingType() != null && t.getEnclosingType().tag == CLASS)
  1860             enterTypevars(t.getEnclosingType());
  1861         for (List<Type> xs = t.getTypeArguments(); xs.nonEmpty(); xs = xs.tail)
  1862             typevars.enter(xs.head.tsym);
  1865     protected void enterTypevars(Symbol sym) {
  1866         if (sym.owner.kind == MTH) {
  1867             enterTypevars(sym.owner);
  1868             enterTypevars(sym.owner.owner);
  1870         enterTypevars(sym.type);
  1873     /** Read contents of a given class symbol `c'. Both external and internal
  1874      *  versions of an inner class are read.
  1875      */
  1876     void readClass(ClassSymbol c) {
  1877         ClassType ct = (ClassType)c.type;
  1879         // allocate scope for members
  1880         c.members_field = new Scope(c);
  1882         // prepare type variable table
  1883         typevars = typevars.dup(currentOwner);
  1884         if (ct.getEnclosingType().tag == CLASS)
  1885             enterTypevars(ct.getEnclosingType());
  1887         // read flags, or skip if this is an inner class
  1888         long flags = adjustClassFlags(nextChar());
  1889         if (c.owner.kind == PCK) c.flags_field = flags;
  1891         // read own class name and check that it matches
  1892         ClassSymbol self = readClassSymbol(nextChar());
  1893         if (c != self)
  1894             throw badClassFile("class.file.wrong.class",
  1895                                self.flatname);
  1897         // class attributes must be read before class
  1898         // skip ahead to read class attributes
  1899         int startbp = bp;
  1900         nextChar();
  1901         char interfaceCount = nextChar();
  1902         bp += interfaceCount * 2;
  1903         char fieldCount = nextChar();
  1904         for (int i = 0; i < fieldCount; i++) skipMember();
  1905         char methodCount = nextChar();
  1906         for (int i = 0; i < methodCount; i++) skipMember();
  1907         readClassAttrs(c);
  1909         if (readAllOfClassFile) {
  1910             for (int i = 1; i < poolObj.length; i++) readPool(i);
  1911             c.pool = new Pool(poolObj.length, poolObj);
  1914         // reset and read rest of classinfo
  1915         bp = startbp;
  1916         int n = nextChar();
  1917         if (ct.supertype_field == null)
  1918             ct.supertype_field = (n == 0)
  1919                 ? Type.noType
  1920                 : readClassSymbol(n).erasure(types);
  1921         n = nextChar();
  1922         List<Type> is = List.nil();
  1923         for (int i = 0; i < n; i++) {
  1924             Type _inter = readClassSymbol(nextChar()).erasure(types);
  1925             is = is.prepend(_inter);
  1927         if (ct.interfaces_field == null)
  1928             ct.interfaces_field = is.reverse();
  1930         Assert.check(fieldCount == nextChar());
  1931         for (int i = 0; i < fieldCount; i++) enterMember(c, readField());
  1932         Assert.check(methodCount == nextChar());
  1933         for (int i = 0; i < methodCount; i++) enterMember(c, readMethod());
  1935         typevars = typevars.leave();
  1938     /** Read inner class info. For each inner/outer pair allocate a
  1939      *  member class.
  1940      */
  1941     void readInnerClasses(ClassSymbol c) {
  1942         int n = nextChar();
  1943         for (int i = 0; i < n; i++) {
  1944             nextChar(); // skip inner class symbol
  1945             ClassSymbol outer = readClassSymbol(nextChar());
  1946             Name name = readName(nextChar());
  1947             if (name == null) name = names.empty;
  1948             long flags = adjustClassFlags(nextChar());
  1949             if (outer != null) { // we have a member class
  1950                 if (name == names.empty)
  1951                     name = names.one;
  1952                 ClassSymbol member = enterClass(name, outer);
  1953                 if ((flags & STATIC) == 0) {
  1954                     ((ClassType)member.type).setEnclosingType(outer.type);
  1955                     if (member.erasure_field != null)
  1956                         ((ClassType)member.erasure_field).setEnclosingType(types.erasure(outer.type));
  1958                 if (c == outer) {
  1959                     member.flags_field = flags;
  1960                     enterMember(c, member);
  1966     /** Read a class file.
  1967      */
  1968     private void readClassFile(ClassSymbol c) throws IOException {
  1969         int magic = nextInt();
  1970         if (magic != JAVA_MAGIC)
  1971             throw badClassFile("illegal.start.of.class.file");
  1973         minorVersion = nextChar();
  1974         majorVersion = nextChar();
  1975         int maxMajor = Target.MAX().majorVersion;
  1976         int maxMinor = Target.MAX().minorVersion;
  1977         if (majorVersion > maxMajor ||
  1978             majorVersion * 1000 + minorVersion <
  1979             Target.MIN().majorVersion * 1000 + Target.MIN().minorVersion)
  1981             if (majorVersion == (maxMajor + 1))
  1982                 log.warning("big.major.version",
  1983                             currentClassFile,
  1984                             majorVersion,
  1985                             maxMajor);
  1986             else
  1987                 throw badClassFile("wrong.version",
  1988                                    Integer.toString(majorVersion),
  1989                                    Integer.toString(minorVersion),
  1990                                    Integer.toString(maxMajor),
  1991                                    Integer.toString(maxMinor));
  1993         else if (checkClassFile &&
  1994                  majorVersion == maxMajor &&
  1995                  minorVersion > maxMinor)
  1997             printCCF("found.later.version",
  1998                      Integer.toString(minorVersion));
  2000         indexPool();
  2001         if (signatureBuffer.length < bp) {
  2002             int ns = Integer.highestOneBit(bp) << 1;
  2003             signatureBuffer = new byte[ns];
  2005         readClass(c);
  2008 /************************************************************************
  2009  * Adjusting flags
  2010  ***********************************************************************/
  2012     long adjustFieldFlags(long flags) {
  2013         return flags;
  2015     long adjustMethodFlags(long flags) {
  2016         if ((flags & ACC_BRIDGE) != 0) {
  2017             flags &= ~ACC_BRIDGE;
  2018             flags |= BRIDGE;
  2019             if (!allowGenerics)
  2020                 flags &= ~SYNTHETIC;
  2022         if ((flags & ACC_VARARGS) != 0) {
  2023             flags &= ~ACC_VARARGS;
  2024             flags |= VARARGS;
  2026         return flags;
  2028     long adjustClassFlags(long flags) {
  2029         return flags & ~ACC_SUPER; // SUPER and SYNCHRONIZED bits overloaded
  2032 /************************************************************************
  2033  * Loading Classes
  2034  ***********************************************************************/
  2036     /** Define a new class given its name and owner.
  2037      */
  2038     public ClassSymbol defineClass(Name name, Symbol owner) {
  2039         ClassSymbol c = new ClassSymbol(0, name, owner);
  2040         if (owner.kind == PCK)
  2041             Assert.checkNull(classes.get(c.flatname), c);
  2042         c.completer = this;
  2043         return c;
  2046     /** Create a new toplevel or member class symbol with given name
  2047      *  and owner and enter in `classes' unless already there.
  2048      */
  2049     public ClassSymbol enterClass(Name name, TypeSymbol owner) {
  2050         Name flatname = TypeSymbol.formFlatName(name, owner);
  2051         ClassSymbol c = classes.get(flatname);
  2052         if (c == null) {
  2053             c = defineClass(name, owner);
  2054             classes.put(flatname, c);
  2055         } else if ((c.name != name || c.owner != owner) && owner.kind == TYP && c.owner.kind == PCK) {
  2056             // reassign fields of classes that might have been loaded with
  2057             // their flat names.
  2058             c.owner.members().remove(c);
  2059             c.name = name;
  2060             c.owner = owner;
  2061             c.fullname = ClassSymbol.formFullName(name, owner);
  2063         return c;
  2066     /**
  2067      * Creates a new toplevel class symbol with given flat name and
  2068      * given class (or source) file.
  2070      * @param flatName a fully qualified binary class name
  2071      * @param classFile the class file or compilation unit defining
  2072      * the class (may be {@code null})
  2073      * @return a newly created class symbol
  2074      * @throws AssertionError if the class symbol already exists
  2075      */
  2076     public ClassSymbol enterClass(Name flatName, JavaFileObject classFile) {
  2077         ClassSymbol cs = classes.get(flatName);
  2078         if (cs != null) {
  2079             String msg = Log.format("%s: completer = %s; class file = %s; source file = %s",
  2080                                     cs.fullname,
  2081                                     cs.completer,
  2082                                     cs.classfile,
  2083                                     cs.sourcefile);
  2084             throw new AssertionError(msg);
  2086         Name packageName = Convert.packagePart(flatName);
  2087         PackageSymbol owner = packageName.isEmpty()
  2088                                 ? syms.unnamedPackage
  2089                                 : enterPackage(packageName);
  2090         cs = defineClass(Convert.shortName(flatName), owner);
  2091         cs.classfile = classFile;
  2092         classes.put(flatName, cs);
  2093         return cs;
  2096     /** Create a new member or toplevel class symbol with given flat name
  2097      *  and enter in `classes' unless already there.
  2098      */
  2099     public ClassSymbol enterClass(Name flatname) {
  2100         ClassSymbol c = classes.get(flatname);
  2101         if (c == null)
  2102             return enterClass(flatname, (JavaFileObject)null);
  2103         else
  2104             return c;
  2107     private boolean suppressFlush = false;
  2109     /** Completion for classes to be loaded. Before a class is loaded
  2110      *  we make sure its enclosing class (if any) is loaded.
  2111      */
  2112     public void complete(Symbol sym) throws CompletionFailure {
  2113         if (sym.kind == TYP) {
  2114             ClassSymbol c = (ClassSymbol)sym;
  2115             c.members_field = new Scope.ErrorScope(c); // make sure it's always defined
  2116             boolean saveSuppressFlush = suppressFlush;
  2117             suppressFlush = true;
  2118             try {
  2119                 completeOwners(c.owner);
  2120                 completeEnclosing(c);
  2121             } finally {
  2122                 suppressFlush = saveSuppressFlush;
  2124             fillIn(c);
  2125         } else if (sym.kind == PCK) {
  2126             PackageSymbol p = (PackageSymbol)sym;
  2127             try {
  2128                 fillIn(p);
  2129             } catch (IOException ex) {
  2130                 throw new CompletionFailure(sym, ex.getLocalizedMessage()).initCause(ex);
  2133         if (!filling && !suppressFlush)
  2134             annotate.flush(); // finish attaching annotations
  2137     /** complete up through the enclosing package. */
  2138     private void completeOwners(Symbol o) {
  2139         if (o.kind != PCK) completeOwners(o.owner);
  2140         o.complete();
  2143     /**
  2144      * Tries to complete lexically enclosing classes if c looks like a
  2145      * nested class.  This is similar to completeOwners but handles
  2146      * the situation when a nested class is accessed directly as it is
  2147      * possible with the Tree API or javax.lang.model.*.
  2148      */
  2149     private void completeEnclosing(ClassSymbol c) {
  2150         if (c.owner.kind == PCK) {
  2151             Symbol owner = c.owner;
  2152             for (Name name : Convert.enclosingCandidates(Convert.shortName(c.name))) {
  2153                 Symbol encl = owner.members().lookup(name).sym;
  2154                 if (encl == null)
  2155                     encl = classes.get(TypeSymbol.formFlatName(name, owner));
  2156                 if (encl != null)
  2157                     encl.complete();
  2162     /** We can only read a single class file at a time; this
  2163      *  flag keeps track of when we are currently reading a class
  2164      *  file.
  2165      */
  2166     private boolean filling = false;
  2168     /** Fill in definition of class `c' from corresponding class or
  2169      *  source file.
  2170      */
  2171     private void fillIn(ClassSymbol c) {
  2172         if (completionFailureName == c.fullname) {
  2173             throw new CompletionFailure(c, "user-selected completion failure by class name");
  2175         currentOwner = c;
  2176         warnedAttrs.clear();
  2177         JavaFileObject classfile = c.classfile;
  2178         if (classfile != null) {
  2179             JavaFileObject previousClassFile = currentClassFile;
  2180             try {
  2181                 if (filling) {
  2182                     Assert.error("Filling " + classfile.toUri() + " during " + previousClassFile);
  2184                 currentClassFile = classfile;
  2185                 if (verbose) {
  2186                     printVerbose("loading", currentClassFile.toString());
  2188                 if (classfile.getKind() == JavaFileObject.Kind.CLASS) {
  2189                     filling = true;
  2190                     try {
  2191                         bp = 0;
  2192                         buf = readInputStream(buf, classfile.openInputStream());
  2193                         readClassFile(c);
  2194                         if (!missingTypeVariables.isEmpty() && !foundTypeVariables.isEmpty()) {
  2195                             List<Type> missing = missingTypeVariables;
  2196                             List<Type> found = foundTypeVariables;
  2197                             missingTypeVariables = List.nil();
  2198                             foundTypeVariables = List.nil();
  2199                             filling = false;
  2200                             ClassType ct = (ClassType)currentOwner.type;
  2201                             ct.supertype_field =
  2202                                 types.subst(ct.supertype_field, missing, found);
  2203                             ct.interfaces_field =
  2204                                 types.subst(ct.interfaces_field, missing, found);
  2205                         } else if (missingTypeVariables.isEmpty() !=
  2206                                    foundTypeVariables.isEmpty()) {
  2207                             Name name = missingTypeVariables.head.tsym.name;
  2208                             throw badClassFile("undecl.type.var", name);
  2210                     } finally {
  2211                         missingTypeVariables = List.nil();
  2212                         foundTypeVariables = List.nil();
  2213                         filling = false;
  2215                 } else {
  2216                     if (sourceCompleter != null) {
  2217                         sourceCompleter.complete(c);
  2218                     } else {
  2219                         throw new IllegalStateException("Source completer required to read "
  2220                                                         + classfile.toUri());
  2223                 return;
  2224             } catch (IOException ex) {
  2225                 throw badClassFile("unable.to.access.file", ex.getMessage());
  2226             } finally {
  2227                 currentClassFile = previousClassFile;
  2229         } else {
  2230             JCDiagnostic diag =
  2231                 diagFactory.fragment("class.file.not.found", c.flatname);
  2232             throw
  2233                 newCompletionFailure(c, diag);
  2236     // where
  2237         private static byte[] readInputStream(byte[] buf, InputStream s) throws IOException {
  2238             try {
  2239                 buf = ensureCapacity(buf, s.available());
  2240                 int r = s.read(buf);
  2241                 int bp = 0;
  2242                 while (r != -1) {
  2243                     bp += r;
  2244                     buf = ensureCapacity(buf, bp);
  2245                     r = s.read(buf, bp, buf.length - bp);
  2247                 return buf;
  2248             } finally {
  2249                 try {
  2250                     s.close();
  2251                 } catch (IOException e) {
  2252                     /* Ignore any errors, as this stream may have already
  2253                      * thrown a related exception which is the one that
  2254                      * should be reported.
  2255                      */
  2259         /*
  2260          * ensureCapacity will increase the buffer as needed, taking note that
  2261          * the new buffer will always be greater than the needed and never
  2262          * exactly equal to the needed size or bp. If equal then the read (above)
  2263          * will infinitely loop as buf.length - bp == 0.
  2264          */
  2265         private static byte[] ensureCapacity(byte[] buf, int needed) {
  2266             if (buf.length <= needed) {
  2267                 byte[] old = buf;
  2268                 buf = new byte[Integer.highestOneBit(needed) << 1];
  2269                 System.arraycopy(old, 0, buf, 0, old.length);
  2271             return buf;
  2273         /** Static factory for CompletionFailure objects.
  2274          *  In practice, only one can be used at a time, so we share one
  2275          *  to reduce the expense of allocating new exception objects.
  2276          */
  2277         private CompletionFailure newCompletionFailure(TypeSymbol c,
  2278                                                        JCDiagnostic diag) {
  2279             if (!cacheCompletionFailure) {
  2280                 // log.warning("proc.messager",
  2281                 //             Log.getLocalizedString("class.file.not.found", c.flatname));
  2282                 // c.debug.printStackTrace();
  2283                 return new CompletionFailure(c, diag);
  2284             } else {
  2285                 CompletionFailure result = cachedCompletionFailure;
  2286                 result.sym = c;
  2287                 result.diag = diag;
  2288                 return result;
  2291         private CompletionFailure cachedCompletionFailure =
  2292             new CompletionFailure(null, (JCDiagnostic) null);
  2294             cachedCompletionFailure.setStackTrace(new StackTraceElement[0]);
  2297     /** Load a toplevel class with given fully qualified name
  2298      *  The class is entered into `classes' only if load was successful.
  2299      */
  2300     public ClassSymbol loadClass(Name flatname) throws CompletionFailure {
  2301         boolean absent = classes.get(flatname) == null;
  2302         ClassSymbol c = enterClass(flatname);
  2303         if (c.members_field == null && c.completer != null) {
  2304             try {
  2305                 c.complete();
  2306             } catch (CompletionFailure ex) {
  2307                 if (absent) classes.remove(flatname);
  2308                 throw ex;
  2311         return c;
  2314 /************************************************************************
  2315  * Loading Packages
  2316  ***********************************************************************/
  2318     /** Check to see if a package exists, given its fully qualified name.
  2319      */
  2320     public boolean packageExists(Name fullname) {
  2321         return enterPackage(fullname).exists();
  2324     /** Make a package, given its fully qualified name.
  2325      */
  2326     public PackageSymbol enterPackage(Name fullname) {
  2327         PackageSymbol p = packages.get(fullname);
  2328         if (p == null) {
  2329             Assert.check(!fullname.isEmpty(), "rootPackage missing!");
  2330             p = new PackageSymbol(
  2331                 Convert.shortName(fullname),
  2332                 enterPackage(Convert.packagePart(fullname)));
  2333             p.completer = this;
  2334             packages.put(fullname, p);
  2336         return p;
  2339     /** Make a package, given its unqualified name and enclosing package.
  2340      */
  2341     public PackageSymbol enterPackage(Name name, PackageSymbol owner) {
  2342         return enterPackage(TypeSymbol.formFullName(name, owner));
  2345     /** Include class corresponding to given class file in package,
  2346      *  unless (1) we already have one the same kind (.class or .java), or
  2347      *         (2) we have one of the other kind, and the given class file
  2348      *             is older.
  2349      */
  2350     protected void includeClassFile(PackageSymbol p, JavaFileObject file) {
  2351         if ((p.flags_field & EXISTS) == 0)
  2352             for (Symbol q = p; q != null && q.kind == PCK; q = q.owner)
  2353                 q.flags_field |= EXISTS;
  2354         JavaFileObject.Kind kind = file.getKind();
  2355         int seen;
  2356         if (kind == JavaFileObject.Kind.CLASS)
  2357             seen = CLASS_SEEN;
  2358         else
  2359             seen = SOURCE_SEEN;
  2360         String binaryName = fileManager.inferBinaryName(currentLoc, file);
  2361         int lastDot = binaryName.lastIndexOf(".");
  2362         Name classname = names.fromString(binaryName.substring(lastDot + 1));
  2363         boolean isPkgInfo = classname == names.package_info;
  2364         ClassSymbol c = isPkgInfo
  2365             ? p.package_info
  2366             : (ClassSymbol) p.members_field.lookup(classname).sym;
  2367         if (c == null) {
  2368             c = enterClass(classname, p);
  2369             if (c.classfile == null) // only update the file if's it's newly created
  2370                 c.classfile = file;
  2371             if (isPkgInfo) {
  2372                 p.package_info = c;
  2373             } else {
  2374                 if (c.owner == p)  // it might be an inner class
  2375                     p.members_field.enter(c);
  2377         } else if (c.classfile != null && (c.flags_field & seen) == 0) {
  2378             // if c.classfile == null, we are currently compiling this class
  2379             // and no further action is necessary.
  2380             // if (c.flags_field & seen) != 0, we have already encountered
  2381             // a file of the same kind; again no further action is necessary.
  2382             if ((c.flags_field & (CLASS_SEEN | SOURCE_SEEN)) != 0)
  2383                 c.classfile = preferredFileObject(file, c.classfile);
  2385         c.flags_field |= seen;
  2388     /** Implement policy to choose to derive information from a source
  2389      *  file or a class file when both are present.  May be overridden
  2390      *  by subclasses.
  2391      */
  2392     protected JavaFileObject preferredFileObject(JavaFileObject a,
  2393                                            JavaFileObject b) {
  2395         if (preferSource)
  2396             return (a.getKind() == JavaFileObject.Kind.SOURCE) ? a : b;
  2397         else {
  2398             long adate = a.getLastModified();
  2399             long bdate = b.getLastModified();
  2400             // 6449326: policy for bad lastModifiedTime in ClassReader
  2401             //assert adate >= 0 && bdate >= 0;
  2402             return (adate > bdate) ? a : b;
  2406     /**
  2407      * specifies types of files to be read when filling in a package symbol
  2408      */
  2409     protected EnumSet<JavaFileObject.Kind> getPackageFileKinds() {
  2410         return EnumSet.of(JavaFileObject.Kind.CLASS, JavaFileObject.Kind.SOURCE);
  2413     /**
  2414      * this is used to support javadoc
  2415      */
  2416     protected void extraFileActions(PackageSymbol pack, JavaFileObject fe) {
  2419     protected Location currentLoc; // FIXME
  2421     private boolean verbosePath = true;
  2423     /** Load directory of package into members scope.
  2424      */
  2425     private void fillIn(PackageSymbol p) throws IOException {
  2426         if (p.members_field == null) p.members_field = new Scope(p);
  2427         String packageName = p.fullname.toString();
  2429         Set<JavaFileObject.Kind> kinds = getPackageFileKinds();
  2431         fillIn(p, PLATFORM_CLASS_PATH,
  2432                fileManager.list(PLATFORM_CLASS_PATH,
  2433                                 packageName,
  2434                                 EnumSet.of(JavaFileObject.Kind.CLASS),
  2435                                 false));
  2437         Set<JavaFileObject.Kind> classKinds = EnumSet.copyOf(kinds);
  2438         classKinds.remove(JavaFileObject.Kind.SOURCE);
  2439         boolean wantClassFiles = !classKinds.isEmpty();
  2441         Set<JavaFileObject.Kind> sourceKinds = EnumSet.copyOf(kinds);
  2442         sourceKinds.remove(JavaFileObject.Kind.CLASS);
  2443         boolean wantSourceFiles = !sourceKinds.isEmpty();
  2445         boolean haveSourcePath = fileManager.hasLocation(SOURCE_PATH);
  2447         if (verbose && verbosePath) {
  2448             if (fileManager instanceof StandardJavaFileManager) {
  2449                 StandardJavaFileManager fm = (StandardJavaFileManager)fileManager;
  2450                 if (haveSourcePath && wantSourceFiles) {
  2451                     List<File> path = List.nil();
  2452                     for (File file : fm.getLocation(SOURCE_PATH)) {
  2453                         path = path.prepend(file);
  2455                     printVerbose("sourcepath", path.reverse().toString());
  2456                 } else if (wantSourceFiles) {
  2457                     List<File> path = List.nil();
  2458                     for (File file : fm.getLocation(CLASS_PATH)) {
  2459                         path = path.prepend(file);
  2461                     printVerbose("sourcepath", path.reverse().toString());
  2463                 if (wantClassFiles) {
  2464                     List<File> path = List.nil();
  2465                     for (File file : fm.getLocation(PLATFORM_CLASS_PATH)) {
  2466                         path = path.prepend(file);
  2468                     for (File file : fm.getLocation(CLASS_PATH)) {
  2469                         path = path.prepend(file);
  2471                     printVerbose("classpath",  path.reverse().toString());
  2476         if (wantSourceFiles && !haveSourcePath) {
  2477             fillIn(p, CLASS_PATH,
  2478                    fileManager.list(CLASS_PATH,
  2479                                     packageName,
  2480                                     kinds,
  2481                                     false));
  2482         } else {
  2483             if (wantClassFiles)
  2484                 fillIn(p, CLASS_PATH,
  2485                        fileManager.list(CLASS_PATH,
  2486                                         packageName,
  2487                                         classKinds,
  2488                                         false));
  2489             if (wantSourceFiles)
  2490                 fillIn(p, SOURCE_PATH,
  2491                        fileManager.list(SOURCE_PATH,
  2492                                         packageName,
  2493                                         sourceKinds,
  2494                                         false));
  2496         verbosePath = false;
  2498     // where
  2499         private void fillIn(PackageSymbol p,
  2500                             Location location,
  2501                             Iterable<JavaFileObject> files)
  2503             currentLoc = location;
  2504             for (JavaFileObject fo : files) {
  2505                 switch (fo.getKind()) {
  2506                 case CLASS:
  2507                 case SOURCE: {
  2508                     // TODO pass binaryName to includeClassFile
  2509                     String binaryName = fileManager.inferBinaryName(currentLoc, fo);
  2510                     String simpleName = binaryName.substring(binaryName.lastIndexOf(".") + 1);
  2511                     if (SourceVersion.isIdentifier(simpleName) ||
  2512                         simpleName.equals("package-info"))
  2513                         includeClassFile(p, fo);
  2514                     break;
  2516                 default:
  2517                     extraFileActions(p, fo);
  2522     /** Output for "-verbose" option.
  2523      *  @param key The key to look up the correct internationalized string.
  2524      *  @param arg An argument for substitution into the output string.
  2525      */
  2526     private void printVerbose(String key, CharSequence arg) {
  2527         log.printNoteLines("verbose." + key, arg);
  2530     /** Output for "-checkclassfile" option.
  2531      *  @param key The key to look up the correct internationalized string.
  2532      *  @param arg An argument for substitution into the output string.
  2533      */
  2534     private void printCCF(String key, Object arg) {
  2535         log.printNoteLines(key, arg);
  2539     public interface SourceCompleter {
  2540         void complete(ClassSymbol sym)
  2541             throws CompletionFailure;
  2544     /**
  2545      * A subclass of JavaFileObject for the sourcefile attribute found in a classfile.
  2546      * The attribute is only the last component of the original filename, so is unlikely
  2547      * to be valid as is, so operations other than those to access the name throw
  2548      * UnsupportedOperationException
  2549      */
  2550     private static class SourceFileObject extends BaseFileObject {
  2552         /** The file's name.
  2553          */
  2554         private Name name;
  2555         private Name flatname;
  2557         public SourceFileObject(Name name, Name flatname) {
  2558             super(null); // no file manager; never referenced for this file object
  2559             this.name = name;
  2560             this.flatname = flatname;
  2563         @Override
  2564         public URI toUri() {
  2565             try {
  2566                 return new URI(null, name.toString(), null);
  2567             } catch (URISyntaxException e) {
  2568                 throw new CannotCreateUriError(name.toString(), e);
  2572         @Override
  2573         public String getName() {
  2574             return name.toString();
  2577         @Override
  2578         public String getShortName() {
  2579             return getName();
  2582         @Override
  2583         public JavaFileObject.Kind getKind() {
  2584             return getKind(getName());
  2587         @Override
  2588         public InputStream openInputStream() {
  2589             throw new UnsupportedOperationException();
  2592         @Override
  2593         public OutputStream openOutputStream() {
  2594             throw new UnsupportedOperationException();
  2597         @Override
  2598         public CharBuffer getCharContent(boolean ignoreEncodingErrors) {
  2599             throw new UnsupportedOperationException();
  2602         @Override
  2603         public Reader openReader(boolean ignoreEncodingErrors) {
  2604             throw new UnsupportedOperationException();
  2607         @Override
  2608         public Writer openWriter() {
  2609             throw new UnsupportedOperationException();
  2612         @Override
  2613         public long getLastModified() {
  2614             throw new UnsupportedOperationException();
  2617         @Override
  2618         public boolean delete() {
  2619             throw new UnsupportedOperationException();
  2622         @Override
  2623         protected String inferBinaryName(Iterable<? extends File> path) {
  2624             return flatname.toString();
  2627         @Override
  2628         public boolean isNameCompatible(String simpleName, JavaFileObject.Kind kind) {
  2629             return true; // fail-safe mode
  2632         /**
  2633          * Check if two file objects are equal.
  2634          * SourceFileObjects are just placeholder objects for the value of a
  2635          * SourceFile attribute, and do not directly represent specific files.
  2636          * Two SourceFileObjects are equal if their names are equal.
  2637          */
  2638         @Override
  2639         public boolean equals(Object other) {
  2640             if (this == other)
  2641                 return true;
  2643             if (!(other instanceof SourceFileObject))
  2644                 return false;
  2646             SourceFileObject o = (SourceFileObject) other;
  2647             return name.equals(o.name);
  2650         @Override
  2651         public int hashCode() {
  2652             return name.hashCode();

mercurial