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