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

Fri, 09 Mar 2012 17:10:56 +0000

author
mcimadamore
date
Fri, 09 Mar 2012 17:10:56 +0000
changeset 1226
97bec6ab1227
parent 1220
38ae13dcd215
child 1237
568e70bbd9aa
permissions
-rw-r--r--

7151802: compiler update caused sqe test failed
Summary: Fix regression caused by 7144506
Reviewed-by: jjg, dlsmith

duke@1 1 /*
mcimadamore@1219 2 * Copyright (c) 1999, 2012, 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.lang.model.element.ElementKind;
duke@1 31 import javax.tools.JavaFileObject;
duke@1 32
duke@1 33 import com.sun.tools.javac.code.*;
duke@1 34 import com.sun.tools.javac.jvm.*;
duke@1 35 import com.sun.tools.javac.tree.*;
duke@1 36 import com.sun.tools.javac.util.*;
duke@1 37 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
duke@1 38 import com.sun.tools.javac.util.List;
duke@1 39
duke@1 40 import com.sun.tools.javac.jvm.Target;
mcimadamore@795 41 import com.sun.tools.javac.code.Lint.LintCategory;
duke@1 42 import com.sun.tools.javac.code.Symbol.*;
duke@1 43 import com.sun.tools.javac.tree.JCTree.*;
duke@1 44 import com.sun.tools.javac.code.Type.*;
duke@1 45
duke@1 46 import com.sun.source.tree.IdentifierTree;
duke@1 47 import com.sun.source.tree.MemberSelectTree;
duke@1 48 import com.sun.source.tree.TreeVisitor;
duke@1 49 import com.sun.source.util.SimpleTreeVisitor;
duke@1 50
duke@1 51 import static com.sun.tools.javac.code.Flags.*;
jjg@1127 52 import static com.sun.tools.javac.code.Flags.ANNOTATION;
jjg@1127 53 import static com.sun.tools.javac.code.Flags.BLOCK;
duke@1 54 import static com.sun.tools.javac.code.Kinds.*;
jjg@1127 55 import static com.sun.tools.javac.code.Kinds.ERRONEOUS;
duke@1 56 import static com.sun.tools.javac.code.TypeTags.*;
jjg@1127 57 import static com.sun.tools.javac.code.TypeTags.WILDCARD;
jjg@1127 58 import static com.sun.tools.javac.tree.JCTree.Tag.*;
duke@1 59
duke@1 60 /** This is the main context-dependent analysis phase in GJC. It
duke@1 61 * encompasses name resolution, type checking and constant folding as
duke@1 62 * subtasks. Some subtasks involve auxiliary classes.
duke@1 63 * @see Check
duke@1 64 * @see Resolve
duke@1 65 * @see ConstFold
duke@1 66 * @see Infer
duke@1 67 *
jjg@581 68 * <p><b>This is NOT part of any supported API.
jjg@581 69 * If you write code that depends on this, you do so at your own risk.
duke@1 70 * This code and its internal interfaces are subject to change or
duke@1 71 * deletion without notice.</b>
duke@1 72 */
duke@1 73 public class Attr extends JCTree.Visitor {
duke@1 74 protected static final Context.Key<Attr> attrKey =
duke@1 75 new Context.Key<Attr>();
duke@1 76
jjg@113 77 final Names names;
duke@1 78 final Log log;
duke@1 79 final Symtab syms;
duke@1 80 final Resolve rs;
mcimadamore@537 81 final Infer infer;
duke@1 82 final Check chk;
duke@1 83 final MemberEnter memberEnter;
duke@1 84 final TreeMaker make;
duke@1 85 final ConstFold cfolder;
duke@1 86 final Enter enter;
duke@1 87 final Target target;
duke@1 88 final Types types;
mcimadamore@89 89 final JCDiagnostic.Factory diags;
duke@1 90 final Annotate annotate;
mcimadamore@852 91 final DeferredLintHandler deferredLintHandler;
duke@1 92
duke@1 93 public static Attr instance(Context context) {
duke@1 94 Attr instance = context.get(attrKey);
duke@1 95 if (instance == null)
duke@1 96 instance = new Attr(context);
duke@1 97 return instance;
duke@1 98 }
duke@1 99
duke@1 100 protected Attr(Context context) {
duke@1 101 context.put(attrKey, this);
duke@1 102
jjg@113 103 names = Names.instance(context);
duke@1 104 log = Log.instance(context);
duke@1 105 syms = Symtab.instance(context);
duke@1 106 rs = Resolve.instance(context);
duke@1 107 chk = Check.instance(context);
duke@1 108 memberEnter = MemberEnter.instance(context);
duke@1 109 make = TreeMaker.instance(context);
duke@1 110 enter = Enter.instance(context);
mcimadamore@537 111 infer = Infer.instance(context);
duke@1 112 cfolder = ConstFold.instance(context);
duke@1 113 target = Target.instance(context);
duke@1 114 types = Types.instance(context);
mcimadamore@89 115 diags = JCDiagnostic.Factory.instance(context);
duke@1 116 annotate = Annotate.instance(context);
mcimadamore@852 117 deferredLintHandler = DeferredLintHandler.instance(context);
duke@1 118
duke@1 119 Options options = Options.instance(context);
duke@1 120
duke@1 121 Source source = Source.instance(context);
duke@1 122 allowGenerics = source.allowGenerics();
duke@1 123 allowVarargs = source.allowVarargs();
duke@1 124 allowEnums = source.allowEnums();
duke@1 125 allowBoxing = source.allowBoxing();
duke@1 126 allowCovariantReturns = source.allowCovariantReturns();
duke@1 127 allowAnonOuterThis = source.allowAnonOuterThis();
darcy@430 128 allowStringsInSwitch = source.allowStringsInSwitch();
darcy@430 129 sourceName = source.name;
jjg@700 130 relax = (options.isSet("-retrofit") ||
jjg@700 131 options.isSet("-relax"));
mcimadamore@731 132 findDiamonds = options.get("findDiamond") != null &&
mcimadamore@731 133 source.allowDiamond();
jjg@700 134 useBeforeDeclarationWarning = options.isSet("useBeforeDeclarationWarning");
duke@1 135 }
duke@1 136
duke@1 137 /** Switch: relax some constraints for retrofit mode.
duke@1 138 */
duke@1 139 boolean relax;
duke@1 140
duke@1 141 /** Switch: support generics?
duke@1 142 */
duke@1 143 boolean allowGenerics;
duke@1 144
duke@1 145 /** Switch: allow variable-arity methods.
duke@1 146 */
duke@1 147 boolean allowVarargs;
duke@1 148
duke@1 149 /** Switch: support enums?
duke@1 150 */
duke@1 151 boolean allowEnums;
duke@1 152
duke@1 153 /** Switch: support boxing and unboxing?
duke@1 154 */
duke@1 155 boolean allowBoxing;
duke@1 156
duke@1 157 /** Switch: support covariant result types?
duke@1 158 */
duke@1 159 boolean allowCovariantReturns;
duke@1 160
duke@1 161 /** Switch: allow references to surrounding object from anonymous
duke@1 162 * objects during constructor call?
duke@1 163 */
duke@1 164 boolean allowAnonOuterThis;
duke@1 165
mcimadamore@731 166 /** Switch: generates a warning if diamond can be safely applied
mcimadamore@731 167 * to a given new expression
mcimadamore@731 168 */
mcimadamore@731 169 boolean findDiamonds;
mcimadamore@731 170
mcimadamore@731 171 /**
mcimadamore@731 172 * Internally enables/disables diamond finder feature
mcimadamore@731 173 */
mcimadamore@731 174 static final boolean allowDiamondFinder = true;
mcimadamore@731 175
duke@1 176 /**
duke@1 177 * Switch: warn about use of variable before declaration?
duke@1 178 * RFE: 6425594
duke@1 179 */
duke@1 180 boolean useBeforeDeclarationWarning;
duke@1 181
jjg@377 182 /**
darcy@430 183 * Switch: allow strings in switch?
darcy@430 184 */
darcy@430 185 boolean allowStringsInSwitch;
darcy@430 186
darcy@430 187 /**
darcy@430 188 * Switch: name of source level; used for error reporting.
darcy@430 189 */
darcy@430 190 String sourceName;
darcy@430 191
duke@1 192 /** Check kind and type of given tree against protokind and prototype.
duke@1 193 * If check succeeds, store type in tree and return it.
duke@1 194 * If check fails, store errType in tree and return it.
duke@1 195 * No checks are performed if the prototype is a method type.
jjg@110 196 * It is not necessary in this case since we know that kind and type
duke@1 197 * are correct.
duke@1 198 *
duke@1 199 * @param tree The tree whose kind and type is checked
duke@1 200 * @param owntype The computed type of the tree
duke@1 201 * @param ownkind The computed kind of the tree
mcimadamore@1220 202 * @param resultInfo The expected result of the tree
duke@1 203 */
mcimadamore@1220 204 Type check(JCTree tree, Type owntype, int ownkind, ResultInfo resultInfo) {
mcimadamore@1220 205 if (owntype.tag != ERROR && resultInfo.pt.tag != METHOD && resultInfo.pt.tag != FORALL) {
mcimadamore@1220 206 if ((ownkind & ~resultInfo.pkind) == 0) {
mcimadamore@1220 207 owntype = chk.checkType(tree.pos(), owntype, resultInfo.pt, errKey);
duke@1 208 } else {
duke@1 209 log.error(tree.pos(), "unexpected.type",
mcimadamore@1220 210 kindNames(resultInfo.pkind),
mcimadamore@80 211 kindName(ownkind));
jjg@110 212 owntype = types.createErrorType(owntype);
duke@1 213 }
duke@1 214 }
duke@1 215 tree.type = owntype;
duke@1 216 return owntype;
duke@1 217 }
duke@1 218
duke@1 219 /** Is given blank final variable assignable, i.e. in a scope where it
duke@1 220 * may be assigned to even though it is final?
duke@1 221 * @param v The blank final variable.
duke@1 222 * @param env The current environment.
duke@1 223 */
duke@1 224 boolean isAssignableAsBlankFinal(VarSymbol v, Env<AttrContext> env) {
duke@1 225 Symbol owner = env.info.scope.owner;
duke@1 226 // owner refers to the innermost variable, method or
duke@1 227 // initializer block declaration at this point.
duke@1 228 return
duke@1 229 v.owner == owner
duke@1 230 ||
duke@1 231 ((owner.name == names.init || // i.e. we are in a constructor
duke@1 232 owner.kind == VAR || // i.e. we are in a variable initializer
duke@1 233 (owner.flags() & BLOCK) != 0) // i.e. we are in an initializer block
duke@1 234 &&
duke@1 235 v.owner == owner.owner
duke@1 236 &&
duke@1 237 ((v.flags() & STATIC) != 0) == Resolve.isStatic(env));
duke@1 238 }
duke@1 239
duke@1 240 /** Check that variable can be assigned to.
duke@1 241 * @param pos The current source code position.
duke@1 242 * @param v The assigned varaible
duke@1 243 * @param base If the variable is referred to in a Select, the part
duke@1 244 * to the left of the `.', null otherwise.
duke@1 245 * @param env The current environment.
duke@1 246 */
duke@1 247 void checkAssignable(DiagnosticPosition pos, VarSymbol v, JCTree base, Env<AttrContext> env) {
duke@1 248 if ((v.flags() & FINAL) != 0 &&
duke@1 249 ((v.flags() & HASINIT) != 0
duke@1 250 ||
duke@1 251 !((base == null ||
jjg@1127 252 (base.hasTag(IDENT) && TreeInfo.name(base) == names._this)) &&
duke@1 253 isAssignableAsBlankFinal(v, env)))) {
darcy@609 254 if (v.isResourceVariable()) { //TWR resource
mcimadamore@743 255 log.error(pos, "try.resource.may.not.be.assigned", v);
darcy@609 256 } else {
darcy@609 257 log.error(pos, "cant.assign.val.to.final.var", v);
darcy@609 258 }
mcimadamore@735 259 } else if ((v.flags() & EFFECTIVELY_FINAL) != 0) {
mcimadamore@735 260 v.flags_field &= ~EFFECTIVELY_FINAL;
duke@1 261 }
duke@1 262 }
duke@1 263
duke@1 264 /** Does tree represent a static reference to an identifier?
duke@1 265 * It is assumed that tree is either a SELECT or an IDENT.
duke@1 266 * We have to weed out selects from non-type names here.
duke@1 267 * @param tree The candidate tree.
duke@1 268 */
duke@1 269 boolean isStaticReference(JCTree tree) {
jjg@1127 270 if (tree.hasTag(SELECT)) {
duke@1 271 Symbol lsym = TreeInfo.symbol(((JCFieldAccess) tree).selected);
duke@1 272 if (lsym == null || lsym.kind != TYP) {
duke@1 273 return false;
duke@1 274 }
duke@1 275 }
duke@1 276 return true;
duke@1 277 }
duke@1 278
duke@1 279 /** Is this symbol a type?
duke@1 280 */
duke@1 281 static boolean isType(Symbol sym) {
duke@1 282 return sym != null && sym.kind == TYP;
duke@1 283 }
duke@1 284
duke@1 285 /** The current `this' symbol.
duke@1 286 * @param env The current environment.
duke@1 287 */
duke@1 288 Symbol thisSym(DiagnosticPosition pos, Env<AttrContext> env) {
duke@1 289 return rs.resolveSelf(pos, env, env.enclClass.sym, names._this);
duke@1 290 }
duke@1 291
duke@1 292 /** Attribute a parsed identifier.
duke@1 293 * @param tree Parsed identifier name
duke@1 294 * @param topLevel The toplevel to use
duke@1 295 */
duke@1 296 public Symbol attribIdent(JCTree tree, JCCompilationUnit topLevel) {
duke@1 297 Env<AttrContext> localEnv = enter.topLevelEnv(topLevel);
duke@1 298 localEnv.enclClass = make.ClassDef(make.Modifiers(0),
duke@1 299 syms.errSymbol.name,
duke@1 300 null, null, null, null);
duke@1 301 localEnv.enclClass.sym = syms.errSymbol;
duke@1 302 return tree.accept(identAttributer, localEnv);
duke@1 303 }
duke@1 304 // where
duke@1 305 private TreeVisitor<Symbol,Env<AttrContext>> identAttributer = new IdentAttributer();
duke@1 306 private class IdentAttributer extends SimpleTreeVisitor<Symbol,Env<AttrContext>> {
duke@1 307 @Override
duke@1 308 public Symbol visitMemberSelect(MemberSelectTree node, Env<AttrContext> env) {
duke@1 309 Symbol site = visit(node.getExpression(), env);
duke@1 310 if (site.kind == ERR)
duke@1 311 return site;
duke@1 312 Name name = (Name)node.getIdentifier();
duke@1 313 if (site.kind == PCK) {
duke@1 314 env.toplevel.packge = (PackageSymbol)site;
duke@1 315 return rs.findIdentInPackage(env, (TypeSymbol)site, name, TYP | PCK);
duke@1 316 } else {
duke@1 317 env.enclClass.sym = (ClassSymbol)site;
duke@1 318 return rs.findMemberType(env, site.asType(), name, (TypeSymbol)site);
duke@1 319 }
duke@1 320 }
duke@1 321
duke@1 322 @Override
duke@1 323 public Symbol visitIdentifier(IdentifierTree node, Env<AttrContext> env) {
duke@1 324 return rs.findIdent(env, (Name)node.getName(), TYP | PCK);
duke@1 325 }
duke@1 326 }
duke@1 327
duke@1 328 public Type coerce(Type etype, Type ttype) {
duke@1 329 return cfolder.coerce(etype, ttype);
duke@1 330 }
duke@1 331
duke@1 332 public Type attribType(JCTree node, TypeSymbol sym) {
duke@1 333 Env<AttrContext> env = enter.typeEnvs.get(sym);
duke@1 334 Env<AttrContext> localEnv = env.dup(node, env.info.dup());
mcimadamore@1220 335 return attribTree(node, localEnv, unknownTypeInfo);
mcimadamore@1220 336 }
mcimadamore@1220 337
mcimadamore@1220 338 public Type attribImportQualifier(JCImport tree, Env<AttrContext> env) {
mcimadamore@1220 339 // Attribute qualifying package or class.
mcimadamore@1220 340 JCFieldAccess s = (JCFieldAccess)tree.qualid;
mcimadamore@1220 341 return attribTree(s.selected,
mcimadamore@1220 342 env,
mcimadamore@1220 343 new ResultInfo(tree.staticImport ? TYP : (TYP | PCK),
mcimadamore@1220 344 Type.noType));
duke@1 345 }
duke@1 346
duke@1 347 public Env<AttrContext> attribExprToTree(JCTree expr, Env<AttrContext> env, JCTree tree) {
duke@1 348 breakTree = tree;
mcimadamore@303 349 JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
duke@1 350 try {
duke@1 351 attribExpr(expr, env);
duke@1 352 } catch (BreakAttr b) {
duke@1 353 return b.env;
sundar@669 354 } catch (AssertionError ae) {
sundar@669 355 if (ae.getCause() instanceof BreakAttr) {
sundar@669 356 return ((BreakAttr)(ae.getCause())).env;
sundar@669 357 } else {
sundar@669 358 throw ae;
sundar@669 359 }
duke@1 360 } finally {
duke@1 361 breakTree = null;
duke@1 362 log.useSource(prev);
duke@1 363 }
duke@1 364 return env;
duke@1 365 }
duke@1 366
duke@1 367 public Env<AttrContext> attribStatToTree(JCTree stmt, Env<AttrContext> env, JCTree tree) {
duke@1 368 breakTree = tree;
mcimadamore@303 369 JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
duke@1 370 try {
duke@1 371 attribStat(stmt, env);
duke@1 372 } catch (BreakAttr b) {
duke@1 373 return b.env;
sundar@669 374 } catch (AssertionError ae) {
sundar@669 375 if (ae.getCause() instanceof BreakAttr) {
sundar@669 376 return ((BreakAttr)(ae.getCause())).env;
sundar@669 377 } else {
sundar@669 378 throw ae;
sundar@669 379 }
duke@1 380 } finally {
duke@1 381 breakTree = null;
duke@1 382 log.useSource(prev);
duke@1 383 }
duke@1 384 return env;
duke@1 385 }
duke@1 386
duke@1 387 private JCTree breakTree = null;
duke@1 388
duke@1 389 private static class BreakAttr extends RuntimeException {
duke@1 390 static final long serialVersionUID = -6924771130405446405L;
duke@1 391 private Env<AttrContext> env;
duke@1 392 private BreakAttr(Env<AttrContext> env) {
duke@1 393 this.env = env;
duke@1 394 }
duke@1 395 }
duke@1 396
mcimadamore@1220 397 static class ResultInfo {
mcimadamore@1220 398 int pkind;
mcimadamore@1220 399 Type pt;
mcimadamore@1220 400
mcimadamore@1220 401 ResultInfo(int pkind, Type pt) {
mcimadamore@1220 402 this.pkind = pkind;
mcimadamore@1220 403 this.pt = pt;
mcimadamore@1220 404 }
mcimadamore@1220 405 }
mcimadamore@1220 406
mcimadamore@1220 407 private final ResultInfo statInfo = new ResultInfo(NIL, Type.noType);
mcimadamore@1220 408 private final ResultInfo varInfo = new ResultInfo(VAR, Type.noType);
mcimadamore@1220 409 private final ResultInfo unknownExprInfo = new ResultInfo(VAL, Type.noType);
mcimadamore@1220 410 private final ResultInfo unknownTypeInfo = new ResultInfo(TYP, Type.noType);
mcimadamore@1220 411
mcimadamore@1220 412 Type pt() {
mcimadamore@1220 413 return resultInfo.pt;
mcimadamore@1220 414 }
mcimadamore@1220 415
mcimadamore@1220 416 int pkind() {
mcimadamore@1220 417 return resultInfo.pkind;
mcimadamore@1220 418 }
duke@1 419
duke@1 420 /* ************************************************************************
duke@1 421 * Visitor methods
duke@1 422 *************************************************************************/
duke@1 423
duke@1 424 /** Visitor argument: the current environment.
duke@1 425 */
duke@1 426 Env<AttrContext> env;
duke@1 427
mcimadamore@1220 428 /** Visitor argument: the currently expected attribution result.
duke@1 429 */
mcimadamore@1220 430 ResultInfo resultInfo;
duke@1 431
darcy@609 432 /** Visitor argument: the error key to be generated when a type error occurs
darcy@609 433 */
darcy@609 434 String errKey;
darcy@609 435
duke@1 436 /** Visitor result: the computed type.
duke@1 437 */
duke@1 438 Type result;
duke@1 439
duke@1 440 /** Visitor method: attribute a tree, catching any completion failure
duke@1 441 * exceptions. Return the tree's type.
duke@1 442 *
duke@1 443 * @param tree The tree to be visited.
duke@1 444 * @param env The environment visitor argument.
mcimadamore@1220 445 * @param resultInfo The result info visitor argument.
duke@1 446 */
mcimadamore@1220 447 private Type attribTree(JCTree tree, Env<AttrContext> env, ResultInfo resultInfo) {
mcimadamore@1220 448 return attribTree(tree, env, resultInfo, "incompatible.types");
darcy@609 449 }
darcy@609 450
mcimadamore@1220 451 private Type attribTree(JCTree tree, Env<AttrContext> env, ResultInfo resultInfo, String errKey) {
duke@1 452 Env<AttrContext> prevEnv = this.env;
mcimadamore@1220 453 ResultInfo prevResult = this.resultInfo;
darcy@609 454 String prevErrKey = this.errKey;
duke@1 455 try {
duke@1 456 this.env = env;
mcimadamore@1220 457 this.resultInfo = resultInfo;
darcy@609 458 this.errKey = errKey;
duke@1 459 tree.accept(this);
duke@1 460 if (tree == breakTree)
duke@1 461 throw new BreakAttr(env);
duke@1 462 return result;
duke@1 463 } catch (CompletionFailure ex) {
duke@1 464 tree.type = syms.errType;
duke@1 465 return chk.completionError(tree.pos(), ex);
duke@1 466 } finally {
duke@1 467 this.env = prevEnv;
mcimadamore@1220 468 this.resultInfo = prevResult;
darcy@609 469 this.errKey = prevErrKey;
duke@1 470 }
duke@1 471 }
duke@1 472
duke@1 473 /** Derived visitor method: attribute an expression tree.
duke@1 474 */
duke@1 475 public Type attribExpr(JCTree tree, Env<AttrContext> env, Type pt) {
mcimadamore@1220 476 return attribExpr(tree, env, pt, "incompatible.types");
duke@1 477 }
duke@1 478
darcy@609 479 public Type attribExpr(JCTree tree, Env<AttrContext> env, Type pt, String key) {
mcimadamore@1220 480 return attribTree(tree, env, new ResultInfo(VAL, pt.tag != ERROR ? pt : Type.noType), key);
darcy@609 481 }
darcy@609 482
duke@1 483 /** Derived visitor method: attribute an expression tree with
duke@1 484 * no constraints on the computed type.
duke@1 485 */
duke@1 486 Type attribExpr(JCTree tree, Env<AttrContext> env) {
mcimadamore@1220 487 return attribTree(tree, env, unknownExprInfo);
duke@1 488 }
duke@1 489
duke@1 490 /** Derived visitor method: attribute a type tree.
duke@1 491 */
duke@1 492 Type attribType(JCTree tree, Env<AttrContext> env) {
mcimadamore@537 493 Type result = attribType(tree, env, Type.noType);
mcimadamore@537 494 return result;
mcimadamore@537 495 }
mcimadamore@537 496
mcimadamore@537 497 /** Derived visitor method: attribute a type tree.
mcimadamore@537 498 */
mcimadamore@537 499 Type attribType(JCTree tree, Env<AttrContext> env, Type pt) {
mcimadamore@1220 500 Type result = attribTree(tree, env, new ResultInfo(TYP, pt));
duke@1 501 return result;
duke@1 502 }
duke@1 503
duke@1 504 /** Derived visitor method: attribute a statement or definition tree.
duke@1 505 */
duke@1 506 public Type attribStat(JCTree tree, Env<AttrContext> env) {
mcimadamore@1220 507 return attribTree(tree, env, statInfo);
duke@1 508 }
duke@1 509
duke@1 510 /** Attribute a list of expressions, returning a list of types.
duke@1 511 */
duke@1 512 List<Type> attribExprs(List<JCExpression> trees, Env<AttrContext> env, Type pt) {
duke@1 513 ListBuffer<Type> ts = new ListBuffer<Type>();
duke@1 514 for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail)
duke@1 515 ts.append(attribExpr(l.head, env, pt));
duke@1 516 return ts.toList();
duke@1 517 }
duke@1 518
duke@1 519 /** Attribute a list of statements, returning nothing.
duke@1 520 */
duke@1 521 <T extends JCTree> void attribStats(List<T> trees, Env<AttrContext> env) {
duke@1 522 for (List<T> l = trees; l.nonEmpty(); l = l.tail)
duke@1 523 attribStat(l.head, env);
duke@1 524 }
duke@1 525
duke@1 526 /** Attribute the arguments in a method call, returning a list of types.
duke@1 527 */
duke@1 528 List<Type> attribArgs(List<JCExpression> trees, Env<AttrContext> env) {
duke@1 529 ListBuffer<Type> argtypes = new ListBuffer<Type>();
duke@1 530 for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail)
duke@1 531 argtypes.append(chk.checkNonVoid(
mcimadamore@1220 532 l.head.pos(), types.upperBound(attribExpr(l.head, env, Infer.anyPoly))));
duke@1 533 return argtypes.toList();
duke@1 534 }
duke@1 535
duke@1 536 /** Attribute a type argument list, returning a list of types.
jrose@267 537 * Caller is responsible for calling checkRefTypes.
duke@1 538 */
jrose@267 539 List<Type> attribAnyTypes(List<JCExpression> trees, Env<AttrContext> env) {
duke@1 540 ListBuffer<Type> argtypes = new ListBuffer<Type>();
duke@1 541 for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail)
jrose@267 542 argtypes.append(attribType(l.head, env));
duke@1 543 return argtypes.toList();
duke@1 544 }
duke@1 545
jrose@267 546 /** Attribute a type argument list, returning a list of types.
jrose@267 547 * Check that all the types are references.
jrose@267 548 */
jrose@267 549 List<Type> attribTypes(List<JCExpression> trees, Env<AttrContext> env) {
jrose@267 550 List<Type> types = attribAnyTypes(trees, env);
jrose@267 551 return chk.checkRefTypes(trees, types);
jrose@267 552 }
duke@1 553
duke@1 554 /**
duke@1 555 * Attribute type variables (of generic classes or methods).
duke@1 556 * Compound types are attributed later in attribBounds.
duke@1 557 * @param typarams the type variables to enter
duke@1 558 * @param env the current environment
duke@1 559 */
duke@1 560 void attribTypeVariables(List<JCTypeParameter> typarams, Env<AttrContext> env) {
duke@1 561 for (JCTypeParameter tvar : typarams) {
duke@1 562 TypeVar a = (TypeVar)tvar.type;
mcimadamore@42 563 a.tsym.flags_field |= UNATTRIBUTED;
mcimadamore@42 564 a.bound = Type.noType;
duke@1 565 if (!tvar.bounds.isEmpty()) {
duke@1 566 List<Type> bounds = List.of(attribType(tvar.bounds.head, env));
duke@1 567 for (JCExpression bound : tvar.bounds.tail)
duke@1 568 bounds = bounds.prepend(attribType(bound, env));
duke@1 569 types.setBounds(a, bounds.reverse());
duke@1 570 } else {
duke@1 571 // if no bounds are given, assume a single bound of
duke@1 572 // java.lang.Object.
duke@1 573 types.setBounds(a, List.of(syms.objectType));
duke@1 574 }
mcimadamore@42 575 a.tsym.flags_field &= ~UNATTRIBUTED;
duke@1 576 }
duke@1 577 for (JCTypeParameter tvar : typarams)
duke@1 578 chk.checkNonCyclic(tvar.pos(), (TypeVar)tvar.type);
duke@1 579 attribStats(typarams, env);
mcimadamore@42 580 }
mcimadamore@42 581
mcimadamore@42 582 void attribBounds(List<JCTypeParameter> typarams) {
duke@1 583 for (JCTypeParameter typaram : typarams) {
duke@1 584 Type bound = typaram.type.getUpperBound();
duke@1 585 if (bound != null && bound.tsym instanceof ClassSymbol) {
duke@1 586 ClassSymbol c = (ClassSymbol)bound.tsym;
duke@1 587 if ((c.flags_field & COMPOUND) != 0) {
jjg@816 588 Assert.check((c.flags_field & UNATTRIBUTED) != 0, c);
duke@1 589 attribClass(typaram.pos(), c);
duke@1 590 }
duke@1 591 }
duke@1 592 }
duke@1 593 }
duke@1 594
duke@1 595 /**
duke@1 596 * Attribute the type references in a list of annotations.
duke@1 597 */
duke@1 598 void attribAnnotationTypes(List<JCAnnotation> annotations,
duke@1 599 Env<AttrContext> env) {
duke@1 600 for (List<JCAnnotation> al = annotations; al.nonEmpty(); al = al.tail) {
duke@1 601 JCAnnotation a = al.head;
duke@1 602 attribType(a.annotationType, env);
duke@1 603 }
duke@1 604 }
duke@1 605
jjg@841 606 /**
jjg@841 607 * Attribute a "lazy constant value".
jjg@841 608 * @param env The env for the const value
jjg@841 609 * @param initializer The initializer for the const value
jjg@841 610 * @param type The expected type, or null
jjg@841 611 * @see VarSymbol#setlazyConstValue
jjg@841 612 */
jjg@841 613 public Object attribLazyConstantValue(Env<AttrContext> env,
jjg@841 614 JCTree.JCExpression initializer,
jjg@841 615 Type type) {
jjg@841 616
jjg@841 617 // in case no lint value has been set up for this env, scan up
jjg@841 618 // env stack looking for smallest enclosing env for which it is set.
jjg@841 619 Env<AttrContext> lintEnv = env;
jjg@841 620 while (lintEnv.info.lint == null)
jjg@841 621 lintEnv = lintEnv.next;
jjg@841 622
jjg@841 623 // Having found the enclosing lint value, we can initialize the lint value for this class
jjg@1078 624 // ... but ...
jjg@1078 625 // There's a problem with evaluating annotations in the right order, such that
jjg@1078 626 // env.info.enclVar.attributes_field might not yet have been evaluated, and so might be
jjg@1078 627 // null. In that case, calling augment will throw an NPE. To avoid this, for now we
jjg@1078 628 // revert to the jdk 6 behavior and ignore the (unevaluated) attributes.
jjg@1078 629 if (env.info.enclVar.attributes_field == null)
jjg@1078 630 env.info.lint = lintEnv.info.lint;
jjg@1078 631 else
jjg@1078 632 env.info.lint = lintEnv.info.lint.augment(env.info.enclVar.attributes_field, env.info.enclVar.flags());
jjg@841 633
jjg@841 634 Lint prevLint = chk.setLint(env.info.lint);
jjg@841 635 JavaFileObject prevSource = log.useSource(env.toplevel.sourcefile);
jjg@841 636
jjg@841 637 try {
jjg@841 638 Type itype = attribExpr(initializer, env, type);
jjg@841 639 if (itype.constValue() != null)
jjg@841 640 return coerce(itype, type).constValue();
jjg@841 641 else
jjg@841 642 return null;
jjg@841 643 } finally {
jjg@841 644 env.info.lint = prevLint;
jjg@841 645 log.useSource(prevSource);
jjg@841 646 }
jjg@841 647 }
jjg@841 648
duke@1 649 /** Attribute type reference in an `extends' or `implements' clause.
mcimadamore@537 650 * Supertypes of anonymous inner classes are usually already attributed.
duke@1 651 *
duke@1 652 * @param tree The tree making up the type reference.
duke@1 653 * @param env The environment current at the reference.
duke@1 654 * @param classExpected true if only a class is expected here.
duke@1 655 * @param interfaceExpected true if only an interface is expected here.
duke@1 656 */
duke@1 657 Type attribBase(JCTree tree,
duke@1 658 Env<AttrContext> env,
duke@1 659 boolean classExpected,
duke@1 660 boolean interfaceExpected,
duke@1 661 boolean checkExtensible) {
mcimadamore@537 662 Type t = tree.type != null ?
mcimadamore@537 663 tree.type :
mcimadamore@537 664 attribType(tree, env);
duke@1 665 return checkBase(t, tree, env, classExpected, interfaceExpected, checkExtensible);
duke@1 666 }
duke@1 667 Type checkBase(Type t,
duke@1 668 JCTree tree,
duke@1 669 Env<AttrContext> env,
duke@1 670 boolean classExpected,
duke@1 671 boolean interfaceExpected,
duke@1 672 boolean checkExtensible) {
jjg@664 673 if (t.isErroneous())
jjg@664 674 return t;
duke@1 675 if (t.tag == TYPEVAR && !classExpected && !interfaceExpected) {
duke@1 676 // check that type variable is already visible
duke@1 677 if (t.getUpperBound() == null) {
duke@1 678 log.error(tree.pos(), "illegal.forward.ref");
jjg@110 679 return types.createErrorType(t);
duke@1 680 }
duke@1 681 } else {
duke@1 682 t = chk.checkClassType(tree.pos(), t, checkExtensible|!allowGenerics);
duke@1 683 }
duke@1 684 if (interfaceExpected && (t.tsym.flags() & INTERFACE) == 0) {
duke@1 685 log.error(tree.pos(), "intf.expected.here");
duke@1 686 // return errType is necessary since otherwise there might
duke@1 687 // be undetected cycles which cause attribution to loop
jjg@110 688 return types.createErrorType(t);
duke@1 689 } else if (checkExtensible &&
duke@1 690 classExpected &&
duke@1 691 (t.tsym.flags() & INTERFACE) != 0) {
jjg@664 692 log.error(tree.pos(), "no.intf.expected.here");
jjg@110 693 return types.createErrorType(t);
duke@1 694 }
duke@1 695 if (checkExtensible &&
duke@1 696 ((t.tsym.flags() & FINAL) != 0)) {
duke@1 697 log.error(tree.pos(),
duke@1 698 "cant.inherit.from.final", t.tsym);
duke@1 699 }
duke@1 700 chk.checkNonCyclic(tree.pos(), t);
duke@1 701 return t;
duke@1 702 }
duke@1 703
duke@1 704 public void visitClassDef(JCClassDecl tree) {
duke@1 705 // Local classes have not been entered yet, so we need to do it now:
duke@1 706 if ((env.info.scope.owner.kind & (VAR | MTH)) != 0)
duke@1 707 enter.classEnter(tree, env);
duke@1 708
duke@1 709 ClassSymbol c = tree.sym;
duke@1 710 if (c == null) {
duke@1 711 // exit in case something drastic went wrong during enter.
duke@1 712 result = null;
duke@1 713 } else {
duke@1 714 // make sure class has been completed:
duke@1 715 c.complete();
duke@1 716
duke@1 717 // If this class appears as an anonymous class
duke@1 718 // in a superclass constructor call where
duke@1 719 // no explicit outer instance is given,
duke@1 720 // disable implicit outer instance from being passed.
duke@1 721 // (This would be an illegal access to "this before super").
duke@1 722 if (env.info.isSelfCall &&
jjg@1127 723 env.tree.hasTag(NEWCLASS) &&
duke@1 724 ((JCNewClass) env.tree).encl == null)
duke@1 725 {
duke@1 726 c.flags_field |= NOOUTERTHIS;
duke@1 727 }
duke@1 728 attribClass(tree.pos(), c);
duke@1 729 result = tree.type = c.type;
duke@1 730 }
duke@1 731 }
duke@1 732
duke@1 733 public void visitMethodDef(JCMethodDecl tree) {
duke@1 734 MethodSymbol m = tree.sym;
duke@1 735
duke@1 736 Lint lint = env.info.lint.augment(m.attributes_field, m.flags());
duke@1 737 Lint prevLint = chk.setLint(lint);
mcimadamore@795 738 MethodSymbol prevMethod = chk.setMethod(m);
duke@1 739 try {
mcimadamore@852 740 deferredLintHandler.flush(tree.pos());
duke@1 741 chk.checkDeprecatedAnnotation(tree.pos(), m);
duke@1 742
mcimadamore@42 743 attribBounds(tree.typarams);
duke@1 744
duke@1 745 // If we override any other methods, check that we do so properly.
duke@1 746 // JLS ???
mcimadamore@858 747 if (m.isStatic()) {
mcimadamore@858 748 chk.checkHideClashes(tree.pos(), env.enclClass.type, m);
mcimadamore@858 749 } else {
mcimadamore@858 750 chk.checkOverrideClashes(tree.pos(), env.enclClass.type, m);
mcimadamore@858 751 }
duke@1 752 chk.checkOverride(tree, m);
duke@1 753
duke@1 754 // Create a new environment with local scope
duke@1 755 // for attributing the method.
duke@1 756 Env<AttrContext> localEnv = memberEnter.methodEnv(tree, env);
duke@1 757
duke@1 758 localEnv.info.lint = lint;
duke@1 759
duke@1 760 // Enter all type parameters into the local method scope.
duke@1 761 for (List<JCTypeParameter> l = tree.typarams; l.nonEmpty(); l = l.tail)
duke@1 762 localEnv.info.scope.enterIfAbsent(l.head.type.tsym);
duke@1 763
duke@1 764 ClassSymbol owner = env.enclClass.sym;
duke@1 765 if ((owner.flags() & ANNOTATION) != 0 &&
duke@1 766 tree.params.nonEmpty())
duke@1 767 log.error(tree.params.head.pos(),
duke@1 768 "intf.annotation.members.cant.have.params");
duke@1 769
duke@1 770 // Attribute all value parameters.
duke@1 771 for (List<JCVariableDecl> l = tree.params; l.nonEmpty(); l = l.tail) {
duke@1 772 attribStat(l.head, localEnv);
duke@1 773 }
duke@1 774
mcimadamore@795 775 chk.checkVarargsMethodDecl(localEnv, tree);
mcimadamore@580 776
duke@1 777 // Check that type parameters are well-formed.
mcimadamore@122 778 chk.validate(tree.typarams, localEnv);
duke@1 779
duke@1 780 // Check that result type is well-formed.
mcimadamore@122 781 chk.validate(tree.restype, localEnv);
mcimadamore@629 782
mcimadamore@629 783 // annotation method checks
mcimadamore@629 784 if ((owner.flags() & ANNOTATION) != 0) {
mcimadamore@629 785 // annotation method cannot have throws clause
mcimadamore@629 786 if (tree.thrown.nonEmpty()) {
mcimadamore@629 787 log.error(tree.thrown.head.pos(),
mcimadamore@629 788 "throws.not.allowed.in.intf.annotation");
mcimadamore@629 789 }
mcimadamore@629 790 // annotation method cannot declare type-parameters
mcimadamore@629 791 if (tree.typarams.nonEmpty()) {
mcimadamore@629 792 log.error(tree.typarams.head.pos(),
mcimadamore@629 793 "intf.annotation.members.cant.have.type.params");
mcimadamore@629 794 }
mcimadamore@629 795 // validate annotation method's return type (could be an annotation type)
duke@1 796 chk.validateAnnotationType(tree.restype);
mcimadamore@629 797 // ensure that annotation method does not clash with members of Object/Annotation
duke@1 798 chk.validateAnnotationMethod(tree.pos(), m);
duke@1 799
mcimadamore@634 800 if (tree.defaultValue != null) {
mcimadamore@634 801 // if default value is an annotation, check it is a well-formed
mcimadamore@634 802 // annotation value (e.g. no duplicate values, no missing values, etc.)
mcimadamore@634 803 chk.validateAnnotationTree(tree.defaultValue);
mcimadamore@634 804 }
mcimadamore@629 805 }
mcimadamore@629 806
duke@1 807 for (List<JCExpression> l = tree.thrown; l.nonEmpty(); l = l.tail)
duke@1 808 chk.checkType(l.head.pos(), l.head.type, syms.throwableType);
duke@1 809
duke@1 810 if (tree.body == null) {
duke@1 811 // Empty bodies are only allowed for
duke@1 812 // abstract, native, or interface methods, or for methods
duke@1 813 // in a retrofit signature class.
duke@1 814 if ((owner.flags() & INTERFACE) == 0 &&
duke@1 815 (tree.mods.flags & (ABSTRACT | NATIVE)) == 0 &&
duke@1 816 !relax)
duke@1 817 log.error(tree.pos(), "missing.meth.body.or.decl.abstract");
duke@1 818 if (tree.defaultValue != null) {
duke@1 819 if ((owner.flags() & ANNOTATION) == 0)
duke@1 820 log.error(tree.pos(),
duke@1 821 "default.allowed.in.intf.annotation.member");
duke@1 822 }
duke@1 823 } else if ((owner.flags() & INTERFACE) != 0) {
duke@1 824 log.error(tree.body.pos(), "intf.meth.cant.have.body");
duke@1 825 } else if ((tree.mods.flags & ABSTRACT) != 0) {
duke@1 826 log.error(tree.pos(), "abstract.meth.cant.have.body");
duke@1 827 } else if ((tree.mods.flags & NATIVE) != 0) {
duke@1 828 log.error(tree.pos(), "native.meth.cant.have.body");
duke@1 829 } else {
duke@1 830 // Add an implicit super() call unless an explicit call to
duke@1 831 // super(...) or this(...) is given
duke@1 832 // or we are compiling class java.lang.Object.
duke@1 833 if (tree.name == names.init && owner.type != syms.objectType) {
duke@1 834 JCBlock body = tree.body;
duke@1 835 if (body.stats.isEmpty() ||
duke@1 836 !TreeInfo.isSelfCall(body.stats.head)) {
duke@1 837 body.stats = body.stats.
duke@1 838 prepend(memberEnter.SuperCall(make.at(body.pos),
duke@1 839 List.<Type>nil(),
duke@1 840 List.<JCVariableDecl>nil(),
duke@1 841 false));
duke@1 842 } else if ((env.enclClass.sym.flags() & ENUM) != 0 &&
duke@1 843 (tree.mods.flags & GENERATEDCONSTR) == 0 &&
duke@1 844 TreeInfo.isSuperCall(body.stats.head)) {
duke@1 845 // enum constructors are not allowed to call super
duke@1 846 // directly, so make sure there aren't any super calls
duke@1 847 // in enum constructors, except in the compiler
duke@1 848 // generated one.
duke@1 849 log.error(tree.body.stats.head.pos(),
duke@1 850 "call.to.super.not.allowed.in.enum.ctor",
duke@1 851 env.enclClass.sym);
duke@1 852 }
duke@1 853 }
duke@1 854
duke@1 855 // Attribute method body.
duke@1 856 attribStat(tree.body, localEnv);
duke@1 857 }
duke@1 858 localEnv.info.scope.leave();
duke@1 859 result = tree.type = m.type;
duke@1 860 chk.validateAnnotations(tree.mods.annotations, m);
duke@1 861 }
duke@1 862 finally {
duke@1 863 chk.setLint(prevLint);
mcimadamore@795 864 chk.setMethod(prevMethod);
duke@1 865 }
duke@1 866 }
duke@1 867
duke@1 868 public void visitVarDef(JCVariableDecl tree) {
duke@1 869 // Local variables have not been entered yet, so we need to do it now:
duke@1 870 if (env.info.scope.owner.kind == MTH) {
duke@1 871 if (tree.sym != null) {
duke@1 872 // parameters have already been entered
duke@1 873 env.info.scope.enter(tree.sym);
duke@1 874 } else {
duke@1 875 memberEnter.memberEnter(tree, env);
duke@1 876 annotate.flush();
duke@1 877 }
mcimadamore@735 878 tree.sym.flags_field |= EFFECTIVELY_FINAL;
duke@1 879 }
duke@1 880
duke@1 881 VarSymbol v = tree.sym;
duke@1 882 Lint lint = env.info.lint.augment(v.attributes_field, v.flags());
duke@1 883 Lint prevLint = chk.setLint(lint);
duke@1 884
mcimadamore@165 885 // Check that the variable's declared type is well-formed.
mcimadamore@165 886 chk.validate(tree.vartype, env);
mcimadamore@852 887 deferredLintHandler.flush(tree.pos());
mcimadamore@165 888
duke@1 889 try {
duke@1 890 chk.checkDeprecatedAnnotation(tree.pos(), v);
duke@1 891
duke@1 892 if (tree.init != null) {
jjg@1127 893 if ((v.flags_field & FINAL) != 0 && !tree.init.hasTag(NEWCLASS)) {
duke@1 894 // In this case, `v' is final. Ensure that it's initializer is
duke@1 895 // evaluated.
duke@1 896 v.getConstValue(); // ensure initializer is evaluated
duke@1 897 } else {
duke@1 898 // Attribute initializer in a new environment
duke@1 899 // with the declared variable as owner.
duke@1 900 // Check that initializer conforms to variable's declared type.
duke@1 901 Env<AttrContext> initEnv = memberEnter.initEnv(tree, env);
duke@1 902 initEnv.info.lint = lint;
duke@1 903 // In order to catch self-references, we set the variable's
duke@1 904 // declaration position to maximal possible value, effectively
duke@1 905 // marking the variable as undefined.
mcimadamore@94 906 initEnv.info.enclVar = v;
duke@1 907 attribExpr(tree.init, initEnv, v.type);
duke@1 908 }
duke@1 909 }
duke@1 910 result = tree.type = v.type;
duke@1 911 chk.validateAnnotations(tree.mods.annotations, v);
duke@1 912 }
duke@1 913 finally {
duke@1 914 chk.setLint(prevLint);
duke@1 915 }
duke@1 916 }
duke@1 917
duke@1 918 public void visitSkip(JCSkip tree) {
duke@1 919 result = null;
duke@1 920 }
duke@1 921
duke@1 922 public void visitBlock(JCBlock tree) {
duke@1 923 if (env.info.scope.owner.kind == TYP) {
duke@1 924 // Block is a static or instance initializer;
duke@1 925 // let the owner of the environment be a freshly
duke@1 926 // created BLOCK-method.
duke@1 927 Env<AttrContext> localEnv =
duke@1 928 env.dup(tree, env.info.dup(env.info.scope.dupUnshared()));
duke@1 929 localEnv.info.scope.owner =
duke@1 930 new MethodSymbol(tree.flags | BLOCK, names.empty, null,
duke@1 931 env.info.scope.owner);
duke@1 932 if ((tree.flags & STATIC) != 0) localEnv.info.staticLevel++;
duke@1 933 attribStats(tree.stats, localEnv);
duke@1 934 } else {
duke@1 935 // Create a new local environment with a local scope.
duke@1 936 Env<AttrContext> localEnv =
duke@1 937 env.dup(tree, env.info.dup(env.info.scope.dup()));
duke@1 938 attribStats(tree.stats, localEnv);
duke@1 939 localEnv.info.scope.leave();
duke@1 940 }
duke@1 941 result = null;
duke@1 942 }
duke@1 943
duke@1 944 public void visitDoLoop(JCDoWhileLoop tree) {
duke@1 945 attribStat(tree.body, env.dup(tree));
duke@1 946 attribExpr(tree.cond, env, syms.booleanType);
duke@1 947 result = null;
duke@1 948 }
duke@1 949
duke@1 950 public void visitWhileLoop(JCWhileLoop tree) {
duke@1 951 attribExpr(tree.cond, env, syms.booleanType);
duke@1 952 attribStat(tree.body, env.dup(tree));
duke@1 953 result = null;
duke@1 954 }
duke@1 955
duke@1 956 public void visitForLoop(JCForLoop tree) {
duke@1 957 Env<AttrContext> loopEnv =
duke@1 958 env.dup(env.tree, env.info.dup(env.info.scope.dup()));
duke@1 959 attribStats(tree.init, loopEnv);
duke@1 960 if (tree.cond != null) attribExpr(tree.cond, loopEnv, syms.booleanType);
duke@1 961 loopEnv.tree = tree; // before, we were not in loop!
duke@1 962 attribStats(tree.step, loopEnv);
duke@1 963 attribStat(tree.body, loopEnv);
duke@1 964 loopEnv.info.scope.leave();
duke@1 965 result = null;
duke@1 966 }
duke@1 967
duke@1 968 public void visitForeachLoop(JCEnhancedForLoop tree) {
duke@1 969 Env<AttrContext> loopEnv =
duke@1 970 env.dup(env.tree, env.info.dup(env.info.scope.dup()));
duke@1 971 attribStat(tree.var, loopEnv);
duke@1 972 Type exprType = types.upperBound(attribExpr(tree.expr, loopEnv));
duke@1 973 chk.checkNonVoid(tree.pos(), exprType);
duke@1 974 Type elemtype = types.elemtype(exprType); // perhaps expr is an array?
duke@1 975 if (elemtype == null) {
duke@1 976 // or perhaps expr implements Iterable<T>?
duke@1 977 Type base = types.asSuper(exprType, syms.iterableType.tsym);
duke@1 978 if (base == null) {
mcimadamore@829 979 log.error(tree.expr.pos(),
mcimadamore@829 980 "foreach.not.applicable.to.type",
mcimadamore@829 981 exprType,
mcimadamore@829 982 diags.fragment("type.req.array.or.iterable"));
jjg@110 983 elemtype = types.createErrorType(exprType);
duke@1 984 } else {
duke@1 985 List<Type> iterableParams = base.allparams();
duke@1 986 elemtype = iterableParams.isEmpty()
duke@1 987 ? syms.objectType
duke@1 988 : types.upperBound(iterableParams.head);
duke@1 989 }
duke@1 990 }
duke@1 991 chk.checkType(tree.expr.pos(), elemtype, tree.var.sym.type);
duke@1 992 loopEnv.tree = tree; // before, we were not in loop!
duke@1 993 attribStat(tree.body, loopEnv);
duke@1 994 loopEnv.info.scope.leave();
duke@1 995 result = null;
duke@1 996 }
duke@1 997
duke@1 998 public void visitLabelled(JCLabeledStatement tree) {
duke@1 999 // Check that label is not used in an enclosing statement
duke@1 1000 Env<AttrContext> env1 = env;
jjg@1127 1001 while (env1 != null && !env1.tree.hasTag(CLASSDEF)) {
jjg@1127 1002 if (env1.tree.hasTag(LABELLED) &&
duke@1 1003 ((JCLabeledStatement) env1.tree).label == tree.label) {
duke@1 1004 log.error(tree.pos(), "label.already.in.use",
duke@1 1005 tree.label);
duke@1 1006 break;
duke@1 1007 }
duke@1 1008 env1 = env1.next;
duke@1 1009 }
duke@1 1010
duke@1 1011 attribStat(tree.body, env.dup(tree));
duke@1 1012 result = null;
duke@1 1013 }
duke@1 1014
duke@1 1015 public void visitSwitch(JCSwitch tree) {
duke@1 1016 Type seltype = attribExpr(tree.selector, env);
duke@1 1017
duke@1 1018 Env<AttrContext> switchEnv =
duke@1 1019 env.dup(tree, env.info.dup(env.info.scope.dup()));
duke@1 1020
duke@1 1021 boolean enumSwitch =
duke@1 1022 allowEnums &&
duke@1 1023 (seltype.tsym.flags() & Flags.ENUM) != 0;
darcy@430 1024 boolean stringSwitch = false;
darcy@430 1025 if (types.isSameType(seltype, syms.stringType)) {
darcy@430 1026 if (allowStringsInSwitch) {
darcy@430 1027 stringSwitch = true;
darcy@430 1028 } else {
darcy@430 1029 log.error(tree.selector.pos(), "string.switch.not.supported.in.source", sourceName);
darcy@430 1030 }
darcy@430 1031 }
darcy@430 1032 if (!enumSwitch && !stringSwitch)
duke@1 1033 seltype = chk.checkType(tree.selector.pos(), seltype, syms.intType);
duke@1 1034
duke@1 1035 // Attribute all cases and
duke@1 1036 // check that there are no duplicate case labels or default clauses.
duke@1 1037 Set<Object> labels = new HashSet<Object>(); // The set of case labels.
duke@1 1038 boolean hasDefault = false; // Is there a default label?
duke@1 1039 for (List<JCCase> l = tree.cases; l.nonEmpty(); l = l.tail) {
duke@1 1040 JCCase c = l.head;
duke@1 1041 Env<AttrContext> caseEnv =
duke@1 1042 switchEnv.dup(c, env.info.dup(switchEnv.info.scope.dup()));
duke@1 1043 if (c.pat != null) {
duke@1 1044 if (enumSwitch) {
duke@1 1045 Symbol sym = enumConstant(c.pat, seltype);
duke@1 1046 if (sym == null) {
mcimadamore@829 1047 log.error(c.pat.pos(), "enum.label.must.be.unqualified.enum");
duke@1 1048 } else if (!labels.add(sym)) {
duke@1 1049 log.error(c.pos(), "duplicate.case.label");
duke@1 1050 }
duke@1 1051 } else {
duke@1 1052 Type pattype = attribExpr(c.pat, switchEnv, seltype);
duke@1 1053 if (pattype.tag != ERROR) {
duke@1 1054 if (pattype.constValue() == null) {
darcy@430 1055 log.error(c.pat.pos(),
darcy@430 1056 (stringSwitch ? "string.const.req" : "const.expr.req"));
duke@1 1057 } else if (labels.contains(pattype.constValue())) {
duke@1 1058 log.error(c.pos(), "duplicate.case.label");
duke@1 1059 } else {
duke@1 1060 labels.add(pattype.constValue());
duke@1 1061 }
duke@1 1062 }
duke@1 1063 }
duke@1 1064 } else if (hasDefault) {
duke@1 1065 log.error(c.pos(), "duplicate.default.label");
duke@1 1066 } else {
duke@1 1067 hasDefault = true;
duke@1 1068 }
duke@1 1069 attribStats(c.stats, caseEnv);
duke@1 1070 caseEnv.info.scope.leave();
duke@1 1071 addVars(c.stats, switchEnv.info.scope);
duke@1 1072 }
duke@1 1073
duke@1 1074 switchEnv.info.scope.leave();
duke@1 1075 result = null;
duke@1 1076 }
duke@1 1077 // where
duke@1 1078 /** Add any variables defined in stats to the switch scope. */
duke@1 1079 private static void addVars(List<JCStatement> stats, Scope switchScope) {
duke@1 1080 for (;stats.nonEmpty(); stats = stats.tail) {
duke@1 1081 JCTree stat = stats.head;
jjg@1127 1082 if (stat.hasTag(VARDEF))
duke@1 1083 switchScope.enter(((JCVariableDecl) stat).sym);
duke@1 1084 }
duke@1 1085 }
duke@1 1086 // where
duke@1 1087 /** Return the selected enumeration constant symbol, or null. */
duke@1 1088 private Symbol enumConstant(JCTree tree, Type enumType) {
jjg@1127 1089 if (!tree.hasTag(IDENT)) {
duke@1 1090 log.error(tree.pos(), "enum.label.must.be.unqualified.enum");
duke@1 1091 return syms.errSymbol;
duke@1 1092 }
duke@1 1093 JCIdent ident = (JCIdent)tree;
duke@1 1094 Name name = ident.name;
duke@1 1095 for (Scope.Entry e = enumType.tsym.members().lookup(name);
duke@1 1096 e.scope != null; e = e.next()) {
duke@1 1097 if (e.sym.kind == VAR) {
duke@1 1098 Symbol s = ident.sym = e.sym;
duke@1 1099 ((VarSymbol)s).getConstValue(); // ensure initializer is evaluated
duke@1 1100 ident.type = s.type;
duke@1 1101 return ((s.flags_field & Flags.ENUM) == 0)
duke@1 1102 ? null : s;
duke@1 1103 }
duke@1 1104 }
duke@1 1105 return null;
duke@1 1106 }
duke@1 1107
duke@1 1108 public void visitSynchronized(JCSynchronized tree) {
duke@1 1109 chk.checkRefType(tree.pos(), attribExpr(tree.lock, env));
duke@1 1110 attribStat(tree.body, env);
duke@1 1111 result = null;
duke@1 1112 }
duke@1 1113
duke@1 1114 public void visitTry(JCTry tree) {
darcy@609 1115 // Create a new local environment with a local
darcy@609 1116 Env<AttrContext> localEnv = env.dup(tree, env.info.dup(env.info.scope.dup()));
darcy@609 1117 boolean isTryWithResource = tree.resources.nonEmpty();
darcy@609 1118 // Create a nested environment for attributing the try block if needed
darcy@609 1119 Env<AttrContext> tryEnv = isTryWithResource ?
darcy@609 1120 env.dup(tree, localEnv.info.dup(localEnv.info.scope.dup())) :
darcy@609 1121 localEnv;
darcy@609 1122 // Attribute resource declarations
darcy@609 1123 for (JCTree resource : tree.resources) {
jjg@1127 1124 if (resource.hasTag(VARDEF)) {
darcy@609 1125 attribStat(resource, tryEnv);
mcimadamore@743 1126 chk.checkType(resource, resource.type, syms.autoCloseableType, "try.not.applicable.to.type");
mcimadamore@951 1127
mcimadamore@951 1128 //check that resource type cannot throw InterruptedException
mcimadamore@951 1129 checkAutoCloseable(resource.pos(), localEnv, resource.type);
mcimadamore@951 1130
darcy@609 1131 VarSymbol var = (VarSymbol)TreeInfo.symbolFor(resource);
darcy@609 1132 var.setData(ElementKind.RESOURCE_VARIABLE);
darcy@609 1133 } else {
mcimadamore@743 1134 attribExpr(resource, tryEnv, syms.autoCloseableType, "try.not.applicable.to.type");
darcy@609 1135 }
darcy@609 1136 }
duke@1 1137 // Attribute body
darcy@609 1138 attribStat(tree.body, tryEnv);
darcy@609 1139 if (isTryWithResource)
darcy@609 1140 tryEnv.info.scope.leave();
duke@1 1141
duke@1 1142 // Attribute catch clauses
duke@1 1143 for (List<JCCatch> l = tree.catchers; l.nonEmpty(); l = l.tail) {
duke@1 1144 JCCatch c = l.head;
duke@1 1145 Env<AttrContext> catchEnv =
darcy@609 1146 localEnv.dup(c, localEnv.info.dup(localEnv.info.scope.dup()));
duke@1 1147 Type ctype = attribStat(c.param, catchEnv);
mcimadamore@550 1148 if (TreeInfo.isMultiCatch(c)) {
mcimadamore@735 1149 //multi-catch parameter is implicitly marked as final
darcy@969 1150 c.param.sym.flags_field |= FINAL | UNION;
mcimadamore@550 1151 }
jjg@723 1152 if (c.param.sym.kind == Kinds.VAR) {
duke@1 1153 c.param.sym.setData(ElementKind.EXCEPTION_PARAMETER);
duke@1 1154 }
duke@1 1155 chk.checkType(c.param.vartype.pos(),
duke@1 1156 chk.checkClassType(c.param.vartype.pos(), ctype),
duke@1 1157 syms.throwableType);
duke@1 1158 attribStat(c.body, catchEnv);
duke@1 1159 catchEnv.info.scope.leave();
duke@1 1160 }
duke@1 1161
duke@1 1162 // Attribute finalizer
darcy@609 1163 if (tree.finalizer != null) attribStat(tree.finalizer, localEnv);
darcy@609 1164
darcy@609 1165 localEnv.info.scope.leave();
duke@1 1166 result = null;
duke@1 1167 }
duke@1 1168
mcimadamore@951 1169 void checkAutoCloseable(DiagnosticPosition pos, Env<AttrContext> env, Type resource) {
mcimadamore@951 1170 if (!resource.isErroneous() &&
darcy@1207 1171 types.asSuper(resource, syms.autoCloseableType.tsym) != null &&
darcy@1207 1172 !types.isSameType(resource, syms.autoCloseableType)) { // Don't emit warning for AutoCloseable itself
mcimadamore@951 1173 Symbol close = syms.noSymbol;
mcimadamore@951 1174 boolean prevDeferDiags = log.deferDiagnostics;
mcimadamore@951 1175 Queue<JCDiagnostic> prevDeferredDiags = log.deferredDiagnostics;
mcimadamore@951 1176 try {
mcimadamore@951 1177 log.deferDiagnostics = true;
mcimadamore@951 1178 log.deferredDiagnostics = ListBuffer.lb();
mcimadamore@951 1179 close = rs.resolveQualifiedMethod(pos,
mcimadamore@951 1180 env,
mcimadamore@951 1181 resource,
mcimadamore@951 1182 names.close,
mcimadamore@951 1183 List.<Type>nil(),
mcimadamore@951 1184 List.<Type>nil());
mcimadamore@951 1185 }
mcimadamore@951 1186 finally {
mcimadamore@951 1187 log.deferDiagnostics = prevDeferDiags;
mcimadamore@951 1188 log.deferredDiagnostics = prevDeferredDiags;
mcimadamore@951 1189 }
mcimadamore@951 1190 if (close.kind == MTH &&
mcimadamore@951 1191 close.overrides(syms.autoCloseableClose, resource.tsym, types, true) &&
mcimadamore@951 1192 chk.isHandled(syms.interruptedExceptionType, types.memberType(resource, close).getThrownTypes()) &&
mcimadamore@951 1193 env.info.lint.isEnabled(LintCategory.TRY)) {
mcimadamore@951 1194 log.warning(LintCategory.TRY, pos, "try.resource.throws.interrupted.exc", resource);
mcimadamore@951 1195 }
mcimadamore@951 1196 }
mcimadamore@951 1197 }
mcimadamore@951 1198
duke@1 1199 public void visitConditional(JCConditional tree) {
duke@1 1200 attribExpr(tree.cond, env, syms.booleanType);
duke@1 1201 attribExpr(tree.truepart, env);
duke@1 1202 attribExpr(tree.falsepart, env);
duke@1 1203 result = check(tree,
duke@1 1204 capture(condType(tree.pos(), tree.cond.type,
duke@1 1205 tree.truepart.type, tree.falsepart.type)),
mcimadamore@1220 1206 VAL, resultInfo);
duke@1 1207 }
duke@1 1208 //where
duke@1 1209 /** Compute the type of a conditional expression, after
duke@1 1210 * checking that it exists. See Spec 15.25.
duke@1 1211 *
duke@1 1212 * @param pos The source position to be used for
duke@1 1213 * error diagnostics.
duke@1 1214 * @param condtype The type of the expression's condition.
duke@1 1215 * @param thentype The type of the expression's then-part.
duke@1 1216 * @param elsetype The type of the expression's else-part.
duke@1 1217 */
duke@1 1218 private Type condType(DiagnosticPosition pos,
duke@1 1219 Type condtype,
duke@1 1220 Type thentype,
duke@1 1221 Type elsetype) {
duke@1 1222 Type ctype = condType1(pos, condtype, thentype, elsetype);
duke@1 1223
duke@1 1224 // If condition and both arms are numeric constants,
duke@1 1225 // evaluate at compile-time.
duke@1 1226 return ((condtype.constValue() != null) &&
duke@1 1227 (thentype.constValue() != null) &&
duke@1 1228 (elsetype.constValue() != null))
duke@1 1229 ? cfolder.coerce(condtype.isTrue()?thentype:elsetype, ctype)
duke@1 1230 : ctype;
duke@1 1231 }
duke@1 1232 /** Compute the type of a conditional expression, after
duke@1 1233 * checking that it exists. Does not take into
duke@1 1234 * account the special case where condition and both arms
duke@1 1235 * are constants.
duke@1 1236 *
duke@1 1237 * @param pos The source position to be used for error
duke@1 1238 * diagnostics.
duke@1 1239 * @param condtype The type of the expression's condition.
duke@1 1240 * @param thentype The type of the expression's then-part.
duke@1 1241 * @param elsetype The type of the expression's else-part.
duke@1 1242 */
duke@1 1243 private Type condType1(DiagnosticPosition pos, Type condtype,
duke@1 1244 Type thentype, Type elsetype) {
duke@1 1245 // If same type, that is the result
duke@1 1246 if (types.isSameType(thentype, elsetype))
duke@1 1247 return thentype.baseType();
duke@1 1248
duke@1 1249 Type thenUnboxed = (!allowBoxing || thentype.isPrimitive())
duke@1 1250 ? thentype : types.unboxedType(thentype);
duke@1 1251 Type elseUnboxed = (!allowBoxing || elsetype.isPrimitive())
duke@1 1252 ? elsetype : types.unboxedType(elsetype);
duke@1 1253
duke@1 1254 // Otherwise, if both arms can be converted to a numeric
duke@1 1255 // type, return the least numeric type that fits both arms
duke@1 1256 // (i.e. return larger of the two, or return int if one
duke@1 1257 // arm is short, the other is char).
duke@1 1258 if (thenUnboxed.isPrimitive() && elseUnboxed.isPrimitive()) {
duke@1 1259 // If one arm has an integer subrange type (i.e., byte,
duke@1 1260 // short, or char), and the other is an integer constant
duke@1 1261 // that fits into the subrange, return the subrange type.
duke@1 1262 if (thenUnboxed.tag < INT && elseUnboxed.tag == INT &&
duke@1 1263 types.isAssignable(elseUnboxed, thenUnboxed))
duke@1 1264 return thenUnboxed.baseType();
duke@1 1265 if (elseUnboxed.tag < INT && thenUnboxed.tag == INT &&
duke@1 1266 types.isAssignable(thenUnboxed, elseUnboxed))
duke@1 1267 return elseUnboxed.baseType();
duke@1 1268
duke@1 1269 for (int i = BYTE; i < VOID; i++) {
duke@1 1270 Type candidate = syms.typeOfTag[i];
duke@1 1271 if (types.isSubtype(thenUnboxed, candidate) &&
duke@1 1272 types.isSubtype(elseUnboxed, candidate))
duke@1 1273 return candidate;
duke@1 1274 }
duke@1 1275 }
duke@1 1276
duke@1 1277 // Those were all the cases that could result in a primitive
duke@1 1278 if (allowBoxing) {
duke@1 1279 if (thentype.isPrimitive())
duke@1 1280 thentype = types.boxedClass(thentype).type;
duke@1 1281 if (elsetype.isPrimitive())
duke@1 1282 elsetype = types.boxedClass(elsetype).type;
duke@1 1283 }
duke@1 1284
duke@1 1285 if (types.isSubtype(thentype, elsetype))
duke@1 1286 return elsetype.baseType();
duke@1 1287 if (types.isSubtype(elsetype, thentype))
duke@1 1288 return thentype.baseType();
duke@1 1289
duke@1 1290 if (!allowBoxing || thentype.tag == VOID || elsetype.tag == VOID) {
duke@1 1291 log.error(pos, "neither.conditional.subtype",
duke@1 1292 thentype, elsetype);
duke@1 1293 return thentype.baseType();
duke@1 1294 }
duke@1 1295
duke@1 1296 // both are known to be reference types. The result is
duke@1 1297 // lub(thentype,elsetype). This cannot fail, as it will
duke@1 1298 // always be possible to infer "Object" if nothing better.
duke@1 1299 return types.lub(thentype.baseType(), elsetype.baseType());
duke@1 1300 }
duke@1 1301
duke@1 1302 public void visitIf(JCIf tree) {
duke@1 1303 attribExpr(tree.cond, env, syms.booleanType);
duke@1 1304 attribStat(tree.thenpart, env);
duke@1 1305 if (tree.elsepart != null)
duke@1 1306 attribStat(tree.elsepart, env);
duke@1 1307 chk.checkEmptyIf(tree);
duke@1 1308 result = null;
duke@1 1309 }
duke@1 1310
duke@1 1311 public void visitExec(JCExpressionStatement tree) {
mcimadamore@674 1312 //a fresh environment is required for 292 inference to work properly ---
mcimadamore@674 1313 //see Infer.instantiatePolymorphicSignatureInstance()
mcimadamore@674 1314 Env<AttrContext> localEnv = env.dup(tree);
mcimadamore@674 1315 attribExpr(tree.expr, localEnv);
duke@1 1316 result = null;
duke@1 1317 }
duke@1 1318
duke@1 1319 public void visitBreak(JCBreak tree) {
duke@1 1320 tree.target = findJumpTarget(tree.pos(), tree.getTag(), tree.label, env);
duke@1 1321 result = null;
duke@1 1322 }
duke@1 1323
duke@1 1324 public void visitContinue(JCContinue tree) {
duke@1 1325 tree.target = findJumpTarget(tree.pos(), tree.getTag(), tree.label, env);
duke@1 1326 result = null;
duke@1 1327 }
duke@1 1328 //where
duke@1 1329 /** Return the target of a break or continue statement, if it exists,
duke@1 1330 * report an error if not.
duke@1 1331 * Note: The target of a labelled break or continue is the
duke@1 1332 * (non-labelled) statement tree referred to by the label,
duke@1 1333 * not the tree representing the labelled statement itself.
duke@1 1334 *
duke@1 1335 * @param pos The position to be used for error diagnostics
duke@1 1336 * @param tag The tag of the jump statement. This is either
duke@1 1337 * Tree.BREAK or Tree.CONTINUE.
duke@1 1338 * @param label The label of the jump statement, or null if no
duke@1 1339 * label is given.
duke@1 1340 * @param env The environment current at the jump statement.
duke@1 1341 */
duke@1 1342 private JCTree findJumpTarget(DiagnosticPosition pos,
jjg@1127 1343 JCTree.Tag tag,
duke@1 1344 Name label,
duke@1 1345 Env<AttrContext> env) {
duke@1 1346 // Search environments outwards from the point of jump.
duke@1 1347 Env<AttrContext> env1 = env;
duke@1 1348 LOOP:
duke@1 1349 while (env1 != null) {
duke@1 1350 switch (env1.tree.getTag()) {
jjg@1127 1351 case LABELLED:
duke@1 1352 JCLabeledStatement labelled = (JCLabeledStatement)env1.tree;
duke@1 1353 if (label == labelled.label) {
duke@1 1354 // If jump is a continue, check that target is a loop.
jjg@1127 1355 if (tag == CONTINUE) {
jjg@1127 1356 if (!labelled.body.hasTag(DOLOOP) &&
jjg@1127 1357 !labelled.body.hasTag(WHILELOOP) &&
jjg@1127 1358 !labelled.body.hasTag(FORLOOP) &&
jjg@1127 1359 !labelled.body.hasTag(FOREACHLOOP))
duke@1 1360 log.error(pos, "not.loop.label", label);
duke@1 1361 // Found labelled statement target, now go inwards
duke@1 1362 // to next non-labelled tree.
duke@1 1363 return TreeInfo.referencedStatement(labelled);
duke@1 1364 } else {
duke@1 1365 return labelled;
duke@1 1366 }
duke@1 1367 }
duke@1 1368 break;
jjg@1127 1369 case DOLOOP:
jjg@1127 1370 case WHILELOOP:
jjg@1127 1371 case FORLOOP:
jjg@1127 1372 case FOREACHLOOP:
duke@1 1373 if (label == null) return env1.tree;
duke@1 1374 break;
jjg@1127 1375 case SWITCH:
jjg@1127 1376 if (label == null && tag == BREAK) return env1.tree;
duke@1 1377 break;
jjg@1127 1378 case METHODDEF:
jjg@1127 1379 case CLASSDEF:
duke@1 1380 break LOOP;
duke@1 1381 default:
duke@1 1382 }
duke@1 1383 env1 = env1.next;
duke@1 1384 }
duke@1 1385 if (label != null)
duke@1 1386 log.error(pos, "undef.label", label);
jjg@1127 1387 else if (tag == CONTINUE)
duke@1 1388 log.error(pos, "cont.outside.loop");
duke@1 1389 else
duke@1 1390 log.error(pos, "break.outside.switch.loop");
duke@1 1391 return null;
duke@1 1392 }
duke@1 1393
duke@1 1394 public void visitReturn(JCReturn tree) {
duke@1 1395 // Check that there is an enclosing method which is
duke@1 1396 // nested within than the enclosing class.
duke@1 1397 if (env.enclMethod == null ||
duke@1 1398 env.enclMethod.sym.owner != env.enclClass.sym) {
duke@1 1399 log.error(tree.pos(), "ret.outside.meth");
duke@1 1400
duke@1 1401 } else {
duke@1 1402 // Attribute return expression, if it exists, and check that
duke@1 1403 // it conforms to result type of enclosing method.
duke@1 1404 Symbol m = env.enclMethod.sym;
duke@1 1405 if (m.type.getReturnType().tag == VOID) {
duke@1 1406 if (tree.expr != null)
duke@1 1407 log.error(tree.expr.pos(),
duke@1 1408 "cant.ret.val.from.meth.decl.void");
duke@1 1409 } else if (tree.expr == null) {
duke@1 1410 log.error(tree.pos(), "missing.ret.val");
duke@1 1411 } else {
duke@1 1412 attribExpr(tree.expr, env, m.type.getReturnType());
duke@1 1413 }
duke@1 1414 }
duke@1 1415 result = null;
duke@1 1416 }
duke@1 1417
duke@1 1418 public void visitThrow(JCThrow tree) {
duke@1 1419 attribExpr(tree.expr, env, syms.throwableType);
duke@1 1420 result = null;
duke@1 1421 }
duke@1 1422
duke@1 1423 public void visitAssert(JCAssert tree) {
duke@1 1424 attribExpr(tree.cond, env, syms.booleanType);
duke@1 1425 if (tree.detail != null) {
duke@1 1426 chk.checkNonVoid(tree.detail.pos(), attribExpr(tree.detail, env));
duke@1 1427 }
duke@1 1428 result = null;
duke@1 1429 }
duke@1 1430
duke@1 1431 /** Visitor method for method invocations.
duke@1 1432 * NOTE: The method part of an application will have in its type field
duke@1 1433 * the return type of the method, not the method's type itself!
duke@1 1434 */
duke@1 1435 public void visitApply(JCMethodInvocation tree) {
duke@1 1436 // The local environment of a method application is
duke@1 1437 // a new environment nested in the current one.
duke@1 1438 Env<AttrContext> localEnv = env.dup(tree, env.info.dup());
duke@1 1439
duke@1 1440 // The types of the actual method arguments.
duke@1 1441 List<Type> argtypes;
duke@1 1442
duke@1 1443 // The types of the actual method type arguments.
duke@1 1444 List<Type> typeargtypes = null;
duke@1 1445
duke@1 1446 Name methName = TreeInfo.name(tree.meth);
duke@1 1447
duke@1 1448 boolean isConstructorCall =
duke@1 1449 methName == names._this || methName == names._super;
duke@1 1450
duke@1 1451 if (isConstructorCall) {
duke@1 1452 // We are seeing a ...this(...) or ...super(...) call.
duke@1 1453 // Check that this is the first statement in a constructor.
duke@1 1454 if (checkFirstConstructorStat(tree, env)) {
duke@1 1455
duke@1 1456 // Record the fact
duke@1 1457 // that this is a constructor call (using isSelfCall).
duke@1 1458 localEnv.info.isSelfCall = true;
duke@1 1459
duke@1 1460 // Attribute arguments, yielding list of argument types.
duke@1 1461 argtypes = attribArgs(tree.args, localEnv);
duke@1 1462 typeargtypes = attribTypes(tree.typeargs, localEnv);
duke@1 1463
duke@1 1464 // Variable `site' points to the class in which the called
duke@1 1465 // constructor is defined.
duke@1 1466 Type site = env.enclClass.sym.type;
duke@1 1467 if (methName == names._super) {
duke@1 1468 if (site == syms.objectType) {
duke@1 1469 log.error(tree.meth.pos(), "no.superclass", site);
jjg@110 1470 site = types.createErrorType(syms.objectType);
duke@1 1471 } else {
duke@1 1472 site = types.supertype(site);
duke@1 1473 }
duke@1 1474 }
duke@1 1475
duke@1 1476 if (site.tag == CLASS) {
mcimadamore@361 1477 Type encl = site.getEnclosingType();
mcimadamore@361 1478 while (encl != null && encl.tag == TYPEVAR)
mcimadamore@361 1479 encl = encl.getUpperBound();
mcimadamore@361 1480 if (encl.tag == CLASS) {
duke@1 1481 // we are calling a nested class
duke@1 1482
jjg@1127 1483 if (tree.meth.hasTag(SELECT)) {
duke@1 1484 JCTree qualifier = ((JCFieldAccess) tree.meth).selected;
duke@1 1485
duke@1 1486 // We are seeing a prefixed call, of the form
duke@1 1487 // <expr>.super(...).
duke@1 1488 // Check that the prefix expression conforms
duke@1 1489 // to the outer instance type of the class.
duke@1 1490 chk.checkRefType(qualifier.pos(),
duke@1 1491 attribExpr(qualifier, localEnv,
mcimadamore@361 1492 encl));
duke@1 1493 } else if (methName == names._super) {
duke@1 1494 // qualifier omitted; check for existence
duke@1 1495 // of an appropriate implicit qualifier.
duke@1 1496 rs.resolveImplicitThis(tree.meth.pos(),
mcimadamore@901 1497 localEnv, site, true);
duke@1 1498 }
jjg@1127 1499 } else if (tree.meth.hasTag(SELECT)) {
duke@1 1500 log.error(tree.meth.pos(), "illegal.qual.not.icls",
duke@1 1501 site.tsym);
duke@1 1502 }
duke@1 1503
duke@1 1504 // if we're calling a java.lang.Enum constructor,
duke@1 1505 // prefix the implicit String and int parameters
duke@1 1506 if (site.tsym == syms.enumSym && allowEnums)
duke@1 1507 argtypes = argtypes.prepend(syms.intType).prepend(syms.stringType);
duke@1 1508
duke@1 1509 // Resolve the called constructor under the assumption
duke@1 1510 // that we are referring to a superclass instance of the
duke@1 1511 // current instance (JLS ???).
duke@1 1512 boolean selectSuperPrev = localEnv.info.selectSuper;
duke@1 1513 localEnv.info.selectSuper = true;
duke@1 1514 localEnv.info.varArgs = false;
duke@1 1515 Symbol sym = rs.resolveConstructor(
duke@1 1516 tree.meth.pos(), localEnv, site, argtypes, typeargtypes);
duke@1 1517 localEnv.info.selectSuper = selectSuperPrev;
duke@1 1518
duke@1 1519 // Set method symbol to resolved constructor...
duke@1 1520 TreeInfo.setSymbol(tree.meth, sym);
duke@1 1521
duke@1 1522 // ...and check that it is legal in the current context.
duke@1 1523 // (this will also set the tree's type)
duke@1 1524 Type mpt = newMethTemplate(argtypes, typeargtypes);
mcimadamore@1220 1525 checkId(tree.meth, site, sym, localEnv, new ResultInfo(MTH, mpt),
mcimadamore@1220 1526 tree.varargsElement != null);
duke@1 1527 }
duke@1 1528 // Otherwise, `site' is an error type and we do nothing
duke@1 1529 }
duke@1 1530 result = tree.type = syms.voidType;
duke@1 1531 } else {
duke@1 1532 // Otherwise, we are seeing a regular method call.
duke@1 1533 // Attribute the arguments, yielding list of argument types, ...
duke@1 1534 argtypes = attribArgs(tree.args, localEnv);
jrose@267 1535 typeargtypes = attribAnyTypes(tree.typeargs, localEnv);
duke@1 1536
duke@1 1537 // ... and attribute the method using as a prototype a methodtype
duke@1 1538 // whose formal argument types is exactly the list of actual
duke@1 1539 // arguments (this will also set the method symbol).
duke@1 1540 Type mpt = newMethTemplate(argtypes, typeargtypes);
duke@1 1541 localEnv.info.varArgs = false;
duke@1 1542 Type mtype = attribExpr(tree.meth, localEnv, mpt);
duke@1 1543
duke@1 1544 // Compute the result type.
duke@1 1545 Type restype = mtype.getReturnType();
mcimadamore@689 1546 if (restype.tag == WILDCARD)
mcimadamore@689 1547 throw new AssertionError(mtype);
duke@1 1548
duke@1 1549 // as a special case, array.clone() has a result that is
duke@1 1550 // the same as static type of the array being cloned
jjg@1127 1551 if (tree.meth.hasTag(SELECT) &&
duke@1 1552 allowCovariantReturns &&
duke@1 1553 methName == names.clone &&
duke@1 1554 types.isArray(((JCFieldAccess) tree.meth).selected.type))
duke@1 1555 restype = ((JCFieldAccess) tree.meth).selected.type;
duke@1 1556
duke@1 1557 // as a special case, x.getClass() has type Class<? extends |X|>
duke@1 1558 if (allowGenerics &&
duke@1 1559 methName == names.getClass && tree.args.isEmpty()) {
jjg@1127 1560 Type qualifier = (tree.meth.hasTag(SELECT))
duke@1 1561 ? ((JCFieldAccess) tree.meth).selected.type
duke@1 1562 : env.enclClass.sym.type;
duke@1 1563 restype = new
duke@1 1564 ClassType(restype.getEnclosingType(),
duke@1 1565 List.<Type>of(new WildcardType(types.erasure(qualifier),
duke@1 1566 BoundKind.EXTENDS,
duke@1 1567 syms.boundClass)),
duke@1 1568 restype.tsym);
duke@1 1569 }
duke@1 1570
mcimadamore@820 1571 chk.checkRefTypes(tree.typeargs, typeargtypes);
jrose@267 1572
duke@1 1573 // Check that value of resulting type is admissible in the
duke@1 1574 // current context. Also, capture the return type
mcimadamore@1220 1575 result = check(tree, capture(restype), VAL, resultInfo);
mcimadamore@1219 1576
mcimadamore@1219 1577 if (localEnv.info.varArgs)
mcimadamore@1219 1578 Assert.check(result.isErroneous() || tree.varargsElement != null);
duke@1 1579 }
mcimadamore@122 1580 chk.validate(tree.typeargs, localEnv);
duke@1 1581 }
duke@1 1582 //where
duke@1 1583 /** Check that given application node appears as first statement
duke@1 1584 * in a constructor call.
duke@1 1585 * @param tree The application node
duke@1 1586 * @param env The environment current at the application.
duke@1 1587 */
duke@1 1588 boolean checkFirstConstructorStat(JCMethodInvocation tree, Env<AttrContext> env) {
duke@1 1589 JCMethodDecl enclMethod = env.enclMethod;
duke@1 1590 if (enclMethod != null && enclMethod.name == names.init) {
duke@1 1591 JCBlock body = enclMethod.body;
jjg@1127 1592 if (body.stats.head.hasTag(EXEC) &&
duke@1 1593 ((JCExpressionStatement) body.stats.head).expr == tree)
duke@1 1594 return true;
duke@1 1595 }
duke@1 1596 log.error(tree.pos(),"call.must.be.first.stmt.in.ctor",
duke@1 1597 TreeInfo.name(tree.meth));
duke@1 1598 return false;
duke@1 1599 }
duke@1 1600
duke@1 1601 /** Obtain a method type with given argument types.
duke@1 1602 */
duke@1 1603 Type newMethTemplate(List<Type> argtypes, List<Type> typeargtypes) {
duke@1 1604 MethodType mt = new MethodType(argtypes, null, null, syms.methodClass);
duke@1 1605 return (typeargtypes == null) ? mt : (Type)new ForAll(typeargtypes, mt);
duke@1 1606 }
duke@1 1607
duke@1 1608 public void visitNewClass(JCNewClass tree) {
jjg@110 1609 Type owntype = types.createErrorType(tree.type);
duke@1 1610
duke@1 1611 // The local environment of a class creation is
duke@1 1612 // a new environment nested in the current one.
duke@1 1613 Env<AttrContext> localEnv = env.dup(tree, env.info.dup());
duke@1 1614
duke@1 1615 // The anonymous inner class definition of the new expression,
duke@1 1616 // if one is defined by it.
duke@1 1617 JCClassDecl cdef = tree.def;
duke@1 1618
duke@1 1619 // If enclosing class is given, attribute it, and
duke@1 1620 // complete class name to be fully qualified
duke@1 1621 JCExpression clazz = tree.clazz; // Class field following new
duke@1 1622 JCExpression clazzid = // Identifier in class field
jjg@1127 1623 (clazz.hasTag(TYPEAPPLY))
duke@1 1624 ? ((JCTypeApply) clazz).clazz
duke@1 1625 : clazz;
duke@1 1626
duke@1 1627 JCExpression clazzid1 = clazzid; // The same in fully qualified form
duke@1 1628
duke@1 1629 if (tree.encl != null) {
duke@1 1630 // We are seeing a qualified new, of the form
duke@1 1631 // <expr>.new C <...> (...) ...
duke@1 1632 // In this case, we let clazz stand for the name of the
duke@1 1633 // allocated class C prefixed with the type of the qualifier
duke@1 1634 // expression, so that we can
duke@1 1635 // resolve it with standard techniques later. I.e., if
duke@1 1636 // <expr> has type T, then <expr>.new C <...> (...)
duke@1 1637 // yields a clazz T.C.
duke@1 1638 Type encltype = chk.checkRefType(tree.encl.pos(),
duke@1 1639 attribExpr(tree.encl, env));
duke@1 1640 clazzid1 = make.at(clazz.pos).Select(make.Type(encltype),
duke@1 1641 ((JCIdent) clazzid).name);
jjg@1127 1642 if (clazz.hasTag(TYPEAPPLY))
duke@1 1643 clazz = make.at(tree.pos).
duke@1 1644 TypeApply(clazzid1,
duke@1 1645 ((JCTypeApply) clazz).arguments);
duke@1 1646 else
duke@1 1647 clazz = clazzid1;
duke@1 1648 }
duke@1 1649
duke@1 1650 // Attribute clazz expression and store
duke@1 1651 // symbol + type back into the attributed tree.
mcimadamore@537 1652 Type clazztype = attribType(clazz, env);
mcimadamore@914 1653 clazztype = chk.checkDiamond(tree, clazztype);
mcimadamore@122 1654 chk.validate(clazz, localEnv);
duke@1 1655 if (tree.encl != null) {
duke@1 1656 // We have to work in this case to store
duke@1 1657 // symbol + type back into the attributed tree.
duke@1 1658 tree.clazz.type = clazztype;
duke@1 1659 TreeInfo.setSymbol(clazzid, TreeInfo.symbol(clazzid1));
duke@1 1660 clazzid.type = ((JCIdent) clazzid).sym.type;
duke@1 1661 if (!clazztype.isErroneous()) {
duke@1 1662 if (cdef != null && clazztype.tsym.isInterface()) {
duke@1 1663 log.error(tree.encl.pos(), "anon.class.impl.intf.no.qual.for.new");
duke@1 1664 } else if (clazztype.tsym.isStatic()) {
duke@1 1665 log.error(tree.encl.pos(), "qualified.new.of.static.class", clazztype.tsym);
duke@1 1666 }
duke@1 1667 }
duke@1 1668 } else if (!clazztype.tsym.isInterface() &&
duke@1 1669 clazztype.getEnclosingType().tag == CLASS) {
duke@1 1670 // Check for the existence of an apropos outer instance
duke@1 1671 rs.resolveImplicitThis(tree.pos(), env, clazztype);
duke@1 1672 }
duke@1 1673
duke@1 1674 // Attribute constructor arguments.
duke@1 1675 List<Type> argtypes = attribArgs(tree.args, localEnv);
duke@1 1676 List<Type> typeargtypes = attribTypes(tree.typeargs, localEnv);
duke@1 1677
mcimadamore@914 1678 if (TreeInfo.isDiamond(tree) && !clazztype.isErroneous()) {
mcimadamore@1217 1679 clazztype = attribDiamond(localEnv, tree, clazztype, argtypes, typeargtypes);
mcimadamore@537 1680 clazz.type = clazztype;
mcimadamore@731 1681 } else if (allowDiamondFinder &&
mcimadamore@914 1682 tree.def == null &&
mcimadamore@914 1683 !clazztype.isErroneous() &&
mcimadamore@731 1684 clazztype.getTypeArguments().nonEmpty() &&
mcimadamore@731 1685 findDiamonds) {
mcimadamore@770 1686 boolean prevDeferDiags = log.deferDiagnostics;
mcimadamore@770 1687 Queue<JCDiagnostic> prevDeferredDiags = log.deferredDiagnostics;
mcimadamore@770 1688 Type inferred = null;
mcimadamore@770 1689 try {
mcimadamore@770 1690 //disable diamond-related diagnostics
mcimadamore@770 1691 log.deferDiagnostics = true;
mcimadamore@770 1692 log.deferredDiagnostics = ListBuffer.lb();
mcimadamore@770 1693 inferred = attribDiamond(localEnv,
mcimadamore@770 1694 tree,
mcimadamore@770 1695 clazztype,
mcimadamore@770 1696 argtypes,
mcimadamore@770 1697 typeargtypes);
mcimadamore@770 1698 }
mcimadamore@770 1699 finally {
mcimadamore@770 1700 log.deferDiagnostics = prevDeferDiags;
mcimadamore@770 1701 log.deferredDiagnostics = prevDeferredDiags;
mcimadamore@770 1702 }
mcimadamore@770 1703 if (inferred != null &&
mcimadamore@770 1704 !inferred.isErroneous() &&
mcimadamore@731 1705 inferred.tag == CLASS &&
mcimadamore@1220 1706 types.isAssignable(inferred, pt().tag == NONE ? clazztype : pt(), Warner.noWarnings)) {
mcimadamore@731 1707 String key = types.isSameType(clazztype, inferred) ?
mcimadamore@731 1708 "diamond.redundant.args" :
mcimadamore@731 1709 "diamond.redundant.args.1";
mcimadamore@731 1710 log.warning(tree.clazz.pos(), key, clazztype, inferred);
mcimadamore@731 1711 }
mcimadamore@537 1712 }
mcimadamore@537 1713
duke@1 1714 // If we have made no mistakes in the class type...
duke@1 1715 if (clazztype.tag == CLASS) {
duke@1 1716 // Enums may not be instantiated except implicitly
duke@1 1717 if (allowEnums &&
duke@1 1718 (clazztype.tsym.flags_field&Flags.ENUM) != 0 &&
jjg@1127 1719 (!env.tree.hasTag(VARDEF) ||
duke@1 1720 (((JCVariableDecl) env.tree).mods.flags&Flags.ENUM) == 0 ||
duke@1 1721 ((JCVariableDecl) env.tree).init != tree))
duke@1 1722 log.error(tree.pos(), "enum.cant.be.instantiated");
duke@1 1723 // Check that class is not abstract
duke@1 1724 if (cdef == null &&
duke@1 1725 (clazztype.tsym.flags() & (ABSTRACT | INTERFACE)) != 0) {
duke@1 1726 log.error(tree.pos(), "abstract.cant.be.instantiated",
duke@1 1727 clazztype.tsym);
duke@1 1728 } else if (cdef != null && clazztype.tsym.isInterface()) {
duke@1 1729 // Check that no constructor arguments are given to
duke@1 1730 // anonymous classes implementing an interface
duke@1 1731 if (!argtypes.isEmpty())
duke@1 1732 log.error(tree.args.head.pos(), "anon.class.impl.intf.no.args");
duke@1 1733
duke@1 1734 if (!typeargtypes.isEmpty())
duke@1 1735 log.error(tree.typeargs.head.pos(), "anon.class.impl.intf.no.typeargs");
duke@1 1736
duke@1 1737 // Error recovery: pretend no arguments were supplied.
duke@1 1738 argtypes = List.nil();
duke@1 1739 typeargtypes = List.nil();
duke@1 1740 }
duke@1 1741
duke@1 1742 // Resolve the called constructor under the assumption
duke@1 1743 // that we are referring to a superclass instance of the
duke@1 1744 // current instance (JLS ???).
duke@1 1745 else {
mcimadamore@1010 1746 //the following code alters some of the fields in the current
mcimadamore@1010 1747 //AttrContext - hence, the current context must be dup'ed in
mcimadamore@1010 1748 //order to avoid downstream failures
mcimadamore@1010 1749 Env<AttrContext> rsEnv = localEnv.dup(tree);
mcimadamore@1010 1750 rsEnv.info.selectSuper = cdef != null;
mcimadamore@1010 1751 rsEnv.info.varArgs = false;
duke@1 1752 tree.constructor = rs.resolveConstructor(
mcimadamore@1010 1753 tree.pos(), rsEnv, clazztype, argtypes, typeargtypes);
mcimadamore@630 1754 tree.constructorType = tree.constructor.type.isErroneous() ?
mcimadamore@630 1755 syms.errType :
mcimadamore@1219 1756 checkConstructor(clazztype,
mcimadamore@630 1757 tree.constructor,
mcimadamore@1010 1758 rsEnv,
mcimadamore@630 1759 tree.args,
mcimadamore@630 1760 argtypes,
mcimadamore@630 1761 typeargtypes,
mcimadamore@1010 1762 rsEnv.info.varArgs);
mcimadamore@1010 1763 if (rsEnv.info.varArgs)
jjg@816 1764 Assert.check(tree.constructorType.isErroneous() || tree.varargsElement != null);
duke@1 1765 }
duke@1 1766
duke@1 1767 if (cdef != null) {
duke@1 1768 // We are seeing an anonymous class instance creation.
duke@1 1769 // In this case, the class instance creation
duke@1 1770 // expression
duke@1 1771 //
duke@1 1772 // E.new <typeargs1>C<typargs2>(args) { ... }
duke@1 1773 //
duke@1 1774 // is represented internally as
duke@1 1775 //
duke@1 1776 // E . new <typeargs1>C<typargs2>(args) ( class <empty-name> { ... } ) .
duke@1 1777 //
duke@1 1778 // This expression is then *transformed* as follows:
duke@1 1779 //
duke@1 1780 // (1) add a STATIC flag to the class definition
duke@1 1781 // if the current environment is static
duke@1 1782 // (2) add an extends or implements clause
duke@1 1783 // (3) add a constructor.
duke@1 1784 //
duke@1 1785 // For instance, if C is a class, and ET is the type of E,
duke@1 1786 // the expression
duke@1 1787 //
duke@1 1788 // E.new <typeargs1>C<typargs2>(args) { ... }
duke@1 1789 //
duke@1 1790 // is translated to (where X is a fresh name and typarams is the
duke@1 1791 // parameter list of the super constructor):
duke@1 1792 //
duke@1 1793 // new <typeargs1>X(<*nullchk*>E, args) where
duke@1 1794 // X extends C<typargs2> {
duke@1 1795 // <typarams> X(ET e, args) {
duke@1 1796 // e.<typeargs1>super(args)
duke@1 1797 // }
duke@1 1798 // ...
duke@1 1799 // }
duke@1 1800 if (Resolve.isStatic(env)) cdef.mods.flags |= STATIC;
mcimadamore@536 1801
duke@1 1802 if (clazztype.tsym.isInterface()) {
duke@1 1803 cdef.implementing = List.of(clazz);
duke@1 1804 } else {
duke@1 1805 cdef.extending = clazz;
duke@1 1806 }
duke@1 1807
duke@1 1808 attribStat(cdef, localEnv);
duke@1 1809
duke@1 1810 // If an outer instance is given,
duke@1 1811 // prefix it to the constructor arguments
duke@1 1812 // and delete it from the new expression
duke@1 1813 if (tree.encl != null && !clazztype.tsym.isInterface()) {
duke@1 1814 tree.args = tree.args.prepend(makeNullCheck(tree.encl));
duke@1 1815 argtypes = argtypes.prepend(tree.encl.type);
duke@1 1816 tree.encl = null;
duke@1 1817 }
duke@1 1818
duke@1 1819 // Reassign clazztype and recompute constructor.
duke@1 1820 clazztype = cdef.sym.type;
mcimadamore@1010 1821 boolean useVarargs = tree.varargsElement != null;
duke@1 1822 Symbol sym = rs.resolveConstructor(
duke@1 1823 tree.pos(), localEnv, clazztype, argtypes,
mcimadamore@1010 1824 typeargtypes, true, useVarargs);
jjg@816 1825 Assert.check(sym.kind < AMBIGUOUS || tree.constructor.type.isErroneous());
duke@1 1826 tree.constructor = sym;
mcimadamore@358 1827 if (tree.constructor.kind > ERRONEOUS) {
mcimadamore@358 1828 tree.constructorType = syms.errType;
mcimadamore@358 1829 }
mcimadamore@358 1830 else {
mcimadamore@1219 1831 tree.constructorType = checkConstructor(clazztype,
mcimadamore@358 1832 tree.constructor,
mcimadamore@358 1833 localEnv,
mcimadamore@358 1834 tree.args,
mcimadamore@358 1835 argtypes,
mcimadamore@358 1836 typeargtypes,
mcimadamore@1010 1837 useVarargs);
mcimadamore@358 1838 }
duke@1 1839 }
duke@1 1840
duke@1 1841 if (tree.constructor != null && tree.constructor.kind == MTH)
duke@1 1842 owntype = clazztype;
duke@1 1843 }
mcimadamore@1220 1844 result = check(tree, owntype, VAL, resultInfo);
mcimadamore@122 1845 chk.validate(tree.typeargs, localEnv);
duke@1 1846 }
duke@1 1847
mcimadamore@537 1848 Type attribDiamond(Env<AttrContext> env,
mcimadamore@537 1849 JCNewClass tree,
mcimadamore@537 1850 Type clazztype,
mcimadamore@537 1851 List<Type> argtypes,
mcimadamore@631 1852 List<Type> typeargtypes) {
mcimadamore@950 1853 if (clazztype.isErroneous() ||
mcimadamore@1217 1854 clazztype.isInterface()) {
mcimadamore@562 1855 //if the type of the instance creation expression is erroneous,
mcimadamore@950 1856 //or if it's an interface, or if something prevented us to form a valid
mcimadamore@950 1857 //mapping, return the (possibly erroneous) type unchanged
mcimadamore@537 1858 return clazztype;
mcimadamore@537 1859 }
mcimadamore@950 1860
mcimadamore@950 1861 //dup attribution environment and augment the set of inference variables
mcimadamore@950 1862 Env<AttrContext> localEnv = env.dup(tree);
mcimadamore@1217 1863
mcimadamore@1217 1864 ClassType site = new ClassType(clazztype.getEnclosingType(),
mcimadamore@1217 1865 clazztype.tsym.type.getTypeArguments(),
mcimadamore@1217 1866 clazztype.tsym);
mcimadamore@950 1867
mcimadamore@950 1868 //if the type of the instance creation expression is a class type
mcimadamore@950 1869 //apply method resolution inference (JLS 15.12.2.7). The return type
mcimadamore@950 1870 //of the resolved constructor will be a partially instantiated type
mcimadamore@1217 1871 Symbol constructor = rs.resolveDiamond(tree.pos(),
mcimadamore@950 1872 localEnv,
mcimadamore@1217 1873 site,
mcimadamore@950 1874 argtypes,
mcimadamore@950 1875 typeargtypes);
mcimadamore@1217 1876
mcimadamore@950 1877 if (constructor.kind == MTH) {
mcimadamore@1217 1878 clazztype = checkMethod(site,
mcimadamore@950 1879 constructor,
mcimadamore@950 1880 localEnv,
mcimadamore@950 1881 tree.args,
mcimadamore@950 1882 argtypes,
mcimadamore@950 1883 typeargtypes,
mcimadamore@950 1884 localEnv.info.varArgs).getReturnType();
mcimadamore@537 1885 } else {
mcimadamore@950 1886 clazztype = syms.errType;
mcimadamore@537 1887 }
mcimadamore@950 1888
mcimadamore@1220 1889 if (clazztype.tag == FORALL && !pt().isErroneous()) {
mcimadamore@537 1890 //if the resolved constructor's return type has some uninferred
mcimadamore@537 1891 //type-variables, infer them using the expected type and declared
mcimadamore@537 1892 //bounds (JLS 15.12.2.8).
mcimadamore@537 1893 try {
mcimadamore@537 1894 clazztype = infer.instantiateExpr((ForAll) clazztype,
mcimadamore@1220 1895 pt().tag == NONE ? syms.objectType : pt(),
mcimadamore@537 1896 Warner.noWarnings);
mcimadamore@537 1897 } catch (Infer.InferenceException ex) {
mcimadamore@537 1898 //an error occurred while inferring uninstantiated type-variables
mcimadamore@631 1899 log.error(tree.clazz.pos(),
mcimadamore@631 1900 "cant.apply.diamond.1",
mcimadamore@631 1901 diags.fragment("diamond", clazztype.tsym),
mcimadamore@631 1902 ex.diagnostic);
mcimadamore@631 1903 }
mcimadamore@631 1904 }
mcimadamore@914 1905 return chk.checkClassType(tree.clazz.pos(),
mcimadamore@631 1906 clazztype,
mcimadamore@631 1907 true);
mcimadamore@537 1908 }
mcimadamore@537 1909
duke@1 1910 /** Make an attributed null check tree.
duke@1 1911 */
duke@1 1912 public JCExpression makeNullCheck(JCExpression arg) {
duke@1 1913 // optimization: X.this is never null; skip null check
duke@1 1914 Name name = TreeInfo.name(arg);
duke@1 1915 if (name == names._this || name == names._super) return arg;
duke@1 1916
jjg@1127 1917 JCTree.Tag optag = NULLCHK;
duke@1 1918 JCUnary tree = make.at(arg.pos).Unary(optag, arg);
duke@1 1919 tree.operator = syms.nullcheck;
duke@1 1920 tree.type = arg.type;
duke@1 1921 return tree;
duke@1 1922 }
duke@1 1923
duke@1 1924 public void visitNewArray(JCNewArray tree) {
jjg@110 1925 Type owntype = types.createErrorType(tree.type);
duke@1 1926 Type elemtype;
duke@1 1927 if (tree.elemtype != null) {
duke@1 1928 elemtype = attribType(tree.elemtype, env);
mcimadamore@122 1929 chk.validate(tree.elemtype, env);
duke@1 1930 owntype = elemtype;
duke@1 1931 for (List<JCExpression> l = tree.dims; l.nonEmpty(); l = l.tail) {
duke@1 1932 attribExpr(l.head, env, syms.intType);
duke@1 1933 owntype = new ArrayType(owntype, syms.arrayClass);
duke@1 1934 }
duke@1 1935 } else {
duke@1 1936 // we are seeing an untyped aggregate { ... }
duke@1 1937 // this is allowed only if the prototype is an array
mcimadamore@1220 1938 if (pt().tag == ARRAY) {
mcimadamore@1220 1939 elemtype = types.elemtype(pt());
duke@1 1940 } else {
mcimadamore@1220 1941 if (pt().tag != ERROR) {
duke@1 1942 log.error(tree.pos(), "illegal.initializer.for.type",
mcimadamore@1220 1943 pt());
duke@1 1944 }
mcimadamore@1220 1945 elemtype = types.createErrorType(pt());
duke@1 1946 }
duke@1 1947 }
duke@1 1948 if (tree.elems != null) {
duke@1 1949 attribExprs(tree.elems, env, elemtype);
duke@1 1950 owntype = new ArrayType(elemtype, syms.arrayClass);
duke@1 1951 }
duke@1 1952 if (!types.isReifiable(elemtype))
duke@1 1953 log.error(tree.pos(), "generic.array.creation");
mcimadamore@1220 1954 result = check(tree, owntype, VAL, resultInfo);
duke@1 1955 }
duke@1 1956
mcimadamore@1144 1957 @Override
mcimadamore@1144 1958 public void visitLambda(JCLambda that) {
mcimadamore@1144 1959 throw new UnsupportedOperationException("Lambda expression not supported yet");
mcimadamore@1144 1960 }
mcimadamore@1144 1961
mcimadamore@1145 1962 @Override
mcimadamore@1145 1963 public void visitReference(JCMemberReference that) {
mcimadamore@1145 1964 throw new UnsupportedOperationException("Member references not supported yet");
mcimadamore@1145 1965 }
mcimadamore@1145 1966
duke@1 1967 public void visitParens(JCParens tree) {
mcimadamore@1220 1968 Type owntype = attribTree(tree.expr, env, resultInfo);
mcimadamore@1220 1969 result = check(tree, owntype, pkind(), resultInfo);
duke@1 1970 Symbol sym = TreeInfo.symbol(tree);
duke@1 1971 if (sym != null && (sym.kind&(TYP|PCK)) != 0)
duke@1 1972 log.error(tree.pos(), "illegal.start.of.type");
duke@1 1973 }
duke@1 1974
duke@1 1975 public void visitAssign(JCAssign tree) {
mcimadamore@1220 1976 Type owntype = attribTree(tree.lhs, env.dup(tree), varInfo);
duke@1 1977 Type capturedType = capture(owntype);
duke@1 1978 attribExpr(tree.rhs, env, owntype);
mcimadamore@1220 1979 result = check(tree, capturedType, VAL, resultInfo);
duke@1 1980 }
duke@1 1981
duke@1 1982 public void visitAssignop(JCAssignOp tree) {
duke@1 1983 // Attribute arguments.
mcimadamore@1220 1984 Type owntype = attribTree(tree.lhs, env, varInfo);
duke@1 1985 Type operand = attribExpr(tree.rhs, env);
duke@1 1986 // Find operator.
duke@1 1987 Symbol operator = tree.operator = rs.resolveBinaryOperator(
jjg@1127 1988 tree.pos(), tree.getTag().noAssignOp(), env,
duke@1 1989 owntype, operand);
duke@1 1990
mcimadamore@853 1991 if (operator.kind == MTH &&
mcimadamore@853 1992 !owntype.isErroneous() &&
mcimadamore@853 1993 !operand.isErroneous()) {
duke@1 1994 chk.checkOperator(tree.pos(),
duke@1 1995 (OperatorSymbol)operator,
jjg@1127 1996 tree.getTag().noAssignOp(),
duke@1 1997 owntype,
duke@1 1998 operand);
jjg@9 1999 chk.checkDivZero(tree.rhs.pos(), operator, operand);
jjg@9 2000 chk.checkCastable(tree.rhs.pos(),
jjg@9 2001 operator.type.getReturnType(),
jjg@9 2002 owntype);
duke@1 2003 }
mcimadamore@1220 2004 result = check(tree, owntype, VAL, resultInfo);
duke@1 2005 }
duke@1 2006
duke@1 2007 public void visitUnary(JCUnary tree) {
duke@1 2008 // Attribute arguments.
jjg@1127 2009 Type argtype = (tree.getTag().isIncOrDecUnaryOp())
mcimadamore@1220 2010 ? attribTree(tree.arg, env, varInfo)
duke@1 2011 : chk.checkNonVoid(tree.arg.pos(), attribExpr(tree.arg, env));
duke@1 2012
duke@1 2013 // Find operator.
duke@1 2014 Symbol operator = tree.operator =
duke@1 2015 rs.resolveUnaryOperator(tree.pos(), tree.getTag(), env, argtype);
duke@1 2016
jjg@110 2017 Type owntype = types.createErrorType(tree.type);
mcimadamore@853 2018 if (operator.kind == MTH &&
mcimadamore@853 2019 !argtype.isErroneous()) {
jjg@1127 2020 owntype = (tree.getTag().isIncOrDecUnaryOp())
duke@1 2021 ? tree.arg.type
duke@1 2022 : operator.type.getReturnType();
duke@1 2023 int opc = ((OperatorSymbol)operator).opcode;
duke@1 2024
duke@1 2025 // If the argument is constant, fold it.
duke@1 2026 if (argtype.constValue() != null) {
duke@1 2027 Type ctype = cfolder.fold1(opc, argtype);
duke@1 2028 if (ctype != null) {
duke@1 2029 owntype = cfolder.coerce(ctype, owntype);
duke@1 2030
duke@1 2031 // Remove constant types from arguments to
duke@1 2032 // conserve space. The parser will fold concatenations
duke@1 2033 // of string literals; the code here also
duke@1 2034 // gets rid of intermediate results when some of the
duke@1 2035 // operands are constant identifiers.
duke@1 2036 if (tree.arg.type.tsym == syms.stringType.tsym) {
duke@1 2037 tree.arg.type = syms.stringType;
duke@1 2038 }
duke@1 2039 }
duke@1 2040 }
duke@1 2041 }
mcimadamore@1220 2042 result = check(tree, owntype, VAL, resultInfo);
duke@1 2043 }
duke@1 2044
duke@1 2045 public void visitBinary(JCBinary tree) {
duke@1 2046 // Attribute arguments.
duke@1 2047 Type left = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.lhs, env));
duke@1 2048 Type right = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.rhs, env));
duke@1 2049
duke@1 2050 // Find operator.
duke@1 2051 Symbol operator = tree.operator =
duke@1 2052 rs.resolveBinaryOperator(tree.pos(), tree.getTag(), env, left, right);
duke@1 2053
jjg@110 2054 Type owntype = types.createErrorType(tree.type);
mcimadamore@853 2055 if (operator.kind == MTH &&
mcimadamore@853 2056 !left.isErroneous() &&
mcimadamore@853 2057 !right.isErroneous()) {
duke@1 2058 owntype = operator.type.getReturnType();
duke@1 2059 int opc = chk.checkOperator(tree.lhs.pos(),
duke@1 2060 (OperatorSymbol)operator,
duke@1 2061 tree.getTag(),
duke@1 2062 left,
duke@1 2063 right);
duke@1 2064
duke@1 2065 // If both arguments are constants, fold them.
duke@1 2066 if (left.constValue() != null && right.constValue() != null) {
duke@1 2067 Type ctype = cfolder.fold2(opc, left, right);
duke@1 2068 if (ctype != null) {
duke@1 2069 owntype = cfolder.coerce(ctype, owntype);
duke@1 2070
duke@1 2071 // Remove constant types from arguments to
duke@1 2072 // conserve space. The parser will fold concatenations
duke@1 2073 // of string literals; the code here also
duke@1 2074 // gets rid of intermediate results when some of the
duke@1 2075 // operands are constant identifiers.
duke@1 2076 if (tree.lhs.type.tsym == syms.stringType.tsym) {
duke@1 2077 tree.lhs.type = syms.stringType;
duke@1 2078 }
duke@1 2079 if (tree.rhs.type.tsym == syms.stringType.tsym) {
duke@1 2080 tree.rhs.type = syms.stringType;
duke@1 2081 }
duke@1 2082 }
duke@1 2083 }
duke@1 2084
duke@1 2085 // Check that argument types of a reference ==, != are
duke@1 2086 // castable to each other, (JLS???).
duke@1 2087 if ((opc == ByteCodes.if_acmpeq || opc == ByteCodes.if_acmpne)) {
duke@1 2088 if (!types.isCastable(left, right, new Warner(tree.pos()))) {
duke@1 2089 log.error(tree.pos(), "incomparable.types", left, right);
duke@1 2090 }
duke@1 2091 }
duke@1 2092
duke@1 2093 chk.checkDivZero(tree.rhs.pos(), operator, right);
duke@1 2094 }
mcimadamore@1220 2095 result = check(tree, owntype, VAL, resultInfo);
duke@1 2096 }
duke@1 2097
duke@1 2098 public void visitTypeCast(JCTypeCast tree) {
duke@1 2099 Type clazztype = attribType(tree.clazz, env);
mcimadamore@638 2100 chk.validate(tree.clazz, env, false);
mcimadamore@674 2101 //a fresh environment is required for 292 inference to work properly ---
mcimadamore@674 2102 //see Infer.instantiatePolymorphicSignatureInstance()
mcimadamore@674 2103 Env<AttrContext> localEnv = env.dup(tree);
mcimadamore@674 2104 Type exprtype = attribExpr(tree.expr, localEnv, Infer.anyPoly);
duke@1 2105 Type owntype = chk.checkCastable(tree.expr.pos(), exprtype, clazztype);
duke@1 2106 if (exprtype.constValue() != null)
duke@1 2107 owntype = cfolder.coerce(exprtype, owntype);
mcimadamore@1220 2108 result = check(tree, capture(owntype), VAL, resultInfo);
duke@1 2109 }
duke@1 2110
duke@1 2111 public void visitTypeTest(JCInstanceOf tree) {
duke@1 2112 Type exprtype = chk.checkNullOrRefType(
duke@1 2113 tree.expr.pos(), attribExpr(tree.expr, env));
duke@1 2114 Type clazztype = chk.checkReifiableReferenceType(
duke@1 2115 tree.clazz.pos(), attribType(tree.clazz, env));
mcimadamore@638 2116 chk.validate(tree.clazz, env, false);
duke@1 2117 chk.checkCastable(tree.expr.pos(), exprtype, clazztype);
mcimadamore@1220 2118 result = check(tree, syms.booleanType, VAL, resultInfo);
duke@1 2119 }
duke@1 2120
duke@1 2121 public void visitIndexed(JCArrayAccess tree) {
jjg@110 2122 Type owntype = types.createErrorType(tree.type);
duke@1 2123 Type atype = attribExpr(tree.indexed, env);
duke@1 2124 attribExpr(tree.index, env, syms.intType);
duke@1 2125 if (types.isArray(atype))
duke@1 2126 owntype = types.elemtype(atype);
duke@1 2127 else if (atype.tag != ERROR)
duke@1 2128 log.error(tree.pos(), "array.req.but.found", atype);
mcimadamore@1220 2129 if ((pkind() & VAR) == 0) owntype = capture(owntype);
mcimadamore@1220 2130 result = check(tree, owntype, VAR, resultInfo);
duke@1 2131 }
duke@1 2132
duke@1 2133 public void visitIdent(JCIdent tree) {
duke@1 2134 Symbol sym;
duke@1 2135 boolean varArgs = false;
duke@1 2136
duke@1 2137 // Find symbol
mcimadamore@1220 2138 if (pt().tag == METHOD || pt().tag == FORALL) {
duke@1 2139 // If we are looking for a method, the prototype `pt' will be a
duke@1 2140 // method type with the type of the call's arguments as parameters.
duke@1 2141 env.info.varArgs = false;
mcimadamore@1220 2142 sym = rs.resolveMethod(tree.pos(), env, tree.name, pt().getParameterTypes(), pt().getTypeArguments());
duke@1 2143 varArgs = env.info.varArgs;
duke@1 2144 } else if (tree.sym != null && tree.sym.kind != VAR) {
duke@1 2145 sym = tree.sym;
duke@1 2146 } else {
mcimadamore@1220 2147 sym = rs.resolveIdent(tree.pos(), env, tree.name, pkind());
duke@1 2148 }
duke@1 2149 tree.sym = sym;
duke@1 2150
duke@1 2151 // (1) Also find the environment current for the class where
duke@1 2152 // sym is defined (`symEnv').
duke@1 2153 // Only for pre-tiger versions (1.4 and earlier):
duke@1 2154 // (2) Also determine whether we access symbol out of an anonymous
duke@1 2155 // class in a this or super call. This is illegal for instance
duke@1 2156 // members since such classes don't carry a this$n link.
duke@1 2157 // (`noOuterThisPath').
duke@1 2158 Env<AttrContext> symEnv = env;
duke@1 2159 boolean noOuterThisPath = false;
duke@1 2160 if (env.enclClass.sym.owner.kind != PCK && // we are in an inner class
duke@1 2161 (sym.kind & (VAR | MTH | TYP)) != 0 &&
duke@1 2162 sym.owner.kind == TYP &&
duke@1 2163 tree.name != names._this && tree.name != names._super) {
duke@1 2164
duke@1 2165 // Find environment in which identifier is defined.
duke@1 2166 while (symEnv.outer != null &&
duke@1 2167 !sym.isMemberOf(symEnv.enclClass.sym, types)) {
duke@1 2168 if ((symEnv.enclClass.sym.flags() & NOOUTERTHIS) != 0)
duke@1 2169 noOuterThisPath = !allowAnonOuterThis;
duke@1 2170 symEnv = symEnv.outer;
duke@1 2171 }
duke@1 2172 }
duke@1 2173
duke@1 2174 // If symbol is a variable, ...
duke@1 2175 if (sym.kind == VAR) {
duke@1 2176 VarSymbol v = (VarSymbol)sym;
duke@1 2177
duke@1 2178 // ..., evaluate its initializer, if it has one, and check for
duke@1 2179 // illegal forward reference.
duke@1 2180 checkInit(tree, env, v, false);
duke@1 2181
duke@1 2182 // If symbol is a local variable accessed from an embedded
duke@1 2183 // inner class check that it is final.
duke@1 2184 if (v.owner.kind == MTH &&
duke@1 2185 v.owner != env.info.scope.owner &&
duke@1 2186 (v.flags_field & FINAL) == 0) {
duke@1 2187 log.error(tree.pos(),
duke@1 2188 "local.var.accessed.from.icls.needs.final",
duke@1 2189 v);
duke@1 2190 }
duke@1 2191
duke@1 2192 // If we are expecting a variable (as opposed to a value), check
duke@1 2193 // that the variable is assignable in the current environment.
mcimadamore@1220 2194 if (pkind() == VAR)
duke@1 2195 checkAssignable(tree.pos(), v, null, env);
duke@1 2196 }
duke@1 2197
duke@1 2198 // In a constructor body,
duke@1 2199 // if symbol is a field or instance method, check that it is
duke@1 2200 // not accessed before the supertype constructor is called.
duke@1 2201 if ((symEnv.info.isSelfCall || noOuterThisPath) &&
duke@1 2202 (sym.kind & (VAR | MTH)) != 0 &&
duke@1 2203 sym.owner.kind == TYP &&
duke@1 2204 (sym.flags() & STATIC) == 0) {
duke@1 2205 chk.earlyRefError(tree.pos(), sym.kind == VAR ? sym : thisSym(tree.pos(), env));
duke@1 2206 }
duke@1 2207 Env<AttrContext> env1 = env;
mcimadamore@28 2208 if (sym.kind != ERR && sym.kind != TYP && sym.owner != null && sym.owner != env1.enclClass.sym) {
duke@1 2209 // If the found symbol is inaccessible, then it is
duke@1 2210 // accessed through an enclosing instance. Locate this
duke@1 2211 // enclosing instance:
duke@1 2212 while (env1.outer != null && !rs.isAccessible(env, env1.enclClass.sym.type, sym))
duke@1 2213 env1 = env1.outer;
duke@1 2214 }
mcimadamore@1220 2215 result = checkId(tree, env1.enclClass.sym.type, sym, env, resultInfo, varArgs);
duke@1 2216 }
duke@1 2217
duke@1 2218 public void visitSelect(JCFieldAccess tree) {
duke@1 2219 // Determine the expected kind of the qualifier expression.
duke@1 2220 int skind = 0;
duke@1 2221 if (tree.name == names._this || tree.name == names._super ||
duke@1 2222 tree.name == names._class)
duke@1 2223 {
duke@1 2224 skind = TYP;
duke@1 2225 } else {
mcimadamore@1220 2226 if ((pkind() & PCK) != 0) skind = skind | PCK;
mcimadamore@1220 2227 if ((pkind() & TYP) != 0) skind = skind | TYP | PCK;
mcimadamore@1220 2228 if ((pkind() & (VAL | MTH)) != 0) skind = skind | VAL | TYP;
duke@1 2229 }
duke@1 2230
duke@1 2231 // Attribute the qualifier expression, and determine its symbol (if any).
mcimadamore@1220 2232 Type site = attribTree(tree.selected, env, new ResultInfo(skind, Infer.anyPoly));
mcimadamore@1220 2233 if ((pkind() & (PCK | TYP)) == 0)
duke@1 2234 site = capture(site); // Capture field access
duke@1 2235
duke@1 2236 // don't allow T.class T[].class, etc
duke@1 2237 if (skind == TYP) {
duke@1 2238 Type elt = site;
duke@1 2239 while (elt.tag == ARRAY)
duke@1 2240 elt = ((ArrayType)elt).elemtype;
duke@1 2241 if (elt.tag == TYPEVAR) {
duke@1 2242 log.error(tree.pos(), "type.var.cant.be.deref");
jjg@110 2243 result = types.createErrorType(tree.type);
duke@1 2244 return;
duke@1 2245 }
duke@1 2246 }
duke@1 2247
duke@1 2248 // If qualifier symbol is a type or `super', assert `selectSuper'
duke@1 2249 // for the selection. This is relevant for determining whether
duke@1 2250 // protected symbols are accessible.
duke@1 2251 Symbol sitesym = TreeInfo.symbol(tree.selected);
duke@1 2252 boolean selectSuperPrev = env.info.selectSuper;
duke@1 2253 env.info.selectSuper =
duke@1 2254 sitesym != null &&
duke@1 2255 sitesym.name == names._super;
duke@1 2256
duke@1 2257 // If selected expression is polymorphic, strip
duke@1 2258 // type parameters and remember in env.info.tvars, so that
duke@1 2259 // they can be added later (in Attr.checkId and Infer.instantiateMethod).
duke@1 2260 if (tree.selected.type.tag == FORALL) {
duke@1 2261 ForAll pstype = (ForAll)tree.selected.type;
duke@1 2262 env.info.tvars = pstype.tvars;
duke@1 2263 site = tree.selected.type = pstype.qtype;
duke@1 2264 }
duke@1 2265
duke@1 2266 // Determine the symbol represented by the selection.
duke@1 2267 env.info.varArgs = false;
mcimadamore@1220 2268 Symbol sym = selectSym(tree, sitesym, site, env, resultInfo);
mcimadamore@1220 2269 if (sym.exists() && !isType(sym) && (pkind() & (PCK | TYP)) != 0) {
duke@1 2270 site = capture(site);
mcimadamore@1220 2271 sym = selectSym(tree, sitesym, site, env, resultInfo);
duke@1 2272 }
duke@1 2273 boolean varArgs = env.info.varArgs;
duke@1 2274 tree.sym = sym;
duke@1 2275
mcimadamore@27 2276 if (site.tag == TYPEVAR && !isType(sym) && sym.kind != ERR) {
mcimadamore@27 2277 while (site.tag == TYPEVAR) site = site.getUpperBound();
mcimadamore@27 2278 site = capture(site);
mcimadamore@27 2279 }
duke@1 2280
duke@1 2281 // If that symbol is a variable, ...
duke@1 2282 if (sym.kind == VAR) {
duke@1 2283 VarSymbol v = (VarSymbol)sym;
duke@1 2284
duke@1 2285 // ..., evaluate its initializer, if it has one, and check for
duke@1 2286 // illegal forward reference.
duke@1 2287 checkInit(tree, env, v, true);
duke@1 2288
duke@1 2289 // If we are expecting a variable (as opposed to a value), check
duke@1 2290 // that the variable is assignable in the current environment.
mcimadamore@1220 2291 if (pkind() == VAR)
duke@1 2292 checkAssignable(tree.pos(), v, tree.selected, env);
duke@1 2293 }
duke@1 2294
darcy@609 2295 if (sitesym != null &&
darcy@609 2296 sitesym.kind == VAR &&
darcy@609 2297 ((VarSymbol)sitesym).isResourceVariable() &&
darcy@609 2298 sym.kind == MTH &&
mcimadamore@954 2299 sym.name.equals(names.close) &&
darcy@609 2300 sym.overrides(syms.autoCloseableClose, sitesym.type.tsym, types, true) &&
mcimadamore@795 2301 env.info.lint.isEnabled(LintCategory.TRY)) {
mcimadamore@795 2302 log.warning(LintCategory.TRY, tree, "try.explicit.close.call");
darcy@609 2303 }
darcy@609 2304
duke@1 2305 // Disallow selecting a type from an expression
duke@1 2306 if (isType(sym) && (sitesym==null || (sitesym.kind&(TYP|PCK)) == 0)) {
mcimadamore@1220 2307 tree.type = check(tree.selected, pt(),
mcimadamore@1220 2308 sitesym == null ? VAL : sitesym.kind, new ResultInfo(TYP|PCK, pt()));
duke@1 2309 }
duke@1 2310
duke@1 2311 if (isType(sitesym)) {
duke@1 2312 if (sym.name == names._this) {
duke@1 2313 // If `C' is the currently compiled class, check that
duke@1 2314 // C.this' does not appear in a call to a super(...)
duke@1 2315 if (env.info.isSelfCall &&
duke@1 2316 site.tsym == env.enclClass.sym) {
duke@1 2317 chk.earlyRefError(tree.pos(), sym);
duke@1 2318 }
duke@1 2319 } else {
duke@1 2320 // Check if type-qualified fields or methods are static (JLS)
duke@1 2321 if ((sym.flags() & STATIC) == 0 &&
duke@1 2322 sym.name != names._super &&
duke@1 2323 (sym.kind == VAR || sym.kind == MTH)) {
duke@1 2324 rs.access(rs.new StaticError(sym),
duke@1 2325 tree.pos(), site, sym.name, true);
duke@1 2326 }
duke@1 2327 }
jjg@505 2328 } else if (sym.kind != ERR && (sym.flags() & STATIC) != 0 && sym.name != names._class) {
jjg@505 2329 // If the qualified item is not a type and the selected item is static, report
jjg@505 2330 // a warning. Make allowance for the class of an array type e.g. Object[].class)
jjg@505 2331 chk.warnStatic(tree, "static.not.qualified.by.type", Kinds.kindName(sym.kind), sym.owner);
duke@1 2332 }
duke@1 2333
duke@1 2334 // If we are selecting an instance member via a `super', ...
duke@1 2335 if (env.info.selectSuper && (sym.flags() & STATIC) == 0) {
duke@1 2336
duke@1 2337 // Check that super-qualified symbols are not abstract (JLS)
duke@1 2338 rs.checkNonAbstract(tree.pos(), sym);
duke@1 2339
duke@1 2340 if (site.isRaw()) {
duke@1 2341 // Determine argument types for site.
duke@1 2342 Type site1 = types.asSuper(env.enclClass.sym.type, site.tsym);
duke@1 2343 if (site1 != null) site = site1;
duke@1 2344 }
duke@1 2345 }
duke@1 2346
duke@1 2347 env.info.selectSuper = selectSuperPrev;
mcimadamore@1220 2348 result = checkId(tree, site, sym, env, resultInfo, varArgs);
duke@1 2349 env.info.tvars = List.nil();
duke@1 2350 }
duke@1 2351 //where
duke@1 2352 /** Determine symbol referenced by a Select expression,
duke@1 2353 *
duke@1 2354 * @param tree The select tree.
duke@1 2355 * @param site The type of the selected expression,
duke@1 2356 * @param env The current environment.
mcimadamore@1220 2357 * @param resultInfo The current result.
duke@1 2358 */
duke@1 2359 private Symbol selectSym(JCFieldAccess tree,
mcimadamore@829 2360 Symbol location,
duke@1 2361 Type site,
duke@1 2362 Env<AttrContext> env,
mcimadamore@1220 2363 ResultInfo resultInfo) {
duke@1 2364 DiagnosticPosition pos = tree.pos();
duke@1 2365 Name name = tree.name;
duke@1 2366 switch (site.tag) {
duke@1 2367 case PACKAGE:
duke@1 2368 return rs.access(
mcimadamore@1220 2369 rs.findIdentInPackage(env, site.tsym, name, resultInfo.pkind),
mcimadamore@829 2370 pos, location, site, name, true);
duke@1 2371 case ARRAY:
duke@1 2372 case CLASS:
mcimadamore@1220 2373 if (resultInfo.pt.tag == METHOD || resultInfo.pt.tag == FORALL) {
duke@1 2374 return rs.resolveQualifiedMethod(
mcimadamore@1220 2375 pos, env, location, site, name, resultInfo.pt.getParameterTypes(), resultInfo.pt.getTypeArguments());
duke@1 2376 } else if (name == names._this || name == names._super) {
duke@1 2377 return rs.resolveSelf(pos, env, site.tsym, name);
duke@1 2378 } else if (name == names._class) {
duke@1 2379 // In this case, we have already made sure in
duke@1 2380 // visitSelect that qualifier expression is a type.
duke@1 2381 Type t = syms.classType;
duke@1 2382 List<Type> typeargs = allowGenerics
duke@1 2383 ? List.of(types.erasure(site))
duke@1 2384 : List.<Type>nil();
duke@1 2385 t = new ClassType(t.getEnclosingType(), typeargs, t.tsym);
duke@1 2386 return new VarSymbol(
duke@1 2387 STATIC | PUBLIC | FINAL, names._class, t, site.tsym);
duke@1 2388 } else {
duke@1 2389 // We are seeing a plain identifier as selector.
mcimadamore@1220 2390 Symbol sym = rs.findIdentInType(env, site, name, resultInfo.pkind);
mcimadamore@1220 2391 if ((resultInfo.pkind & ERRONEOUS) == 0)
mcimadamore@829 2392 sym = rs.access(sym, pos, location, site, name, true);
duke@1 2393 return sym;
duke@1 2394 }
duke@1 2395 case WILDCARD:
duke@1 2396 throw new AssertionError(tree);
duke@1 2397 case TYPEVAR:
duke@1 2398 // Normally, site.getUpperBound() shouldn't be null.
duke@1 2399 // It should only happen during memberEnter/attribBase
mcimadamore@829 2400 // when determining the super type which *must* beac
duke@1 2401 // done before attributing the type variables. In
duke@1 2402 // other words, we are seeing this illegal program:
duke@1 2403 // class B<T> extends A<T.foo> {}
duke@1 2404 Symbol sym = (site.getUpperBound() != null)
mcimadamore@1220 2405 ? selectSym(tree, location, capture(site.getUpperBound()), env, resultInfo)
duke@1 2406 : null;
mcimadamore@361 2407 if (sym == null) {
duke@1 2408 log.error(pos, "type.var.cant.be.deref");
duke@1 2409 return syms.errSymbol;
duke@1 2410 } else {
mcimadamore@155 2411 Symbol sym2 = (sym.flags() & Flags.PRIVATE) != 0 ?
mcimadamore@155 2412 rs.new AccessError(env, site, sym) :
mcimadamore@155 2413 sym;
mcimadamore@829 2414 rs.access(sym2, pos, location, site, name, true);
duke@1 2415 return sym;
duke@1 2416 }
duke@1 2417 case ERROR:
duke@1 2418 // preserve identifier names through errors
jjg@110 2419 return types.createErrorType(name, site.tsym, site).tsym;
duke@1 2420 default:
duke@1 2421 // The qualifier expression is of a primitive type -- only
duke@1 2422 // .class is allowed for these.
duke@1 2423 if (name == names._class) {
duke@1 2424 // In this case, we have already made sure in Select that
duke@1 2425 // qualifier expression is a type.
duke@1 2426 Type t = syms.classType;
duke@1 2427 Type arg = types.boxedClass(site).type;
duke@1 2428 t = new ClassType(t.getEnclosingType(), List.of(arg), t.tsym);
duke@1 2429 return new VarSymbol(
duke@1 2430 STATIC | PUBLIC | FINAL, names._class, t, site.tsym);
duke@1 2431 } else {
duke@1 2432 log.error(pos, "cant.deref", site);
duke@1 2433 return syms.errSymbol;
duke@1 2434 }
duke@1 2435 }
duke@1 2436 }
duke@1 2437
duke@1 2438 /** Determine type of identifier or select expression and check that
duke@1 2439 * (1) the referenced symbol is not deprecated
duke@1 2440 * (2) the symbol's type is safe (@see checkSafe)
duke@1 2441 * (3) if symbol is a variable, check that its type and kind are
duke@1 2442 * compatible with the prototype and protokind.
duke@1 2443 * (4) if symbol is an instance field of a raw type,
duke@1 2444 * which is being assigned to, issue an unchecked warning if its
duke@1 2445 * type changes under erasure.
duke@1 2446 * (5) if symbol is an instance method of a raw type, issue an
duke@1 2447 * unchecked warning if its argument types change under erasure.
duke@1 2448 * If checks succeed:
duke@1 2449 * If symbol is a constant, return its constant type
duke@1 2450 * else if symbol is a method, return its result type
duke@1 2451 * otherwise return its type.
duke@1 2452 * Otherwise return errType.
duke@1 2453 *
duke@1 2454 * @param tree The syntax tree representing the identifier
duke@1 2455 * @param site If this is a select, the type of the selected
duke@1 2456 * expression, otherwise the type of the current class.
duke@1 2457 * @param sym The symbol representing the identifier.
duke@1 2458 * @param env The current environment.
mcimadamore@1220 2459 * @param resultInfo The expected result
duke@1 2460 */
duke@1 2461 Type checkId(JCTree tree,
duke@1 2462 Type site,
duke@1 2463 Symbol sym,
duke@1 2464 Env<AttrContext> env,
mcimadamore@1220 2465 ResultInfo resultInfo,
duke@1 2466 boolean useVarargs) {
mcimadamore@1220 2467 if (resultInfo.pt.isErroneous()) return types.createErrorType(site);
duke@1 2468 Type owntype; // The computed type of this identifier occurrence.
duke@1 2469 switch (sym.kind) {
duke@1 2470 case TYP:
duke@1 2471 // For types, the computed type equals the symbol's type,
duke@1 2472 // except for two situations:
duke@1 2473 owntype = sym.type;
duke@1 2474 if (owntype.tag == CLASS) {
duke@1 2475 Type ownOuter = owntype.getEnclosingType();
duke@1 2476
duke@1 2477 // (a) If the symbol's type is parameterized, erase it
duke@1 2478 // because no type parameters were given.
duke@1 2479 // We recover generic outer type later in visitTypeApply.
duke@1 2480 if (owntype.tsym.type.getTypeArguments().nonEmpty()) {
duke@1 2481 owntype = types.erasure(owntype);
duke@1 2482 }
duke@1 2483
duke@1 2484 // (b) If the symbol's type is an inner class, then
duke@1 2485 // we have to interpret its outer type as a superclass
duke@1 2486 // of the site type. Example:
duke@1 2487 //
duke@1 2488 // class Tree<A> { class Visitor { ... } }
duke@1 2489 // class PointTree extends Tree<Point> { ... }
duke@1 2490 // ...PointTree.Visitor...
duke@1 2491 //
duke@1 2492 // Then the type of the last expression above is
duke@1 2493 // Tree<Point>.Visitor.
duke@1 2494 else if (ownOuter.tag == CLASS && site != ownOuter) {
duke@1 2495 Type normOuter = site;
duke@1 2496 if (normOuter.tag == CLASS)
duke@1 2497 normOuter = types.asEnclosingSuper(site, ownOuter.tsym);
duke@1 2498 if (normOuter == null) // perhaps from an import
duke@1 2499 normOuter = types.erasure(ownOuter);
duke@1 2500 if (normOuter != ownOuter)
duke@1 2501 owntype = new ClassType(
duke@1 2502 normOuter, List.<Type>nil(), owntype.tsym);
duke@1 2503 }
duke@1 2504 }
duke@1 2505 break;
duke@1 2506 case VAR:
duke@1 2507 VarSymbol v = (VarSymbol)sym;
duke@1 2508 // Test (4): if symbol is an instance field of a raw type,
duke@1 2509 // which is being assigned to, issue an unchecked warning if
duke@1 2510 // its type changes under erasure.
duke@1 2511 if (allowGenerics &&
mcimadamore@1220 2512 resultInfo.pkind == VAR &&
duke@1 2513 v.owner.kind == TYP &&
duke@1 2514 (v.flags() & STATIC) == 0 &&
duke@1 2515 (site.tag == CLASS || site.tag == TYPEVAR)) {
duke@1 2516 Type s = types.asOuterSuper(site, v.owner);
duke@1 2517 if (s != null &&
duke@1 2518 s.isRaw() &&
duke@1 2519 !types.isSameType(v.type, v.erasure(types))) {
duke@1 2520 chk.warnUnchecked(tree.pos(),
duke@1 2521 "unchecked.assign.to.var",
duke@1 2522 v, s);
duke@1 2523 }
duke@1 2524 }
duke@1 2525 // The computed type of a variable is the type of the
duke@1 2526 // variable symbol, taken as a member of the site type.
duke@1 2527 owntype = (sym.owner.kind == TYP &&
duke@1 2528 sym.name != names._this && sym.name != names._super)
duke@1 2529 ? types.memberType(site, sym)
duke@1 2530 : sym.type;
duke@1 2531
duke@1 2532 if (env.info.tvars.nonEmpty()) {
duke@1 2533 Type owntype1 = new ForAll(env.info.tvars, owntype);
duke@1 2534 for (List<Type> l = env.info.tvars; l.nonEmpty(); l = l.tail)
duke@1 2535 if (!owntype.contains(l.head)) {
duke@1 2536 log.error(tree.pos(), "undetermined.type", owntype1);
jjg@110 2537 owntype1 = types.createErrorType(owntype1);
duke@1 2538 }
duke@1 2539 owntype = owntype1;
duke@1 2540 }
duke@1 2541
duke@1 2542 // If the variable is a constant, record constant value in
duke@1 2543 // computed type.
duke@1 2544 if (v.getConstValue() != null && isStaticReference(tree))
duke@1 2545 owntype = owntype.constType(v.getConstValue());
duke@1 2546
mcimadamore@1220 2547 if (resultInfo.pkind == VAL) {
duke@1 2548 owntype = capture(owntype); // capture "names as expressions"
duke@1 2549 }
duke@1 2550 break;
duke@1 2551 case MTH: {
duke@1 2552 JCMethodInvocation app = (JCMethodInvocation)env.tree;
duke@1 2553 owntype = checkMethod(site, sym, env, app.args,
mcimadamore@1220 2554 resultInfo.pt.getParameterTypes(), resultInfo.pt.getTypeArguments(),
duke@1 2555 env.info.varArgs);
duke@1 2556 break;
duke@1 2557 }
duke@1 2558 case PCK: case ERR:
duke@1 2559 owntype = sym.type;
duke@1 2560 break;
duke@1 2561 default:
duke@1 2562 throw new AssertionError("unexpected kind: " + sym.kind +
duke@1 2563 " in tree " + tree);
duke@1 2564 }
duke@1 2565
duke@1 2566 // Test (1): emit a `deprecation' warning if symbol is deprecated.
duke@1 2567 // (for constructors, the error was given when the constructor was
duke@1 2568 // resolved)
mcimadamore@852 2569
mcimadamore@852 2570 if (sym.name != names.init) {
mcimadamore@852 2571 chk.checkDeprecated(tree.pos(), env.info.scope.owner, sym);
mcimadamore@852 2572 chk.checkSunAPI(tree.pos(), sym);
jjg@377 2573 }
duke@1 2574
duke@1 2575 // Test (3): if symbol is a variable, check that its type and
duke@1 2576 // kind are compatible with the prototype and protokind.
mcimadamore@1220 2577 return check(tree, owntype, sym.kind, resultInfo);
duke@1 2578 }
duke@1 2579
duke@1 2580 /** Check that variable is initialized and evaluate the variable's
duke@1 2581 * initializer, if not yet done. Also check that variable is not
duke@1 2582 * referenced before it is defined.
duke@1 2583 * @param tree The tree making up the variable reference.
duke@1 2584 * @param env The current environment.
duke@1 2585 * @param v The variable's symbol.
duke@1 2586 */
duke@1 2587 private void checkInit(JCTree tree,
duke@1 2588 Env<AttrContext> env,
duke@1 2589 VarSymbol v,
duke@1 2590 boolean onlyWarning) {
duke@1 2591 // System.err.println(v + " " + ((v.flags() & STATIC) != 0) + " " +
duke@1 2592 // tree.pos + " " + v.pos + " " +
duke@1 2593 // Resolve.isStatic(env));//DEBUG
duke@1 2594
duke@1 2595 // A forward reference is diagnosed if the declaration position
duke@1 2596 // of the variable is greater than the current tree position
duke@1 2597 // and the tree and variable definition occur in the same class
duke@1 2598 // definition. Note that writes don't count as references.
duke@1 2599 // This check applies only to class and instance
duke@1 2600 // variables. Local variables follow different scope rules,
duke@1 2601 // and are subject to definite assignment checking.
mcimadamore@94 2602 if ((env.info.enclVar == v || v.pos > tree.pos) &&
duke@1 2603 v.owner.kind == TYP &&
duke@1 2604 canOwnInitializer(env.info.scope.owner) &&
duke@1 2605 v.owner == env.info.scope.owner.enclClass() &&
duke@1 2606 ((v.flags() & STATIC) != 0) == Resolve.isStatic(env) &&
jjg@1127 2607 (!env.tree.hasTag(ASSIGN) ||
duke@1 2608 TreeInfo.skipParens(((JCAssign) env.tree).lhs) != tree)) {
mcimadamore@94 2609 String suffix = (env.info.enclVar == v) ?
mcimadamore@94 2610 "self.ref" : "forward.ref";
mcimadamore@18 2611 if (!onlyWarning || isStaticEnumField(v)) {
mcimadamore@94 2612 log.error(tree.pos(), "illegal." + suffix);
duke@1 2613 } else if (useBeforeDeclarationWarning) {
mcimadamore@94 2614 log.warning(tree.pos(), suffix, v);
duke@1 2615 }
duke@1 2616 }
duke@1 2617
duke@1 2618 v.getConstValue(); // ensure initializer is evaluated
duke@1 2619
duke@1 2620 checkEnumInitializer(tree, env, v);
duke@1 2621 }
duke@1 2622
duke@1 2623 /**
duke@1 2624 * Check for illegal references to static members of enum. In
duke@1 2625 * an enum type, constructors and initializers may not
duke@1 2626 * reference its static members unless they are constant.
duke@1 2627 *
duke@1 2628 * @param tree The tree making up the variable reference.
duke@1 2629 * @param env The current environment.
duke@1 2630 * @param v The variable's symbol.
jjh@972 2631 * @jls section 8.9 Enums
duke@1 2632 */
duke@1 2633 private void checkEnumInitializer(JCTree tree, Env<AttrContext> env, VarSymbol v) {
jjh@972 2634 // JLS:
duke@1 2635 //
duke@1 2636 // "It is a compile-time error to reference a static field
duke@1 2637 // of an enum type that is not a compile-time constant
duke@1 2638 // (15.28) from constructors, instance initializer blocks,
duke@1 2639 // or instance variable initializer expressions of that
duke@1 2640 // type. It is a compile-time error for the constructors,
duke@1 2641 // instance initializer blocks, or instance variable
duke@1 2642 // initializer expressions of an enum constant e to refer
duke@1 2643 // to itself or to an enum constant of the same type that
duke@1 2644 // is declared to the right of e."
mcimadamore@18 2645 if (isStaticEnumField(v)) {
duke@1 2646 ClassSymbol enclClass = env.info.scope.owner.enclClass();
duke@1 2647
duke@1 2648 if (enclClass == null || enclClass.owner == null)
duke@1 2649 return;
duke@1 2650
duke@1 2651 // See if the enclosing class is the enum (or a
duke@1 2652 // subclass thereof) declaring v. If not, this
duke@1 2653 // reference is OK.
duke@1 2654 if (v.owner != enclClass && !types.isSubtype(enclClass.type, v.owner.type))
duke@1 2655 return;
duke@1 2656
duke@1 2657 // If the reference isn't from an initializer, then
duke@1 2658 // the reference is OK.
duke@1 2659 if (!Resolve.isInitializer(env))
duke@1 2660 return;
duke@1 2661
duke@1 2662 log.error(tree.pos(), "illegal.enum.static.ref");
duke@1 2663 }
duke@1 2664 }
duke@1 2665
mcimadamore@18 2666 /** Is the given symbol a static, non-constant field of an Enum?
mcimadamore@18 2667 * Note: enum literals should not be regarded as such
mcimadamore@18 2668 */
mcimadamore@18 2669 private boolean isStaticEnumField(VarSymbol v) {
mcimadamore@18 2670 return Flags.isEnum(v.owner) &&
mcimadamore@18 2671 Flags.isStatic(v) &&
mcimadamore@18 2672 !Flags.isConstant(v) &&
mcimadamore@18 2673 v.name != names._class;
duke@1 2674 }
duke@1 2675
duke@1 2676 /** Can the given symbol be the owner of code which forms part
duke@1 2677 * if class initialization? This is the case if the symbol is
duke@1 2678 * a type or field, or if the symbol is the synthetic method.
duke@1 2679 * owning a block.
duke@1 2680 */
duke@1 2681 private boolean canOwnInitializer(Symbol sym) {
duke@1 2682 return
duke@1 2683 (sym.kind & (VAR | TYP)) != 0 ||
duke@1 2684 (sym.kind == MTH && (sym.flags() & BLOCK) != 0);
duke@1 2685 }
duke@1 2686
duke@1 2687 Warner noteWarner = new Warner();
duke@1 2688
duke@1 2689 /**
mcimadamore@1219 2690 * Check that method arguments conform to its instantiation.
duke@1 2691 **/
duke@1 2692 public Type checkMethod(Type site,
duke@1 2693 Symbol sym,
duke@1 2694 Env<AttrContext> env,
duke@1 2695 final List<JCExpression> argtrees,
duke@1 2696 List<Type> argtypes,
duke@1 2697 List<Type> typeargtypes,
duke@1 2698 boolean useVarargs) {
duke@1 2699 // Test (5): if symbol is an instance method of a raw type, issue
duke@1 2700 // an unchecked warning if its argument types change under erasure.
duke@1 2701 if (allowGenerics &&
duke@1 2702 (sym.flags() & STATIC) == 0 &&
duke@1 2703 (site.tag == CLASS || site.tag == TYPEVAR)) {
duke@1 2704 Type s = types.asOuterSuper(site, sym.owner);
duke@1 2705 if (s != null && s.isRaw() &&
duke@1 2706 !types.isSameTypes(sym.type.getParameterTypes(),
duke@1 2707 sym.erasure(types).getParameterTypes())) {
duke@1 2708 chk.warnUnchecked(env.tree.pos(),
duke@1 2709 "unchecked.call.mbr.of.raw.type",
duke@1 2710 sym, s);
duke@1 2711 }
duke@1 2712 }
duke@1 2713
duke@1 2714 // Compute the identifier's instantiated type.
duke@1 2715 // For methods, we need to compute the instance type by
duke@1 2716 // Resolve.instantiate from the symbol's type as well as
duke@1 2717 // any type arguments and value arguments.
mcimadamore@795 2718 noteWarner.clear();
duke@1 2719 Type owntype = rs.instantiate(env,
duke@1 2720 site,
duke@1 2721 sym,
duke@1 2722 argtypes,
duke@1 2723 typeargtypes,
duke@1 2724 true,
duke@1 2725 useVarargs,
duke@1 2726 noteWarner);
duke@1 2727
mcimadamore@1226 2728 boolean unchecked = noteWarner.hasNonSilentLint(LintCategory.UNCHECKED);
mcimadamore@1226 2729
duke@1 2730 // If this fails, something went wrong; we should not have
duke@1 2731 // found the identifier in the first place.
duke@1 2732 if (owntype == null) {
mcimadamore@1220 2733 if (!pt().isErroneous())
duke@1 2734 log.error(env.tree.pos(),
mcimadamore@1219 2735 "internal.error.cant.instantiate",
mcimadamore@1219 2736 sym, site,
mcimadamore@1220 2737 Type.toString(pt().getParameterTypes()));
jjg@110 2738 owntype = types.createErrorType(site);
mcimadamore@1219 2739 return types.createErrorType(site);
mcimadamore@1226 2740 } else if (owntype.getReturnType().tag == FORALL && !unchecked) {
mcimadamore@1219 2741 return owntype;
duke@1 2742 } else {
mcimadamore@1226 2743 return chk.checkMethod(owntype, sym, env, argtrees, argtypes, useVarargs, unchecked);
duke@1 2744 }
mcimadamore@1219 2745 }
mcimadamore@1219 2746
mcimadamore@1219 2747 /**
mcimadamore@1219 2748 * Check that constructor arguments conform to its instantiation.
mcimadamore@1219 2749 **/
mcimadamore@1219 2750 public Type checkConstructor(Type site,
mcimadamore@1219 2751 Symbol sym,
mcimadamore@1219 2752 Env<AttrContext> env,
mcimadamore@1219 2753 final List<JCExpression> argtrees,
mcimadamore@1219 2754 List<Type> argtypes,
mcimadamore@1219 2755 List<Type> typeargtypes,
mcimadamore@1219 2756 boolean useVarargs) {
mcimadamore@1219 2757 Type owntype = checkMethod(site, sym, env, argtrees, argtypes, typeargtypes, useVarargs);
mcimadamore@1219 2758 chk.checkType(env.tree.pos(), owntype.getReturnType(), syms.voidType);
duke@1 2759 return owntype;
duke@1 2760 }
duke@1 2761
duke@1 2762 public void visitLiteral(JCLiteral tree) {
duke@1 2763 result = check(
mcimadamore@1220 2764 tree, litType(tree.typetag).constType(tree.value), VAL, resultInfo);
duke@1 2765 }
duke@1 2766 //where
duke@1 2767 /** Return the type of a literal with given type tag.
duke@1 2768 */
duke@1 2769 Type litType(int tag) {
duke@1 2770 return (tag == TypeTags.CLASS) ? syms.stringType : syms.typeOfTag[tag];
duke@1 2771 }
duke@1 2772
duke@1 2773 public void visitTypeIdent(JCPrimitiveTypeTree tree) {
mcimadamore@1220 2774 result = check(tree, syms.typeOfTag[tree.typetag], TYP, resultInfo);
duke@1 2775 }
duke@1 2776
duke@1 2777 public void visitTypeArray(JCArrayTypeTree tree) {
duke@1 2778 Type etype = attribType(tree.elemtype, env);
duke@1 2779 Type type = new ArrayType(etype, syms.arrayClass);
mcimadamore@1220 2780 result = check(tree, type, TYP, resultInfo);
duke@1 2781 }
duke@1 2782
duke@1 2783 /** Visitor method for parameterized types.
duke@1 2784 * Bound checking is left until later, since types are attributed
duke@1 2785 * before supertype structure is completely known
duke@1 2786 */
duke@1 2787 public void visitTypeApply(JCTypeApply tree) {
jjg@110 2788 Type owntype = types.createErrorType(tree.type);
duke@1 2789
duke@1 2790 // Attribute functor part of application and make sure it's a class.
duke@1 2791 Type clazztype = chk.checkClassType(tree.clazz.pos(), attribType(tree.clazz, env));
duke@1 2792
duke@1 2793 // Attribute type parameters
duke@1 2794 List<Type> actuals = attribTypes(tree.arguments, env);
duke@1 2795
duke@1 2796 if (clazztype.tag == CLASS) {
duke@1 2797 List<Type> formals = clazztype.tsym.type.getTypeArguments();
mcimadamore@1060 2798 if (actuals.isEmpty()) //diamond
mcimadamore@1060 2799 actuals = formals;
mcimadamore@1060 2800
mcimadamore@1060 2801 if (actuals.length() == formals.length()) {
duke@1 2802 List<Type> a = actuals;
duke@1 2803 List<Type> f = formals;
duke@1 2804 while (a.nonEmpty()) {
duke@1 2805 a.head = a.head.withTypeVar(f.head);
duke@1 2806 a = a.tail;
duke@1 2807 f = f.tail;
duke@1 2808 }
duke@1 2809 // Compute the proper generic outer
duke@1 2810 Type clazzOuter = clazztype.getEnclosingType();
duke@1 2811 if (clazzOuter.tag == CLASS) {
duke@1 2812 Type site;
jjg@308 2813 JCExpression clazz = TreeInfo.typeIn(tree.clazz);
jjg@1127 2814 if (clazz.hasTag(IDENT)) {
duke@1 2815 site = env.enclClass.sym.type;
jjg@1127 2816 } else if (clazz.hasTag(SELECT)) {
jjg@308 2817 site = ((JCFieldAccess) clazz).selected.type;
duke@1 2818 } else throw new AssertionError(""+tree);
duke@1 2819 if (clazzOuter.tag == CLASS && site != clazzOuter) {
duke@1 2820 if (site.tag == CLASS)
duke@1 2821 site = types.asOuterSuper(site, clazzOuter.tsym);
duke@1 2822 if (site == null)
duke@1 2823 site = types.erasure(clazzOuter);
duke@1 2824 clazzOuter = site;
duke@1 2825 }
duke@1 2826 }
mcimadamore@536 2827 owntype = new ClassType(clazzOuter, actuals, clazztype.tsym);
duke@1 2828 } else {
duke@1 2829 if (formals.length() != 0) {
duke@1 2830 log.error(tree.pos(), "wrong.number.type.args",
duke@1 2831 Integer.toString(formals.length()));
duke@1 2832 } else {
duke@1 2833 log.error(tree.pos(), "type.doesnt.take.params", clazztype.tsym);
duke@1 2834 }
jjg@110 2835 owntype = types.createErrorType(tree.type);
duke@1 2836 }
duke@1 2837 }
mcimadamore@1220 2838 result = check(tree, owntype, TYP, resultInfo);
duke@1 2839 }
duke@1 2840
darcy@969 2841 public void visitTypeUnion(JCTypeUnion tree) {
mcimadamore@774 2842 ListBuffer<Type> multicatchTypes = ListBuffer.lb();
jjg@988 2843 ListBuffer<Type> all_multicatchTypes = null; // lazy, only if needed
mcimadamore@774 2844 for (JCExpression typeTree : tree.alternatives) {
mcimadamore@774 2845 Type ctype = attribType(typeTree, env);
mcimadamore@774 2846 ctype = chk.checkType(typeTree.pos(),
mcimadamore@774 2847 chk.checkClassType(typeTree.pos(), ctype),
mcimadamore@774 2848 syms.throwableType);
mcimadamore@949 2849 if (!ctype.isErroneous()) {
darcy@969 2850 //check that alternatives of a union type are pairwise
mcimadamore@949 2851 //unrelated w.r.t. subtyping
mcimadamore@949 2852 if (chk.intersects(ctype, multicatchTypes.toList())) {
mcimadamore@949 2853 for (Type t : multicatchTypes) {
mcimadamore@949 2854 boolean sub = types.isSubtype(ctype, t);
mcimadamore@949 2855 boolean sup = types.isSubtype(t, ctype);
mcimadamore@949 2856 if (sub || sup) {
mcimadamore@949 2857 //assume 'a' <: 'b'
mcimadamore@949 2858 Type a = sub ? ctype : t;
mcimadamore@949 2859 Type b = sub ? t : ctype;
mcimadamore@949 2860 log.error(typeTree.pos(), "multicatch.types.must.be.disjoint", a, b);
mcimadamore@949 2861 }
mcimadamore@949 2862 }
mcimadamore@949 2863 }
mcimadamore@949 2864 multicatchTypes.append(ctype);
jjg@988 2865 if (all_multicatchTypes != null)
jjg@988 2866 all_multicatchTypes.append(ctype);
jjg@988 2867 } else {
jjg@988 2868 if (all_multicatchTypes == null) {
jjg@988 2869 all_multicatchTypes = ListBuffer.lb();
jjg@988 2870 all_multicatchTypes.appendList(multicatchTypes);
jjg@988 2871 }
jjg@988 2872 all_multicatchTypes.append(ctype);
mcimadamore@949 2873 }
mcimadamore@774 2874 }
mcimadamore@1220 2875 Type t = check(tree, types.lub(multicatchTypes.toList()), TYP, resultInfo);
jjg@988 2876 if (t.tag == CLASS) {
jjg@988 2877 List<Type> alternatives =
jjg@988 2878 ((all_multicatchTypes == null) ? multicatchTypes : all_multicatchTypes).toList();
jjg@988 2879 t = new UnionClassType((ClassType) t, alternatives);
jjg@988 2880 }
jjg@988 2881 tree.type = result = t;
mcimadamore@550 2882 }
mcimadamore@550 2883
duke@1 2884 public void visitTypeParameter(JCTypeParameter tree) {
duke@1 2885 TypeVar a = (TypeVar)tree.type;
duke@1 2886 Set<Type> boundSet = new HashSet<Type>();
duke@1 2887 if (a.bound.isErroneous())
duke@1 2888 return;
duke@1 2889 List<Type> bs = types.getBounds(a);
duke@1 2890 if (tree.bounds.nonEmpty()) {
duke@1 2891 // accept class or interface or typevar as first bound.
duke@1 2892 Type b = checkBase(bs.head, tree.bounds.head, env, false, false, false);
duke@1 2893 boundSet.add(types.erasure(b));
mcimadamore@159 2894 if (b.isErroneous()) {
mcimadamore@159 2895 a.bound = b;
mcimadamore@159 2896 }
mcimadamore@159 2897 else if (b.tag == TYPEVAR) {
duke@1 2898 // if first bound was a typevar, do not accept further bounds.
duke@1 2899 if (tree.bounds.tail.nonEmpty()) {
duke@1 2900 log.error(tree.bounds.tail.head.pos(),
duke@1 2901 "type.var.may.not.be.followed.by.other.bounds");
duke@1 2902 tree.bounds = List.of(tree.bounds.head);
mcimadamore@7 2903 a.bound = bs.head;
duke@1 2904 }
duke@1 2905 } else {
duke@1 2906 // if first bound was a class or interface, accept only interfaces
duke@1 2907 // as further bounds.
duke@1 2908 for (JCExpression bound : tree.bounds.tail) {
duke@1 2909 bs = bs.tail;
duke@1 2910 Type i = checkBase(bs.head, bound, env, false, true, false);
mcimadamore@159 2911 if (i.isErroneous())
mcimadamore@159 2912 a.bound = i;
mcimadamore@159 2913 else if (i.tag == CLASS)
duke@1 2914 chk.checkNotRepeated(bound.pos(), types.erasure(i), boundSet);
duke@1 2915 }
duke@1 2916 }
duke@1 2917 }
duke@1 2918 bs = types.getBounds(a);
duke@1 2919
duke@1 2920 // in case of multiple bounds ...
duke@1 2921 if (bs.length() > 1) {
duke@1 2922 // ... the variable's bound is a class type flagged COMPOUND
duke@1 2923 // (see comment for TypeVar.bound).
duke@1 2924 // In this case, generate a class tree that represents the
duke@1 2925 // bound class, ...
jjg@904 2926 JCExpression extending;
duke@1 2927 List<JCExpression> implementing;
duke@1 2928 if ((bs.head.tsym.flags() & INTERFACE) == 0) {
duke@1 2929 extending = tree.bounds.head;
duke@1 2930 implementing = tree.bounds.tail;
duke@1 2931 } else {
duke@1 2932 extending = null;
duke@1 2933 implementing = tree.bounds;
duke@1 2934 }
duke@1 2935 JCClassDecl cd = make.at(tree.pos).ClassDef(
duke@1 2936 make.Modifiers(PUBLIC | ABSTRACT),
duke@1 2937 tree.name, List.<JCTypeParameter>nil(),
duke@1 2938 extending, implementing, List.<JCTree>nil());
duke@1 2939
duke@1 2940 ClassSymbol c = (ClassSymbol)a.getUpperBound().tsym;
jjg@816 2941 Assert.check((c.flags() & COMPOUND) != 0);
duke@1 2942 cd.sym = c;
duke@1 2943 c.sourcefile = env.toplevel.sourcefile;
duke@1 2944
duke@1 2945 // ... and attribute the bound class
duke@1 2946 c.flags_field |= UNATTRIBUTED;
duke@1 2947 Env<AttrContext> cenv = enter.classEnv(cd, env);
duke@1 2948 enter.typeEnvs.put(c, cenv);
duke@1 2949 }
duke@1 2950 }
duke@1 2951
duke@1 2952
duke@1 2953 public void visitWildcard(JCWildcard tree) {
duke@1 2954 //- System.err.println("visitWildcard("+tree+");");//DEBUG
duke@1 2955 Type type = (tree.kind.kind == BoundKind.UNBOUND)
duke@1 2956 ? syms.objectType
duke@1 2957 : attribType(tree.inner, env);
duke@1 2958 result = check(tree, new WildcardType(chk.checkRefType(tree.pos(), type),
duke@1 2959 tree.kind.kind,
duke@1 2960 syms.boundClass),
mcimadamore@1220 2961 TYP, resultInfo);
duke@1 2962 }
duke@1 2963
duke@1 2964 public void visitAnnotation(JCAnnotation tree) {
mcimadamore@1220 2965 log.error(tree.pos(), "annotation.not.valid.for.type", pt());
duke@1 2966 result = tree.type = syms.errType;
duke@1 2967 }
duke@1 2968
duke@1 2969 public void visitErroneous(JCErroneous tree) {
duke@1 2970 if (tree.errs != null)
duke@1 2971 for (JCTree err : tree.errs)
mcimadamore@1220 2972 attribTree(err, env, new ResultInfo(ERR, pt()));
duke@1 2973 result = tree.type = syms.errType;
duke@1 2974 }
duke@1 2975
duke@1 2976 /** Default visitor method for all other trees.
duke@1 2977 */
duke@1 2978 public void visitTree(JCTree tree) {
duke@1 2979 throw new AssertionError();
duke@1 2980 }
duke@1 2981
jjg@931 2982 /**
jjg@931 2983 * Attribute an env for either a top level tree or class declaration.
jjg@931 2984 */
jjg@931 2985 public void attrib(Env<AttrContext> env) {
jjg@1127 2986 if (env.tree.hasTag(TOPLEVEL))
jjg@931 2987 attribTopLevel(env);
jjg@931 2988 else
jjg@931 2989 attribClass(env.tree.pos(), env.enclClass.sym);
jjg@931 2990 }
jjg@931 2991
jjg@931 2992 /**
jjg@931 2993 * Attribute a top level tree. These trees are encountered when the
jjg@931 2994 * package declaration has annotations.
jjg@931 2995 */
jjg@931 2996 public void attribTopLevel(Env<AttrContext> env) {
jjg@931 2997 JCCompilationUnit toplevel = env.toplevel;
jjg@931 2998 try {
jjg@931 2999 annotate.flush();
jjg@931 3000 chk.validateAnnotations(toplevel.packageAnnotations, toplevel.packge);
jjg@931 3001 } catch (CompletionFailure ex) {
jjg@931 3002 chk.completionError(toplevel.pos(), ex);
jjg@931 3003 }
jjg@931 3004 }
jjg@931 3005
duke@1 3006 /** Main method: attribute class definition associated with given class symbol.
duke@1 3007 * reporting completion failures at the given position.
duke@1 3008 * @param pos The source position at which completion errors are to be
duke@1 3009 * reported.
duke@1 3010 * @param c The class symbol whose definition will be attributed.
duke@1 3011 */
duke@1 3012 public void attribClass(DiagnosticPosition pos, ClassSymbol c) {
duke@1 3013 try {
duke@1 3014 annotate.flush();
duke@1 3015 attribClass(c);
duke@1 3016 } catch (CompletionFailure ex) {
duke@1 3017 chk.completionError(pos, ex);
duke@1 3018 }
duke@1 3019 }
duke@1 3020
duke@1 3021 /** Attribute class definition associated with given class symbol.
duke@1 3022 * @param c The class symbol whose definition will be attributed.
duke@1 3023 */
duke@1 3024 void attribClass(ClassSymbol c) throws CompletionFailure {
duke@1 3025 if (c.type.tag == ERROR) return;
duke@1 3026
duke@1 3027 // Check for cycles in the inheritance graph, which can arise from
duke@1 3028 // ill-formed class files.
duke@1 3029 chk.checkNonCyclic(null, c.type);
duke@1 3030
duke@1 3031 Type st = types.supertype(c.type);
duke@1 3032 if ((c.flags_field & Flags.COMPOUND) == 0) {
duke@1 3033 // First, attribute superclass.
duke@1 3034 if (st.tag == CLASS)
duke@1 3035 attribClass((ClassSymbol)st.tsym);
duke@1 3036
duke@1 3037 // Next attribute owner, if it is a class.
duke@1 3038 if (c.owner.kind == TYP && c.owner.type.tag == CLASS)
duke@1 3039 attribClass((ClassSymbol)c.owner);
duke@1 3040 }
duke@1 3041
duke@1 3042 // The previous operations might have attributed the current class
duke@1 3043 // if there was a cycle. So we test first whether the class is still
duke@1 3044 // UNATTRIBUTED.
duke@1 3045 if ((c.flags_field & UNATTRIBUTED) != 0) {
duke@1 3046 c.flags_field &= ~UNATTRIBUTED;
duke@1 3047
duke@1 3048 // Get environment current at the point of class definition.
duke@1 3049 Env<AttrContext> env = enter.typeEnvs.get(c);
duke@1 3050
duke@1 3051 // The info.lint field in the envs stored in enter.typeEnvs is deliberately uninitialized,
duke@1 3052 // because the annotations were not available at the time the env was created. Therefore,
duke@1 3053 // we look up the environment chain for the first enclosing environment for which the
duke@1 3054 // lint value is set. Typically, this is the parent env, but might be further if there
duke@1 3055 // are any envs created as a result of TypeParameter nodes.
duke@1 3056 Env<AttrContext> lintEnv = env;
duke@1 3057 while (lintEnv.info.lint == null)
duke@1 3058 lintEnv = lintEnv.next;
duke@1 3059
duke@1 3060 // Having found the enclosing lint value, we can initialize the lint value for this class
duke@1 3061 env.info.lint = lintEnv.info.lint.augment(c.attributes_field, c.flags());
duke@1 3062
duke@1 3063 Lint prevLint = chk.setLint(env.info.lint);
duke@1 3064 JavaFileObject prev = log.useSource(c.sourcefile);
duke@1 3065
duke@1 3066 try {
duke@1 3067 // java.lang.Enum may not be subclassed by a non-enum
duke@1 3068 if (st.tsym == syms.enumSym &&
duke@1 3069 ((c.flags_field & (Flags.ENUM|Flags.COMPOUND)) == 0))
duke@1 3070 log.error(env.tree.pos(), "enum.no.subclassing");
duke@1 3071
duke@1 3072 // Enums may not be extended by source-level classes
duke@1 3073 if (st.tsym != null &&
duke@1 3074 ((st.tsym.flags_field & Flags.ENUM) != 0) &&
mcimadamore@82 3075 ((c.flags_field & (Flags.ENUM | Flags.COMPOUND)) == 0) &&
duke@1 3076 !target.compilerBootstrap(c)) {
duke@1 3077 log.error(env.tree.pos(), "enum.types.not.extensible");
duke@1 3078 }
duke@1 3079 attribClassBody(env, c);
duke@1 3080
duke@1 3081 chk.checkDeprecatedAnnotation(env.tree.pos(), c);
duke@1 3082 } finally {
duke@1 3083 log.useSource(prev);
duke@1 3084 chk.setLint(prevLint);
duke@1 3085 }
duke@1 3086
duke@1 3087 }
duke@1 3088 }
duke@1 3089
duke@1 3090 public void visitImport(JCImport tree) {
duke@1 3091 // nothing to do
duke@1 3092 }
duke@1 3093
duke@1 3094 /** Finish the attribution of a class. */
duke@1 3095 private void attribClassBody(Env<AttrContext> env, ClassSymbol c) {
duke@1 3096 JCClassDecl tree = (JCClassDecl)env.tree;
jjg@816 3097 Assert.check(c == tree.sym);
duke@1 3098
duke@1 3099 // Validate annotations
duke@1 3100 chk.validateAnnotations(tree.mods.annotations, c);
duke@1 3101
duke@1 3102 // Validate type parameters, supertype and interfaces.
mcimadamore@42 3103 attribBounds(tree.typarams);
mcimadamore@537 3104 if (!c.isAnonymous()) {
mcimadamore@537 3105 //already checked if anonymous
mcimadamore@537 3106 chk.validate(tree.typarams, env);
mcimadamore@537 3107 chk.validate(tree.extending, env);
mcimadamore@537 3108 chk.validate(tree.implementing, env);
mcimadamore@537 3109 }
duke@1 3110
duke@1 3111 // If this is a non-abstract class, check that it has no abstract
duke@1 3112 // methods or unimplemented methods of an implemented interface.
duke@1 3113 if ((c.flags() & (ABSTRACT | INTERFACE)) == 0) {
duke@1 3114 if (!relax)
duke@1 3115 chk.checkAllDefined(tree.pos(), c);
duke@1 3116 }
duke@1 3117
duke@1 3118 if ((c.flags() & ANNOTATION) != 0) {
duke@1 3119 if (tree.implementing.nonEmpty())
duke@1 3120 log.error(tree.implementing.head.pos(),
duke@1 3121 "cant.extend.intf.annotation");
duke@1 3122 if (tree.typarams.nonEmpty())
duke@1 3123 log.error(tree.typarams.head.pos(),
duke@1 3124 "intf.annotation.cant.have.type.params");
duke@1 3125 } else {
duke@1 3126 // Check that all extended classes and interfaces
duke@1 3127 // are compatible (i.e. no two define methods with same arguments
duke@1 3128 // yet different return types). (JLS 8.4.6.3)
duke@1 3129 chk.checkCompatibleSupertypes(tree.pos(), c.type);
duke@1 3130 }
duke@1 3131
duke@1 3132 // Check that class does not import the same parameterized interface
duke@1 3133 // with two different argument lists.
duke@1 3134 chk.checkClassBounds(tree.pos(), c.type);
duke@1 3135
duke@1 3136 tree.type = c.type;
duke@1 3137
jjg@816 3138 for (List<JCTypeParameter> l = tree.typarams;
jjg@816 3139 l.nonEmpty(); l = l.tail) {
jjg@816 3140 Assert.checkNonNull(env.info.scope.lookup(l.head.name).scope);
duke@1 3141 }
duke@1 3142
duke@1 3143 // Check that a generic class doesn't extend Throwable
duke@1 3144 if (!c.type.allparams().isEmpty() && types.isSubtype(c.type, syms.throwableType))
duke@1 3145 log.error(tree.extending.pos(), "generic.throwable");
duke@1 3146
duke@1 3147 // Check that all methods which implement some
duke@1 3148 // method conform to the method they implement.
duke@1 3149 chk.checkImplementations(tree);
duke@1 3150
mcimadamore@951 3151 //check that a resource implementing AutoCloseable cannot throw InterruptedException
mcimadamore@951 3152 checkAutoCloseable(tree.pos(), env, c.type);
mcimadamore@951 3153
duke@1 3154 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
duke@1 3155 // Attribute declaration
duke@1 3156 attribStat(l.head, env);
duke@1 3157 // Check that declarations in inner classes are not static (JLS 8.1.2)
duke@1 3158 // Make an exception for static constants.
duke@1 3159 if (c.owner.kind != PCK &&
duke@1 3160 ((c.flags() & STATIC) == 0 || c.name == names.empty) &&
duke@1 3161 (TreeInfo.flags(l.head) & (STATIC | INTERFACE)) != 0) {
duke@1 3162 Symbol sym = null;
jjg@1127 3163 if (l.head.hasTag(VARDEF)) sym = ((JCVariableDecl) l.head).sym;
duke@1 3164 if (sym == null ||
duke@1 3165 sym.kind != VAR ||
duke@1 3166 ((VarSymbol) sym).getConstValue() == null)
mcimadamore@855 3167 log.error(l.head.pos(), "icls.cant.have.static.decl", c);
duke@1 3168 }
duke@1 3169 }
duke@1 3170
duke@1 3171 // Check for cycles among non-initial constructors.
duke@1 3172 chk.checkCyclicConstructors(tree);
duke@1 3173
duke@1 3174 // Check for cycles among annotation elements.
duke@1 3175 chk.checkNonCyclicElements(tree);
duke@1 3176
duke@1 3177 // Check for proper use of serialVersionUID
mcimadamore@795 3178 if (env.info.lint.isEnabled(LintCategory.SERIAL) &&
duke@1 3179 isSerializable(c) &&
duke@1 3180 (c.flags() & Flags.ENUM) == 0 &&
duke@1 3181 (c.flags() & ABSTRACT) == 0) {
duke@1 3182 checkSerialVersionUID(tree, c);
duke@1 3183 }
duke@1 3184 }
duke@1 3185 // where
duke@1 3186 /** check if a class is a subtype of Serializable, if that is available. */
duke@1 3187 private boolean isSerializable(ClassSymbol c) {
duke@1 3188 try {
duke@1 3189 syms.serializableType.complete();
duke@1 3190 }
duke@1 3191 catch (CompletionFailure e) {
duke@1 3192 return false;
duke@1 3193 }
duke@1 3194 return types.isSubtype(c.type, syms.serializableType);
duke@1 3195 }
duke@1 3196
duke@1 3197 /** Check that an appropriate serialVersionUID member is defined. */
duke@1 3198 private void checkSerialVersionUID(JCClassDecl tree, ClassSymbol c) {
duke@1 3199
duke@1 3200 // check for presence of serialVersionUID
duke@1 3201 Scope.Entry e = c.members().lookup(names.serialVersionUID);
duke@1 3202 while (e.scope != null && e.sym.kind != VAR) e = e.next();
duke@1 3203 if (e.scope == null) {
mcimadamore@795 3204 log.warning(LintCategory.SERIAL,
jjg@612 3205 tree.pos(), "missing.SVUID", c);
duke@1 3206 return;
duke@1 3207 }
duke@1 3208
duke@1 3209 // check that it is static final
duke@1 3210 VarSymbol svuid = (VarSymbol)e.sym;
duke@1 3211 if ((svuid.flags() & (STATIC | FINAL)) !=
duke@1 3212 (STATIC | FINAL))
mcimadamore@795 3213 log.warning(LintCategory.SERIAL,
jjg@612 3214 TreeInfo.diagnosticPositionFor(svuid, tree), "improper.SVUID", c);
duke@1 3215
duke@1 3216 // check that it is long
duke@1 3217 else if (svuid.type.tag != TypeTags.LONG)
mcimadamore@795 3218 log.warning(LintCategory.SERIAL,
jjg@612 3219 TreeInfo.diagnosticPositionFor(svuid, tree), "long.SVUID", c);
duke@1 3220
duke@1 3221 // check constant
duke@1 3222 else if (svuid.getConstValue() == null)
mcimadamore@795 3223 log.warning(LintCategory.SERIAL,
jjg@612 3224 TreeInfo.diagnosticPositionFor(svuid, tree), "constant.SVUID", c);
duke@1 3225 }
duke@1 3226
duke@1 3227 private Type capture(Type type) {
duke@1 3228 return types.capture(type);
duke@1 3229 }
jjg@308 3230
mcimadamore@676 3231 // <editor-fold desc="post-attribution visitor">
mcimadamore@676 3232
mcimadamore@676 3233 /**
mcimadamore@676 3234 * Handle missing types/symbols in an AST. This routine is useful when
mcimadamore@676 3235 * the compiler has encountered some errors (which might have ended up
mcimadamore@676 3236 * terminating attribution abruptly); if the compiler is used in fail-over
mcimadamore@676 3237 * mode (e.g. by an IDE) and the AST contains semantic errors, this routine
mcimadamore@676 3238 * prevents NPE to be progagated during subsequent compilation steps.
mcimadamore@676 3239 */
mcimadamore@676 3240 public void postAttr(Env<AttrContext> env) {
mcimadamore@676 3241 new PostAttrAnalyzer().scan(env.tree);
mcimadamore@676 3242 }
mcimadamore@676 3243
mcimadamore@676 3244 class PostAttrAnalyzer extends TreeScanner {
mcimadamore@676 3245
mcimadamore@676 3246 private void initTypeIfNeeded(JCTree that) {
mcimadamore@676 3247 if (that.type == null) {
mcimadamore@676 3248 that.type = syms.unknownType;
mcimadamore@676 3249 }
mcimadamore@676 3250 }
mcimadamore@676 3251
mcimadamore@676 3252 @Override
mcimadamore@676 3253 public void scan(JCTree tree) {
mcimadamore@676 3254 if (tree == null) return;
mcimadamore@676 3255 if (tree instanceof JCExpression) {
mcimadamore@676 3256 initTypeIfNeeded(tree);
mcimadamore@676 3257 }
mcimadamore@676 3258 super.scan(tree);
mcimadamore@676 3259 }
mcimadamore@676 3260
mcimadamore@676 3261 @Override
mcimadamore@676 3262 public void visitIdent(JCIdent that) {
mcimadamore@676 3263 if (that.sym == null) {
mcimadamore@676 3264 that.sym = syms.unknownSymbol;
mcimadamore@676 3265 }
mcimadamore@676 3266 }
mcimadamore@676 3267
mcimadamore@676 3268 @Override
mcimadamore@676 3269 public void visitSelect(JCFieldAccess that) {
mcimadamore@676 3270 if (that.sym == null) {
mcimadamore@676 3271 that.sym = syms.unknownSymbol;
mcimadamore@676 3272 }
mcimadamore@676 3273 super.visitSelect(that);
mcimadamore@676 3274 }
mcimadamore@676 3275
mcimadamore@676 3276 @Override
mcimadamore@676 3277 public void visitClassDef(JCClassDecl that) {
mcimadamore@676 3278 initTypeIfNeeded(that);
mcimadamore@676 3279 if (that.sym == null) {
mcimadamore@676 3280 that.sym = new ClassSymbol(0, that.name, that.type, syms.noSymbol);
mcimadamore@676 3281 }
mcimadamore@676 3282 super.visitClassDef(that);
mcimadamore@676 3283 }
mcimadamore@676 3284
mcimadamore@676 3285 @Override
mcimadamore@676 3286 public void visitMethodDef(JCMethodDecl that) {
mcimadamore@676 3287 initTypeIfNeeded(that);
mcimadamore@676 3288 if (that.sym == null) {
mcimadamore@676 3289 that.sym = new MethodSymbol(0, that.name, that.type, syms.noSymbol);
mcimadamore@676 3290 }
mcimadamore@676 3291 super.visitMethodDef(that);
mcimadamore@676 3292 }
mcimadamore@676 3293
mcimadamore@676 3294 @Override
mcimadamore@676 3295 public void visitVarDef(JCVariableDecl that) {
mcimadamore@676 3296 initTypeIfNeeded(that);
mcimadamore@676 3297 if (that.sym == null) {
mcimadamore@676 3298 that.sym = new VarSymbol(0, that.name, that.type, syms.noSymbol);
mcimadamore@676 3299 that.sym.adr = 0;
mcimadamore@676 3300 }
mcimadamore@676 3301 super.visitVarDef(that);
mcimadamore@676 3302 }
mcimadamore@676 3303
mcimadamore@676 3304 @Override
mcimadamore@676 3305 public void visitNewClass(JCNewClass that) {
mcimadamore@676 3306 if (that.constructor == null) {
mcimadamore@676 3307 that.constructor = new MethodSymbol(0, names.init, syms.unknownType, syms.noSymbol);
mcimadamore@676 3308 }
mcimadamore@676 3309 if (that.constructorType == null) {
mcimadamore@676 3310 that.constructorType = syms.unknownType;
mcimadamore@676 3311 }
mcimadamore@676 3312 super.visitNewClass(that);
mcimadamore@676 3313 }
mcimadamore@676 3314
mcimadamore@676 3315 @Override
jjg@1049 3316 public void visitAssignop(JCAssignOp that) {
jjg@1049 3317 if (that.operator == null)
jjg@1049 3318 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
jjg@1049 3319 super.visitAssignop(that);
jjg@1049 3320 }
jjg@1049 3321
jjg@1049 3322 @Override
mcimadamore@676 3323 public void visitBinary(JCBinary that) {
mcimadamore@676 3324 if (that.operator == null)
mcimadamore@676 3325 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
mcimadamore@676 3326 super.visitBinary(that);
mcimadamore@676 3327 }
mcimadamore@676 3328
mcimadamore@676 3329 @Override
mcimadamore@676 3330 public void visitUnary(JCUnary that) {
mcimadamore@676 3331 if (that.operator == null)
mcimadamore@676 3332 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
mcimadamore@676 3333 super.visitUnary(that);
mcimadamore@676 3334 }
mcimadamore@676 3335 }
mcimadamore@676 3336 // </editor-fold>
duke@1 3337 }

mercurial