src/share/classes/com/sun/tools/javac/comp/MemberEnter.java

Sat, 18 Sep 2010 14:24:09 -0700

author
mcimadamore
date
Sat, 18 Sep 2010 14:24:09 -0700
changeset 690
0c1ef2af7a8e
parent 688
50f9ac2f4730
child 700
7b413ac1a720
permissions
-rw-r--r--

6863465: javac doesn't detect circular subclass dependencies via qualified names
Summary: class inheritance circularity check should look at trees, not just symbols
Reviewed-by: jjg

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

mercurial