langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java
author mcimadamore
Fri, 16 Dec 2016 15:27:47 +0000
changeset 42828 cce89649f958
parent 42407 f3702cff2933
child 43137 9a96f02a6293
permissions -rw-r--r--
8171371: Remove redundant type-arguments from generic method calls Reviewed-by: jjg, rfield, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 39371
diff changeset
     2
 * Copyright (c) 2003, 2016, 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: 4877
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: 4877
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: 4877
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4877
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4877
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
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14443
diff changeset
    28
import java.util.HashSet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.Set;
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
    30
import java.util.function.BiConsumer;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14443
diff changeset
    31
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import javax.tools.JavaFileObject;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.*;
27854
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
    35
import com.sun.tools.javac.code.Lint.LintCategory;
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25007
diff changeset
    36
import com.sun.tools.javac.code.Scope.ImportFilter;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25007
diff changeset
    37
import com.sun.tools.javac.code.Scope.NamedImportScope;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25007
diff changeset
    38
import com.sun.tools.javac.code.Scope.StarImportScope;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25007
diff changeset
    39
import com.sun.tools.javac.code.Scope.WriteableScope;
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
    40
import com.sun.tools.javac.comp.Annotate.AnnotationTypeMetadata;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import com.sun.tools.javac.tree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import com.sun.tools.javac.util.*;
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    43
import com.sun.tools.javac.util.DefinedBy.Api;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
24895
dd091d389fbf 8027262: Determine location for type annotations earlier in compiler pipeline
emc
parents: 24604
diff changeset
    45
import com.sun.tools.javac.code.Symbol.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import com.sun.tools.javac.tree.JCTree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import static com.sun.tools.javac.code.Flags.*;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9082
diff changeset
    50
import static com.sun.tools.javac.code.Flags.ANNOTATION;
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26781
diff changeset
    51
import static com.sun.tools.javac.code.Scope.LookupKind.NON_RECURSIVE;
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26781
diff changeset
    52
import static com.sun.tools.javac.code.Kinds.Kind.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    53
import static com.sun.tools.javac.code.TypeTag.CLASS;
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    54
import static com.sun.tools.javac.code.TypeTag.ERROR;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9082
diff changeset
    55
import static com.sun.tools.javac.tree.JCTree.Tag.*;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24396
diff changeset
    56
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    57
import com.sun.tools.javac.util.Dependencies.CompletionCause;
11709
0d56d3fc22e6 7129225: javac fails to run annotation processors when star import of package of gensrc
jjh
parents: 10950
diff changeset
    58
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
/** This is the second phase of Enter, in which classes are completed
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    62
 *  by resolving their headers and entering their members in the into
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    63
 *  the class scope. See Enter for an overall overview.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    64
 *
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    65
 *  This class uses internal phases to process the classes. When a phase
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    66
 *  processes classes, the lower phases are not invoked until all classes
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    67
 *  pass through the current phase. Note that it is possible that upper phases
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    68
 *  are run due to recursive completion. The internal phases are:
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    69
 *  - ImportPhase: shallow pass through imports, adds information about imports
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    70
 *                 the NamedImportScope and StarImportScope, but avoids queries
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    71
 *                 about class hierarchy.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    72
 *  - HierarchyPhase: resolves the supertypes of the given class. Does not handle
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    73
 *                    type parameters of the class or type argument of the supertypes.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    74
 *  - HeaderPhase: finishes analysis of the header of the given class by resolving
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    75
 *                 type parameters, attributing supertypes including type arguments
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    76
 *                 and scheduling full annotation attribution. This phase also adds
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    77
 *                 a synthetic default constructor if needed and synthetic "this" field.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    78
 *  - MembersPhase: resolves headers for fields, methods and constructors in the given class.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    79
 *                  Also generates synthetic enum members.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    81
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    82
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
 */
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    86
public class TypeEnter implements Completer {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    87
    protected static final Context.Key<TypeEnter> typeEnterKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    /** A switch to determine whether we check for package/class conflicts
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    final static boolean checkClash = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1045
diff changeset
    93
    private final Names names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    private final Enter enter;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
    95
    private final MemberEnter memberEnter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    private final Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    private final Check chk;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    private final Attr attr;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    private final Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    private final TreeMaker make;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    private final Todo todo;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    private final Annotate annotate;
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 26266
diff changeset
   103
    private final TypeAnnotations typeAnnotations;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    private final Types types;
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 939
diff changeset
   105
    private final JCDiagnostic.Factory diags;
8236
0d8646b7c602 6594914: @SuppressWarnings("deprecation") does not not work for the type of a variable
mcimadamore
parents: 8225
diff changeset
   106
    private final DeferredLintHandler deferredLintHandler;
19942
e9dae0e41075 8021112: Spurious unchecked warning reported by javac
jlahoda
parents: 19941
diff changeset
   107
    private final Lint lint;
25007
eb097d3a68f5 8038975: Access control in enhanced for
pgovereau
parents: 24903
diff changeset
   108
    private final TypeEnvs typeEnvs;
25844
48eab270456c 8048890: Add option to keep track of symbol completion dependencies
mcimadamore
parents: 25443
diff changeset
   109
    private final Dependencies dependencies;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   111
    public static TypeEnter instance(Context context) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   112
        TypeEnter instance = context.get(typeEnterKey);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        if (instance == null)
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   114
            instance = new TypeEnter(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   118
    protected TypeEnter(Context context) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   119
        context.put(typeEnterKey, this);
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1045
diff changeset
   120
        names = Names.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        enter = Enter.instance(context);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   122
        memberEnter = MemberEnter.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        chk = Check.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        attr = Attr.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        make = TreeMaker.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        todo = Todo.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        annotate = Annotate.instance(context);
26532
aa84b6606229 8056021: checkin for JDK-8027262 breaks Checker Framework
jfranck
parents: 26266
diff changeset
   130
        typeAnnotations = TypeAnnotations.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        types = Types.instance(context);
1040
c0f5acfd9d15 6730423: Diagnostic formatter should be an instance field of JCDiagnostic
mcimadamore
parents: 939
diff changeset
   132
        diags = JCDiagnostic.Factory.instance(context);
8236
0d8646b7c602 6594914: @SuppressWarnings("deprecation") does not not work for the type of a variable
mcimadamore
parents: 8225
diff changeset
   133
        deferredLintHandler = DeferredLintHandler.instance(context);
19942
e9dae0e41075 8021112: Spurious unchecked warning reported by javac
jlahoda
parents: 19941
diff changeset
   134
        lint = Lint.instance(context);
25007
eb097d3a68f5 8038975: Access control in enhanced for
pgovereau
parents: 24903
diff changeset
   135
        typeEnvs = TypeEnvs.instance(context);
25844
48eab270456c 8048890: Add option to keep track of symbol completion dependencies
mcimadamore
parents: 25443
diff changeset
   136
        dependencies = Dependencies.instance(context);
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   137
        Source source = Source.instance(context);
18643
fdd7572e0c18 8016613: javac should avoid source 8 only analysis when compiling for source 7
vromero
parents: 18389
diff changeset
   138
        allowTypeAnnos = source.allowTypeAnnotations();
27854
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   139
        allowDeprecationOnImport = source.allowDeprecationOnImport();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
18643
fdd7572e0c18 8016613: javac should avoid source 8 only analysis when compiling for source 7
vromero
parents: 18389
diff changeset
   142
    /** Switch: support type annotations.
fdd7572e0c18 8016613: javac should avoid source 8 only analysis when compiling for source 7
vromero
parents: 18389
diff changeset
   143
     */
fdd7572e0c18 8016613: javac should avoid source 8 only analysis when compiling for source 7
vromero
parents: 18389
diff changeset
   144
    boolean allowTypeAnnos;
fdd7572e0c18 8016613: javac should avoid source 8 only analysis when compiling for source 7
vromero
parents: 18389
diff changeset
   145
27854
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   146
    /**
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   147
     * Switch: should deprecation warnings be issued on import
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   148
     */
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   149
    boolean allowDeprecationOnImport;
22b4bfc4e22f 8032211: Don't issue deprecation warnings on import statements
jlahoda
parents: 27231
diff changeset
   150
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    /** A flag to disable completion from time to time during member
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     *  enter, as we only need to look up types.  This avoids
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     *  unnecessarily deep recursion.
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    boolean completionEnabled = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   157
    /* Verify Imports:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     */
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   159
    protected void ensureImportsChecked(List<JCCompilationUnit> trees) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   160
        // if there remain any unimported toplevels (these must have
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   161
        // no classes at all), process their import statements as well.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   162
        for (JCCompilationUnit tree : trees) {
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   163
            if (!tree.starImportScope.isFilled()) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   164
                Env<AttrContext> topEnv = enter.topLevelEnv(tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   165
                finishImports(tree, () -> { completeClass.resolveImports(tree, topEnv); });
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            }
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   167
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
/* ********************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
 * Source completer
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
 *********************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    /** Complete entering a class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     *  @param sym         The symbol of the class to be completed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
     */
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 39371
diff changeset
   177
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public void complete(Symbol sym) throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        // Suppress some (recursive) MemberEnter invocations
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        if (!completionEnabled) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
            // Re-install same completer for next time around and return.
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   182
            Assert.check((sym.flags() & Flags.COMPOUND) == 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            sym.completer = this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
27231
c1ca668b421e 8054448: (ann) Cannot reference field of inner class in an anonymous class
jfranck
parents: 27224
diff changeset
   187
        try {
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   188
            annotate.blockAnnotations();
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   189
            sym.flags_field |= UNATTRIBUTED;
1043
11ea4773b0af 6695838: javac does not detect cyclic inheritance involving static inner classes after import clause
mcimadamore
parents: 1040
diff changeset
   190
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   191
            List<Env<AttrContext>> queue;
27231
c1ca668b421e 8054448: (ann) Cannot reference field of inner class in an anonymous class
jfranck
parents: 27224
diff changeset
   192
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   193
            dependencies.push((ClassSymbol) sym, CompletionCause.MEMBER_ENTER);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   194
            try {
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   195
                queue = completeClass.completeEnvs(List.of(typeEnvs.get((ClassSymbol) sym)));
27231
c1ca668b421e 8054448: (ann) Cannot reference field of inner class in an anonymous class
jfranck
parents: 27224
diff changeset
   196
            } finally {
c1ca668b421e 8054448: (ann) Cannot reference field of inner class in an anonymous class
jfranck
parents: 27224
diff changeset
   197
                dependencies.pop();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   200
            if (!queue.isEmpty()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   201
                Set<JCCompilationUnit> seen = new HashSet<>();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   202
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   203
                for (Env<AttrContext> env : queue) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   204
                    if (env.toplevel.defs.contains(env.enclClass) && seen.add(env.toplevel)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   205
                        finishImports(env.toplevel, () -> {});
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
                }
14369
3d660d08d1f7 7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents: 14359
diff changeset
   208
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        } finally {
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   210
            annotate.unblockAnnotations();
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14443
diff changeset
   211
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14443
diff changeset
   212
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   214
    void finishImports(JCCompilationUnit toplevel, Runnable resolve) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   215
        JavaFileObject prev = log.useSource(toplevel.sourcefile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        try {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   217
            resolve.run();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   218
            chk.checkImportsUnique(toplevel);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   219
            chk.checkImportsResolvable(toplevel);
31299
81ce5febcae8 4869999: Error on import statement naming package containing no class files
sadayapalam
parents: 30066
diff changeset
   220
            chk.checkImportedPackagesObservable(toplevel);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   221
            toplevel.namedImportScope.finalizeScope();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   222
            toplevel.starImportScope.finalizeScope();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
            log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   228
    abstract class Phase {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   229
        private final ListBuffer<Env<AttrContext>> queue = new ListBuffer<>();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   230
        private final Phase next;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   231
        private final CompletionCause phaseName;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   232
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   233
        Phase(CompletionCause phaseName, Phase next) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   234
            this.phaseName = phaseName;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   235
            this.next = next;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   236
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   237
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   238
        public final List<Env<AttrContext>> completeEnvs(List<Env<AttrContext>> envs) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   239
            boolean firstToComplete = queue.isEmpty();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   240
39371
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   241
            Phase prevTopLevelPhase = topLevelPhase;
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   242
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   243
            try {
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   244
                topLevelPhase = this;
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   245
                doCompleteEnvs(envs);
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   246
            } finally {
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   247
                topLevelPhase = prevTopLevelPhase;
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   248
            }
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   249
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   250
            if (firstToComplete) {
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   251
                List<Env<AttrContext>> out = queue.toList();
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   252
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   253
                queue.clear();
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   254
                return next != null ? next.completeEnvs(out) : out;
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   255
            } else {
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   256
                return List.nil();
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   257
            }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   258
        }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   259
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   260
        protected void doCompleteEnvs(List<Env<AttrContext>> envs) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   261
            for (Env<AttrContext> env : envs) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   262
                JCClassDecl tree = (JCClassDecl)env.tree;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   263
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   264
                queue.add(env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   265
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   266
                JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   267
                DiagnosticPosition prevLintPos = deferredLintHandler.setPos(tree.pos());
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   268
                try {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   269
                    dependencies.push(env.enclClass.sym, phaseName);
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   270
                    runPhase(env);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   271
                } catch (CompletionFailure ex) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   272
                    chk.completionError(tree.pos(), ex);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   273
                } finally {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   274
                    dependencies.pop();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   275
                    deferredLintHandler.setPos(prevLintPos);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   276
                    log.useSource(prev);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   277
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   278
            }
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   279
        }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   280
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   281
        protected abstract void runPhase(Env<AttrContext> env);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   284
    private final ImportsPhase completeClass = new ImportsPhase();
39371
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   285
    private Phase topLevelPhase;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   286
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   287
    /**Analyze import clauses.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   288
     */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   289
    private final class ImportsPhase extends Phase {
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   290
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   291
        public ImportsPhase() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   292
            super(CompletionCause.IMPORTS_PHASE, new HierarchyPhase());
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   293
        }
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   294
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   295
        Env<AttrContext> env;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   296
        ImportFilter staticImportFilter;
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   297
        ImportFilter typeImportFilter;
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   298
        BiConsumer<JCImport, CompletionFailure> cfHandler =
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   299
                (imp, cf) -> chk.completionError(imp.pos(), cf);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   300
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   301
        @Override
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   302
        protected void runPhase(Env<AttrContext> env) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   303
            JCClassDecl tree = env.enclClass;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   304
            ClassSymbol sym = tree.sym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   305
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   306
            // If sym is a toplevel-class, make sure any import
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   307
            // clauses in its source file have been seen.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   308
            if (sym.owner.kind == PCK) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   309
                resolveImports(env.toplevel, env.enclosing(TOPLEVEL));
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   310
                todo.append(env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   311
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   312
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   313
            if (sym.owner.kind == TYP)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   314
                sym.owner.complete();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   315
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   316
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   317
        private void resolveImports(JCCompilationUnit tree, Env<AttrContext> env) {
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   318
            if (tree.starImportScope.isFilled()) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   319
                // we must have already processed this toplevel
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   320
                return;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   321
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   322
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   323
            ImportFilter prevStaticImportFilter = staticImportFilter;
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   324
            ImportFilter prevTypeImportFilter = typeImportFilter;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   325
            DiagnosticPosition prevLintPos = deferredLintHandler.immediate();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   326
            Lint prevLint = chk.setLint(lint);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   327
            Env<AttrContext> prevEnv = this.env;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   328
            try {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   329
                this.env = env;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   330
                final PackageSymbol packge = env.toplevel.packge;
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   331
                this.staticImportFilter =
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   332
                        (origin, sym) -> sym.isStatic() &&
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   333
                                         chk.importAccessible(sym, packge) &&
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   334
                                         sym.isMemberOf((TypeSymbol) origin.owner, types);
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   335
                this.typeImportFilter =
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   336
                        (origin, sym) -> sym.kind == TYP &&
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   337
                                         chk.importAccessible(sym, packge);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   338
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   339
                // Import-on-demand java.lang.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   340
                PackageSymbol javaLang = syms.enterPackage(syms.java_base, names.java_lang);
31299
81ce5febcae8 4869999: Error on import statement naming package containing no class files
sadayapalam
parents: 30066
diff changeset
   341
                if (javaLang.members().isEmpty() && !javaLang.exists())
81ce5febcae8 4869999: Error on import statement naming package containing no class files
sadayapalam
parents: 30066
diff changeset
   342
                    throw new FatalError(diags.fragment("fatal.err.no.java.lang"));
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   343
                importAll(make.at(tree.pos()).Import(make.QualIdent(javaLang), false), javaLang, env);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   344
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   345
                JCModuleDecl decl = tree.getModuleDecl();
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   346
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   347
                // Process the package def and all import clauses.
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   348
                if (tree.getPackage() != null && decl == null)
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   349
                    checkClassPackageClash(tree.getPackage());
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   350
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   351
                for (JCImport imp : tree.getImports()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   352
                    doImport(imp);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   353
                }
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   354
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   355
                if (decl != null) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   356
                    //check @Deprecated:
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   357
                    markDeprecated(decl.sym, decl.mods.annotations, env);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   358
                    // process module annotations
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   359
                    annotate.annotateLater(decl.mods.annotations, env, env.toplevel.modle, null);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   360
                }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   361
            } finally {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   362
                this.env = prevEnv;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   363
                chk.setLint(prevLint);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   364
                deferredLintHandler.setPos(prevLintPos);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   365
                this.staticImportFilter = prevStaticImportFilter;
29149
3fa94aad0264 8067886: Inaccessible nested classes can be incorrectly imported
jlahoda
parents: 27857
diff changeset
   366
                this.typeImportFilter = prevTypeImportFilter;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   367
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   368
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   369
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   370
        private void checkClassPackageClash(JCPackageDecl tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   371
            // check that no class exists with same fully qualified name as
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   372
            // toplevel package
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   373
            if (checkClash && tree.pid != null) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   374
                Symbol p = env.toplevel.packge;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   375
                while (p.owner != syms.rootPackage) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   376
                    p.owner.complete(); // enter all class members of p
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   377
                    //need to lookup the owning module/package:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   378
                    PackageSymbol pack = syms.lookupPackage(env.toplevel.modle, p.owner.getQualifiedName());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   379
                    if (syms.getClass(pack.modle, p.getQualifiedName()) != null) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   380
                        log.error(tree.pos,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   381
                                  "pkg.clashes.with.class.of.same.name",
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   382
                                  p);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   383
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   384
                    p = p.owner;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   385
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   386
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   387
            // process package annotations
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   388
            annotate.annotateLater(tree.annotations, env, env.toplevel.packge, null);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   389
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   390
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   391
        private void doImport(JCImport tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   392
            JCFieldAccess imp = (JCFieldAccess)tree.qualid;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   393
            Name name = TreeInfo.name(imp);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   394
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   395
            // Create a local environment pointing to this tree to disable
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   396
            // effects of other imports in Resolve.findGlobalType
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   397
            Env<AttrContext> localEnv = env.dup(tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   398
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   399
            TypeSymbol p = attr.attribImportQualifier(tree, localEnv).tsym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   400
            if (name == names.asterisk) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   401
                // Import on demand.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   402
                chk.checkCanonical(imp.selected);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   403
                if (tree.staticImport)
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   404
                    importStaticAll(tree, p, env);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   405
                else
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   406
                    importAll(tree, p, env);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   407
            } else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   408
                // Named type import.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   409
                if (tree.staticImport) {
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   410
                    importNamedStatic(tree, p, name, localEnv);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   411
                    chk.checkCanonical(imp.selected);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   412
                } else {
41932
b23b4712933b 8169074: Build is failing after JDK-8166538
jlahoda
parents: 41931
diff changeset
   413
                    TypeSymbol c = attribImportType(imp, localEnv).tsym;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   414
                    chk.checkCanonical(imp);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   415
                    importNamed(tree.pos(), c, env, tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   416
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   417
            }
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   418
        }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   419
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   420
        Type attribImportType(JCTree tree, Env<AttrContext> env) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   421
            Assert.check(completionEnabled);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   422
            Lint prevLint = chk.setLint(allowDeprecationOnImport ?
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 39371
diff changeset
   423
                    lint : lint.suppress(LintCategory.DEPRECATION, LintCategory.REMOVAL));
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   424
            try {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   425
                // To prevent deep recursion, suppress completion of some
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   426
                // types.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   427
                completionEnabled = false;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   428
                return attr.attribType(tree, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   429
            } finally {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   430
                completionEnabled = true;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   431
                chk.setLint(prevLint);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   432
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   433
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   434
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   435
        /** Import all classes of a class or package on demand.
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   436
         *  @param imp           The import that is being handled.
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   437
         *  @param tsym          The class or package the members of which are imported.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   438
         *  @param env           The env in which the imported classes will be entered.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   439
         */
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   440
        private void importAll(JCImport imp,
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   441
                               final TypeSymbol tsym,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   442
                               Env<AttrContext> env) {
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   443
            env.toplevel.starImportScope.importAll(types, tsym.members(), typeImportFilter, imp, cfHandler);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   444
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   445
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   446
        /** Import all static members of a class or package on demand.
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   447
         *  @param imp           The import that is being handled.
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   448
         *  @param tsym          The class or package the members of which are imported.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   449
         *  @param env           The env in which the imported classes will be entered.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   450
         */
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   451
        private void importStaticAll(JCImport imp,
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   452
                                     final TypeSymbol tsym,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   453
                                     Env<AttrContext> env) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   454
            final StarImportScope toScope = env.toplevel.starImportScope;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   455
            final TypeSymbol origin = tsym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   456
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   457
            toScope.importAll(types, origin.members(), staticImportFilter, imp, cfHandler);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   458
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   459
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   460
        /** Import statics types of a given name.  Non-types are handled in Attr.
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   461
         *  @param imp           The import that is being handled.
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   462
         *  @param tsym          The class from which the name is imported.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   463
         *  @param name          The (simple) name being imported.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   464
         *  @param env           The environment containing the named import
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   465
         *                  scope to add to.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   466
         */
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   467
        private void importNamedStatic(final JCImport imp,
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   468
                                       final TypeSymbol tsym,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   469
                                       final Name name,
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   470
                                       final Env<AttrContext> env) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   471
            if (tsym.kind != TYP) {
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   472
                log.error(DiagnosticFlag.RECOVERABLE, imp.pos(), "static.imp.only.classes.and.interfaces");
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   473
                return;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   474
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   475
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   476
            final NamedImportScope toScope = env.toplevel.namedImportScope;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   477
            final Scope originMembers = tsym.members();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   478
32059
ea04f56aeacd 8131915: CompletionFailure during import listing crashes javac
jlahoda
parents: 31299
diff changeset
   479
            imp.importScope = toScope.importByName(types, originMembers, name, staticImportFilter, imp, cfHandler);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   480
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   481
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   482
        /** Import given class.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   483
         *  @param pos           Position to be used for error reporting.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   484
         *  @param tsym          The class to be imported.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   485
         *  @param env           The environment containing the named import
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   486
         *                  scope to add to.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   487
         */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   488
        private void importNamed(DiagnosticPosition pos, final Symbol tsym, Env<AttrContext> env, JCImport imp) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   489
            if (tsym.kind == TYP)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   490
                imp.importScope = env.toplevel.namedImportScope.importType(tsym.owner.members(), tsym.owner.members(), tsym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   491
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   492
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   493
    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   494
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   495
    /**Defines common utility methods used by the HierarchyPhase and HeaderPhase.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   496
     */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   497
    private abstract class AbstractHeaderPhase extends Phase {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   498
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   499
        public AbstractHeaderPhase(CompletionCause phaseName, Phase next) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   500
            super(phaseName, next);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   501
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   502
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   503
        protected Env<AttrContext> baseEnv(JCClassDecl tree, Env<AttrContext> env) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   504
            WriteableScope baseScope = WriteableScope.create(tree.sym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   505
            //import already entered local classes into base scope
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   506
            for (Symbol sym : env.outer.info.scope.getSymbols(NON_RECURSIVE)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   507
                if (sym.isLocal()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   508
                    baseScope.enter(sym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   509
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   510
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   511
            //import current type-parameters into base scope
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   512
            if (tree.typarams != null)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   513
                for (List<JCTypeParameter> typarams = tree.typarams;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   514
                     typarams.nonEmpty();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   515
                     typarams = typarams.tail)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   516
                    baseScope.enter(typarams.head.type.tsym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   517
            Env<AttrContext> outer = env.outer; // the base clause can't see members of this class
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   518
            Env<AttrContext> localEnv = outer.dup(tree, outer.info.dup(baseScope));
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   519
            localEnv.baseClause = true;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   520
            localEnv.outer = outer;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   521
            localEnv.info.isSelfCall = false;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   522
            return localEnv;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   523
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   524
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   525
        /** Generate a base clause for an enum type.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   526
         *  @param pos              The position for trees and diagnostics, if any
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   527
         *  @param c                The class symbol of the enum
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   528
         */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   529
        protected  JCExpression enumBase(int pos, ClassSymbol c) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   530
            JCExpression result = make.at(pos).
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   531
                TypeApply(make.QualIdent(syms.enumSym),
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   532
                          List.of(make.Type(c.type)));
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   533
            return result;
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   534
        }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   535
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   536
        protected Type modelMissingTypes(Env<AttrContext> env, Type t, final JCExpression tree, final boolean interfaceExpected) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   537
            if (!t.hasTag(ERROR))
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   538
                return t;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   539
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   540
            return new ErrorType(t.getOriginalType(), t.tsym) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   541
                private Type modelType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   542
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   543
                @Override
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   544
                public Type getModelType() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   545
                    if (modelType == null)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   546
                        modelType = new Synthesizer(env.toplevel.modle, getOriginalType(), interfaceExpected).visit(tree);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   547
                    return modelType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   548
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   549
            };
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   550
        }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   551
            // where:
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   552
            private class Synthesizer extends JCTree.Visitor {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   553
                ModuleSymbol msym;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   554
                Type originalType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   555
                boolean interfaceExpected;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   556
                List<ClassSymbol> synthesizedSymbols = List.nil();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   557
                Type result;
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   558
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   559
                Synthesizer(ModuleSymbol msym, Type originalType, boolean interfaceExpected) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   560
                    this.msym = msym;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   561
                    this.originalType = originalType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   562
                    this.interfaceExpected = interfaceExpected;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   563
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   564
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   565
                Type visit(JCTree tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   566
                    tree.accept(this);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   567
                    return result;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   568
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   569
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   570
                List<Type> visit(List<? extends JCTree> trees) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   571
                    ListBuffer<Type> lb = new ListBuffer<>();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   572
                    for (JCTree t: trees)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   573
                        lb.append(visit(t));
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   574
                    return lb.toList();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   575
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   576
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   577
                @Override
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   578
                public void visitTree(JCTree tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   579
                    result = syms.errType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   580
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   581
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   582
                @Override
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   583
                public void visitIdent(JCIdent tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   584
                    if (!tree.type.hasTag(ERROR)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   585
                        result = tree.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   586
                    } else {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   587
                        result = synthesizeClass(tree.name, msym.unnamedPackage).type;
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   588
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   589
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   590
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   591
                @Override
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   592
                public void visitSelect(JCFieldAccess tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   593
                    if (!tree.type.hasTag(ERROR)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   594
                        result = tree.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   595
                    } else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   596
                        Type selectedType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   597
                        boolean prev = interfaceExpected;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   598
                        try {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   599
                            interfaceExpected = false;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   600
                            selectedType = visit(tree.selected);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   601
                        } finally {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   602
                            interfaceExpected = prev;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   603
                        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   604
                        ClassSymbol c = synthesizeClass(tree.name, selectedType.tsym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   605
                        result = c.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   606
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   607
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   608
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   609
                @Override
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   610
                public void visitTypeApply(JCTypeApply tree) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   611
                    if (!tree.type.hasTag(ERROR)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   612
                        result = tree.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   613
                    } else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   614
                        ClassType clazzType = (ClassType) visit(tree.clazz);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   615
                        if (synthesizedSymbols.contains(clazzType.tsym))
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   616
                            synthesizeTyparams((ClassSymbol) clazzType.tsym, tree.arguments.size());
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   617
                        final List<Type> actuals = visit(tree.arguments);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   618
                        result = new ErrorType(tree.type, clazzType.tsym) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   619
                            @Override @DefinedBy(Api.LANGUAGE_MODEL)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   620
                            public List<Type> getTypeArguments() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   621
                                return actuals;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   622
                            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   623
                        };
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   624
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   625
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   626
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   627
                ClassSymbol synthesizeClass(Name name, Symbol owner) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   628
                    int flags = interfaceExpected ? INTERFACE : 0;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   629
                    ClassSymbol c = new ClassSymbol(flags, name, owner);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   630
                    c.members_field = new Scope.ErrorScope(c);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   631
                    c.type = new ErrorType(originalType, c) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   632
                        @Override @DefinedBy(Api.LANGUAGE_MODEL)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   633
                        public List<Type> getTypeArguments() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   634
                            return typarams_field;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   635
                        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   636
                    };
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   637
                    synthesizedSymbols = synthesizedSymbols.prepend(c);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   638
                    return c;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   639
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   640
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   641
                void synthesizeTyparams(ClassSymbol sym, int n) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   642
                    ClassType ct = (ClassType) sym.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   643
                    Assert.check(ct.typarams_field.isEmpty());
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   644
                    if (n == 1) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   645
                        TypeVar v = new TypeVar(names.fromString("T"), sym, syms.botType);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   646
                        ct.typarams_field = ct.typarams_field.prepend(v);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   647
                    } else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   648
                        for (int i = n; i > 0; i--) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   649
                            TypeVar v = new TypeVar(names.fromString("T" + i), sym,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   650
                                                    syms.botType);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   651
                            ct.typarams_field = ct.typarams_field.prepend(v);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   652
                        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   653
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   654
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   655
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   656
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   657
        protected void attribSuperTypes(Env<AttrContext> env, Env<AttrContext> baseEnv) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   658
            JCClassDecl tree = env.enclClass;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   659
            ClassSymbol sym = tree.sym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   660
            ClassType ct = (ClassType)sym.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   661
            // Determine supertype.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   662
            Type supertype;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   663
            JCExpression extending;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   664
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   665
            if (tree.extending != null) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   666
                extending = clearTypeParams(tree.extending);
33366
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   667
                supertype = attr.attribBase(extending, baseEnv, true, false, true);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   668
            } else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   669
                extending = null;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   670
                supertype = ((tree.mods.flags & Flags.ENUM) != 0)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   671
                ? attr.attribBase(enumBase(tree.pos, sym), baseEnv,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   672
                                  true, false, false)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   673
                : (sym.fullname == names.java_lang_Object)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   674
                ? Type.noType
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   675
                : syms.objectType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   676
            }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   677
            ct.supertype_field = modelMissingTypes(baseEnv, supertype, extending, false);
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   678
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   679
            // Determine interfaces.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   680
            ListBuffer<Type> interfaces = new ListBuffer<>();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   681
            ListBuffer<Type> all_interfaces = null; // lazy init
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   682
            List<JCExpression> interfaceTrees = tree.implementing;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   683
            for (JCExpression iface : interfaceTrees) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   684
                iface = clearTypeParams(iface);
33366
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   685
                Type it = attr.attribBase(iface, baseEnv, false, true, true);
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   686
                if (it.hasTag(CLASS)) {
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   687
                    interfaces.append(it);
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   688
                    if (all_interfaces != null) all_interfaces.append(it);
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   689
                } else {
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   690
                    if (all_interfaces == null)
a113e08cc061 8087349: Test tools/sjavac/IncCompInheritance.java is failing
alundblad
parents: 32913
diff changeset
   691
                        all_interfaces = new ListBuffer<Type>().appendList(interfaces);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   692
                    all_interfaces.append(modelMissingTypes(baseEnv, it, iface, true));
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   693
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   694
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   695
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   696
            if ((sym.flags_field & ANNOTATION) != 0) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   697
                ct.interfaces_field = List.of(syms.annotationType);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   698
                ct.all_interfaces_field = ct.interfaces_field;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   699
            }  else {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   700
                ct.interfaces_field = interfaces.toList();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   701
                ct.all_interfaces_field = (all_interfaces == null)
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   702
                        ? ct.interfaces_field : all_interfaces.toList();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   703
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   704
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   705
            //where:
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   706
            protected JCExpression clearTypeParams(JCExpression superType) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   707
                return superType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   708
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   709
    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   710
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   711
    private final class HierarchyPhase extends AbstractHeaderPhase implements Completer {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   712
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   713
        public HierarchyPhase() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   714
            super(CompletionCause.HIERARCHY_PHASE, new HeaderPhase());
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   715
        }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   716
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   717
        @Override
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   718
        protected void doCompleteEnvs(List<Env<AttrContext>> envs) {
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   719
            //The ClassSymbols in the envs list may not be in the dependency order.
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   720
            //To get proper results, for every class or interface C, the supertypes of
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   721
            //C must be processed by the HierarchyPhase phase before C.
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   722
            //To achieve that, the HierarchyPhase is registered as the Completer for
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   723
            //all the classes first, and then all the classes are completed.
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   724
            for (Env<AttrContext> env : envs) {
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   725
                env.enclClass.sym.completer = this;
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   726
            }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   727
            for (Env<AttrContext> env : envs) {
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   728
                env.enclClass.sym.complete();
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   729
            }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   730
        }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   731
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   732
        @Override
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   733
        protected void runPhase(Env<AttrContext> env) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   734
            JCClassDecl tree = env.enclClass;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   735
            ClassSymbol sym = tree.sym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   736
            ClassType ct = (ClassType)sym.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   737
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   738
            Env<AttrContext> baseEnv = baseEnv(tree, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   739
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   740
            attribSuperTypes(env, baseEnv);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   741
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   742
            if (sym.fullname == names.java_lang_Object) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   743
                if (tree.extending != null) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   744
                    chk.checkNonCyclic(tree.extending.pos(),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   745
                                       ct.supertype_field);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   746
                    ct.supertype_field = Type.noType;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   747
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   748
                else if (tree.implementing.nonEmpty()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   749
                    chk.checkNonCyclic(tree.implementing.head.pos(),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   750
                                       ct.interfaces_field.head);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   751
                    ct.interfaces_field = List.nil();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   752
                }
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   753
            }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   754
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
   755
            markDeprecated(sym, tree.mods.annotations, baseEnv);
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   756
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   757
            chk.checkNonCyclicDecl(tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   758
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   759
            //where:
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 39371
diff changeset
   760
            @Override
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   761
            protected JCExpression clearTypeParams(JCExpression superType) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   762
                switch (superType.getTag()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   763
                    case TYPEAPPLY:
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   764
                        return ((JCTypeApply) superType).clazz;
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   765
                }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   766
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   767
                return superType;
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   768
            }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   769
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   770
        @Override
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   771
        public void complete(Symbol sym) throws CompletionFailure {
39371
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   772
            Assert.check((topLevelPhase instanceof ImportsPhase) ||
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   773
                         (topLevelPhase == this));
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   774
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   775
            if (topLevelPhase != this) {
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   776
                //only do the processing based on dependencies in the HierarchyPhase:
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   777
                sym.completer = this;
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   778
                return ;
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   779
            }
ac04aefa4ba6 8148131: compilation result depends on order of sources
jlahoda
parents: 37942
diff changeset
   780
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   781
            Env<AttrContext> env = typeEnvs.get((ClassSymbol) sym);
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   782
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   783
            super.doCompleteEnvs(List.of(env));
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   784
        }
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   785
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   786
    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   787
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   788
    private final class HeaderPhase extends AbstractHeaderPhase {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   789
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   790
        public HeaderPhase() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   791
            super(CompletionCause.HEADER_PHASE, new MembersPhase());
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   792
        }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   793
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   794
        @Override
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   795
        protected void runPhase(Env<AttrContext> env) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   796
            JCClassDecl tree = env.enclClass;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   797
            ClassSymbol sym = tree.sym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   798
            ClassType ct = (ClassType)sym.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   799
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   800
            // create an environment for evaluating the base clauses
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   801
            Env<AttrContext> baseEnv = baseEnv(tree, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   802
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   803
            if (tree.extending != null)
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   804
                annotate.queueScanTreeAndTypeAnnotate(tree.extending, baseEnv, sym, tree.pos());
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   805
            for (JCExpression impl : tree.implementing)
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   806
                annotate.queueScanTreeAndTypeAnnotate(impl, baseEnv, sym, tree.pos());
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   807
            annotate.flush();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   808
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   809
            attribSuperTypes(env, baseEnv);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   810
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   811
            Set<Type> interfaceSet = new HashSet<>();
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   812
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   813
            for (JCExpression iface : tree.implementing) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   814
                Type it = iface.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   815
                if (it.hasTag(CLASS))
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   816
                    chk.checkNotRepeated(iface.pos(), types.erasure(it), interfaceSet);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   817
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   818
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   819
            annotate.annotateLater(tree.mods.annotations, baseEnv,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   820
                        sym, tree.pos());
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   821
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   822
            attr.attribTypeVariables(tree.typarams, baseEnv);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   823
            for (JCTypeParameter tp : tree.typarams)
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   824
                annotate.queueScanTreeAndTypeAnnotate(tp, baseEnv, sym, tree.pos());
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   825
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   826
            // check that no package exists with same fully qualified name,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   827
            // but admit classes in the unnamed package which have the same
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   828
            // name as a top-level package.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   829
            if (checkClash &&
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   830
                sym.owner.kind == PCK && sym.owner != env.toplevel.modle.unnamedPackage &&
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33366
diff changeset
   831
                syms.packageExists(env.toplevel.modle, sym.fullname)) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   832
                log.error(tree.pos, "clash.with.pkg.of.same.name", Kinds.kindName(sym), sym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   833
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   834
            if (sym.owner.kind == PCK && (sym.flags_field & PUBLIC) == 0 &&
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   835
                !env.toplevel.sourcefile.isNameCompatible(sym.name.toString(),JavaFileObject.Kind.SOURCE)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   836
                sym.flags_field |= AUXILIARY;
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   837
            }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   838
        }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   839
    }
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   840
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   841
    /** Enter member fields and methods of a class
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   842
     */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   843
    private final class MembersPhase extends Phase {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   844
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   845
        public MembersPhase() {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   846
            super(CompletionCause.MEMBERS_PHASE, null);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   847
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   848
37942
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   849
        private boolean completing;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   850
        private List<Env<AttrContext>> todo = List.nil();
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   851
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   852
        @Override
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   853
        protected void doCompleteEnvs(List<Env<AttrContext>> envs) {
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   854
            todo = todo.prependList(envs);
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   855
            if (completing) {
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   856
                return ; //the top-level invocation will handle all envs
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   857
            }
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   858
            boolean prevCompleting = completing;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   859
            completing = true;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   860
            try {
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   861
                while (todo.nonEmpty()) {
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   862
                    Env<AttrContext> head = todo.head;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   863
                    todo = todo.tail;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   864
                    super.doCompleteEnvs(List.of(head));
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   865
                }
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   866
            } finally {
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   867
                completing = prevCompleting;
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   868
            }
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   869
        }
b0e834553947 8156097: docs build fails with StackOverflowError on Solaris
jlahoda
parents: 36526
diff changeset
   870
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   871
        @Override
32913
586e23a1b116 8075274: Compilation still depends on the order of imports
jlahoda
parents: 32059
diff changeset
   872
        protected void runPhase(Env<AttrContext> env) {
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   873
            JCClassDecl tree = env.enclClass;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   874
            ClassSymbol sym = tree.sym;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   875
            ClassType ct = (ClassType)sym.type;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   876
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   877
            // Add default constructor if needed.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   878
            if ((sym.flags() & INTERFACE) == 0 &&
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   879
                !TreeInfo.hasConstructors(tree.defs)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   880
                List<Type> argtypes = List.nil();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   881
                List<Type> typarams = List.nil();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   882
                List<Type> thrown = List.nil();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   883
                long ctorFlags = 0;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   884
                boolean based = false;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   885
                boolean addConstructor = true;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   886
                JCNewClass nc = null;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   887
                if (sym.name.isEmpty()) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   888
                    nc = (JCNewClass)env.next.tree;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   889
                    if (nc.constructor != null) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   890
                        addConstructor = nc.constructor.kind != ERR;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   891
                        Type superConstrType = types.memberType(sym.type,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   892
                                                                nc.constructor);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   893
                        argtypes = superConstrType.getParameterTypes();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   894
                        typarams = superConstrType.getTypeArguments();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   895
                        ctorFlags = nc.constructor.flags() & VARARGS;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   896
                        if (nc.encl != null) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   897
                            argtypes = argtypes.prepend(nc.encl.type);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   898
                            based = true;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   899
                        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   900
                        thrown = superConstrType.getThrownTypes();
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   901
                    }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   902
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   903
                if (addConstructor) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   904
                    MethodSymbol basedConstructor = nc != null ?
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   905
                            (MethodSymbol)nc.constructor : null;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   906
                    JCTree constrDef = DefaultConstructor(make.at(tree.pos), sym,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   907
                                                        basedConstructor,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   908
                                                        typarams, argtypes, thrown,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   909
                                                        ctorFlags, based);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   910
                    tree.defs = tree.defs.prepend(constrDef);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   911
                }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   912
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   913
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   914
            // enter symbols for 'this' into current scope.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   915
            VarSymbol thisSym =
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   916
                new VarSymbol(FINAL | HASINIT, names._this, sym.type, sym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   917
            thisSym.pos = Position.FIRSTPOS;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   918
            env.info.scope.enter(thisSym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   919
            // if this is a class, enter symbol for 'super' into current scope.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   920
            if ((sym.flags_field & INTERFACE) == 0 &&
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   921
                    ct.supertype_field.hasTag(CLASS)) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   922
                VarSymbol superSym =
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   923
                    new VarSymbol(FINAL | HASINIT, names._super,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   924
                                  ct.supertype_field, sym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   925
                superSym.pos = Position.FIRSTPOS;
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   926
                env.info.scope.enter(superSym);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   927
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   928
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   929
            finishClass(tree, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   930
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   931
            if (allowTypeAnnos) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   932
                typeAnnotations.organizeTypeAnnotationsSignatures(env, (JCClassDecl)env.tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   933
                typeAnnotations.validateTypeAnnotationsSignatures(env, (JCClassDecl)env.tree);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   934
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   935
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   936
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   937
        /** Enter members for a class.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   938
         */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   939
        void finishClass(JCClassDecl tree, Env<AttrContext> env) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   940
            if ((tree.mods.flags & Flags.ENUM) != 0 &&
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   941
                (types.supertype(tree.sym.type).tsym.flags() & Flags.ENUM) == 0) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   942
                addEnumMembers(tree, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   943
            }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   944
            memberEnter.memberEnter(tree.defs, env);
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   945
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   946
            if (tree.sym.isAnnotationType()) {
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29842
diff changeset
   947
                Assert.check(tree.sym.isCompleted());
29842
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   948
                tree.sym.setAnnotationTypeMetadata(new AnnotationTypeMetadata(tree.sym, annotate.annotationTypeSourceCompleter()));
826ac2519523 8031744: Annotations on many Language Model elements are not returned
jjg
parents: 29149
diff changeset
   949
            }
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   950
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   951
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   952
        /** Add the implicit members for an enum type
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   953
         *  to the symbol table.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   954
         */
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   955
        private void addEnumMembers(JCClassDecl tree, Env<AttrContext> env) {
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   956
            JCExpression valuesType = make.Type(new ArrayType(tree.sym.type, syms.arrayClass));
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   957
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   958
            // public static T[] values() { return ???; }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   959
            JCMethodDecl values = make.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   960
                MethodDef(make.Modifiers(Flags.PUBLIC|Flags.STATIC),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   961
                          names.values,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   962
                          valuesType,
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   963
                          List.nil(),
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   964
                          List.nil(),
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   965
                          List.nil(), // thrown
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   966
                          null, //make.Block(0, Tree.emptyList.prepend(make.Return(make.Ident(names._null)))),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   967
                          null);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   968
            memberEnter.memberEnter(values, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   969
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   970
            // public static T valueOf(String name) { return ???; }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   971
            JCMethodDecl valueOf = make.
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   972
                MethodDef(make.Modifiers(Flags.PUBLIC|Flags.STATIC),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   973
                          names.valueOf,
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   974
                          make.Type(tree.sym.type),
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   975
                          List.nil(),
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   976
                          List.of(make.VarDef(make.Modifiers(Flags.PARAMETER |
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   977
                                                             Flags.MANDATED),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   978
                                                names.fromString("name"),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   979
                                                make.Type(syms.stringType), null)),
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   980
                          List.nil(), // thrown
27857
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   981
                          null, //make.Block(0, Tree.emptyList.prepend(make.Return(make.Ident(names._null)))),
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   982
                          null);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   983
            memberEnter.memberEnter(valueOf, env);
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   984
        }
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   985
7e913a535736 7101822: Compiling depends on order of imports
jlahoda
parents: 27854
diff changeset
   986
    }
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8242
diff changeset
   987
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
/* ***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
 * tree building
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
 ****************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
06bc494ca11e Initial load
duke
parents:
diff changeset
   992
    /** Generate default constructor for given class. For classes different
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
     *  from java.lang.Object, this is:
06bc494ca11e Initial load
duke
parents:
diff changeset
   994
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
     *    c(argtype_0 x_0, ..., argtype_n x_n) throws thrown {
06bc494ca11e Initial load
duke
parents:
diff changeset
   996
     *      super(x_0, ..., x_n)
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
     *    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
     *  or, if based == true:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1000
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
     *    c(argtype_0 x_0, ..., argtype_n x_n) throws thrown {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1002
     *      x_0.super(x_1, ..., x_n)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
     *    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1005
     *  @param make     The tree factory.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1006
     *  @param c        The class owning the default constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
     *  @param argtypes The parameter types of the constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1008
     *  @param thrown   The thrown exceptions of the constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
     *  @param based    Is first parameter a this$n?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1010
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1011
    JCTree DefaultConstructor(TreeMaker make,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
                            ClassSymbol c,
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1013
                            MethodSymbol baseInit,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1014
                            List<Type> typarams,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
                            List<Type> argtypes,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1016
                            List<Type> thrown,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
                            long flags,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
                            boolean based) {
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1019
        JCTree result;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1020
        if ((c.flags() & ENUM) != 0 &&
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15720
diff changeset
  1021
            (types.supertype(c.type).tsym == syms.enumSym)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
            // constructors of true enums are private
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
            flags = (flags & ~AccessFlags) | PRIVATE | GENERATEDCONSTR;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
        } else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
            flags |= (c.flags() & AccessFlags) | GENERATEDCONSTR;
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1026
        if (c.name.isEmpty()) {
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1027
            flags |= ANONCONSTR;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1028
        }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1029
        Type mType = new MethodType(argtypes, null, thrown, c);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1030
        Type initType = typarams.nonEmpty() ?
24396
3c36c6afcbca 8040327: Eliminate AnnotatedType
emc
parents: 24069
diff changeset
  1031
            new ForAll(typarams, mType) :
3c36c6afcbca 8040327: Eliminate AnnotatedType
emc
parents: 24069
diff changeset
  1032
            mType;
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1033
        MethodSymbol init = new MethodSymbol(flags, names.init,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1034
                initType, c);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1035
        init.params = createDefaultConstructorParams(make, baseInit, init,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1036
                argtypes, based);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1037
        List<JCVariableDecl> params = make.Params(argtypes, init);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1038
        List<JCStatement> stats = List.nil();
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1039
        if (c.type != syms.objectType) {
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1040
            stats = stats.prepend(SuperCall(make, typarams, params, based));
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1041
        }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1042
        result = make.MethodDef(init, make.Block(0, stats));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1046
    private List<VarSymbol> createDefaultConstructorParams(
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1047
            TreeMaker make,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1048
            MethodSymbol baseInit,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1049
            MethodSymbol init,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1050
            List<Type> argtypes,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1051
            boolean based) {
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1052
        List<VarSymbol> initParams = null;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1053
        List<Type> argTypesList = argtypes;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1054
        if (based) {
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1055
            /*  In this case argtypes will have an extra type, compared to baseInit,
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1056
             *  corresponding to the type of the enclosing instance i.e.:
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1057
             *
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1058
             *  Inner i = outer.new Inner(1){}
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1059
             *
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1060
             *  in the above example argtypes will be (Outer, int) and baseInit
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1061
             *  will have parameter's types (int). So in this case we have to add
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1062
             *  first the extra type in argtypes and then get the names of the
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1063
             *  parameters from baseInit.
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1064
             */
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1065
            initParams = List.nil();
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19656
diff changeset
  1066
            VarSymbol param = new VarSymbol(PARAMETER, make.paramName(0), argtypes.head, init);
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1067
            initParams = initParams.append(param);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1068
            argTypesList = argTypesList.tail;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1069
        }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1070
        if (baseInit != null && baseInit.params != null &&
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1071
            baseInit.params.nonEmpty() && argTypesList.nonEmpty()) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
  1072
            initParams = (initParams == null) ? List.nil() : initParams;
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1073
            List<VarSymbol> baseInitParams = baseInit.params;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1074
            while (baseInitParams.nonEmpty() && argTypesList.nonEmpty()) {
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19656
diff changeset
  1075
                VarSymbol param = new VarSymbol(baseInitParams.head.flags() | PARAMETER,
17999
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1076
                        baseInitParams.head.name, argTypesList.head, init);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1077
                initParams = initParams.append(param);
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1078
                baseInitParams = baseInitParams.tail;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1079
                argTypesList = argTypesList.tail;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1080
            }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1081
        }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1082
        return initParams;
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1083
    }
42ae6fe53718 8010737: javac, known parameter's names should be copied to automatically generated constructors for inner classes
vromero
parents: 17578
diff changeset
  1084
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1085
    /** Generate call to superclass constructor. This is:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1087
     *    super(id_0, ..., id_n)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
     * or, if based == true
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
     *    id_0.super(id_1,...,id_n)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1093
     *  where id_0, ..., id_n are the names of the given parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1094
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
     *  @param make    The tree factory
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
     *  @param params  The parameters that need to be passed to super
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
     *  @param typarams  The type parameters that need to be passed to super
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
     *  @param based   Is first parameter a this$n?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
    JCExpressionStatement SuperCall(TreeMaker make,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
                   List<Type> typarams,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
                   List<JCVariableDecl> params,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
                   boolean based) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
        JCExpression meth;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
        if (based) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
            meth = make.Select(make.Ident(params.head), names._super);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
            params = params.tail;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
            meth = make.Ident(names._super);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
        List<JCExpression> typeargs = typarams.nonEmpty() ? make.Types(typarams) : null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1112
        return make.Exec(make.Apply(typeargs, meth, make.Idents(params)));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
    }
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1114
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1115
    /**
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1116
     * Mark sym deprecated if annotations contain @Deprecated annotation.
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1117
     */
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1118
    public void markDeprecated(Symbol sym, List<JCAnnotation> annotations, Env<AttrContext> env) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1119
        // In general, we cannot fully process annotations yet,  but we
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1120
        // can attribute the annotation types and then check to see if the
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1121
        // @Deprecated annotation is present.
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1122
        attr.attribAnnotationTypes(annotations, env);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1123
        handleDeprecatedAnnotations(annotations, sym);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1124
    }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1125
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1126
    /**
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1127
     * If a list of annotations contains a reference to java.lang.Deprecated,
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1128
     * set the DEPRECATED flag.
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1129
     * If the annotation is marked forRemoval=true, also set DEPRECATED_REMOVAL.
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1130
     **/
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1131
    private void handleDeprecatedAnnotations(List<JCAnnotation> annotations, Symbol sym) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1132
        for (List<JCAnnotation> al = annotations; !al.isEmpty(); al = al.tail) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1133
            JCAnnotation a = al.head;
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1134
            if (a.annotationType.type == syms.deprecatedType) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1135
                sym.flags_field |= (Flags.DEPRECATED | Flags.DEPRECATED_ANNOTATION);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1136
                a.args.stream()
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1137
                        .filter(e -> e.hasTag(ASSIGN))
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1138
                        .map(e -> (JCAssign) e)
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1139
                        .filter(assign -> TreeInfo.name(assign.lhs) == names.forRemoval)
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1140
                        .findFirst()
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1141
                        .ifPresent(assign -> {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1142
                            JCExpression rhs = TreeInfo.skipParens(assign.rhs);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1143
                            if (rhs.hasTag(LITERAL)
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1144
                                    && Boolean.TRUE.equals(((JCLiteral) rhs).getValue())) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1145
                                sym.flags_field |= DEPRECATED_REMOVAL;
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1146
                            }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1147
                        });
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1148
            }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1149
        }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41932
diff changeset
  1150
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
}