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

Fri, 14 Jan 2011 09:45:52 +0000

author
mcimadamore
date
Fri, 14 Jan 2011 09:45:52 +0000
changeset 821
c8d312dd17bc
parent 816
7c537f4298fb
child 828
19c900c703c6
permissions
-rw-r--r--

7007432: Test generic types well-formedness
Summary: add a new kind of check (well-formedness of generic type w.r.t. declared bounds) in the type-harness
Reviewed-by: jjg

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

mercurial