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

Mon, 26 Mar 2012 15:28:49 +0100

author
mcimadamore
date
Mon, 26 Mar 2012 15:28:49 +0100
changeset 1239
2827076dbf64
parent 1238
e28a06a3c5d9
child 1268
af6a4c24f4e3
permissions
-rw-r--r--

7133185: Update 292 overload resolution logic to match JLS
Summary: Re-implement special overload resolution support for method handles according to the JLS SE 7 definition
Reviewed-by: jjg, dlsmith, jrose

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

mercurial