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