src/share/classes/com/sun/tools/javac/comp/MemberEnter.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 904
4baab658f357
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) 2003, 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.comp;
    28 import java.util.*;
    29 import java.util.Set;
    30 import javax.tools.JavaFileObject;
    32 import com.sun.tools.javac.code.*;
    33 import com.sun.tools.javac.jvm.*;
    34 import com.sun.tools.javac.tree.*;
    35 import com.sun.tools.javac.util.*;
    36 import com.sun.tools.javac.util.List;
    38 import com.sun.tools.javac.code.Type.*;
    39 import com.sun.tools.javac.code.Symbol.*;
    40 import com.sun.tools.javac.tree.JCTree.*;
    42 import static com.sun.tools.javac.code.Flags.*;
    43 import static com.sun.tools.javac.code.Kinds.*;
    44 import static com.sun.tools.javac.code.TypeTags.*;
    45 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
    47 /** This is the second phase of Enter, in which classes are completed
    48  *  by entering their members into the class scope using
    49  *  MemberEnter.complete().  See Enter for an overview.
    50  *
    51  *  <p><b>This is NOT part of any supported API.
    52  *  If you write code that depends on this, you do so at your own risk.
    53  *  This code and its internal interfaces are subject to change or
    54  *  deletion without notice.</b>
    55  */
    56 public class MemberEnter extends JCTree.Visitor implements Completer {
    57     protected static final Context.Key<MemberEnter> memberEnterKey =
    58         new Context.Key<MemberEnter>();
    60     /** A switch to determine whether we check for package/class conflicts
    61      */
    62     final static boolean checkClash = true;
    64     private final Names names;
    65     private final Enter enter;
    66     private final Log log;
    67     private final Check chk;
    68     private final Attr attr;
    69     private final Symtab syms;
    70     private final TreeMaker make;
    71     private final ClassReader reader;
    72     private final Todo todo;
    73     private final Annotate annotate;
    74     private final Types types;
    75     private final JCDiagnostic.Factory diags;
    76     private final Target target;
    77     private final DeferredLintHandler deferredLintHandler;
    79     private final boolean skipAnnotations;
    81     public static MemberEnter instance(Context context) {
    82         MemberEnter instance = context.get(memberEnterKey);
    83         if (instance == null)
    84             instance = new MemberEnter(context);
    85         return instance;
    86     }
    88     protected MemberEnter(Context context) {
    89         context.put(memberEnterKey, this);
    90         names = Names.instance(context);
    91         enter = Enter.instance(context);
    92         log = Log.instance(context);
    93         chk = Check.instance(context);
    94         attr = Attr.instance(context);
    95         syms = Symtab.instance(context);
    96         make = TreeMaker.instance(context);
    97         reader = ClassReader.instance(context);
    98         todo = Todo.instance(context);
    99         annotate = Annotate.instance(context);
   100         types = Types.instance(context);
   101         diags = JCDiagnostic.Factory.instance(context);
   102         target = Target.instance(context);
   103         deferredLintHandler = DeferredLintHandler.instance(context);
   104         Options options = Options.instance(context);
   105         skipAnnotations = options.isSet("skipAnnotations");
   106     }
   108     /** A queue for classes whose members still need to be entered into the
   109      *  symbol table.
   110      */
   111     ListBuffer<Env<AttrContext>> halfcompleted = new ListBuffer<Env<AttrContext>>();
   113     /** Set to true only when the first of a set of classes is
   114      *  processed from the halfcompleted queue.
   115      */
   116     boolean isFirst = true;
   118     /** A flag to disable completion from time to time during member
   119      *  enter, as we only need to look up types.  This avoids
   120      *  unnecessarily deep recursion.
   121      */
   122     boolean completionEnabled = true;
   124     /* ---------- Processing import clauses ----------------
   125      */
   127     /** Import all classes of a class or package on demand.
   128      *  @param pos           Position to be used for error reporting.
   129      *  @param tsym          The class or package the members of which are imported.
   130      *  @param toScope   The (import) scope in which imported classes
   131      *               are entered.
   132      */
   133     private void importAll(int pos,
   134                            final TypeSymbol tsym,
   135                            Env<AttrContext> env) {
   136         // Check that packages imported from exist (JLS ???).
   137         if (tsym.kind == PCK && tsym.members().elems == null && !tsym.exists()) {
   138             // If we can't find java.lang, exit immediately.
   139             if (((PackageSymbol)tsym).fullname.equals(names.java_lang)) {
   140                 JCDiagnostic msg = diags.fragment("fatal.err.no.java.lang");
   141                 throw new FatalError(msg);
   142             } else {
   143                 log.error(pos, "doesnt.exist", tsym);
   144             }
   145         }
   146         env.toplevel.starImportScope.importAll(tsym.members());
   147     }
   149     /** Import all static members of a class or package on demand.
   150      *  @param pos           Position to be used for error reporting.
   151      *  @param tsym          The class or package the members of which are imported.
   152      *  @param toScope   The (import) scope in which imported classes
   153      *               are entered.
   154      */
   155     private void importStaticAll(int pos,
   156                                  final TypeSymbol tsym,
   157                                  Env<AttrContext> env) {
   158         final JavaFileObject sourcefile = env.toplevel.sourcefile;
   159         final Scope toScope = env.toplevel.starImportScope;
   160         final PackageSymbol packge = env.toplevel.packge;
   161         final TypeSymbol origin = tsym;
   163         // enter imported types immediately
   164         new Object() {
   165             Set<Symbol> processed = new HashSet<Symbol>();
   166             void importFrom(TypeSymbol tsym) {
   167                 if (tsym == null || !processed.add(tsym))
   168                     return;
   170                 // also import inherited names
   171                 importFrom(types.supertype(tsym.type).tsym);
   172                 for (Type t : types.interfaces(tsym.type))
   173                     importFrom(t.tsym);
   175                 final Scope fromScope = tsym.members();
   176                 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
   177                     Symbol sym = e.sym;
   178                     if (sym.kind == TYP &&
   179                         (sym.flags() & STATIC) != 0 &&
   180                         staticImportAccessible(sym, packge) &&
   181                         sym.isMemberOf(origin, types) &&
   182                         !toScope.includes(sym))
   183                         toScope.enter(sym, fromScope, origin.members());
   184                 }
   185             }
   186         }.importFrom(tsym);
   188         // enter non-types before annotations that might use them
   189         annotate.earlier(new Annotate.Annotator() {
   190             Set<Symbol> processed = new HashSet<Symbol>();
   192             public String toString() {
   193                 return "import static " + tsym + ".*" + " in " + sourcefile;
   194             }
   195             void importFrom(TypeSymbol tsym) {
   196                 if (tsym == null || !processed.add(tsym))
   197                     return;
   199                 // also import inherited names
   200                 importFrom(types.supertype(tsym.type).tsym);
   201                 for (Type t : types.interfaces(tsym.type))
   202                     importFrom(t.tsym);
   204                 final Scope fromScope = tsym.members();
   205                 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
   206                     Symbol sym = e.sym;
   207                     if (sym.isStatic() && sym.kind != TYP &&
   208                         staticImportAccessible(sym, packge) &&
   209                         !toScope.includes(sym) &&
   210                         sym.isMemberOf(origin, types)) {
   211                         toScope.enter(sym, fromScope, origin.members());
   212                     }
   213                 }
   214             }
   215             public void enterAnnotation() {
   216                 importFrom(tsym);
   217             }
   218         });
   219     }
   221     // is the sym accessible everywhere in packge?
   222     boolean staticImportAccessible(Symbol sym, PackageSymbol packge) {
   223         int flags = (int)(sym.flags() & AccessFlags);
   224         switch (flags) {
   225         default:
   226         case PUBLIC:
   227             return true;
   228         case PRIVATE:
   229             return false;
   230         case 0:
   231         case PROTECTED:
   232             return sym.packge() == packge;
   233         }
   234     }
   236     /** Import statics types of a given name.  Non-types are handled in Attr.
   237      *  @param pos           Position to be used for error reporting.
   238      *  @param tsym          The class from which the name is imported.
   239      *  @param name          The (simple) name being imported.
   240      *  @param env           The environment containing the named import
   241      *                  scope to add to.
   242      */
   243     private void importNamedStatic(final DiagnosticPosition pos,
   244                                    final TypeSymbol tsym,
   245                                    final Name name,
   246                                    final Env<AttrContext> env) {
   247         if (tsym.kind != TYP) {
   248             log.error(pos, "static.imp.only.classes.and.interfaces");
   249             return;
   250         }
   252         final Scope toScope = env.toplevel.namedImportScope;
   253         final PackageSymbol packge = env.toplevel.packge;
   254         final TypeSymbol origin = tsym;
   256         // enter imported types immediately
   257         new Object() {
   258             Set<Symbol> processed = new HashSet<Symbol>();
   259             void importFrom(TypeSymbol tsym) {
   260                 if (tsym == null || !processed.add(tsym))
   261                     return;
   263                 // also import inherited names
   264                 importFrom(types.supertype(tsym.type).tsym);
   265                 for (Type t : types.interfaces(tsym.type))
   266                     importFrom(t.tsym);
   268                 for (Scope.Entry e = tsym.members().lookup(name);
   269                      e.scope != null;
   270                      e = e.next()) {
   271                     Symbol sym = e.sym;
   272                     if (sym.isStatic() &&
   273                         sym.kind == TYP &&
   274                         staticImportAccessible(sym, packge) &&
   275                         sym.isMemberOf(origin, types) &&
   276                         chk.checkUniqueStaticImport(pos, sym, toScope))
   277                         toScope.enter(sym, sym.owner.members(), origin.members());
   278                 }
   279             }
   280         }.importFrom(tsym);
   282         // enter non-types before annotations that might use them
   283         annotate.earlier(new Annotate.Annotator() {
   284             Set<Symbol> processed = new HashSet<Symbol>();
   285             boolean found = false;
   287             public String toString() {
   288                 return "import static " + tsym + "." + name;
   289             }
   290             void importFrom(TypeSymbol tsym) {
   291                 if (tsym == null || !processed.add(tsym))
   292                     return;
   294                 // also import inherited names
   295                 importFrom(types.supertype(tsym.type).tsym);
   296                 for (Type t : types.interfaces(tsym.type))
   297                     importFrom(t.tsym);
   299                 for (Scope.Entry e = tsym.members().lookup(name);
   300                      e.scope != null;
   301                      e = e.next()) {
   302                     Symbol sym = e.sym;
   303                     if (sym.isStatic() &&
   304                         staticImportAccessible(sym, packge) &&
   305                         sym.isMemberOf(origin, types)) {
   306                         found = true;
   307                         if (sym.kind == MTH ||
   308                             sym.kind != TYP && chk.checkUniqueStaticImport(pos, sym, toScope))
   309                             toScope.enter(sym, sym.owner.members(), origin.members());
   310                     }
   311                 }
   312             }
   313             public void enterAnnotation() {
   314                 JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
   315                 try {
   316                     importFrom(tsym);
   317                     if (!found) {
   318                         log.error(pos, "cant.resolve.location",
   319                                   KindName.STATIC,
   320                                   name, List.<Type>nil(), List.<Type>nil(),
   321                                   Kinds.typeKindName(tsym.type),
   322                                   tsym.type);
   323                     }
   324                 } finally {
   325                     log.useSource(prev);
   326                 }
   327             }
   328         });
   329     }
   330     /** Import given class.
   331      *  @param pos           Position to be used for error reporting.
   332      *  @param tsym          The class to be imported.
   333      *  @param env           The environment containing the named import
   334      *                  scope to add to.
   335      */
   336     private void importNamed(DiagnosticPosition pos, Symbol tsym, Env<AttrContext> env) {
   337         if (tsym.kind == TYP &&
   338             chk.checkUniqueImport(pos, tsym, env.toplevel.namedImportScope))
   339             env.toplevel.namedImportScope.enter(tsym, tsym.owner.members());
   340     }
   342     /** Construct method type from method signature.
   343      *  @param typarams    The method's type parameters.
   344      *  @param params      The method's value parameters.
   345      *  @param res             The method's result type,
   346      *                 null if it is a constructor.
   347      *  @param thrown      The method's thrown exceptions.
   348      *  @param env             The method's (local) environment.
   349      */
   350     Type signature(List<JCTypeParameter> typarams,
   351                    List<JCVariableDecl> params,
   352                    JCTree res,
   353                    List<JCExpression> thrown,
   354                    Env<AttrContext> env) {
   356         // Enter and attribute type parameters.
   357         List<Type> tvars = enter.classEnter(typarams, env);
   358         attr.attribTypeVariables(typarams, env);
   360         // Enter and attribute value parameters.
   361         ListBuffer<Type> argbuf = new ListBuffer<Type>();
   362         for (List<JCVariableDecl> l = params; l.nonEmpty(); l = l.tail) {
   363             memberEnter(l.head, env);
   364             argbuf.append(l.head.vartype.type);
   365         }
   367         // Attribute result type, if one is given.
   368         Type restype = res == null ? syms.voidType : attr.attribType(res, env);
   370         // Attribute thrown exceptions.
   371         ListBuffer<Type> thrownbuf = new ListBuffer<Type>();
   372         for (List<JCExpression> l = thrown; l.nonEmpty(); l = l.tail) {
   373             Type exc = attr.attribType(l.head, env);
   374             if (exc.tag != TYPEVAR)
   375                 exc = chk.checkClassType(l.head.pos(), exc);
   376             thrownbuf.append(exc);
   377         }
   378         Type mtype = new MethodType(argbuf.toList(),
   379                                     restype,
   380                                     thrownbuf.toList(),
   381                                     syms.methodClass);
   382         return tvars.isEmpty() ? mtype : new ForAll(tvars, mtype);
   383     }
   385 /* ********************************************************************
   386  * Visitor methods for member enter
   387  *********************************************************************/
   389     /** Visitor argument: the current environment
   390      */
   391     protected Env<AttrContext> env;
   393     /** Enter field and method definitions and process import
   394      *  clauses, catching any completion failure exceptions.
   395      */
   396     protected void memberEnter(JCTree tree, Env<AttrContext> env) {
   397         Env<AttrContext> prevEnv = this.env;
   398         try {
   399             this.env = env;
   400             tree.accept(this);
   401         }  catch (CompletionFailure ex) {
   402             chk.completionError(tree.pos(), ex);
   403         } finally {
   404             this.env = prevEnv;
   405         }
   406     }
   408     /** Enter members from a list of trees.
   409      */
   410     void memberEnter(List<? extends JCTree> trees, Env<AttrContext> env) {
   411         for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
   412             memberEnter(l.head, env);
   413     }
   415     /** Enter members for a class.
   416      */
   417     void finishClass(JCClassDecl tree, Env<AttrContext> env) {
   418         if ((tree.mods.flags & Flags.ENUM) != 0 &&
   419             (types.supertype(tree.sym.type).tsym.flags() & Flags.ENUM) == 0) {
   420             addEnumMembers(tree, env);
   421         }
   422         memberEnter(tree.defs, env);
   423     }
   425     /** Add the implicit members for an enum type
   426      *  to the symbol table.
   427      */
   428     private void addEnumMembers(JCClassDecl tree, Env<AttrContext> env) {
   429         JCExpression valuesType = make.Type(new ArrayType(tree.sym.type, syms.arrayClass));
   431         // public static T[] values() { return ???; }
   432         JCMethodDecl values = make.
   433             MethodDef(make.Modifiers(Flags.PUBLIC|Flags.STATIC),
   434                       names.values,
   435                       valuesType,
   436                       List.<JCTypeParameter>nil(),
   437                       List.<JCVariableDecl>nil(),
   438                       List.<JCExpression>nil(), // thrown
   439                       null, //make.Block(0, Tree.emptyList.prepend(make.Return(make.Ident(names._null)))),
   440                       null);
   441         memberEnter(values, env);
   443         // public static T valueOf(String name) { return ???; }
   444         JCMethodDecl valueOf = make.
   445             MethodDef(make.Modifiers(Flags.PUBLIC|Flags.STATIC),
   446                       names.valueOf,
   447                       make.Type(tree.sym.type),
   448                       List.<JCTypeParameter>nil(),
   449                       List.of(make.VarDef(make.Modifiers(Flags.PARAMETER),
   450                                             names.fromString("name"),
   451                                             make.Type(syms.stringType), null)),
   452                       List.<JCExpression>nil(), // thrown
   453                       null, //make.Block(0, Tree.emptyList.prepend(make.Return(make.Ident(names._null)))),
   454                       null);
   455         memberEnter(valueOf, env);
   457         // the remaining members are for bootstrapping only
   458         if (!target.compilerBootstrap(tree.sym)) return;
   460         // public final int ordinal() { return ???; }
   461         JCMethodDecl ordinal = make.at(tree.pos).
   462             MethodDef(make.Modifiers(Flags.PUBLIC|Flags.FINAL),
   463                       names.ordinal,
   464                       make.Type(syms.intType),
   465                       List.<JCTypeParameter>nil(),
   466                       List.<JCVariableDecl>nil(),
   467                       List.<JCExpression>nil(),
   468                       null,
   469                       null);
   470         memberEnter(ordinal, env);
   472         // public final String name() { return ???; }
   473         JCMethodDecl name = make.
   474             MethodDef(make.Modifiers(Flags.PUBLIC|Flags.FINAL),
   475                       names._name,
   476                       make.Type(syms.stringType),
   477                       List.<JCTypeParameter>nil(),
   478                       List.<JCVariableDecl>nil(),
   479                       List.<JCExpression>nil(),
   480                       null,
   481                       null);
   482         memberEnter(name, env);
   484         // public int compareTo(E other) { return ???; }
   485         MethodSymbol compareTo = new
   486             MethodSymbol(Flags.PUBLIC,
   487                          names.compareTo,
   488                          new MethodType(List.of(tree.sym.type),
   489                                         syms.intType,
   490                                         List.<Type>nil(),
   491                                         syms.methodClass),
   492                          tree.sym);
   493         memberEnter(make.MethodDef(compareTo, null), env);
   494     }
   496     public void visitTopLevel(JCCompilationUnit tree) {
   497         if (tree.starImportScope.elems != null) {
   498             // we must have already processed this toplevel
   499             return;
   500         }
   502         // check that no class exists with same fully qualified name as
   503         // toplevel package
   504         if (checkClash && tree.pid != null) {
   505             Symbol p = tree.packge;
   506             while (p.owner != syms.rootPackage) {
   507                 p.owner.complete(); // enter all class members of p
   508                 if (syms.classes.get(p.getQualifiedName()) != null) {
   509                     log.error(tree.pos,
   510                               "pkg.clashes.with.class.of.same.name",
   511                               p);
   512                 }
   513                 p = p.owner;
   514             }
   515         }
   517         // process package annotations
   518         annotateLater(tree.packageAnnotations, env, tree.packge);
   520         // Import-on-demand java.lang.
   521         importAll(tree.pos, reader.enterPackage(names.java_lang), env);
   523         // Process all import clauses.
   524         memberEnter(tree.defs, env);
   525     }
   527     // process the non-static imports and the static imports of types.
   528     public void visitImport(JCImport tree) {
   529         JCTree imp = tree.qualid;
   530         Name name = TreeInfo.name(imp);
   531         TypeSymbol p;
   533         // Create a local environment pointing to this tree to disable
   534         // effects of other imports in Resolve.findGlobalType
   535         Env<AttrContext> localEnv = env.dup(tree);
   537         // Attribute qualifying package or class.
   538         JCFieldAccess s = (JCFieldAccess) imp;
   539         p = attr.
   540             attribTree(s.selected,
   541                        localEnv,
   542                        tree.staticImport ? TYP : (TYP | PCK),
   543                        Type.noType).tsym;
   544         if (name == names.asterisk) {
   545             // Import on demand.
   546             chk.checkCanonical(s.selected);
   547             if (tree.staticImport)
   548                 importStaticAll(tree.pos, p, env);
   549             else
   550                 importAll(tree.pos, p, env);
   551         } else {
   552             // Named type import.
   553             if (tree.staticImport) {
   554                 importNamedStatic(tree.pos(), p, name, localEnv);
   555                 chk.checkCanonical(s.selected);
   556             } else {
   557                 TypeSymbol c = attribImportType(imp, localEnv).tsym;
   558                 chk.checkCanonical(imp);
   559                 importNamed(tree.pos(), c, env);
   560             }
   561         }
   562     }
   564     public void visitMethodDef(JCMethodDecl tree) {
   565         Scope enclScope = enter.enterScope(env);
   566         MethodSymbol m = new MethodSymbol(0, tree.name, null, enclScope.owner);
   567         m.flags_field = chk.checkFlags(tree.pos(), tree.mods.flags, m, tree);
   568         tree.sym = m;
   569         Env<AttrContext> localEnv = methodEnv(tree, env);
   571         DeferredLintHandler prevLintHandler =
   572                 chk.setDeferredLintHandler(deferredLintHandler.setPos(tree.pos()));
   573         try {
   574             // Compute the method type
   575             m.type = signature(tree.typarams, tree.params,
   576                                tree.restype, tree.thrown,
   577                                localEnv);
   578         } finally {
   579             chk.setDeferredLintHandler(prevLintHandler);
   580         }
   582         // Set m.params
   583         ListBuffer<VarSymbol> params = new ListBuffer<VarSymbol>();
   584         JCVariableDecl lastParam = null;
   585         for (List<JCVariableDecl> l = tree.params; l.nonEmpty(); l = l.tail) {
   586             JCVariableDecl param = lastParam = l.head;
   587             params.append(Assert.checkNonNull(param.sym));
   588         }
   589         m.params = params.toList();
   591         // mark the method varargs, if necessary
   592         if (lastParam != null && (lastParam.mods.flags & Flags.VARARGS) != 0)
   593             m.flags_field |= Flags.VARARGS;
   595         localEnv.info.scope.leave();
   596         if (chk.checkUnique(tree.pos(), m, enclScope)) {
   597             enclScope.enter(m);
   598         }
   599         annotateLater(tree.mods.annotations, localEnv, m);
   600         if (tree.defaultValue != null)
   601             annotateDefaultValueLater(tree.defaultValue, localEnv, m);
   602     }
   604     /** Create a fresh environment for method bodies.
   605      *  @param tree     The method definition.
   606      *  @param env      The environment current outside of the method definition.
   607      */
   608     Env<AttrContext> methodEnv(JCMethodDecl tree, Env<AttrContext> env) {
   609         Env<AttrContext> localEnv =
   610             env.dup(tree, env.info.dup(env.info.scope.dupUnshared()));
   611         localEnv.enclMethod = tree;
   612         localEnv.info.scope.owner = tree.sym;
   613         if ((tree.mods.flags & STATIC) != 0) localEnv.info.staticLevel++;
   614         return localEnv;
   615     }
   617     public void visitVarDef(JCVariableDecl tree) {
   618         Env<AttrContext> localEnv = env;
   619         if ((tree.mods.flags & STATIC) != 0 ||
   620             (env.info.scope.owner.flags() & INTERFACE) != 0) {
   621             localEnv = env.dup(tree, env.info.dup());
   622             localEnv.info.staticLevel++;
   623         }
   624         DeferredLintHandler prevLintHandler =
   625                 chk.setDeferredLintHandler(deferredLintHandler.setPos(tree.pos()));
   626         try {
   627             attr.attribType(tree.vartype, localEnv);
   628         } finally {
   629             chk.setDeferredLintHandler(prevLintHandler);
   630         }
   632         if ((tree.mods.flags & VARARGS) != 0) {
   633             //if we are entering a varargs parameter, we need to replace its type
   634             //(a plain array type) with the more precise VarargsType --- we need
   635             //to do it this way because varargs is represented in the tree as a modifier
   636             //on the parameter declaration, and not as a distinct type of array node.
   637             ArrayType atype = (ArrayType)tree.vartype.type;
   638             tree.vartype.type = atype.makeVarargs();
   639         }
   640         Scope enclScope = enter.enterScope(env);
   641         VarSymbol v =
   642             new VarSymbol(0, tree.name, tree.vartype.type, enclScope.owner);
   643         v.flags_field = chk.checkFlags(tree.pos(), tree.mods.flags, v, tree);
   644         tree.sym = v;
   645         if (tree.init != null) {
   646             v.flags_field |= HASINIT;
   647             if ((v.flags_field & FINAL) != 0 && tree.init.getTag() != JCTree.NEWCLASS) {
   648                 Env<AttrContext> initEnv = getInitEnv(tree, env);
   649                 initEnv.info.enclVar = v;
   650                 v.setLazyConstValue(initEnv(tree, initEnv), attr, tree.init);
   651             }
   652         }
   653         if (chk.checkUnique(tree.pos(), v, enclScope)) {
   654             chk.checkTransparentVar(tree.pos(), v, enclScope);
   655             enclScope.enter(v);
   656         }
   657         annotateLater(tree.mods.annotations, localEnv, v);
   658         v.pos = tree.pos;
   659     }
   661     /** Create a fresh environment for a variable's initializer.
   662      *  If the variable is a field, the owner of the environment's scope
   663      *  is be the variable itself, otherwise the owner is the method
   664      *  enclosing the variable definition.
   665      *
   666      *  @param tree     The variable definition.
   667      *  @param env      The environment current outside of the variable definition.
   668      */
   669     Env<AttrContext> initEnv(JCVariableDecl tree, Env<AttrContext> env) {
   670         Env<AttrContext> localEnv = env.dupto(new AttrContextEnv(tree, env.info.dup()));
   671         if (tree.sym.owner.kind == TYP) {
   672             localEnv.info.scope = new Scope.DelegatedScope(env.info.scope);
   673             localEnv.info.scope.owner = tree.sym;
   674         }
   675         if ((tree.mods.flags & STATIC) != 0 ||
   676             (env.enclClass.sym.flags() & INTERFACE) != 0)
   677             localEnv.info.staticLevel++;
   678         return localEnv;
   679     }
   681     /** Default member enter visitor method: do nothing
   682      */
   683     public void visitTree(JCTree tree) {
   684     }
   686     public void visitErroneous(JCErroneous tree) {
   687         if (tree.errs != null)
   688             memberEnter(tree.errs, env);
   689     }
   691     public Env<AttrContext> getMethodEnv(JCMethodDecl tree, Env<AttrContext> env) {
   692         Env<AttrContext> mEnv = methodEnv(tree, env);
   693         mEnv.info.lint = mEnv.info.lint.augment(tree.sym.attributes_field, tree.sym.flags());
   694         for (List<JCTypeParameter> l = tree.typarams; l.nonEmpty(); l = l.tail)
   695             mEnv.info.scope.enterIfAbsent(l.head.type.tsym);
   696         for (List<JCVariableDecl> l = tree.params; l.nonEmpty(); l = l.tail)
   697             mEnv.info.scope.enterIfAbsent(l.head.sym);
   698         return mEnv;
   699     }
   701     public Env<AttrContext> getInitEnv(JCVariableDecl tree, Env<AttrContext> env) {
   702         Env<AttrContext> iEnv = initEnv(tree, env);
   703         return iEnv;
   704     }
   706 /* ********************************************************************
   707  * Type completion
   708  *********************************************************************/
   710     Type attribImportType(JCTree tree, Env<AttrContext> env) {
   711         Assert.check(completionEnabled);
   712         try {
   713             // To prevent deep recursion, suppress completion of some
   714             // types.
   715             completionEnabled = false;
   716             return attr.attribType(tree, env);
   717         } finally {
   718             completionEnabled = true;
   719         }
   720     }
   722 /* ********************************************************************
   723  * Annotation processing
   724  *********************************************************************/
   726     /** Queue annotations for later processing. */
   727     void annotateLater(final List<JCAnnotation> annotations,
   728                        final Env<AttrContext> localEnv,
   729                        final Symbol s) {
   730         if (annotations.isEmpty()) return;
   731         if (s.kind != PCK) s.attributes_field = null; // mark it incomplete for now
   732         annotate.later(new Annotate.Annotator() {
   733                 public String toString() {
   734                     return "annotate " + annotations + " onto " + s + " in " + s.owner;
   735                 }
   736                 public void enterAnnotation() {
   737                     Assert.check(s.kind == PCK || s.attributes_field == null);
   738                     JavaFileObject prev = log.useSource(localEnv.toplevel.sourcefile);
   739                     try {
   740                         if (s.attributes_field != null &&
   741                             s.attributes_field.nonEmpty() &&
   742                             annotations.nonEmpty())
   743                             log.error(annotations.head.pos,
   744                                       "already.annotated",
   745                                       kindName(s), s);
   746                         enterAnnotations(annotations, localEnv, s);
   747                     } finally {
   748                         log.useSource(prev);
   749                     }
   750                 }
   751             });
   752     }
   754     /**
   755      * Check if a list of annotations contains a reference to
   756      * java.lang.Deprecated.
   757      **/
   758     private boolean hasDeprecatedAnnotation(List<JCAnnotation> annotations) {
   759         for (List<JCAnnotation> al = annotations; al.nonEmpty(); al = al.tail) {
   760             JCAnnotation a = al.head;
   761             if (a.annotationType.type == syms.deprecatedType && a.args.isEmpty())
   762                 return true;
   763         }
   764         return false;
   765     }
   768     /** Enter a set of annotations. */
   769     private void enterAnnotations(List<JCAnnotation> annotations,
   770                           Env<AttrContext> env,
   771                           Symbol s) {
   772         ListBuffer<Attribute.Compound> buf =
   773             new ListBuffer<Attribute.Compound>();
   774         Set<TypeSymbol> annotated = new HashSet<TypeSymbol>();
   775         if (!skipAnnotations)
   776         for (List<JCAnnotation> al = annotations; al.nonEmpty(); al = al.tail) {
   777             JCAnnotation a = al.head;
   778             Attribute.Compound c = annotate.enterAnnotation(a,
   779                                                             syms.annotationType,
   780                                                             env);
   781             if (c == null) continue;
   782             buf.append(c);
   783             // Note: @Deprecated has no effect on local variables and parameters
   784             if (!c.type.isErroneous()
   785                 && s.owner.kind != MTH
   786                 && types.isSameType(c.type, syms.deprecatedType))
   787                 s.flags_field |= Flags.DEPRECATED;
   788             // Internally to java.lang.invoke, a @PolymorphicSignature annotation
   789             // acts like a classfile attribute.
   790             if (!c.type.isErroneous() &&
   791                     (types.isSameType(c.type, syms.polymorphicSignatureType) ||
   792                      types.isSameType(c.type, syms.transientPolymorphicSignatureType))) {
   793                 if (!target.hasMethodHandles()) {
   794                     // Somebody is compiling JDK7 source code to a JDK6 target.
   795                     // Make it an error, since it is unlikely but important.
   796                     log.error(env.tree.pos(),
   797                             "wrong.target.for.polymorphic.signature.definition",
   798                             target.name);
   799                 }
   800                 // Pull the flag through for better diagnostics, even on a bad target.
   801                 s.flags_field |= Flags.POLYMORPHIC_SIGNATURE;
   802             }
   803             if (!annotated.add(a.type.tsym))
   804                 log.error(a.pos, "duplicate.annotation");
   805         }
   806         s.attributes_field = buf.toList();
   807     }
   809     /** Queue processing of an attribute default value. */
   810     void annotateDefaultValueLater(final JCExpression defaultValue,
   811                                    final Env<AttrContext> localEnv,
   812                                    final MethodSymbol m) {
   813         annotate.later(new Annotate.Annotator() {
   814                 public String toString() {
   815                     return "annotate " + m.owner + "." +
   816                         m + " default " + defaultValue;
   817                 }
   818                 public void enterAnnotation() {
   819                     JavaFileObject prev = log.useSource(localEnv.toplevel.sourcefile);
   820                     try {
   821                         enterDefaultValue(defaultValue, localEnv, m);
   822                     } finally {
   823                         log.useSource(prev);
   824                     }
   825                 }
   826             });
   827     }
   829     /** Enter a default value for an attribute method. */
   830     private void enterDefaultValue(final JCExpression defaultValue,
   831                                    final Env<AttrContext> localEnv,
   832                                    final MethodSymbol m) {
   833         m.defaultValue = annotate.enterAttributeValue(m.type.getReturnType(),
   834                                                       defaultValue,
   835                                                       localEnv);
   836     }
   838 /* ********************************************************************
   839  * Source completer
   840  *********************************************************************/
   842     /** Complete entering a class.
   843      *  @param sym         The symbol of the class to be completed.
   844      */
   845     public void complete(Symbol sym) throws CompletionFailure {
   846         // Suppress some (recursive) MemberEnter invocations
   847         if (!completionEnabled) {
   848             // Re-install same completer for next time around and return.
   849             Assert.check((sym.flags() & Flags.COMPOUND) == 0);
   850             sym.completer = this;
   851             return;
   852         }
   854         ClassSymbol c = (ClassSymbol)sym;
   855         ClassType ct = (ClassType)c.type;
   856         Env<AttrContext> env = enter.typeEnvs.get(c);
   857         JCClassDecl tree = (JCClassDecl)env.tree;
   858         boolean wasFirst = isFirst;
   859         isFirst = false;
   861         JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
   862         try {
   863             // Save class environment for later member enter (2) processing.
   864             halfcompleted.append(env);
   866             // Mark class as not yet attributed.
   867             c.flags_field |= UNATTRIBUTED;
   869             // If this is a toplevel-class, make sure any preceding import
   870             // clauses have been seen.
   871             if (c.owner.kind == PCK) {
   872                 memberEnter(env.toplevel, env.enclosing(JCTree.TOPLEVEL));
   873                 todo.append(env);
   874             }
   876             if (c.owner.kind == TYP)
   877                 c.owner.complete();
   879             // create an environment for evaluating the base clauses
   880             Env<AttrContext> baseEnv = baseEnv(tree, env);
   882             // Determine supertype.
   883             Type supertype =
   884                 (tree.extending != null)
   885                 ? attr.attribBase(tree.extending, baseEnv, true, false, true)
   886                 : ((tree.mods.flags & Flags.ENUM) != 0 && !target.compilerBootstrap(c))
   887                 ? attr.attribBase(enumBase(tree.pos, c), baseEnv,
   888                                   true, false, false)
   889                 : (c.fullname == names.java_lang_Object)
   890                 ? Type.noType
   891                 : syms.objectType;
   892             ct.supertype_field = supertype;
   894             // Determine interfaces.
   895             ListBuffer<Type> interfaces = new ListBuffer<Type>();
   896             Set<Type> interfaceSet = new HashSet<Type>();
   897             List<JCExpression> interfaceTrees = tree.implementing;
   898             if ((tree.mods.flags & Flags.ENUM) != 0 && target.compilerBootstrap(c)) {
   899                 // add interface Comparable<T>
   900                 interfaceTrees =
   901                     interfaceTrees.prepend(make.Type(new ClassType(syms.comparableType.getEnclosingType(),
   902                                                                    List.of(c.type),
   903                                                                    syms.comparableType.tsym)));
   904                 // add interface Serializable
   905                 interfaceTrees =
   906                     interfaceTrees.prepend(make.Type(syms.serializableType));
   907             }
   908             for (JCExpression iface : interfaceTrees) {
   909                 Type i = attr.attribBase(iface, baseEnv, false, true, true);
   910                 if (i.tag == CLASS) {
   911                     interfaces.append(i);
   912                     chk.checkNotRepeated(iface.pos(), types.erasure(i), interfaceSet);
   913                 }
   914             }
   915             if ((c.flags_field & ANNOTATION) != 0)
   916                 ct.interfaces_field = List.of(syms.annotationType);
   917             else
   918                 ct.interfaces_field = interfaces.toList();
   920             if (c.fullname == names.java_lang_Object) {
   921                 if (tree.extending != null) {
   922                     chk.checkNonCyclic(tree.extending.pos(),
   923                                        supertype);
   924                     ct.supertype_field = Type.noType;
   925                 }
   926                 else if (tree.implementing.nonEmpty()) {
   927                     chk.checkNonCyclic(tree.implementing.head.pos(),
   928                                        ct.interfaces_field.head);
   929                     ct.interfaces_field = List.nil();
   930                 }
   931             }
   933             // Annotations.
   934             // In general, we cannot fully process annotations yet,  but we
   935             // can attribute the annotation types and then check to see if the
   936             // @Deprecated annotation is present.
   937             attr.attribAnnotationTypes(tree.mods.annotations, baseEnv);
   938             if (hasDeprecatedAnnotation(tree.mods.annotations))
   939                 c.flags_field |= DEPRECATED;
   940             annotateLater(tree.mods.annotations, baseEnv, c);
   942             chk.checkNonCyclicDecl(tree);
   944             attr.attribTypeVariables(tree.typarams, baseEnv);
   946             // Add default constructor if needed.
   947             if ((c.flags() & INTERFACE) == 0 &&
   948                 !TreeInfo.hasConstructors(tree.defs)) {
   949                 List<Type> argtypes = List.nil();
   950                 List<Type> typarams = List.nil();
   951                 List<Type> thrown = List.nil();
   952                 long ctorFlags = 0;
   953                 boolean based = false;
   954                 if (c.name.isEmpty()) {
   955                     JCNewClass nc = (JCNewClass)env.next.tree;
   956                     if (nc.constructor != null) {
   957                         Type superConstrType = types.memberType(c.type,
   958                                                                 nc.constructor);
   959                         argtypes = superConstrType.getParameterTypes();
   960                         typarams = superConstrType.getTypeArguments();
   961                         ctorFlags = nc.constructor.flags() & VARARGS;
   962                         if (nc.encl != null) {
   963                             argtypes = argtypes.prepend(nc.encl.type);
   964                             based = true;
   965                         }
   966                         thrown = superConstrType.getThrownTypes();
   967                     }
   968                 }
   969                 JCTree constrDef = DefaultConstructor(make.at(tree.pos), c,
   970                                                     typarams, argtypes, thrown,
   971                                                     ctorFlags, based);
   972                 tree.defs = tree.defs.prepend(constrDef);
   973             }
   975             // If this is a class, enter symbols for this and super into
   976             // current scope.
   977             if ((c.flags_field & INTERFACE) == 0) {
   978                 VarSymbol thisSym =
   979                     new VarSymbol(FINAL | HASINIT, names._this, c.type, c);
   980                 thisSym.pos = Position.FIRSTPOS;
   981                 env.info.scope.enter(thisSym);
   982                 if (ct.supertype_field.tag == CLASS) {
   983                     VarSymbol superSym =
   984                         new VarSymbol(FINAL | HASINIT, names._super,
   985                                       ct.supertype_field, c);
   986                     superSym.pos = Position.FIRSTPOS;
   987                     env.info.scope.enter(superSym);
   988                 }
   989             }
   991             // check that no package exists with same fully qualified name,
   992             // but admit classes in the unnamed package which have the same
   993             // name as a top-level package.
   994             if (checkClash &&
   995                 c.owner.kind == PCK && c.owner != syms.unnamedPackage &&
   996                 reader.packageExists(c.fullname))
   997                 {
   998                     log.error(tree.pos, "clash.with.pkg.of.same.name", Kinds.kindName(sym), c);
   999                 }
  1001         } catch (CompletionFailure ex) {
  1002             chk.completionError(tree.pos(), ex);
  1003         } finally {
  1004             log.useSource(prev);
  1007         // Enter all member fields and methods of a set of half completed
  1008         // classes in a second phase.
  1009         if (wasFirst) {
  1010             try {
  1011                 while (halfcompleted.nonEmpty()) {
  1012                     finish(halfcompleted.next());
  1014             } finally {
  1015                 isFirst = true;
  1018             // commit pending annotations
  1019             annotate.flush();
  1023     private Env<AttrContext> baseEnv(JCClassDecl tree, Env<AttrContext> env) {
  1024         Scope baseScope = new Scope(tree.sym);
  1025         //import already entered local classes into base scope
  1026         for (Scope.Entry e = env.outer.info.scope.elems ; e != null ; e = e.sibling) {
  1027             if (e.sym.isLocal()) {
  1028                 baseScope.enter(e.sym);
  1031         //import current type-parameters into base scope
  1032         if (tree.typarams != null)
  1033             for (List<JCTypeParameter> typarams = tree.typarams;
  1034                  typarams.nonEmpty();
  1035                  typarams = typarams.tail)
  1036                 baseScope.enter(typarams.head.type.tsym);
  1037         Env<AttrContext> outer = env.outer; // the base clause can't see members of this class
  1038         Env<AttrContext> localEnv = outer.dup(tree, outer.info.dup(baseScope));
  1039         localEnv.baseClause = true;
  1040         localEnv.outer = outer;
  1041         localEnv.info.isSelfCall = false;
  1042         return localEnv;
  1045     /** Enter member fields and methods of a class
  1046      *  @param env        the environment current for the class block.
  1047      */
  1048     private void finish(Env<AttrContext> env) {
  1049         JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
  1050         try {
  1051             JCClassDecl tree = (JCClassDecl)env.tree;
  1052             finishClass(tree, env);
  1053         } finally {
  1054             log.useSource(prev);
  1058     /** Generate a base clause for an enum type.
  1059      *  @param pos              The position for trees and diagnostics, if any
  1060      *  @param c                The class symbol of the enum
  1061      */
  1062     private JCExpression enumBase(int pos, ClassSymbol c) {
  1063         JCExpression result = make.at(pos).
  1064             TypeApply(make.QualIdent(syms.enumSym),
  1065                       List.<JCExpression>of(make.Type(c.type)));
  1066         return result;
  1069 /* ***************************************************************************
  1070  * tree building
  1071  ****************************************************************************/
  1073     /** Generate default constructor for given class. For classes different
  1074      *  from java.lang.Object, this is:
  1076      *    c(argtype_0 x_0, ..., argtype_n x_n) throws thrown {
  1077      *      super(x_0, ..., x_n)
  1078      *    }
  1080      *  or, if based == true:
  1082      *    c(argtype_0 x_0, ..., argtype_n x_n) throws thrown {
  1083      *      x_0.super(x_1, ..., x_n)
  1084      *    }
  1086      *  @param make     The tree factory.
  1087      *  @param c        The class owning the default constructor.
  1088      *  @param argtypes The parameter types of the constructor.
  1089      *  @param thrown   The thrown exceptions of the constructor.
  1090      *  @param based    Is first parameter a this$n?
  1091      */
  1092     JCTree DefaultConstructor(TreeMaker make,
  1093                             ClassSymbol c,
  1094                             List<Type> typarams,
  1095                             List<Type> argtypes,
  1096                             List<Type> thrown,
  1097                             long flags,
  1098                             boolean based) {
  1099         List<JCVariableDecl> params = make.Params(argtypes, syms.noSymbol);
  1100         List<JCStatement> stats = List.nil();
  1101         if (c.type != syms.objectType)
  1102             stats = stats.prepend(SuperCall(make, typarams, params, based));
  1103         if ((c.flags() & ENUM) != 0 &&
  1104             (types.supertype(c.type).tsym == syms.enumSym ||
  1105              target.compilerBootstrap(c))) {
  1106             // constructors of true enums are private
  1107             flags = (flags & ~AccessFlags) | PRIVATE | GENERATEDCONSTR;
  1108         } else
  1109             flags |= (c.flags() & AccessFlags) | GENERATEDCONSTR;
  1110         if (c.name.isEmpty()) flags |= ANONCONSTR;
  1111         JCTree result = make.MethodDef(
  1112             make.Modifiers(flags),
  1113             names.init,
  1114             null,
  1115             make.TypeParams(typarams),
  1116             params,
  1117             make.Types(thrown),
  1118             make.Block(0, stats),
  1119             null);
  1120         return result;
  1123     /** Generate call to superclass constructor. This is:
  1125      *    super(id_0, ..., id_n)
  1127      * or, if based == true
  1129      *    id_0.super(id_1,...,id_n)
  1131      *  where id_0, ..., id_n are the names of the given parameters.
  1133      *  @param make    The tree factory
  1134      *  @param params  The parameters that need to be passed to super
  1135      *  @param typarams  The type parameters that need to be passed to super
  1136      *  @param based   Is first parameter a this$n?
  1137      */
  1138     JCExpressionStatement SuperCall(TreeMaker make,
  1139                    List<Type> typarams,
  1140                    List<JCVariableDecl> params,
  1141                    boolean based) {
  1142         JCExpression meth;
  1143         if (based) {
  1144             meth = make.Select(make.Ident(params.head), names._super);
  1145             params = params.tail;
  1146         } else {
  1147             meth = make.Ident(names._super);
  1149         List<JCExpression> typeargs = typarams.nonEmpty() ? make.Types(typarams) : null;
  1150         return make.Exec(make.Apply(typeargs, meth, make.Idents(params)));

mercurial