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