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

Mon, 16 Sep 2013 14:13:44 +0200

author
jlahoda
date
Mon, 16 Sep 2013 14:13:44 +0200
changeset 2028
4ce8148ffc4f
parent 2024
5d2d484a1216
child 2038
8d1c48de706d
permissions
-rw-r--r--

8021112: Spurious unchecked warning reported by javac
6480588: No way to suppress deprecation warnings when implementing deprecated interface
Summary: Fixing DeferredLintHandler configuration, so lint warnings are reported with correct @SuppressWarnings settings
Reviewed-by: jjg, vromero

duke@1 1 /*
jjg@1492 2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.javac.comp;
duke@1 27
duke@1 28 import java.util.*;
jjg@1521 29
ohrstrom@1384 30 import javax.tools.JavaFileManager;
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.code.Lint;
duke@1 40 import com.sun.tools.javac.code.Lint.LintCategory;
duke@1 41 import com.sun.tools.javac.code.Type.*;
duke@1 42 import com.sun.tools.javac.code.Symbol.*;
mcimadamore@1347 43 import com.sun.tools.javac.comp.DeferredAttr.DeferredAttrContext;
mcimadamore@1337 44 import com.sun.tools.javac.comp.Infer.InferenceContext;
mcimadamore@1550 45 import com.sun.tools.javac.comp.Infer.FreeTypeListener;
mcimadamore@1510 46 import com.sun.tools.javac.tree.JCTree.*;
mcimadamore@1510 47 import com.sun.tools.javac.tree.JCTree.JCPolyExpression.*;
duke@1 48
duke@1 49 import static com.sun.tools.javac.code.Flags.*;
jjg@1127 50 import static com.sun.tools.javac.code.Flags.ANNOTATION;
jjg@1127 51 import static com.sun.tools.javac.code.Flags.SYNCHRONIZED;
duke@1 52 import static com.sun.tools.javac.code.Kinds.*;
jjg@1374 53 import static com.sun.tools.javac.code.TypeTag.*;
jjg@1374 54 import static com.sun.tools.javac.code.TypeTag.WILDCARD;
duke@1 55
jjg@1127 56 import static com.sun.tools.javac.tree.JCTree.Tag.*;
jjg@700 57
duke@1 58 /** Type checking helper class for the attribution phase.
duke@1 59 *
jjg@581 60 * <p><b>This is NOT part of any supported API.
jjg@581 61 * If you write code that depends on this, you do so at your own risk.
duke@1 62 * This code and its internal interfaces are subject to change or
duke@1 63 * deletion without notice.</b>
duke@1 64 */
duke@1 65 public class Check {
duke@1 66 protected static final Context.Key<Check> checkKey =
duke@1 67 new Context.Key<Check>();
duke@1 68
jjg@113 69 private final Names names;
duke@1 70 private final Log log;
mcimadamore@1219 71 private final Resolve rs;
duke@1 72 private final Symtab syms;
mcimadamore@690 73 private final Enter enter;
mcimadamore@1347 74 private final DeferredAttr deferredAttr;
duke@1 75 private final Infer infer;
duke@1 76 private final Types types;
mcimadamore@89 77 private final JCDiagnostic.Factory diags;
mcimadamore@359 78 private boolean warnOnSyntheticConflicts;
jjg@576 79 private boolean suppressAbortOnBadClassFile;
mcimadamore@852 80 private boolean enableSunApiLintControl;
duke@1 81 private final TreeInfo treeinfo;
ohrstrom@1384 82 private final JavaFileManager fileManager;
jjg@1569 83 private final Profile profile;
duke@1 84
duke@1 85 // The set of lint options currently in effect. It is initialized
duke@1 86 // from the context, and then is set/reset as needed by Attr as it
duke@1 87 // visits all the various parts of the trees during attribution.
duke@1 88 private Lint lint;
duke@1 89
mcimadamore@795 90 // The method being analyzed in Attr - it is set/reset as needed by
mcimadamore@795 91 // Attr as it visits new method declarations.
mcimadamore@795 92 private MethodSymbol method;
mcimadamore@795 93
duke@1 94 public static Check instance(Context context) {
duke@1 95 Check instance = context.get(checkKey);
duke@1 96 if (instance == null)
duke@1 97 instance = new Check(context);
duke@1 98 return instance;
duke@1 99 }
duke@1 100
duke@1 101 protected Check(Context context) {
duke@1 102 context.put(checkKey, this);
duke@1 103
jjg@113 104 names = Names.instance(context);
jjg@1521 105 dfltTargetMeta = new Name[] { names.PACKAGE, names.TYPE,
jjg@1521 106 names.FIELD, names.METHOD, names.CONSTRUCTOR,
jjg@1521 107 names.ANNOTATION_TYPE, names.LOCAL_VARIABLE, names.PARAMETER};
duke@1 108 log = Log.instance(context);
mcimadamore@1219 109 rs = Resolve.instance(context);
duke@1 110 syms = Symtab.instance(context);
mcimadamore@690 111 enter = Enter.instance(context);
mcimadamore@1347 112 deferredAttr = DeferredAttr.instance(context);
duke@1 113 infer = Infer.instance(context);
jjg@1569 114 types = Types.instance(context);
mcimadamore@89 115 diags = JCDiagnostic.Factory.instance(context);
duke@1 116 Options options = Options.instance(context);
duke@1 117 lint = Lint.instance(context);
duke@1 118 treeinfo = TreeInfo.instance(context);
ohrstrom@1384 119 fileManager = context.get(JavaFileManager.class);
duke@1 120
duke@1 121 Source source = Source.instance(context);
duke@1 122 allowGenerics = source.allowGenerics();
mcimadamore@1219 123 allowVarargs = source.allowVarargs();
duke@1 124 allowAnnotations = source.allowAnnotations();
jjg@398 125 allowCovariantReturns = source.allowCovariantReturns();
mcimadamore@795 126 allowSimplifiedVarargs = source.allowSimplifiedVarargs();
mcimadamore@1393 127 allowDefaultMethods = source.allowDefaultMethods();
mcimadamore@1415 128 allowStrictMethodClashCheck = source.allowStrictMethodClashCheck();
jjg@1157 129 complexInference = options.isSet("complexinference");
jjg@700 130 warnOnSyntheticConflicts = options.isSet("warnOnSyntheticConflicts");
jjg@700 131 suppressAbortOnBadClassFile = options.isSet("suppressAbortOnBadClassFile");
mcimadamore@852 132 enableSunApiLintControl = options.isSet("enableSunApiLintControl");
duke@1 133
jjg@398 134 Target target = Target.instance(context);
jjg@398 135 syntheticNameChar = target.syntheticNameChar();
jjg@398 136
jjg@1569 137 profile = Profile.instance(context);
jjg@1569 138
duke@1 139 boolean verboseDeprecated = lint.isEnabled(LintCategory.DEPRECATION);
duke@1 140 boolean verboseUnchecked = lint.isEnabled(LintCategory.UNCHECKED);
jjg@377 141 boolean verboseSunApi = lint.isEnabled(LintCategory.SUNAPI);
jjg@60 142 boolean enforceMandatoryWarnings = source.enforceMandatoryWarnings();
duke@1 143
jjg@60 144 deprecationHandler = new MandatoryWarningHandler(log, verboseDeprecated,
jjg@612 145 enforceMandatoryWarnings, "deprecated", LintCategory.DEPRECATION);
jjg@60 146 uncheckedHandler = new MandatoryWarningHandler(log, verboseUnchecked,
jjg@612 147 enforceMandatoryWarnings, "unchecked", LintCategory.UNCHECKED);
jjg@377 148 sunApiHandler = new MandatoryWarningHandler(log, verboseSunApi,
jjg@612 149 enforceMandatoryWarnings, "sunapi", null);
mcimadamore@852 150
jlahoda@2028 151 deferredLintHandler = DeferredLintHandler.instance(context);
duke@1 152 }
duke@1 153
duke@1 154 /** Switch: generics enabled?
duke@1 155 */
duke@1 156 boolean allowGenerics;
duke@1 157
mcimadamore@1219 158 /** Switch: varargs enabled?
mcimadamore@1219 159 */
mcimadamore@1219 160 boolean allowVarargs;
mcimadamore@1219 161
duke@1 162 /** Switch: annotations enabled?
duke@1 163 */
duke@1 164 boolean allowAnnotations;
duke@1 165
jjg@398 166 /** Switch: covariant returns enabled?
jjg@398 167 */
jjg@398 168 boolean allowCovariantReturns;
jjg@398 169
mcimadamore@795 170 /** Switch: simplified varargs enabled?
mcimadamore@795 171 */
mcimadamore@795 172 boolean allowSimplifiedVarargs;
mcimadamore@795 173
mcimadamore@1393 174 /** Switch: default methods enabled?
mcimadamore@1393 175 */
mcimadamore@1393 176 boolean allowDefaultMethods;
mcimadamore@1393 177
mcimadamore@1393 178 /** Switch: should unrelated return types trigger a method clash?
mcimadamore@1393 179 */
mcimadamore@1393 180 boolean allowStrictMethodClashCheck;
mcimadamore@1393 181
duke@1 182 /** Switch: -complexinference option set?
duke@1 183 */
duke@1 184 boolean complexInference;
duke@1 185
jjg@398 186 /** Character for synthetic names
jjg@398 187 */
jjg@398 188 char syntheticNameChar;
jjg@398 189
duke@1 190 /** A table mapping flat names of all compiled classes in this run to their
duke@1 191 * symbols; maintained from outside.
duke@1 192 */
duke@1 193 public Map<Name,ClassSymbol> compiled = new HashMap<Name, ClassSymbol>();
duke@1 194
duke@1 195 /** A handler for messages about deprecated usage.
duke@1 196 */
duke@1 197 private MandatoryWarningHandler deprecationHandler;
duke@1 198
duke@1 199 /** A handler for messages about unchecked or unsafe usage.
duke@1 200 */
duke@1 201 private MandatoryWarningHandler uncheckedHandler;
duke@1 202
jjg@582 203 /** A handler for messages about using proprietary API.
jjg@377 204 */
jjg@377 205 private MandatoryWarningHandler sunApiHandler;
duke@1 206
mcimadamore@852 207 /** A handler for deferred lint warnings.
mcimadamore@852 208 */
mcimadamore@852 209 private DeferredLintHandler deferredLintHandler;
mcimadamore@852 210
duke@1 211 /* *************************************************************************
duke@1 212 * Errors and Warnings
duke@1 213 **************************************************************************/
duke@1 214
duke@1 215 Lint setLint(Lint newLint) {
duke@1 216 Lint prev = lint;
duke@1 217 lint = newLint;
duke@1 218 return prev;
duke@1 219 }
duke@1 220
mcimadamore@795 221 MethodSymbol setMethod(MethodSymbol newMethod) {
mcimadamore@795 222 MethodSymbol prev = method;
mcimadamore@795 223 method = newMethod;
mcimadamore@795 224 return prev;
mcimadamore@795 225 }
mcimadamore@795 226
duke@1 227 /** Warn about deprecated symbol.
duke@1 228 * @param pos Position to be used for error reporting.
duke@1 229 * @param sym The deprecated symbol.
duke@1 230 */
duke@1 231 void warnDeprecated(DiagnosticPosition pos, Symbol sym) {
duke@1 232 if (!lint.isSuppressed(LintCategory.DEPRECATION))
duke@1 233 deprecationHandler.report(pos, "has.been.deprecated", sym, sym.location());
duke@1 234 }
duke@1 235
duke@1 236 /** Warn about unchecked operation.
duke@1 237 * @param pos Position to be used for error reporting.
duke@1 238 * @param msg A string describing the problem.
duke@1 239 */
duke@1 240 public void warnUnchecked(DiagnosticPosition pos, String msg, Object... args) {
duke@1 241 if (!lint.isSuppressed(LintCategory.UNCHECKED))
duke@1 242 uncheckedHandler.report(pos, msg, args);
duke@1 243 }
duke@1 244
mcimadamore@580 245 /** Warn about unsafe vararg method decl.
mcimadamore@580 246 * @param pos Position to be used for error reporting.
mcimadamore@580 247 */
mcimadamore@795 248 void warnUnsafeVararg(DiagnosticPosition pos, String key, Object... args) {
mcimadamore@795 249 if (lint.isEnabled(LintCategory.VARARGS) && allowSimplifiedVarargs)
mcimadamore@795 250 log.warning(LintCategory.VARARGS, pos, key, args);
mcimadamore@580 251 }
mcimadamore@580 252
jjg@582 253 /** Warn about using proprietary API.
jjg@377 254 * @param pos Position to be used for error reporting.
jjg@377 255 * @param msg A string describing the problem.
jjg@377 256 */
jjg@377 257 public void warnSunApi(DiagnosticPosition pos, String msg, Object... args) {
jjg@377 258 if (!lint.isSuppressed(LintCategory.SUNAPI))
jjg@377 259 sunApiHandler.report(pos, msg, args);
jjg@377 260 }
jjg@377 261
jjg@505 262 public void warnStatic(DiagnosticPosition pos, String msg, Object... args) {
jjg@505 263 if (lint.isEnabled(LintCategory.STATIC))
jjg@612 264 log.warning(LintCategory.STATIC, pos, msg, args);
jjg@505 265 }
jjg@505 266
duke@1 267 /**
duke@1 268 * Report any deferred diagnostics.
duke@1 269 */
duke@1 270 public void reportDeferredDiagnostics() {
duke@1 271 deprecationHandler.reportDeferredDiagnostic();
duke@1 272 uncheckedHandler.reportDeferredDiagnostic();
jjg@377 273 sunApiHandler.reportDeferredDiagnostic();
duke@1 274 }
duke@1 275
duke@1 276
duke@1 277 /** Report a failure to complete a class.
duke@1 278 * @param pos Position to be used for error reporting.
duke@1 279 * @param ex The failure to report.
duke@1 280 */
duke@1 281 public Type completionError(DiagnosticPosition pos, CompletionFailure ex) {
mcimadamore@1613 282 log.error(JCDiagnostic.DiagnosticFlag.NON_DEFERRABLE, pos, "cant.access", ex.sym, ex.getDetailValue());
jjg@576 283 if (ex instanceof ClassReader.BadClassFile
jjg@576 284 && !suppressAbortOnBadClassFile) throw new Abort();
duke@1 285 else return syms.errType;
duke@1 286 }
duke@1 287
duke@1 288 /** Report an error that wrong type tag was found.
duke@1 289 * @param pos Position to be used for error reporting.
duke@1 290 * @param required An internationalized string describing the type tag
duke@1 291 * required.
duke@1 292 * @param found The type that was found.
duke@1 293 */
duke@1 294 Type typeTagError(DiagnosticPosition pos, Object required, Object found) {
jrose@267 295 // this error used to be raised by the parser,
jrose@267 296 // but has been delayed to this point:
jjg@1374 297 if (found instanceof Type && ((Type)found).hasTag(VOID)) {
jrose@267 298 log.error(pos, "illegal.start.of.type");
jrose@267 299 return syms.errType;
jrose@267 300 }
duke@1 301 log.error(pos, "type.found.req", found, required);
jjg@110 302 return types.createErrorType(found instanceof Type ? (Type)found : syms.errType);
duke@1 303 }
duke@1 304
duke@1 305 /** Report an error that symbol cannot be referenced before super
duke@1 306 * has been called.
duke@1 307 * @param pos Position to be used for error reporting.
duke@1 308 * @param sym The referenced symbol.
duke@1 309 */
duke@1 310 void earlyRefError(DiagnosticPosition pos, Symbol sym) {
duke@1 311 log.error(pos, "cant.ref.before.ctor.called", sym);
duke@1 312 }
duke@1 313
duke@1 314 /** Report duplicate declaration error.
duke@1 315 */
duke@1 316 void duplicateError(DiagnosticPosition pos, Symbol sym) {
duke@1 317 if (!sym.type.isErroneous()) {
mcimadamore@1085 318 Symbol location = sym.location();
mcimadamore@1085 319 if (location.kind == MTH &&
mcimadamore@1085 320 ((MethodSymbol)location).isStaticOrInstanceInit()) {
mcimadamore@1085 321 log.error(pos, "already.defined.in.clinit", kindName(sym), sym,
mcimadamore@1085 322 kindName(sym.location()), kindName(sym.location().enclClass()),
mcimadamore@1085 323 sym.location().enclClass());
mcimadamore@1085 324 } else {
mcimadamore@1085 325 log.error(pos, "already.defined", kindName(sym), sym,
mcimadamore@1085 326 kindName(sym.location()), sym.location());
mcimadamore@1085 327 }
duke@1 328 }
duke@1 329 }
duke@1 330
duke@1 331 /** Report array/varargs duplicate declaration
duke@1 332 */
duke@1 333 void varargsDuplicateError(DiagnosticPosition pos, Symbol sym1, Symbol sym2) {
duke@1 334 if (!sym1.type.isErroneous() && !sym2.type.isErroneous()) {
duke@1 335 log.error(pos, "array.and.varargs", sym1, sym2, sym2.location());
duke@1 336 }
duke@1 337 }
duke@1 338
duke@1 339 /* ************************************************************************
duke@1 340 * duplicate declaration checking
duke@1 341 *************************************************************************/
duke@1 342
duke@1 343 /** Check that variable does not hide variable with same name in
duke@1 344 * immediately enclosing local scope.
duke@1 345 * @param pos Position for error reporting.
duke@1 346 * @param v The symbol.
duke@1 347 * @param s The scope.
duke@1 348 */
duke@1 349 void checkTransparentVar(DiagnosticPosition pos, VarSymbol v, Scope s) {
duke@1 350 if (s.next != null) {
duke@1 351 for (Scope.Entry e = s.next.lookup(v.name);
duke@1 352 e.scope != null && e.sym.owner == v.owner;
duke@1 353 e = e.next()) {
duke@1 354 if (e.sym.kind == VAR &&
duke@1 355 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
duke@1 356 v.name != names.error) {
duke@1 357 duplicateError(pos, e.sym);
duke@1 358 return;
duke@1 359 }
duke@1 360 }
duke@1 361 }
duke@1 362 }
duke@1 363
duke@1 364 /** Check that a class or interface does not hide a class or
duke@1 365 * interface with same name in immediately enclosing local scope.
duke@1 366 * @param pos Position for error reporting.
duke@1 367 * @param c The symbol.
duke@1 368 * @param s The scope.
duke@1 369 */
duke@1 370 void checkTransparentClass(DiagnosticPosition pos, ClassSymbol c, Scope s) {
duke@1 371 if (s.next != null) {
duke@1 372 for (Scope.Entry e = s.next.lookup(c.name);
duke@1 373 e.scope != null && e.sym.owner == c.owner;
duke@1 374 e = e.next()) {
jjg@1374 375 if (e.sym.kind == TYP && !e.sym.type.hasTag(TYPEVAR) &&
duke@1 376 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
duke@1 377 c.name != names.error) {
duke@1 378 duplicateError(pos, e.sym);
duke@1 379 return;
duke@1 380 }
duke@1 381 }
duke@1 382 }
duke@1 383 }
duke@1 384
duke@1 385 /** Check that class does not have the same name as one of
duke@1 386 * its enclosing classes, or as a class defined in its enclosing scope.
duke@1 387 * return true if class is unique in its enclosing scope.
duke@1 388 * @param pos Position for error reporting.
duke@1 389 * @param name The class name.
duke@1 390 * @param s The enclosing scope.
duke@1 391 */
duke@1 392 boolean checkUniqueClassName(DiagnosticPosition pos, Name name, Scope s) {
duke@1 393 for (Scope.Entry e = s.lookup(name); e.scope == s; e = e.next()) {
duke@1 394 if (e.sym.kind == TYP && e.sym.name != names.error) {
duke@1 395 duplicateError(pos, e.sym);
duke@1 396 return false;
duke@1 397 }
duke@1 398 }
duke@1 399 for (Symbol sym = s.owner; sym != null; sym = sym.owner) {
duke@1 400 if (sym.kind == TYP && sym.name == name && sym.name != names.error) {
duke@1 401 duplicateError(pos, sym);
duke@1 402 return true;
duke@1 403 }
duke@1 404 }
duke@1 405 return true;
duke@1 406 }
duke@1 407
duke@1 408 /* *************************************************************************
duke@1 409 * Class name generation
duke@1 410 **************************************************************************/
duke@1 411
duke@1 412 /** Return name of local class.
jjg@1358 413 * This is of the form {@code <enclClass> $ n <classname> }
duke@1 414 * where
duke@1 415 * enclClass is the flat name of the enclosing class,
duke@1 416 * classname is the simple name of the local class
duke@1 417 */
duke@1 418 Name localClassName(ClassSymbol c) {
duke@1 419 for (int i=1; ; i++) {
duke@1 420 Name flatname = names.
duke@1 421 fromString("" + c.owner.enclClass().flatname +
jjg@398 422 syntheticNameChar + i +
duke@1 423 c.name);
duke@1 424 if (compiled.get(flatname) == null) return flatname;
duke@1 425 }
duke@1 426 }
duke@1 427
duke@1 428 /* *************************************************************************
duke@1 429 * Type Checking
duke@1 430 **************************************************************************/
duke@1 431
mcimadamore@1238 432 /**
mcimadamore@1238 433 * A check context is an object that can be used to perform compatibility
mcimadamore@1238 434 * checks - depending on the check context, meaning of 'compatibility' might
mcimadamore@1238 435 * vary significantly.
mcimadamore@1238 436 */
mcimadamore@1348 437 public interface CheckContext {
mcimadamore@1238 438 /**
mcimadamore@1238 439 * Is type 'found' compatible with type 'req' in given context
mcimadamore@1238 440 */
mcimadamore@1238 441 boolean compatible(Type found, Type req, Warner warn);
mcimadamore@1238 442 /**
mcimadamore@1238 443 * Report a check error
mcimadamore@1238 444 */
mcimadamore@1296 445 void report(DiagnosticPosition pos, JCDiagnostic details);
mcimadamore@1238 446 /**
mcimadamore@1238 447 * Obtain a warner for this check context
mcimadamore@1238 448 */
mcimadamore@1238 449 public Warner checkWarner(DiagnosticPosition pos, Type found, Type req);
mcimadamore@1337 450
mcimadamore@1337 451 public Infer.InferenceContext inferenceContext();
mcimadamore@1347 452
mcimadamore@1347 453 public DeferredAttr.DeferredAttrContext deferredAttrContext();
mcimadamore@1238 454 }
mcimadamore@1238 455
mcimadamore@1238 456 /**
mcimadamore@1238 457 * This class represent a check context that is nested within another check
mcimadamore@1238 458 * context - useful to check sub-expressions. The default behavior simply
mcimadamore@1238 459 * redirects all method calls to the enclosing check context leveraging
mcimadamore@1238 460 * the forwarding pattern.
mcimadamore@1238 461 */
mcimadamore@1238 462 static class NestedCheckContext implements CheckContext {
mcimadamore@1238 463 CheckContext enclosingContext;
mcimadamore@1238 464
mcimadamore@1238 465 NestedCheckContext(CheckContext enclosingContext) {
mcimadamore@1238 466 this.enclosingContext = enclosingContext;
mcimadamore@1238 467 }
mcimadamore@1238 468
mcimadamore@1238 469 public boolean compatible(Type found, Type req, Warner warn) {
mcimadamore@1238 470 return enclosingContext.compatible(found, req, warn);
mcimadamore@1238 471 }
mcimadamore@1238 472
mcimadamore@1296 473 public void report(DiagnosticPosition pos, JCDiagnostic details) {
mcimadamore@1296 474 enclosingContext.report(pos, details);
mcimadamore@1238 475 }
mcimadamore@1238 476
mcimadamore@1238 477 public Warner checkWarner(DiagnosticPosition pos, Type found, Type req) {
mcimadamore@1238 478 return enclosingContext.checkWarner(pos, found, req);
mcimadamore@1238 479 }
mcimadamore@1337 480
mcimadamore@1337 481 public Infer.InferenceContext inferenceContext() {
mcimadamore@1337 482 return enclosingContext.inferenceContext();
mcimadamore@1337 483 }
mcimadamore@1347 484
mcimadamore@1347 485 public DeferredAttrContext deferredAttrContext() {
mcimadamore@1347 486 return enclosingContext.deferredAttrContext();
mcimadamore@1347 487 }
mcimadamore@1238 488 }
mcimadamore@1238 489
mcimadamore@1238 490 /**
mcimadamore@1238 491 * Check context to be used when evaluating assignment/return statements
mcimadamore@1238 492 */
mcimadamore@1238 493 CheckContext basicHandler = new CheckContext() {
mcimadamore@1296 494 public void report(DiagnosticPosition pos, JCDiagnostic details) {
mcimadamore@1296 495 log.error(pos, "prob.found.req", details);
mcimadamore@1238 496 }
mcimadamore@1238 497 public boolean compatible(Type found, Type req, Warner warn) {
mcimadamore@1238 498 return types.isAssignable(found, req, warn);
mcimadamore@1238 499 }
mcimadamore@1238 500
mcimadamore@1238 501 public Warner checkWarner(DiagnosticPosition pos, Type found, Type req) {
mcimadamore@1238 502 return convertWarner(pos, found, req);
mcimadamore@1238 503 }
mcimadamore@1337 504
mcimadamore@1337 505 public InferenceContext inferenceContext() {
mcimadamore@1337 506 return infer.emptyContext;
mcimadamore@1337 507 }
mcimadamore@1347 508
mcimadamore@1347 509 public DeferredAttrContext deferredAttrContext() {
mcimadamore@1347 510 return deferredAttr.emptyDeferredAttrContext;
mcimadamore@1347 511 }
mcimadamore@1238 512 };
mcimadamore@1238 513
duke@1 514 /** Check that a given type is assignable to a given proto-type.
duke@1 515 * If it is, return the type, otherwise return errType.
duke@1 516 * @param pos Position to be used for error reporting.
duke@1 517 * @param found The type that was found.
duke@1 518 * @param req The type that was required.
duke@1 519 */
duke@1 520 Type checkType(DiagnosticPosition pos, Type found, Type req) {
mcimadamore@1238 521 return checkType(pos, found, req, basicHandler);
darcy@609 522 }
darcy@609 523
mcimadamore@1337 524 Type checkType(final DiagnosticPosition pos, final Type found, final Type req, final CheckContext checkContext) {
mcimadamore@1337 525 final Infer.InferenceContext inferenceContext = checkContext.inferenceContext();
mcimadamore@1337 526 if (inferenceContext.free(req)) {
mcimadamore@1337 527 inferenceContext.addFreeTypeListener(List.of(req), new FreeTypeListener() {
mcimadamore@1337 528 @Override
mcimadamore@1337 529 public void typesInferred(InferenceContext inferenceContext) {
mcimadamore@1550 530 checkType(pos, found, inferenceContext.asInstType(req), checkContext);
mcimadamore@1337 531 }
mcimadamore@1337 532 });
mcimadamore@1337 533 }
jjg@1374 534 if (req.hasTag(ERROR))
duke@1 535 return req;
jjg@1374 536 if (req.hasTag(NONE))
duke@1 537 return found;
mcimadamore@1238 538 if (checkContext.compatible(found, req, checkContext.checkWarner(pos, found, req))) {
duke@1 539 return found;
mcimadamore@1238 540 } else {
vromero@1826 541 if (found.isNumeric() && req.isNumeric()) {
mcimadamore@1296 542 checkContext.report(pos, diags.fragment("possible.loss.of.precision", found, req));
mcimadamore@1238 543 return types.createErrorType(found);
mcimadamore@1238 544 }
mcimadamore@1296 545 checkContext.report(pos, diags.fragment("inconvertible.types", found, req));
jjg@110 546 return types.createErrorType(found);
duke@1 547 }
duke@1 548 }
duke@1 549
duke@1 550 /** Check that a given type can be cast to a given target type.
duke@1 551 * Return the result of the cast.
duke@1 552 * @param pos Position to be used for error reporting.
duke@1 553 * @param found The type that is being cast.
duke@1 554 * @param req The target type of the cast.
duke@1 555 */
duke@1 556 Type checkCastable(DiagnosticPosition pos, Type found, Type req) {
mcimadamore@1238 557 return checkCastable(pos, found, req, basicHandler);
mcimadamore@1238 558 }
mcimadamore@1238 559 Type checkCastable(DiagnosticPosition pos, Type found, Type req, CheckContext checkContext) {
mcimadamore@1268 560 if (types.isCastable(found, req, castWarner(pos, found, req))) {
duke@1 561 return req;
duke@1 562 } else {
mcimadamore@1296 563 checkContext.report(pos, diags.fragment("inconvertible.types", found, req));
mcimadamore@1238 564 return types.createErrorType(found);
duke@1 565 }
duke@1 566 }
mcimadamore@1237 567
mcimadamore@1237 568 /** Check for redundant casts (i.e. where source type is a subtype of target type)
mcimadamore@1237 569 * The problem should only be reported for non-292 cast
mcimadamore@1237 570 */
jlahoda@2028 571 public void checkRedundantCast(Env<AttrContext> env, final JCTypeCast tree) {
jlahoda@2028 572 if (!tree.type.isErroneous()
mcimadamore@1348 573 && types.isSameType(tree.expr.type, tree.clazz.type)
jjg@1521 574 && !(ignoreAnnotatedCasts && TreeInfo.containsTypeAnnotation(tree.clazz))
mcimadamore@1348 575 && !is292targetTypeCast(tree)) {
jlahoda@2028 576 deferredLintHandler.report(new DeferredLintHandler.LintLogger() {
jlahoda@2028 577 @Override
jlahoda@2028 578 public void report() {
jlahoda@2028 579 if (lint.isEnabled(Lint.LintCategory.CAST))
jlahoda@2028 580 log.warning(Lint.LintCategory.CAST,
jlahoda@2028 581 tree.pos(), "redundant.cast", tree.expr.type);
jlahoda@2028 582 }
jlahoda@2028 583 });
mcimadamore@1237 584 }
mcimadamore@1237 585 }
mcimadamore@1237 586 //where
jjg@1521 587 private boolean is292targetTypeCast(JCTypeCast tree) {
jjg@1521 588 boolean is292targetTypeCast = false;
jjg@1521 589 JCExpression expr = TreeInfo.skipParens(tree.expr);
jjg@1521 590 if (expr.hasTag(APPLY)) {
jjg@1521 591 JCMethodInvocation apply = (JCMethodInvocation)expr;
jjg@1521 592 Symbol sym = TreeInfo.symbol(apply.meth);
jjg@1521 593 is292targetTypeCast = sym != null &&
jjg@1521 594 sym.kind == MTH &&
jjg@1521 595 (sym.flags() & HYPOTHETICAL) != 0;
mcimadamore@1237 596 }
jjg@1521 597 return is292targetTypeCast;
jjg@1521 598 }
mcimadamore@1237 599
jjg@1521 600 private static final boolean ignoreAnnotatedCasts = true;
duke@1 601
duke@1 602 /** Check that a type is within some bounds.
duke@1 603 *
jjg@1358 604 * Used in TypeApply to verify that, e.g., X in {@code V<X>} is a valid
duke@1 605 * type argument.
duke@1 606 * @param a The type that should be bounded by bs.
jjg@1358 607 * @param bound The bound.
duke@1 608 */
mcimadamore@1216 609 private boolean checkExtends(Type a, Type bound) {
mcimadamore@154 610 if (a.isUnbound()) {
mcimadamore@821 611 return true;
jjg@1374 612 } else if (!a.hasTag(WILDCARD)) {
mcimadamore@154 613 a = types.upperBound(a);
mcimadamore@1216 614 return types.isSubtype(a, bound);
mcimadamore@154 615 } else if (a.isExtendsBound()) {
mcimadamore@1415 616 return types.isCastable(bound, types.upperBound(a), types.noWarnings);
mcimadamore@154 617 } else if (a.isSuperBound()) {
mcimadamore@1216 618 return !types.notSoftSubtype(types.lowerBound(a), bound);
mcimadamore@154 619 }
mcimadamore@821 620 return true;
mcimadamore@154 621 }
duke@1 622
duke@1 623 /** Check that type is different from 'void'.
duke@1 624 * @param pos Position to be used for error reporting.
duke@1 625 * @param t The type to be checked.
duke@1 626 */
duke@1 627 Type checkNonVoid(DiagnosticPosition pos, Type t) {
jjg@1374 628 if (t.hasTag(VOID)) {
duke@1 629 log.error(pos, "void.not.allowed.here");
jjg@110 630 return types.createErrorType(t);
duke@1 631 } else {
duke@1 632 return t;
duke@1 633 }
duke@1 634 }
duke@1 635
mcimadamore@1496 636 Type checkClassOrArrayType(DiagnosticPosition pos, Type t) {
mcimadamore@1496 637 if (!t.hasTag(CLASS) && !t.hasTag(ARRAY) && !t.hasTag(ERROR)) {
mcimadamore@1496 638 return typeTagError(pos,
mcimadamore@1496 639 diags.fragment("type.req.class.array"),
mcimadamore@1496 640 asTypeParam(t));
mcimadamore@1496 641 } else {
mcimadamore@1496 642 return t;
mcimadamore@1496 643 }
mcimadamore@1496 644 }
mcimadamore@1496 645
duke@1 646 /** Check that type is a class or interface type.
duke@1 647 * @param pos Position to be used for error reporting.
duke@1 648 * @param t The type to be checked.
duke@1 649 */
duke@1 650 Type checkClassType(DiagnosticPosition pos, Type t) {
mcimadamore@1496 651 if (!t.hasTag(CLASS) && !t.hasTag(ERROR)) {
duke@1 652 return typeTagError(pos,
mcimadamore@89 653 diags.fragment("type.req.class"),
mcimadamore@1496 654 asTypeParam(t));
mcimadamore@1496 655 } else {
duke@1 656 return t;
mcimadamore@1496 657 }
duke@1 658 }
mcimadamore@1496 659 //where
mcimadamore@1496 660 private Object asTypeParam(Type t) {
mcimadamore@1496 661 return (t.hasTag(TYPEVAR))
mcimadamore@1496 662 ? diags.fragment("type.parameter", t)
mcimadamore@1496 663 : t;
mcimadamore@1496 664 }
duke@1 665
mcimadamore@1352 666 /** Check that type is a valid qualifier for a constructor reference expression
mcimadamore@1352 667 */
mcimadamore@1352 668 Type checkConstructorRefType(DiagnosticPosition pos, Type t) {
mcimadamore@1496 669 t = checkClassOrArrayType(pos, t);
jjg@1374 670 if (t.hasTag(CLASS)) {
mcimadamore@1352 671 if ((t.tsym.flags() & (ABSTRACT | INTERFACE)) != 0) {
mcimadamore@1627 672 log.error(pos, "abstract.cant.be.instantiated", t.tsym);
mcimadamore@1352 673 t = types.createErrorType(t);
mcimadamore@1352 674 } else if ((t.tsym.flags() & ENUM) != 0) {
mcimadamore@1352 675 log.error(pos, "enum.cant.be.instantiated");
mcimadamore@1352 676 t = types.createErrorType(t);
mcimadamore@1627 677 } else {
mcimadamore@1627 678 t = checkClassType(pos, t, true);
mcimadamore@1627 679 }
mcimadamore@1627 680 } else if (t.hasTag(ARRAY)) {
mcimadamore@1627 681 if (!types.isReifiable(((ArrayType)t).elemtype)) {
mcimadamore@1627 682 log.error(pos, "generic.array.creation");
mcimadamore@1627 683 t = types.createErrorType(t);
mcimadamore@1352 684 }
mcimadamore@1352 685 }
mcimadamore@1352 686 return t;
mcimadamore@1352 687 }
mcimadamore@1352 688
duke@1 689 /** Check that type is a class or interface type.
duke@1 690 * @param pos Position to be used for error reporting.
duke@1 691 * @param t The type to be checked.
duke@1 692 * @param noBounds True if type bounds are illegal here.
duke@1 693 */
duke@1 694 Type checkClassType(DiagnosticPosition pos, Type t, boolean noBounds) {
duke@1 695 t = checkClassType(pos, t);
duke@1 696 if (noBounds && t.isParameterized()) {
duke@1 697 List<Type> args = t.getTypeArguments();
duke@1 698 while (args.nonEmpty()) {
jjg@1374 699 if (args.head.hasTag(WILDCARD))
duke@1 700 return typeTagError(pos,
jjg@598 701 diags.fragment("type.req.exact"),
duke@1 702 args.head);
duke@1 703 args = args.tail;
duke@1 704 }
duke@1 705 }
duke@1 706 return t;
duke@1 707 }
duke@1 708
duke@1 709 /** Check that type is a reifiable class, interface or array type.
duke@1 710 * @param pos Position to be used for error reporting.
duke@1 711 * @param t The type to be checked.
duke@1 712 */
duke@1 713 Type checkReifiableReferenceType(DiagnosticPosition pos, Type t) {
mcimadamore@1496 714 t = checkClassOrArrayType(pos, t);
mcimadamore@1496 715 if (!t.isErroneous() && !types.isReifiable(t)) {
duke@1 716 log.error(pos, "illegal.generic.type.for.instof");
jjg@110 717 return types.createErrorType(t);
duke@1 718 } else {
duke@1 719 return t;
duke@1 720 }
duke@1 721 }
duke@1 722
duke@1 723 /** Check that type is a reference type, i.e. a class, interface or array type
duke@1 724 * or a type variable.
duke@1 725 * @param pos Position to be used for error reporting.
duke@1 726 * @param t The type to be checked.
duke@1 727 */
duke@1 728 Type checkRefType(DiagnosticPosition pos, Type t) {
jjg@1374 729 if (t.isReference())
duke@1 730 return t;
jjg@1374 731 else
duke@1 732 return typeTagError(pos,
mcimadamore@89 733 diags.fragment("type.req.ref"),
duke@1 734 t);
duke@1 735 }
duke@1 736
jrose@267 737 /** Check that each type is a reference type, i.e. a class, interface or array type
jrose@267 738 * or a type variable.
jrose@267 739 * @param trees Original trees, used for error reporting.
jrose@267 740 * @param types The types to be checked.
jrose@267 741 */
jrose@267 742 List<Type> checkRefTypes(List<JCExpression> trees, List<Type> types) {
jrose@267 743 List<JCExpression> tl = trees;
jrose@267 744 for (List<Type> l = types; l.nonEmpty(); l = l.tail) {
jrose@267 745 l.head = checkRefType(tl.head.pos(), l.head);
jrose@267 746 tl = tl.tail;
jrose@267 747 }
jrose@267 748 return types;
jrose@267 749 }
jrose@267 750
duke@1 751 /** Check that type is a null or reference type.
duke@1 752 * @param pos Position to be used for error reporting.
duke@1 753 * @param t The type to be checked.
duke@1 754 */
duke@1 755 Type checkNullOrRefType(DiagnosticPosition pos, Type t) {
vromero@1826 756 if (t.isReference() || t.hasTag(BOT))
duke@1 757 return t;
jjg@1374 758 else
duke@1 759 return typeTagError(pos,
mcimadamore@89 760 diags.fragment("type.req.ref"),
duke@1 761 t);
duke@1 762 }
duke@1 763
duke@1 764 /** Check that flag set does not contain elements of two conflicting sets. s
duke@1 765 * Return true if it doesn't.
duke@1 766 * @param pos Position to be used for error reporting.
duke@1 767 * @param flags The set of flags to be checked.
duke@1 768 * @param set1 Conflicting flags set #1.
duke@1 769 * @param set2 Conflicting flags set #2.
duke@1 770 */
duke@1 771 boolean checkDisjoint(DiagnosticPosition pos, long flags, long set1, long set2) {
duke@1 772 if ((flags & set1) != 0 && (flags & set2) != 0) {
duke@1 773 log.error(pos,
duke@1 774 "illegal.combination.of.modifiers",
mcimadamore@80 775 asFlagSet(TreeInfo.firstFlag(flags & set1)),
mcimadamore@80 776 asFlagSet(TreeInfo.firstFlag(flags & set2)));
duke@1 777 return false;
duke@1 778 } else
duke@1 779 return true;
duke@1 780 }
duke@1 781
mcimadamore@914 782 /** Check that usage of diamond operator is correct (i.e. diamond should not
mcimadamore@914 783 * be used with non-generic classes or in anonymous class creation expressions)
mcimadamore@537 784 */
mcimadamore@914 785 Type checkDiamond(JCNewClass tree, Type t) {
mcimadamore@914 786 if (!TreeInfo.isDiamond(tree) ||
mcimadamore@914 787 t.isErroneous()) {
mcimadamore@914 788 return checkClassType(tree.clazz.pos(), t, true);
mcimadamore@914 789 } else if (tree.def != null) {
mcimadamore@914 790 log.error(tree.clazz.pos(),
mcimadamore@914 791 "cant.apply.diamond.1",
mcimadamore@914 792 t, diags.fragment("diamond.and.anon.class", t));
mcimadamore@914 793 return types.createErrorType(t);
mcimadamore@948 794 } else if (t.tsym.type.getTypeArguments().isEmpty()) {
mcimadamore@914 795 log.error(tree.clazz.pos(),
mcimadamore@914 796 "cant.apply.diamond.1",
mcimadamore@914 797 t, diags.fragment("diamond.non.generic", t));
mcimadamore@914 798 return types.createErrorType(t);
mcimadamore@993 799 } else if (tree.typeargs != null &&
mcimadamore@993 800 tree.typeargs.nonEmpty()) {
mcimadamore@993 801 log.error(tree.clazz.pos(),
mcimadamore@993 802 "cant.apply.diamond.1",
mcimadamore@993 803 t, diags.fragment("diamond.and.explicit.params", t));
mcimadamore@993 804 return types.createErrorType(t);
mcimadamore@914 805 } else {
mcimadamore@914 806 return t;
mcimadamore@537 807 }
mcimadamore@537 808 }
mcimadamore@537 809
mcimadamore@795 810 void checkVarargsMethodDecl(Env<AttrContext> env, JCMethodDecl tree) {
mcimadamore@580 811 MethodSymbol m = tree.sym;
mcimadamore@795 812 if (!allowSimplifiedVarargs) return;
mcimadamore@795 813 boolean hasTrustMeAnno = m.attribute(syms.trustMeType.tsym) != null;
mcimadamore@795 814 Type varargElemType = null;
mcimadamore@580 815 if (m.isVarArgs()) {
mcimadamore@795 816 varargElemType = types.elemtype(tree.params.last().type);
mcimadamore@795 817 }
mcimadamore@795 818 if (hasTrustMeAnno && !isTrustMeAllowedOnMethod(m)) {
mcimadamore@795 819 if (varargElemType != null) {
mcimadamore@795 820 log.error(tree,
mcimadamore@795 821 "varargs.invalid.trustme.anno",
mcimadamore@795 822 syms.trustMeType.tsym,
mcimadamore@795 823 diags.fragment("varargs.trustme.on.virtual.varargs", m));
mcimadamore@795 824 } else {
mcimadamore@795 825 log.error(tree,
mcimadamore@795 826 "varargs.invalid.trustme.anno",
mcimadamore@795 827 syms.trustMeType.tsym,
mcimadamore@795 828 diags.fragment("varargs.trustme.on.non.varargs.meth", m));
mcimadamore@580 829 }
mcimadamore@795 830 } else if (hasTrustMeAnno && varargElemType != null &&
mcimadamore@795 831 types.isReifiable(varargElemType)) {
mcimadamore@795 832 warnUnsafeVararg(tree,
mcimadamore@795 833 "varargs.redundant.trustme.anno",
mcimadamore@795 834 syms.trustMeType.tsym,
mcimadamore@795 835 diags.fragment("varargs.trustme.on.reifiable.varargs", varargElemType));
mcimadamore@795 836 }
mcimadamore@795 837 else if (!hasTrustMeAnno && varargElemType != null &&
mcimadamore@795 838 !types.isReifiable(varargElemType)) {
mcimadamore@795 839 warnUnchecked(tree.params.head.pos(), "unchecked.varargs.non.reifiable.type", varargElemType);
mcimadamore@580 840 }
mcimadamore@580 841 }
mcimadamore@795 842 //where
mcimadamore@795 843 private boolean isTrustMeAllowedOnMethod(Symbol s) {
mcimadamore@795 844 return (s.flags() & VARARGS) != 0 &&
mcimadamore@795 845 (s.isConstructor() ||
mcimadamore@795 846 (s.flags() & (STATIC | FINAL)) != 0);
mcimadamore@795 847 }
mcimadamore@580 848
mcimadamore@1812 849 Type checkMethod(final Type mtype,
mcimadamore@1812 850 final Symbol sym,
mcimadamore@1812 851 final Env<AttrContext> env,
mcimadamore@1812 852 final List<JCExpression> argtrees,
mcimadamore@1812 853 final List<Type> argtypes,
mcimadamore@1812 854 final boolean useVarargs,
mcimadamore@1812 855 InferenceContext inferenceContext) {
mcimadamore@1219 856 // System.out.println("call : " + env.tree);
mcimadamore@1219 857 // System.out.println("method : " + owntype);
mcimadamore@1219 858 // System.out.println("actuals: " + argtypes);
mcimadamore@1812 859 if (inferenceContext.free(mtype)) {
mcimadamore@1812 860 inferenceContext.addFreeTypeListener(List.of(mtype), new FreeTypeListener() {
mcimadamore@1812 861 public void typesInferred(InferenceContext inferenceContext) {
mcimadamore@1812 862 checkMethod(inferenceContext.asInstType(mtype), sym, env, argtrees, argtypes, useVarargs, inferenceContext);
mcimadamore@1812 863 }
mcimadamore@1812 864 });
mcimadamore@1812 865 return mtype;
mcimadamore@1812 866 }
mcimadamore@1812 867 Type owntype = mtype;
mcimadamore@1219 868 List<Type> formals = owntype.getParameterTypes();
kizune@1959 869 List<Type> nonInferred = sym.type.getParameterTypes();
kizune@1959 870 if (nonInferred.length() != formals.length()) nonInferred = formals;
mcimadamore@1219 871 Type last = useVarargs ? formals.last() : null;
kizune@1959 872 if (sym.name == names.init && sym.owner == syms.enumSym) {
kizune@1959 873 formals = formals.tail.tail;
kizune@1959 874 nonInferred = nonInferred.tail.tail;
kizune@1959 875 }
mcimadamore@1219 876 List<JCExpression> args = argtrees;
mcimadamore@1352 877 if (args != null) {
mcimadamore@1352 878 //this is null when type-checking a method reference
mcimadamore@1352 879 while (formals.head != last) {
mcimadamore@1219 880 JCTree arg = args.head;
kizune@1959 881 Warner warn = convertWarner(arg.pos(), arg.type, nonInferred.head);
mcimadamore@1352 882 assertConvertible(arg, arg.type, formals.head, warn);
mcimadamore@1219 883 args = args.tail;
mcimadamore@1352 884 formals = formals.tail;
kizune@1959 885 nonInferred = nonInferred.tail;
mcimadamore@1219 886 }
mcimadamore@1352 887 if (useVarargs) {
mcimadamore@1352 888 Type varArg = types.elemtype(last);
mcimadamore@1352 889 while (args.tail != null) {
mcimadamore@1352 890 JCTree arg = args.head;
mcimadamore@1352 891 Warner warn = convertWarner(arg.pos(), arg.type, varArg);
mcimadamore@1352 892 assertConvertible(arg, arg.type, varArg, warn);
mcimadamore@1352 893 args = args.tail;
mcimadamore@1352 894 }
mcimadamore@1904 895 } else if ((sym.flags() & (VARARGS | SIGNATURE_POLYMORPHIC)) == VARARGS &&
mcimadamore@1904 896 allowVarargs) {
mcimadamore@1352 897 // non-varargs call to varargs method
mcimadamore@1352 898 Type varParam = owntype.getParameterTypes().last();
mcimadamore@1812 899 Type lastArg = argtypes.last();
mcimadamore@1352 900 if (types.isSubtypeUnchecked(lastArg, types.elemtype(varParam)) &&
kizune@1959 901 !types.isSameType(types.erasure(varParam), types.erasure(lastArg)))
mcimadamore@1352 902 log.warning(argtrees.last().pos(), "inexact.non-varargs.call",
kizune@1959 903 types.elemtype(varParam), varParam);
mcimadamore@1352 904 }
mcimadamore@1219 905 }
mcimadamore@1219 906 if (useVarargs) {
mcimadamore@1219 907 Type argtype = owntype.getParameterTypes().last();
mcimadamore@1219 908 if (!types.isReifiable(argtype) &&
kizune@1959 909 (!allowSimplifiedVarargs ||
kizune@1959 910 sym.attribute(syms.trustMeType.tsym) == null ||
kizune@1959 911 !isTrustMeAllowedOnMethod(sym))) {
mcimadamore@1219 912 warnUnchecked(env.tree.pos(),
mcimadamore@1219 913 "unchecked.generic.array.creation",
mcimadamore@1219 914 argtype);
mcimadamore@1219 915 }
vromero@1820 916 if ((sym.baseSymbol().flags() & SIGNATURE_POLYMORPHIC) == 0) {
mcimadamore@1812 917 TreeInfo.setVarargsElement(env.tree, types.elemtype(argtype));
mcimadamore@1219 918 }
mcimadamore@1219 919 }
mcimadamore@1510 920 PolyKind pkind = (sym.type.hasTag(FORALL) &&
mcimadamore@1510 921 sym.type.getReturnType().containsAny(((ForAll)sym.type).tvars)) ?
mcimadamore@1510 922 PolyKind.POLY : PolyKind.STANDALONE;
mcimadamore@1510 923 TreeInfo.setPolyKind(env.tree, pkind);
mcimadamore@1219 924 return owntype;
mcimadamore@547 925 }
mcimadamore@1219 926 //where
kizune@1959 927 private void assertConvertible(JCTree tree, Type actual, Type formal, Warner warn) {
kizune@1959 928 if (types.isConvertible(actual, formal, warn))
kizune@1959 929 return;
kizune@1959 930
kizune@1959 931 if (formal.isCompound()
kizune@1959 932 && types.isSubtype(actual, types.supertype(formal))
kizune@1959 933 && types.isSubtypeUnchecked(actual, types.interfaces(formal), warn))
kizune@1959 934 return;
kizune@1959 935 }
mcimadamore@547 936
mcimadamore@821 937 /**
mcimadamore@821 938 * Check that type 't' is a valid instantiation of a generic class
mcimadamore@821 939 * (see JLS 4.5)
mcimadamore@821 940 *
mcimadamore@821 941 * @param t class type to be checked
mcimadamore@821 942 * @return true if 't' is well-formed
mcimadamore@821 943 */
mcimadamore@821 944 public boolean checkValidGenericType(Type t) {
mcimadamore@821 945 return firstIncompatibleTypeArg(t) == null;
mcimadamore@821 946 }
mcimadamore@821 947 //WHERE
mcimadamore@821 948 private Type firstIncompatibleTypeArg(Type type) {
mcimadamore@821 949 List<Type> formals = type.tsym.type.allparams();
mcimadamore@821 950 List<Type> actuals = type.allparams();
mcimadamore@821 951 List<Type> args = type.getTypeArguments();
mcimadamore@821 952 List<Type> forms = type.tsym.type.getTypeArguments();
mcimadamore@1216 953 ListBuffer<Type> bounds_buf = new ListBuffer<Type>();
mcimadamore@821 954
mcimadamore@821 955 // For matching pairs of actual argument types `a' and
mcimadamore@821 956 // formal type parameters with declared bound `b' ...
mcimadamore@821 957 while (args.nonEmpty() && forms.nonEmpty()) {
mcimadamore@821 958 // exact type arguments needs to know their
mcimadamore@821 959 // bounds (for upper and lower bound
mcimadamore@1216 960 // calculations). So we create new bounds where
mcimadamore@1216 961 // type-parameters are replaced with actuals argument types.
mcimadamore@1216 962 bounds_buf.append(types.subst(forms.head.getUpperBound(), formals, actuals));
mcimadamore@821 963 args = args.tail;
mcimadamore@821 964 forms = forms.tail;
mcimadamore@821 965 }
mcimadamore@821 966
mcimadamore@821 967 args = type.getTypeArguments();
mcimadamore@821 968 List<Type> tvars_cap = types.substBounds(formals,
mcimadamore@821 969 formals,
mcimadamore@821 970 types.capture(type).allparams());
mcimadamore@821 971 while (args.nonEmpty() && tvars_cap.nonEmpty()) {
mcimadamore@821 972 // Let the actual arguments know their bound
mcimadamore@821 973 args.head.withTypeVar((TypeVar)tvars_cap.head);
mcimadamore@821 974 args = args.tail;
mcimadamore@821 975 tvars_cap = tvars_cap.tail;
mcimadamore@821 976 }
mcimadamore@821 977
mcimadamore@821 978 args = type.getTypeArguments();
mcimadamore@1216 979 List<Type> bounds = bounds_buf.toList();
mcimadamore@821 980
mcimadamore@1216 981 while (args.nonEmpty() && bounds.nonEmpty()) {
mcimadamore@1216 982 Type actual = args.head;
mcimadamore@854 983 if (!isTypeArgErroneous(actual) &&
mcimadamore@1216 984 !bounds.head.isErroneous() &&
mcimadamore@1216 985 !checkExtends(actual, bounds.head)) {
mcimadamore@821 986 return args.head;
mcimadamore@821 987 }
mcimadamore@821 988 args = args.tail;
mcimadamore@1216 989 bounds = bounds.tail;
mcimadamore@821 990 }
mcimadamore@821 991
mcimadamore@821 992 args = type.getTypeArguments();
mcimadamore@1216 993 bounds = bounds_buf.toList();
mcimadamore@821 994
mcimadamore@821 995 for (Type arg : types.capture(type).getTypeArguments()) {
jjg@1374 996 if (arg.hasTag(TYPEVAR) &&
mcimadamore@828 997 arg.getUpperBound().isErroneous() &&
mcimadamore@1216 998 !bounds.head.isErroneous() &&
mcimadamore@854 999 !isTypeArgErroneous(args.head)) {
mcimadamore@821 1000 return args.head;
mcimadamore@821 1001 }
mcimadamore@1216 1002 bounds = bounds.tail;
mcimadamore@854 1003 args = args.tail;
mcimadamore@821 1004 }
mcimadamore@821 1005
mcimadamore@821 1006 return null;
mcimadamore@821 1007 }
mcimadamore@854 1008 //where
mcimadamore@854 1009 boolean isTypeArgErroneous(Type t) {
mcimadamore@854 1010 return isTypeArgErroneous.visit(t);
mcimadamore@854 1011 }
mcimadamore@854 1012
mcimadamore@854 1013 Types.UnaryVisitor<Boolean> isTypeArgErroneous = new Types.UnaryVisitor<Boolean>() {
mcimadamore@854 1014 public Boolean visitType(Type t, Void s) {
mcimadamore@854 1015 return t.isErroneous();
mcimadamore@854 1016 }
mcimadamore@854 1017 @Override
mcimadamore@854 1018 public Boolean visitTypeVar(TypeVar t, Void s) {
mcimadamore@854 1019 return visit(t.getUpperBound());
mcimadamore@854 1020 }
mcimadamore@854 1021 @Override
mcimadamore@854 1022 public Boolean visitCapturedType(CapturedType t, Void s) {
mcimadamore@854 1023 return visit(t.getUpperBound()) ||
mcimadamore@854 1024 visit(t.getLowerBound());
mcimadamore@854 1025 }
mcimadamore@854 1026 @Override
mcimadamore@854 1027 public Boolean visitWildcardType(WildcardType t, Void s) {
mcimadamore@854 1028 return visit(t.type);
mcimadamore@854 1029 }
mcimadamore@854 1030 };
mcimadamore@821 1031
duke@1 1032 /** Check that given modifiers are legal for given symbol and
vromero@1555 1033 * return modifiers together with any implicit modifiers for that symbol.
duke@1 1034 * Warning: we can't use flags() here since this method
duke@1 1035 * is called during class enter, when flags() would cause a premature
duke@1 1036 * completion.
duke@1 1037 * @param pos Position to be used for error reporting.
duke@1 1038 * @param flags The set of modifiers given in a definition.
duke@1 1039 * @param sym The defined symbol.
duke@1 1040 */
duke@1 1041 long checkFlags(DiagnosticPosition pos, long flags, Symbol sym, JCTree tree) {
duke@1 1042 long mask;
duke@1 1043 long implicit = 0;
emc@2016 1044
duke@1 1045 switch (sym.kind) {
duke@1 1046 case VAR:
duke@1 1047 if (sym.owner.kind != TYP)
duke@1 1048 mask = LocalVarFlags;
duke@1 1049 else if ((sym.owner.flags_field & INTERFACE) != 0)
duke@1 1050 mask = implicit = InterfaceVarFlags;
duke@1 1051 else
duke@1 1052 mask = VarFlags;
duke@1 1053 break;
duke@1 1054 case MTH:
duke@1 1055 if (sym.name == names.init) {
duke@1 1056 if ((sym.owner.flags_field & ENUM) != 0) {
duke@1 1057 // enum constructors cannot be declared public or
duke@1 1058 // protected and must be implicitly or explicitly
duke@1 1059 // private
duke@1 1060 implicit = PRIVATE;
duke@1 1061 mask = PRIVATE;
duke@1 1062 } else
duke@1 1063 mask = ConstructorFlags;
mcimadamore@1366 1064 } else if ((sym.owner.flags_field & INTERFACE) != 0) {
emc@2016 1065 if ((sym.owner.flags_field & ANNOTATION) != 0) {
emc@2016 1066 mask = AnnotationTypeElementMask;
emc@2016 1067 implicit = PUBLIC | ABSTRACT;
emc@2016 1068 } else if ((flags & (DEFAULT | STATIC)) != 0) {
mcimadamore@1513 1069 mask = InterfaceMethodMask;
mcimadamore@1513 1070 implicit = PUBLIC;
mcimadamore@1513 1071 if ((flags & DEFAULT) != 0) {
mcimadamore@1513 1072 implicit |= ABSTRACT;
mcimadamore@1513 1073 }
mcimadamore@1366 1074 } else {
mcimadamore@1366 1075 mask = implicit = InterfaceMethodFlags;
mcimadamore@1366 1076 }
emc@2016 1077 } else {
duke@1 1078 mask = MethodFlags;
duke@1 1079 }
duke@1 1080 // Imply STRICTFP if owner has STRICTFP set.
vromero@1712 1081 if (((flags|implicit) & Flags.ABSTRACT) == 0 ||
vromero@1712 1082 ((flags) & Flags.DEFAULT) != 0)
vromero@1555 1083 implicit |= sym.owner.flags_field & STRICTFP;
duke@1 1084 break;
duke@1 1085 case TYP:
duke@1 1086 if (sym.isLocal()) {
duke@1 1087 mask = LocalClassFlags;
jjg@113 1088 if (sym.name.isEmpty()) { // Anonymous class
duke@1 1089 // Anonymous classes in static methods are themselves static;
duke@1 1090 // that's why we admit STATIC here.
duke@1 1091 mask |= STATIC;
duke@1 1092 // JLS: Anonymous classes are final.
duke@1 1093 implicit |= FINAL;
duke@1 1094 }
duke@1 1095 if ((sym.owner.flags_field & STATIC) == 0 &&
duke@1 1096 (flags & ENUM) != 0)
duke@1 1097 log.error(pos, "enums.must.be.static");
duke@1 1098 } else if (sym.owner.kind == TYP) {
duke@1 1099 mask = MemberClassFlags;
duke@1 1100 if (sym.owner.owner.kind == PCK ||
duke@1 1101 (sym.owner.flags_field & STATIC) != 0)
duke@1 1102 mask |= STATIC;
duke@1 1103 else if ((flags & ENUM) != 0)
duke@1 1104 log.error(pos, "enums.must.be.static");
duke@1 1105 // Nested interfaces and enums are always STATIC (Spec ???)
duke@1 1106 if ((flags & (INTERFACE | ENUM)) != 0 ) implicit = STATIC;
duke@1 1107 } else {
duke@1 1108 mask = ClassFlags;
duke@1 1109 }
duke@1 1110 // Interfaces are always ABSTRACT
duke@1 1111 if ((flags & INTERFACE) != 0) implicit |= ABSTRACT;
duke@1 1112
duke@1 1113 if ((flags & ENUM) != 0) {
duke@1 1114 // enums can't be declared abstract or final
duke@1 1115 mask &= ~(ABSTRACT | FINAL);
duke@1 1116 implicit |= implicitEnumFinalFlag(tree);
duke@1 1117 }
duke@1 1118 // Imply STRICTFP if owner has STRICTFP set.
duke@1 1119 implicit |= sym.owner.flags_field & STRICTFP;
duke@1 1120 break;
duke@1 1121 default:
duke@1 1122 throw new AssertionError();
duke@1 1123 }
mcimadamore@1366 1124 long illegal = flags & ExtendedStandardFlags & ~mask;
duke@1 1125 if (illegal != 0) {
duke@1 1126 if ((illegal & INTERFACE) != 0) {
duke@1 1127 log.error(pos, "intf.not.allowed.here");
duke@1 1128 mask |= INTERFACE;
duke@1 1129 }
duke@1 1130 else {
duke@1 1131 log.error(pos,
mcimadamore@80 1132 "mod.not.allowed.here", asFlagSet(illegal));
duke@1 1133 }
duke@1 1134 }
duke@1 1135 else if ((sym.kind == TYP ||
duke@1 1136 // ISSUE: Disallowing abstract&private is no longer appropriate
duke@1 1137 // in the presence of inner classes. Should it be deleted here?
duke@1 1138 checkDisjoint(pos, flags,
duke@1 1139 ABSTRACT,
mcimadamore@1366 1140 PRIVATE | STATIC | DEFAULT))
duke@1 1141 &&
duke@1 1142 checkDisjoint(pos, flags,
mcimadamore@1513 1143 STATIC,
mcimadamore@1513 1144 DEFAULT)
mcimadamore@1513 1145 &&
mcimadamore@1513 1146 checkDisjoint(pos, flags,
duke@1 1147 ABSTRACT | INTERFACE,
duke@1 1148 FINAL | NATIVE | SYNCHRONIZED)
duke@1 1149 &&
duke@1 1150 checkDisjoint(pos, flags,
duke@1 1151 PUBLIC,
duke@1 1152 PRIVATE | PROTECTED)
duke@1 1153 &&
duke@1 1154 checkDisjoint(pos, flags,
duke@1 1155 PRIVATE,
duke@1 1156 PUBLIC | PROTECTED)
duke@1 1157 &&
duke@1 1158 checkDisjoint(pos, flags,
duke@1 1159 FINAL,
duke@1 1160 VOLATILE)
duke@1 1161 &&
duke@1 1162 (sym.kind == TYP ||
duke@1 1163 checkDisjoint(pos, flags,
duke@1 1164 ABSTRACT | NATIVE,
duke@1 1165 STRICTFP))) {
duke@1 1166 // skip
duke@1 1167 }
mcimadamore@1366 1168 return flags & (mask | ~ExtendedStandardFlags) | implicit;
duke@1 1169 }
duke@1 1170
duke@1 1171
duke@1 1172 /** Determine if this enum should be implicitly final.
duke@1 1173 *
duke@1 1174 * If the enum has no specialized enum contants, it is final.
duke@1 1175 *
duke@1 1176 * If the enum does have specialized enum contants, it is
duke@1 1177 * <i>not</i> final.
duke@1 1178 */
duke@1 1179 private long implicitEnumFinalFlag(JCTree tree) {
jjg@1127 1180 if (!tree.hasTag(CLASSDEF)) return 0;
duke@1 1181 class SpecialTreeVisitor extends JCTree.Visitor {
duke@1 1182 boolean specialized;
duke@1 1183 SpecialTreeVisitor() {
duke@1 1184 this.specialized = false;
duke@1 1185 };
duke@1 1186
jjg@398 1187 @Override
duke@1 1188 public void visitTree(JCTree tree) { /* no-op */ }
duke@1 1189
jjg@398 1190 @Override
duke@1 1191 public void visitVarDef(JCVariableDecl tree) {
duke@1 1192 if ((tree.mods.flags & ENUM) != 0) {
duke@1 1193 if (tree.init instanceof JCNewClass &&
duke@1 1194 ((JCNewClass) tree.init).def != null) {
duke@1 1195 specialized = true;
duke@1 1196 }
duke@1 1197 }
duke@1 1198 }
duke@1 1199 }
duke@1 1200
duke@1 1201 SpecialTreeVisitor sts = new SpecialTreeVisitor();
duke@1 1202 JCClassDecl cdef = (JCClassDecl) tree;
duke@1 1203 for (JCTree defs: cdef.defs) {
duke@1 1204 defs.accept(sts);
duke@1 1205 if (sts.specialized) return 0;
duke@1 1206 }
duke@1 1207 return FINAL;
duke@1 1208 }
duke@1 1209
duke@1 1210 /* *************************************************************************
duke@1 1211 * Type Validation
duke@1 1212 **************************************************************************/
duke@1 1213
duke@1 1214 /** Validate a type expression. That is,
duke@1 1215 * check that all type arguments of a parametric type are within
jjg@1755 1216 * their bounds. This must be done in a second phase after type attribution
duke@1 1217 * since a class might have a subclass as type parameter bound. E.g:
duke@1 1218 *
jjg@1358 1219 * <pre>{@code
duke@1 1220 * class B<A extends C> { ... }
duke@1 1221 * class C extends B<C> { ... }
jjg@1358 1222 * }</pre>
duke@1 1223 *
duke@1 1224 * and we can't make sure that the bound is already attributed because
duke@1 1225 * of possible cycles.
mcimadamore@638 1226 *
mcimadamore@638 1227 * Visitor method: Validate a type expression, if it is not null, catching
duke@1 1228 * and reporting any completion failures.
duke@1 1229 */
mcimadamore@122 1230 void validate(JCTree tree, Env<AttrContext> env) {
mcimadamore@638 1231 validate(tree, env, true);
duke@1 1232 }
mcimadamore@638 1233 void validate(JCTree tree, Env<AttrContext> env, boolean checkRaw) {
mcimadamore@638 1234 new Validator(env).validateTree(tree, checkRaw, true);
mcimadamore@122 1235 }
duke@1 1236
duke@1 1237 /** Visitor method: Validate a list of type expressions.
duke@1 1238 */
mcimadamore@122 1239 void validate(List<? extends JCTree> trees, Env<AttrContext> env) {
duke@1 1240 for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
mcimadamore@122 1241 validate(l.head, env);
duke@1 1242 }
duke@1 1243
duke@1 1244 /** A visitor class for type validation.
duke@1 1245 */
duke@1 1246 class Validator extends JCTree.Visitor {
duke@1 1247
mcimadamore@638 1248 boolean isOuter;
mcimadamore@638 1249 Env<AttrContext> env;
mcimadamore@638 1250
mcimadamore@638 1251 Validator(Env<AttrContext> env) {
mcimadamore@638 1252 this.env = env;
mcimadamore@638 1253 }
mcimadamore@638 1254
jjg@398 1255 @Override
duke@1 1256 public void visitTypeArray(JCArrayTypeTree tree) {
mcimadamore@638 1257 tree.elemtype.accept(this);
duke@1 1258 }
duke@1 1259
jjg@398 1260 @Override
duke@1 1261 public void visitTypeApply(JCTypeApply tree) {
jjg@1374 1262 if (tree.type.hasTag(CLASS)) {
duke@1 1263 List<JCExpression> args = tree.arguments;
mcimadamore@158 1264 List<Type> forms = tree.type.tsym.type.getTypeArguments();
mcimadamore@821 1265
mcimadamore@821 1266 Type incompatibleArg = firstIncompatibleTypeArg(tree.type);
mcimadamore@821 1267 if (incompatibleArg != null) {
mcimadamore@821 1268 for (JCTree arg : tree.arguments) {
mcimadamore@821 1269 if (arg.type == incompatibleArg) {
mcimadamore@829 1270 log.error(arg, "not.within.bounds", incompatibleArg, forms.head);
mcimadamore@821 1271 }
mcimadamore@829 1272 forms = forms.tail;
mcimadamore@829 1273 }
mcimadamore@829 1274 }
mcimadamore@829 1275
mcimadamore@829 1276 forms = tree.type.tsym.type.getTypeArguments();
duke@1 1277
mcimadamore@638 1278 boolean is_java_lang_Class = tree.type.tsym.flatName() == names.java_lang_Class;
mcimadamore@638 1279
duke@1 1280 // For matching pairs of actual argument types `a' and
duke@1 1281 // formal type parameters with declared bound `b' ...
duke@1 1282 while (args.nonEmpty() && forms.nonEmpty()) {
mcimadamore@638 1283 validateTree(args.head,
mcimadamore@638 1284 !(isOuter && is_java_lang_Class),
mcimadamore@638 1285 false);
duke@1 1286 args = args.tail;
duke@1 1287 forms = forms.tail;
duke@1 1288 }
duke@1 1289
duke@1 1290 // Check that this type is either fully parameterized, or
duke@1 1291 // not parameterized at all.
duke@1 1292 if (tree.type.getEnclosingType().isRaw())
duke@1 1293 log.error(tree.pos(), "improperly.formed.type.inner.raw.param");
jjg@1127 1294 if (tree.clazz.hasTag(SELECT))
duke@1 1295 visitSelectInternal((JCFieldAccess)tree.clazz);
duke@1 1296 }
duke@1 1297 }
duke@1 1298
jjg@398 1299 @Override
duke@1 1300 public void visitTypeParameter(JCTypeParameter tree) {
mcimadamore@638 1301 validateTrees(tree.bounds, true, isOuter);
duke@1 1302 checkClassBounds(tree.pos(), tree.type);
duke@1 1303 }
duke@1 1304
duke@1 1305 @Override
duke@1 1306 public void visitWildcard(JCWildcard tree) {
duke@1 1307 if (tree.inner != null)
mcimadamore@638 1308 validateTree(tree.inner, true, isOuter);
duke@1 1309 }
duke@1 1310
jjg@398 1311 @Override
duke@1 1312 public void visitSelect(JCFieldAccess tree) {
jjg@1374 1313 if (tree.type.hasTag(CLASS)) {
duke@1 1314 visitSelectInternal(tree);
duke@1 1315
duke@1 1316 // Check that this type is either fully parameterized, or
duke@1 1317 // not parameterized at all.
duke@1 1318 if (tree.selected.type.isParameterized() && tree.type.tsym.type.getTypeArguments().nonEmpty())
duke@1 1319 log.error(tree.pos(), "improperly.formed.type.param.missing");
duke@1 1320 }
duke@1 1321 }
mcimadamore@852 1322
duke@1 1323 public void visitSelectInternal(JCFieldAccess tree) {
mcimadamore@122 1324 if (tree.type.tsym.isStatic() &&
duke@1 1325 tree.selected.type.isParameterized()) {
duke@1 1326 // The enclosing type is not a class, so we are
duke@1 1327 // looking at a static member type. However, the
duke@1 1328 // qualifying expression is parameterized.
duke@1 1329 log.error(tree.pos(), "cant.select.static.class.from.param.type");
duke@1 1330 } else {
duke@1 1331 // otherwise validate the rest of the expression
mcimadamore@122 1332 tree.selected.accept(this);
duke@1 1333 }
duke@1 1334 }
duke@1 1335
jjg@1521 1336 @Override
jjg@1521 1337 public void visitAnnotatedType(JCAnnotatedType tree) {
jjg@1521 1338 tree.underlyingType.accept(this);
jjg@1521 1339 }
jjg@1521 1340
duke@1 1341 /** Default visitor method: do nothing.
duke@1 1342 */
jjg@398 1343 @Override
duke@1 1344 public void visitTree(JCTree tree) {
duke@1 1345 }
mcimadamore@122 1346
mcimadamore@638 1347 public void validateTree(JCTree tree, boolean checkRaw, boolean isOuter) {
mcimadamore@638 1348 try {
mcimadamore@638 1349 if (tree != null) {
mcimadamore@638 1350 this.isOuter = isOuter;
mcimadamore@638 1351 tree.accept(this);
mcimadamore@638 1352 if (checkRaw)
mcimadamore@638 1353 checkRaw(tree, env);
mcimadamore@638 1354 }
mcimadamore@638 1355 } catch (CompletionFailure ex) {
mcimadamore@638 1356 completionError(tree.pos(), ex);
mcimadamore@638 1357 }
mcimadamore@638 1358 }
mcimadamore@638 1359
mcimadamore@638 1360 public void validateTrees(List<? extends JCTree> trees, boolean checkRaw, boolean isOuter) {
mcimadamore@638 1361 for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
mcimadamore@638 1362 validateTree(l.head, checkRaw, isOuter);
mcimadamore@638 1363 }
mcimadamore@1760 1364 }
mcimadamore@1760 1365
mcimadamore@1760 1366 void checkRaw(JCTree tree, Env<AttrContext> env) {
mcimadamore@1760 1367 if (lint.isEnabled(LintCategory.RAW) &&
mcimadamore@1760 1368 tree.type.hasTag(CLASS) &&
mcimadamore@1760 1369 !TreeInfo.isDiamond(tree) &&
mcimadamore@1760 1370 !withinAnonConstr(env) &&
mcimadamore@1760 1371 tree.type.isRaw()) {
mcimadamore@1760 1372 log.warning(LintCategory.RAW,
mcimadamore@1760 1373 tree.pos(), "raw.class.use", tree.type, tree.type.tsym.type);
mcimadamore@638 1374 }
mcimadamore@1760 1375 }
mcimadamore@1760 1376 //where
mcimadamore@1760 1377 private boolean withinAnonConstr(Env<AttrContext> env) {
mcimadamore@1103 1378 return env.enclClass.name.isEmpty() &&
mcimadamore@1103 1379 env.enclMethod != null && env.enclMethod.name == names.init;
mcimadamore@1103 1380 }
duke@1 1381
duke@1 1382 /* *************************************************************************
duke@1 1383 * Exception checking
duke@1 1384 **************************************************************************/
duke@1 1385
duke@1 1386 /* The following methods treat classes as sets that contain
duke@1 1387 * the class itself and all their subclasses
duke@1 1388 */
duke@1 1389
duke@1 1390 /** Is given type a subtype of some of the types in given list?
duke@1 1391 */
duke@1 1392 boolean subset(Type t, List<Type> ts) {
duke@1 1393 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
duke@1 1394 if (types.isSubtype(t, l.head)) return true;
duke@1 1395 return false;
duke@1 1396 }
duke@1 1397
duke@1 1398 /** Is given type a subtype or supertype of
duke@1 1399 * some of the types in given list?
duke@1 1400 */
duke@1 1401 boolean intersects(Type t, List<Type> ts) {
duke@1 1402 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
duke@1 1403 if (types.isSubtype(t, l.head) || types.isSubtype(l.head, t)) return true;
duke@1 1404 return false;
duke@1 1405 }
duke@1 1406
duke@1 1407 /** Add type set to given type list, unless it is a subclass of some class
duke@1 1408 * in the list.
duke@1 1409 */
duke@1 1410 List<Type> incl(Type t, List<Type> ts) {
duke@1 1411 return subset(t, ts) ? ts : excl(t, ts).prepend(t);
duke@1 1412 }
duke@1 1413
duke@1 1414 /** Remove type set from type set list.
duke@1 1415 */
duke@1 1416 List<Type> excl(Type t, List<Type> ts) {
duke@1 1417 if (ts.isEmpty()) {
duke@1 1418 return ts;
duke@1 1419 } else {
duke@1 1420 List<Type> ts1 = excl(t, ts.tail);
duke@1 1421 if (types.isSubtype(ts.head, t)) return ts1;
duke@1 1422 else if (ts1 == ts.tail) return ts;
duke@1 1423 else return ts1.prepend(ts.head);
duke@1 1424 }
duke@1 1425 }
duke@1 1426
duke@1 1427 /** Form the union of two type set lists.
duke@1 1428 */
duke@1 1429 List<Type> union(List<Type> ts1, List<Type> ts2) {
duke@1 1430 List<Type> ts = ts1;
duke@1 1431 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1432 ts = incl(l.head, ts);
duke@1 1433 return ts;
duke@1 1434 }
duke@1 1435
duke@1 1436 /** Form the difference of two type lists.
duke@1 1437 */
duke@1 1438 List<Type> diff(List<Type> ts1, List<Type> ts2) {
duke@1 1439 List<Type> ts = ts1;
duke@1 1440 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1441 ts = excl(l.head, ts);
duke@1 1442 return ts;
duke@1 1443 }
duke@1 1444
duke@1 1445 /** Form the intersection of two type lists.
duke@1 1446 */
duke@1 1447 public List<Type> intersect(List<Type> ts1, List<Type> ts2) {
duke@1 1448 List<Type> ts = List.nil();
duke@1 1449 for (List<Type> l = ts1; l.nonEmpty(); l = l.tail)
duke@1 1450 if (subset(l.head, ts2)) ts = incl(l.head, ts);
duke@1 1451 for (List<Type> l = ts2; l.nonEmpty(); l = l.tail)
duke@1 1452 if (subset(l.head, ts1)) ts = incl(l.head, ts);
duke@1 1453 return ts;
duke@1 1454 }
duke@1 1455
duke@1 1456 /** Is exc an exception symbol that need not be declared?
duke@1 1457 */
duke@1 1458 boolean isUnchecked(ClassSymbol exc) {
duke@1 1459 return
duke@1 1460 exc.kind == ERR ||
duke@1 1461 exc.isSubClass(syms.errorType.tsym, types) ||
duke@1 1462 exc.isSubClass(syms.runtimeExceptionType.tsym, types);
duke@1 1463 }
duke@1 1464
duke@1 1465 /** Is exc an exception type that need not be declared?
duke@1 1466 */
duke@1 1467 boolean isUnchecked(Type exc) {
duke@1 1468 return
jjg@1374 1469 (exc.hasTag(TYPEVAR)) ? isUnchecked(types.supertype(exc)) :
jjg@1374 1470 (exc.hasTag(CLASS)) ? isUnchecked((ClassSymbol)exc.tsym) :
jjg@1374 1471 exc.hasTag(BOT);
duke@1 1472 }
duke@1 1473
duke@1 1474 /** Same, but handling completion failures.
duke@1 1475 */
duke@1 1476 boolean isUnchecked(DiagnosticPosition pos, Type exc) {
duke@1 1477 try {
duke@1 1478 return isUnchecked(exc);
duke@1 1479 } catch (CompletionFailure ex) {
duke@1 1480 completionError(pos, ex);
duke@1 1481 return true;
duke@1 1482 }
duke@1 1483 }
duke@1 1484
duke@1 1485 /** Is exc handled by given exception list?
duke@1 1486 */
duke@1 1487 boolean isHandled(Type exc, List<Type> handled) {
duke@1 1488 return isUnchecked(exc) || subset(exc, handled);
duke@1 1489 }
duke@1 1490
duke@1 1491 /** Return all exceptions in thrown list that are not in handled list.
duke@1 1492 * @param thrown The list of thrown exceptions.
duke@1 1493 * @param handled The list of handled exceptions.
duke@1 1494 */
mcimadamore@362 1495 List<Type> unhandled(List<Type> thrown, List<Type> handled) {
duke@1 1496 List<Type> unhandled = List.nil();
duke@1 1497 for (List<Type> l = thrown; l.nonEmpty(); l = l.tail)
duke@1 1498 if (!isHandled(l.head, handled)) unhandled = unhandled.prepend(l.head);
duke@1 1499 return unhandled;
duke@1 1500 }
duke@1 1501
duke@1 1502 /* *************************************************************************
duke@1 1503 * Overriding/Implementation checking
duke@1 1504 **************************************************************************/
duke@1 1505
duke@1 1506 /** The level of access protection given by a flag set,
duke@1 1507 * where PRIVATE is highest and PUBLIC is lowest.
duke@1 1508 */
duke@1 1509 static int protection(long flags) {
duke@1 1510 switch ((short)(flags & AccessFlags)) {
duke@1 1511 case PRIVATE: return 3;
duke@1 1512 case PROTECTED: return 1;
duke@1 1513 default:
duke@1 1514 case PUBLIC: return 0;
duke@1 1515 case 0: return 2;
duke@1 1516 }
duke@1 1517 }
duke@1 1518
duke@1 1519 /** A customized "cannot override" error message.
duke@1 1520 * @param m The overriding method.
duke@1 1521 * @param other The overridden method.
duke@1 1522 * @return An internationalized string.
duke@1 1523 */
mcimadamore@89 1524 Object cannotOverride(MethodSymbol m, MethodSymbol other) {
duke@1 1525 String key;
duke@1 1526 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1527 key = "cant.override";
duke@1 1528 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1529 key = "cant.implement";
duke@1 1530 else
duke@1 1531 key = "clashes.with";
mcimadamore@89 1532 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1533 }
duke@1 1534
duke@1 1535 /** A customized "override" warning message.
duke@1 1536 * @param m The overriding method.
duke@1 1537 * @param other The overridden method.
duke@1 1538 * @return An internationalized string.
duke@1 1539 */
mcimadamore@89 1540 Object uncheckedOverrides(MethodSymbol m, MethodSymbol other) {
duke@1 1541 String key;
duke@1 1542 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1543 key = "unchecked.override";
duke@1 1544 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1545 key = "unchecked.implement";
duke@1 1546 else
duke@1 1547 key = "unchecked.clash.with";
mcimadamore@89 1548 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1549 }
duke@1 1550
duke@1 1551 /** A customized "override" warning message.
duke@1 1552 * @param m The overriding method.
duke@1 1553 * @param other The overridden method.
duke@1 1554 * @return An internationalized string.
duke@1 1555 */
mcimadamore@89 1556 Object varargsOverrides(MethodSymbol m, MethodSymbol other) {
duke@1 1557 String key;
duke@1 1558 if ((other.owner.flags() & INTERFACE) == 0)
duke@1 1559 key = "varargs.override";
duke@1 1560 else if ((m.owner.flags() & INTERFACE) == 0)
duke@1 1561 key = "varargs.implement";
duke@1 1562 else
duke@1 1563 key = "varargs.clash.with";
mcimadamore@89 1564 return diags.fragment(key, m, m.location(), other, other.location());
duke@1 1565 }
duke@1 1566
duke@1 1567 /** Check that this method conforms with overridden method 'other'.
duke@1 1568 * where `origin' is the class where checking started.
duke@1 1569 * Complications:
duke@1 1570 * (1) Do not check overriding of synthetic methods
duke@1 1571 * (reason: they might be final).
duke@1 1572 * todo: check whether this is still necessary.
duke@1 1573 * (2) Admit the case where an interface proxy throws fewer exceptions
duke@1 1574 * than the method it implements. Augment the proxy methods with the
duke@1 1575 * undeclared exceptions in this case.
duke@1 1576 * (3) When generics are enabled, admit the case where an interface proxy
duke@1 1577 * has a result type
duke@1 1578 * extended by the result type of the method it implements.
duke@1 1579 * Change the proxies result type to the smaller type in this case.
duke@1 1580 *
duke@1 1581 * @param tree The tree from which positions
duke@1 1582 * are extracted for errors.
duke@1 1583 * @param m The overriding method.
duke@1 1584 * @param other The overridden method.
duke@1 1585 * @param origin The class of which the overriding method
duke@1 1586 * is a member.
duke@1 1587 */
duke@1 1588 void checkOverride(JCTree tree,
duke@1 1589 MethodSymbol m,
duke@1 1590 MethodSymbol other,
duke@1 1591 ClassSymbol origin) {
duke@1 1592 // Don't check overriding of synthetic methods or by bridge methods.
duke@1 1593 if ((m.flags() & (SYNTHETIC|BRIDGE)) != 0 || (other.flags() & SYNTHETIC) != 0) {
duke@1 1594 return;
duke@1 1595 }
duke@1 1596
duke@1 1597 // Error if static method overrides instance method (JLS 8.4.6.2).
duke@1 1598 if ((m.flags() & STATIC) != 0 &&
duke@1 1599 (other.flags() & STATIC) == 0) {
duke@1 1600 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.static",
duke@1 1601 cannotOverride(m, other));
vromero@1588 1602 m.flags_field |= BAD_OVERRIDE;
duke@1 1603 return;
duke@1 1604 }
duke@1 1605
duke@1 1606 // Error if instance method overrides static or final
duke@1 1607 // method (JLS 8.4.6.1).
duke@1 1608 if ((other.flags() & FINAL) != 0 ||
duke@1 1609 (m.flags() & STATIC) == 0 &&
duke@1 1610 (other.flags() & STATIC) != 0) {
duke@1 1611 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.meth",
duke@1 1612 cannotOverride(m, other),
mcimadamore@80 1613 asFlagSet(other.flags() & (FINAL | STATIC)));
vromero@1588 1614 m.flags_field |= BAD_OVERRIDE;
duke@1 1615 return;
duke@1 1616 }
duke@1 1617
duke@1 1618 if ((m.owner.flags() & ANNOTATION) != 0) {
duke@1 1619 // handled in validateAnnotationMethod
duke@1 1620 return;
duke@1 1621 }
duke@1 1622
duke@1 1623 // Error if overriding method has weaker access (JLS 8.4.6.3).
duke@1 1624 if ((origin.flags() & INTERFACE) == 0 &&
duke@1 1625 protection(m.flags()) > protection(other.flags())) {
duke@1 1626 log.error(TreeInfo.diagnosticPositionFor(m, tree), "override.weaker.access",
duke@1 1627 cannotOverride(m, other),
mcimadamore@80 1628 other.flags() == 0 ?
vromero@1842 1629 "package" :
mcimadamore@80 1630 asFlagSet(other.flags() & AccessFlags));
vromero@1588 1631 m.flags_field |= BAD_OVERRIDE;
duke@1 1632 return;
duke@1 1633 }
duke@1 1634
duke@1 1635 Type mt = types.memberType(origin.type, m);
duke@1 1636 Type ot = types.memberType(origin.type, other);
duke@1 1637 // Error if overriding result type is different
duke@1 1638 // (or, in the case of generics mode, not a subtype) of
duke@1 1639 // overridden result type. We have to rename any type parameters
duke@1 1640 // before comparing types.
duke@1 1641 List<Type> mtvars = mt.getTypeArguments();
duke@1 1642 List<Type> otvars = ot.getTypeArguments();
duke@1 1643 Type mtres = mt.getReturnType();
duke@1 1644 Type otres = types.subst(ot.getReturnType(), otvars, mtvars);
duke@1 1645
mcimadamore@795 1646 overrideWarner.clear();
duke@1 1647 boolean resultTypesOK =
tbell@202 1648 types.returnTypeSubstitutable(mt, ot, otres, overrideWarner);
duke@1 1649 if (!resultTypesOK) {
jjg@398 1650 if (!allowCovariantReturns &&
duke@1 1651 m.owner != origin &&
duke@1 1652 m.owner.isSubClass(other.owner, types)) {
duke@1 1653 // allow limited interoperability with covariant returns
duke@1 1654 } else {
mcimadamore@362 1655 log.error(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1656 "override.incompatible.ret",
mcimadamore@362 1657 cannotOverride(m, other),
duke@1 1658 mtres, otres);
vromero@1588 1659 m.flags_field |= BAD_OVERRIDE;
duke@1 1660 return;
duke@1 1661 }
mcimadamore@795 1662 } else if (overrideWarner.hasNonSilentLint(LintCategory.UNCHECKED)) {
duke@1 1663 warnUnchecked(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1664 "override.unchecked.ret",
mcimadamore@362 1665 uncheckedOverrides(m, other),
mcimadamore@362 1666 mtres, otres);
duke@1 1667 }
duke@1 1668
duke@1 1669 // Error if overriding method throws an exception not reported
duke@1 1670 // by overridden method.
duke@1 1671 List<Type> otthrown = types.subst(ot.getThrownTypes(), otvars, mtvars);
mcimadamore@362 1672 List<Type> unhandledErased = unhandled(mt.getThrownTypes(), types.erasure(otthrown));
mcimadamore@362 1673 List<Type> unhandledUnerased = unhandled(mt.getThrownTypes(), otthrown);
mcimadamore@362 1674 if (unhandledErased.nonEmpty()) {
duke@1 1675 log.error(TreeInfo.diagnosticPositionFor(m, tree),
duke@1 1676 "override.meth.doesnt.throw",
duke@1 1677 cannotOverride(m, other),
mcimadamore@362 1678 unhandledUnerased.head);
vromero@1588 1679 m.flags_field |= BAD_OVERRIDE;
mcimadamore@362 1680 return;
mcimadamore@362 1681 }
mcimadamore@362 1682 else if (unhandledUnerased.nonEmpty()) {
mcimadamore@362 1683 warnUnchecked(TreeInfo.diagnosticPositionFor(m, tree),
mcimadamore@362 1684 "override.unchecked.thrown",
mcimadamore@362 1685 cannotOverride(m, other),
mcimadamore@362 1686 unhandledUnerased.head);
duke@1 1687 return;
duke@1 1688 }
duke@1 1689
duke@1 1690 // Optional warning if varargs don't agree
duke@1 1691 if ((((m.flags() ^ other.flags()) & Flags.VARARGS) != 0)
mcimadamore@795 1692 && lint.isEnabled(LintCategory.OVERRIDES)) {
duke@1 1693 log.warning(TreeInfo.diagnosticPositionFor(m, tree),
duke@1 1694 ((m.flags() & Flags.VARARGS) != 0)
duke@1 1695 ? "override.varargs.missing"
duke@1 1696 : "override.varargs.extra",
duke@1 1697 varargsOverrides(m, other));
duke@1 1698 }
duke@1 1699
duke@1 1700 // Warn if instance method overrides bridge method (compiler spec ??)
duke@1 1701 if ((other.flags() & BRIDGE) != 0) {
duke@1 1702 log.warning(TreeInfo.diagnosticPositionFor(m, tree), "override.bridge",
duke@1 1703 uncheckedOverrides(m, other));
duke@1 1704 }
duke@1 1705
duke@1 1706 // Warn if a deprecated method overridden by a non-deprecated one.
mcimadamore@852 1707 if (!isDeprecatedOverrideIgnorable(other, origin)) {
mcimadamore@852 1708 checkDeprecated(TreeInfo.diagnosticPositionFor(m, tree), m, other);
duke@1 1709 }
duke@1 1710 }
duke@1 1711 // where
duke@1 1712 private boolean isDeprecatedOverrideIgnorable(MethodSymbol m, ClassSymbol origin) {
duke@1 1713 // If the method, m, is defined in an interface, then ignore the issue if the method
duke@1 1714 // is only inherited via a supertype and also implemented in the supertype,
duke@1 1715 // because in that case, we will rediscover the issue when examining the method
duke@1 1716 // in the supertype.
duke@1 1717 // If the method, m, is not defined in an interface, then the only time we need to
duke@1 1718 // address the issue is when the method is the supertype implemementation: any other
duke@1 1719 // case, we will have dealt with when examining the supertype classes
duke@1 1720 ClassSymbol mc = m.enclClass();
duke@1 1721 Type st = types.supertype(origin.type);
jjg@1374 1722 if (!st.hasTag(CLASS))
duke@1 1723 return true;
duke@1 1724 MethodSymbol stimpl = m.implementation((ClassSymbol)st.tsym, types, false);
duke@1 1725
duke@1 1726 if (mc != null && ((mc.flags() & INTERFACE) != 0)) {
duke@1 1727 List<Type> intfs = types.interfaces(origin.type);
duke@1 1728 return (intfs.contains(mc.type) ? false : (stimpl != null));
duke@1 1729 }
duke@1 1730 else
duke@1 1731 return (stimpl != m);
duke@1 1732 }
duke@1 1733
duke@1 1734
duke@1 1735 // used to check if there were any unchecked conversions
duke@1 1736 Warner overrideWarner = new Warner();
duke@1 1737
duke@1 1738 /** Check that a class does not inherit two concrete methods
duke@1 1739 * with the same signature.
duke@1 1740 * @param pos Position to be used for error reporting.
duke@1 1741 * @param site The class type to be checked.
duke@1 1742 */
duke@1 1743 public void checkCompatibleConcretes(DiagnosticPosition pos, Type site) {
duke@1 1744 Type sup = types.supertype(site);
jjg@1374 1745 if (!sup.hasTag(CLASS)) return;
duke@1 1746
duke@1 1747 for (Type t1 = sup;
jlahoda@1956 1748 t1.hasTag(CLASS) && t1.tsym.type.isParameterized();
duke@1 1749 t1 = types.supertype(t1)) {
duke@1 1750 for (Scope.Entry e1 = t1.tsym.members().elems;
duke@1 1751 e1 != null;
duke@1 1752 e1 = e1.sibling) {
duke@1 1753 Symbol s1 = e1.sym;
duke@1 1754 if (s1.kind != MTH ||
duke@1 1755 (s1.flags() & (STATIC|SYNTHETIC|BRIDGE)) != 0 ||
duke@1 1756 !s1.isInheritedIn(site.tsym, types) ||
duke@1 1757 ((MethodSymbol)s1).implementation(site.tsym,
duke@1 1758 types,
duke@1 1759 true) != s1)
duke@1 1760 continue;
duke@1 1761 Type st1 = types.memberType(t1, s1);
duke@1 1762 int s1ArgsLength = st1.getParameterTypes().length();
duke@1 1763 if (st1 == s1.type) continue;
duke@1 1764
duke@1 1765 for (Type t2 = sup;
jjg@1374 1766 t2.hasTag(CLASS);
duke@1 1767 t2 = types.supertype(t2)) {
mcimadamore@24 1768 for (Scope.Entry e2 = t2.tsym.members().lookup(s1.name);
duke@1 1769 e2.scope != null;
duke@1 1770 e2 = e2.next()) {
duke@1 1771 Symbol s2 = e2.sym;
duke@1 1772 if (s2 == s1 ||
duke@1 1773 s2.kind != MTH ||
duke@1 1774 (s2.flags() & (STATIC|SYNTHETIC|BRIDGE)) != 0 ||
duke@1 1775 s2.type.getParameterTypes().length() != s1ArgsLength ||
duke@1 1776 !s2.isInheritedIn(site.tsym, types) ||
duke@1 1777 ((MethodSymbol)s2).implementation(site.tsym,
duke@1 1778 types,
duke@1 1779 true) != s2)
duke@1 1780 continue;
duke@1 1781 Type st2 = types.memberType(t2, s2);
duke@1 1782 if (types.overrideEquivalent(st1, st2))
duke@1 1783 log.error(pos, "concrete.inheritance.conflict",
duke@1 1784 s1, t1, s2, t2, sup);
duke@1 1785 }
duke@1 1786 }
duke@1 1787 }
duke@1 1788 }
duke@1 1789 }
duke@1 1790
duke@1 1791 /** Check that classes (or interfaces) do not each define an abstract
duke@1 1792 * method with same name and arguments but incompatible return types.
duke@1 1793 * @param pos Position to be used for error reporting.
duke@1 1794 * @param t1 The first argument type.
duke@1 1795 * @param t2 The second argument type.
duke@1 1796 */
duke@1 1797 public boolean checkCompatibleAbstracts(DiagnosticPosition pos,
duke@1 1798 Type t1,
duke@1 1799 Type t2) {
duke@1 1800 return checkCompatibleAbstracts(pos, t1, t2,
duke@1 1801 types.makeCompoundType(t1, t2));
duke@1 1802 }
duke@1 1803
duke@1 1804 public boolean checkCompatibleAbstracts(DiagnosticPosition pos,
duke@1 1805 Type t1,
duke@1 1806 Type t2,
duke@1 1807 Type site) {
mcimadamore@746 1808 return firstIncompatibility(pos, t1, t2, site) == null;
duke@1 1809 }
duke@1 1810
duke@1 1811 /** Return the first method which is defined with same args
duke@1 1812 * but different return types in two given interfaces, or null if none
duke@1 1813 * exists.
duke@1 1814 * @param t1 The first type.
duke@1 1815 * @param t2 The second type.
duke@1 1816 * @param site The most derived type.
duke@1 1817 * @returns symbol from t2 that conflicts with one in t1.
duke@1 1818 */
mcimadamore@746 1819 private Symbol firstIncompatibility(DiagnosticPosition pos, Type t1, Type t2, Type site) {
duke@1 1820 Map<TypeSymbol,Type> interfaces1 = new HashMap<TypeSymbol,Type>();
duke@1 1821 closure(t1, interfaces1);
duke@1 1822 Map<TypeSymbol,Type> interfaces2;
duke@1 1823 if (t1 == t2)
duke@1 1824 interfaces2 = interfaces1;
duke@1 1825 else
duke@1 1826 closure(t2, interfaces1, interfaces2 = new HashMap<TypeSymbol,Type>());
duke@1 1827
duke@1 1828 for (Type t3 : interfaces1.values()) {
duke@1 1829 for (Type t4 : interfaces2.values()) {
mcimadamore@746 1830 Symbol s = firstDirectIncompatibility(pos, t3, t4, site);
duke@1 1831 if (s != null) return s;
duke@1 1832 }
duke@1 1833 }
duke@1 1834 return null;
duke@1 1835 }
duke@1 1836
duke@1 1837 /** Compute all the supertypes of t, indexed by type symbol. */
duke@1 1838 private void closure(Type t, Map<TypeSymbol,Type> typeMap) {
jjg@1374 1839 if (!t.hasTag(CLASS)) return;
duke@1 1840 if (typeMap.put(t.tsym, t) == null) {
duke@1 1841 closure(types.supertype(t), typeMap);
duke@1 1842 for (Type i : types.interfaces(t))
duke@1 1843 closure(i, typeMap);
duke@1 1844 }
duke@1 1845 }
duke@1 1846
duke@1 1847 /** Compute all the supertypes of t, indexed by type symbol (except thise in typesSkip). */
duke@1 1848 private void closure(Type t, Map<TypeSymbol,Type> typesSkip, Map<TypeSymbol,Type> typeMap) {
jjg@1374 1849 if (!t.hasTag(CLASS)) return;
duke@1 1850 if (typesSkip.get(t.tsym) != null) return;
duke@1 1851 if (typeMap.put(t.tsym, t) == null) {
duke@1 1852 closure(types.supertype(t), typesSkip, typeMap);
duke@1 1853 for (Type i : types.interfaces(t))
duke@1 1854 closure(i, typesSkip, typeMap);
duke@1 1855 }
duke@1 1856 }
duke@1 1857
duke@1 1858 /** Return the first method in t2 that conflicts with a method from t1. */
mcimadamore@746 1859 private Symbol firstDirectIncompatibility(DiagnosticPosition pos, Type t1, Type t2, Type site) {
duke@1 1860 for (Scope.Entry e1 = t1.tsym.members().elems; e1 != null; e1 = e1.sibling) {
duke@1 1861 Symbol s1 = e1.sym;
duke@1 1862 Type st1 = null;
mcimadamore@1441 1863 if (s1.kind != MTH || !s1.isInheritedIn(site.tsym, types) ||
mcimadamore@1441 1864 (s1.flags() & SYNTHETIC) != 0) continue;
duke@1 1865 Symbol impl = ((MethodSymbol)s1).implementation(site.tsym, types, false);
duke@1 1866 if (impl != null && (impl.flags() & ABSTRACT) == 0) continue;
duke@1 1867 for (Scope.Entry e2 = t2.tsym.members().lookup(s1.name); e2.scope != null; e2 = e2.next()) {
duke@1 1868 Symbol s2 = e2.sym;
duke@1 1869 if (s1 == s2) continue;
mcimadamore@1441 1870 if (s2.kind != MTH || !s2.isInheritedIn(site.tsym, types) ||
mcimadamore@1441 1871 (s2.flags() & SYNTHETIC) != 0) continue;
duke@1 1872 if (st1 == null) st1 = types.memberType(t1, s1);
duke@1 1873 Type st2 = types.memberType(t2, s2);
duke@1 1874 if (types.overrideEquivalent(st1, st2)) {
duke@1 1875 List<Type> tvars1 = st1.getTypeArguments();
duke@1 1876 List<Type> tvars2 = st2.getTypeArguments();
duke@1 1877 Type rt1 = st1.getReturnType();
duke@1 1878 Type rt2 = types.subst(st2.getReturnType(), tvars2, tvars1);
duke@1 1879 boolean compat =
duke@1 1880 types.isSameType(rt1, rt2) ||
jjg@1374 1881 !rt1.isPrimitiveOrVoid() &&
jjg@1374 1882 !rt2.isPrimitiveOrVoid() &&
mcimadamore@1415 1883 (types.covariantReturnType(rt1, rt2, types.noWarnings) ||
mcimadamore@1415 1884 types.covariantReturnType(rt2, rt1, types.noWarnings)) ||
mcimadamore@59 1885 checkCommonOverriderIn(s1,s2,site);
mcimadamore@746 1886 if (!compat) {
mcimadamore@746 1887 log.error(pos, "types.incompatible.diff.ret",
mcimadamore@746 1888 t1, t2, s2.name +
mcimadamore@746 1889 "(" + types.memberType(t2, s2).getParameterTypes() + ")");
mcimadamore@746 1890 return s2;
mcimadamore@746 1891 }
mcimadamore@889 1892 } else if (checkNameClash((ClassSymbol)site.tsym, s1, s2) &&
mcimadamore@889 1893 !checkCommonOverriderIn(s1, s2, site)) {
mcimadamore@746 1894 log.error(pos,
mcimadamore@746 1895 "name.clash.same.erasure.no.override",
mcimadamore@746 1896 s1, s1.location(),
mcimadamore@746 1897 s2, s2.location());
mcimadamore@746 1898 return s2;
duke@1 1899 }
duke@1 1900 }
duke@1 1901 }
duke@1 1902 return null;
duke@1 1903 }
mcimadamore@59 1904 //WHERE
mcimadamore@59 1905 boolean checkCommonOverriderIn(Symbol s1, Symbol s2, Type site) {
mcimadamore@59 1906 Map<TypeSymbol,Type> supertypes = new HashMap<TypeSymbol,Type>();
mcimadamore@59 1907 Type st1 = types.memberType(site, s1);
mcimadamore@59 1908 Type st2 = types.memberType(site, s2);
mcimadamore@59 1909 closure(site, supertypes);
mcimadamore@59 1910 for (Type t : supertypes.values()) {
mcimadamore@59 1911 for (Scope.Entry e = t.tsym.members().lookup(s1.name); e.scope != null; e = e.next()) {
mcimadamore@59 1912 Symbol s3 = e.sym;
mcimadamore@59 1913 if (s3 == s1 || s3 == s2 || s3.kind != MTH || (s3.flags() & (BRIDGE|SYNTHETIC)) != 0) continue;
mcimadamore@59 1914 Type st3 = types.memberType(site,s3);
mcimadamore@1811 1915 if (types.overrideEquivalent(st3, st1) &&
mcimadamore@1811 1916 types.overrideEquivalent(st3, st2) &&
mcimadamore@1811 1917 types.returnTypeSubstitutable(st3, st1) &&
mcimadamore@1811 1918 types.returnTypeSubstitutable(st3, st2)) {
mcimadamore@1811 1919 return true;
mcimadamore@59 1920 }
mcimadamore@59 1921 }
mcimadamore@59 1922 }
mcimadamore@59 1923 return false;
mcimadamore@59 1924 }
duke@1 1925
duke@1 1926 /** Check that a given method conforms with any method it overrides.
duke@1 1927 * @param tree The tree from which positions are extracted
duke@1 1928 * for errors.
duke@1 1929 * @param m The overriding method.
duke@1 1930 */
duke@1 1931 void checkOverride(JCTree tree, MethodSymbol m) {
duke@1 1932 ClassSymbol origin = (ClassSymbol)m.owner;
duke@1 1933 if ((origin.flags() & ENUM) != 0 && names.finalize.equals(m.name))
duke@1 1934 if (m.overrides(syms.enumFinalFinalize, origin, types, false)) {
duke@1 1935 log.error(tree.pos(), "enum.no.finalize");
duke@1 1936 return;
duke@1 1937 }
jjg@1374 1938 for (Type t = origin.type; t.hasTag(CLASS);
duke@1 1939 t = types.supertype(t)) {
mcimadamore@746 1940 if (t != origin.type) {
mcimadamore@746 1941 checkOverride(tree, t, origin, m);
mcimadamore@746 1942 }
mcimadamore@746 1943 for (Type t2 : types.interfaces(t)) {
mcimadamore@746 1944 checkOverride(tree, t2, origin, m);
duke@1 1945 }
duke@1 1946 }
duke@1 1947 }
duke@1 1948
mcimadamore@746 1949 void checkOverride(JCTree tree, Type site, ClassSymbol origin, MethodSymbol m) {
mcimadamore@746 1950 TypeSymbol c = site.tsym;
mcimadamore@746 1951 Scope.Entry e = c.members().lookup(m.name);
mcimadamore@746 1952 while (e.scope != null) {
mcimadamore@746 1953 if (m.overrides(e.sym, origin, types, false)) {
mcimadamore@746 1954 if ((e.sym.flags() & ABSTRACT) == 0) {
mcimadamore@746 1955 checkOverride(tree, m, (MethodSymbol)e.sym, origin);
mcimadamore@746 1956 }
mcimadamore@746 1957 }
mcimadamore@746 1958 e = e.next();
mcimadamore@746 1959 }
mcimadamore@746 1960 }
mcimadamore@746 1961
vromero@1607 1962 private Filter<Symbol> equalsHasCodeFilter = new Filter<Symbol>() {
vromero@1607 1963 public boolean accepts(Symbol s) {
vromero@1607 1964 return MethodSymbol.implementation_filter.accepts(s) &&
vromero@1607 1965 (s.flags() & BAD_OVERRIDE) == 0;
vromero@1607 1966
vromero@1607 1967 }
vromero@1607 1968 };
vromero@1607 1969
vromero@1620 1970 public void checkClassOverrideEqualsAndHashIfNeeded(DiagnosticPosition pos,
vromero@1620 1971 ClassSymbol someClass) {
vromero@1620 1972 /* At present, annotations cannot possibly have a method that is override
vromero@1620 1973 * equivalent with Object.equals(Object) but in any case the condition is
vromero@1620 1974 * fine for completeness.
vromero@1620 1975 */
vromero@1620 1976 if (someClass == (ClassSymbol)syms.objectType.tsym ||
vromero@1620 1977 someClass.isInterface() || someClass.isEnum() ||
vromero@1620 1978 (someClass.flags() & ANNOTATION) != 0 ||
vromero@1620 1979 (someClass.flags() & ABSTRACT) != 0) return;
vromero@1620 1980 //anonymous inner classes implementing interfaces need especial treatment
vromero@1620 1981 if (someClass.isAnonymous()) {
vromero@1620 1982 List<Type> interfaces = types.interfaces(someClass.type);
vromero@1620 1983 if (interfaces != null && !interfaces.isEmpty() &&
vromero@1620 1984 interfaces.head.tsym == syms.comparatorType.tsym) return;
vromero@1620 1985 }
vromero@1620 1986 checkClassOverrideEqualsAndHash(pos, someClass);
vromero@1620 1987 }
vromero@1620 1988
vromero@1620 1989 private void checkClassOverrideEqualsAndHash(DiagnosticPosition pos,
vromero@1607 1990 ClassSymbol someClass) {
vromero@1588 1991 if (lint.isEnabled(LintCategory.OVERRIDES)) {
vromero@1607 1992 MethodSymbol equalsAtObject = (MethodSymbol)syms.objectType
vromero@1607 1993 .tsym.members().lookup(names.equals).sym;
vromero@1607 1994 MethodSymbol hashCodeAtObject = (MethodSymbol)syms.objectType
vromero@1607 1995 .tsym.members().lookup(names.hashCode).sym;
vromero@1607 1996 boolean overridesEquals = types.implementation(equalsAtObject,
vromero@1607 1997 someClass, false, equalsHasCodeFilter).owner == someClass;
vromero@1607 1998 boolean overridesHashCode = types.implementation(hashCodeAtObject,
vromero@1607 1999 someClass, false, equalsHasCodeFilter) != hashCodeAtObject;
vromero@1607 2000
vromero@1607 2001 if (overridesEquals && !overridesHashCode) {
vromero@1607 2002 log.warning(LintCategory.OVERRIDES, pos,
vromero@1620 2003 "override.equals.but.not.hashcode", someClass);
vromero@1588 2004 }
vromero@1588 2005 }
vromero@1588 2006 }
vromero@1588 2007
mcimadamore@746 2008 private boolean checkNameClash(ClassSymbol origin, Symbol s1, Symbol s2) {
mcimadamore@858 2009 ClashFilter cf = new ClashFilter(origin.type);
mcimadamore@858 2010 return (cf.accepts(s1) &&
mcimadamore@858 2011 cf.accepts(s2) &&
mcimadamore@858 2012 types.hasSameArgs(s1.erasure(types), s2.erasure(types)));
mcimadamore@746 2013 }
mcimadamore@746 2014
mcimadamore@746 2015
duke@1 2016 /** Check that all abstract members of given class have definitions.
duke@1 2017 * @param pos Position to be used for error reporting.
duke@1 2018 * @param c The class.
duke@1 2019 */
duke@1 2020 void checkAllDefined(DiagnosticPosition pos, ClassSymbol c) {
duke@1 2021 try {
duke@1 2022 MethodSymbol undef = firstUndef(c, c);
duke@1 2023 if (undef != null) {
duke@1 2024 if ((c.flags() & ENUM) != 0 &&
duke@1 2025 types.supertype(c.type).tsym == syms.enumSym &&
duke@1 2026 (c.flags() & FINAL) == 0) {
duke@1 2027 // add the ABSTRACT flag to an enum
duke@1 2028 c.flags_field |= ABSTRACT;
duke@1 2029 } else {
duke@1 2030 MethodSymbol undef1 =
duke@1 2031 new MethodSymbol(undef.flags(), undef.name,
duke@1 2032 types.memberType(c.type, undef), undef.owner);
duke@1 2033 log.error(pos, "does.not.override.abstract",
duke@1 2034 c, undef1, undef1.location());
duke@1 2035 }
duke@1 2036 }
duke@1 2037 } catch (CompletionFailure ex) {
duke@1 2038 completionError(pos, ex);
duke@1 2039 }
duke@1 2040 }
duke@1 2041 //where
duke@1 2042 /** Return first abstract member of class `c' that is not defined
duke@1 2043 * in `impl', null if there is none.
duke@1 2044 */
duke@1 2045 private MethodSymbol firstUndef(ClassSymbol impl, ClassSymbol c) {
duke@1 2046 MethodSymbol undef = null;
duke@1 2047 // Do not bother to search in classes that are not abstract,
duke@1 2048 // since they cannot have abstract members.
duke@1 2049 if (c == impl || (c.flags() & (ABSTRACT | INTERFACE)) != 0) {
duke@1 2050 Scope s = c.members();
duke@1 2051 for (Scope.Entry e = s.elems;
duke@1 2052 undef == null && e != null;
duke@1 2053 e = e.sibling) {
duke@1 2054 if (e.sym.kind == MTH &&
mcimadamore@1393 2055 (e.sym.flags() & (ABSTRACT|IPROXY|DEFAULT)) == ABSTRACT) {
duke@1 2056 MethodSymbol absmeth = (MethodSymbol)e.sym;
duke@1 2057 MethodSymbol implmeth = absmeth.implementation(impl, types, true);
mcimadamore@1393 2058 if (implmeth == null || implmeth == absmeth) {
mcimadamore@1393 2059 //look for default implementations
mcimadamore@1393 2060 if (allowDefaultMethods) {
mcimadamore@1393 2061 MethodSymbol prov = types.interfaceCandidates(impl.type, absmeth).head;
mcimadamore@1393 2062 if (prov != null && prov.overrides(absmeth, impl, types, true)) {
mcimadamore@1393 2063 implmeth = prov;
mcimadamore@1393 2064 }
mcimadamore@1393 2065 }
mcimadamore@1393 2066 }
mcimadamore@1393 2067 if (implmeth == null || implmeth == absmeth) {
duke@1 2068 undef = absmeth;
mcimadamore@1393 2069 }
duke@1 2070 }
duke@1 2071 }
duke@1 2072 if (undef == null) {
duke@1 2073 Type st = types.supertype(c.type);
jjg@1374 2074 if (st.hasTag(CLASS))
duke@1 2075 undef = firstUndef(impl, (ClassSymbol)st.tsym);
duke@1 2076 }
duke@1 2077 for (List<Type> l = types.interfaces(c.type);
duke@1 2078 undef == null && l.nonEmpty();
duke@1 2079 l = l.tail) {
duke@1 2080 undef = firstUndef(impl, (ClassSymbol)l.head.tsym);
duke@1 2081 }
duke@1 2082 }
duke@1 2083 return undef;
duke@1 2084 }
duke@1 2085
mcimadamore@690 2086 void checkNonCyclicDecl(JCClassDecl tree) {
mcimadamore@690 2087 CycleChecker cc = new CycleChecker();
mcimadamore@690 2088 cc.scan(tree);
mcimadamore@690 2089 if (!cc.errorFound && !cc.partialCheck) {
mcimadamore@690 2090 tree.sym.flags_field |= ACYCLIC;
mcimadamore@690 2091 }
mcimadamore@690 2092 }
mcimadamore@690 2093
mcimadamore@690 2094 class CycleChecker extends TreeScanner {
mcimadamore@690 2095
mcimadamore@690 2096 List<Symbol> seenClasses = List.nil();
mcimadamore@690 2097 boolean errorFound = false;
mcimadamore@690 2098 boolean partialCheck = false;
mcimadamore@690 2099
mcimadamore@690 2100 private void checkSymbol(DiagnosticPosition pos, Symbol sym) {
mcimadamore@690 2101 if (sym != null && sym.kind == TYP) {
mcimadamore@690 2102 Env<AttrContext> classEnv = enter.getEnv((TypeSymbol)sym);
mcimadamore@690 2103 if (classEnv != null) {
mcimadamore@690 2104 DiagnosticSource prevSource = log.currentSource();
mcimadamore@690 2105 try {
mcimadamore@690 2106 log.useSource(classEnv.toplevel.sourcefile);
mcimadamore@690 2107 scan(classEnv.tree);
mcimadamore@690 2108 }
mcimadamore@690 2109 finally {
mcimadamore@690 2110 log.useSource(prevSource.getFile());
mcimadamore@690 2111 }
mcimadamore@690 2112 } else if (sym.kind == TYP) {
mcimadamore@690 2113 checkClass(pos, sym, List.<JCTree>nil());
mcimadamore@690 2114 }
mcimadamore@690 2115 } else {
mcimadamore@690 2116 //not completed yet
mcimadamore@690 2117 partialCheck = true;
mcimadamore@690 2118 }
mcimadamore@690 2119 }
mcimadamore@690 2120
mcimadamore@690 2121 @Override
mcimadamore@690 2122 public void visitSelect(JCFieldAccess tree) {
mcimadamore@690 2123 super.visitSelect(tree);
mcimadamore@690 2124 checkSymbol(tree.pos(), tree.sym);
mcimadamore@690 2125 }
mcimadamore@690 2126
mcimadamore@690 2127 @Override
mcimadamore@690 2128 public void visitIdent(JCIdent tree) {
mcimadamore@690 2129 checkSymbol(tree.pos(), tree.sym);
mcimadamore@690 2130 }
mcimadamore@690 2131
mcimadamore@690 2132 @Override
mcimadamore@690 2133 public void visitTypeApply(JCTypeApply tree) {
mcimadamore@690 2134 scan(tree.clazz);
mcimadamore@690 2135 }
mcimadamore@690 2136
mcimadamore@690 2137 @Override
mcimadamore@690 2138 public void visitTypeArray(JCArrayTypeTree tree) {
mcimadamore@690 2139 scan(tree.elemtype);
mcimadamore@690 2140 }
mcimadamore@690 2141
mcimadamore@690 2142 @Override
mcimadamore@690 2143 public void visitClassDef(JCClassDecl tree) {
mcimadamore@690 2144 List<JCTree> supertypes = List.nil();
mcimadamore@690 2145 if (tree.getExtendsClause() != null) {
mcimadamore@690 2146 supertypes = supertypes.prepend(tree.getExtendsClause());
mcimadamore@690 2147 }
mcimadamore@690 2148 if (tree.getImplementsClause() != null) {
mcimadamore@690 2149 for (JCTree intf : tree.getImplementsClause()) {
mcimadamore@690 2150 supertypes = supertypes.prepend(intf);
mcimadamore@690 2151 }
mcimadamore@690 2152 }
mcimadamore@690 2153 checkClass(tree.pos(), tree.sym, supertypes);
mcimadamore@690 2154 }
mcimadamore@690 2155
mcimadamore@690 2156 void checkClass(DiagnosticPosition pos, Symbol c, List<JCTree> supertypes) {
mcimadamore@690 2157 if ((c.flags_field & ACYCLIC) != 0)
mcimadamore@690 2158 return;
mcimadamore@690 2159 if (seenClasses.contains(c)) {
mcimadamore@690 2160 errorFound = true;
mcimadamore@690 2161 noteCyclic(pos, (ClassSymbol)c);
mcimadamore@690 2162 } else if (!c.type.isErroneous()) {
mcimadamore@690 2163 try {
mcimadamore@690 2164 seenClasses = seenClasses.prepend(c);
jjg@1374 2165 if (c.type.hasTag(CLASS)) {
mcimadamore@690 2166 if (supertypes.nonEmpty()) {
mcimadamore@690 2167 scan(supertypes);
mcimadamore@690 2168 }
mcimadamore@690 2169 else {
mcimadamore@690 2170 ClassType ct = (ClassType)c.type;
mcimadamore@690 2171 if (ct.supertype_field == null ||
mcimadamore@690 2172 ct.interfaces_field == null) {
mcimadamore@690 2173 //not completed yet
mcimadamore@690 2174 partialCheck = true;
mcimadamore@690 2175 return;
mcimadamore@690 2176 }
mcimadamore@690 2177 checkSymbol(pos, ct.supertype_field.tsym);
mcimadamore@690 2178 for (Type intf : ct.interfaces_field) {
mcimadamore@690 2179 checkSymbol(pos, intf.tsym);
mcimadamore@690 2180 }
mcimadamore@690 2181 }
mcimadamore@690 2182 if (c.owner.kind == TYP) {
mcimadamore@690 2183 checkSymbol(pos, c.owner);
mcimadamore@690 2184 }
mcimadamore@690 2185 }
mcimadamore@690 2186 } finally {
mcimadamore@690 2187 seenClasses = seenClasses.tail;
mcimadamore@690 2188 }
mcimadamore@690 2189 }
mcimadamore@690 2190 }
mcimadamore@690 2191 }
mcimadamore@690 2192
duke@1 2193 /** Check for cyclic references. Issue an error if the
duke@1 2194 * symbol of the type referred to has a LOCKED flag set.
duke@1 2195 *
duke@1 2196 * @param pos Position to be used for error reporting.
duke@1 2197 * @param t The type referred to.
duke@1 2198 */
duke@1 2199 void checkNonCyclic(DiagnosticPosition pos, Type t) {
duke@1 2200 checkNonCyclicInternal(pos, t);
duke@1 2201 }
duke@1 2202
duke@1 2203
duke@1 2204 void checkNonCyclic(DiagnosticPosition pos, TypeVar t) {
mcimadamore@236 2205 checkNonCyclic1(pos, t, List.<TypeVar>nil());
duke@1 2206 }
duke@1 2207
mcimadamore@236 2208 private void checkNonCyclic1(DiagnosticPosition pos, Type t, List<TypeVar> seen) {
duke@1 2209 final TypeVar tv;
jjg@1374 2210 if (t.hasTag(TYPEVAR) && (t.tsym.flags() & UNATTRIBUTED) != 0)
mcimadamore@42 2211 return;
duke@1 2212 if (seen.contains(t)) {
jjg@1978 2213 tv = (TypeVar)t.unannotatedType();
jjg@110 2214 tv.bound = types.createErrorType(t);
duke@1 2215 log.error(pos, "cyclic.inheritance", t);
jjg@1374 2216 } else if (t.hasTag(TYPEVAR)) {
jjg@1978 2217 tv = (TypeVar)t.unannotatedType();
mcimadamore@236 2218 seen = seen.prepend(tv);
duke@1 2219 for (Type b : types.getBounds(tv))
duke@1 2220 checkNonCyclic1(pos, b, seen);
duke@1 2221 }
duke@1 2222 }
duke@1 2223
duke@1 2224 /** Check for cyclic references. Issue an error if the
duke@1 2225 * symbol of the type referred to has a LOCKED flag set.
duke@1 2226 *
duke@1 2227 * @param pos Position to be used for error reporting.
duke@1 2228 * @param t The type referred to.
duke@1 2229 * @returns True if the check completed on all attributed classes
duke@1 2230 */
duke@1 2231 private boolean checkNonCyclicInternal(DiagnosticPosition pos, Type t) {
duke@1 2232 boolean complete = true; // was the check complete?
duke@1 2233 //- System.err.println("checkNonCyclicInternal("+t+");");//DEBUG
duke@1 2234 Symbol c = t.tsym;
duke@1 2235 if ((c.flags_field & ACYCLIC) != 0) return true;
duke@1 2236
duke@1 2237 if ((c.flags_field & LOCKED) != 0) {
duke@1 2238 noteCyclic(pos, (ClassSymbol)c);
duke@1 2239 } else if (!c.type.isErroneous()) {
duke@1 2240 try {
duke@1 2241 c.flags_field |= LOCKED;
jjg@1374 2242 if (c.type.hasTag(CLASS)) {
duke@1 2243 ClassType clazz = (ClassType)c.type;
duke@1 2244 if (clazz.interfaces_field != null)
duke@1 2245 for (List<Type> l=clazz.interfaces_field; l.nonEmpty(); l=l.tail)
duke@1 2246 complete &= checkNonCyclicInternal(pos, l.head);
duke@1 2247 if (clazz.supertype_field != null) {
duke@1 2248 Type st = clazz.supertype_field;
jjg@1374 2249 if (st != null && st.hasTag(CLASS))
duke@1 2250 complete &= checkNonCyclicInternal(pos, st);
duke@1 2251 }
duke@1 2252 if (c.owner.kind == TYP)
duke@1 2253 complete &= checkNonCyclicInternal(pos, c.owner.type);
duke@1 2254 }
duke@1 2255 } finally {
duke@1 2256 c.flags_field &= ~LOCKED;
duke@1 2257 }
duke@1 2258 }
duke@1 2259 if (complete)
duke@1 2260 complete = ((c.flags_field & UNATTRIBUTED) == 0) && c.completer == null;
duke@1 2261 if (complete) c.flags_field |= ACYCLIC;
duke@1 2262 return complete;
duke@1 2263 }
duke@1 2264
duke@1 2265 /** Note that we found an inheritance cycle. */
duke@1 2266 private void noteCyclic(DiagnosticPosition pos, ClassSymbol c) {
duke@1 2267 log.error(pos, "cyclic.inheritance", c);
duke@1 2268 for (List<Type> l=types.interfaces(c.type); l.nonEmpty(); l=l.tail)
jjg@110 2269 l.head = types.createErrorType((ClassSymbol)l.head.tsym, Type.noType);
duke@1 2270 Type st = types.supertype(c.type);
jjg@1374 2271 if (st.hasTag(CLASS))
jjg@110 2272 ((ClassType)c.type).supertype_field = types.createErrorType((ClassSymbol)st.tsym, Type.noType);
jjg@110 2273 c.type = types.createErrorType(c, c.type);
duke@1 2274 c.flags_field |= ACYCLIC;
duke@1 2275 }
duke@1 2276
duke@1 2277 /** Check that all methods which implement some
duke@1 2278 * method conform to the method they implement.
duke@1 2279 * @param tree The class definition whose members are checked.
duke@1 2280 */
duke@1 2281 void checkImplementations(JCClassDecl tree) {
mcimadamore@1415 2282 checkImplementations(tree, tree.sym, tree.sym);
duke@1 2283 }
jjg@1521 2284 //where
duke@1 2285 /** Check that all methods which implement some
duke@1 2286 * method in `ic' conform to the method they implement.
duke@1 2287 */
mcimadamore@1415 2288 void checkImplementations(JCTree tree, ClassSymbol origin, ClassSymbol ic) {
duke@1 2289 for (List<Type> l = types.closure(ic.type); l.nonEmpty(); l = l.tail) {
duke@1 2290 ClassSymbol lc = (ClassSymbol)l.head.tsym;
duke@1 2291 if ((allowGenerics || origin != lc) && (lc.flags() & ABSTRACT) != 0) {
duke@1 2292 for (Scope.Entry e=lc.members().elems; e != null; e=e.sibling) {
duke@1 2293 if (e.sym.kind == MTH &&
duke@1 2294 (e.sym.flags() & (STATIC|ABSTRACT)) == ABSTRACT) {
duke@1 2295 MethodSymbol absmeth = (MethodSymbol)e.sym;
duke@1 2296 MethodSymbol implmeth = absmeth.implementation(origin, types, false);
duke@1 2297 if (implmeth != null && implmeth != absmeth &&
duke@1 2298 (implmeth.owner.flags() & INTERFACE) ==
duke@1 2299 (origin.flags() & INTERFACE)) {
duke@1 2300 // don't check if implmeth is in a class, yet
duke@1 2301 // origin is an interface. This case arises only
duke@1 2302 // if implmeth is declared in Object. The reason is
duke@1 2303 // that interfaces really don't inherit from
duke@1 2304 // Object it's just that the compiler represents
duke@1 2305 // things that way.
duke@1 2306 checkOverride(tree, implmeth, absmeth, origin);
duke@1 2307 }
duke@1 2308 }
duke@1 2309 }
duke@1 2310 }
duke@1 2311 }
duke@1 2312 }
duke@1 2313
duke@1 2314 /** Check that all abstract methods implemented by a class are
duke@1 2315 * mutually compatible.
duke@1 2316 * @param pos Position to be used for error reporting.
duke@1 2317 * @param c The class whose interfaces are checked.
duke@1 2318 */
duke@1 2319 void checkCompatibleSupertypes(DiagnosticPosition pos, Type c) {
duke@1 2320 List<Type> supertypes = types.interfaces(c);
duke@1 2321 Type supertype = types.supertype(c);
jjg@1374 2322 if (supertype.hasTag(CLASS) &&
duke@1 2323 (supertype.tsym.flags() & ABSTRACT) != 0)
duke@1 2324 supertypes = supertypes.prepend(supertype);
duke@1 2325 for (List<Type> l = supertypes; l.nonEmpty(); l = l.tail) {
duke@1 2326 if (allowGenerics && !l.head.getTypeArguments().isEmpty() &&
duke@1 2327 !checkCompatibleAbstracts(pos, l.head, l.head, c))
duke@1 2328 return;
duke@1 2329 for (List<Type> m = supertypes; m != l; m = m.tail)
duke@1 2330 if (!checkCompatibleAbstracts(pos, l.head, m.head, c))
duke@1 2331 return;
duke@1 2332 }
duke@1 2333 checkCompatibleConcretes(pos, c);
duke@1 2334 }
duke@1 2335
mcimadamore@359 2336 void checkConflicts(DiagnosticPosition pos, Symbol sym, TypeSymbol c) {
mcimadamore@359 2337 for (Type ct = c.type; ct != Type.noType ; ct = types.supertype(ct)) {
mcimadamore@359 2338 for (Scope.Entry e = ct.tsym.members().lookup(sym.name); e.scope == ct.tsym.members(); e = e.next()) {
mcimadamore@359 2339 // VM allows methods and variables with differing types
mcimadamore@359 2340 if (sym.kind == e.sym.kind &&
mcimadamore@359 2341 types.isSameType(types.erasure(sym.type), types.erasure(e.sym.type)) &&
mcimadamore@359 2342 sym != e.sym &&
mcimadamore@359 2343 (sym.flags() & Flags.SYNTHETIC) != (e.sym.flags() & Flags.SYNTHETIC) &&
mcimadamore@608 2344 (sym.flags() & IPROXY) == 0 && (e.sym.flags() & IPROXY) == 0 &&
mcimadamore@359 2345 (sym.flags() & BRIDGE) == 0 && (e.sym.flags() & BRIDGE) == 0) {
mcimadamore@359 2346 syntheticError(pos, (e.sym.flags() & SYNTHETIC) == 0 ? e.sym : sym);
mcimadamore@359 2347 return;
mcimadamore@359 2348 }
mcimadamore@359 2349 }
mcimadamore@359 2350 }
mcimadamore@359 2351 }
mcimadamore@359 2352
mcimadamore@780 2353 /** Check that all non-override equivalent methods accessible from 'site'
mcimadamore@780 2354 * are mutually compatible (JLS 8.4.8/9.4.1).
mcimadamore@780 2355 *
mcimadamore@780 2356 * @param pos Position to be used for error reporting.
mcimadamore@780 2357 * @param site The class whose methods are checked.
mcimadamore@780 2358 * @param sym The method symbol to be checked.
mcimadamore@780 2359 */
mcimadamore@858 2360 void checkOverrideClashes(DiagnosticPosition pos, Type site, MethodSymbol sym) {
mcimadamore@858 2361 ClashFilter cf = new ClashFilter(site);
mcimadamore@1198 2362 //for each method m1 that is overridden (directly or indirectly)
mcimadamore@1198 2363 //by method 'sym' in 'site'...
mcimadamore@1198 2364 for (Symbol m1 : types.membersClosure(site, false).getElementsByName(sym.name, cf)) {
vromero@2000 2365 if (!sym.overrides(m1, site.tsym, types, false)) {
vromero@2000 2366 checkPotentiallyAmbiguousOverloads(pos, site, sym, (MethodSymbol)m1);
vromero@2000 2367 continue;
vromero@2000 2368 }
mcimadamore@1198 2369 //...check each method m2 that is a member of 'site'
mcimadamore@1198 2370 for (Symbol m2 : types.membersClosure(site, false).getElementsByName(sym.name, cf)) {
mcimadamore@1198 2371 if (m2 == m1) continue;
mcimadamore@858 2372 //if (i) the signature of 'sym' is not a subsignature of m1 (seen as
mcimadamore@858 2373 //a member of 'site') and (ii) m1 has the same erasure as m2, issue an error
mcimadamore@1393 2374 if (!types.isSubSignature(sym.type, types.memberType(site, m2), allowStrictMethodClashCheck) &&
mcimadamore@1198 2375 types.hasSameArgs(m2.erasure(types), m1.erasure(types))) {
mcimadamore@858 2376 sym.flags_field |= CLASH;
mcimadamore@1198 2377 String key = m1 == sym ?
mcimadamore@858 2378 "name.clash.same.erasure.no.override" :
mcimadamore@858 2379 "name.clash.same.erasure.no.override.1";
mcimadamore@858 2380 log.error(pos,
mcimadamore@858 2381 key,
mcimadamore@858 2382 sym, sym.location(),
mcimadamore@1198 2383 m2, m2.location(),
mcimadamore@1198 2384 m1, m1.location());
mcimadamore@858 2385 return;
mcimadamore@858 2386 }
mcimadamore@780 2387 }
mcimadamore@780 2388 }
mcimadamore@780 2389 }
mcimadamore@780 2390
mcimadamore@877 2391
mcimadamore@877 2392
mcimadamore@858 2393 /** Check that all static methods accessible from 'site' are
mcimadamore@858 2394 * mutually compatible (JLS 8.4.8).
mcimadamore@858 2395 *
mcimadamore@858 2396 * @param pos Position to be used for error reporting.
mcimadamore@858 2397 * @param site The class whose methods are checked.
mcimadamore@858 2398 * @param sym The method symbol to be checked.
mcimadamore@780 2399 */
mcimadamore@858 2400 void checkHideClashes(DiagnosticPosition pos, Type site, MethodSymbol sym) {
mcimadamore@780 2401 ClashFilter cf = new ClashFilter(site);
mcimadamore@858 2402 //for each method m1 that is a member of 'site'...
mcimadamore@1015 2403 for (Symbol s : types.membersClosure(site, true).getElementsByName(sym.name, cf)) {
mcimadamore@858 2404 //if (i) the signature of 'sym' is not a subsignature of m1 (seen as
mcimadamore@858 2405 //a member of 'site') and (ii) 'sym' has the same erasure as m1, issue an error
vromero@2000 2406 if (!types.isSubSignature(sym.type, types.memberType(site, s), allowStrictMethodClashCheck)) {
vromero@2000 2407 if (types.hasSameArgs(s.erasure(types), sym.erasure(types))) {
vromero@2000 2408 log.error(pos,
vromero@2000 2409 "name.clash.same.erasure.no.hide",
vromero@2000 2410 sym, sym.location(),
vromero@2000 2411 s, s.location());
vromero@2000 2412 return;
vromero@2000 2413 } else {
vromero@2000 2414 checkPotentiallyAmbiguousOverloads(pos, site, sym, (MethodSymbol)s);
vromero@2000 2415 }
vromero@2000 2416 }
mcimadamore@858 2417 }
mcimadamore@858 2418 }
mcimadamore@780 2419
mcimadamore@858 2420 //where
mcimadamore@858 2421 private class ClashFilter implements Filter<Symbol> {
mcimadamore@780 2422
mcimadamore@858 2423 Type site;
mcimadamore@780 2424
mcimadamore@858 2425 ClashFilter(Type site) {
mcimadamore@858 2426 this.site = site;
mcimadamore@858 2427 }
mcimadamore@858 2428
mcimadamore@858 2429 boolean shouldSkip(Symbol s) {
mcimadamore@858 2430 return (s.flags() & CLASH) != 0 &&
mcimadamore@858 2431 s.owner == site.tsym;
mcimadamore@858 2432 }
mcimadamore@858 2433
mcimadamore@858 2434 public boolean accepts(Symbol s) {
mcimadamore@858 2435 return s.kind == MTH &&
mcimadamore@858 2436 (s.flags() & SYNTHETIC) == 0 &&
mcimadamore@858 2437 !shouldSkip(s) &&
mcimadamore@858 2438 s.isInheritedIn(site.tsym, types) &&
mcimadamore@858 2439 !s.isConstructor();
mcimadamore@858 2440 }
mcimadamore@858 2441 }
mcimadamore@780 2442
mcimadamore@1393 2443 void checkDefaultMethodClashes(DiagnosticPosition pos, Type site) {
mcimadamore@1393 2444 DefaultMethodClashFilter dcf = new DefaultMethodClashFilter(site);
mcimadamore@1393 2445 for (Symbol m : types.membersClosure(site, false).getElements(dcf)) {
mcimadamore@1393 2446 Assert.check(m.kind == MTH);
mcimadamore@1393 2447 List<MethodSymbol> prov = types.interfaceCandidates(site, (MethodSymbol)m);
mcimadamore@1393 2448 if (prov.size() > 1) {
mcimadamore@1393 2449 ListBuffer<Symbol> abstracts = ListBuffer.lb();
mcimadamore@1393 2450 ListBuffer<Symbol> defaults = ListBuffer.lb();
mcimadamore@1393 2451 for (MethodSymbol provSym : prov) {
mcimadamore@1393 2452 if ((provSym.flags() & DEFAULT) != 0) {
mcimadamore@1393 2453 defaults = defaults.append(provSym);
mcimadamore@1393 2454 } else if ((provSym.flags() & ABSTRACT) != 0) {
mcimadamore@1393 2455 abstracts = abstracts.append(provSym);
mcimadamore@1393 2456 }
mcimadamore@1393 2457 if (defaults.nonEmpty() && defaults.size() + abstracts.size() >= 2) {
mcimadamore@1393 2458 //strong semantics - issue an error if two sibling interfaces
mcimadamore@1393 2459 //have two override-equivalent defaults - or if one is abstract
mcimadamore@1393 2460 //and the other is default
mcimadamore@1393 2461 String errKey;
mcimadamore@1393 2462 Symbol s1 = defaults.first();
mcimadamore@1393 2463 Symbol s2;
mcimadamore@1393 2464 if (defaults.size() > 1) {
mcimadamore@1393 2465 errKey = "types.incompatible.unrelated.defaults";
mcimadamore@1393 2466 s2 = defaults.toList().tail.head;
mcimadamore@1393 2467 } else {
mcimadamore@1393 2468 errKey = "types.incompatible.abstract.default";
mcimadamore@1393 2469 s2 = abstracts.first();
mcimadamore@1393 2470 }
mcimadamore@1393 2471 log.error(pos, errKey,
mcimadamore@1393 2472 Kinds.kindName(site.tsym), site,
mcimadamore@1393 2473 m.name, types.memberType(site, m).getParameterTypes(),
mcimadamore@1393 2474 s1.location(), s2.location());
mcimadamore@1393 2475 break;
mcimadamore@1393 2476 }
mcimadamore@1393 2477 }
mcimadamore@1393 2478 }
mcimadamore@1393 2479 }
mcimadamore@1393 2480 }
mcimadamore@1393 2481
mcimadamore@1393 2482 //where
mcimadamore@1393 2483 private class DefaultMethodClashFilter implements Filter<Symbol> {
mcimadamore@1393 2484
mcimadamore@1393 2485 Type site;
mcimadamore@1393 2486
mcimadamore@1393 2487 DefaultMethodClashFilter(Type site) {
mcimadamore@1393 2488 this.site = site;
mcimadamore@1393 2489 }
mcimadamore@1393 2490
mcimadamore@1393 2491 public boolean accepts(Symbol s) {
mcimadamore@1393 2492 return s.kind == MTH &&
mcimadamore@1393 2493 (s.flags() & DEFAULT) != 0 &&
mcimadamore@1393 2494 s.isInheritedIn(site.tsym, types) &&
mcimadamore@1393 2495 !s.isConstructor();
mcimadamore@1393 2496 }
mcimadamore@1393 2497 }
mcimadamore@1393 2498
vromero@2000 2499 /**
vromero@2000 2500 * Report warnings for potentially ambiguous method declarations. Two declarations
vromero@2000 2501 * are potentially ambiguous if they feature two unrelated functional interface
vromero@2000 2502 * in same argument position (in which case, a call site passing an implicit
vromero@2000 2503 * lambda would be ambiguous).
vromero@2000 2504 */
vromero@2000 2505 void checkPotentiallyAmbiguousOverloads(DiagnosticPosition pos, Type site,
vromero@2000 2506 MethodSymbol msym1, MethodSymbol msym2) {
vromero@2000 2507 if (msym1 != msym2 &&
vromero@2000 2508 allowDefaultMethods &&
vromero@2000 2509 lint.isEnabled(LintCategory.OVERLOADS) &&
vromero@2000 2510 (msym1.flags() & POTENTIALLY_AMBIGUOUS) == 0 &&
vromero@2000 2511 (msym2.flags() & POTENTIALLY_AMBIGUOUS) == 0) {
vromero@2000 2512 Type mt1 = types.memberType(site, msym1);
vromero@2000 2513 Type mt2 = types.memberType(site, msym2);
vromero@2000 2514 //if both generic methods, adjust type variables
vromero@2000 2515 if (mt1.hasTag(FORALL) && mt2.hasTag(FORALL) &&
vromero@2000 2516 types.hasSameBounds((ForAll)mt1, (ForAll)mt2)) {
vromero@2000 2517 mt2 = types.subst(mt2, ((ForAll)mt2).tvars, ((ForAll)mt1).tvars);
vromero@2000 2518 }
vromero@2000 2519 //expand varargs methods if needed
vromero@2000 2520 int maxLength = Math.max(mt1.getParameterTypes().length(), mt2.getParameterTypes().length());
vromero@2000 2521 List<Type> args1 = rs.adjustArgs(mt1.getParameterTypes(), msym1, maxLength, true);
vromero@2000 2522 List<Type> args2 = rs.adjustArgs(mt2.getParameterTypes(), msym2, maxLength, true);
vromero@2000 2523 //if arities don't match, exit
vromero@2000 2524 if (args1.length() != args2.length()) return;
vromero@2000 2525 boolean potentiallyAmbiguous = false;
vromero@2000 2526 while (args1.nonEmpty() && args2.nonEmpty()) {
vromero@2000 2527 Type s = args1.head;
vromero@2000 2528 Type t = args2.head;
vromero@2000 2529 if (!types.isSubtype(t, s) && !types.isSubtype(s, t)) {
vromero@2000 2530 if (types.isFunctionalInterface(s) && types.isFunctionalInterface(t) &&
vromero@2000 2531 types.findDescriptorType(s).getParameterTypes().length() > 0 &&
vromero@2000 2532 types.findDescriptorType(s).getParameterTypes().length() ==
vromero@2000 2533 types.findDescriptorType(t).getParameterTypes().length()) {
vromero@2000 2534 potentiallyAmbiguous = true;
vromero@2000 2535 } else {
vromero@2000 2536 break;
vromero@2000 2537 }
vromero@2000 2538 }
vromero@2000 2539 args1 = args1.tail;
vromero@2000 2540 args2 = args2.tail;
vromero@2000 2541 }
vromero@2000 2542 if (potentiallyAmbiguous) {
vromero@2000 2543 //we found two incompatible functional interfaces with same arity
vromero@2000 2544 //this means a call site passing an implicit lambda would be ambigiuous
vromero@2000 2545 msym1.flags_field |= POTENTIALLY_AMBIGUOUS;
vromero@2000 2546 msym2.flags_field |= POTENTIALLY_AMBIGUOUS;
vromero@2000 2547 log.warning(LintCategory.OVERLOADS, pos, "potentially.ambiguous.overload",
vromero@2000 2548 msym1, msym1.location(),
vromero@2000 2549 msym2, msym2.location());
vromero@2000 2550 return;
vromero@2000 2551 }
vromero@2000 2552 }
vromero@2000 2553 }
vromero@2000 2554
mcimadamore@359 2555 /** Report a conflict between a user symbol and a synthetic symbol.
mcimadamore@359 2556 */
mcimadamore@359 2557 private void syntheticError(DiagnosticPosition pos, Symbol sym) {
mcimadamore@359 2558 if (!sym.type.isErroneous()) {
mcimadamore@359 2559 if (warnOnSyntheticConflicts) {
mcimadamore@359 2560 log.warning(pos, "synthetic.name.conflict", sym, sym.location());
mcimadamore@359 2561 }
mcimadamore@359 2562 else {
mcimadamore@359 2563 log.error(pos, "synthetic.name.conflict", sym, sym.location());
mcimadamore@359 2564 }
mcimadamore@359 2565 }
mcimadamore@359 2566 }
mcimadamore@359 2567
duke@1 2568 /** Check that class c does not implement directly or indirectly
duke@1 2569 * the same parameterized interface with two different argument lists.
duke@1 2570 * @param pos Position to be used for error reporting.
duke@1 2571 * @param type The type whose interfaces are checked.
duke@1 2572 */
duke@1 2573 void checkClassBounds(DiagnosticPosition pos, Type type) {
duke@1 2574 checkClassBounds(pos, new HashMap<TypeSymbol,Type>(), type);
duke@1 2575 }
duke@1 2576 //where
duke@1 2577 /** Enter all interfaces of type `type' into the hash table `seensofar'
duke@1 2578 * with their class symbol as key and their type as value. Make
duke@1 2579 * sure no class is entered with two different types.
duke@1 2580 */
duke@1 2581 void checkClassBounds(DiagnosticPosition pos,
duke@1 2582 Map<TypeSymbol,Type> seensofar,
duke@1 2583 Type type) {
duke@1 2584 if (type.isErroneous()) return;
duke@1 2585 for (List<Type> l = types.interfaces(type); l.nonEmpty(); l = l.tail) {
duke@1 2586 Type it = l.head;
duke@1 2587 Type oldit = seensofar.put(it.tsym, it);
duke@1 2588 if (oldit != null) {
duke@1 2589 List<Type> oldparams = oldit.allparams();
duke@1 2590 List<Type> newparams = it.allparams();
duke@1 2591 if (!types.containsTypeEquivalent(oldparams, newparams))
duke@1 2592 log.error(pos, "cant.inherit.diff.arg",
duke@1 2593 it.tsym, Type.toString(oldparams),
duke@1 2594 Type.toString(newparams));
duke@1 2595 }
duke@1 2596 checkClassBounds(pos, seensofar, it);
duke@1 2597 }
duke@1 2598 Type st = types.supertype(type);
duke@1 2599 if (st != null) checkClassBounds(pos, seensofar, st);
duke@1 2600 }
duke@1 2601
duke@1 2602 /** Enter interface into into set.
duke@1 2603 * If it existed already, issue a "repeated interface" error.
duke@1 2604 */
duke@1 2605 void checkNotRepeated(DiagnosticPosition pos, Type it, Set<Type> its) {
duke@1 2606 if (its.contains(it))
duke@1 2607 log.error(pos, "repeated.interface");
duke@1 2608 else {
duke@1 2609 its.add(it);
duke@1 2610 }
duke@1 2611 }
duke@1 2612
duke@1 2613 /* *************************************************************************
duke@1 2614 * Check annotations
duke@1 2615 **************************************************************************/
duke@1 2616
mcimadamore@629 2617 /**
mcimadamore@634 2618 * Recursively validate annotations values
mcimadamore@629 2619 */
mcimadamore@634 2620 void validateAnnotationTree(JCTree tree) {
mcimadamore@634 2621 class AnnotationValidator extends TreeScanner {
mcimadamore@629 2622 @Override
mcimadamore@629 2623 public void visitAnnotation(JCAnnotation tree) {
jjg@1017 2624 if (!tree.type.isErroneous()) {
jjg@1017 2625 super.visitAnnotation(tree);
jjg@1017 2626 validateAnnotation(tree);
jjg@1017 2627 }
mcimadamore@629 2628 }
mcimadamore@629 2629 }
mcimadamore@634 2630 tree.accept(new AnnotationValidator());
mcimadamore@629 2631 }
mcimadamore@629 2632
jjg@1326 2633 /**
jjg@1326 2634 * {@literal
jjg@1326 2635 * Annotation types are restricted to primitives, String, an
duke@1 2636 * enum, an annotation, Class, Class<?>, Class<? extends
duke@1 2637 * Anything>, arrays of the preceding.
jjg@1326 2638 * }
duke@1 2639 */
duke@1 2640 void validateAnnotationType(JCTree restype) {
duke@1 2641 // restype may be null if an error occurred, so don't bother validating it
duke@1 2642 if (restype != null) {
duke@1 2643 validateAnnotationType(restype.pos(), restype.type);
duke@1 2644 }
duke@1 2645 }
duke@1 2646
duke@1 2647 void validateAnnotationType(DiagnosticPosition pos, Type type) {
duke@1 2648 if (type.isPrimitive()) return;
duke@1 2649 if (types.isSameType(type, syms.stringType)) return;
duke@1 2650 if ((type.tsym.flags() & Flags.ENUM) != 0) return;
duke@1 2651 if ((type.tsym.flags() & Flags.ANNOTATION) != 0) return;
duke@1 2652 if (types.lowerBound(type).tsym == syms.classType.tsym) return;
duke@1 2653 if (types.isArray(type) && !types.isArray(types.elemtype(type))) {
duke@1 2654 validateAnnotationType(pos, types.elemtype(type));
duke@1 2655 return;
duke@1 2656 }
duke@1 2657 log.error(pos, "invalid.annotation.member.type");
duke@1 2658 }
duke@1 2659
duke@1 2660 /**
duke@1 2661 * "It is also a compile-time error if any method declared in an
duke@1 2662 * annotation type has a signature that is override-equivalent to
duke@1 2663 * that of any public or protected method declared in class Object
duke@1 2664 * or in the interface annotation.Annotation."
duke@1 2665 *
jjh@972 2666 * @jls 9.6 Annotation Types
duke@1 2667 */
duke@1 2668 void validateAnnotationMethod(DiagnosticPosition pos, MethodSymbol m) {
jjg@1374 2669 for (Type sup = syms.annotationType; sup.hasTag(CLASS); sup = types.supertype(sup)) {
duke@1 2670 Scope s = sup.tsym.members();
duke@1 2671 for (Scope.Entry e = s.lookup(m.name); e.scope != null; e = e.next()) {
duke@1 2672 if (e.sym.kind == MTH &&
duke@1 2673 (e.sym.flags() & (PUBLIC | PROTECTED)) != 0 &&
duke@1 2674 types.overrideEquivalent(m.type, e.sym.type))
duke@1 2675 log.error(pos, "intf.annotation.member.clash", e.sym, sup);
duke@1 2676 }
duke@1 2677 }
duke@1 2678 }
duke@1 2679
duke@1 2680 /** Check the annotations of a symbol.
duke@1 2681 */
duke@1 2682 public void validateAnnotations(List<JCAnnotation> annotations, Symbol s) {
duke@1 2683 for (JCAnnotation a : annotations)
duke@1 2684 validateAnnotation(a, s);
duke@1 2685 }
duke@1 2686
jjg@1521 2687 /** Check the type annotations.
jjg@1521 2688 */
jjg@1521 2689 public void validateTypeAnnotations(List<JCAnnotation> annotations, boolean isTypeParameter) {
jjg@1521 2690 for (JCAnnotation a : annotations)
jjg@1521 2691 validateTypeAnnotation(a, isTypeParameter);
jjg@1521 2692 }
jjg@1521 2693
duke@1 2694 /** Check an annotation of a symbol.
duke@1 2695 */
jfranck@1313 2696 private void validateAnnotation(JCAnnotation a, Symbol s) {
mcimadamore@634 2697 validateAnnotationTree(a);
duke@1 2698
duke@1 2699 if (!annotationApplicable(a, s))
duke@1 2700 log.error(a.pos(), "annotation.type.not.applicable");
duke@1 2701
duke@1 2702 if (a.annotationType.type.tsym == syms.overrideType.tsym) {
duke@1 2703 if (!isOverrider(s))
duke@1 2704 log.error(a.pos(), "method.does.not.override.superclass");
duke@1 2705 }
mcimadamore@1497 2706
mcimadamore@1497 2707 if (a.annotationType.type.tsym == syms.functionalInterfaceType.tsym) {
mcimadamore@1497 2708 if (s.kind != TYP) {
mcimadamore@1497 2709 log.error(a.pos(), "bad.functional.intf.anno");
mcimadamore@1497 2710 } else {
mcimadamore@1497 2711 try {
mcimadamore@1497 2712 types.findDescriptorSymbol((TypeSymbol)s);
mcimadamore@1497 2713 } catch (Types.FunctionDescriptorLookupError ex) {
mcimadamore@1497 2714 log.error(a.pos(), "bad.functional.intf.anno.1", ex.getDiagnostic());
mcimadamore@1497 2715 }
mcimadamore@1497 2716 }
mcimadamore@1497 2717 }
duke@1 2718 }
duke@1 2719
jjg@1521 2720 public void validateTypeAnnotation(JCAnnotation a, boolean isTypeParameter) {
jjg@1521 2721 Assert.checkNonNull(a.type, "annotation tree hasn't been attributed yet: " + a);
jjg@1521 2722 validateAnnotationTree(a);
jjg@1521 2723
jjg@1521 2724 if (!isTypeAnnotation(a, isTypeParameter))
jjg@1521 2725 log.error(a.pos(), "annotation.type.not.applicable");
jjg@1521 2726 }
jjg@1521 2727
jfranck@1313 2728 /**
jjg@1492 2729 * Validate the proposed container 'repeatable' on the
jfranck@1313 2730 * annotation type symbol 's'. Report errors at position
jfranck@1313 2731 * 'pos'.
jfranck@1313 2732 *
jjg@1492 2733 * @param s The (annotation)type declaration annotated with a @Repeatable
jjg@1492 2734 * @param repeatable the @Repeatable on 's'
jfranck@1313 2735 * @param pos where to report errors
jfranck@1313 2736 */
jjg@1492 2737 public void validateRepeatable(TypeSymbol s, Attribute.Compound repeatable, DiagnosticPosition pos) {
jjg@1492 2738 Assert.check(types.isSameType(repeatable.type, syms.repeatableType));
jfranck@1313 2739
jfranck@1313 2740 Type t = null;
jjg@1492 2741 List<Pair<MethodSymbol,Attribute>> l = repeatable.values;
jfranck@1313 2742 if (!l.isEmpty()) {
jfranck@1313 2743 Assert.check(l.head.fst.name == names.value);
jfranck@1313 2744 t = ((Attribute.Class)l.head.snd).getValue();
jfranck@1313 2745 }
jfranck@1313 2746
jfranck@1313 2747 if (t == null) {
jjg@1492 2748 // errors should already have been reported during Annotate
jfranck@1313 2749 return;
jfranck@1313 2750 }
jfranck@1313 2751
jjg@1492 2752 validateValue(t.tsym, s, pos);
jfranck@1313 2753 validateRetention(t.tsym, s, pos);
jfranck@1313 2754 validateDocumented(t.tsym, s, pos);
jfranck@1313 2755 validateInherited(t.tsym, s, pos);
jfranck@1313 2756 validateTarget(t.tsym, s, pos);
jfranck@1344 2757 validateDefault(t.tsym, s, pos);
jfranck@1313 2758 }
jfranck@1313 2759
jjg@1492 2760 private void validateValue(TypeSymbol container, TypeSymbol contained, DiagnosticPosition pos) {
jjg@1492 2761 Scope.Entry e = container.members().lookup(names.value);
jjg@1492 2762 if (e.scope != null && e.sym.kind == MTH) {
jjg@1492 2763 MethodSymbol m = (MethodSymbol) e.sym;
jjg@1492 2764 Type ret = m.getReturnType();
jjg@1492 2765 if (!(ret.hasTag(ARRAY) && types.isSameType(((ArrayType)ret).elemtype, contained.type))) {
jjg@1492 2766 log.error(pos, "invalid.repeatable.annotation.value.return",
jjg@1492 2767 container, ret, types.makeArrayType(contained.type));
jjg@1492 2768 }
jjg@1492 2769 } else {
jjg@1492 2770 log.error(pos, "invalid.repeatable.annotation.no.value", container);
jfranck@1313 2771 }
jfranck@1313 2772 }
jfranck@1313 2773
jfranck@1313 2774 private void validateRetention(Symbol container, Symbol contained, DiagnosticPosition pos) {
jfranck@1313 2775 Attribute.RetentionPolicy containerRetention = types.getRetention(container);
jfranck@1313 2776 Attribute.RetentionPolicy containedRetention = types.getRetention(contained);
jfranck@1313 2777
jfranck@1313 2778 boolean error = false;
jfranck@1313 2779 switch (containedRetention) {
jfranck@1313 2780 case RUNTIME:
jfranck@1313 2781 if (containerRetention != Attribute.RetentionPolicy.RUNTIME) {
jfranck@1313 2782 error = true;
jfranck@1313 2783 }
jfranck@1313 2784 break;
jfranck@1313 2785 case CLASS:
jfranck@1313 2786 if (containerRetention == Attribute.RetentionPolicy.SOURCE) {
jfranck@1313 2787 error = true;
jfranck@1313 2788 }
jfranck@1313 2789 }
jfranck@1313 2790 if (error ) {
jjg@1492 2791 log.error(pos, "invalid.repeatable.annotation.retention",
jfranck@1313 2792 container, containerRetention,
jfranck@1313 2793 contained, containedRetention);
jfranck@1313 2794 }
jfranck@1313 2795 }
jfranck@1313 2796
jfranck@1313 2797 private void validateDocumented(Symbol container, Symbol contained, DiagnosticPosition pos) {
jfranck@1313 2798 if (contained.attribute(syms.documentedType.tsym) != null) {
jfranck@1313 2799 if (container.attribute(syms.documentedType.tsym) == null) {
jjg@1492 2800 log.error(pos, "invalid.repeatable.annotation.not.documented", container, contained);
jfranck@1313 2801 }
jfranck@1313 2802 }
jfranck@1313 2803 }
jfranck@1313 2804
jfranck@1313 2805 private void validateInherited(Symbol container, Symbol contained, DiagnosticPosition pos) {
jfranck@1313 2806 if (contained.attribute(syms.inheritedType.tsym) != null) {
jfranck@1313 2807 if (container.attribute(syms.inheritedType.tsym) == null) {
jjg@1492 2808 log.error(pos, "invalid.repeatable.annotation.not.inherited", container, contained);
jfranck@1313 2809 }
jfranck@1313 2810 }
jfranck@1313 2811 }
jfranck@1313 2812
jfranck@1313 2813 private void validateTarget(Symbol container, Symbol contained, DiagnosticPosition pos) {
jfranck@1634 2814 // The set of targets the container is applicable to must be a subset
jfranck@1634 2815 // (with respect to annotation target semantics) of the set of targets
jfranck@1634 2816 // the contained is applicable to. The target sets may be implicit or
jfranck@1634 2817 // explicit.
jfranck@1634 2818
jfranck@1634 2819 Set<Name> containerTargets;
jfranck@1313 2820 Attribute.Array containerTarget = getAttributeTargetAttribute(container);
jfranck@1313 2821 if (containerTarget == null) {
jfranck@1634 2822 containerTargets = getDefaultTargetSet();
jfranck@1634 2823 } else {
jfranck@1634 2824 containerTargets = new HashSet<Name>();
jfranck@1313 2825 for (Attribute app : containerTarget.values) {
jfranck@1313 2826 if (!(app instanceof Attribute.Enum)) {
jfranck@1313 2827 continue; // recovery
jfranck@1313 2828 }
jfranck@1313 2829 Attribute.Enum e = (Attribute.Enum)app;
jfranck@1313 2830 containerTargets.add(e.value.name);
jfranck@1313 2831 }
jfranck@1634 2832 }
jfranck@1634 2833
jfranck@1634 2834 Set<Name> containedTargets;
jfranck@1634 2835 Attribute.Array containedTarget = getAttributeTargetAttribute(contained);
jfranck@1634 2836 if (containedTarget == null) {
jfranck@1634 2837 containedTargets = getDefaultTargetSet();
jfranck@1634 2838 } else {
jfranck@1634 2839 containedTargets = new HashSet<Name>();
jfranck@1313 2840 for (Attribute app : containedTarget.values) {
jfranck@1313 2841 if (!(app instanceof Attribute.Enum)) {
jfranck@1313 2842 continue; // recovery
jfranck@1313 2843 }
jfranck@1313 2844 Attribute.Enum e = (Attribute.Enum)app;
jfranck@1313 2845 containedTargets.add(e.value.name);
jfranck@1313 2846 }
jfranck@1634 2847 }
jfranck@1634 2848
jfranck@1634 2849 if (!isTargetSubsetOf(containerTargets, containedTargets)) {
jjg@1492 2850 log.error(pos, "invalid.repeatable.annotation.incompatible.target", container, contained);
jfranck@1313 2851 }
jfranck@1313 2852 }
jfranck@1313 2853
jfranck@1634 2854 /* get a set of names for the default target */
jfranck@1634 2855 private Set<Name> getDefaultTargetSet() {
jfranck@1634 2856 if (defaultTargets == null) {
jfranck@1634 2857 Set<Name> targets = new HashSet<Name>();
jfranck@1634 2858 targets.add(names.ANNOTATION_TYPE);
jfranck@1634 2859 targets.add(names.CONSTRUCTOR);
jfranck@1634 2860 targets.add(names.FIELD);
jfranck@1634 2861 targets.add(names.LOCAL_VARIABLE);
jfranck@1634 2862 targets.add(names.METHOD);
jfranck@1634 2863 targets.add(names.PACKAGE);
jfranck@1634 2864 targets.add(names.PARAMETER);
jfranck@1634 2865 targets.add(names.TYPE);
jfranck@1634 2866
jfranck@1634 2867 defaultTargets = java.util.Collections.unmodifiableSet(targets);
jfranck@1634 2868 }
jfranck@1634 2869
jfranck@1634 2870 return defaultTargets;
jfranck@1634 2871 }
jfranck@1634 2872 private Set<Name> defaultTargets;
jfranck@1634 2873
jfranck@1634 2874
jfranck@1634 2875 /** Checks that s is a subset of t, with respect to ElementType
jfranck@1313 2876 * semantics, specifically {ANNOTATION_TYPE} is a subset of {TYPE}
jfranck@1313 2877 */
jfranck@1634 2878 private boolean isTargetSubsetOf(Set<Name> s, Set<Name> t) {
jfranck@1634 2879 // Check that all elements in s are present in t
jfranck@1634 2880 for (Name n2 : s) {
jfranck@1313 2881 boolean currentElementOk = false;
jfranck@1634 2882 for (Name n1 : t) {
jfranck@1313 2883 if (n1 == n2) {
jfranck@1313 2884 currentElementOk = true;
jfranck@1313 2885 break;
jfranck@1313 2886 } else if (n1 == names.TYPE && n2 == names.ANNOTATION_TYPE) {
jfranck@1313 2887 currentElementOk = true;
jfranck@1313 2888 break;
jfranck@1313 2889 }
jfranck@1313 2890 }
jfranck@1313 2891 if (!currentElementOk)
jfranck@1313 2892 return false;
jfranck@1313 2893 }
jfranck@1313 2894 return true;
jfranck@1313 2895 }
jfranck@1313 2896
jfranck@1344 2897 private void validateDefault(Symbol container, Symbol contained, DiagnosticPosition pos) {
jfranck@1344 2898 // validate that all other elements of containing type has defaults
jfranck@1344 2899 Scope scope = container.members();
jfranck@1344 2900 for(Symbol elm : scope.getElements()) {
jfranck@1344 2901 if (elm.name != names.value &&
jfranck@1344 2902 elm.kind == Kinds.MTH &&
jfranck@1344 2903 ((MethodSymbol)elm).defaultValue == null) {
jfranck@1344 2904 log.error(pos,
jjg@1492 2905 "invalid.repeatable.annotation.elem.nondefault",
jfranck@1344 2906 container,
jfranck@1344 2907 elm);
jfranck@1344 2908 }
jfranck@1344 2909 }
jfranck@1344 2910 }
jfranck@1344 2911
duke@1 2912 /** Is s a method symbol that overrides a method in a superclass? */
duke@1 2913 boolean isOverrider(Symbol s) {
duke@1 2914 if (s.kind != MTH || s.isStatic())
duke@1 2915 return false;
duke@1 2916 MethodSymbol m = (MethodSymbol)s;
duke@1 2917 TypeSymbol owner = (TypeSymbol)m.owner;
duke@1 2918 for (Type sup : types.closure(owner.type)) {
duke@1 2919 if (sup == owner.type)
duke@1 2920 continue; // skip "this"
duke@1 2921 Scope scope = sup.tsym.members();
duke@1 2922 for (Scope.Entry e = scope.lookup(m.name); e.scope != null; e = e.next()) {
duke@1 2923 if (!e.sym.isStatic() && m.overrides(e.sym, owner, types, true))
duke@1 2924 return true;
duke@1 2925 }
duke@1 2926 }
duke@1 2927 return false;
duke@1 2928 }
duke@1 2929
jjg@1521 2930 /** Is the annotation applicable to type annotations? */
jjg@1521 2931 protected boolean isTypeAnnotation(JCAnnotation a, boolean isTypeParameter) {
jjg@1521 2932 Attribute.Compound atTarget =
jjg@1521 2933 a.annotationType.type.tsym.attribute(syms.annotationTargetType.tsym);
jjg@1521 2934 if (atTarget == null) {
jjg@1521 2935 // An annotation without @Target is not a type annotation.
jjg@1521 2936 return false;
jjg@1521 2937 }
jjg@1521 2938
jjg@1521 2939 Attribute atValue = atTarget.member(names.value);
jjg@1521 2940 if (!(atValue instanceof Attribute.Array)) {
jjg@1521 2941 return false; // error recovery
jjg@1521 2942 }
jjg@1521 2943
jjg@1521 2944 Attribute.Array arr = (Attribute.Array) atValue;
jjg@1521 2945 for (Attribute app : arr.values) {
jjg@1521 2946 if (!(app instanceof Attribute.Enum)) {
jjg@1521 2947 return false; // recovery
jjg@1521 2948 }
jjg@1521 2949 Attribute.Enum e = (Attribute.Enum) app;
jjg@1521 2950
jjg@1521 2951 if (e.value.name == names.TYPE_USE)
jjg@1521 2952 return true;
jjg@1521 2953 else if (isTypeParameter && e.value.name == names.TYPE_PARAMETER)
jjg@1521 2954 return true;
jjg@1521 2955 }
jjg@1521 2956 return false;
jjg@1521 2957 }
jjg@1521 2958
duke@1 2959 /** Is the annotation applicable to the symbol? */
duke@1 2960 boolean annotationApplicable(JCAnnotation a, Symbol s) {
jfranck@1313 2961 Attribute.Array arr = getAttributeTargetAttribute(a.annotationType.type.tsym);
jjg@1521 2962 Name[] targets;
jjg@1521 2963
jfranck@1313 2964 if (arr == null) {
jjg@1521 2965 targets = defaultTargetMetaInfo(a, s);
jjg@1521 2966 } else {
jjg@1521 2967 // TODO: can we optimize this?
jjg@1521 2968 targets = new Name[arr.values.length];
jjg@1521 2969 for (int i=0; i<arr.values.length; ++i) {
jjg@1521 2970 Attribute app = arr.values[i];
jjg@1521 2971 if (!(app instanceof Attribute.Enum)) {
jjg@1521 2972 return true; // recovery
jjg@1521 2973 }
jjg@1521 2974 Attribute.Enum e = (Attribute.Enum) app;
jjg@1521 2975 targets[i] = e.value.name;
jjg@1521 2976 }
jfranck@1313 2977 }
jjg@1521 2978 for (Name target : targets) {
jjg@1521 2979 if (target == names.TYPE)
duke@1 2980 { if (s.kind == TYP) return true; }
jjg@1521 2981 else if (target == names.FIELD)
duke@1 2982 { if (s.kind == VAR && s.owner.kind != MTH) return true; }
jjg@1521 2983 else if (target == names.METHOD)
duke@1 2984 { if (s.kind == MTH && !s.isConstructor()) return true; }
jjg@1521 2985 else if (target == names.PARAMETER)
duke@1 2986 { if (s.kind == VAR &&
duke@1 2987 s.owner.kind == MTH &&
duke@1 2988 (s.flags() & PARAMETER) != 0)
duke@1 2989 return true;
duke@1 2990 }
jjg@1521 2991 else if (target == names.CONSTRUCTOR)
duke@1 2992 { if (s.kind == MTH && s.isConstructor()) return true; }
jjg@1521 2993 else if (target == names.LOCAL_VARIABLE)
duke@1 2994 { if (s.kind == VAR && s.owner.kind == MTH &&
duke@1 2995 (s.flags() & PARAMETER) == 0)
duke@1 2996 return true;
duke@1 2997 }
jjg@1521 2998 else if (target == names.ANNOTATION_TYPE)
duke@1 2999 { if (s.kind == TYP && (s.flags() & ANNOTATION) != 0)
duke@1 3000 return true;
duke@1 3001 }
jjg@1521 3002 else if (target == names.PACKAGE)
duke@1 3003 { if (s.kind == PCK) return true; }
jjg@1521 3004 else if (target == names.TYPE_USE)
jjg@308 3005 { if (s.kind == TYP ||
jjg@308 3006 s.kind == VAR ||
jjg@308 3007 (s.kind == MTH && !s.isConstructor() &&
jjg@1521 3008 !s.type.getReturnType().hasTag(VOID)) ||
jjg@1521 3009 (s.kind == MTH && s.isConstructor()))
jjg@1521 3010 return true;
jjg@1521 3011 }
jjg@1521 3012 else if (target == names.TYPE_PARAMETER)
jjg@1521 3013 { if (s.kind == TYP && s.type.hasTag(TYPEVAR))
jjg@308 3014 return true;
jjg@308 3015 }
duke@1 3016 else
duke@1 3017 return true; // recovery
duke@1 3018 }
duke@1 3019 return false;
duke@1 3020 }
duke@1 3021
jfranck@1313 3022
jfranck@1313 3023 Attribute.Array getAttributeTargetAttribute(Symbol s) {
jfranck@1313 3024 Attribute.Compound atTarget =
jfranck@1313 3025 s.attribute(syms.annotationTargetType.tsym);
jfranck@1313 3026 if (atTarget == null) return null; // ok, is applicable
jfranck@1313 3027 Attribute atValue = atTarget.member(names.value);
jfranck@1313 3028 if (!(atValue instanceof Attribute.Array)) return null; // error recovery
jfranck@1313 3029 return (Attribute.Array) atValue;
jfranck@1313 3030 }
jfranck@1313 3031
jjg@1521 3032 private final Name[] dfltTargetMeta;
jjg@1521 3033 private Name[] defaultTargetMetaInfo(JCAnnotation a, Symbol s) {
jjg@1521 3034 return dfltTargetMeta;
jjg@1521 3035 }
jjg@1521 3036
duke@1 3037 /** Check an annotation value.
jfranck@1445 3038 *
jfranck@1445 3039 * @param a The annotation tree to check
jfranck@1445 3040 * @return true if this annotation tree is valid, otherwise false
duke@1 3041 */
jfranck@1445 3042 public boolean validateAnnotationDeferErrors(JCAnnotation a) {
jfranck@1445 3043 boolean res = false;
jfranck@1445 3044 final Log.DiagnosticHandler diagHandler = new Log.DiscardDiagnosticHandler(log);
jfranck@1445 3045 try {
jfranck@1445 3046 res = validateAnnotation(a);
jfranck@1445 3047 } finally {
jfranck@1445 3048 log.popDiagnosticHandler(diagHandler);
jfranck@1445 3049 }
jfranck@1445 3050 return res;
jfranck@1445 3051 }
jfranck@1445 3052
jfranck@1445 3053 private boolean validateAnnotation(JCAnnotation a) {
jfranck@1445 3054 boolean isValid = true;
jfranck@1445 3055 // collect an inventory of the annotation elements
jfranck@1445 3056 Set<MethodSymbol> members = new LinkedHashSet<MethodSymbol>();
duke@1 3057 for (Scope.Entry e = a.annotationType.type.tsym.members().elems;
jfranck@1729 3058 e != null;
jfranck@1729 3059 e = e.sibling)
mcimadamore@1920 3060 if (e.sym.kind == MTH && e.sym.name != names.clinit &&
mcimadamore@1920 3061 (e.sym.flags() & SYNTHETIC) == 0)
duke@1 3062 members.add((MethodSymbol) e.sym);
duke@1 3063
jfranck@1445 3064 // remove the ones that are assigned values
duke@1 3065 for (JCTree arg : a.args) {
jjg@1127 3066 if (!arg.hasTag(ASSIGN)) continue; // recovery
duke@1 3067 JCAssign assign = (JCAssign) arg;
duke@1 3068 Symbol m = TreeInfo.symbol(assign.lhs);
duke@1 3069 if (m == null || m.type.isErroneous()) continue;
jfranck@1445 3070 if (!members.remove(m)) {
jfranck@1445 3071 isValid = false;
jjg@479 3072 log.error(assign.lhs.pos(), "duplicate.annotation.member.value",
duke@1 3073 m.name, a.type);
jfranck@1445 3074 }
duke@1 3075 }
duke@1 3076
duke@1 3077 // all the remaining ones better have default values
jfranck@1445 3078 List<Name> missingDefaults = List.nil();
mcimadamore@632 3079 for (MethodSymbol m : members) {
mcimadamore@632 3080 if (m.defaultValue == null && !m.type.isErroneous()) {
jfranck@1445 3081 missingDefaults = missingDefaults.append(m.name);
mcimadamore@632 3082 }
mcimadamore@632 3083 }
jfranck@1445 3084 missingDefaults = missingDefaults.reverse();
mcimadamore@632 3085 if (missingDefaults.nonEmpty()) {
jfranck@1445 3086 isValid = false;
mcimadamore@632 3087 String key = (missingDefaults.size() > 1)
mcimadamore@632 3088 ? "annotation.missing.default.value.1"
mcimadamore@632 3089 : "annotation.missing.default.value";
mcimadamore@632 3090 log.error(a.pos(), key, a.type, missingDefaults);
mcimadamore@632 3091 }
duke@1 3092
duke@1 3093 // special case: java.lang.annotation.Target must not have
duke@1 3094 // repeated values in its value member
duke@1 3095 if (a.annotationType.type.tsym != syms.annotationTargetType.tsym ||
duke@1 3096 a.args.tail == null)
jfranck@1445 3097 return isValid;
duke@1 3098
jfranck@1445 3099 if (!a.args.head.hasTag(ASSIGN)) return false; // error recovery
duke@1 3100 JCAssign assign = (JCAssign) a.args.head;
duke@1 3101 Symbol m = TreeInfo.symbol(assign.lhs);
jfranck@1445 3102 if (m.name != names.value) return false;
duke@1 3103 JCTree rhs = assign.rhs;
jfranck@1445 3104 if (!rhs.hasTag(NEWARRAY)) return false;
duke@1 3105 JCNewArray na = (JCNewArray) rhs;
duke@1 3106 Set<Symbol> targets = new HashSet<Symbol>();
duke@1 3107 for (JCTree elem : na.elems) {
duke@1 3108 if (!targets.add(TreeInfo.symbol(elem))) {
jfranck@1445 3109 isValid = false;
duke@1 3110 log.error(elem.pos(), "repeated.annotation.target");
duke@1 3111 }
duke@1 3112 }
jfranck@1445 3113 return isValid;
duke@1 3114 }
duke@1 3115
duke@1 3116 void checkDeprecatedAnnotation(DiagnosticPosition pos, Symbol s) {
duke@1 3117 if (allowAnnotations &&
mcimadamore@795 3118 lint.isEnabled(LintCategory.DEP_ANN) &&
duke@1 3119 (s.flags() & DEPRECATED) != 0 &&
duke@1 3120 !syms.deprecatedType.isErroneous() &&
duke@1 3121 s.attribute(syms.deprecatedType.tsym) == null) {
mcimadamore@795 3122 log.warning(LintCategory.DEP_ANN,
jjg@612 3123 pos, "missing.deprecated.annotation");
duke@1 3124 }
duke@1 3125 }
duke@1 3126
mcimadamore@852 3127 void checkDeprecated(final DiagnosticPosition pos, final Symbol other, final Symbol s) {
mcimadamore@852 3128 if ((s.flags() & DEPRECATED) != 0 &&
mcimadamore@852 3129 (other.flags() & DEPRECATED) == 0 &&
mcimadamore@852 3130 s.outermostClass() != other.outermostClass()) {
mcimadamore@852 3131 deferredLintHandler.report(new DeferredLintHandler.LintLogger() {
mcimadamore@852 3132 @Override
mcimadamore@852 3133 public void report() {
mcimadamore@852 3134 warnDeprecated(pos, s);
mcimadamore@852 3135 }
mcimadamore@852 3136 });
jjg@1157 3137 }
mcimadamore@852 3138 }
mcimadamore@852 3139
mcimadamore@852 3140 void checkSunAPI(final DiagnosticPosition pos, final Symbol s) {
mcimadamore@852 3141 if ((s.flags() & PROPRIETARY) != 0) {
mcimadamore@852 3142 deferredLintHandler.report(new DeferredLintHandler.LintLogger() {
mcimadamore@852 3143 public void report() {
mcimadamore@852 3144 if (enableSunApiLintControl)
mcimadamore@852 3145 warnSunApi(pos, "sun.proprietary", s);
mcimadamore@852 3146 else
mcimadamore@1218 3147 log.mandatoryWarning(pos, "sun.proprietary", s);
mcimadamore@852 3148 }
mcimadamore@852 3149 });
mcimadamore@852 3150 }
mcimadamore@852 3151 }
mcimadamore@852 3152
jjg@1569 3153 void checkProfile(final DiagnosticPosition pos, final Symbol s) {
jjg@1569 3154 if (profile != Profile.DEFAULT && (s.flags() & NOT_IN_PROFILE) != 0) {
jjg@1569 3155 log.error(pos, "not.in.profile", s, profile);
jjg@1569 3156 }
jjg@1569 3157 }
jjg@1569 3158
duke@1 3159 /* *************************************************************************
duke@1 3160 * Check for recursive annotation elements.
duke@1 3161 **************************************************************************/
duke@1 3162
duke@1 3163 /** Check for cycles in the graph of annotation elements.
duke@1 3164 */
duke@1 3165 void checkNonCyclicElements(JCClassDecl tree) {
duke@1 3166 if ((tree.sym.flags_field & ANNOTATION) == 0) return;
jjg@816 3167 Assert.check((tree.sym.flags_field & LOCKED) == 0);
duke@1 3168 try {
duke@1 3169 tree.sym.flags_field |= LOCKED;
duke@1 3170 for (JCTree def : tree.defs) {
jjg@1127 3171 if (!def.hasTag(METHODDEF)) continue;
duke@1 3172 JCMethodDecl meth = (JCMethodDecl)def;
duke@1 3173 checkAnnotationResType(meth.pos(), meth.restype.type);
duke@1 3174 }
duke@1 3175 } finally {
duke@1 3176 tree.sym.flags_field &= ~LOCKED;
duke@1 3177 tree.sym.flags_field |= ACYCLIC_ANN;
duke@1 3178 }
duke@1 3179 }
duke@1 3180
duke@1 3181 void checkNonCyclicElementsInternal(DiagnosticPosition pos, TypeSymbol tsym) {
duke@1 3182 if ((tsym.flags_field & ACYCLIC_ANN) != 0)
duke@1 3183 return;
duke@1 3184 if ((tsym.flags_field & LOCKED) != 0) {
duke@1 3185 log.error(pos, "cyclic.annotation.element");
duke@1 3186 return;
duke@1 3187 }
duke@1 3188 try {
duke@1 3189 tsym.flags_field |= LOCKED;
duke@1 3190 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
duke@1 3191 Symbol s = e.sym;
duke@1 3192 if (s.kind != Kinds.MTH)
duke@1 3193 continue;
duke@1 3194 checkAnnotationResType(pos, ((MethodSymbol)s).type.getReturnType());
duke@1 3195 }
duke@1 3196 } finally {
duke@1 3197 tsym.flags_field &= ~LOCKED;
duke@1 3198 tsym.flags_field |= ACYCLIC_ANN;
duke@1 3199 }
duke@1 3200 }
duke@1 3201
duke@1 3202 void checkAnnotationResType(DiagnosticPosition pos, Type type) {
jjg@1374 3203 switch (type.getTag()) {
jjg@1374 3204 case CLASS:
duke@1 3205 if ((type.tsym.flags() & ANNOTATION) != 0)
duke@1 3206 checkNonCyclicElementsInternal(pos, type.tsym);
duke@1 3207 break;
jjg@1374 3208 case ARRAY:
duke@1 3209 checkAnnotationResType(pos, types.elemtype(type));
duke@1 3210 break;
duke@1 3211 default:
duke@1 3212 break; // int etc
duke@1 3213 }
duke@1 3214 }
duke@1 3215
duke@1 3216 /* *************************************************************************
duke@1 3217 * Check for cycles in the constructor call graph.
duke@1 3218 **************************************************************************/
duke@1 3219
duke@1 3220 /** Check for cycles in the graph of constructors calling other
duke@1 3221 * constructors.
duke@1 3222 */
duke@1 3223 void checkCyclicConstructors(JCClassDecl tree) {
duke@1 3224 Map<Symbol,Symbol> callMap = new HashMap<Symbol, Symbol>();
duke@1 3225
duke@1 3226 // enter each constructor this-call into the map
duke@1 3227 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
duke@1 3228 JCMethodInvocation app = TreeInfo.firstConstructorCall(l.head);
duke@1 3229 if (app == null) continue;
duke@1 3230 JCMethodDecl meth = (JCMethodDecl) l.head;
duke@1 3231 if (TreeInfo.name(app.meth) == names._this) {
duke@1 3232 callMap.put(meth.sym, TreeInfo.symbol(app.meth));
duke@1 3233 } else {
duke@1 3234 meth.sym.flags_field |= ACYCLIC;
duke@1 3235 }
duke@1 3236 }
duke@1 3237
duke@1 3238 // Check for cycles in the map
duke@1 3239 Symbol[] ctors = new Symbol[0];
duke@1 3240 ctors = callMap.keySet().toArray(ctors);
duke@1 3241 for (Symbol caller : ctors) {
duke@1 3242 checkCyclicConstructor(tree, caller, callMap);
duke@1 3243 }
duke@1 3244 }
duke@1 3245
duke@1 3246 /** Look in the map to see if the given constructor is part of a
duke@1 3247 * call cycle.
duke@1 3248 */
duke@1 3249 private void checkCyclicConstructor(JCClassDecl tree, Symbol ctor,
duke@1 3250 Map<Symbol,Symbol> callMap) {
duke@1 3251 if (ctor != null && (ctor.flags_field & ACYCLIC) == 0) {
duke@1 3252 if ((ctor.flags_field & LOCKED) != 0) {
duke@1 3253 log.error(TreeInfo.diagnosticPositionFor(ctor, tree),
duke@1 3254 "recursive.ctor.invocation");
duke@1 3255 } else {
duke@1 3256 ctor.flags_field |= LOCKED;
duke@1 3257 checkCyclicConstructor(tree, callMap.remove(ctor), callMap);
duke@1 3258 ctor.flags_field &= ~LOCKED;
duke@1 3259 }
duke@1 3260 ctor.flags_field |= ACYCLIC;
duke@1 3261 }
duke@1 3262 }
duke@1 3263
duke@1 3264 /* *************************************************************************
duke@1 3265 * Miscellaneous
duke@1 3266 **************************************************************************/
duke@1 3267
duke@1 3268 /**
duke@1 3269 * Return the opcode of the operator but emit an error if it is an
duke@1 3270 * error.
duke@1 3271 * @param pos position for error reporting.
duke@1 3272 * @param operator an operator
duke@1 3273 * @param tag a tree tag
duke@1 3274 * @param left type of left hand side
duke@1 3275 * @param right type of right hand side
duke@1 3276 */
duke@1 3277 int checkOperator(DiagnosticPosition pos,
duke@1 3278 OperatorSymbol operator,
jjg@1127 3279 JCTree.Tag tag,
duke@1 3280 Type left,
duke@1 3281 Type right) {
duke@1 3282 if (operator.opcode == ByteCodes.error) {
duke@1 3283 log.error(pos,
mcimadamore@853 3284 "operator.cant.be.applied.1",
duke@1 3285 treeinfo.operatorName(tag),
mcimadamore@853 3286 left, right);
duke@1 3287 }
duke@1 3288 return operator.opcode;
duke@1 3289 }
duke@1 3290
duke@1 3291
duke@1 3292 /**
duke@1 3293 * Check for division by integer constant zero
duke@1 3294 * @param pos Position for error reporting.
duke@1 3295 * @param operator The operator for the expression
duke@1 3296 * @param operand The right hand operand for the expression
duke@1 3297 */
duke@1 3298 void checkDivZero(DiagnosticPosition pos, Symbol operator, Type operand) {
duke@1 3299 if (operand.constValue() != null
mcimadamore@795 3300 && lint.isEnabled(LintCategory.DIVZERO)
vromero@1826 3301 && operand.getTag().isSubRangeOf(LONG)
duke@1 3302 && ((Number) (operand.constValue())).longValue() == 0) {
duke@1 3303 int opc = ((OperatorSymbol)operator).opcode;
duke@1 3304 if (opc == ByteCodes.idiv || opc == ByteCodes.imod
duke@1 3305 || opc == ByteCodes.ldiv || opc == ByteCodes.lmod) {
mcimadamore@795 3306 log.warning(LintCategory.DIVZERO, pos, "div.zero");
duke@1 3307 }
duke@1 3308 }
duke@1 3309 }
duke@1 3310
duke@1 3311 /**
duke@1 3312 * Check for empty statements after if
duke@1 3313 */
duke@1 3314 void checkEmptyIf(JCIf tree) {
jjg@1127 3315 if (tree.thenpart.hasTag(SKIP) && tree.elsepart == null &&
jjg@1127 3316 lint.isEnabled(LintCategory.EMPTY))
mcimadamore@795 3317 log.warning(LintCategory.EMPTY, tree.thenpart.pos(), "empty.if");
duke@1 3318 }
duke@1 3319
duke@1 3320 /** Check that symbol is unique in given scope.
duke@1 3321 * @param pos Position for error reporting.
duke@1 3322 * @param sym The symbol.
duke@1 3323 * @param s The scope.
duke@1 3324 */
duke@1 3325 boolean checkUnique(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 3326 if (sym.type.isErroneous())
duke@1 3327 return true;
duke@1 3328 if (sym.owner.name == names.any) return false;
duke@1 3329 for (Scope.Entry e = s.lookup(sym.name); e.scope == s; e = e.next()) {
duke@1 3330 if (sym != e.sym &&
mcimadamore@858 3331 (e.sym.flags() & CLASH) == 0 &&
mcimadamore@858 3332 sym.kind == e.sym.kind &&
mcimadamore@858 3333 sym.name != names.error &&
emc@2024 3334 (sym.kind != MTH ||
emc@2024 3335 types.hasSameArgs(sym.type, e.sym.type) ||
emc@2024 3336 types.hasSameArgs(types.erasure(sym.type), types.erasure(e.sym.type)))) {
mcimadamore@844 3337 if ((sym.flags() & VARARGS) != (e.sym.flags() & VARARGS)) {
duke@1 3338 varargsDuplicateError(pos, sym, e.sym);
mcimadamore@844 3339 return true;
mcimadamore@907 3340 } else if (sym.kind == MTH && !types.hasSameArgs(sym.type, e.sym.type, false)) {
mcimadamore@252 3341 duplicateErasureError(pos, sym, e.sym);
mcimadamore@844 3342 sym.flags_field |= CLASH;
mcimadamore@844 3343 return true;
mcimadamore@844 3344 } else {
duke@1 3345 duplicateError(pos, e.sym);
mcimadamore@844 3346 return false;
mcimadamore@844 3347 }
duke@1 3348 }
duke@1 3349 }
duke@1 3350 return true;
duke@1 3351 }
mcimadamore@844 3352
mcimadamore@858 3353 /** Report duplicate declaration error.
mcimadamore@858 3354 */
mcimadamore@858 3355 void duplicateErasureError(DiagnosticPosition pos, Symbol sym1, Symbol sym2) {
mcimadamore@858 3356 if (!sym1.type.isErroneous() && !sym2.type.isErroneous()) {
mcimadamore@858 3357 log.error(pos, "name.clash.same.erasure", sym1, sym2);
mcimadamore@844 3358 }
mcimadamore@858 3359 }
duke@1 3360
duke@1 3361 /** Check that single-type import is not already imported or top-level defined,
duke@1 3362 * but make an exception for two single-type imports which denote the same type.
duke@1 3363 * @param pos Position for error reporting.
duke@1 3364 * @param sym The symbol.
duke@1 3365 * @param s The scope
duke@1 3366 */
duke@1 3367 boolean checkUniqueImport(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 3368 return checkUniqueImport(pos, sym, s, false);
duke@1 3369 }
duke@1 3370
duke@1 3371 /** Check that static single-type import is not already imported or top-level defined,
duke@1 3372 * but make an exception for two single-type imports which denote the same type.
duke@1 3373 * @param pos Position for error reporting.
duke@1 3374 * @param sym The symbol.
duke@1 3375 * @param s The scope
duke@1 3376 */
duke@1 3377 boolean checkUniqueStaticImport(DiagnosticPosition pos, Symbol sym, Scope s) {
duke@1 3378 return checkUniqueImport(pos, sym, s, true);
duke@1 3379 }
duke@1 3380
duke@1 3381 /** Check that single-type import is not already imported or top-level defined,
duke@1 3382 * but make an exception for two single-type imports which denote the same type.
duke@1 3383 * @param pos Position for error reporting.
duke@1 3384 * @param sym The symbol.
duke@1 3385 * @param s The scope.
duke@1 3386 * @param staticImport Whether or not this was a static import
duke@1 3387 */
duke@1 3388 private boolean checkUniqueImport(DiagnosticPosition pos, Symbol sym, Scope s, boolean staticImport) {
duke@1 3389 for (Scope.Entry e = s.lookup(sym.name); e.scope != null; e = e.next()) {
duke@1 3390 // is encountered class entered via a class declaration?
duke@1 3391 boolean isClassDecl = e.scope == s;
duke@1 3392 if ((isClassDecl || sym != e.sym) &&
duke@1 3393 sym.kind == e.sym.kind &&
mcimadamore@1945 3394 sym.name != names.error &&
mcimadamore@1945 3395 (!staticImport || !e.isStaticallyImported())) {
duke@1 3396 if (!e.sym.type.isErroneous()) {
duke@1 3397 String what = e.sym.toString();
duke@1 3398 if (!isClassDecl) {
duke@1 3399 if (staticImport)
duke@1 3400 log.error(pos, "already.defined.static.single.import", what);
duke@1 3401 else
mcimadamore@1945 3402 log.error(pos, "already.defined.single.import", what);
duke@1 3403 }
duke@1 3404 else if (sym != e.sym)
duke@1 3405 log.error(pos, "already.defined.this.unit", what);
duke@1 3406 }
duke@1 3407 return false;
duke@1 3408 }
duke@1 3409 }
duke@1 3410 return true;
duke@1 3411 }
duke@1 3412
duke@1 3413 /** Check that a qualified name is in canonical form (for import decls).
duke@1 3414 */
duke@1 3415 public void checkCanonical(JCTree tree) {
duke@1 3416 if (!isCanonical(tree))
duke@1 3417 log.error(tree.pos(), "import.requires.canonical",
duke@1 3418 TreeInfo.symbol(tree));
duke@1 3419 }
duke@1 3420 // where
duke@1 3421 private boolean isCanonical(JCTree tree) {
jjg@1127 3422 while (tree.hasTag(SELECT)) {
duke@1 3423 JCFieldAccess s = (JCFieldAccess) tree;
duke@1 3424 if (s.sym.owner != TreeInfo.symbol(s.selected))
duke@1 3425 return false;
duke@1 3426 tree = s.selected;
duke@1 3427 }
duke@1 3428 return true;
duke@1 3429 }
duke@1 3430
ohrstrom@1384 3431 /** Check that an auxiliary class is not accessed from any other file than its own.
ohrstrom@1384 3432 */
ohrstrom@1384 3433 void checkForBadAuxiliaryClassAccess(DiagnosticPosition pos, Env<AttrContext> env, ClassSymbol c) {
ohrstrom@1384 3434 if (lint.isEnabled(Lint.LintCategory.AUXILIARYCLASS) &&
ohrstrom@1384 3435 (c.flags() & AUXILIARY) != 0 &&
ohrstrom@1384 3436 rs.isAccessible(env, c) &&
ohrstrom@1384 3437 !fileManager.isSameFile(c.sourcefile, env.toplevel.sourcefile))
ohrstrom@1384 3438 {
ohrstrom@1384 3439 log.warning(pos, "auxiliary.class.accessed.from.outside.of.its.source.file",
ohrstrom@1384 3440 c, c.sourcefile);
ohrstrom@1384 3441 }
ohrstrom@1384 3442 }
ohrstrom@1384 3443
duke@1 3444 private class ConversionWarner extends Warner {
mcimadamore@795 3445 final String uncheckedKey;
duke@1 3446 final Type found;
duke@1 3447 final Type expected;
mcimadamore@795 3448 public ConversionWarner(DiagnosticPosition pos, String uncheckedKey, Type found, Type expected) {
duke@1 3449 super(pos);
mcimadamore@795 3450 this.uncheckedKey = uncheckedKey;
duke@1 3451 this.found = found;
duke@1 3452 this.expected = expected;
duke@1 3453 }
duke@1 3454
jjg@398 3455 @Override
mcimadamore@795 3456 public void warn(LintCategory lint) {
duke@1 3457 boolean warned = this.warned;
mcimadamore@795 3458 super.warn(lint);
duke@1 3459 if (warned) return; // suppress redundant diagnostics
mcimadamore@795 3460 switch (lint) {
mcimadamore@795 3461 case UNCHECKED:
mcimadamore@795 3462 Check.this.warnUnchecked(pos(), "prob.found.req", diags.fragment(uncheckedKey), found, expected);
mcimadamore@795 3463 break;
mcimadamore@795 3464 case VARARGS:
mcimadamore@795 3465 if (method != null &&
mcimadamore@795 3466 method.attribute(syms.trustMeType.tsym) != null &&
mcimadamore@795 3467 isTrustMeAllowedOnMethod(method) &&
mcimadamore@795 3468 !types.isReifiable(method.type.getParameterTypes().last())) {
mcimadamore@795 3469 Check.this.warnUnsafeVararg(pos(), "varargs.unsafe.use.varargs.param", method.params.last());
mcimadamore@795 3470 }
mcimadamore@795 3471 break;
mcimadamore@795 3472 default:
mcimadamore@795 3473 throw new AssertionError("Unexpected lint: " + lint);
mcimadamore@795 3474 }
duke@1 3475 }
duke@1 3476 }
duke@1 3477
duke@1 3478 public Warner castWarner(DiagnosticPosition pos, Type found, Type expected) {
duke@1 3479 return new ConversionWarner(pos, "unchecked.cast.to.type", found, expected);
duke@1 3480 }
duke@1 3481
duke@1 3482 public Warner convertWarner(DiagnosticPosition pos, Type found, Type expected) {
duke@1 3483 return new ConversionWarner(pos, "unchecked.assign", found, expected);
duke@1 3484 }
duke@1 3485 }

mercurial