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

Tue, 06 Mar 2012 13:28:05 +0000

author
mcimadamore
date
Tue, 06 Mar 2012 13:28:05 +0000
changeset 1219
48ee63caaa93
parent 1218
dda6a5b15580
child 1226
97bec6ab1227
permissions
-rw-r--r--

7144506: Attr.checkMethod should be called after inference variables have been fixed
Summary: Unify post-inference sanity check with Attr.checkMethod
Reviewed-by: jjg, dlsmith

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

mercurial