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

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

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

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

duke@1 1 /*
ohair@554 2 * Copyright (c) 1999, 2009, 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
mcimadamore@634 28 import com.sun.source.tree.AssignmentTree;
duke@1 29 import java.util.*;
duke@1 30 import java.util.Set;
duke@1 31
duke@1 32 import com.sun.tools.javac.code.*;
duke@1 33 import com.sun.tools.javac.jvm.*;
duke@1 34 import com.sun.tools.javac.tree.*;
duke@1 35 import com.sun.tools.javac.util.*;
duke@1 36 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
duke@1 37 import com.sun.tools.javac.util.List;
duke@1 38
duke@1 39 import com.sun.tools.javac.tree.JCTree.*;
duke@1 40 import com.sun.tools.javac.code.Lint;
duke@1 41 import com.sun.tools.javac.code.Lint.LintCategory;
duke@1 42 import com.sun.tools.javac.code.Type.*;
duke@1 43 import com.sun.tools.javac.code.Symbol.*;
duke@1 44
duke@1 45 import static com.sun.tools.javac.code.Flags.*;
duke@1 46 import static com.sun.tools.javac.code.Kinds.*;
duke@1 47 import static com.sun.tools.javac.code.TypeTags.*;
duke@1 48
duke@1 49 /** Type checking helper class for the attribution phase.
duke@1 50 *
jjg@581 51 * <p><b>This is NOT part of any supported API.
jjg@581 52 * If you write code that depends on this, you do so at your own risk.
duke@1 53 * This code and its internal interfaces are subject to change or
duke@1 54 * deletion without notice.</b>
duke@1 55 */
duke@1 56 public class Check {
duke@1 57 protected static final Context.Key<Check> checkKey =
duke@1 58 new Context.Key<Check>();
duke@1 59
jjg@113 60 private final Names names;
duke@1 61 private final Log log;
duke@1 62 private final Symtab syms;
mcimadamore@690 63 private final Enter enter;
duke@1 64 private final Infer infer;
duke@1 65 private final Types types;
mcimadamore@89 66 private final JCDiagnostic.Factory diags;
duke@1 67 private final boolean skipAnnotations;
mcimadamore@359 68 private boolean warnOnSyntheticConflicts;
jjg@576 69 private boolean suppressAbortOnBadClassFile;
duke@1 70 private final TreeInfo treeinfo;
duke@1 71
duke@1 72 // The set of lint options currently in effect. It is initialized
duke@1 73 // from the context, and then is set/reset as needed by Attr as it
duke@1 74 // visits all the various parts of the trees during attribution.
duke@1 75 private Lint lint;
duke@1 76
duke@1 77 public static Check instance(Context context) {
duke@1 78 Check instance = context.get(checkKey);
duke@1 79 if (instance == null)
duke@1 80 instance = new Check(context);
duke@1 81 return instance;
duke@1 82 }
duke@1 83
duke@1 84 protected Check(Context context) {
duke@1 85 context.put(checkKey, this);
duke@1 86
jjg@113 87 names = Names.instance(context);
duke@1 88 log = Log.instance(context);
duke@1 89 syms = Symtab.instance(context);
mcimadamore@690 90 enter = Enter.instance(context);
duke@1 91 infer = Infer.instance(context);
duke@1 92 this.types = Types.instance(context);
mcimadamore@89 93 diags = JCDiagnostic.Factory.instance(context);
duke@1 94 Options options = Options.instance(context);
duke@1 95 lint = Lint.instance(context);
duke@1 96 treeinfo = TreeInfo.instance(context);
duke@1 97
duke@1 98 Source source = Source.instance(context);
duke@1 99 allowGenerics = source.allowGenerics();
duke@1 100 allowAnnotations = source.allowAnnotations();
jjg@398 101 allowCovariantReturns = source.allowCovariantReturns();
duke@1 102 complexInference = options.get("-complexinference") != null;
duke@1 103 skipAnnotations = options.get("skipAnnotations") != null;
mcimadamore@359 104 warnOnSyntheticConflicts = options.get("warnOnSyntheticConflicts") != null;
jjg@576 105 suppressAbortOnBadClassFile = options.get("suppressAbortOnBadClassFile") != null;
duke@1 106
jjg@398 107 Target target = Target.instance(context);
jjg@398 108 syntheticNameChar = target.syntheticNameChar();
jjg@398 109
duke@1 110 boolean verboseDeprecated = lint.isEnabled(LintCategory.DEPRECATION);
duke@1 111 boolean verboseUnchecked = lint.isEnabled(LintCategory.UNCHECKED);
mcimadamore@580 112 boolean verboseVarargs = lint.isEnabled(LintCategory.VARARGS);
jjg@377 113 boolean verboseSunApi = lint.isEnabled(LintCategory.SUNAPI);
jjg@60 114 boolean enforceMandatoryWarnings = source.enforceMandatoryWarnings();
duke@1 115
jjg@60 116 deprecationHandler = new MandatoryWarningHandler(log, verboseDeprecated,
jjg@612 117 enforceMandatoryWarnings, "deprecated", LintCategory.DEPRECATION);
jjg@60 118 uncheckedHandler = new MandatoryWarningHandler(log, verboseUnchecked,
jjg@612 119 enforceMandatoryWarnings, "unchecked", LintCategory.UNCHECKED);
mcimadamore@580 120 unsafeVarargsHandler = new MandatoryWarningHandler(log, verboseVarargs,
jjg@612 121 enforceMandatoryWarnings, "varargs", LintCategory.VARARGS);
jjg@377 122 sunApiHandler = new MandatoryWarningHandler(log, verboseSunApi,
jjg@612 123 enforceMandatoryWarnings, "sunapi", null);
duke@1 124 }
duke@1 125
duke@1 126 /** Switch: generics enabled?
duke@1 127 */
duke@1 128 boolean allowGenerics;
duke@1 129
duke@1 130 /** Switch: annotations enabled?
duke@1 131 */
duke@1 132 boolean allowAnnotations;
duke@1 133
jjg@398 134 /** Switch: covariant returns enabled?
jjg@398 135 */
jjg@398 136 boolean allowCovariantReturns;
jjg@398 137
duke@1 138 /** Switch: -complexinference option set?
duke@1 139 */
duke@1 140 boolean complexInference;
duke@1 141
jjg@398 142 /** Character for synthetic names
jjg@398 143 */
jjg@398 144 char syntheticNameChar;
jjg@398 145
duke@1 146 /** A table mapping flat names of all compiled classes in this run to their
duke@1 147 * symbols; maintained from outside.
duke@1 148 */
duke@1 149 public Map<Name,ClassSymbol> compiled = new HashMap<Name, ClassSymbol>();
duke@1 150
duke@1 151 /** A handler for messages about deprecated usage.
duke@1 152 */
duke@1 153 private MandatoryWarningHandler deprecationHandler;
duke@1 154
duke@1 155 /** A handler for messages about unchecked or unsafe usage.
duke@1 156 */
duke@1 157 private MandatoryWarningHandler uncheckedHandler;
duke@1 158
mcimadamore@580 159 /** A handler for messages about unchecked or unsafe vararg method decl.
mcimadamore@580 160 */
mcimadamore@580 161 private MandatoryWarningHandler unsafeVarargsHandler;
mcimadamore@580 162
jjg@582 163 /** A handler for messages about using proprietary API.
jjg@377 164 */
jjg@377 165 private MandatoryWarningHandler sunApiHandler;
duke@1 166
duke@1 167 /* *************************************************************************
duke@1 168 * Errors and Warnings
duke@1 169 **************************************************************************/
duke@1 170
duke@1 171 Lint setLint(Lint newLint) {
duke@1 172 Lint prev = lint;
duke@1 173 lint = newLint;
duke@1 174 return prev;
duke@1 175 }
duke@1 176
duke@1 177 /** Warn about deprecated symbol.
duke@1 178 * @param pos Position to be used for error reporting.
duke@1 179 * @param sym The deprecated symbol.
duke@1 180 */
duke@1 181 void warnDeprecated(DiagnosticPosition pos, Symbol sym) {
duke@1 182 if (!lint.isSuppressed(LintCategory.DEPRECATION))
duke@1 183 deprecationHandler.report(pos, "has.been.deprecated", sym, sym.location());
duke@1 184 }
duke@1 185
duke@1 186 /** Warn about unchecked operation.
duke@1 187 * @param pos Position to be used for error reporting.
duke@1 188 * @param msg A string describing the problem.
duke@1 189 */
duke@1 190 public void warnUnchecked(DiagnosticPosition pos, String msg, Object... args) {
duke@1 191 if (!lint.isSuppressed(LintCategory.UNCHECKED))
duke@1 192 uncheckedHandler.report(pos, msg, args);
duke@1 193 }
duke@1 194
mcimadamore@580 195 /** Warn about unsafe vararg method decl.
mcimadamore@580 196 * @param pos Position to be used for error reporting.
mcimadamore@580 197 * @param sym The deprecated symbol.
mcimadamore@580 198 */
mcimadamore@580 199 void warnUnsafeVararg(DiagnosticPosition pos, Type elemType) {
mcimadamore@580 200 if (!lint.isSuppressed(LintCategory.VARARGS))
mcimadamore@580 201 unsafeVarargsHandler.report(pos, "varargs.non.reifiable.type", elemType);
mcimadamore@580 202 }
mcimadamore@580 203
jjg@582 204 /** Warn about using proprietary API.
jjg@377 205 * @param pos Position to be used for error reporting.
jjg@377 206 * @param msg A string describing the problem.
jjg@377 207 */
jjg@377 208 public void warnSunApi(DiagnosticPosition pos, String msg, Object... args) {
jjg@377 209 if (!lint.isSuppressed(LintCategory.SUNAPI))
jjg@377 210 sunApiHandler.report(pos, msg, args);
jjg@377 211 }
jjg@377 212
jjg@505 213 public void warnStatic(DiagnosticPosition pos, String msg, Object... args) {
jjg@505 214 if (lint.isEnabled(LintCategory.STATIC))
jjg@612 215 log.warning(LintCategory.STATIC, pos, msg, args);
jjg@505 216 }
jjg@505 217
duke@1 218 /**
duke@1 219 * Report any deferred diagnostics.
duke@1 220 */
duke@1 221 public void reportDeferredDiagnostics() {
duke@1 222 deprecationHandler.reportDeferredDiagnostic();
duke@1 223 uncheckedHandler.reportDeferredDiagnostic();
mcimadamore@580 224 unsafeVarargsHandler.reportDeferredDiagnostic();
jjg@377 225 sunApiHandler.reportDeferredDiagnostic();
duke@1 226 }
duke@1 227
duke@1 228
duke@1 229 /** Report a failure to complete a class.
duke@1 230 * @param pos Position to be used for error reporting.
duke@1 231 * @param ex The failure to report.
duke@1 232 */
duke@1 233 public Type completionError(DiagnosticPosition pos, CompletionFailure ex) {
jjg@12 234 log.error(pos, "cant.access", ex.sym, ex.getDetailValue());
jjg@576 235 if (ex instanceof ClassReader.BadClassFile
jjg@576 236 && !suppressAbortOnBadClassFile) throw new Abort();
duke@1 237 else return syms.errType;
duke@1 238 }
duke@1 239
duke@1 240 /** Report a type error.
duke@1 241 * @param pos Position to be used for error reporting.
duke@1 242 * @param problem A string describing the error.
duke@1 243 * @param found The type that was found.
duke@1 244 * @param req The type that was required.
duke@1 245 */
duke@1 246 Type typeError(DiagnosticPosition pos, Object problem, Type found, Type req) {
duke@1 247 log.error(pos, "prob.found.req",
duke@1 248 problem, found, req);
jjg@110 249 return types.createErrorType(found);
duke@1 250 }
duke@1 251
duke@1 252 Type typeError(DiagnosticPosition pos, String problem, Type found, Type req, Object explanation) {
duke@1 253 log.error(pos, "prob.found.req.1", problem, found, req, explanation);
jjg@110 254 return types.createErrorType(found);
duke@1 255 }
duke@1 256
duke@1 257 /** Report an error that wrong type tag was found.
duke@1 258 * @param pos Position to be used for error reporting.
duke@1 259 * @param required An internationalized string describing the type tag
duke@1 260 * required.
duke@1 261 * @param found The type that was found.
duke@1 262 */
duke@1 263 Type typeTagError(DiagnosticPosition pos, Object required, Object found) {
jrose@267 264 // this error used to be raised by the parser,
jrose@267 265 // but has been delayed to this point:
jrose@267 266 if (found instanceof Type && ((Type)found).tag == VOID) {
jrose@267 267 log.error(pos, "illegal.start.of.type");
jrose@267 268 return syms.errType;
jrose@267 269 }
duke@1 270 log.error(pos, "type.found.req", found, required);
jjg@110 271 return types.createErrorType(found instanceof Type ? (Type)found : syms.errType);
duke@1 272 }
duke@1 273
duke@1 274 /** Report an error that symbol cannot be referenced before super
duke@1 275 * has been called.
duke@1 276 * @param pos Position to be used for error reporting.
duke@1 277 * @param sym The referenced symbol.
duke@1 278 */
duke@1 279 void earlyRefError(DiagnosticPosition pos, Symbol sym) {
duke@1 280 log.error(pos, "cant.ref.before.ctor.called", sym);
duke@1 281 }
duke@1 282
duke@1 283 /** Report duplicate declaration error.
duke@1 284 */
duke@1 285 void duplicateError(DiagnosticPosition pos, Symbol sym) {
duke@1 286 if (!sym.type.isErroneous()) {
duke@1 287 log.error(pos, "already.defined", sym, sym.location());
duke@1 288 }
duke@1 289 }
duke@1 290
duke@1 291 /** Report array/varargs duplicate declaration
duke@1 292 */
duke@1 293 void varargsDuplicateError(DiagnosticPosition pos, Symbol sym1, Symbol sym2) {
duke@1 294 if (!sym1.type.isErroneous() && !sym2.type.isErroneous()) {
duke@1 295 log.error(pos, "array.and.varargs", sym1, sym2, sym2.location());
duke@1 296 }
duke@1 297 }
duke@1 298
duke@1 299 /* ************************************************************************
duke@1 300 * duplicate declaration checking
duke@1 301 *************************************************************************/
duke@1 302
duke@1 303 /** Check that variable does not hide variable with same name in
duke@1 304 * immediately enclosing local scope.
duke@1 305 * @param pos Position for error reporting.
duke@1 306 * @param v The symbol.
duke@1 307 * @param s The scope.
duke@1 308 */
duke@1 309 void checkTransparentVar(DiagnosticPosition pos, VarSymbol v, Scope s) {
duke@1 310 if (s.next != null) {
duke@1 311 for (Scope.Entry e = s.next.lookup(v.name);
duke@1 312 e.scope != null && e.sym.owner == v.owner;
duke@1 313 e = e.next()) {
duke@1 314 if (e.sym.kind == VAR &&
duke@1 315 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
duke@1 316 v.name != names.error) {
duke@1 317 duplicateError(pos, e.sym);
duke@1 318 return;
duke@1 319 }
duke@1 320 }
duke@1 321 }
duke@1 322 }
duke@1 323
duke@1 324 /** Check that a class or interface does not hide a class or
duke@1 325 * interface with same name in immediately enclosing local scope.
duke@1 326 * @param pos Position for error reporting.
duke@1 327 * @param c The symbol.
duke@1 328 * @param s The scope.
duke@1 329 */
duke@1 330 void checkTransparentClass(DiagnosticPosition pos, ClassSymbol c, Scope s) {
duke@1 331 if (s.next != null) {
duke@1 332 for (Scope.Entry e = s.next.lookup(c.name);
duke@1 333 e.scope != null && e.sym.owner == c.owner;
duke@1 334 e = e.next()) {
mcimadamore@639 335 if (e.sym.kind == TYP && e.sym.type.tag != TYPEVAR &&
duke@1 336 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
duke@1 337 c.name != names.error) {
duke@1 338 duplicateError(pos, e.sym);
duke@1 339 return;
duke@1 340 }
duke@1 341 }
duke@1 342 }
duke@1 343 }
duke@1 344
duke@1 345 /** Check that class does not have the same name as one of
duke@1 346 * its enclosing classes, or as a class defined in its enclosing scope.
duke@1 347 * return true if class is unique in its enclosing scope.
duke@1 348 * @param pos Position for error reporting.
duke@1 349 * @param name The class name.
duke@1 350 * @param s The enclosing scope.
duke@1 351 */
duke@1 352 boolean checkUniqueClassName(DiagnosticPosition pos, Name name, Scope s) {
duke@1 353 for (Scope.Entry e = s.lookup(name); e.scope == s; e = e.next()) {
duke@1 354 if (e.sym.kind == TYP && e.sym.name != names.error) {
duke@1 355 duplicateError(pos, e.sym);
duke@1 356 return false;
duke@1 357 }
duke@1 358 }
duke@1 359 for (Symbol sym = s.owner; sym != null; sym = sym.owner) {
duke@1 360 if (sym.kind == TYP && sym.name == name && sym.name != names.error) {
duke@1 361 duplicateError(pos, sym);
duke@1 362 return true;
duke@1 363 }
duke@1 364 }
duke@1 365 return true;
duke@1 366 }
duke@1 367
duke@1 368 /* *************************************************************************
duke@1 369 * Class name generation
duke@1 370 **************************************************************************/
duke@1 371
duke@1 372 /** Return name of local class.
duke@1 373 * This is of the form <enclClass> $ n <classname>
duke@1 374 * where
duke@1 375 * enclClass is the flat name of the enclosing class,
duke@1 376 * classname is the simple name of the local class
duke@1 377 */
duke@1 378 Name localClassName(ClassSymbol c) {
duke@1 379 for (int i=1; ; i++) {
duke@1 380 Name flatname = names.
duke@1 381 fromString("" + c.owner.enclClass().flatname +
jjg@398 382 syntheticNameChar + i +
duke@1 383 c.name);
duke@1 384 if (compiled.get(flatname) == null) return flatname;
duke@1 385 }
duke@1 386 }
duke@1 387
duke@1 388 /* *************************************************************************
duke@1 389 * Type Checking
duke@1 390 **************************************************************************/
duke@1 391
duke@1 392 /** Check that a given type is assignable to a given proto-type.
duke@1 393 * If it is, return the type, otherwise return errType.
duke@1 394 * @param pos Position to be used for error reporting.
duke@1 395 * @param found The type that was found.
duke@1 396 * @param req The type that was required.
duke@1 397 */
duke@1 398 Type checkType(DiagnosticPosition pos, Type found, Type req) {
darcy@609 399 return checkType(pos, found, req, "incompatible.types");
darcy@609 400 }
darcy@609 401
darcy@609 402 Type checkType(DiagnosticPosition pos, Type found, Type req, String errKey) {
duke@1 403 if (req.tag == ERROR)
duke@1 404 return req;
mcimadamore@536 405 if (found.tag == FORALL)
mcimadamore@536 406 return instantiatePoly(pos, (ForAll)found, req, convertWarner(pos, found, req));
duke@1 407 if (req.tag == NONE)
duke@1 408 return found;
duke@1 409 if (types.isAssignable(found, req, convertWarner(pos, found, req)))
duke@1 410 return found;
duke@1 411 if (found.tag <= DOUBLE && req.tag <= DOUBLE)
mcimadamore@89 412 return typeError(pos, diags.fragment("possible.loss.of.precision"), found, req);
duke@1 413 if (found.isSuperBound()) {
duke@1 414 log.error(pos, "assignment.from.super-bound", found);
jjg@110 415 return types.createErrorType(found);
duke@1 416 }
duke@1 417 if (req.isExtendsBound()) {
duke@1 418 log.error(pos, "assignment.to.extends-bound", req);
jjg@110 419 return types.createErrorType(found);
duke@1 420 }
darcy@609 421 return typeError(pos, diags.fragment(errKey), found, req);
duke@1 422 }
duke@1 423
duke@1 424 /** Instantiate polymorphic type to some prototype, unless
duke@1 425 * prototype is `anyPoly' in which case polymorphic type
duke@1 426 * is returned unchanged.
duke@1 427 */
mcimadamore@383 428 Type instantiatePoly(DiagnosticPosition pos, ForAll t, Type pt, Warner warn) throws Infer.NoInstanceException {
duke@1 429 if (pt == Infer.anyPoly && complexInference) {
duke@1 430 return t;
duke@1 431 } else if (pt == Infer.anyPoly || pt.tag == NONE) {
duke@1 432 Type newpt = t.qtype.tag <= VOID ? t.qtype : syms.objectType;
duke@1 433 return instantiatePoly(pos, t, newpt, warn);
duke@1 434 } else if (pt.tag == ERROR) {
duke@1 435 return pt;
duke@1 436 } else {
mcimadamore@536 437 try {
mcimadamore@536 438 return infer.instantiateExpr(t, pt, warn);
mcimadamore@536 439 } catch (Infer.NoInstanceException ex) {
mcimadamore@536 440 if (ex.isAmbiguous) {
mcimadamore@536 441 JCDiagnostic d = ex.getDiagnostic();
mcimadamore@536 442 log.error(pos,
mcimadamore@536 443 "undetermined.type" + (d!=null ? ".1" : ""),
mcimadamore@536 444 t, d);
mcimadamore@536 445 return types.createErrorType(pt);
mcimadamore@536 446 } else {
mcimadamore@536 447 JCDiagnostic d = ex.getDiagnostic();
mcimadamore@536 448 return typeError(pos,
mcimadamore@536 449 diags.fragment("incompatible.types" + (d!=null ? ".1" : ""), d),
mcimadamore@536 450 t, pt);
mcimadamore@536 451 }
mcimadamore@536 452 } catch (Infer.InvalidInstanceException ex) {
mcimadamore@536 453 JCDiagnostic d = ex.getDiagnostic();
mcimadamore@536 454 log.error(pos, "invalid.inferred.types", t.tvars, d);
mcimadamore@536 455 return types.createErrorType(pt);
mcimadamore@536 456 }
duke@1 457 }
mcimadamore@536 458 }
duke@1 459
duke@1 460 /** Check that a given type can be cast to a given target type.
duke@1 461 * Return the result of the cast.
duke@1 462 * @param pos Position to be used for error reporting.
duke@1 463 * @param found The type that is being cast.
duke@1 464 * @param req The target type of the cast.
duke@1 465 */
duke@1 466 Type checkCastable(DiagnosticPosition pos, Type found, Type req) {
duke@1 467 if (found.tag == FORALL) {
duke@1 468 instantiatePoly(pos, (ForAll) found, req, castWarner(pos, found, req));
duke@1 469 return req;
duke@1 470 } else if (types.isCastable(found, req, castWarner(pos, found, req))) {
duke@1 471 return req;
duke@1 472 } else {
duke@1 473 return typeError(pos,
mcimadamore@89 474 diags.fragment("inconvertible.types"),
duke@1 475 found, req);
duke@1 476 }
duke@1 477 }
duke@1 478 //where
duke@1 479 /** Is type a type variable, or a (possibly multi-dimensional) array of
duke@1 480 * type variables?
duke@1 481 */
duke@1 482 boolean isTypeVar(Type t) {
duke@1 483 return t.tag == TYPEVAR || t.tag == ARRAY && isTypeVar(types.elemtype(t));
duke@1 484 }
duke@1 485
duke@1 486 /** Check that a type is within some bounds.
duke@1 487 *
duke@1 488 * Used in TypeApply to verify that, e.g., X in V<X> is a valid
duke@1 489 * type argument.
duke@1 490 * @param pos Position to be used for error reporting.
duke@1 491 * @param a The type that should be bounded by bs.
duke@1 492 * @param bs The bound.
duke@1 493 */
duke@1 494 private void checkExtends(DiagnosticPosition pos, Type a, TypeVar bs) {
mcimadamore@154 495 if (a.isUnbound()) {
mcimadamore@154 496 return;
mcimadamore@154 497 } else if (a.tag != WILDCARD) {
mcimadamore@154 498 a = types.upperBound(a);
mcimadamore@154 499 for (List<Type> l = types.getBounds(bs); l.nonEmpty(); l = l.tail) {
mcimadamore@154 500 if (!types.isSubtype(a, l.head)) {
mcimadamore@154 501 log.error(pos, "not.within.bounds", a);
mcimadamore@154 502 return;
mcimadamore@154 503 }
mcimadamore@154 504 }
mcimadamore@154 505 } else if (a.isExtendsBound()) {
mcimadamore@154 506 if (!types.isCastable(bs.getUpperBound(), types.upperBound(a), Warner.noWarnings))
mcimadamore@154 507 log.error(pos, "not.within.bounds", a);
mcimadamore@154 508 } else if (a.isSuperBound()) {
mcimadamore@154 509 if (types.notSoftSubtype(types.lowerBound(a), bs.getUpperBound()))
mcimadamore@154 510 log.error(pos, "not.within.bounds", a);
mcimadamore@154 511 }
mcimadamore@154 512 }
mcimadamore@154 513
mcimadamore@154 514 /** Check that a type is within some bounds.
mcimadamore@154 515 *
mcimadamore@154 516 * Used in TypeApply to verify that, e.g., X in V<X> is a valid
mcimadamore@154 517 * type argument.
mcimadamore@154 518 * @param pos Position to be used for error reporting.
mcimadamore@154 519 * @param a The type that should be bounded by bs.
mcimadamore@154 520 * @param bs The bound.
mcimadamore@154 521 */
mcimadamore@154 522 private void checkCapture(JCTypeApply tree) {
mcimadamore@154 523 List<JCExpression> args = tree.getTypeArguments();
mcimadamore@154 524 for (Type arg : types.capture(tree.type).getTypeArguments()) {
mcimadamore@154 525 if (arg.tag == TYPEVAR && arg.getUpperBound().isErroneous()) {
mcimadamore@154 526 log.error(args.head.pos, "not.within.bounds", args.head.type);
mcimadamore@154 527 break;
mcimadamore@79 528 }
mcimadamore@154 529 args = args.tail;
mcimadamore@79 530 }
mcimadamore@154 531 }
duke@1 532
duke@1 533 /** Check that type is different from 'void'.
duke@1 534 * @param pos Position to be used for error reporting.
duke@1 535 * @param t The type to be checked.
duke@1 536 */
duke@1 537 Type checkNonVoid(DiagnosticPosition pos, Type t) {
duke@1 538 if (t.tag == VOID) {
duke@1 539 log.error(pos, "void.not.allowed.here");
jjg@110 540 return types.createErrorType(t);
duke@1 541 } else {
duke@1 542 return t;
duke@1 543 }
duke@1 544 }
duke@1 545
duke@1 546 /** Check that type is a class or interface type.
duke@1 547 * @param pos Position to be used for error reporting.
duke@1 548 * @param t The type to be checked.
duke@1 549 */
duke@1 550 Type checkClassType(DiagnosticPosition pos, Type t) {
duke@1 551 if (t.tag != CLASS && t.tag != ERROR)
duke@1 552 return typeTagError(pos,
mcimadamore@89 553 diags.fragment("type.req.class"),
duke@1 554 (t.tag == TYPEVAR)
mcimadamore@89 555 ? diags.fragment("type.parameter", t)
duke@1 556 : t);
duke@1 557 else
duke@1 558 return t;
duke@1 559 }
duke@1 560
duke@1 561 /** Check that type is a class or interface type.
duke@1 562 * @param pos Position to be used for error reporting.
duke@1 563 * @param t The type to be checked.
duke@1 564 * @param noBounds True if type bounds are illegal here.
duke@1 565 */
duke@1 566 Type checkClassType(DiagnosticPosition pos, Type t, boolean noBounds) {
duke@1 567 t = checkClassType(pos, t);
duke@1 568 if (noBounds && t.isParameterized()) {
duke@1 569 List<Type> args = t.getTypeArguments();
duke@1 570 while (args.nonEmpty()) {
duke@1 571 if (args.head.tag == WILDCARD)
duke@1 572 return typeTagError(pos,
jjg@598 573 diags.fragment("type.req.exact"),
duke@1 574 args.head);
duke@1 575 args = args.tail;
duke@1 576 }
duke@1 577 }
duke@1 578 return t;
duke@1 579 }
duke@1 580
duke@1 581 /** Check that type is a reifiable class, interface or array type.
duke@1 582 * @param pos Position to be used for error reporting.
duke@1 583 * @param t The type to be checked.
duke@1 584 */
duke@1 585 Type checkReifiableReferenceType(DiagnosticPosition pos, Type t) {
duke@1 586 if (t.tag != CLASS && t.tag != ARRAY && t.tag != ERROR) {
duke@1 587 return typeTagError(pos,
mcimadamore@89 588 diags.fragment("type.req.class.array"),
duke@1 589 t);
duke@1 590 } else if (!types.isReifiable(t)) {
duke@1 591 log.error(pos, "illegal.generic.type.for.instof");
jjg@110 592 return types.createErrorType(t);
duke@1 593 } else {
duke@1 594 return t;
duke@1 595 }
duke@1 596 }
duke@1 597
duke@1 598 /** Check that type is a reference type, i.e. a class, interface or array type
duke@1 599 * or a type variable.
duke@1 600 * @param pos Position to be used for error reporting.
duke@1 601 * @param t The type to be checked.
duke@1 602 */
duke@1 603 Type checkRefType(DiagnosticPosition pos, Type t) {
duke@1 604 switch (t.tag) {
duke@1 605 case CLASS:
duke@1 606 case ARRAY:
duke@1 607 case TYPEVAR:
duke@1 608 case WILDCARD:
duke@1 609 case ERROR:
duke@1 610 return t;
duke@1 611 default:
duke@1 612 return typeTagError(pos,
mcimadamore@89 613 diags.fragment("type.req.ref"),
duke@1 614 t);
duke@1 615 }
duke@1 616 }
duke@1 617
jrose@267 618 /** Check that each type is a reference type, i.e. a class, interface or array type
jrose@267 619 * or a type variable.
jrose@267 620 * @param trees Original trees, used for error reporting.
jrose@267 621 * @param types The types to be checked.
jrose@267 622 */
jrose@267 623 List<Type> checkRefTypes(List<JCExpression> trees, List<Type> types) {
jrose@267 624 List<JCExpression> tl = trees;
jrose@267 625 for (List<Type> l = types; l.nonEmpty(); l = l.tail) {
jrose@267 626 l.head = checkRefType(tl.head.pos(), l.head);
jrose@267 627 tl = tl.tail;
jrose@267 628 }
jrose@267 629 return types;
jrose@267 630 }
jrose@267 631
duke@1 632 /** Check that type is a null or reference type.
duke@1 633 * @param pos Position to be used for error reporting.
duke@1 634 * @param t The type to be checked.
duke@1 635 */
duke@1 636 Type checkNullOrRefType(DiagnosticPosition pos, Type t) {
duke@1 637 switch (t.tag) {
duke@1 638 case CLASS:
duke@1 639 case ARRAY:
duke@1 640 case TYPEVAR:
duke@1 641 case WILDCARD:
duke@1 642 case BOT:
duke@1 643 case ERROR:
duke@1 644 return t;
duke@1 645 default:
duke@1 646 return typeTagError(pos,
mcimadamore@89 647 diags.fragment("type.req.ref"),
duke@1 648 t);
duke@1 649 }
duke@1 650 }
duke@1 651
duke@1 652 /** Check that flag set does not contain elements of two conflicting sets. s
duke@1 653 * Return true if it doesn't.
duke@1 654 * @param pos Position to be used for error reporting.
duke@1 655 * @param flags The set of flags to be checked.
duke@1 656 * @param set1 Conflicting flags set #1.
duke@1 657 * @param set2 Conflicting flags set #2.
duke@1 658 */
duke@1 659 boolean checkDisjoint(DiagnosticPosition pos, long flags, long set1, long set2) {
duke@1 660 if ((flags & set1) != 0 && (flags & set2) != 0) {
duke@1 661 log.error(pos,
duke@1 662 "illegal.combination.of.modifiers",
mcimadamore@80 663 asFlagSet(TreeInfo.firstFlag(flags & set1)),
mcimadamore@80 664 asFlagSet(TreeInfo.firstFlag(flags & set2)));
duke@1 665 return false;
duke@1 666 } else
duke@1 667 return true;
duke@1 668 }
duke@1 669
mcimadamore@537 670 /** Check that the type inferred using the diamond operator does not contain
mcimadamore@537 671 * non-denotable types such as captured types or intersection types.
mcimadamore@537 672 * @param t the type inferred using the diamond operator
mcimadamore@537 673 */
mcimadamore@537 674 List<Type> checkDiamond(ClassType t) {
mcimadamore@537 675 DiamondTypeChecker dtc = new DiamondTypeChecker();
mcimadamore@537 676 ListBuffer<Type> buf = ListBuffer.lb();
mcimadamore@537 677 for (Type arg : t.getTypeArguments()) {
mcimadamore@537 678 if (!dtc.visit(arg, null)) {
mcimadamore@537 679 buf.append(arg);
mcimadamore@537 680 }
mcimadamore@537 681 }
mcimadamore@537 682 return buf.toList();
mcimadamore@537 683 }
mcimadamore@537 684
mcimadamore@537 685 static class DiamondTypeChecker extends Types.SimpleVisitor<Boolean, Void> {
mcimadamore@537 686 public Boolean visitType(Type t, Void s) {
mcimadamore@537 687 return true;
mcimadamore@537 688 }
mcimadamore@537 689 @Override
mcimadamore@537 690 public Boolean visitClassType(ClassType t, Void s) {
mcimadamore@537 691 if (t.isCompound()) {
mcimadamore@537 692 return false;
mcimadamore@537 693 }
mcimadamore@537 694 for (Type targ : t.getTypeArguments()) {
mcimadamore@537 695 if (!visit(targ, s)) {
mcimadamore@537 696 return false;
mcimadamore@537 697 }
mcimadamore@537 698 }
mcimadamore@537 699 return true;
mcimadamore@537 700 }
mcimadamore@537 701 @Override
mcimadamore@537 702 public Boolean visitCapturedType(CapturedType t, Void s) {
mcimadamore@537 703 return false;
mcimadamore@537 704 }
mcimadamore@537 705 }
mcimadamore@537 706
mcimadamore@580 707 void checkVarargMethodDecl(JCMethodDecl tree) {
mcimadamore@580 708 MethodSymbol m = tree.sym;
mcimadamore@580 709 //check the element type of the vararg
mcimadamore@580 710 if (m.isVarArgs()) {
mcimadamore@580 711 Type varargElemType = types.elemtype(tree.params.last().type);
mcimadamore@580 712 if (!types.isReifiable(varargElemType)) {
mcimadamore@580 713 warnUnsafeVararg(tree.params.head.pos(), varargElemType);
mcimadamore@580 714 }
mcimadamore@580 715 }
mcimadamore@580 716 }
mcimadamore@580 717
mcimadamore@547 718 /**
mcimadamore@547 719 * Check that vararg method call is sound
mcimadamore@547 720 * @param pos Position to be used for error reporting.
mcimadamore@547 721 * @param argtypes Actual arguments supplied to vararg method.
mcimadamore@547 722 */
mcimadamore@580 723 void checkVararg(DiagnosticPosition pos, List<Type> argtypes, Symbol msym, Env<AttrContext> env) {
mcimadamore@580 724 Env<AttrContext> calleeLintEnv = env;
mcimadamore@580 725 while (calleeLintEnv.info.lint == null)
mcimadamore@580 726 calleeLintEnv = calleeLintEnv.next;
mcimadamore@580 727 Lint calleeLint = calleeLintEnv.info.lint.augment(msym.attributes_field, msym.flags());
mcimadamore@547 728 Type argtype = argtypes.last();
mcimadamore@580 729 if (!types.isReifiable(argtype) && !calleeLint.isSuppressed(Lint.LintCategory.VARARGS)) {
mcimadamore@547 730 warnUnchecked(pos,
mcimadamore@547 731 "unchecked.generic.array.creation",
mcimadamore@547 732 argtype);
mcimadamore@580 733 }
mcimadamore@547 734 }
mcimadamore@547 735
duke@1 736 /** Check that given modifiers are legal for given symbol and
duke@1 737 * return modifiers together with any implicit modififiers for that symbol.
duke@1 738 * Warning: we can't use flags() here since this method
duke@1 739 * is called during class enter, when flags() would cause a premature
duke@1 740 * completion.
duke@1 741 * @param pos Position to be used for error reporting.
duke@1 742 * @param flags The set of modifiers given in a definition.
duke@1 743 * @param sym The defined symbol.
duke@1 744 */
duke@1 745 long checkFlags(DiagnosticPosition pos, long flags, Symbol sym, JCTree tree) {
duke@1 746 long mask;
duke@1 747 long implicit = 0;
duke@1 748 switch (sym.kind) {
duke@1 749 case VAR:
duke@1 750 if (sym.owner.kind != TYP)
duke@1 751 mask = LocalVarFlags;
duke@1 752 else if ((sym.owner.flags_field & INTERFACE) != 0)
duke@1 753 mask = implicit = InterfaceVarFlags;
duke@1 754 else
duke@1 755 mask = VarFlags;
duke@1 756 break;
duke@1 757 case MTH:
duke@1 758 if (sym.name == names.init) {
duke@1 759 if ((sym.owner.flags_field & ENUM) != 0) {
duke@1 760 // enum constructors cannot be declared public or
duke@1 761 // protected and must be implicitly or explicitly
duke@1 762 // private
duke@1 763 implicit = PRIVATE;
duke@1 764 mask = PRIVATE;
duke@1 765 } else
duke@1 766 mask = ConstructorFlags;
duke@1 767 } else if ((sym.owner.flags_field & INTERFACE) != 0)
duke@1 768 mask = implicit = InterfaceMethodFlags;
duke@1 769 else {
duke@1 770 mask = MethodFlags;
duke@1 771 }
duke@1 772 // Imply STRICTFP if owner has STRICTFP set.
duke@1 773 if (((flags|implicit) & Flags.ABSTRACT) == 0)
duke@1 774 implicit |= sym.owner.flags_field & STRICTFP;
duke@1 775 break;
duke@1 776 case TYP:
duke@1 777 if (sym.isLocal()) {
duke@1 778 mask = LocalClassFlags;
jjg@113 779 if (sym.name.isEmpty()) { // Anonymous class
duke@1 780 // Anonymous classes in static methods are themselves static;
duke@1 781 // that's why we admit STATIC here.
duke@1 782 mask |= STATIC;
duke@1 783 // JLS: Anonymous classes are final.
duke@1 784 implicit |= FINAL;
duke@1 785 }
duke@1 786 if ((sym.owner.flags_field & STATIC) == 0 &&
duke@1 787 (flags & ENUM) != 0)
duke@1 788 log.error(pos, "enums.must.be.static");
duke@1 789 } else if (sym.owner.kind == TYP) {
duke@1 790 mask = MemberClassFlags;
duke@1 791 if (sym.owner.owner.kind == PCK ||
duke@1 792 (sym.owner.flags_field & STATIC) != 0)
duke@1 793 mask |= STATIC;
duke@1 794 else if ((flags & ENUM) != 0)
duke@1 795 log.error(pos, "enums.must.be.static");
duke@1 796 // Nested interfaces and enums are always STATIC (Spec ???)
duke@1 797 if ((flags & (INTERFACE | ENUM)) != 0 ) implicit = STATIC;
duke@1 798 } else {
duke@1 799 mask = ClassFlags;
duke@1 800 }
duke@1 801 // Interfaces are always ABSTRACT
duke@1 802 if ((flags & INTERFACE) != 0) implicit |= ABSTRACT;
duke@1 803
duke@1 804 if ((flags & ENUM) != 0) {
duke@1 805 // enums can't be declared abstract or final
duke@1 806 mask &= ~(ABSTRACT | FINAL);
duke@1 807 implicit |= implicitEnumFinalFlag(tree);
duke@1 808 }
duke@1 809 // Imply STRICTFP if owner has STRICTFP set.
duke@1 810 implicit |= sym.owner.flags_field & STRICTFP;
duke@1 811 break;
duke@1 812 default:
duke@1 813 throw new AssertionError();
duke@1 814 }
duke@1 815 long illegal = flags & StandardFlags & ~mask;
duke@1 816 if (illegal != 0) {
duke@1 817 if ((illegal & INTERFACE) != 0) {
duke@1 818 log.error(pos, "intf.not.allowed.here");
duke@1 819 mask |= INTERFACE;
duke@1 820 }
duke@1 821 else {
duke@1 822 log.error(pos,
mcimadamore@80 823 "mod.not.allowed.here", asFlagSet(illegal));
duke@1 824 }
duke@1 825 }
duke@1 826 else if ((sym.kind == TYP ||
duke@1 827 // ISSUE: Disallowing abstract&private is no longer appropriate
duke@1 828 // in the presence of inner classes. Should it be deleted here?
duke@1 829 checkDisjoint(pos, flags,
duke@1 830 ABSTRACT,
duke@1 831 PRIVATE | STATIC))
duke@1 832 &&
duke@1 833 checkDisjoint(pos, flags,
duke@1 834 ABSTRACT | INTERFACE,
duke@1 835 FINAL | NATIVE | SYNCHRONIZED)
duke@1 836 &&
duke@1 837 checkDisjoint(pos, flags,
duke@1 838 PUBLIC,
duke@1 839 PRIVATE | PROTECTED)
duke@1 840 &&
duke@1 841 checkDisjoint(pos, flags,
duke@1 842 PRIVATE,
duke@1 843 PUBLIC | PROTECTED)
duke@1 844 &&
duke@1 845 checkDisjoint(pos, flags,
duke@1 846 FINAL,
duke@1 847 VOLATILE)
duke@1 848 &&
duke@1 849 (sym.kind == TYP ||
duke@1 850 checkDisjoint(pos, flags,
duke@1 851 ABSTRACT | NATIVE,
duke@1 852 STRICTFP))) {
duke@1 853 // skip
duke@1 854 }
duke@1 855 return flags & (mask | ~StandardFlags) | implicit;
duke@1 856 }
duke@1 857
duke@1 858
duke@1 859 /** Determine if this enum should be implicitly final.
duke@1 860 *
duke@1 861 * If the enum has no specialized enum contants, it is final.
duke@1 862 *
duke@1 863 * If the enum does have specialized enum contants, it is
duke@1 864 * <i>not</i> final.
duke@1 865 */
duke@1 866 private long implicitEnumFinalFlag(JCTree tree) {
duke@1 867 if (tree.getTag() != JCTree.CLASSDEF) return 0;
duke@1 868 class SpecialTreeVisitor extends JCTree.Visitor {
duke@1 869 boolean specialized;
duke@1 870 SpecialTreeVisitor() {
duke@1 871 this.specialized = false;
duke@1 872 };
duke@1 873
jjg@398 874 @Override
duke@1 875 public void visitTree(JCTree tree) { /* no-op */ }
duke@1 876
jjg@398 877 @Override
duke@1 878 public void visitVarDef(JCVariableDecl tree) {
duke@1 879 if ((tree.mods.flags & ENUM) != 0) {
duke@1 880 if (tree.init instanceof JCNewClass &&
duke@1 881 ((JCNewClass) tree.init).def != null) {
duke@1 882 specialized = true;
duke@1 883 }
duke@1 884 }
duke@1 885 }
duke@1 886 }
duke@1 887
duke@1 888 SpecialTreeVisitor sts = new SpecialTreeVisitor();
duke@1 889 JCClassDecl cdef = (JCClassDecl) tree;
duke@1 890 for (JCTree defs: cdef.defs) {
duke@1 891 defs.accept(sts);
duke@1 892 if (sts.specialized) return 0;
duke@1 893 }
duke@1 894 return FINAL;
duke@1 895 }
duke@1 896
duke@1 897 /* *************************************************************************
duke@1 898 * Type Validation
duke@1 899 **************************************************************************/
duke@1 900
duke@1 901 /** Validate a type expression. That is,
duke@1 902 * check that all type arguments of a parametric type are within
duke@1 903 * their bounds. This must be done in a second phase after type attributon
duke@1 904 * since a class might have a subclass as type parameter bound. E.g:
duke@1 905 *
duke@1 906 * class B<A extends C> { ... }
duke@1 907 * class C extends B<C> { ... }
duke@1 908 *
duke@1 909 * and we can't make sure that the bound is already attributed because
duke@1 910 * of possible cycles.
mcimadamore@638 911 *
mcimadamore@638 912 * Visitor method: Validate a type expression, if it is not null, catching
duke@1 913 * and reporting any completion failures.
duke@1 914 */
mcimadamore@122 915 void validate(JCTree tree, Env<AttrContext> env) {
mcimadamore@638 916 validate(tree, env, true);
duke@1 917 }
mcimadamore@638 918 void validate(JCTree tree, Env<AttrContext> env, boolean checkRaw) {
mcimadamore@638 919 new Validator(env).validateTree(tree, checkRaw, true);
mcimadamore@122 920 }
duke@1 921
duke@1 922 /** Visitor method: Validate a list of type expressions.
duke@1 923 */
mcimadamore@122 924 void validate(List<? extends JCTree> trees, Env<AttrContext> env) {
duke@1 925 for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
mcimadamore@122 926 validate(l.head, env);
duke@1 927 }
duke@1 928
duke@1 929 /** A visitor class for type validation.
duke@1 930 */
duke@1 931 class Validator extends JCTree.Visitor {
duke@1 932
mcimadamore@638 933 boolean isOuter;
mcimadamore@638 934 Env<AttrContext> env;
mcimadamore@638 935
mcimadamore@638 936 Validator(Env<AttrContext> env) {
mcimadamore@638 937 this.env = env;
mcimadamore@638 938 }
mcimadamore@638 939
jjg@398 940 @Override
duke@1 941 public void visitTypeArray(JCArrayTypeTree tree) {
mcimadamore@638 942 tree.elemtype.accept(this);
duke@1 943 }
duke@1 944
jjg@398 945 @Override
duke@1 946 public void visitTypeApply(JCTypeApply tree) {
duke@1 947 if (tree.type.tag == CLASS) {
mcimadamore@158 948 List<Type> formals = tree.type.tsym.type.allparams();
mcimadamore@158 949 List<Type> actuals = tree.type.allparams();
duke@1 950 List<JCExpression> args = tree.arguments;
mcimadamore@158 951 List<Type> forms = tree.type.tsym.type.getTypeArguments();
mcimadamore@561 952 ListBuffer<Type> tvars_buf = new ListBuffer<Type>();
duke@1 953
mcimadamore@638 954 boolean is_java_lang_Class = tree.type.tsym.flatName() == names.java_lang_Class;
mcimadamore@638 955
duke@1 956 // For matching pairs of actual argument types `a' and
duke@1 957 // formal type parameters with declared bound `b' ...
duke@1 958 while (args.nonEmpty() && forms.nonEmpty()) {
mcimadamore@638 959 validateTree(args.head,
mcimadamore@638 960 !(isOuter && is_java_lang_Class),
mcimadamore@638 961 false);
duke@1 962
duke@1 963 // exact type arguments needs to know their
duke@1 964 // bounds (for upper and lower bound
duke@1 965 // calculations). So we create new TypeVars with
duke@1 966 // bounds substed with actuals.
duke@1 967 tvars_buf.append(types.substBound(((TypeVar)forms.head),
duke@1 968 formals,
mcimadamore@78 969 actuals));
duke@1 970
duke@1 971 args = args.tail;
duke@1 972 forms = forms.tail;
duke@1 973 }
duke@1 974
duke@1 975 args = tree.arguments;
mcimadamore@154 976 List<Type> tvars_cap = types.substBounds(formals,
mcimadamore@154 977 formals,
mcimadamore@158 978 types.capture(tree.type).allparams());
mcimadamore@154 979 while (args.nonEmpty() && tvars_cap.nonEmpty()) {
mcimadamore@154 980 // Let the actual arguments know their bound
mcimadamore@154 981 args.head.type.withTypeVar((TypeVar)tvars_cap.head);
mcimadamore@154 982 args = args.tail;
mcimadamore@154 983 tvars_cap = tvars_cap.tail;
mcimadamore@154 984 }
mcimadamore@154 985
mcimadamore@154 986 args = tree.arguments;
mcimadamore@561 987 List<Type> tvars = tvars_buf.toList();
mcimadamore@154 988
duke@1 989 while (args.nonEmpty() && tvars.nonEmpty()) {
mcimadamore@561 990 Type actual = types.subst(args.head.type,
mcimadamore@561 991 tree.type.tsym.type.getTypeArguments(),
mcimadamore@561 992 tvars_buf.toList());
mcimadamore@154 993 checkExtends(args.head.pos(),
mcimadamore@561 994 actual,
mcimadamore@561 995 (TypeVar)tvars.head);
duke@1 996 args = args.tail;
duke@1 997 tvars = tvars.tail;
duke@1 998 }
duke@1 999
mcimadamore@154 1000 checkCapture(tree);
mcimadamore@536 1001
duke@1 1002 // Check that this type is either fully parameterized, or
duke@1 1003 // not parameterized at all.
duke@1 1004 if (tree.type.getEnclosingType().isRaw())
duke@1 1005 log.error(tree.pos(), "improperly.formed.type.inner.raw.param");
duke@1 1006 if (tree.clazz.getTag() == JCTree.SELECT)
duke@1 1007 visitSelectInternal((JCFieldAccess)tree.clazz);
duke@1 1008 }
duke@1 1009 }
duke@1 1010
jjg@398 1011 @Override
duke@1 1012 public void visitTypeParameter(JCTypeParameter tree) {
mcimadamore@638 1013 validateTrees(tree.bounds, true, isOuter);
duke@1 1014 checkClassBounds(tree.pos(), tree.type);
duke@1 1015 }
duke@1 1016
duke@1 1017 @Override
duke@1 1018 public void visitWildcard(JCWildcard tree) {
duke@1 1019 if (tree.inner != null)
mcimadamore@638 1020 validateTree(tree.inner, true, isOuter);
duke@1 1021 }
duke@1 1022
jjg@398 1023 @Override
duke@1 1024 public void visitSelect(JCFieldAccess tree) {
duke@1 1025 if (tree.type.tag == CLASS) {
duke@1 1026 visitSelectInternal(tree);
duke@1 1027
duke@1 1028 // Check that this type is either fully parameterized, or
duke@1 1029 // not parameterized at all.
duke@1 1030 if (tree.selected.type.isParameterized() && tree.type.tsym.type.getTypeArguments().nonEmpty())
duke@1 1031 log.error(tree.pos(), "improperly.formed.type.param.missing");
duke@1 1032 }
duke@1 1033 }
duke@1 1034 public void visitSelectInternal(JCFieldAccess tree) {
mcimadamore@122 1035 if (tree.type.tsym.isStatic() &&
duke@1 1036 tree.selected.type.isParameterized()) {
duke@1 1037 // The enclosing type is not a class, so we are
duke@1 1038 // looking at a static member type. However, the
duke@1 1039 // qualifying expression is parameterized.
duke@1 1040 log.error(tree.pos(), "cant.select.static.class.from.param.type");
duke@1 1041 } else {
duke@1 1042 // otherwise validate the rest of the expression
mcimadamore@122 1043 tree.selected.accept(this);
duke@1 1044 }
duke@1 1045 }
duke@1 1046
jjg@398 1047 @Override
jjg@308 1048 public void visitAnnotatedType(JCAnnotatedType tree) {
jjg@308 1049 tree.underlyingType.accept(this);
jjg@308 1050 }
jjg@308 1051
duke@1 1052 /** Default visitor method: do nothing.
duke@1 1053 */
jjg@398 1054 @Override
duke@1 1055 public void visitTree(JCTree tree) {
duke@1 1056 }
mcimadamore@122 1057
mcimadamore@638 1058 public void validateTree(JCTree tree, boolean checkRaw, boolean isOuter) {
mcimadamore@638 1059 try {
mcimadamore@638 1060 if (tree != null) {
mcimadamore@638 1061 this.isOuter = isOuter;
mcimadamore@638 1062 tree.accept(this);
mcimadamore@638 1063 if (checkRaw)
mcimadamore@638 1064 checkRaw(tree, env);
mcimadamore@638 1065 }
mcimadamore@638 1066 } catch (CompletionFailure ex) {
mcimadamore@638 1067 completionError(tree.pos(), ex);
mcimadamore@638 1068 }
mcimadamore@638 1069 }
mcimadamore@638 1070
mcimadamore@638 1071 public void validateTrees(List<? extends JCTree> trees, boolean checkRaw, boolean isOuter) {
mcimadamore@638 1072 for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
mcimadamore@638 1073 validateTree(l.head, checkRaw, isOuter);
mcimadamore@638 1074 }
mcimadamore@638 1075
mcimadamore@638 1076 void checkRaw(JCTree tree, Env<AttrContext> env) {
mcimadamore@638 1077 if (lint.isEnabled(Lint.LintCategory.RAW) &&
mcimadamore@638 1078 tree.type.tag == CLASS &&
mcimadamore@638 1079 !TreeInfo.isDiamond(tree) &&
mcimadamore@638 1080 !env.enclClass.name.isEmpty() && //anonymous or intersection
mcimadamore@638 1081 tree.type.isRaw()) {
mcimadamore@638 1082 log.warning(Lint.LintCategory.RAW,
mcimadamore@638 1083 tree.pos(), "raw.class.use", tree.type, tree.type.tsym.type);
mcimadamore@638 1084 }
mcimadamore@638 1085 }
duke@1 1086 }
duke@1 1087
duke@1 1088 /* *************************************************************************
duke@1 1089 * Exception checking
duke@1 1090 **************************************************************************/
duke@1 1091
duke@1 1092 /* The following methods treat classes as sets that contain
duke@1 1093 * the class itself and all their subclasses
duke@1 1094 */
duke@1 1095
duke@1 1096 /** Is given type a subtype of some of the types in given list?
duke@1 1097 */
duke@1 1098 boolean subset(Type t, List<Type> ts) {
duke@1 1099 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
duke@1 1100 if (types.isSubtype(t, l.head)) return true;
duke@1 1101 return false;
duke@1 1102 }
duke@1 1103
duke@1 1104 /** Is given type a subtype or supertype of
duke@1 1105 * some of the types in given list?
duke@1 1106 */
duke@1 1107 boolean intersects(Type t, List<Type> ts) {
duke@1 1108 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
duke@1 1109 if (types.isSubtype(t, l.head) || types.isSubtype(l.head, t)) return true;
duke@1 1110 return false;
duke@1 1111 }
duke@1 1112
duke@1 1113 /** Add type set to given type list, unless it is a subclass of some class
duke@1 1114 * in the list.
duke@1 1115 */
duke@1 1116 List<Type> incl(Type t, List<Type> ts) {
duke@1 1117 return subset(t, ts) ? ts : excl(t, ts).prepend(t);
duke@1 1118 }
duke@1 1119
duke@1 1120 /** Remove type set from type set list.
duke@1 1121 */
duke@1 1122 List<Type> excl(Type t, List<Type> ts) {
duke@1 1123 if (ts.isEmpty()) {
duke@1 1124 return ts;
duke@1 1125 } else {
duke@1 1126 List<Type> ts1 = excl(t, ts.tail);
duke@1 1127 if (types.isSubtype(ts.head, t)) return ts1;
duke@1 1128 else if (ts1 == ts.tail) return ts;
duke@1 1129 else return ts1.prepend(ts.head);
duke@1 1130 }
duke@1 1131 }
duke@1 1132
duke@1 1133 /** Form the union of two type set lists.
duke@1 1134 */
duke@1 1135 List<Type> union(List<Type> ts1, List<Type> ts2) {
duke@1 1136 List<Type> ts = ts1;
duke@1 1137 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1138 ts = incl(l.head, ts);
duke@1 1139 return ts;
duke@1 1140 }
duke@1 1141
duke@1 1142 /** Form the difference of two type lists.
duke@1 1143 */
duke@1 1144 List<Type> diff(List<Type> ts1, List<Type> ts2) {
duke@1 1145 List<Type> ts = ts1;
duke@1 1146 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1147 ts = excl(l.head, ts);
duke@1 1148 return ts;
duke@1 1149 }
duke@1 1150
duke@1 1151 /** Form the intersection of two type lists.
duke@1 1152 */
duke@1 1153 public List<Type> intersect(List<Type> ts1, List<Type> ts2) {
duke@1 1154 List<Type> ts = List.nil();
duke@1 1155 for (List<Type> l = ts1; l.nonEmpty(); l = l.tail)
duke@1 1156 if (subset(l.head, ts2)) ts = incl(l.head, ts);
duke@1 1157 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1158 if (subset(l.head, ts1)) ts = incl(l.head, ts);
duke@1 1159 return ts;
duke@1 1160 }
duke@1 1161
duke@1 1162 /** Is exc an exception symbol that need not be declared?
duke@1 1163 */
duke@1 1164 boolean isUnchecked(ClassSymbol exc) {
duke@1 1165 return
duke@1 1166 exc.kind == ERR ||
duke@1 1167 exc.isSubClass(syms.errorType.tsym, types) ||
duke@1 1168 exc.isSubClass(syms.runtimeExceptionType.tsym, types);
duke@1 1169 }
duke@1 1170
duke@1 1171 /** Is exc an exception type that need not be declared?
duke@1 1172 */
duke@1 1173 boolean isUnchecked(Type exc) {
duke@1 1174 return
duke@1 1175 (exc.tag == TYPEVAR) ? isUnchecked(types.supertype(exc)) :
duke@1 1176 (exc.tag == CLASS) ? isUnchecked((ClassSymbol)exc.tsym) :
duke@1 1177 exc.tag == BOT;
duke@1 1178 }
duke@1 1179
duke@1 1180 /** Same, but handling completion failures.
duke@1 1181 */
duke@1 1182 boolean isUnchecked(DiagnosticPosition pos, Type exc) {
duke@1 1183 try {
duke@1 1184 return isUnchecked(exc);
duke@1 1185 } catch (CompletionFailure ex) {
duke@1 1186 completionError(pos, ex);
duke@1 1187 return true;
duke@1 1188 }
duke@1 1189 }
duke@1 1190
duke@1 1191 /** Is exc handled by given exception list?
duke@1 1192 */
duke@1 1193 boolean isHandled(Type exc, List<Type> handled) {
duke@1 1194 return isUnchecked(exc) || subset(exc, handled);
duke@1 1195 }
duke@1 1196
duke@1 1197 /** Return all exceptions in thrown list that are not in handled list.
duke@1 1198 * @param thrown The list of thrown exceptions.
duke@1 1199 * @param handled The list of handled exceptions.
duke@1 1200 */
mcimadamore@362 1201 List<Type> unhandled(List<Type> thrown, List<Type> handled) {
duke@1 1202 List<Type> unhandled = List.nil();
duke@1 1203 for (List<Type> l = thrown; l.nonEmpty(); l = l.tail)
duke@1 1204 if (!isHandled(l.head, handled)) unhandled = unhandled.prepend(l.head);
duke@1 1205 return unhandled;
duke@1 1206 }
duke@1 1207
duke@1 1208 /* *************************************************************************
duke@1 1209 * Overriding/Implementation checking
duke@1 1210 **************************************************************************/
duke@1 1211
duke@1 1212 /** The level of access protection given by a flag set,
duke@1 1213 * where PRIVATE is highest and PUBLIC is lowest.
duke@1 1214 */
duke@1 1215 static int protection(long flags) {
duke@1 1216 switch ((short)(flags & AccessFlags)) {
duke@1 1217 case PRIVATE: return 3;
duke@1 1218 case PROTECTED: return 1;
duke@1 1219 default:
duke@1 1220 case PUBLIC: return 0;
duke@1 1221 case 0: return 2;
duke@1 1222 }
duke@1 1223 }
duke@1 1224
duke@1 1225 /** A customized "cannot override" error message.
duke@1 1226 * @param m The overriding method.
duke@1 1227 * @param other The overridden method.
duke@1 1228 * @return An internationalized string.
duke@1 1229 */
mcimadamore@89 1230 Object cannotOverride(MethodSymbol m, MethodSymbol other) {
duke@1 1231 String key;
duke@1 1232 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1233 key = "cant.override";
duke@1 1234 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1235 key = "cant.implement";
duke@1 1236 else
duke@1 1237 key = "clashes.with";
mcimadamore@89 1238 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1239 }
duke@1 1240
duke@1 1241 /** A customized "override" warning message.
duke@1 1242 * @param m The overriding method.
duke@1 1243 * @param other The overridden method.
duke@1 1244 * @return An internationalized string.
duke@1 1245 */
mcimadamore@89 1246 Object uncheckedOverrides(MethodSymbol m, MethodSymbol other) {
duke@1 1247 String key;
duke@1 1248 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1249 key = "unchecked.override";
duke@1 1250 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1251 key = "unchecked.implement";
duke@1 1252 else
duke@1 1253 key = "unchecked.clash.with";
mcimadamore@89 1254 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1255 }
duke@1 1256
duke@1 1257 /** A customized "override" warning message.
duke@1 1258 * @param m The overriding method.
duke@1 1259 * @param other The overridden method.
duke@1 1260 * @return An internationalized string.
duke@1 1261 */
mcimadamore@89 1262 Object varargsOverrides(MethodSymbol m, MethodSymbol other) {
duke@1 1263 String key;
duke@1 1264 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1265 key = "varargs.override";
duke@1 1266 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1267 key = "varargs.implement";
duke@1 1268 else
duke@1 1269 key = "varargs.clash.with";
mcimadamore@89 1270 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1271 }
duke@1 1272
duke@1 1273 /** Check that this method conforms with overridden method 'other'.
duke@1 1274 * where `origin' is the class where checking started.
duke@1 1275 * Complications:
duke@1 1276 * (1) Do not check overriding of synthetic methods
duke@1 1277 * (reason: they might be final).
duke@1 1278 * todo: check whether this is still necessary.
duke@1 1279 * (2) Admit the case where an interface proxy throws fewer exceptions
duke@1 1280 * than the method it implements. Augment the proxy methods with the
duke@1 1281 * undeclared exceptions in this case.
duke@1 1282 * (3) When generics are enabled, admit the case where an interface proxy
duke@1 1283 * has a result type
duke@1 1284 * extended by the result type of the method it implements.
duke@1 1285 * Change the proxies result type to the smaller type in this case.
duke@1 1286 *
duke@1 1287 * @param tree The tree from which positions
duke@1 1288 * are extracted for errors.
duke@1 1289 * @param m The overriding method.
duke@1 1290 * @param other The overridden method.
duke@1 1291 * @param origin The class of which the overriding method
duke@1 1292 * is a member.
duke@1 1293 */
duke@1 1294 void checkOverride(JCTree tree,
duke@1 1295 MethodSymbol m,
duke@1 1296 MethodSymbol other,
duke@1 1297 ClassSymbol origin) {
duke@1 1298 // Don't check overriding of synthetic methods or by bridge methods.
duke@1 1299 if ((m.flags() & (SYNTHETIC|BRIDGE)) != 0 || (other.flags() & SYNTHETIC) != 0) {
duke@1 1300 return;
duke@1 1301 }
duke@1 1302
duke@1 1303 // Error if static method overrides instance method (JLS 8.4.6.2).
duke@1 1304 if ((m.flags() & STATIC) != 0 &&
duke@1 1305 (other.flags() & STATIC) == 0) {
duke@1 1306 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.static",
duke@1 1307 cannotOverride(m, other));
duke@1 1308 return;
duke@1 1309 }
duke@1 1310
duke@1 1311 // Error if instance method overrides static or final
duke@1 1312 // method (JLS 8.4.6.1).
duke@1 1313 if ((other.flags() & FINAL) != 0 ||
duke@1 1314 (m.flags() & STATIC) == 0 &&
duke@1 1315 (other.flags() & STATIC) != 0) {
duke@1 1316 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.meth",
duke@1 1317 cannotOverride(m, other),
mcimadamore@80 1318 asFlagSet(other.flags() & (FINAL | STATIC)));
duke@1 1319 return;
duke@1 1320 }
duke@1 1321
duke@1 1322 if ((m.owner.flags() & ANNOTATION) != 0) {
duke@1 1323 // handled in validateAnnotationMethod
duke@1 1324 return;
duke@1 1325 }
duke@1 1326
duke@1 1327 // Error if overriding method has weaker access (JLS 8.4.6.3).
duke@1 1328 if ((origin.flags() & INTERFACE) == 0 &&
duke@1 1329 protection(m.flags()) > protection(other.flags())) {
duke@1 1330 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.weaker.access",
duke@1 1331 cannotOverride(m, other),
mcimadamore@80 1332 other.flags() == 0 ?
mcimadamore@80 1333 Flag.PACKAGE :
mcimadamore@80 1334 asFlagSet(other.flags() & AccessFlags));
duke@1 1335 return;
duke@1 1336 }
duke@1 1337
duke@1 1338 Type mt = types.memberType(origin.type, m);
duke@1 1339 Type ot = types.memberType(origin.type, other);
duke@1 1340 // Error if overriding result type is different
duke@1 1341 // (or, in the case of generics mode, not a subtype) of
duke@1 1342 // overridden result type. We have to rename any type parameters
duke@1 1343 // before comparing types.
duke@1 1344 List<Type> mtvars = mt.getTypeArguments();
duke@1 1345 List<Type> otvars = ot.getTypeArguments();
duke@1 1346 Type mtres = mt.getReturnType();
duke@1 1347 Type otres = types.subst(ot.getReturnType(), otvars, mtvars);
duke@1 1348
duke@1 1349 overrideWarner.warned = false;
duke@1 1350 boolean resultTypesOK =
tbell@202 1351 types.returnTypeSubstitutable(mt, ot, otres, overrideWarner);
duke@1 1352 if (!resultTypesOK) {
jjg@398 1353 if (!allowCovariantReturns &&
duke@1 1354 m.owner != origin &&
duke@1 1355 m.owner.isSubClass(other.owner, types)) {
duke@1 1356 // allow limited interoperability with covariant returns
duke@1 1357 } else {
mcimadamore@362 1358 log.error(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1359 "override.incompatible.ret",
mcimadamore@362 1360 cannotOverride(m, other),
duke@1 1361 mtres, otres);
duke@1 1362 return;
duke@1 1363 }
duke@1 1364 } else if (overrideWarner.warned) {
duke@1 1365 warnUnchecked(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1366 "override.unchecked.ret",
mcimadamore@362 1367 uncheckedOverrides(m, other),
mcimadamore@362 1368 mtres, otres);
duke@1 1369 }
duke@1 1370
duke@1 1371 // Error if overriding method throws an exception not reported
duke@1 1372 // by overridden method.
duke@1 1373 List<Type> otthrown = types.subst(ot.getThrownTypes(), otvars, mtvars);
mcimadamore@362 1374 List<Type> unhandledErased = unhandled(mt.getThrownTypes(), types.erasure(otthrown));
mcimadamore@362 1375 List<Type> unhandledUnerased = unhandled(mt.getThrownTypes(), otthrown);
mcimadamore@362 1376 if (unhandledErased.nonEmpty()) {
duke@1 1377 log.error(TreeInfo.diagnosticPositionFor(m, tree),
duke@1 1378 "override.meth.doesnt.throw",
duke@1 1379 cannotOverride(m, other),
mcimadamore@362 1380 unhandledUnerased.head);
mcimadamore@362 1381 return;
mcimadamore@362 1382 }
mcimadamore@362 1383 else if (unhandledUnerased.nonEmpty()) {
mcimadamore@362 1384 warnUnchecked(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1385 "override.unchecked.thrown",
mcimadamore@362 1386 cannotOverride(m, other),
mcimadamore@362 1387 unhandledUnerased.head);
duke@1 1388 return;
duke@1 1389 }
duke@1 1390
duke@1 1391 // Optional warning if varargs don't agree
duke@1 1392 if ((((m.flags() ^ other.flags()) & Flags.VARARGS) != 0)
duke@1 1393 && lint.isEnabled(Lint.LintCategory.OVERRIDES)) {
duke@1 1394 log.warning(TreeInfo.diagnosticPositionFor(m, tree),
duke@1 1395 ((m.flags() & Flags.VARARGS) != 0)
duke@1 1396 ? "override.varargs.missing"
duke@1 1397 : "override.varargs.extra",
duke@1 1398 varargsOverrides(m, other));
duke@1 1399 }
duke@1 1400
duke@1 1401 // Warn if instance method overrides bridge method (compiler spec ??)
duke@1 1402 if ((other.flags() & BRIDGE) != 0) {
duke@1 1403 log.warning(TreeInfo.diagnosticPositionFor(m, tree), "override.bridge",
duke@1 1404 uncheckedOverrides(m, other));
duke@1 1405 }
duke@1 1406
duke@1 1407 // Warn if a deprecated method overridden by a non-deprecated one.
duke@1 1408 if ((other.flags() & DEPRECATED) != 0
duke@1 1409 && (m.flags() & DEPRECATED) == 0
duke@1 1410 && m.outermostClass() != other.outermostClass()
duke@1 1411 && !isDeprecatedOverrideIgnorable(other, origin)) {
duke@1 1412 warnDeprecated(TreeInfo.diagnosticPositionFor(m, tree), other);
duke@1 1413 }
duke@1 1414 }
duke@1 1415 // where
duke@1 1416 private boolean isDeprecatedOverrideIgnorable(MethodSymbol m, ClassSymbol origin) {
duke@1 1417 // If the method, m, is defined in an interface, then ignore the issue if the method
duke@1 1418 // is only inherited via a supertype and also implemented in the supertype,
duke@1 1419 // because in that case, we will rediscover the issue when examining the method
duke@1 1420 // in the supertype.
duke@1 1421 // If the method, m, is not defined in an interface, then the only time we need to
duke@1 1422 // address the issue is when the method is the supertype implemementation: any other
duke@1 1423 // case, we will have dealt with when examining the supertype classes
duke@1 1424 ClassSymbol mc = m.enclClass();
duke@1 1425 Type st = types.supertype(origin.type);
duke@1 1426 if (st.tag != CLASS)
duke@1 1427 return true;
duke@1 1428 MethodSymbol stimpl = m.implementation((ClassSymbol)st.tsym, types, false);
duke@1 1429
duke@1 1430 if (mc != null && ((mc.flags() & INTERFACE) != 0)) {
duke@1 1431 List<Type> intfs = types.interfaces(origin.type);
duke@1 1432 return (intfs.contains(mc.type) ? false : (stimpl != null));
duke@1 1433 }
duke@1 1434 else
duke@1 1435 return (stimpl != m);
duke@1 1436 }
duke@1 1437
duke@1 1438
duke@1 1439 // used to check if there were any unchecked conversions
duke@1 1440 Warner overrideWarner = new Warner();
duke@1 1441
duke@1 1442 /** Check that a class does not inherit two concrete methods
duke@1 1443 * with the same signature.
duke@1 1444 * @param pos Position to be used for error reporting.
duke@1 1445 * @param site The class type to be checked.
duke@1 1446 */
duke@1 1447 public void checkCompatibleConcretes(DiagnosticPosition pos, Type site) {
duke@1 1448 Type sup = types.supertype(site);
duke@1 1449 if (sup.tag != CLASS) return;
duke@1 1450
duke@1 1451 for (Type t1 = sup;
duke@1 1452 t1.tsym.type.isParameterized();
duke@1 1453 t1 = types.supertype(t1)) {
duke@1 1454 for (Scope.Entry e1 = t1.tsym.members().elems;
duke@1 1455 e1 != null;
duke@1 1456 e1 = e1.sibling) {
duke@1 1457 Symbol s1 = e1.sym;
duke@1 1458 if (s1.kind != MTH ||
duke@1 1459 (s1.flags() & (STATIC|SYNTHETIC|BRIDGE)) != 0 ||
duke@1 1460 !s1.isInheritedIn(site.tsym, types) ||
duke@1 1461 ((MethodSymbol)s1).implementation(site.tsym,
duke@1 1462 types,
duke@1 1463 true) != s1)
duke@1 1464 continue;
duke@1 1465 Type st1 = types.memberType(t1, s1);
duke@1 1466 int s1ArgsLength = st1.getParameterTypes().length();
duke@1 1467 if (st1 == s1.type) continue;
duke@1 1468
duke@1 1469 for (Type t2 = sup;
duke@1 1470 t2.tag == CLASS;
duke@1 1471 t2 = types.supertype(t2)) {
mcimadamore@24 1472 for (Scope.Entry e2 = t2.tsym.members().lookup(s1.name);
duke@1 1473 e2.scope != null;
duke@1 1474 e2 = e2.next()) {
duke@1 1475 Symbol s2 = e2.sym;
duke@1 1476 if (s2 == s1 ||
duke@1 1477 s2.kind != MTH ||
duke@1 1478 (s2.flags() & (STATIC|SYNTHETIC|BRIDGE)) != 0 ||
duke@1 1479 s2.type.getParameterTypes().length() != s1ArgsLength ||
duke@1 1480 !s2.isInheritedIn(site.tsym, types) ||
duke@1 1481 ((MethodSymbol)s2).implementation(site.tsym,
duke@1 1482 types,
duke@1 1483 true) != s2)
duke@1 1484 continue;
duke@1 1485 Type st2 = types.memberType(t2, s2);
duke@1 1486 if (types.overrideEquivalent(st1, st2))
duke@1 1487 log.error(pos, "concrete.inheritance.conflict",
duke@1 1488 s1, t1, s2, t2, sup);
duke@1 1489 }
duke@1 1490 }
duke@1 1491 }
duke@1 1492 }
duke@1 1493 }
duke@1 1494
duke@1 1495 /** Check that classes (or interfaces) do not each define an abstract
duke@1 1496 * method with same name and arguments but incompatible return types.
duke@1 1497 * @param pos Position to be used for error reporting.
duke@1 1498 * @param t1 The first argument type.
duke@1 1499 * @param t2 The second argument type.
duke@1 1500 */
duke@1 1501 public boolean checkCompatibleAbstracts(DiagnosticPosition pos,
duke@1 1502 Type t1,
duke@1 1503 Type t2) {
duke@1 1504 return checkCompatibleAbstracts(pos, t1, t2,
duke@1 1505 types.makeCompoundType(t1, t2));
duke@1 1506 }
duke@1 1507
duke@1 1508 public boolean checkCompatibleAbstracts(DiagnosticPosition pos,
duke@1 1509 Type t1,
duke@1 1510 Type t2,
duke@1 1511 Type site) {
duke@1 1512 Symbol sym = firstIncompatibility(t1, t2, site);
duke@1 1513 if (sym != null) {
duke@1 1514 log.error(pos, "types.incompatible.diff.ret",
duke@1 1515 t1, t2, sym.name +
duke@1 1516 "(" + types.memberType(t2, sym).getParameterTypes() + ")");
duke@1 1517 return false;
duke@1 1518 }
duke@1 1519 return true;
duke@1 1520 }
duke@1 1521
duke@1 1522 /** Return the first method which is defined with same args
duke@1 1523 * but different return types in two given interfaces, or null if none
duke@1 1524 * exists.
duke@1 1525 * @param t1 The first type.
duke@1 1526 * @param t2 The second type.
duke@1 1527 * @param site The most derived type.
duke@1 1528 * @returns symbol from t2 that conflicts with one in t1.
duke@1 1529 */
duke@1 1530 private Symbol firstIncompatibility(Type t1, Type t2, Type site) {
duke@1 1531 Map<TypeSymbol,Type> interfaces1 = new HashMap<TypeSymbol,Type>();
duke@1 1532 closure(t1, interfaces1);
duke@1 1533 Map<TypeSymbol,Type> interfaces2;
duke@1 1534 if (t1 == t2)
duke@1 1535 interfaces2 = interfaces1;
duke@1 1536 else
duke@1 1537 closure(t2, interfaces1, interfaces2 = new HashMap<TypeSymbol,Type>());
duke@1 1538
duke@1 1539 for (Type t3 : interfaces1.values()) {
duke@1 1540 for (Type t4 : interfaces2.values()) {
duke@1 1541 Symbol s = firstDirectIncompatibility(t3, t4, site);
duke@1 1542 if (s != null) return s;
duke@1 1543 }
duke@1 1544 }
duke@1 1545 return null;
duke@1 1546 }
duke@1 1547
duke@1 1548 /** Compute all the supertypes of t, indexed by type symbol. */
duke@1 1549 private void closure(Type t, Map<TypeSymbol,Type> typeMap) {
duke@1 1550 if (t.tag != CLASS) return;
duke@1 1551 if (typeMap.put(t.tsym, t) == null) {
duke@1 1552 closure(types.supertype(t), typeMap);
duke@1 1553 for (Type i : types.interfaces(t))
duke@1 1554 closure(i, typeMap);
duke@1 1555 }
duke@1 1556 }
duke@1 1557
duke@1 1558 /** Compute all the supertypes of t, indexed by type symbol (except thise in typesSkip). */
duke@1 1559 private void closure(Type t, Map<TypeSymbol,Type> typesSkip, Map<TypeSymbol,Type> typeMap) {
duke@1 1560 if (t.tag != CLASS) return;
duke@1 1561 if (typesSkip.get(t.tsym) != null) return;
duke@1 1562 if (typeMap.put(t.tsym, t) == null) {
duke@1 1563 closure(types.supertype(t), typesSkip, typeMap);
duke@1 1564 for (Type i : types.interfaces(t))
duke@1 1565 closure(i, typesSkip, typeMap);
duke@1 1566 }
duke@1 1567 }
duke@1 1568
duke@1 1569 /** Return the first method in t2 that conflicts with a method from t1. */
duke@1 1570 private Symbol firstDirectIncompatibility(Type t1, Type t2, Type site) {
duke@1 1571 for (Scope.Entry e1 = t1.tsym.members().elems; e1 != null; e1 = e1.sibling) {
duke@1 1572 Symbol s1 = e1.sym;
duke@1 1573 Type st1 = null;
duke@1 1574 if (s1.kind != MTH || !s1.isInheritedIn(site.tsym, types)) continue;
duke@1 1575 Symbol impl = ((MethodSymbol)s1).implementation(site.tsym, types, false);
duke@1 1576 if (impl != null && (impl.flags() & ABSTRACT) == 0) continue;
duke@1 1577 for (Scope.Entry e2 = t2.tsym.members().lookup(s1.name); e2.scope != null; e2 = e2.next()) {
duke@1 1578 Symbol s2 = e2.sym;
duke@1 1579 if (s1 == s2) continue;
duke@1 1580 if (s2.kind != MTH || !s2.isInheritedIn(site.tsym, types)) continue;
duke@1 1581 if (st1 == null) st1 = types.memberType(t1, s1);
duke@1 1582 Type st2 = types.memberType(t2, s2);
duke@1 1583 if (types.overrideEquivalent(st1, st2)) {
duke@1 1584 List<Type> tvars1 = st1.getTypeArguments();
duke@1 1585 List<Type> tvars2 = st2.getTypeArguments();
duke@1 1586 Type rt1 = st1.getReturnType();
duke@1 1587 Type rt2 = types.subst(st2.getReturnType(), tvars2, tvars1);
duke@1 1588 boolean compat =
duke@1 1589 types.isSameType(rt1, rt2) ||
duke@1 1590 rt1.tag >= CLASS && rt2.tag >= CLASS &&
duke@1 1591 (types.covariantReturnType(rt1, rt2, Warner.noWarnings) ||
mcimadamore@59 1592 types.covariantReturnType(rt2, rt1, Warner.noWarnings)) ||
mcimadamore@59 1593 checkCommonOverriderIn(s1,s2,site);
duke@1 1594 if (!compat) return s2;
duke@1 1595 }
duke@1 1596 }
duke@1 1597 }
duke@1 1598 return null;
duke@1 1599 }
mcimadamore@59 1600 //WHERE
mcimadamore@59 1601 boolean checkCommonOverriderIn(Symbol s1, Symbol s2, Type site) {
mcimadamore@59 1602 Map<TypeSymbol,Type> supertypes = new HashMap<TypeSymbol,Type>();
mcimadamore@59 1603 Type st1 = types.memberType(site, s1);
mcimadamore@59 1604 Type st2 = types.memberType(site, s2);
mcimadamore@59 1605 closure(site, supertypes);
mcimadamore@59 1606 for (Type t : supertypes.values()) {
mcimadamore@59 1607 for (Scope.Entry e = t.tsym.members().lookup(s1.name); e.scope != null; e = e.next()) {
mcimadamore@59 1608 Symbol s3 = e.sym;
mcimadamore@59 1609 if (s3 == s1 || s3 == s2 || s3.kind != MTH || (s3.flags() & (BRIDGE|SYNTHETIC)) != 0) continue;
mcimadamore@59 1610 Type st3 = types.memberType(site,s3);
mcimadamore@59 1611 if (types.overrideEquivalent(st3, st1) && types.overrideEquivalent(st3, st2)) {
mcimadamore@59 1612 if (s3.owner == site.tsym) {
mcimadamore@59 1613 return true;
mcimadamore@59 1614 }
mcimadamore@59 1615 List<Type> tvars1 = st1.getTypeArguments();
mcimadamore@59 1616 List<Type> tvars2 = st2.getTypeArguments();
mcimadamore@59 1617 List<Type> tvars3 = st3.getTypeArguments();
mcimadamore@59 1618 Type rt1 = st1.getReturnType();
mcimadamore@59 1619 Type rt2 = st2.getReturnType();
mcimadamore@59 1620 Type rt13 = types.subst(st3.getReturnType(), tvars3, tvars1);
mcimadamore@59 1621 Type rt23 = types.subst(st3.getReturnType(), tvars3, tvars2);
mcimadamore@59 1622 boolean compat =
mcimadamore@59 1623 rt13.tag >= CLASS && rt23.tag >= CLASS &&
mcimadamore@59 1624 (types.covariantReturnType(rt13, rt1, Warner.noWarnings) &&
mcimadamore@59 1625 types.covariantReturnType(rt23, rt2, Warner.noWarnings));
mcimadamore@59 1626 if (compat)
mcimadamore@59 1627 return true;
mcimadamore@59 1628 }
mcimadamore@59 1629 }
mcimadamore@59 1630 }
mcimadamore@59 1631 return false;
mcimadamore@59 1632 }
duke@1 1633
duke@1 1634 /** Check that a given method conforms with any method it overrides.
duke@1 1635 * @param tree The tree from which positions are extracted
duke@1 1636 * for errors.
duke@1 1637 * @param m The overriding method.
duke@1 1638 */
duke@1 1639 void checkOverride(JCTree tree, MethodSymbol m) {
duke@1 1640 ClassSymbol origin = (ClassSymbol)m.owner;
duke@1 1641 if ((origin.flags() & ENUM) != 0 && names.finalize.equals(m.name))
duke@1 1642 if (m.overrides(syms.enumFinalFinalize, origin, types, false)) {
duke@1 1643 log.error(tree.pos(), "enum.no.finalize");
duke@1 1644 return;
duke@1 1645 }
duke@1 1646 for (Type t = types.supertype(origin.type); t.tag == CLASS;
duke@1 1647 t = types.supertype(t)) {
duke@1 1648 TypeSymbol c = t.tsym;
duke@1 1649 Scope.Entry e = c.members().lookup(m.name);
duke@1 1650 while (e.scope != null) {
duke@1 1651 if (m.overrides(e.sym, origin, types, false))
duke@1 1652 checkOverride(tree, m, (MethodSymbol)e.sym, origin);
mcimadamore@252 1653 else if (e.sym.kind == MTH &&
mcimadamore@252 1654 e.sym.isInheritedIn(origin, types) &&
mcimadamore@252 1655 (e.sym.flags() & SYNTHETIC) == 0 &&
mcimadamore@252 1656 !m.isConstructor()) {
mcimadamore@24 1657 Type er1 = m.erasure(types);
mcimadamore@24 1658 Type er2 = e.sym.erasure(types);
mcimadamore@252 1659 if (types.isSameTypes(er1.getParameterTypes(),
mcimadamore@252 1660 er2.getParameterTypes())) {
mcimadamore@24 1661 log.error(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@24 1662 "name.clash.same.erasure.no.override",
mcimadamore@24 1663 m, m.location(),
mcimadamore@24 1664 e.sym, e.sym.location());
mcimadamore@24 1665 }
mcimadamore@24 1666 }
duke@1 1667 e = e.next();
duke@1 1668 }
duke@1 1669 }
duke@1 1670 }
duke@1 1671
duke@1 1672 /** Check that all abstract members of given class have definitions.
duke@1 1673 * @param pos Position to be used for error reporting.
duke@1 1674 * @param c The class.
duke@1 1675 */
duke@1 1676 void checkAllDefined(DiagnosticPosition pos, ClassSymbol c) {
duke@1 1677 try {
duke@1 1678 MethodSymbol undef = firstUndef(c, c);
duke@1 1679 if (undef != null) {
duke@1 1680 if ((c.flags() & ENUM) != 0 &&
duke@1 1681 types.supertype(c.type).tsym == syms.enumSym &&
duke@1 1682 (c.flags() & FINAL) == 0) {
duke@1 1683 // add the ABSTRACT flag to an enum
duke@1 1684 c.flags_field |= ABSTRACT;
duke@1 1685 } else {
duke@1 1686 MethodSymbol undef1 =
duke@1 1687 new MethodSymbol(undef.flags(), undef.name,
duke@1 1688 types.memberType(c.type, undef), undef.owner);
duke@1 1689 log.error(pos, "does.not.override.abstract",
duke@1 1690 c, undef1, undef1.location());
duke@1 1691 }
duke@1 1692 }
duke@1 1693 } catch (CompletionFailure ex) {
duke@1 1694 completionError(pos, ex);
duke@1 1695 }
duke@1 1696 }
duke@1 1697 //where
duke@1 1698 /** Return first abstract member of class `c' that is not defined
duke@1 1699 * in `impl', null if there is none.
duke@1 1700 */
duke@1 1701 private MethodSymbol firstUndef(ClassSymbol impl, ClassSymbol c) {
duke@1 1702 MethodSymbol undef = null;
duke@1 1703 // Do not bother to search in classes that are not abstract,
duke@1 1704 // since they cannot have abstract members.
duke@1 1705 if (c == impl || (c.flags() & (ABSTRACT | INTERFACE)) != 0) {
duke@1 1706 Scope s = c.members();
duke@1 1707 for (Scope.Entry e = s.elems;
duke@1 1708 undef == null && e != null;
duke@1 1709 e = e.sibling) {
duke@1 1710 if (e.sym.kind == MTH &&
duke@1 1711 (e.sym.flags() & (ABSTRACT|IPROXY)) == ABSTRACT) {
duke@1 1712 MethodSymbol absmeth = (MethodSymbol)e.sym;
duke@1 1713 MethodSymbol implmeth = absmeth.implementation(impl, types, true);
duke@1 1714 if (implmeth == null || implmeth == absmeth)
duke@1 1715 undef = absmeth;
duke@1 1716 }
duke@1 1717 }
duke@1 1718 if (undef == null) {
duke@1 1719 Type st = types.supertype(c.type);
duke@1 1720 if (st.tag == CLASS)
duke@1 1721 undef = firstUndef(impl, (ClassSymbol)st.tsym);
duke@1 1722 }
duke@1 1723 for (List<Type> l = types.interfaces(c.type);
duke@1 1724 undef == null && l.nonEmpty();
duke@1 1725 l = l.tail) {
duke@1 1726 undef = firstUndef(impl, (ClassSymbol)l.head.tsym);
duke@1 1727 }
duke@1 1728 }
duke@1 1729 return undef;
duke@1 1730 }
duke@1 1731
mcimadamore@690 1732 void checkNonCyclicDecl(JCClassDecl tree) {
mcimadamore@690 1733 CycleChecker cc = new CycleChecker();
mcimadamore@690 1734 cc.scan(tree);
mcimadamore@690 1735 if (!cc.errorFound && !cc.partialCheck) {
mcimadamore@690 1736 tree.sym.flags_field |= ACYCLIC;
mcimadamore@690 1737 }
mcimadamore@690 1738 }
mcimadamore@690 1739
mcimadamore@690 1740 class CycleChecker extends TreeScanner {
mcimadamore@690 1741
mcimadamore@690 1742 List<Symbol> seenClasses = List.nil();
mcimadamore@690 1743 boolean errorFound = false;
mcimadamore@690 1744 boolean partialCheck = false;
mcimadamore@690 1745
mcimadamore@690 1746 private void checkSymbol(DiagnosticPosition pos, Symbol sym) {
mcimadamore@690 1747 if (sym != null && sym.kind == TYP) {
mcimadamore@690 1748 Env<AttrContext> classEnv = enter.getEnv((TypeSymbol)sym);
mcimadamore@690 1749 if (classEnv != null) {
mcimadamore@690 1750 DiagnosticSource prevSource = log.currentSource();
mcimadamore@690 1751 try {
mcimadamore@690 1752 log.useSource(classEnv.toplevel.sourcefile);
mcimadamore@690 1753 scan(classEnv.tree);
mcimadamore@690 1754 }
mcimadamore@690 1755 finally {
mcimadamore@690 1756 log.useSource(prevSource.getFile());
mcimadamore@690 1757 }
mcimadamore@690 1758 } else if (sym.kind == TYP) {
mcimadamore@690 1759 checkClass(pos, sym, List.<JCTree>nil());
mcimadamore@690 1760 }
mcimadamore@690 1761 } else {
mcimadamore@690 1762 //not completed yet
mcimadamore@690 1763 partialCheck = true;
mcimadamore@690 1764 }
mcimadamore@690 1765 }
mcimadamore@690 1766
mcimadamore@690 1767 @Override
mcimadamore@690 1768 public void visitSelect(JCFieldAccess tree) {
mcimadamore@690 1769 super.visitSelect(tree);
mcimadamore@690 1770 checkSymbol(tree.pos(), tree.sym);
mcimadamore@690 1771 }
mcimadamore@690 1772
mcimadamore@690 1773 @Override
mcimadamore@690 1774 public void visitIdent(JCIdent tree) {
mcimadamore@690 1775 checkSymbol(tree.pos(), tree.sym);
mcimadamore@690 1776 }
mcimadamore@690 1777
mcimadamore@690 1778 @Override
mcimadamore@690 1779 public void visitTypeApply(JCTypeApply tree) {
mcimadamore@690 1780 scan(tree.clazz);
mcimadamore@690 1781 }
mcimadamore@690 1782
mcimadamore@690 1783 @Override
mcimadamore@690 1784 public void visitTypeArray(JCArrayTypeTree tree) {
mcimadamore@690 1785 scan(tree.elemtype);
mcimadamore@690 1786 }
mcimadamore@690 1787
mcimadamore@690 1788 @Override
mcimadamore@690 1789 public void visitClassDef(JCClassDecl tree) {
mcimadamore@690 1790 List<JCTree> supertypes = List.nil();
mcimadamore@690 1791 if (tree.getExtendsClause() != null) {
mcimadamore@690 1792 supertypes = supertypes.prepend(tree.getExtendsClause());
mcimadamore@690 1793 }
mcimadamore@690 1794 if (tree.getImplementsClause() != null) {
mcimadamore@690 1795 for (JCTree intf : tree.getImplementsClause()) {
mcimadamore@690 1796 supertypes = supertypes.prepend(intf);
mcimadamore@690 1797 }
mcimadamore@690 1798 }
mcimadamore@690 1799 checkClass(tree.pos(), tree.sym, supertypes);
mcimadamore@690 1800 }
mcimadamore@690 1801
mcimadamore@690 1802 void checkClass(DiagnosticPosition pos, Symbol c, List<JCTree> supertypes) {
mcimadamore@690 1803 if ((c.flags_field & ACYCLIC) != 0)
mcimadamore@690 1804 return;
mcimadamore@690 1805 if (seenClasses.contains(c)) {
mcimadamore@690 1806 errorFound = true;
mcimadamore@690 1807 noteCyclic(pos, (ClassSymbol)c);
mcimadamore@690 1808 } else if (!c.type.isErroneous()) {
mcimadamore@690 1809 try {
mcimadamore@690 1810 seenClasses = seenClasses.prepend(c);
mcimadamore@690 1811 if (c.type.tag == CLASS) {
mcimadamore@690 1812 if (supertypes.nonEmpty()) {
mcimadamore@690 1813 scan(supertypes);
mcimadamore@690 1814 }
mcimadamore@690 1815 else {
mcimadamore@690 1816 ClassType ct = (ClassType)c.type;
mcimadamore@690 1817 if (ct.supertype_field == null ||
mcimadamore@690 1818 ct.interfaces_field == null) {
mcimadamore@690 1819 //not completed yet
mcimadamore@690 1820 partialCheck = true;
mcimadamore@690 1821 return;
mcimadamore@690 1822 }
mcimadamore@690 1823 checkSymbol(pos, ct.supertype_field.tsym);
mcimadamore@690 1824 for (Type intf : ct.interfaces_field) {
mcimadamore@690 1825 checkSymbol(pos, intf.tsym);
mcimadamore@690 1826 }
mcimadamore@690 1827 }
mcimadamore@690 1828 if (c.owner.kind == TYP) {
mcimadamore@690 1829 checkSymbol(pos, c.owner);
mcimadamore@690 1830 }
mcimadamore@690 1831 }
mcimadamore@690 1832 } finally {
mcimadamore@690 1833 seenClasses = seenClasses.tail;
mcimadamore@690 1834 }
mcimadamore@690 1835 }
mcimadamore@690 1836 }
mcimadamore@690 1837 }
mcimadamore@690 1838
duke@1 1839 /** Check for cyclic references. Issue an error if the
duke@1 1840 * symbol of the type referred to has a LOCKED flag set.
duke@1 1841 *
duke@1 1842 * @param pos Position to be used for error reporting.
duke@1 1843 * @param t The type referred to.
duke@1 1844 */
duke@1 1845 void checkNonCyclic(DiagnosticPosition pos, Type t) {
duke@1 1846 checkNonCyclicInternal(pos, t);
duke@1 1847 }
duke@1 1848
duke@1 1849
duke@1 1850 void checkNonCyclic(DiagnosticPosition pos, TypeVar t) {
mcimadamore@236 1851 checkNonCyclic1(pos, t, List.<TypeVar>nil());
duke@1 1852 }
duke@1 1853
mcimadamore@236 1854 private void checkNonCyclic1(DiagnosticPosition pos, Type t, List<TypeVar> seen) {
duke@1 1855 final TypeVar tv;
mcimadamore@42 1856 if (t.tag == TYPEVAR && (t.tsym.flags() & UNATTRIBUTED) != 0)
mcimadamore@42 1857 return;
duke@1 1858 if (seen.contains(t)) {
duke@1 1859 tv = (TypeVar)t;
jjg@110 1860 tv.bound = types.createErrorType(t);
duke@1 1861 log.error(pos, "cyclic.inheritance", t);
duke@1 1862 } else if (t.tag == TYPEVAR) {
duke@1 1863 tv = (TypeVar)t;
mcimadamore@236 1864 seen = seen.prepend(tv);
duke@1 1865 for (Type b : types.getBounds(tv))
duke@1 1866 checkNonCyclic1(pos, b, seen);
duke@1 1867 }
duke@1 1868 }
duke@1 1869
duke@1 1870 /** Check for cyclic references. Issue an error if the
duke@1 1871 * symbol of the type referred to has a LOCKED flag set.
duke@1 1872 *
duke@1 1873 * @param pos Position to be used for error reporting.
duke@1 1874 * @param t The type referred to.
duke@1 1875 * @returns True if the check completed on all attributed classes
duke@1 1876 */
duke@1 1877 private boolean checkNonCyclicInternal(DiagnosticPosition pos, Type t) {
duke@1 1878 boolean complete = true; // was the check complete?
duke@1 1879 //- System.err.println("checkNonCyclicInternal("+t+");");//DEBUG
duke@1 1880 Symbol c = t.tsym;
duke@1 1881 if ((c.flags_field & ACYCLIC) != 0) return true;
duke@1 1882
duke@1 1883 if ((c.flags_field & LOCKED) != 0) {
duke@1 1884 noteCyclic(pos, (ClassSymbol)c);
duke@1 1885 } else if (!c.type.isErroneous()) {
duke@1 1886 try {
duke@1 1887 c.flags_field |= LOCKED;
duke@1 1888 if (c.type.tag == CLASS) {
duke@1 1889 ClassType clazz = (ClassType)c.type;
duke@1 1890 if (clazz.interfaces_field != null)
duke@1 1891 for (List<Type> l=clazz.interfaces_field; l.nonEmpty(); l=l.tail)
duke@1 1892 complete &= checkNonCyclicInternal(pos, l.head);
duke@1 1893 if (clazz.supertype_field != null) {
duke@1 1894 Type st = clazz.supertype_field;
duke@1 1895 if (st != null && st.tag == CLASS)
duke@1 1896 complete &= checkNonCyclicInternal(pos, st);
duke@1 1897 }
duke@1 1898 if (c.owner.kind == TYP)
duke@1 1899 complete &= checkNonCyclicInternal(pos, c.owner.type);
duke@1 1900 }
duke@1 1901 } finally {
duke@1 1902 c.flags_field &= ~LOCKED;
duke@1 1903 }
duke@1 1904 }
duke@1 1905 if (complete)
duke@1 1906 complete = ((c.flags_field & UNATTRIBUTED) == 0) && c.completer == null;
duke@1 1907 if (complete) c.flags_field |= ACYCLIC;
duke@1 1908 return complete;
duke@1 1909 }
duke@1 1910
duke@1 1911 /** Note that we found an inheritance cycle. */
duke@1 1912 private void noteCyclic(DiagnosticPosition pos, ClassSymbol c) {
duke@1 1913 log.error(pos, "cyclic.inheritance", c);
duke@1 1914 for (List<Type> l=types.interfaces(c.type); l.nonEmpty(); l=l.tail)
jjg@110 1915 l.head = types.createErrorType((ClassSymbol)l.head.tsym, Type.noType);
duke@1 1916 Type st = types.supertype(c.type);
duke@1 1917 if (st.tag == CLASS)
jjg@110 1918 ((ClassType)c.type).supertype_field = types.createErrorType((ClassSymbol)st.tsym, Type.noType);
jjg@110 1919 c.type = types.createErrorType(c, c.type);
duke@1 1920 c.flags_field |= ACYCLIC;
duke@1 1921 }
duke@1 1922
duke@1 1923 /** Check that all methods which implement some
duke@1 1924 * method conform to the method they implement.
duke@1 1925 * @param tree The class definition whose members are checked.
duke@1 1926 */
duke@1 1927 void checkImplementations(JCClassDecl tree) {
duke@1 1928 checkImplementations(tree, tree.sym);
duke@1 1929 }
duke@1 1930 //where
duke@1 1931 /** Check that all methods which implement some
duke@1 1932 * method in `ic' conform to the method they implement.
duke@1 1933 */
duke@1 1934 void checkImplementations(JCClassDecl tree, ClassSymbol ic) {
duke@1 1935 ClassSymbol origin = tree.sym;
duke@1 1936 for (List<Type> l = types.closure(ic.type); l.nonEmpty(); l = l.tail) {
duke@1 1937 ClassSymbol lc = (ClassSymbol)l.head.tsym;
duke@1 1938 if ((allowGenerics || origin != lc) && (lc.flags() & ABSTRACT) != 0) {
duke@1 1939 for (Scope.Entry e=lc.members().elems; e != null; e=e.sibling) {
duke@1 1940 if (e.sym.kind == MTH &&
duke@1 1941 (e.sym.flags() & (STATIC|ABSTRACT)) == ABSTRACT) {
duke@1 1942 MethodSymbol absmeth = (MethodSymbol)e.sym;
duke@1 1943 MethodSymbol implmeth = absmeth.implementation(origin, types, false);
duke@1 1944 if (implmeth != null && implmeth != absmeth &&
duke@1 1945 (implmeth.owner.flags() & INTERFACE) ==
duke@1 1946 (origin.flags() & INTERFACE)) {
duke@1 1947 // don't check if implmeth is in a class, yet
duke@1 1948 // origin is an interface. This case arises only
duke@1 1949 // if implmeth is declared in Object. The reason is
duke@1 1950 // that interfaces really don't inherit from
duke@1 1951 // Object it's just that the compiler represents
duke@1 1952 // things that way.
duke@1 1953 checkOverride(tree, implmeth, absmeth, origin);
duke@1 1954 }
duke@1 1955 }
duke@1 1956 }
duke@1 1957 }
duke@1 1958 }
duke@1 1959 }
duke@1 1960
duke@1 1961 /** Check that all abstract methods implemented by a class are
duke@1 1962 * mutually compatible.
duke@1 1963 * @param pos Position to be used for error reporting.
duke@1 1964 * @param c The class whose interfaces are checked.
duke@1 1965 */
duke@1 1966 void checkCompatibleSupertypes(DiagnosticPosition pos, Type c) {
duke@1 1967 List<Type> supertypes = types.interfaces(c);
duke@1 1968 Type supertype = types.supertype(c);
duke@1 1969 if (supertype.tag == CLASS &&
duke@1 1970 (supertype.tsym.flags() & ABSTRACT) != 0)
duke@1 1971 supertypes = supertypes.prepend(supertype);
duke@1 1972 for (List<Type> l = supertypes; l.nonEmpty(); l = l.tail) {
duke@1 1973 if (allowGenerics && !l.head.getTypeArguments().isEmpty() &&
duke@1 1974 !checkCompatibleAbstracts(pos, l.head, l.head, c))
duke@1 1975 return;
duke@1 1976 for (List<Type> m = supertypes; m != l; m = m.tail)
duke@1 1977 if (!checkCompatibleAbstracts(pos, l.head, m.head, c))
duke@1 1978 return;
duke@1 1979 }
duke@1 1980 checkCompatibleConcretes(pos, c);
duke@1 1981 }
duke@1 1982
mcimadamore@359 1983 void checkConflicts(DiagnosticPosition pos, Symbol sym, TypeSymbol c) {
mcimadamore@359 1984 for (Type ct = c.type; ct != Type.noType ; ct = types.supertype(ct)) {
mcimadamore@359 1985 for (Scope.Entry e = ct.tsym.members().lookup(sym.name); e.scope == ct.tsym.members(); e = e.next()) {
mcimadamore@359 1986 // VM allows methods and variables with differing types
mcimadamore@359 1987 if (sym.kind == e.sym.kind &&
mcimadamore@359 1988 types.isSameType(types.erasure(sym.type), types.erasure(e.sym.type)) &&
mcimadamore@359 1989 sym != e.sym &&
mcimadamore@359 1990 (sym.flags() & Flags.SYNTHETIC) != (e.sym.flags() & Flags.SYNTHETIC) &&
mcimadamore@608 1991 (sym.flags() & IPROXY) == 0 && (e.sym.flags() & IPROXY) == 0 &&
mcimadamore@359 1992 (sym.flags() & BRIDGE) == 0 && (e.sym.flags() & BRIDGE) == 0) {
mcimadamore@359 1993 syntheticError(pos, (e.sym.flags() & SYNTHETIC) == 0 ? e.sym : sym);
mcimadamore@359 1994 return;
mcimadamore@359 1995 }
mcimadamore@359 1996 }
mcimadamore@359 1997 }
mcimadamore@359 1998 }
mcimadamore@359 1999
mcimadamore@359 2000 /** Report a conflict between a user symbol and a synthetic symbol.
mcimadamore@359 2001 */
mcimadamore@359 2002 private void syntheticError(DiagnosticPosition pos, Symbol sym) {
mcimadamore@359 2003 if (!sym.type.isErroneous()) {
mcimadamore@359 2004 if (warnOnSyntheticConflicts) {
mcimadamore@359 2005 log.warning(pos, "synthetic.name.conflict", sym, sym.location());
mcimadamore@359 2006 }
mcimadamore@359 2007 else {
mcimadamore@359 2008 log.error(pos, "synthetic.name.conflict", sym, sym.location());
mcimadamore@359 2009 }
mcimadamore@359 2010 }
mcimadamore@359 2011 }
mcimadamore@359 2012
duke@1 2013 /** Check that class c does not implement directly or indirectly
duke@1 2014 * the same parameterized interface with two different argument lists.
duke@1 2015 * @param pos Position to be used for error reporting.
duke@1 2016 * @param type The type whose interfaces are checked.
duke@1 2017 */
duke@1 2018 void checkClassBounds(DiagnosticPosition pos, Type type) {
duke@1 2019 checkClassBounds(pos, new HashMap<TypeSymbol,Type>(), type);
duke@1 2020 }
duke@1 2021 //where
duke@1 2022 /** Enter all interfaces of type `type' into the hash table `seensofar'
duke@1 2023 * with their class symbol as key and their type as value. Make
duke@1 2024 * sure no class is entered with two different types.
duke@1 2025 */
duke@1 2026 void checkClassBounds(DiagnosticPosition pos,
duke@1 2027 Map<TypeSymbol,Type> seensofar,
duke@1 2028 Type type) {
duke@1 2029 if (type.isErroneous()) return;
duke@1 2030 for (List<Type> l = types.interfaces(type); l.nonEmpty(); l = l.tail) {
duke@1 2031 Type it = l.head;
duke@1 2032 Type oldit = seensofar.put(it.tsym, it);
duke@1 2033 if (oldit != null) {
duke@1 2034 List<Type> oldparams = oldit.allparams();
duke@1 2035 List<Type> newparams = it.allparams();
duke@1 2036 if (!types.containsTypeEquivalent(oldparams, newparams))
duke@1 2037 log.error(pos, "cant.inherit.diff.arg",
duke@1 2038 it.tsym, Type.toString(oldparams),
duke@1 2039 Type.toString(newparams));
duke@1 2040 }
duke@1 2041 checkClassBounds(pos, seensofar, it);
duke@1 2042 }
duke@1 2043 Type st = types.supertype(type);
duke@1 2044 if (st != null) checkClassBounds(pos, seensofar, st);
duke@1 2045 }
duke@1 2046
duke@1 2047 /** Enter interface into into set.
duke@1 2048 * If it existed already, issue a "repeated interface" error.
duke@1 2049 */
duke@1 2050 void checkNotRepeated(DiagnosticPosition pos, Type it, Set<Type> its) {
duke@1 2051 if (its.contains(it))
duke@1 2052 log.error(pos, "repeated.interface");
duke@1 2053 else {
duke@1 2054 its.add(it);
duke@1 2055 }
duke@1 2056 }
duke@1 2057
duke@1 2058 /* *************************************************************************
duke@1 2059 * Check annotations
duke@1 2060 **************************************************************************/
duke@1 2061
mcimadamore@629 2062 /**
mcimadamore@634 2063 * Recursively validate annotations values
mcimadamore@629 2064 */
mcimadamore@634 2065 void validateAnnotationTree(JCTree tree) {
mcimadamore@634 2066 class AnnotationValidator extends TreeScanner {
mcimadamore@629 2067 @Override
mcimadamore@629 2068 public void visitAnnotation(JCAnnotation tree) {
mcimadamore@629 2069 super.visitAnnotation(tree);
mcimadamore@629 2070 validateAnnotation(tree);
mcimadamore@629 2071 }
mcimadamore@629 2072 }
mcimadamore@634 2073 tree.accept(new AnnotationValidator());
mcimadamore@629 2074 }
mcimadamore@629 2075
duke@1 2076 /** Annotation types are restricted to primitives, String, an
duke@1 2077 * enum, an annotation, Class, Class<?>, Class<? extends
duke@1 2078 * Anything>, arrays of the preceding.
duke@1 2079 */
duke@1 2080 void validateAnnotationType(JCTree restype) {
duke@1 2081 // restype may be null if an error occurred, so don't bother validating it
duke@1 2082 if (restype != null) {
duke@1 2083 validateAnnotationType(restype.pos(), restype.type);
duke@1 2084 }
duke@1 2085 }
duke@1 2086
duke@1 2087 void validateAnnotationType(DiagnosticPosition pos, Type type) {
duke@1 2088 if (type.isPrimitive()) return;
duke@1 2089 if (types.isSameType(type, syms.stringType)) return;
duke@1 2090 if ((type.tsym.flags() & Flags.ENUM) != 0) return;
duke@1 2091 if ((type.tsym.flags() & Flags.ANNOTATION) != 0) return;
duke@1 2092 if (types.lowerBound(type).tsym == syms.classType.tsym) return;
duke@1 2093 if (types.isArray(type) && !types.isArray(types.elemtype(type))) {
duke@1 2094 validateAnnotationType(pos, types.elemtype(type));
duke@1 2095 return;
duke@1 2096 }
duke@1 2097 log.error(pos, "invalid.annotation.member.type");
duke@1 2098 }
duke@1 2099
duke@1 2100 /**
duke@1 2101 * "It is also a compile-time error if any method declared in an
duke@1 2102 * annotation type has a signature that is override-equivalent to
duke@1 2103 * that of any public or protected method declared in class Object
duke@1 2104 * or in the interface annotation.Annotation."
duke@1 2105 *
duke@1 2106 * @jls3 9.6 Annotation Types
duke@1 2107 */
duke@1 2108 void validateAnnotationMethod(DiagnosticPosition pos, MethodSymbol m) {
duke@1 2109 for (Type sup = syms.annotationType; sup.tag == CLASS; sup = types.supertype(sup)) {
duke@1 2110 Scope s = sup.tsym.members();
duke@1 2111 for (Scope.Entry e = s.lookup(m.name); e.scope != null; e = e.next()) {
duke@1 2112 if (e.sym.kind == MTH &&
duke@1 2113 (e.sym.flags() & (PUBLIC | PROTECTED)) != 0 &&
duke@1 2114 types.overrideEquivalent(m.type, e.sym.type))
duke@1 2115 log.error(pos, "intf.annotation.member.clash", e.sym, sup);
duke@1 2116 }
duke@1 2117 }
duke@1 2118 }
duke@1 2119
duke@1 2120 /** Check the annotations of a symbol.
duke@1 2121 */
duke@1 2122 public void validateAnnotations(List<JCAnnotation> annotations, Symbol s) {
duke@1 2123 if (skipAnnotations) return;
duke@1 2124 for (JCAnnotation a : annotations)
duke@1 2125 validateAnnotation(a, s);
duke@1 2126 }
duke@1 2127
jjg@308 2128 /** Check the type annotations
jjg@308 2129 */
jjg@308 2130 public void validateTypeAnnotations(List<JCTypeAnnotation> annotations, boolean isTypeParameter) {
jjg@308 2131 if (skipAnnotations) return;
jjg@308 2132 for (JCTypeAnnotation a : annotations)
jjg@308 2133 validateTypeAnnotation(a, isTypeParameter);
jjg@308 2134 }
jjg@308 2135
duke@1 2136 /** Check an annotation of a symbol.
duke@1 2137 */
duke@1 2138 public void validateAnnotation(JCAnnotation a, Symbol s) {
mcimadamore@634 2139 validateAnnotationTree(a);
duke@1 2140
duke@1 2141 if (!annotationApplicable(a, s))
duke@1 2142 log.error(a.pos(), "annotation.type.not.applicable");
duke@1 2143
duke@1 2144 if (a.annotationType.type.tsym == syms.overrideType.tsym) {
duke@1 2145 if (!isOverrider(s))
duke@1 2146 log.error(a.pos(), "method.does.not.override.superclass");
duke@1 2147 }
duke@1 2148 }
duke@1 2149
jjg@308 2150 public void validateTypeAnnotation(JCTypeAnnotation a, boolean isTypeParameter) {
jjg@308 2151 if (a.type == null)
jjg@308 2152 throw new AssertionError("annotation tree hasn't been attributed yet: " + a);
mcimadamore@634 2153 validateAnnotationTree(a);
jjg@308 2154
jjg@308 2155 if (!isTypeAnnotation(a, isTypeParameter))
jjg@308 2156 log.error(a.pos(), "annotation.type.not.applicable");
jjg@308 2157 }
jjg@308 2158
duke@1 2159 /** Is s a method symbol that overrides a method in a superclass? */
duke@1 2160 boolean isOverrider(Symbol s) {
duke@1 2161 if (s.kind != MTH || s.isStatic())
duke@1 2162 return false;
duke@1 2163 MethodSymbol m = (MethodSymbol)s;
duke@1 2164 TypeSymbol owner = (TypeSymbol)m.owner;
duke@1 2165 for (Type sup : types.closure(owner.type)) {
duke@1 2166 if (sup == owner.type)
duke@1 2167 continue; // skip "this"
duke@1 2168 Scope scope = sup.tsym.members();
duke@1 2169 for (Scope.Entry e = scope.lookup(m.name); e.scope != null; e = e.next()) {
duke@1 2170 if (!e.sym.isStatic() && m.overrides(e.sym, owner, types, true))
duke@1 2171 return true;
duke@1 2172 }
duke@1 2173 }
duke@1 2174 return false;
duke@1 2175 }
duke@1 2176
jjg@308 2177 /** Is the annotation applicable to type annotations */
jjg@308 2178 boolean isTypeAnnotation(JCTypeAnnotation a, boolean isTypeParameter) {
jjg@308 2179 Attribute.Compound atTarget =
jjg@308 2180 a.annotationType.type.tsym.attribute(syms.annotationTargetType.tsym);
jjg@308 2181 if (atTarget == null) return true;
jjg@308 2182 Attribute atValue = atTarget.member(names.value);
jjg@308 2183 if (!(atValue instanceof Attribute.Array)) return true; // error recovery
jjg@308 2184 Attribute.Array arr = (Attribute.Array) atValue;
jjg@308 2185 for (Attribute app : arr.values) {
jjg@308 2186 if (!(app instanceof Attribute.Enum)) return true; // recovery
jjg@308 2187 Attribute.Enum e = (Attribute.Enum) app;
jjg@308 2188 if (!isTypeParameter && e.value.name == names.TYPE_USE)
jjg@308 2189 return true;
jjg@308 2190 else if (isTypeParameter && e.value.name == names.TYPE_PARAMETER)
jjg@308 2191 return true;
jjg@308 2192 }
jjg@308 2193 return false;
jjg@308 2194 }
jjg@308 2195
duke@1 2196 /** Is the annotation applicable to the symbol? */
duke@1 2197 boolean annotationApplicable(JCAnnotation a, Symbol s) {
duke@1 2198 Attribute.Compound atTarget =
duke@1 2199 a.annotationType.type.tsym.attribute(syms.annotationTargetType.tsym);
duke@1 2200 if (atTarget == null) return true;
duke@1 2201 Attribute atValue = atTarget.member(names.value);
duke@1 2202 if (!(atValue instanceof Attribute.Array)) return true; // error recovery
duke@1 2203 Attribute.Array arr = (Attribute.Array) atValue;
duke@1 2204 for (Attribute app : arr.values) {
duke@1 2205 if (!(app instanceof Attribute.Enum)) return true; // recovery
duke@1 2206 Attribute.Enum e = (Attribute.Enum) app;
duke@1 2207 if (e.value.name == names.TYPE)
duke@1 2208 { if (s.kind == TYP) return true; }
duke@1 2209 else if (e.value.name == names.FIELD)
duke@1 2210 { if (s.kind == VAR && s.owner.kind != MTH) return true; }
duke@1 2211 else if (e.value.name == names.METHOD)
duke@1 2212 { if (s.kind == MTH && !s.isConstructor()) return true; }
duke@1 2213 else if (e.value.name == names.PARAMETER)
duke@1 2214 { if (s.kind == VAR &&
duke@1 2215 s.owner.kind == MTH &&
duke@1 2216 (s.flags() & PARAMETER) != 0)
duke@1 2217 return true;
duke@1 2218 }
duke@1 2219 else if (e.value.name == names.CONSTRUCTOR)
duke@1 2220 { if (s.kind == MTH && s.isConstructor()) return true; }
duke@1 2221 else if (e.value.name == names.LOCAL_VARIABLE)
duke@1 2222 { if (s.kind == VAR && s.owner.kind == MTH &&
duke@1 2223 (s.flags() & PARAMETER) == 0)
duke@1 2224 return true;
duke@1 2225 }
duke@1 2226 else if (e.value.name == names.ANNOTATION_TYPE)
duke@1 2227 { if (s.kind == TYP && (s.flags() & ANNOTATION) != 0)
duke@1 2228 return true;
duke@1 2229 }
duke@1 2230 else if (e.value.name == names.PACKAGE)
duke@1 2231 { if (s.kind == PCK) return true; }
jjg@308 2232 else if (e.value.name == names.TYPE_USE)
jjg@308 2233 { if (s.kind == TYP ||
jjg@308 2234 s.kind == VAR ||
jjg@308 2235 (s.kind == MTH && !s.isConstructor() &&
jjg@308 2236 s.type.getReturnType().tag != VOID))
jjg@308 2237 return true;
jjg@308 2238 }
duke@1 2239 else
duke@1 2240 return true; // recovery
duke@1 2241 }
duke@1 2242 return false;
duke@1 2243 }
duke@1 2244
duke@1 2245 /** Check an annotation value.
duke@1 2246 */
duke@1 2247 public void validateAnnotation(JCAnnotation a) {
duke@1 2248 if (a.type.isErroneous()) return;
duke@1 2249
mcimadamore@632 2250 // collect an inventory of the members (sorted alphabetically)
mcimadamore@632 2251 Set<MethodSymbol> members = new TreeSet<MethodSymbol>(new Comparator<Symbol>() {
mcimadamore@632 2252 public int compare(Symbol t, Symbol t1) {
mcimadamore@632 2253 return t.name.compareTo(t1.name);
mcimadamore@632 2254 }
mcimadamore@632 2255 });
duke@1 2256 for (Scope.Entry e = a.annotationType.type.tsym.members().elems;
duke@1 2257 e != null;
duke@1 2258 e = e.sibling)
duke@1 2259 if (e.sym.kind == MTH)
duke@1 2260 members.add((MethodSymbol) e.sym);
duke@1 2261
duke@1 2262 // count them off as they're annotated
duke@1 2263 for (JCTree arg : a.args) {
duke@1 2264 if (arg.getTag() != JCTree.ASSIGN) continue; // recovery
duke@1 2265 JCAssign assign = (JCAssign) arg;
duke@1 2266 Symbol m = TreeInfo.symbol(assign.lhs);
duke@1 2267 if (m == null || m.type.isErroneous()) continue;
duke@1 2268 if (!members.remove(m))
jjg@479 2269 log.error(assign.lhs.pos(), "duplicate.annotation.member.value",
duke@1 2270 m.name, a.type);
duke@1 2271 }
duke@1 2272
duke@1 2273 // all the remaining ones better have default values
mcimadamore@632 2274 ListBuffer<Name> missingDefaults = ListBuffer.lb();
mcimadamore@632 2275 for (MethodSymbol m : members) {
mcimadamore@632 2276 if (m.defaultValue == null && !m.type.isErroneous()) {
mcimadamore@632 2277 missingDefaults.append(m.name);
mcimadamore@632 2278 }
mcimadamore@632 2279 }
mcimadamore@632 2280 if (missingDefaults.nonEmpty()) {
mcimadamore@632 2281 String key = (missingDefaults.size() > 1)
mcimadamore@632 2282 ? "annotation.missing.default.value.1"
mcimadamore@632 2283 : "annotation.missing.default.value";
mcimadamore@632 2284 log.error(a.pos(), key, a.type, missingDefaults);
mcimadamore@632 2285 }
duke@1 2286
duke@1 2287 // special case: java.lang.annotation.Target must not have
duke@1 2288 // repeated values in its value member
duke@1 2289 if (a.annotationType.type.tsym != syms.annotationTargetType.tsym ||
duke@1 2290 a.args.tail == null)
duke@1 2291 return;
duke@1 2292
duke@1 2293 if (a.args.head.getTag() != JCTree.ASSIGN) return; // error recovery
duke@1 2294 JCAssign assign = (JCAssign) a.args.head;
duke@1 2295 Symbol m = TreeInfo.symbol(assign.lhs);
duke@1 2296 if (m.name != names.value) return;
duke@1 2297 JCTree rhs = assign.rhs;
duke@1 2298 if (rhs.getTag() != JCTree.NEWARRAY) return;
duke@1 2299 JCNewArray na = (JCNewArray) rhs;
duke@1 2300 Set<Symbol> targets = new HashSet<Symbol>();
duke@1 2301 for (JCTree elem : na.elems) {
duke@1 2302 if (!targets.add(TreeInfo.symbol(elem))) {
duke@1 2303 log.error(elem.pos(), "repeated.annotation.target");
duke@1 2304 }
duke@1 2305 }
duke@1 2306 }
duke@1 2307
duke@1 2308 void checkDeprecatedAnnotation(DiagnosticPosition pos, Symbol s) {
duke@1 2309 if (allowAnnotations &&
duke@1 2310 lint.isEnabled(Lint.LintCategory.DEP_ANN) &&
duke@1 2311 (s.flags() & DEPRECATED) != 0 &&
duke@1 2312 !syms.deprecatedType.isErroneous() &&
duke@1 2313 s.attribute(syms.deprecatedType.tsym) == null) {
jjg@612 2314 log.warning(Lint.LintCategory.DEP_ANN,
jjg@612 2315 pos, "missing.deprecated.annotation");
duke@1 2316 }
duke@1 2317 }
duke@1 2318
duke@1 2319 /* *************************************************************************
duke@1 2320 * Check for recursive annotation elements.
duke@1 2321 **************************************************************************/
duke@1 2322
duke@1 2323 /** Check for cycles in the graph of annotation elements.
duke@1 2324 */
duke@1 2325 void checkNonCyclicElements(JCClassDecl tree) {
duke@1 2326 if ((tree.sym.flags_field & ANNOTATION) == 0) return;
duke@1 2327 assert (tree.sym.flags_field & LOCKED) == 0;
duke@1 2328 try {
duke@1 2329 tree.sym.flags_field |= LOCKED;
duke@1 2330 for (JCTree def : tree.defs) {
duke@1 2331 if (def.getTag() != JCTree.METHODDEF) continue;
duke@1 2332 JCMethodDecl meth = (JCMethodDecl)def;
duke@1 2333 checkAnnotationResType(meth.pos(), meth.restype.type);
duke@1 2334 }
duke@1 2335 } finally {
duke@1 2336 tree.sym.flags_field &= ~LOCKED;
duke@1 2337 tree.sym.flags_field |= ACYCLIC_ANN;
duke@1 2338 }
duke@1 2339 }
duke@1 2340
duke@1 2341 void checkNonCyclicElementsInternal(DiagnosticPosition pos, TypeSymbol tsym) {
duke@1 2342 if ((tsym.flags_field & ACYCLIC_ANN) != 0)
duke@1 2343 return;
duke@1 2344 if ((tsym.flags_field & LOCKED) != 0) {
duke@1 2345 log.error(pos, "cyclic.annotation.element");
duke@1 2346 return;
duke@1 2347 }
duke@1 2348 try {
duke@1 2349 tsym.flags_field |= LOCKED;
duke@1 2350 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
duke@1 2351 Symbol s = e.sym;
duke@1 2352 if (s.kind != Kinds.MTH)
duke@1 2353 continue;
duke@1 2354 checkAnnotationResType(pos, ((MethodSymbol)s).type.getReturnType());
duke@1 2355 }
duke@1 2356 } finally {
duke@1 2357 tsym.flags_field &= ~LOCKED;
duke@1 2358 tsym.flags_field |= ACYCLIC_ANN;
duke@1 2359 }
duke@1 2360 }
duke@1 2361
duke@1 2362 void checkAnnotationResType(DiagnosticPosition pos, Type type) {
duke@1 2363 switch (type.tag) {
duke@1 2364 case TypeTags.CLASS:
duke@1 2365 if ((type.tsym.flags() & ANNOTATION) != 0)
duke@1 2366 checkNonCyclicElementsInternal(pos, type.tsym);
duke@1 2367 break;
duke@1 2368 case TypeTags.ARRAY:
duke@1 2369 checkAnnotationResType(pos, types.elemtype(type));
duke@1 2370 break;
duke@1 2371 default:
duke@1 2372 break; // int etc
duke@1 2373 }
duke@1 2374 }
duke@1 2375
duke@1 2376 /* *************************************************************************
duke@1 2377 * Check for cycles in the constructor call graph.
duke@1 2378 **************************************************************************/
duke@1 2379
duke@1 2380 /** Check for cycles in the graph of constructors calling other
duke@1 2381 * constructors.
duke@1 2382 */
duke@1 2383 void checkCyclicConstructors(JCClassDecl tree) {
duke@1 2384 Map<Symbol,Symbol> callMap = new HashMap<Symbol, Symbol>();
duke@1 2385
duke@1 2386 // enter each constructor this-call into the map
duke@1 2387 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
duke@1 2388 JCMethodInvocation app = TreeInfo.firstConstructorCall(l.head);
duke@1 2389 if (app == null) continue;
duke@1 2390 JCMethodDecl meth = (JCMethodDecl) l.head;
duke@1 2391 if (TreeInfo.name(app.meth) == names._this) {
duke@1 2392 callMap.put(meth.sym, TreeInfo.symbol(app.meth));
duke@1 2393 } else {
duke@1 2394 meth.sym.flags_field |= ACYCLIC;
duke@1 2395 }
duke@1 2396 }
duke@1 2397
duke@1 2398 // Check for cycles in the map
duke@1 2399 Symbol[] ctors = new Symbol[0];
duke@1 2400 ctors = callMap.keySet().toArray(ctors);
duke@1 2401 for (Symbol caller : ctors) {
duke@1 2402 checkCyclicConstructor(tree, caller, callMap);
duke@1 2403 }
duke@1 2404 }
duke@1 2405
duke@1 2406 /** Look in the map to see if the given constructor is part of a
duke@1 2407 * call cycle.
duke@1 2408 */
duke@1 2409 private void checkCyclicConstructor(JCClassDecl tree, Symbol ctor,
duke@1 2410 Map<Symbol,Symbol> callMap) {
duke@1 2411 if (ctor != null && (ctor.flags_field & ACYCLIC) == 0) {
duke@1 2412 if ((ctor.flags_field & LOCKED) != 0) {
duke@1 2413 log.error(TreeInfo.diagnosticPositionFor(ctor, tree),
duke@1 2414 "recursive.ctor.invocation");
duke@1 2415 } else {
duke@1 2416 ctor.flags_field |= LOCKED;
duke@1 2417 checkCyclicConstructor(tree, callMap.remove(ctor), callMap);
duke@1 2418 ctor.flags_field &= ~LOCKED;
duke@1 2419 }
duke@1 2420 ctor.flags_field |= ACYCLIC;
duke@1 2421 }
duke@1 2422 }
duke@1 2423
duke@1 2424 /* *************************************************************************
duke@1 2425 * Miscellaneous
duke@1 2426 **************************************************************************/
duke@1 2427
duke@1 2428 /**
duke@1 2429 * Return the opcode of the operator but emit an error if it is an
duke@1 2430 * error.
duke@1 2431 * @param pos position for error reporting.
duke@1 2432 * @param operator an operator
duke@1 2433 * @param tag a tree tag
duke@1 2434 * @param left type of left hand side
duke@1 2435 * @param right type of right hand side
duke@1 2436 */
duke@1 2437 int checkOperator(DiagnosticPosition pos,
duke@1 2438 OperatorSymbol operator,
duke@1 2439 int tag,
duke@1 2440 Type left,
duke@1 2441 Type right) {
duke@1 2442 if (operator.opcode == ByteCodes.error) {
duke@1 2443 log.error(pos,
duke@1 2444 "operator.cant.be.applied",
duke@1 2445 treeinfo.operatorName(tag),
mcimadamore@80 2446 List.of(left, right));
duke@1 2447 }
duke@1 2448 return operator.opcode;
duke@1 2449 }
duke@1 2450
duke@1 2451
duke@1 2452 /**
duke@1 2453 * Check for division by integer constant zero
duke@1 2454 * @param pos Position for error reporting.
duke@1 2455 * @param operator The operator for the expression
duke@1 2456 * @param operand The right hand operand for the expression
duke@1 2457 */
duke@1 2458 void checkDivZero(DiagnosticPosition pos, Symbol operator, Type operand) {
duke@1 2459 if (operand.constValue() != null
duke@1 2460 && lint.isEnabled(Lint.LintCategory.DIVZERO)
duke@1 2461 && operand.tag <= LONG
duke@1 2462 && ((Number) (operand.constValue())).longValue() == 0) {
duke@1 2463 int opc = ((OperatorSymbol)operator).opcode;
duke@1 2464 if (opc == ByteCodes.idiv || opc == ByteCodes.imod
duke@1 2465 || opc == ByteCodes.ldiv || opc == ByteCodes.lmod) {
jjg@612 2466 log.warning(Lint.LintCategory.DIVZERO, pos, "div.zero");
duke@1 2467 }
duke@1 2468 }
duke@1 2469 }
duke@1 2470
duke@1 2471 /**
duke@1 2472 * Check for empty statements after if
duke@1 2473 */
duke@1 2474 void checkEmptyIf(JCIf tree) {
duke@1 2475 if (tree.thenpart.getTag() == JCTree.SKIP && tree.elsepart == null && lint.isEnabled(Lint.LintCategory.EMPTY))
jjg@612 2476 log.warning(Lint.LintCategory.EMPTY, tree.thenpart.pos(), "empty.if");
duke@1 2477 }
duke@1 2478
duke@1 2479 /** Check that symbol is unique in given scope.
duke@1 2480 * @param pos Position for error reporting.
duke@1 2481 * @param sym The symbol.
duke@1 2482 * @param s The scope.
duke@1 2483 */
duke@1 2484 boolean checkUnique(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 2485 if (sym.type.isErroneous())
duke@1 2486 return true;
duke@1 2487 if (sym.owner.name == names.any) return false;
duke@1 2488 for (Scope.Entry e = s.lookup(sym.name); e.scope == s; e = e.next()) {
duke@1 2489 if (sym != e.sym &&
duke@1 2490 sym.kind == e.sym.kind &&
duke@1 2491 sym.name != names.error &&
mcimadamore@252 2492 (sym.kind != MTH || types.hasSameArgs(types.erasure(sym.type), types.erasure(e.sym.type)))) {
duke@1 2493 if ((sym.flags() & VARARGS) != (e.sym.flags() & VARARGS))
duke@1 2494 varargsDuplicateError(pos, sym, e.sym);
mcimadamore@252 2495 else if (sym.kind == MTH && !types.overrideEquivalent(sym.type, e.sym.type))
mcimadamore@252 2496 duplicateErasureError(pos, sym, e.sym);
duke@1 2497 else
duke@1 2498 duplicateError(pos, e.sym);
duke@1 2499 return false;
duke@1 2500 }
duke@1 2501 }
duke@1 2502 return true;
duke@1 2503 }
mcimadamore@252 2504 //where
mcimadamore@252 2505 /** Report duplicate declaration error.
mcimadamore@252 2506 */
mcimadamore@252 2507 void duplicateErasureError(DiagnosticPosition pos, Symbol sym1, Symbol sym2) {
mcimadamore@252 2508 if (!sym1.type.isErroneous() && !sym2.type.isErroneous()) {
mcimadamore@252 2509 log.error(pos, "name.clash.same.erasure", sym1, sym2);
mcimadamore@252 2510 }
mcimadamore@252 2511 }
duke@1 2512
duke@1 2513 /** Check that single-type import is not already imported or top-level defined,
duke@1 2514 * but make an exception for two single-type imports which denote the same type.
duke@1 2515 * @param pos Position for error reporting.
duke@1 2516 * @param sym The symbol.
duke@1 2517 * @param s The scope
duke@1 2518 */
duke@1 2519 boolean checkUniqueImport(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 2520 return checkUniqueImport(pos, sym, s, false);
duke@1 2521 }
duke@1 2522
duke@1 2523 /** Check that static single-type import is not already imported or top-level defined,
duke@1 2524 * but make an exception for two single-type imports which denote the same type.
duke@1 2525 * @param pos Position for error reporting.
duke@1 2526 * @param sym The symbol.
duke@1 2527 * @param s The scope
duke@1 2528 * @param staticImport Whether or not this was a static import
duke@1 2529 */
duke@1 2530 boolean checkUniqueStaticImport(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 2531 return checkUniqueImport(pos, sym, s, true);
duke@1 2532 }
duke@1 2533
duke@1 2534 /** Check that single-type import is not already imported or top-level defined,
duke@1 2535 * but make an exception for two single-type imports which denote the same type.
duke@1 2536 * @param pos Position for error reporting.
duke@1 2537 * @param sym The symbol.
duke@1 2538 * @param s The scope.
duke@1 2539 * @param staticImport Whether or not this was a static import
duke@1 2540 */
duke@1 2541 private boolean checkUniqueImport(DiagnosticPosition pos, Symbol sym, Scope s, boolean staticImport) {
duke@1 2542 for (Scope.Entry e = s.lookup(sym.name); e.scope != null; e = e.next()) {
duke@1 2543 // is encountered class entered via a class declaration?
duke@1 2544 boolean isClassDecl = e.scope == s;
duke@1 2545 if ((isClassDecl || sym != e.sym) &&
duke@1 2546 sym.kind == e.sym.kind &&
duke@1 2547 sym.name != names.error) {
duke@1 2548 if (!e.sym.type.isErroneous()) {
duke@1 2549 String what = e.sym.toString();
duke@1 2550 if (!isClassDecl) {
duke@1 2551 if (staticImport)
duke@1 2552 log.error(pos, "already.defined.static.single.import", what);
duke@1 2553 else
duke@1 2554 log.error(pos, "already.defined.single.import", what);
duke@1 2555 }
duke@1 2556 else if (sym != e.sym)
duke@1 2557 log.error(pos, "already.defined.this.unit", what);
duke@1 2558 }
duke@1 2559 return false;
duke@1 2560 }
duke@1 2561 }
duke@1 2562 return true;
duke@1 2563 }
duke@1 2564
duke@1 2565 /** Check that a qualified name is in canonical form (for import decls).
duke@1 2566 */
duke@1 2567 public void checkCanonical(JCTree tree) {
duke@1 2568 if (!isCanonical(tree))
duke@1 2569 log.error(tree.pos(), "import.requires.canonical",
duke@1 2570 TreeInfo.symbol(tree));
duke@1 2571 }
duke@1 2572 // where
duke@1 2573 private boolean isCanonical(JCTree tree) {
duke@1 2574 while (tree.getTag() == JCTree.SELECT) {
duke@1 2575 JCFieldAccess s = (JCFieldAccess) tree;
duke@1 2576 if (s.sym.owner != TreeInfo.symbol(s.selected))
duke@1 2577 return false;
duke@1 2578 tree = s.selected;
duke@1 2579 }
duke@1 2580 return true;
duke@1 2581 }
duke@1 2582
duke@1 2583 private class ConversionWarner extends Warner {
duke@1 2584 final String key;
duke@1 2585 final Type found;
duke@1 2586 final Type expected;
duke@1 2587 public ConversionWarner(DiagnosticPosition pos, String key, Type found, Type expected) {
duke@1 2588 super(pos);
duke@1 2589 this.key = key;
duke@1 2590 this.found = found;
duke@1 2591 this.expected = expected;
duke@1 2592 }
duke@1 2593
jjg@398 2594 @Override
duke@1 2595 public void warnUnchecked() {
duke@1 2596 boolean warned = this.warned;
duke@1 2597 super.warnUnchecked();
duke@1 2598 if (warned) return; // suppress redundant diagnostics
mcimadamore@89 2599 Object problem = diags.fragment(key);
duke@1 2600 Check.this.warnUnchecked(pos(), "prob.found.req", problem, found, expected);
duke@1 2601 }
duke@1 2602 }
duke@1 2603
duke@1 2604 public Warner castWarner(DiagnosticPosition pos, Type found, Type expected) {
duke@1 2605 return new ConversionWarner(pos, "unchecked.cast.to.type", found, expected);
duke@1 2606 }
duke@1 2607
duke@1 2608 public Warner convertWarner(DiagnosticPosition pos, Type found, Type expected) {
duke@1 2609 return new ConversionWarner(pos, "unchecked.assign", found, expected);
duke@1 2610 }
duke@1 2611 }

mercurial