langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/JavaCompiler.java
author jjg
Wed, 10 Aug 2016 15:47:46 -0700
changeset 40308 274367a99f98
parent 39917 c51a8950f278
child 40311 bb76098875c8
permissions -rw-r--r--
8136930: Simplify use of module-system options by custom launchers 8160489: Multiple -Xpatch lines ignored by javac 8156998: javac should support new option -XinheritRuntimeEnvironment Reviewed-by: jlahoda, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
35810
9ee6e90d679c 8148808: javac, remove unused options, step 1
vromero
parents: 32454
diff changeset
     2
 * Copyright (c) 1999, 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: 5007
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: 5007
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: 5007
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
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.main;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.*;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    29
import java.util.Collection;
39917
c51a8950f278 8154705: invalid use of ALL-MODULE-PATH causes crash
ksrini
parents: 39812
diff changeset
    30
import java.util.Collections;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
    31
import java.util.HashMap;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.HashSet;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
    33
import java.util.LinkedHashMap;
1046
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
    34
import java.util.LinkedHashSet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.util.Map;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.util.MissingResourceException;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
    37
import java.util.Queue;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import java.util.ResourceBundle;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
    41
import javax.annotation.processing.Processor;
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
    42
import javax.lang.model.SourceVersion;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    43
import javax.lang.model.element.ElementVisitor;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
    44
import javax.tools.DiagnosticListener;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
import javax.tools.JavaFileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
import javax.tools.JavaFileObject;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
    47
import javax.tools.StandardLocation;
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
    48
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import com.sun.source.util.TaskEvent;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
    50
import com.sun.tools.javac.api.MultiTaskListener;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
import com.sun.tools.javac.code.*;
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7076
diff changeset
    52
import com.sun.tools.javac.code.Lint.LintCategory;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    53
import com.sun.tools.javac.code.Symbol.ClassSymbol;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    54
import com.sun.tools.javac.code.Symbol.CompletionFailure;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    55
import com.sun.tools.javac.code.Symbol.PackageSymbol;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    56
import com.sun.tools.javac.comp.*;
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17551
diff changeset
    57
import com.sun.tools.javac.comp.CompileStates.CompileState;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    58
import com.sun.tools.javac.file.JavacFileManager;
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    59
import com.sun.tools.javac.jvm.*;
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    60
import com.sun.tools.javac.parser.*;
31506
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
    61
import com.sun.tools.javac.platform.PlatformDescription;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    62
import com.sun.tools.javac.processing.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
import com.sun.tools.javac.tree.*;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    64
import com.sun.tools.javac.tree.JCTree.JCClassDecl;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    65
import com.sun.tools.javac.tree.JCTree.JCCompilationUnit;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    66
import com.sun.tools.javac.tree.JCTree.JCExpression;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    67
import com.sun.tools.javac.tree.JCTree.JCLambda;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    68
import com.sun.tools.javac.tree.JCTree.JCMemberReference;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    69
import com.sun.tools.javac.tree.JCTree.JCMethodDecl;
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    70
import com.sun.tools.javac.tree.JCTree.JCVariableDecl;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    71
import com.sun.tools.javac.util.*;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    72
import com.sun.tools.javac.util.DefinedBy.Api;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    73
import com.sun.tools.javac.util.JCDiagnostic.Factory;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    74
import com.sun.tools.javac.util.Log.WriterKind;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
    75
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
    76
import static com.sun.tools.javac.code.Kinds.Kind.*;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    77
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    78
import com.sun.tools.javac.code.Symbol.ModuleSymbol;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    79
import com.sun.tools.javac.resources.CompilerProperties.Errors;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    80
import com.sun.tools.javac.resources.CompilerProperties.Warnings;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    81
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    82
import static com.sun.tools.javac.code.TypeTag.CLASS;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    83
import static com.sun.tools.javac.main.Option.*;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
    84
import static com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag.*;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    85
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
    86
import static javax.tools.StandardLocation.CLASS_OUTPUT;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
/** This class could be the main entry point for GJC when GJC is used as a
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
 *  component in a larger software system. It provides operations to
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
 *  construct a new compiler, and to run a new compiler on a set of source
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
 *  files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    93
 *  <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
    94
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
 */
19921
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
    98
public class JavaCompiler {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    /** The context key for the compiler. */
32454
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   100
    public static final Context.Key<JavaCompiler> compilerKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    /** Get the JavaCompiler instance for this context. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    public static JavaCompiler instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        JavaCompiler instance = context.get(compilerKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            instance = new JavaCompiler(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    /** The current version number as a string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    public static String version() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        return version("release");  // mm.nn.oo[-milestone]
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    /** The current full version number as a string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    public static String fullVersion() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        return version("full"); // mm.mm.oo[-milestone]-build
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    private static final String versionRBName = "com.sun.tools.javac.resources.version";
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    private static ResourceBundle versionRB;
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    private static String version(String key) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        if (versionRB == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
                versionRB = ResourceBundle.getBundle(versionRBName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
            } catch (MissingResourceException e) {
6031
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5847
diff changeset
   130
                return Log.getLocalizedString("version.not.available");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            return versionRB.getString(key);
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        catch (MissingResourceException e) {
6031
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5847
diff changeset
   137
            return Log.getLocalizedString("version.not.available");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   141
    /**
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   142
     * Control how the compiler's latter phases (attr, flow, desugar, generate)
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   143
     * are connected. Each individual file is processed by each phase in turn,
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   144
     * but with different compile policies, you can control the order in which
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   145
     * each class is processed through its next phase.
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   146
     *
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   147
     * <p>Generally speaking, the compiler will "fail fast" in the face of
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   148
     * errors, although not aggressively so. flow, desugar, etc become no-ops
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   149
     * once any errors have occurred. No attempt is currently made to determine
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   150
     * if it might be safe to process a class through its next phase because
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   151
     * it does not depend on any unrelated errors that might have occurred.
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   152
     */
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   153
    protected static enum CompilePolicy {
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   154
        /**
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   155
         * Just attribute the parse trees.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
        ATTR_ONLY,
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   159
        /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
         * Just attribute and do flow analysis on the parse trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
         * This should catch most user errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        CHECK_ONLY,
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   165
        /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
         * Attribute everything, then do flow analysis for everything,
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
         * then desugar everything, and only then generate output.
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   168
         * This means no output will be generated if there are any
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   169
         * errors in any classes.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        SIMPLE,
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   173
        /**
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   174
         * Groups the classes for each source file together, then process
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   175
         * each group in a manner equivalent to the {@code SIMPLE} policy.
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   176
         * This means no output will be generated if there are any
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   177
         * errors in any of the classes in a source file.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        BY_FILE,
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   181
        /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
         * Completely process each entry on the todo list in turn.
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
         * -- this is the same for 1.5.
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
         * Means output might be generated for some classes in a compilation unit
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
         * and not others.
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        BY_TODO;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        static CompilePolicy decode(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            if (option == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
                return DEFAULT_COMPILE_POLICY;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            else if (option.equals("attr"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
                return ATTR_ONLY;
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            else if (option.equals("check"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
                return CHECK_ONLY;
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            else if (option.equals("simple"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
                return SIMPLE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            else if (option.equals("byfile"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
                return BY_FILE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
            else if (option.equals("bytodo"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
                return BY_TODO;
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
                return DEFAULT_COMPILE_POLICY;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 14548
diff changeset
   207
    private static final CompilePolicy DEFAULT_COMPILE_POLICY = CompilePolicy.BY_TODO;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   209
    protected static enum ImplicitSourcePolicy {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        /** Don't generate or process implicitly read source files. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        NONE,
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        /** Generate classes for implicitly read source files. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        CLASS,
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        /** Like CLASS, but generate warnings if annotation processing occurs */
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        UNSET;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        static ImplicitSourcePolicy decode(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            if (option == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
                return UNSET;
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            else if (option.equals("none"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                return NONE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            else if (option.equals("class"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
                return CLASS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
                return UNSET;
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    /** The log to be used for error reporting.
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    public Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   233
    /** Factory for creating diagnostic objects
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   234
     */
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   235
    JCDiagnostic.Factory diagFactory;
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   236
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    /** The tree factory module.
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    protected TreeMaker make;
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   241
    /** The class finder.
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   242
     */
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   243
    protected ClassFinder finder;
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   244
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
    /** The class reader.
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
    protected ClassReader reader;
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    /** The class writer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    protected ClassWriter writer;
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
   253
    /** The native header writer.
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
   254
     */
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
   255
    protected JNIWriter jniWriter;
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
   256
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    /** The module for the symbol table entry phases.
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
    protected Enter enter;
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    /** The symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
    protected Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
    /** The language version.
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    protected Source source;
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    /** The module for code generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    protected Gen gen;
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
    /** The name table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     */
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1258
diff changeset
   275
    protected Names names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    /** The attributor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    protected Attr attr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
    /** The attributor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    protected Check chk;
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
    /** The flow analyzer.
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
    protected Flow flow;
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   289
    /** The modules visitor
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   290
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   291
    protected Modules modules;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   292
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   293
    /** The module finder
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   294
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   295
    protected ModuleFinder moduleFinder;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   296
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   297
    /** The diagnostics factory
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   298
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   299
    protected JCDiagnostic.Factory diags;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   300
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
    /** The type eraser.
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     */
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   303
    protected TransTypes transTypes;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
    /** The syntactic sugar desweetener.
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
     */
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   307
    protected Lower lower;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
    /** The annotation annotator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
    protected Annotate annotate;
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
    /** Force a completion failure on this name
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    protected final Name completionFailureName;
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
    /** Type utilities.
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
    protected Types types;
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
    /** Access to file objects.
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
    protected JavaFileManager fileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
    /** Factory for parsers.
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
     */
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 1046
diff changeset
   327
    protected ParserFactory parserFactory;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   329
    /** Broadcasting listener for progress events
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
     */
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   331
    protected MultiTaskListener taskListener;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
    /**
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   334
     * SourceCompleter that delegates to the readSourceFile method of this class.
19921
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   335
     */
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   336
    protected final Symbol.Completer sourceCompleter =
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   337
            new Symbol.Completer() {
19921
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   338
                @Override
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   339
                public void complete(Symbol sym) throws CompletionFailure {
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   340
                    readSourceFile((ClassSymbol) sym);
19921
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   341
                }
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   342
            };
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   343
58bcbe156057 8023974: Drop 'implements Completer' and 'implements SourceCompleter' from ClassReader resp. JavaCompiler.
jfranck
parents: 19664
diff changeset
   344
    /**
8618
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   345
     * Command line options.
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   346
     */
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   347
    protected Options options;
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   348
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   349
    protected Context context;
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   350
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   351
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
     * Flag set if any annotation processing occurred.
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
     **/
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    protected boolean annotationProcessingOccurred;
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
     * Flag set if any implicit source files read.
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
     **/
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
    protected boolean implicitSourceFilesRead;
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   361
    protected boolean enterDone;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   362
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
   363
    protected CompileStates compileStates;
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
   364
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
    /** Construct a new compiler using a shared context.
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
     */
8614
06e42328ddab 7021650: fix Context issues
jjg
parents: 8032
diff changeset
   367
    public JavaCompiler(Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        this.context = context;
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        context.put(compilerKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
        // if fileManager not already set, register the JavacFileManager to be used
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
        if (context.get(JavaFileManager.class) == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            JavacFileManager.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1258
diff changeset
   375
        names = Names.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        log = Log.instance(context);
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   377
        diagFactory = JCDiagnostic.Factory.instance(context);
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   378
        finder = ClassFinder.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
        reader = ClassReader.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
        make = TreeMaker.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        writer = ClassWriter.instance(context);
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
   382
        jniWriter = JNIWriter.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
        enter = Enter.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        todo = Todo.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
        fileManager = context.get(JavaFileManager.class);
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 1046
diff changeset
   387
        parserFactory = ParserFactory.instance(context);
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
   388
        compileStates = CompileStates.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
            // catch completion problems with predefineds
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            // inlined Check.completionError as it is not initialized yet
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   395
            log.error("cant.access", ex.sym, ex.getDetailValue());
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   396
            if (ex instanceof ClassFinder.BadClassFile)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
                throw new Abort();
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
        source = Source.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
        attr = Attr.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
        chk = Check.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        gen = Gen.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        flow = Flow.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
        transTypes = TransTypes.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        lower = Lower.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        annotate = Annotate.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
        types = Types.instance(context);
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   408
        taskListener = MultiTaskListener.instance(context);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   409
        modules = Modules.instance(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   410
        moduleFinder = ModuleFinder.instance(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   411
        diags = Factory.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   413
        finder.sourceCompleter = sourceCompleter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
8618
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   415
        options = Options.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   417
        verbose       = options.isSet(VERBOSE);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   418
        sourceOutput  = options.isSet(PRINTSOURCE); // used to be -s
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   419
        lineDebugInfo = options.isUnset(G_CUSTOM) ||
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   420
                        options.isSet(G_CUSTOM, "lines");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   421
        genEndPos     = options.isSet(XJCOV) ||
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
                        context.get(DiagnosticListener.class) != null;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   423
        devVerbose    = options.isSet("dev");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   424
        processPcks   = options.isSet("process.packages");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   425
        werror        = options.isSet(WERROR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   427
        verboseCompilePolicy = options.isSet("verboseCompilePolicy");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
39601
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   429
        if (options.isSet("shouldstop.at") &&
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   430
            CompileState.valueOf(options.get("shouldstop.at")) == CompileState.ATTR)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
            compilePolicy = CompilePolicy.ATTR_ONLY;
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
            compilePolicy = CompilePolicy.decode(options.get("compilePolicy"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        implicitSourcePolicy = ImplicitSourcePolicy.decode(options.get("-implicit"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
        completionFailureName =
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
   438
            options.isSet("failcomplete")
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
            ? names.fromString(options.get("failcomplete"))
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
            : null;
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   441
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   442
        shouldStopPolicyIfError =
39601
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   443
            options.isSet("shouldstop.at") // backwards compatible
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   444
            ? CompileState.valueOf(options.get("shouldstop.at"))
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   445
            : options.isSet("shouldstop.ifError")
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   446
            ? CompileState.valueOf(options.get("shouldstop.ifError"))
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   447
            : CompileState.INIT;
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   448
        shouldStopPolicyIfNoError =
39601
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   449
            options.isSet("shouldstop.ifNoError")
5b37e511ae4b 8161020: javac, fold stop compilation options
vromero
parents: 39587
diff changeset
   450
            ? CompileState.valueOf(options.get("shouldstop.ifNoError"))
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   451
            : CompileState.GENERATE;
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   452
39812
6272642715a1 8161019: javac, fold formatter options
vromero
parents: 39601
diff changeset
   453
        if (options.isUnset("diags.legacy"))
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2514
diff changeset
   454
            log.setDiagnosticFormatter(RichDiagnosticFormatter.instance(context));
31506
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
   455
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
   456
        PlatformDescription platformProvider = context.get(PlatformDescription.class);
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
   457
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
   458
        if (platformProvider != null)
4e07f827a794 8072480: javac should support compilation for a specific platform version
jlahoda
parents: 27224
diff changeset
   459
            closeables = closeables.prepend(platformProvider);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   460
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   461
        silentFail = new Symbol(ABSENT_TYP, 0, names.empty, Type.noType, syms.rootPackage) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   462
            @DefinedBy(Api.LANGUAGE_MODEL)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   463
            public <R, P> R accept(ElementVisitor<R, P> v, P p) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   464
                return v.visitUnknown(this, p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   465
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   466
            @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   467
            public boolean exists() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   468
                return false;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   469
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   470
        };
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   471
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
    /* Switches:
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
    /** Verbose output.
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
    public boolean verbose;
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
    /** Emit plain Java source files rather than class files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
    public boolean sourceOutput;
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
    /** Generate code with the LineNumberTable attribute for debugging
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
    public boolean lineDebugInfo;
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
    /** Switch: should we store the ending positions?
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
    public boolean genEndPos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
    /** Switch: should we debug ignored exceptions
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
    protected boolean devVerbose;
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
    /** Switch: should we (annotation) process packages as well
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
    protected boolean processPcks;
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
1996
c855318a4b03 6595666: fix -Werror
jjg
parents: 1870
diff changeset
   502
    /** Switch: treat warnings as errors
c855318a4b03 6595666: fix -Werror
jjg
parents: 1870
diff changeset
   503
     */
c855318a4b03 6595666: fix -Werror
jjg
parents: 1870
diff changeset
   504
    protected boolean werror;
c855318a4b03 6595666: fix -Werror
jjg
parents: 1870
diff changeset
   505
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17551
diff changeset
   506
    /** Switch: is annotation processing requested explicitly via
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
     * CompilationTask.setProcessors?
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
    protected boolean explicitAnnotationProcessingRequested = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
     * The policy for the order in which to perform the compilation
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
    protected CompilePolicy compilePolicy;
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
     * The policy for what to do with implicitly read source files
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
    protected ImplicitSourcePolicy implicitSourcePolicy;
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
     * Report activity related to compilePolicy
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
    public boolean verboseCompilePolicy;
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   526
    /**
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   527
     * Policy of how far to continue compilation after errors have occurred.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   528
     * Set this to minimum CompileState (INIT) to stop as soon as possible
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   529
     * after errors.
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   530
     */
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   531
    public CompileState shouldStopPolicyIfError;
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   532
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   533
    /**
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   534
     * Policy of how far to continue compilation when no errors have occurred.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   535
     * Set this to maximum CompileState (GENERATE) to perform full compilation.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   536
     * Set this lower to perform partial compilation, such as -proc:only.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   537
     */
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   538
    public CompileState shouldStopPolicyIfNoError;
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   539
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14957
diff changeset
   540
    /** A queue of all as yet unattributed classes.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
    public Todo todo;
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
10637
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
   544
    /** A list of items to be closed when the compilation is complete.
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
   545
     */
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
   546
    public List<Closeable> closeables = List.nil();
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
   547
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
    /** The set of currently compiled inputfiles, needed to ensure
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
     *  we don't accidentally overwrite an input file when -s is set.
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
     *  initialized by `compile'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
     */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   552
    protected Set<JavaFileObject> inputFiles = new HashSet<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   554
    /** Used by the resolveBinaryNameOrIdent to say that the given type cannot be found, and that
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   555
     *  an error has already been produced about that.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   556
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   557
    private final Symbol silentFail;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   558
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   559
    protected boolean shouldStop(CompileState cs) {
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   560
        CompileState shouldStopPolicy = (errorCount() > 0 || unrecoverableError())
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   561
            ? shouldStopPolicyIfError
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   562
            : shouldStopPolicyIfNoError;
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
   563
        return cs.isAfter(shouldStopPolicy);
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   564
    }
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   565
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
    /** The number of errors reported so far.
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
    public int errorCount() {
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   569
        if (werror && log.nerrors == 0 && log.nwarnings > 0) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   570
            log.error("warnings.and.werror");
1996
c855318a4b03 6595666: fix -Werror
jjg
parents: 1870
diff changeset
   571
        }
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6156
diff changeset
   572
        return log.nerrors;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   575
    protected final <T> Queue<T> stopIfError(CompileState cs, Queue<T> queue) {
22165
ec53c8946fc2 8030807: langtools should still build using jdk 7
vromero
parents: 22163
diff changeset
   576
        return shouldStop(cs) ? new ListBuffer<T>() : queue;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   579
    protected final <T> List<T> stopIfError(CompileState cs, List<T> list) {
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   580
        return shouldStop(cs) ? List.<T>nil() : list;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
    /** The number of warnings reported so far.
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
    public int warningCount() {
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   586
        return log.nwarnings;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
    /** Try to open input stream with given name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
     *  Report an error if this fails.
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
     *  @param filename   The file name of the input stream to be opened.
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
    public CharSequence readSource(JavaFileObject filename) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
            inputFiles.add(filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
            return filename.getCharContent(false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        } catch (IOException e) {
5007
28dee2489196 6930076: "null" can incorrectly appear in error message compiler.err.error.reading.file
jjg
parents: 5004
diff changeset
   598
            log.error("error.reading.file", filename, JavacFileManager.getMessage(e));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
    /** Parse contents of input stream.
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
     *  @param filename     The name of the file from which input stream comes.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14058
diff changeset
   605
     *  @param content      The characters to be parsed.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
    protected JCCompilationUnit parse(JavaFileObject filename, CharSequence content) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
        long msec = now();
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 23810
diff changeset
   609
        JCCompilationUnit tree = make.TopLevel(List.<JCTree>nil());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        if (content != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
            if (verbose) {
8630
cd9eefe597f6 6966736: javac verbose output is inconsistent
jjg
parents: 8624
diff changeset
   612
                log.printVerbose("parsing.started", filename);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
            }
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   614
            if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
                TaskEvent e = new TaskEvent(TaskEvent.Kind.PARSE, filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
                taskListener.started(e);
15562
e05336e44a9e 8007344: javac may not make tree end positions and/or doc comments available to processors and listeners
jjg
parents: 15385
diff changeset
   617
                keepComments = true;
e05336e44a9e 8007344: javac may not make tree end positions and/or doc comments available to processors and listeners
jjg
parents: 15385
diff changeset
   618
                genEndPos = true;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            }
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 1046
diff changeset
   620
            Parser parser = parserFactory.newParser(content, keepComments(), genEndPos, lineDebugInfo);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 1046
diff changeset
   621
            tree = parser.parseCompilationUnit();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
            if (verbose) {
8630
cd9eefe597f6 6966736: javac verbose output is inconsistent
jjg
parents: 8624
diff changeset
   623
                log.printVerbose("parsing.done", Long.toString(elapsed(msec)));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
        tree.sourcefile = filename;
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   629
        if (content != null && !taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
            TaskEvent e = new TaskEvent(TaskEvent.Kind.PARSE, tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
            taskListener.finished(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
    // where
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        public boolean keepComments = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
        protected boolean keepComments() {
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   639
            return keepComments || sourceOutput;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
    /** Parse contents of file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
     *  @param filename     The name of the file to be parsed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
    @Deprecated
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6572
diff changeset
   647
    public JCTree.JCCompilationUnit parse(String filename) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
        JavacFileManager fm = (JavacFileManager)fileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        return parse(fm.getJavaFileObjectsFromStrings(List.of(filename)).iterator().next());
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
    /** Parse contents of file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
     *  @param filename     The name of the file to be parsed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
    public JCTree.JCCompilationUnit parse(JavaFileObject filename) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        JavaFileObject prev = log.useSource(filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
            JCTree.JCCompilationUnit t = parse(filename, readSource(filename));
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
            if (t.endPositions != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
                log.setEndPosTable(filename, t.endPositions);
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
            return t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
            log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
8851
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   667
    /** Resolve an identifier which may be the binary name of a class or
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   668
     * the Java name of a class or package.
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   669
     * @param name      The name to resolve
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   670
     */
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   671
    public Symbol resolveBinaryNameOrIdent(String name) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   672
        ModuleSymbol msym;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   673
        String typeName;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   674
        int sep = name.indexOf('/');
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   675
        if (sep == -1) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   676
            msym = modules.getDefaultModule();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   677
            typeName = name;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   678
        } else if (source.allowModules() && !options.isSet("noModules")) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   679
            Name modName = names.fromString(name.substring(0, sep));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   680
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   681
            msym = moduleFinder.findModule(modName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   682
            typeName = name.substring(sep + 1);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   683
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   684
            log.error(Errors.InvalidModuleSpecifier(name));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   685
            return silentFail;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   686
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   687
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   688
        return resolveBinaryNameOrIdent(msym, typeName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   689
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   690
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   691
    /** Resolve an identifier which may be the binary name of a class or
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   692
     * the Java name of a class or package.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   693
     * @param msym      The module in which the search should be performed
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   694
     * @param name      The name to resolve
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   695
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   696
    public Symbol resolveBinaryNameOrIdent(ModuleSymbol msym, String name) {
8851
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   697
        try {
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   698
            Name flatname = names.fromString(name.replace("/", "."));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   699
            return finder.loadClass(msym, flatname);
8851
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   700
        } catch (CompletionFailure ignore) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   701
            return resolveIdent(msym, name);
8851
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   702
        }
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   703
    }
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
   704
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
    /** Resolve an identifier.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   706
     * @param msym      The module in which the search should be performed
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
     * @param name      The identifier to resolve
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   709
    public Symbol resolveIdent(ModuleSymbol msym, String name) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
        if (name.equals(""))
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            return syms.errSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
        JavaFileObject prev = log.useSource(null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
            JCExpression tree = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
            for (String s : name.split("\\.", -1)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
                if (!SourceVersion.isIdentifier(s)) // TODO: check for keywords
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
                    return syms.errSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
                tree = (tree == null) ? make.Ident(names.fromString(s))
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
                                      : make.Select(tree, names.fromString(s));
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
            JCCompilationUnit toplevel =
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 23810
diff changeset
   722
                make.TopLevel(List.<JCTree>nil());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   723
            toplevel.modle = msym;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   724
            toplevel.packge = msym.unnamedPackage;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
            return attr.attribIdent(tree, toplevel);
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
            log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
    /** Generate code and emit a class file for a given class
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
     *  @param env    The attribution environment of the outermost class
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
     *                containing this class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
     *  @param cdef   The class definition from which code is generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
    JavaFileObject genCode(Env<AttrContext> env, JCClassDecl cdef) throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
        try {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   738
            if (gen.genClass(env, cdef) && (errorCount() == 0))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
                return writer.writeClass(cdef.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
        } catch (ClassWriter.PoolOverflow ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
            log.error(cdef.pos(), "limit.pool");
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
        } catch (ClassWriter.StringOverflow ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
            log.error(cdef.pos(), "limit.string.overflow",
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
                      ex.value.substring(0, 20));
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
            chk.completionError(cdef.pos(), ex);
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   751
    /** Emit plain Java source for a class.
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   752
     *  @param env    The attribution environment of the outermost class
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   753
     *                containing this class.
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   754
     *  @param cdef   The class definition to be printed.
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   755
     */
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   756
    JavaFileObject printSource(Env<AttrContext> env, JCClassDecl cdef) throws IOException {
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   757
        JavaFileObject outFile
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   758
           = fileManager.getJavaFileForOutput(CLASS_OUTPUT,
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   759
                                               cdef.sym.flatname.toString(),
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   760
                                               JavaFileObject.Kind.SOURCE,
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   761
                                               null);
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   762
        if (inputFiles.contains(outFile)) {
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   763
            log.error(cdef.pos(), "source.cant.overwrite.input.file", outFile);
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   764
            return null;
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   765
        } else {
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   766
            try (BufferedWriter out = new BufferedWriter(outFile.openWriter())) {
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   767
                new Pretty(out, true).printUnit(env.toplevel, cdef);
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   768
                if (verbose)
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   769
                    log.printVerbose("wrote.file", outFile);
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   770
            }
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   771
            return outFile;
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   772
        }
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   773
    }
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
   774
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   775
    /** Compile a source file that has been accessed by the class finder.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
     *  @param c          The class the source file of which needs to be compiled.
06bc494ca11e Initial load
duke
parents:
diff changeset
   777
     */
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   778
    private void readSourceFile(ClassSymbol c) throws CompletionFailure {
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   779
        readSourceFile(null, c);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   780
    }
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   781
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   782
    /** Compile a ClassSymbol from source, optionally using the given compilation unit as
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   783
     *  the source tree.
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   784
     *  @param tree the compilation unit in which the given ClassSymbol resides,
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   785
     *              or null if should be parsed from source
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   786
     *  @param c    the ClassSymbol to complete
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   787
     */
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   788
    public void readSourceFile(JCCompilationUnit tree, ClassSymbol c) throws CompletionFailure {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   789
        if (completionFailureName == c.fullname) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   790
            throw new CompletionFailure(c, "user-selected completion failure by class name");
06bc494ca11e Initial load
duke
parents:
diff changeset
   791
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   792
        JavaFileObject filename = c.classfile;
06bc494ca11e Initial load
duke
parents:
diff changeset
   793
        JavaFileObject prev = log.useSource(filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   794
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   795
        if (tree == null) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   796
            try {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   797
                tree = parse(filename, filename.getCharContent(false));
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   798
            } catch (IOException e) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   799
                log.error("error.reading.file", filename, JavacFileManager.getMessage(e));
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 23810
diff changeset
   800
                tree = make.TopLevel(List.<JCTree>nil());
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   801
            } finally {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   802
                log.useSource(prev);
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   803
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   804
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   805
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   806
        if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   807
            TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   808
            taskListener.started(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   809
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   810
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   811
        // Process module declarations.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   812
        // If module resolution fails, ignore trees, and if trying to
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   813
        // complete a specific symbol, throw CompletionFailure.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   814
        // Note that if module resolution failed, we may not even
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   815
        // have enough modules available to access java.lang, and
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   816
        // so risk getting FatalError("no.java.lang") from MemberEnter.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   817
        if (!modules.enter(List.of(tree), c)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   818
            throw new CompletionFailure(c, diags.fragment("cant.resolve.modules"));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   819
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   820
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
        enter.complete(List.of(tree), c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   822
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
   823
        if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
            TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
            taskListener.finished(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   826
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   827
06bc494ca11e Initial load
duke
parents:
diff changeset
   828
        if (enter.getEnv(c) == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   829
            boolean isPkgInfo =
06bc494ca11e Initial load
duke
parents:
diff changeset
   830
                tree.sourcefile.isNameCompatible("package-info",
06bc494ca11e Initial load
duke
parents:
diff changeset
   831
                                                 JavaFileObject.Kind.SOURCE);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   832
            boolean isModuleInfo =
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   833
                tree.sourcefile.isNameCompatible("module-info",
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   834
                                                 JavaFileObject.Kind.SOURCE);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   835
            if (isModuleInfo) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   836
                if (enter.getEnv(tree.modle) == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   837
                    JCDiagnostic diag =
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   838
                        diagFactory.fragment("file.does.not.contain.module");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   839
                    throw new ClassFinder.BadClassFile(c, filename, diag, diagFactory);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   840
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   841
            } else if (isPkgInfo) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   842
                if (enter.getEnv(tree.packge) == null) {
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   843
                    JCDiagnostic diag =
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   844
                        diagFactory.fragment("file.does.not.contain.package",
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
                                                 c.location());
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   846
                    throw new ClassFinder.BadClassFile(c, filename, diag, diagFactory);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
            } else {
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   849
                JCDiagnostic diag =
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   850
                        diagFactory.fragment("file.doesnt.contain.class",
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   851
                                            c.getQualifiedName());
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
   852
                throw new ClassFinder.BadClassFile(c, filename, diag, diagFactory);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   853
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   854
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   855
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
        implicitSourceFilesRead = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
    /** Track when the JavaCompiler has been used to compile something. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
    private boolean hasBeenUsed = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
    private long start_msec = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
    public long elapsed_msec = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
    public void compile(List<JavaFileObject> sourceFileObject)
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
        throws Throwable {
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
        compile(sourceFileObject, List.<String>nil(), null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   868
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
     * Main method: compile a list of files, return all compiled classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   872
     * @param sourceFileObjects file objects to be compiled
06bc494ca11e Initial load
duke
parents:
diff changeset
   873
     * @param classnames class names to process for annotations
06bc494ca11e Initial load
duke
parents:
diff changeset
   874
     * @param processors user provided annotation processors to bypass
06bc494ca11e Initial load
duke
parents:
diff changeset
   875
     * discovery, {@code null} means that no processors were provided
06bc494ca11e Initial load
duke
parents:
diff changeset
   876
     */
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   877
    public void compile(Collection<JavaFileObject> sourceFileObjects,
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   878
                        Collection<String> classnames,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   879
                        Iterable<? extends Processor> processors)
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
    {
24898
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   881
        if (!taskListener.isEmpty()) {
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   882
            taskListener.started(new TaskEvent(TaskEvent.Kind.COMPILATION));
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   883
        }
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   884
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   885
        if (processors != null && processors.iterator().hasNext())
06bc494ca11e Initial load
duke
parents:
diff changeset
   886
            explicitAnnotationProcessingRequested = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   887
        // as a JavaCompiler can only be used once, throw an exception if
06bc494ca11e Initial load
duke
parents:
diff changeset
   888
        // it has been used before.
06bc494ca11e Initial load
duke
parents:
diff changeset
   889
        if (hasBeenUsed)
32454
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   890
            checkReusable();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   891
        hasBeenUsed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   892
8618
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   893
        // forcibly set the equivalent of -Xlint:-options, so that no further
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   894
        // warnings about command line options are generated from this point on
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39917
diff changeset
   895
        options.put(XLINT_CUSTOM.primaryName + "-" + LintCategory.OPTIONS.option, "true");
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39917
diff changeset
   896
        options.remove(XLINT_CUSTOM.primaryName + LintCategory.OPTIONS.option);
8618
913fb63a554b 7022337: repeated warnings about bootclasspath not set
jjg
parents: 8614
diff changeset
   897
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
        start_msec = now();
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7076
diff changeset
   899
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   901
            initProcessAnnotations(processors);
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
            // These method calls must be chained to avoid memory leaks
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   904
            processAnnotations(
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   905
                enterTrees(
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   906
                        stopIfError(CompileState.PARSE,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   907
                                initModules(stopIfError(CompileState.PARSE, parseFiles(sourceFileObjects))))
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   908
                ),
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   909
                classnames
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   910
            );
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   911
23115
97722ad6c874 8030714: The steps attribute, flow and desugar are unnecessary for implicit classes when compiling with -implicit:none
alundblad
parents: 22165
diff changeset
   912
            // If it's safe to do so, skip attr / flow / gen for implicit classes
97722ad6c874 8030714: The steps attribute, flow and desugar are unnecessary for implicit classes when compiling with -implicit:none
alundblad
parents: 22165
diff changeset
   913
            if (taskListener.isEmpty() &&
97722ad6c874 8030714: The steps attribute, flow and desugar are unnecessary for implicit classes when compiling with -implicit:none
alundblad
parents: 22165
diff changeset
   914
                    implicitSourcePolicy == ImplicitSourcePolicy.NONE) {
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   915
                todo.retainFiles(inputFiles);
23115
97722ad6c874 8030714: The steps attribute, flow and desugar are unnecessary for implicit classes when compiling with -implicit:none
alundblad
parents: 22165
diff changeset
   916
            }
97722ad6c874 8030714: The steps attribute, flow and desugar are unnecessary for implicit classes when compiling with -implicit:none
alundblad
parents: 22165
diff changeset
   917
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   918
            switch (compilePolicy) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
            case ATTR_ONLY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   920
                attribute(todo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   921
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   922
06bc494ca11e Initial load
duke
parents:
diff changeset
   923
            case CHECK_ONLY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   924
                flow(attribute(todo));
06bc494ca11e Initial load
duke
parents:
diff changeset
   925
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   926
06bc494ca11e Initial load
duke
parents:
diff changeset
   927
            case SIMPLE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   928
                generate(desugar(flow(attribute(todo))));
06bc494ca11e Initial load
duke
parents:
diff changeset
   929
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   930
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   931
            case BY_FILE: {
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   932
                    Queue<Queue<Env<AttrContext>>> q = todo.groupByFile();
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   933
                    while (!q.isEmpty() && !shouldStop(CompileState.ATTR)) {
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   934
                        generate(desugar(flow(attribute(q.remove()))));
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   935
                    }
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   936
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   937
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   938
06bc494ca11e Initial load
duke
parents:
diff changeset
   939
            case BY_TODO:
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   940
                while (!todo.isEmpty())
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
   941
                    generate(desugar(flow(attribute(todo.remove()))));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   942
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   943
06bc494ca11e Initial load
duke
parents:
diff changeset
   944
            default:
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7335
diff changeset
   945
                Assert.error("unknown compile policy");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   946
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   947
        } catch (Abort ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   948
            if (devVerbose)
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7076
diff changeset
   949
                ex.printStackTrace(System.err);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   950
        } finally {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   951
            if (verbose) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   952
                elapsed_msec = elapsed(start_msec);
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   953
                log.printVerbose("total", Long.toString(elapsed_msec));
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   954
            }
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   955
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   956
            reportDeferredDiagnostics();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   957
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   958
            if (!log.hasDiagnosticListener()) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   959
                printCount("error", errorCount());
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   960
                printCount("warn", warningCount());
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   961
            }
24898
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   962
            if (!taskListener.isEmpty()) {
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   963
                taskListener.finished(new TaskEvent(TaskEvent.Kind.COMPILATION));
88fa65d2ac87 8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents: 24897
diff changeset
   964
            }
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   965
            close();
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   966
            if (procEnvImpl != null)
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
   967
                procEnvImpl.close();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   970
32454
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   971
    protected void checkReusable() {
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   972
        throw new AssertionError("attempt to reuse JavaCompiler");
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   973
    }
b0ac04e0fefe 8129962: Investigate performance improvements in langtools combo tests
mcimadamore
parents: 31751
diff changeset
   974
14957
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
   975
    /**
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
   976
     * The list of classes explicitly supplied on the command line for compilation.
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
   977
     * Not always populated.
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
   978
     */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
    private List<JCClassDecl> rootClasses;
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
06bc494ca11e Initial load
duke
parents:
diff changeset
   981
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   982
     * Parses a list of files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   983
     */
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6572
diff changeset
   984
   public List<JCCompilationUnit> parseFiles(Iterable<JavaFileObject> fileObjects) {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
   985
       if (shouldStop(CompileState.PARSE))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   986
           return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
        //parse all files
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
   989
        ListBuffer<JCCompilationUnit> trees = new ListBuffer<>();
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   990
        Set<JavaFileObject> filesSoFar = new HashSet<>();
6596
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   991
        for (JavaFileObject fileObject : fileObjects) {
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   992
            if (!filesSoFar.contains(fileObject)) {
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   993
                filesSoFar.add(fileObject);
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   994
                trees.append(parse(fileObject));
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   995
            }
3274cf9d4873 6900149: IllegalStateException when compiling same files and DiagnosticListener is set.
sundar
parents: 6594
diff changeset
   996
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
        return trees.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
06bc494ca11e Initial load
duke
parents:
diff changeset
  1000
    /**
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1001
     * Enter the symbols found in a list of parse trees if the compilation
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1002
     * is expected to proceed beyond anno processing into attr.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1003
     * As a side-effect, this puts elements on the "todo" list.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1004
     * Also stores a list of all top level classes in rootClasses.
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1005
     */
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1006
    public List<JCCompilationUnit> enterTreesIfNeeded(List<JCCompilationUnit> roots) {
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1007
       if (shouldStop(CompileState.ATTR))
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1008
           return List.nil();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1009
        return enterTrees(initModules(roots));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1010
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1011
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1012
    public List<JCCompilationUnit> initModules(List<JCCompilationUnit> roots) {
39917
c51a8950f278 8154705: invalid use of ALL-MODULE-PATH causes crash
ksrini
parents: 39812
diff changeset
  1013
        modules.initModules(roots, Collections.emptySet(), Collections.emptySet());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1014
        if (roots.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1015
            enterDone = true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1016
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1017
        return roots;
14050
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1018
    }
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1019
9bfad4b4b6a2 7196464: upgrade JavaCompiler.shouldStopPolicy to accomodate policies in face of error and no error
jjg
parents: 12213
diff changeset
  1020
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
     * Enter the symbols found in a list of parse trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
     * As a side-effect, this puts elements on the "todo" list.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
     * Also stores a list of all top level classes in rootClasses.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
    public List<JCCompilationUnit> enterTrees(List<JCCompilationUnit> roots) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
        //enter symbols for all files
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1027
        if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
            for (JCCompilationUnit unit: roots) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
                TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, unit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1030
                taskListener.started(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1032
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
        enter.main(roots);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1036
        enterDone = true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1037
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1038
        if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
            for (JCCompilationUnit unit: roots) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
                TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, unit);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
                taskListener.finished(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
14957
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
  1045
        // If generating source, or if tracking public apis,
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
  1046
        // then remember the classes declared in
ea7808ffcf6d 8004657: Add hooks to javac to enable reporting dependency information.
ohrstrom
parents: 14952
diff changeset
  1047
        // the original compilation units listed on the command line.
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
  1048
        if (sourceOutput) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1049
            ListBuffer<JCClassDecl> cdefs = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
            for (JCCompilationUnit unit : roots) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
                for (List<JCTree> defs = unit.defs;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1052
                     defs.nonEmpty();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1053
                     defs = defs.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1054
                    if (defs.head instanceof JCClassDecl)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1055
                        cdefs.append((JCClassDecl)defs.head);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1056
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1058
            rootClasses = cdefs.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1059
        }
6572
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1060
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1061
        // Ensure the input files have been recorded. Although this is normally
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1062
        // done by readSource, it may not have been done if the trees were read
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1063
        // in a prior round of annotation processing, and the trees have been
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1064
        // cleaned and are being reused.
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1065
        for (JCCompilationUnit unit : roots) {
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1066
            inputFiles.add(unit.sourcefile);
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1067
        }
4ca2051ff71a 6935638: -implicit:none prevents compilation with annotation processing
jjg
parents: 6355
diff changeset
  1068
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
        return roots;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1071
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
     * Set to true to enable skeleton annotation processing code.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
     * Currently, we assume this variable will be replaced more
06bc494ca11e Initial load
duke
parents:
diff changeset
  1075
     * advanced logic to figure out if annotation processing is
06bc494ca11e Initial load
duke
parents:
diff changeset
  1076
     * needed.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1077
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1078
    boolean processAnnotations = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1079
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1080
    Log.DeferredDiagnosticHandler deferredDiagnosticHandler;
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1081
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1082
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1083
     * Object to handle annotation processing.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
     */
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3557
diff changeset
  1085
    private JavacProcessingEnvironment procEnvImpl = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
06bc494ca11e Initial load
duke
parents:
diff changeset
  1087
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
     * Check if we should process annotations.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
     * If so, and if no scanner is yet registered, then set up the DocCommentScanner
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
     * to catch doc comments, and set keepComments so the parser records them in
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
     * the compilation unit.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1093
     * @param processors user provided annotation processors to bypass
06bc494ca11e Initial load
duke
parents:
diff changeset
  1094
     * discovery, {@code null} means that no processors were provided
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
     */
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6572
diff changeset
  1096
    public void initProcessAnnotations(Iterable<? extends Processor> processors) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
        // Process annotations if processing is not disabled and there
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
        // is at least one Processor available.
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
  1099
        if (options.isSet(PROC, "none")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
            processAnnotations = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
        } else if (procEnvImpl == null) {
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14538
diff changeset
  1102
            procEnvImpl = JavacProcessingEnvironment.instance(context);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14538
diff changeset
  1103
            procEnvImpl.setProcessors(processors);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
            processAnnotations = procEnvImpl.atLeastOneProcessor();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
            if (processAnnotations) {
39587
76c453568ffa 8160891: javac, remove unused options, step 3
vromero
parents: 36526
diff changeset
  1107
                options.put("parameters", "parameters");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
                reader.saveParameterNames = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
                keepComments = true;
6716
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 6596
diff changeset
  1110
                genEndPos = true;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1111
                if (!taskListener.isEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1112
                    taskListener.started(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING));
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1113
                deferredDiagnosticHandler = new Log.DeferredDiagnosticHandler(log);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
            } else { // free resources
06bc494ca11e Initial load
duke
parents:
diff changeset
  1115
                procEnvImpl.close();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1119
06bc494ca11e Initial load
duke
parents:
diff changeset
  1120
    // TODO: called by JavacTaskImpl
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1121
    public void processAnnotations(List<JCCompilationUnit> roots) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1122
        processAnnotations(roots, List.<String>nil());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1123
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1124
06bc494ca11e Initial load
duke
parents:
diff changeset
  1125
    /**
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1126
     * Process any annotations found in the specified compilation units.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1127
     * @param roots a list of compilation units
06bc494ca11e Initial load
duke
parents:
diff changeset
  1128
     */
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1129
    // Implementation note: when this method is called, log.deferredDiagnostics
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1130
    // will have been set true by initProcessAnnotations, meaning that any diagnostics
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1131
    // that are reported will go into the log.deferredDiagnostics queue.
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1132
    // By the time this method exits, log.deferDiagnostics must be set back to false,
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1133
    // and all deferredDiagnostics must have been handled: i.e. either reported
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1134
    // or determined to be transient, and therefore suppressed.
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1135
    public void processAnnotations(List<JCCompilationUnit> roots,
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
  1136
                                   Collection<String> classnames) {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1137
        if (shouldStop(CompileState.PROCESS)) {
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6156
diff changeset
  1138
            // Errors were encountered.
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1139
            // Unless all the errors are resolve errors, the errors were parse errors
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6156
diff changeset
  1140
            // or other errors during enter which cannot be fixed by running
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6156
diff changeset
  1141
            // any annotation processors.
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1142
            if (unrecoverableError()) {
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1143
                deferredDiagnosticHandler.reportDeferredDiagnostics();
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1144
                log.popDiagnosticHandler(deferredDiagnosticHandler);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1145
                return ;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1146
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1147
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1148
06bc494ca11e Initial load
duke
parents:
diff changeset
  1149
        // ASSERT: processAnnotations and procEnvImpl should have been set up by
06bc494ca11e Initial load
duke
parents:
diff changeset
  1150
        // by initProcessAnnotations
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
        // NOTE: The !classnames.isEmpty() checks should be refactored to Main.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
06bc494ca11e Initial load
duke
parents:
diff changeset
  1154
        if (!processAnnotations) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1155
            // If there are no annotation processors present, and
06bc494ca11e Initial load
duke
parents:
diff changeset
  1156
            // annotation processing is to occur with compilation,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1157
            // emit a warning.
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
  1158
            if (options.isSet(PROC, "only")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1159
                log.warning("proc.proc-only.requested.no.procs");
06bc494ca11e Initial load
duke
parents:
diff changeset
  1160
                todo.clear();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1161
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1162
            // If not processing annotations, classnames must be empty
06bc494ca11e Initial load
duke
parents:
diff changeset
  1163
            if (!classnames.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1164
                log.error("proc.no.explicit.annotation.processing.requested",
06bc494ca11e Initial load
duke
parents:
diff changeset
  1165
                          classnames);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1166
            }
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1167
            Assert.checkNull(deferredDiagnosticHandler);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1168
            return ; // continue regular compilation
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1169
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1170
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1171
        Assert.checkNonNull(deferredDiagnosticHandler);
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1172
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1173
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1174
            List<ClassSymbol> classSymbols = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1175
            List<PackageSymbol> pckSymbols = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1176
            if (!classnames.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1177
                 // Check for explicit request for annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1178
                 // processing
06bc494ca11e Initial load
duke
parents:
diff changeset
  1179
                if (!explicitAnnotationProcessingRequested()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1180
                    log.error("proc.no.explicit.annotation.processing.requested",
06bc494ca11e Initial load
duke
parents:
diff changeset
  1181
                              classnames);
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1182
                    deferredDiagnosticHandler.reportDeferredDiagnostics();
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1183
                    log.popDiagnosticHandler(deferredDiagnosticHandler);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1184
                    return ; // TODO: Will this halt compilation?
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1185
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1186
                    boolean errors = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1187
                    for (String nameStr : classnames) {
8851
e630c590eb10 6930508: Passing nested class names on javac command line interfere with subsequent name -> class lookup
jjg
parents: 8845
diff changeset
  1188
                        Symbol sym = resolveBinaryNameOrIdent(nameStr);
11867
1fa9d18707da 7142672: Problems with the value passed to the 'classes' param of JavaCompiler.CompilationTask.getTask(...)
jjh
parents: 11314
diff changeset
  1189
                        if (sym == null ||
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
  1190
                            (sym.kind == PCK && !processPcks) ||
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
  1191
                            sym.kind == ABSENT_TYP) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1192
                            if (sym != silentFail)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1193
                                log.error(Errors.ProcCantFindClass(nameStr));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1194
                            errors = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1195
                            continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1196
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1197
                        try {
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
  1198
                            if (sym.kind == PCK)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1199
                                sym.complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1200
                            if (sym.exists()) {
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
  1201
                                if (sym.kind == PCK)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1202
                                    pckSymbols = pckSymbols.prepend((PackageSymbol)sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1203
                                else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1204
                                    classSymbols = classSymbols.prepend((ClassSymbol)sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
                                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1206
                            }
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26992
diff changeset
  1207
                            Assert.check(sym.kind == PCK);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1208
                            log.warning(Warnings.ProcPackageDoesNotExist(nameStr));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1209
                            pckSymbols = pckSymbols.prepend((PackageSymbol)sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1210
                        } catch (CompletionFailure e) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1211
                            log.error(Errors.ProcCantFindClass(nameStr));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1212
                            errors = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1213
                            continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1214
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1215
                    }
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1216
                    if (errors) {
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1217
                        deferredDiagnosticHandler.reportDeferredDiagnostics();
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1218
                        log.popDiagnosticHandler(deferredDiagnosticHandler);
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1219
                        return ;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1220
                    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1221
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1222
            }
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3557
diff changeset
  1223
            try {
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1224
                annotationProcessingOccurred =
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1225
                        procEnvImpl.doProcessing(roots,
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1226
                                                 classSymbols,
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1227
                                                 pckSymbols,
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1228
                                                 deferredDiagnosticHandler);
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1229
                // doProcessing will have handled deferred diagnostics
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3557
diff changeset
  1230
            } finally {
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3557
diff changeset
  1231
                procEnvImpl.close();
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3557
diff changeset
  1232
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1233
        } catch (CompletionFailure ex) {
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  1234
            log.error("cant.access", ex.sym, ex.getDetailValue());
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1235
            if (deferredDiagnosticHandler != null) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1236
                deferredDiagnosticHandler.reportDeferredDiagnostics();
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1237
                log.popDiagnosticHandler(deferredDiagnosticHandler);
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1238
            }
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1239
        }
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1240
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1241
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1242
    private boolean unrecoverableError() {
14538
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1243
        if (deferredDiagnosticHandler != null) {
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1244
            for (JCDiagnostic d: deferredDiagnosticHandler.getDiagnostics()) {
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1245
                if (d.getKind() == JCDiagnostic.Kind.ERROR && !d.isFlagSet(RECOVERABLE))
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1246
                    return true;
384681be798f 8003299: Cleanup javac Log support for deferred diagnostics
jjg
parents: 14365
diff changeset
  1247
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1248
        }
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1249
        return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1250
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1251
06bc494ca11e Initial load
duke
parents:
diff changeset
  1252
    boolean explicitAnnotationProcessingRequested() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1253
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
  1254
            explicitAnnotationProcessingRequested ||
8623
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8618
diff changeset
  1255
            explicitAnnotationProcessingRequested(options);
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8618
diff changeset
  1256
    }
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8618
diff changeset
  1257
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8618
diff changeset
  1258
    static boolean explicitAnnotationProcessingRequested(Options options) {
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8618
diff changeset
  1259
        return
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
  1260
            options.isSet(PROCESSOR) ||
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39917
diff changeset
  1261
            options.isSet(PROCESSOR_PATH) ||
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39917
diff changeset
  1262
            options.isSet(PROCESSOR_MODULE_PATH) ||
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
  1263
            options.isSet(PROC, "only") ||
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6716
diff changeset
  1264
            options.isSet(XPRINT);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1265
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1266
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1267
    public void setDeferredDiagnosticHandler(Log.DeferredDiagnosticHandler deferredDiagnosticHandler) {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1268
        this.deferredDiagnosticHandler = deferredDiagnosticHandler;
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1269
    }
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1270
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1271
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1272
     * Attribute a list of parse trees, such as found on the "todo" list.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1273
     * Note that attributing classes may cause additional files to be
06bc494ca11e Initial load
duke
parents:
diff changeset
  1274
     * parsed and entered via the SourceCompleter.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1275
     * Attribution of the entries in the list does not stop if any errors occur.
31751
ec251536a004 8080880: some docs cleanup for langtools
avstepan
parents: 31506
diff changeset
  1276
     * @return a list of environments for attribute classes.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1277
     */
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1278
    public Queue<Env<AttrContext>> attribute(Queue<Env<AttrContext>> envs) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1279
        ListBuffer<Env<AttrContext>> results = new ListBuffer<>();
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1280
        while (!envs.isEmpty())
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1281
            results.append(attribute(envs.remove()));
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1282
        return stopIfError(CompileState.ATTR, results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1283
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1284
06bc494ca11e Initial load
duke
parents:
diff changeset
  1285
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
     * Attribute a parse tree.
31751
ec251536a004 8080880: some docs cleanup for langtools
avstepan
parents: 31506
diff changeset
  1287
     * @return the attributed parse tree
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1288
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1289
    public Env<AttrContext> attribute(Env<AttrContext> env) {
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1290
        if (compileStates.isDone(env, CompileState.ATTR))
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1291
            return env;
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1292
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1293
        if (verboseCompilePolicy)
6143
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 6031
diff changeset
  1294
            printNote("[attribute " + env.enclClass.sym + "]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1295
        if (verbose)
8630
cd9eefe597f6 6966736: javac verbose output is inconsistent
jjg
parents: 8624
diff changeset
  1296
            log.printVerbose("checking.attribution", env.enclClass.sym);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1297
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1298
        if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1299
            TaskEvent e = new TaskEvent(TaskEvent.Kind.ANALYZE, env.toplevel, env.enclClass.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1300
            taskListener.started(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1301
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1302
06bc494ca11e Initial load
duke
parents:
diff changeset
  1303
        JavaFileObject prev = log.useSource(
06bc494ca11e Initial load
duke
parents:
diff changeset
  1304
                                  env.enclClass.sym.sourcefile != null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1305
                                  env.enclClass.sym.sourcefile :
06bc494ca11e Initial load
duke
parents:
diff changeset
  1306
                                  env.toplevel.sourcefile);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1307
        try {
8845
42fb82dfbf52 6993311: annotations on packages are not validated
jjg
parents: 8630
diff changeset
  1308
            attr.attrib(env);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6582
diff changeset
  1309
            if (errorCount() > 0 && !shouldStop(CompileState.ATTR)) {
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6582
diff changeset
  1310
                //if in fail-over mode, ensure that AST expression nodes
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6582
diff changeset
  1311
                //are correctly initialized (e.g. they have a type/symbol)
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
  1312
                attr.postAttr(env.tree);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6582
diff changeset
  1313
            }
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1314
            compileStates.put(env, CompileState.ATTR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1315
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1316
        finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1317
            log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1318
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1319
06bc494ca11e Initial load
duke
parents:
diff changeset
  1320
        return env;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1321
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1322
06bc494ca11e Initial load
duke
parents:
diff changeset
  1323
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1324
     * Perform dataflow checks on attributed parse trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1325
     * These include checks for definite assignment and unreachable statements.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1326
     * If any errors occur, an empty list will be returned.
31751
ec251536a004 8080880: some docs cleanup for langtools
avstepan
parents: 31506
diff changeset
  1327
     * @return the list of attributed parse trees
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1328
     */
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1329
    public Queue<Env<AttrContext>> flow(Queue<Env<AttrContext>> envs) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1330
        ListBuffer<Env<AttrContext>> results = new ListBuffer<>();
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1331
        for (Env<AttrContext> env: envs) {
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1332
            flow(env, results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1333
        }
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1334
        return stopIfError(CompileState.FLOW, results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1335
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1336
06bc494ca11e Initial load
duke
parents:
diff changeset
  1337
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1338
     * Perform dataflow checks on an attributed parse tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1339
     */
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1340
    public Queue<Env<AttrContext>> flow(Env<AttrContext> env) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1341
        ListBuffer<Env<AttrContext>> results = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1342
        flow(env, results);
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1343
        return stopIfError(CompileState.FLOW, results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1344
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1345
06bc494ca11e Initial load
duke
parents:
diff changeset
  1346
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1347
     * Perform dataflow checks on an attributed parse tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1348
     */
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
  1349
    protected void flow(Env<AttrContext> env, Queue<Env<AttrContext>> results) {
24392
aca305440fb9 8040822: Duplicated notifications can be sent to TaskListener
jlahoda
parents: 24069
diff changeset
  1350
        if (compileStates.isDone(env, CompileState.FLOW)) {
aca305440fb9 8040822: Duplicated notifications can be sent to TaskListener
jlahoda
parents: 24069
diff changeset
  1351
            results.add(env);
aca305440fb9 8040822: Duplicated notifications can be sent to TaskListener
jlahoda
parents: 24069
diff changeset
  1352
            return;
aca305440fb9 8040822: Duplicated notifications can be sent to TaskListener
jlahoda
parents: 24069
diff changeset
  1353
        }
aca305440fb9 8040822: Duplicated notifications can be sent to TaskListener
jlahoda
parents: 24069
diff changeset
  1354
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1355
        try {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1356
            if (shouldStop(CompileState.FLOW))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1357
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1358
06bc494ca11e Initial load
duke
parents:
diff changeset
  1359
            if (verboseCompilePolicy)
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1360
                printNote("[flow " + env.enclClass.sym + "]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1361
            JavaFileObject prev = log.useSource(
06bc494ca11e Initial load
duke
parents:
diff changeset
  1362
                                                env.enclClass.sym.sourcefile != null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1363
                                                env.enclClass.sym.sourcefile :
06bc494ca11e Initial load
duke
parents:
diff changeset
  1364
                                                env.toplevel.sourcefile);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1365
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
                make.at(Position.FIRSTPOS);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1367
                TreeMaker localMake = make.forToplevel(env.toplevel);
6156
e15c221efaac 6970833: Try-with-resource implementation throws an NPE during Flow analysis
mcimadamore
parents: 6143
diff changeset
  1368
                flow.analyzeTree(env, localMake);
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1369
                compileStates.put(env, CompileState.FLOW);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1370
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1371
                if (shouldStop(CompileState.FLOW))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1372
                    return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1373
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
  1374
                results.add(env);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1375
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1376
            finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1377
                log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1378
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1379
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1380
        finally {
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1381
            if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1382
                TaskEvent e = new TaskEvent(TaskEvent.Kind.ANALYZE, env.toplevel, env.enclClass.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1383
                taskListener.finished(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1384
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1387
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1389
     * Prepare attributed parse trees, in conjunction with their attribution contexts,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
     * for source or code generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1391
     * If any errors occur, an empty list will be returned.
31751
ec251536a004 8080880: some docs cleanup for langtools
avstepan
parents: 31506
diff changeset
  1392
     * @return a list containing the classes to be generated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1393
     */
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1394
    public Queue<Pair<Env<AttrContext>, JCClassDecl>> desugar(Queue<Env<AttrContext>> envs) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1395
        ListBuffer<Pair<Env<AttrContext>, JCClassDecl>> results = new ListBuffer<>();
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1396
        for (Env<AttrContext> env: envs)
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1397
            desugar(env, results);
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1398
        return stopIfError(CompileState.FLOW, results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1399
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1400
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1401
    HashMap<Env<AttrContext>, Queue<Pair<Env<AttrContext>, JCClassDecl>>> desugaredEnvs = new HashMap<>();
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1402
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1403
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1404
     * Prepare attributed parse trees, in conjunction with their attribution contexts,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1405
     * for source or code generation. If the file was not listed on the command line,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1406
     * the current implicitSourcePolicy is taken into account.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1407
     * The preparation stops as soon as an error is found.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1408
     */
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1409
    protected void desugar(final Env<AttrContext> env, Queue<Pair<Env<AttrContext>, JCClassDecl>> results) {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1410
        if (shouldStop(CompileState.TRANSTYPES))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1411
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1412
06bc494ca11e Initial load
duke
parents:
diff changeset
  1413
        if (implicitSourcePolicy == ImplicitSourcePolicy.NONE
06bc494ca11e Initial load
duke
parents:
diff changeset
  1414
                && !inputFiles.contains(env.toplevel.sourcefile)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1415
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1416
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1417
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1418
        if (compileStates.isDone(env, CompileState.LOWER)) {
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1419
            results.addAll(desugaredEnvs.get(env));
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1420
            return;
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1421
        }
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1422
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1423
        /**
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1424
         * Ensure that superclasses of C are desugared before C itself. This is
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1425
         * required for two reasons: (i) as erasure (TransTypes) destroys
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1426
         * information needed in flow analysis and (ii) as some checks carried
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1427
         * out during lowering require that all synthetic fields/methods have
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1428
         * already been added to C and its superclasses.
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1429
         */
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1430
        class ScanNested extends TreeScanner {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1431
            Set<Env<AttrContext>> dependencies = new LinkedHashSet<>();
21497
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1432
            protected boolean hasLambdas;
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1433
            @Override
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1434
            public void visitClassDef(JCClassDecl node) {
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1435
                Type st = types.supertype(node.sym.type);
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1436
                boolean envForSuperTypeFound = false;
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1437
                while (!envForSuperTypeFound && st.hasTag(CLASS)) {
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1438
                    ClassSymbol c = st.tsym.outermostClass();
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1439
                    Env<AttrContext> stEnv = enter.getEnv(c);
1046
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1440
                    if (stEnv != null && env != stEnv) {
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1441
                        if (dependencies.add(stEnv)) {
21497
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1442
                            boolean prevHasLambdas = hasLambdas;
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1443
                            try {
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1444
                                scan(stEnv.tree);
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1445
                            } finally {
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1446
                                /*
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1447
                                 * ignore any updates to hasLambdas made during
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1448
                                 * the nested scan, this ensures an initalized
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1449
                                 * LambdaToMethod is available only to those
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1450
                                 * classes that contain lambdas
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1451
                                 */
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1452
                                hasLambdas = prevHasLambdas;
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1453
                            }
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1454
                        }
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1455
                        envForSuperTypeFound = true;
1046
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1456
                    }
16968
19f0da2d3143 8010659: Javac Crashes while building OpenJFX
vromero
parents: 15562
diff changeset
  1457
                    st = types.supertype(st);
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1458
                }
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1459
                super.visitClassDef(node);
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1460
            }
21497
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1461
            @Override
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1462
            public void visitLambda(JCLambda tree) {
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1463
                hasLambdas = true;
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1464
                super.visitLambda(tree);
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1465
            }
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1466
            @Override
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1467
            public void visitReference(JCMemberReference tree) {
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1468
                hasLambdas = true;
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1469
                super.visitReference(tree);
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1470
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1471
        }
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1472
        ScanNested scanner = new ScanNested();
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1473
        scanner.scan(env.tree);
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1474
        for (Env<AttrContext> dep: scanner.dependencies) {
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1475
        if (!compileStates.isDone(dep, CompileState.FLOW))
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1476
            desugaredEnvs.put(dep, desugar(flow(attribute(dep))));
936
1d395a623f16 6726015: JavaCompiler: replace desugarLater by compileStates
jjg
parents: 864
diff changeset
  1477
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1478
1046
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1479
        //We need to check for error another time as more classes might
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1480
        //have been attributed and analyzed at this stage
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1481
        if (shouldStop(CompileState.TRANSTYPES))
1046
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1482
            return;
e395ce284cbf 6734819: Javac performs flows analysis on already translated classes
mcimadamore
parents: 936
diff changeset
  1483
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1484
        if (verboseCompilePolicy)
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1485
            printNote("[desugar " + env.enclClass.sym + "]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1486
06bc494ca11e Initial load
duke
parents:
diff changeset
  1487
        JavaFileObject prev = log.useSource(env.enclClass.sym.sourcefile != null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1488
                                  env.enclClass.sym.sourcefile :
06bc494ca11e Initial load
duke
parents:
diff changeset
  1489
                                  env.toplevel.sourcefile);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1490
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1491
            //save tree prior to rewriting
06bc494ca11e Initial load
duke
parents:
diff changeset
  1492
            JCTree untranslated = env.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1493
06bc494ca11e Initial load
duke
parents:
diff changeset
  1494
            make.at(Position.FIRSTPOS);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1495
            TreeMaker localMake = make.forToplevel(env.toplevel);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1496
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1497
            if (env.tree.hasTag(JCTree.Tag.PACKAGEDEF) || env.tree.hasTag(JCTree.Tag.MODULEDEF)) {
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
  1498
                if (!(sourceOutput)) {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1499
                    if (shouldStop(CompileState.LOWER))
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1500
                        return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1501
                    List<JCTree> def = lower.translateTopLevelClass(env, env.tree, localMake);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1502
                    if (def.head != null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1503
                        Assert.check(def.tail.isEmpty());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1504
                        results.add(new Pair<>(env, (JCClassDecl)def.head));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1505
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1506
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1507
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1508
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1509
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1510
            if (shouldStop(CompileState.TRANSTYPES))
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1511
                return;
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1512
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1513
            env.tree = transTypes.translateTopLevelClass(env.tree, localMake);
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1514
            compileStates.put(env, CompileState.TRANSTYPES);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1515
21497
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1516
            if (source.allowLambda() && scanner.hasLambdas) {
18394
e7e0700732ad 8016607: javac, avoid analyzing lambdas for source 7 compilation
vromero
parents: 17582
diff changeset
  1517
                if (shouldStop(CompileState.UNLAMBDA))
e7e0700732ad 8016607: javac, avoid analyzing lambdas for source 7 compilation
vromero
parents: 17582
diff changeset
  1518
                    return;
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
  1519
21497
ad075a07ee79 8026936: Initialize LamdbaToMethod lazily and as required
ksrini
parents: 20617
diff changeset
  1520
                env.tree = LambdaToMethod.instance(context).translateTopLevelClass(env, env.tree, localMake);
18394
e7e0700732ad 8016607: javac, avoid analyzing lambdas for source 7 compilation
vromero
parents: 17582
diff changeset
  1521
                compileStates.put(env, CompileState.UNLAMBDA);
e7e0700732ad 8016607: javac, avoid analyzing lambdas for source 7 compilation
vromero
parents: 17582
diff changeset
  1522
            }
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
  1523
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1524
            if (shouldStop(CompileState.LOWER))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1525
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1526
06bc494ca11e Initial load
duke
parents:
diff changeset
  1527
            if (sourceOutput) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1528
                //emit standard Java source file, only for compilation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1529
                //units enumerated explicitly on the command line
06bc494ca11e Initial load
duke
parents:
diff changeset
  1530
                JCClassDecl cdef = (JCClassDecl)env.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1531
                if (untranslated instanceof JCClassDecl &&
06bc494ca11e Initial load
duke
parents:
diff changeset
  1532
                    rootClasses.contains((JCClassDecl)untranslated)) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1533
                    results.add(new Pair<>(env, cdef));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1534
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1535
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1536
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1537
06bc494ca11e Initial load
duke
parents:
diff changeset
  1538
            //translate out inner classes
06bc494ca11e Initial load
duke
parents:
diff changeset
  1539
            List<JCTree> cdefs = lower.translateTopLevelClass(env, env.tree, localMake);
3557
a803afefa115 6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
mcimadamore
parents: 3151
diff changeset
  1540
            compileStates.put(env, CompileState.LOWER);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1541
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1542
            if (shouldStop(CompileState.LOWER))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1543
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1544
06bc494ca11e Initial load
duke
parents:
diff changeset
  1545
            //generate code for each class
06bc494ca11e Initial load
duke
parents:
diff changeset
  1546
            for (List<JCTree> l = cdefs; l.nonEmpty(); l = l.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1547
                JCClassDecl cdef = (JCClassDecl)l.head;
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1548
                results.add(new Pair<>(env, cdef));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1549
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1550
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1551
        finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1552
            log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1553
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1554
06bc494ca11e Initial load
duke
parents:
diff changeset
  1555
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1556
06bc494ca11e Initial load
duke
parents:
diff changeset
  1557
    /** Generates the source or class file for a list of classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1558
     * The decision to generate a source file or a class file is
06bc494ca11e Initial load
duke
parents:
diff changeset
  1559
     * based upon the compiler's options.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1560
     * Generation stops if an error occurs while writing files.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1561
     */
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1562
    public void generate(Queue<Pair<Env<AttrContext>, JCClassDecl>> queue) {
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1563
        generate(queue, null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1564
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1565
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
  1566
    public void generate(Queue<Pair<Env<AttrContext>, JCClassDecl>> queue, Queue<JavaFileObject> results) {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1567
        if (shouldStop(CompileState.GENERATE))
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1568
            return;
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1569
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1570
        for (Pair<Env<AttrContext>, JCClassDecl> x: queue) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1571
            Env<AttrContext> env = x.fst;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1572
            JCClassDecl cdef = x.snd;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1573
06bc494ca11e Initial load
duke
parents:
diff changeset
  1574
            if (verboseCompilePolicy) {
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
  1575
                printNote("[generate " + (sourceOutput ? " source" : "code") + " " + cdef.sym + "]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1576
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1577
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1578
            if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1579
                TaskEvent e = new TaskEvent(TaskEvent.Kind.GENERATE, env.toplevel, cdef.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1580
                taskListener.started(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1581
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1582
06bc494ca11e Initial load
duke
parents:
diff changeset
  1583
            JavaFileObject prev = log.useSource(env.enclClass.sym.sourcefile != null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1584
                                      env.enclClass.sym.sourcefile :
06bc494ca11e Initial load
duke
parents:
diff changeset
  1585
                                      env.toplevel.sourcefile);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1586
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1587
                JavaFileObject file;
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
  1588
                if (sourceOutput) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1589
                    file = printSource(env, cdef);
36153
ed5063b304be 8149600: javac, remove unused options, step 2
vromero
parents: 35810
diff changeset
  1590
                } else {
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
  1591
                    if (fileManager.hasLocation(StandardLocation.NATIVE_HEADER_OUTPUT)
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
  1592
                            && jniWriter.needsHeader(cdef.sym)) {
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
  1593
                        jniWriter.write(cdef.sym);
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
  1594
                    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1595
                    file = genCode(env, cdef);
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 12016
diff changeset
  1596
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1597
                if (results != null && file != null)
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1260
diff changeset
  1598
                    results.add(file);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1599
            } catch (IOException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1600
                log.error(cdef.pos(), "class.cant.write",
06bc494ca11e Initial load
duke
parents:
diff changeset
  1601
                          cdef.sym, ex.getMessage());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1602
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1603
            } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1604
                log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1605
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1606
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11867
diff changeset
  1607
            if (!taskListener.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1608
                TaskEvent e = new TaskEvent(TaskEvent.Kind.GENERATE, env.toplevel, cdef.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1609
                taskListener.finished(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1610
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1611
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1612
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1613
06bc494ca11e Initial load
duke
parents:
diff changeset
  1614
        // where
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1615
        Map<JCCompilationUnit, Queue<Env<AttrContext>>> groupByFile(Queue<Env<AttrContext>> envs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1616
            // use a LinkedHashMap to preserve the order of the original list as much as possible
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1617
            Map<JCCompilationUnit, Queue<Env<AttrContext>>> map = new LinkedHashMap<>();
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1618
            for (Env<AttrContext> env: envs) {
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1619
                Queue<Env<AttrContext>> sublist = map.get(env.toplevel);
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1620
                if (sublist == null) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
  1621
                    sublist = new ListBuffer<>();
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1622
                    map.put(env.toplevel, sublist);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1623
                }
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
  1624
                sublist.add(env);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1625
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1626
            return map;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1627
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1628
06bc494ca11e Initial load
duke
parents:
diff changeset
  1629
        JCClassDecl removeMethodBodies(JCClassDecl cdef) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1630
            final boolean isInterface = (cdef.mods.flags & Flags.INTERFACE) != 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1631
            class MethodBodyRemover extends TreeTranslator {
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1632
                @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1633
                public void visitMethodDef(JCMethodDecl tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1634
                    tree.mods.flags &= ~Flags.SYNCHRONIZED;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1635
                    for (JCVariableDecl vd : tree.params)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1636
                        vd.mods.flags &= ~Flags.FINAL;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1637
                    tree.body = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1638
                    super.visitMethodDef(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1639
                }
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1640
                @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1641
                public void visitVarDef(JCVariableDecl tree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1642
                    if (tree.init != null && tree.init.type.constValue() == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1643
                        tree.init = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1644
                    super.visitVarDef(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1645
                }
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1646
                @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1647
                public void visitClassDef(JCClassDecl tree) {
20249
93f8eae31092 6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
alundblad
parents: 19921
diff changeset
  1648
                    ListBuffer<JCTree> newdefs = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1649
                    for (List<JCTree> it = tree.defs; it.tail != null; it = it.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1650
                        JCTree t = it.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1651
                        switch (t.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10637
diff changeset
  1652
                        case CLASSDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1653
                            if (isInterface ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1654
                                (((JCClassDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1655
                                (((JCClassDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCClassDecl) t).sym.packge().getQualifiedName() == names.java_lang)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1656
                                newdefs.append(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1657
                            break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10637
diff changeset
  1658
                        case METHODDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1659
                            if (isInterface ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1660
                                (((JCMethodDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1661
                                ((JCMethodDecl) t).sym.name == names.init ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1662
                                (((JCMethodDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCMethodDecl) t).sym.packge().getQualifiedName() == names.java_lang)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1663
                                newdefs.append(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1664
                            break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10637
diff changeset
  1665
                        case VARDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1666
                            if (isInterface || (((JCVariableDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1667
                                (((JCVariableDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCVariableDecl) t).sym.packge().getQualifiedName() == names.java_lang)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1668
                                newdefs.append(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1669
                            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1670
                        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1671
                            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1672
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1673
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1674
                    tree.defs = newdefs.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1675
                    super.visitClassDef(tree);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1676
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1677
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1678
            MethodBodyRemover r = new MethodBodyRemover();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1679
            return r.translate(cdef);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1680
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1681
06bc494ca11e Initial load
duke
parents:
diff changeset
  1682
    public void reportDeferredDiagnostics() {
8624
7db12f12a04e 6986892: confusing warning given after errors in annotation processing
jjg
parents: 8623
diff changeset
  1683
        if (errorCount() == 0
7db12f12a04e 6986892: confusing warning given after errors in annotation processing
jjg
parents: 8623
diff changeset
  1684
                && annotationProcessingOccurred
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1685
                && implicitSourceFilesRead
06bc494ca11e Initial load
duke
parents:
diff changeset
  1686
                && implicitSourcePolicy == ImplicitSourcePolicy.UNSET) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1687
            if (explicitAnnotationProcessingRequested())
06bc494ca11e Initial load
duke
parents:
diff changeset
  1688
                log.warning("proc.use.implicit");
06bc494ca11e Initial load
duke
parents:
diff changeset
  1689
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
  1690
                log.warning("proc.use.proc.or.implicit");
06bc494ca11e Initial load
duke
parents:
diff changeset
  1691
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1692
        chk.reportDeferredDiagnostics();
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1693
        if (log.compressedOutput) {
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1694
            log.mandatoryNote(null, "compressed.diags");
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1695
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1696
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1697
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1698
    public boolean isEnterDone() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1699
        return enterDone;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1700
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
  1701
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1702
    /** Close the compiler, flushing the logs
06bc494ca11e Initial load
duke
parents:
diff changeset
  1703
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1704
    public void close() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1705
        rootClasses = null;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 24392
diff changeset
  1706
        finder = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1707
        reader = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1708
        make = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1709
        writer = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1710
        enter = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1711
        if (todo != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1712
            todo.clear();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1713
        todo = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1714
        parserFactory = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1715
        syms = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1716
        source = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1717
        attr = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1718
        chk = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1719
        gen = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1720
        flow = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1721
        transTypes = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1722
        lower = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1723
        annotate = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1724
        types = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1725
06bc494ca11e Initial load
duke
parents:
diff changeset
  1726
        log.flush();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1727
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1728
            fileManager.flush();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1729
        } catch (IOException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1730
            throw new Abort(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1731
        } finally {
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1732
            if (names != null)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1733
                names.dispose();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1734
            names = null;
10637
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1735
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1736
            for (Closeable c: closeables) {
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1737
                try {
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1738
                    c.close();
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1739
                } catch (IOException e) {
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1740
                    // When javac uses JDK 7 as a baseline, this code would be
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1741
                    // better written to set any/all exceptions from all the
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1742
                    // Closeables as suppressed exceptions on the FatalError
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1743
                    // that is thrown.
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1744
                    JCDiagnostic msg = diagFactory.fragment("fatal.err.cant.close");
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1745
                    throw new FatalError(msg, e);
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1746
                }
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 8851
diff changeset
  1747
            }
17551
03f330c02d97 8004082: test/tools/javac/plugin/showtype/Test.java fails on windows: jtreg can't delete plugin.jar
jjg
parents: 16968
diff changeset
  1748
            closeables = List.nil();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1749
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1750
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1751
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1752
    protected void printNote(String lines) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
  1753
        log.printRawLines(Log.WriterKind.NOTICE, lines);
2514
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1754
    }
f8929e3790b4 6813059: replace use of JavaCompiler.errorCount with shouldContinue
jjg
parents: 2212
diff changeset
  1755
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1756
    /** Print numbers of errors and warnings.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1757
     */
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14801
diff changeset
  1758
    public void printCount(String kind, int count) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1759
        if (count != 0) {
6143
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 6031
diff changeset
  1760
            String key;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1761
            if (count == 1)
6143
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 6031
diff changeset
  1762
                key = "count." + kind;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1763
            else
6143
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 6031
diff changeset
  1764
                key = "count." + kind + ".plural";
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
  1765
            log.printLines(WriterKind.ERROR, key, String.valueOf(count));
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10950
diff changeset
  1766
            log.flush(Log.WriterKind.ERROR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1767
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1768
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1769
06bc494ca11e Initial load
duke
parents:
diff changeset
  1770
    private static long now() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1771
        return System.currentTimeMillis();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1772
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1773
06bc494ca11e Initial load
duke
parents:
diff changeset
  1774
    private static long elapsed(long then) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1775
        return now() - then;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1776
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1777
23810
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1778
    public void newRound() {
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1779
        inputFiles.clear();
b92eb80925f0 8038455: Use single Context for all rounds of annotation processing
jlahoda
parents: 23115
diff changeset
  1780
        todo.clear();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1781
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1782
}