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