langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symtab.java
author zmajo
Thu, 24 Mar 2016 16:21:21 +0100
changeset 36996 2c3a5307865f
parent 36995 e19153419efd
parent 36526 3b41f1c69604
child 37744 bf4fd5e022c5
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
     2
 * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3555
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: 3555
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: 3555
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3555
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3555
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.code;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    28
import java.util.Collection;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    29
import java.util.Collections;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    30
import java.util.HashMap;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    31
import java.util.LinkedHashMap;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    32
import java.util.Map;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    34
import javax.lang.model.element.ElementVisitor;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    35
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
    36
import com.sun.tools.javac.code.Scope.WriteableScope;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    37
import com.sun.tools.javac.code.Symbol.ClassSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    38
import com.sun.tools.javac.code.Symbol.Completer;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    39
import com.sun.tools.javac.code.Symbol.CompletionFailure;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    40
import com.sun.tools.javac.code.Symbol.MethodSymbol;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    41
import com.sun.tools.javac.code.Symbol.ModuleSymbol;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    42
import com.sun.tools.javac.code.Symbol.PackageSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    43
import com.sun.tools.javac.code.Symbol.TypeSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    44
import com.sun.tools.javac.code.Symbol.VarSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    45
import com.sun.tools.javac.code.Type.BottomType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    46
import com.sun.tools.javac.code.Type.ClassType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    47
import com.sun.tools.javac.code.Type.ErrorType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    48
import com.sun.tools.javac.code.Type.JCPrimitiveType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    49
import com.sun.tools.javac.code.Type.JCVoidType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    50
import com.sun.tools.javac.code.Type.MethodType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    51
import com.sun.tools.javac.code.Type.UnknownType;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    52
import com.sun.tools.javac.comp.Modules;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    53
import com.sun.tools.javac.util.Assert;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    54
import com.sun.tools.javac.util.Context;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    55
import com.sun.tools.javac.util.Convert;
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    56
import com.sun.tools.javac.util.DefinedBy;
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    57
import com.sun.tools.javac.util.DefinedBy.Api;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    58
import com.sun.tools.javac.util.Iterators;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    59
import com.sun.tools.javac.util.JavacMessages;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    60
import com.sun.tools.javac.util.List;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    61
import com.sun.tools.javac.util.Name;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    62
import com.sun.tools.javac.util.Names;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
    63
import com.sun.tools.javac.util.Options;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    64
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    65
import static com.sun.tools.javac.code.Flags.*;
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26266
diff changeset
    66
import static com.sun.tools.javac.code.Kinds.Kind.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    67
import static com.sun.tools.javac.code.TypeTag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
/** A class that defines all predefined constants and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
 *  as well as special classes such as java.lang.Object, which need
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
 *  to be known to the compiler. All symbols are held in instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
 *  fields. This makes it possible to work in multiple concurrent
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
 *  projects, which might use different class files for library classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    75
 *  <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
    76
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
public class Symtab {
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    /** The context key for the symbol table. */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 18646
diff changeset
    82
    protected static final Context.Key<Symtab> symtabKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    /** Get the symbol table instance. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    public static Symtab instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        Symtab instance = context.get(symtabKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
            instance = new Symtab(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    /** Builtin types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     */
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    94
    public final JCPrimitiveType byteType = new JCPrimitiveType(BYTE, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    95
    public final JCPrimitiveType charType = new JCPrimitiveType(CHAR, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    96
    public final JCPrimitiveType shortType = new JCPrimitiveType(SHORT, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    97
    public final JCPrimitiveType intType = new JCPrimitiveType(INT, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    98
    public final JCPrimitiveType longType = new JCPrimitiveType(LONG, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    99
    public final JCPrimitiveType floatType = new JCPrimitiveType(FLOAT, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   100
    public final JCPrimitiveType doubleType = new JCPrimitiveType(DOUBLE, null);
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   101
    public final JCPrimitiveType booleanType = new JCPrimitiveType(BOOLEAN, null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    public final Type botType = new BottomType();
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   103
    public final JCVoidType voidType = new JCVoidType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   105
    private final Names names;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   106
    private final JavacMessages messages;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   107
    private final Completer initialCompleter;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   108
    private final Completer moduleCompleter;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   109
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   110
    /** A symbol for the unnamed module.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   111
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   112
    public final ModuleSymbol unnamedModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   113
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   114
    /** The error module.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   115
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   116
    public final ModuleSymbol errModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   117
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   118
    /** A symbol for no module, for use with -source 8 or less
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   119
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   120
    public final ModuleSymbol noModule;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /** A symbol for the root package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public final PackageSymbol rootPackage;
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    /** A symbol that stands for a missing symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    public final TypeSymbol noSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    /** The error symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    public final ClassSymbol errSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   134
    /** The unknown symbol.
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   135
     */
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   136
    public final ClassSymbol unknownSymbol;
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   137
1257
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1037
diff changeset
   138
    /** A value for the errType, with a originalType of noType */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    public final Type errType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    /** A value for the unknown type. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    public final Type unknownType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    /** The builtin type of all arrays. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    public final ClassSymbol arrayClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    public final MethodSymbol arrayCloneMethod;
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    /** VGJ: The (singleton) type of all bound types. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    public final ClassSymbol boundClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    /** The builtin type of all methods. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public final ClassSymbol methodClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   154
    /** A symbol for the java.base module.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   155
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   156
    public final ModuleSymbol java_base;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   157
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    /** Predefined types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    public final Type objectType;
29295
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 29294
diff changeset
   161
    public final Type objectsType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    public final Type classType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    public final Type classLoaderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    public final Type stringType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public final Type stringBufferType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public final Type stringBuilderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    public final Type cloneableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    public final Type serializableType;
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   169
    public final Type serializedLambdaType;
36995
e19153419efd 8149644: Integrate VarHandles
psandoz
parents: 35424
diff changeset
   170
    public final Type varHandleType;
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 1471
diff changeset
   171
    public final Type methodHandleType;
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   172
    public final Type methodHandleLookupType;
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   173
    public final Type methodTypeType;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   174
    public final Type nativeHeaderType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    public final Type throwableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public final Type errorType;
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   177
    public final Type interruptedExceptionType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public final Type illegalArgumentExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    public final Type exceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public final Type runtimeExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    public final Type classNotFoundExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    public final Type noClassDefFoundErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    public final Type noSuchFieldErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
    public final Type assertionErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    public final Type cloneNotSupportedExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public final Type annotationType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    public final TypeSymbol enumSym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    public final Type listType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    public final Type collectionsType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    public final Type comparableType;
16333
a6e1ded87200 8009138: javac, equals-hashCode warning tuning
vromero
parents: 16316
diff changeset
   191
    public final Type comparatorType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    public final Type arraysType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    public final Type iterableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    public final Type iteratorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public final Type annotationTargetType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    public final Type overrideType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    public final Type retentionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    public final Type deprecatedType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
    public final Type suppressWarningsType;
29294
376a915b4ff0 8073645: Add lambda-based lazy eval versions of Assert.check methods
mcimadamore
parents: 29051
diff changeset
   200
    public final Type supplierType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    public final Type inheritedType;
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   202
    public final Type profileType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    public final Type proprietaryType;
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   204
    public final Type systemType;
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   205
    public final Type autoCloseableType;
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   206
    public final Type trustMeType;
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   207
    public final Type lambdaMetafactory;
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 30066
diff changeset
   208
    public final Type stringConcatFactory;
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14539
diff changeset
   209
    public final Type repeatableType;
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   210
    public final Type documentedType;
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   211
    public final Type elementTypeType;
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   212
    public final Type functionalInterfaceType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    /** The symbol representing the length field of an array.
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    public final VarSymbol lengthVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    /** The symbol representing the final finalize method on enums */
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    public final MethodSymbol enumFinalFinalize;
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   221
    /** The symbol representing the close method on TWR AutoCloseable type */
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   222
    public final MethodSymbol autoCloseableClose;
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   223
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    /** The predefined type that belongs to a tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     */
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   226
    public final Type[] typeOfTag = new Type[TypeTag.getTypeTagCount()];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   228
    /** The name of the class that belongs to a basic type tag.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     */
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   230
    public final Name[] boxedName = new Name[TypeTag.getTypeTagCount()];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
    /** A hashtable containing the encountered top-level and member classes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     *  indexed by flat names. The table does not contain local classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
     *  It should be updated from the outside to reflect classes defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   237
    private final Map<Name, Map<ModuleSymbol,ClassSymbol>> classes = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    /** A hashtable containing the encountered packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
     *  the table should be updated from outside to reflect packages defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   243
    private final Map<Name, Map<ModuleSymbol,PackageSymbol>> packages = new HashMap<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   244
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   245
    /** A hashtable giving the encountered modules.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   246
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   247
    private final Map<Name, ModuleSymbol> modules = new LinkedHashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    public void initType(Type type, ClassSymbol c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
        type.tsym = c;
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   251
        typeOfTag[type.getTag().ordinal()] = type;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
    public void initType(Type type, String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        initType(
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            new ClassSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                PUBLIC, names.fromString(name), type, rootPackage));
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    public void initType(Type type, String name, String bname) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        initType(type, name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   263
        boxedName[type.getTag().ordinal()] = names.fromString("java.lang." + bname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    /** The class symbol that owns all predefined symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
    public final ClassSymbol predefClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    /** Enter a class into symbol table.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   271
     *  @param s The name of the class.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
    private Type enterClass(String s) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   274
        return enterClass(java_base, names.fromString(s)).type;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   277
    public void synthesizeEmptyInterfaceIfMissing(final Type type) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   278
        final Completer completer = type.tsym.completer;
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   279
        type.tsym.completer = new Completer() {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   280
            @Override
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   281
            public void complete(Symbol sym) throws CompletionFailure {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   282
                try {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   283
                    completer.complete(sym);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   284
                } catch (CompletionFailure e) {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   285
                    sym.flags_field |= (PUBLIC | INTERFACE);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   286
                    ((ClassType) sym.type).supertype_field = objectType;
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   287
                }
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   288
            }
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   289
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   290
            @Override
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   291
            public boolean isTerminal() {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   292
                return completer.isTerminal();
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   293
            }
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   294
        };
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   295
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   296
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   297
    public void synthesizeBoxTypeIfMissing(final Type type) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   298
        ClassSymbol sym = enterClass(java_base, boxedName[type.getTag().ordinal()]);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   299
        final Completer completer = sym.completer;
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   300
        sym.completer = new Completer() {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   301
            @Override
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   302
            public void complete(Symbol sym) throws CompletionFailure {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   303
                try {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   304
                    completer.complete(sym);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   305
                } catch (CompletionFailure e) {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   306
                    sym.flags_field |= PUBLIC;
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   307
                    ((ClassType) sym.type).supertype_field = objectType;
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   308
                    MethodSymbol boxMethod =
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   309
                        new MethodSymbol(PUBLIC | STATIC, names.valueOf,
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   310
                                         new MethodType(List.of(type), sym.type,
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   311
                                List.<Type>nil(), methodClass),
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   312
                            sym);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   313
                    sym.members().enter(boxMethod);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   314
                    MethodSymbol unboxMethod =
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   315
                        new MethodSymbol(PUBLIC,
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   316
                            type.tsym.name.append(names.Value), // x.intValue()
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   317
                            new MethodType(List.<Type>nil(), type,
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   318
                                List.<Type>nil(), methodClass),
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   319
                            sym);
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   320
                    sym.members().enter(unboxMethod);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   321
                }
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   322
            }
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   323
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   324
            @Override
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   325
            public boolean isTerminal() {
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   326
                return completer.isTerminal();
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   327
            }
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   328
        };
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   329
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   330
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   331
    // Enter a synthetic class that is used to mark classes in ct.sym.
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   332
    // This class does not have a class file.
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   333
    private Type enterSyntheticAnnotation(String name) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   334
        // for now, leave the module null, to prevent problems from synthesizing the
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   335
        // existence of a class in any specific module, including noModule
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   336
        ClassType type = (ClassType)enterClass(java_base, names.fromString(name)).type;
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   337
        ClassSymbol sym = (ClassSymbol)type.tsym;
30066
d74c06a92bd8 8078600: Infinite loop when compiling annotations with -XDcompletionDeps
alundblad
parents: 29295
diff changeset
   338
        sym.completer = Completer.NULL_COMPLETER;
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   339
        sym.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   340
        sym.erasure_field = type;
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   341
        sym.members_field = WriteableScope.create(sym);
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   342
        type.typarams_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   343
        type.allparams_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   344
        type.supertype_field = annotationType;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   345
        type.interfaces_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   346
        return type;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   347
    }
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   348
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
    /** Constructor; enters all predefined identifiers and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     *  into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    protected Symtab(Context context) throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        context.put(symtabKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   355
        names = Names.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        // Create the unknown type
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   358
        unknownType = new UnknownType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   360
        messages = JavacMessages.instance(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   361
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
        rootPackage = new PackageSymbol(names.empty, null);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   363
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   364
        // create the basic builtin symbols
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   365
        unnamedModule = new ModuleSymbol(names.empty, null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   366
                @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
                public String toString() {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   368
                    return messages.getLocalizedString("compiler.misc.unnamed.module");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
            };
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   371
        addRootPackageFor(unnamedModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   372
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   373
        errModule = new ModuleSymbol(names.empty, null) { };
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   374
        addRootPackageFor(errModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   375
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   376
        noModule = new ModuleSymbol(names.empty, null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   377
            @Override public boolean isNoModule() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   378
                return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   379
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   380
        };
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   381
        addRootPackageFor(noModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   382
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 26266
diff changeset
   383
        noSymbol = new TypeSymbol(NIL, 0, names.empty, Type.noType, rootPackage) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   384
            @Override @DefinedBy(Api.LANGUAGE_MODEL)
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   385
            public <R, P> R accept(ElementVisitor<R, P> v, P p) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   386
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   387
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   388
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
        // create the error symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        errSymbol = new ClassSymbol(PUBLIC|STATIC|ACYCLIC, names.any, null, rootPackage);
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   392
        errType = new ErrorType(errSymbol, Type.noType);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   393
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   394
        unknownSymbol = new ClassSymbol(PUBLIC|STATIC|ACYCLIC, names.fromString("<any?>"), null, rootPackage);
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   395
        unknownSymbol.members_field = new Scope.ErrorScope(unknownSymbol);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   396
        unknownSymbol.type = unknownType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
        // initialize builtin types
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
        initType(byteType, "byte", "Byte");
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
        initType(shortType, "short", "Short");
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
        initType(charType, "char", "Character");
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        initType(intType, "int", "Integer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        initType(longType, "long", "Long");
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
        initType(floatType, "float", "Float");
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        initType(doubleType, "double", "Double");
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        initType(booleanType, "boolean", "Boolean");
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
        initType(voidType, "void", "Void");
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
        initType(botType, "<nulltype>");
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
        initType(errType, errSymbol);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   410
        initType(unknownType, unknownSymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        // the builtin class of all arrays
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
        arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        // VGJ
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        boundClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Bound, noSymbol);
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   417
        boundClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        // the builtin class of all methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        methodClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Method, noSymbol);
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   421
        methodClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
        // Create class to hold all predefined constants and operations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        predefClass = new ClassSymbol(PUBLIC|ACYCLIC, names.empty, rootPackage);
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   425
        WriteableScope scope = WriteableScope.create(predefClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
        predefClass.members_field = scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22442
diff changeset
   428
        // Get the initial completer for Symbols from the ClassFinder
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22442
diff changeset
   429
        initialCompleter = ClassFinder.instance(context).getCompleter();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   430
        rootPackage.members_field = WriteableScope.create(rootPackage);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   431
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        // Enter symbols for basic types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        scope.enter(byteType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        scope.enter(shortType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        scope.enter(charType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
        scope.enter(intType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
        scope.enter(longType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
        scope.enter(floatType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
        scope.enter(doubleType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
        scope.enter(booleanType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        scope.enter(errType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
1257
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1037
diff changeset
   443
        // Enter symbol for the errSymbol
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1037
diff changeset
   444
        scope.enter(errSymbol);
873b053bf757 6557752: Original type of an AST should be made available even if it is replaced with an ErrorType
jjg
parents: 1037
diff changeset
   445
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   446
        Source source = Source.instance(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   447
        Options options = Options.instance(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   448
        boolean noModules = options.isSet("noModules");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   449
        if (source.allowModules() && !noModules) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   450
            java_base = enterModule(names.java_base);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   451
            //avoid completing java.base during the Symtab initialization
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   452
            java_base.completer = Completer.NULL_COMPLETER;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   453
            java_base.visiblePackages = Collections.emptyMap();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   454
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   455
            java_base = noModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   456
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   458
        // Get the initial completer for ModuleSymbols from Modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   459
        moduleCompleter = Modules.instance(context).getCompleter();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   460
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   461
        // Enter predefined classes. All are assumed to be in the java.base module.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
        objectType = enterClass("java.lang.Object");
29295
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 29294
diff changeset
   463
        objectsType = enterClass("java.util.Objects");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        classType = enterClass("java.lang.Class");
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        stringType = enterClass("java.lang.String");
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        stringBufferType = enterClass("java.lang.StringBuffer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
        stringBuilderType = enterClass("java.lang.StringBuilder");
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
        cloneableType = enterClass("java.lang.Cloneable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        throwableType = enterClass("java.lang.Throwable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        serializableType = enterClass("java.io.Serializable");
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   471
        serializedLambdaType = enterClass("java.lang.invoke.SerializedLambda");
36995
e19153419efd 8149644: Integrate VarHandles
psandoz
parents: 35424
diff changeset
   472
        varHandleType = enterClass("java.lang.invoke.VarHandle");
8241
4161b56e0d20 7017414: before the move of JSR 292 to package java.lang.invoke, javac must recognize the new package
mcimadamore
parents: 8036
diff changeset
   473
        methodHandleType = enterClass("java.lang.invoke.MethodHandle");
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   474
        methodHandleLookupType = enterClass("java.lang.invoke.MethodHandles$Lookup");
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   475
        methodTypeType = enterClass("java.lang.invoke.MethodType");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
        errorType = enterClass("java.lang.Error");
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
        illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   478
        interruptedExceptionType = enterClass("java.lang.InterruptedException");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
        exceptionType = enterClass("java.lang.Exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
        runtimeExceptionType = enterClass("java.lang.RuntimeException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
        noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
        noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
        assertionErrorType = enterClass("java.lang.AssertionError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
        cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
        annotationType = enterClass("java.lang.annotation.Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
        classLoaderType = enterClass("java.lang.ClassLoader");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   488
        enumSym = enterClass(java_base, names.java_lang_Enum);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
        enumFinalFinalize =
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
            new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
                             names.finalize,
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
                             new MethodType(List.<Type>nil(), voidType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
                                            List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
                             enumSym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        listType = enterClass("java.util.List");
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        collectionsType = enterClass("java.util.Collections");
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
        comparableType = enterClass("java.lang.Comparable");
16333
a6e1ded87200 8009138: javac, equals-hashCode warning tuning
vromero
parents: 16316
diff changeset
   498
        comparatorType = enterClass("java.util.Comparator");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
        arraysType = enterClass("java.util.Arrays");
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25443
diff changeset
   500
        iterableType = enterClass("java.lang.Iterable");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
        iteratorType = enterClass("java.util.Iterator");
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        annotationTargetType = enterClass("java.lang.annotation.Target");
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
        overrideType = enterClass("java.lang.Override");
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        retentionType = enterClass("java.lang.annotation.Retention");
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
        deprecatedType = enterClass("java.lang.Deprecated");
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
        suppressWarningsType = enterClass("java.lang.SuppressWarnings");
29294
376a915b4ff0 8073645: Add lambda-based lazy eval versions of Assert.check methods
mcimadamore
parents: 29051
diff changeset
   507
        supplierType = enterClass("java.util.function.Supplier");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
        inheritedType = enterClass("java.lang.annotation.Inherited");
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14539
diff changeset
   509
        repeatableType = enterClass("java.lang.annotation.Repeatable");
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   510
        documentedType = enterClass("java.lang.annotation.Documented");
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   511
        elementTypeType = enterClass("java.lang.annotation.ElementType");
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   512
        systemType = enterClass("java.lang.System");
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   513
        autoCloseableType = enterClass("java.lang.AutoCloseable");
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   514
        autoCloseableClose = new MethodSymbol(PUBLIC,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   515
                             names.close,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   516
                             new MethodType(List.<Type>nil(), voidType,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   517
                                            List.of(exceptionType), methodClass),
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   518
                             autoCloseableType.tsym);
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   519
        trustMeType = enterClass("java.lang.SafeVarargs");
14539
507556c4e622 8003412: javac needs to understand java.lang.annotation.Native
jjg
parents: 14365
diff changeset
   520
        nativeHeaderType = enterClass("java.lang.annotation.Native");
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   521
        lambdaMetafactory = enterClass("java.lang.invoke.LambdaMetafactory");
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 30066
diff changeset
   522
        stringConcatFactory = enterClass("java.lang.invoke.StringConcatFactory");
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   523
        functionalInterfaceType = enterClass("java.lang.FunctionalInterface");
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   524
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   525
        synthesizeEmptyInterfaceIfMissing(autoCloseableType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   526
        synthesizeEmptyInterfaceIfMissing(cloneableType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   527
        synthesizeEmptyInterfaceIfMissing(serializableType);
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   528
        synthesizeEmptyInterfaceIfMissing(lambdaMetafactory);
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   529
        synthesizeEmptyInterfaceIfMissing(serializedLambdaType);
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 30066
diff changeset
   530
        synthesizeEmptyInterfaceIfMissing(stringConcatFactory);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   531
        synthesizeBoxTypeIfMissing(doubleType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   532
        synthesizeBoxTypeIfMissing(floatType);
3555
a6fd77fe81df 6390045: Unexpected error "cannot access java.lang.Void" with '-target cldc1.0' with -source >=1.5
mcimadamore
parents: 2723
diff changeset
   533
        synthesizeBoxTypeIfMissing(voidType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5847
diff changeset
   535
        // Enter a synthetic class that is used to mark internal
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        // proprietary classes in ct.sym.  This class does not have a
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
        // class file.
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   538
        proprietaryType = enterSyntheticAnnotation("sun.Proprietary+Annotation");
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   539
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   540
        // Enter a synthetic class that is used to provide profile info for
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   541
        // classes in ct.sym.  This class does not have a class file.
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   542
        profileType = enterSyntheticAnnotation("jdk.Profile+Annotation");
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   543
        MethodSymbol m = new MethodSymbol(PUBLIC | ABSTRACT, names.value, intType, profileType.tsym);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   544
        profileType.tsym.members().enter(m);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
        // Enter a class for arrays.
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
        // The class implements java.lang.Cloneable and java.io.Serializable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
        // It has a final length field and a clone method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
        ClassType arrayClassType = (ClassType)arrayClass.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
        arrayClassType.supertype_field = objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        arrayClassType.interfaces_field = List.of(cloneableType, serializableType);
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   552
        arrayClass.members_field = WriteableScope.create(arrayClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
        lengthVar = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
            PUBLIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
            names.length,
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
            intType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        arrayClass.members().enter(lengthVar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
        arrayCloneMethod = new MethodSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
            PUBLIC,
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
            names.clone,
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
            new MethodType(List.<Type>nil(), objectType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
                           List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
        arrayClass.members().enter(arrayCloneMethod);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   566
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   567
        if (java_base != noModule)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   568
            java_base.completer = sym -> moduleCompleter.complete(sym); //bootstrap issues
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   569
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
    }
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   571
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   572
    /** Define a new class given its name and owner.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   573
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   574
    public ClassSymbol defineClass(Name name, Symbol owner) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   575
        ClassSymbol c = new ClassSymbol(0, name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   576
        c.completer = initialCompleter;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   577
        return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   578
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   579
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   580
    /** Create a new toplevel or member class symbol with given name
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   581
     *  and owner and enter in `classes' unless already there.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   582
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   583
    public ClassSymbol enterClass(ModuleSymbol msym, Name name, TypeSymbol owner) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   584
        Assert.checkNonNull(msym);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   585
        Name flatname = TypeSymbol.formFlatName(name, owner);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   586
        ClassSymbol c = getClass(msym, flatname);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   587
        if (c == null) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   588
            c = defineClass(name, owner);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   589
            doEnterClass(msym, c);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   590
        } else if ((c.name != name || c.owner != owner) && owner.kind == TYP && c.owner.kind == PCK) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   591
            // reassign fields of classes that might have been loaded with
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   592
            // their flat names.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   593
            c.owner.members().remove(c);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   594
            c.name = name;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   595
            c.owner = owner;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   596
            c.fullname = ClassSymbol.formFullName(name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   597
        }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   598
        return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   599
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   600
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   601
    public ClassSymbol getClass(ModuleSymbol msym, Name flatName) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   602
        Assert.checkNonNull(msym, () -> flatName.toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   603
        return classes.getOrDefault(flatName, Collections.emptyMap()).get(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   604
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   605
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   606
    public PackageSymbol lookupPackage(ModuleSymbol msym, Name flatName) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   607
        Assert.checkNonNull(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   608
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   609
        if (flatName.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   610
            //unnamed packages only from the current module - visiblePackages contains *root* package, not unnamed package!
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   611
            return msym.unnamedPackage;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   612
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   613
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   614
        if (msym == noModule) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   615
            return enterPackage(msym, flatName);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   616
        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   617
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   618
        msym.complete();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   619
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   620
        PackageSymbol pack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   621
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   622
        pack = msym.visiblePackages.get(flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   623
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   624
        if (pack != null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   625
            return pack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   626
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   627
        pack = getPackage(msym, flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   628
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   629
        if (pack != null && pack.exists())
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   630
            return pack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   631
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   632
        boolean dependsOnUnnamed = msym.requires != null &&
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   633
                                   msym.requires.stream()
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   634
                                                .map(rd -> rd.module)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   635
                                                .anyMatch(mod -> mod == unnamedModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   636
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   637
        if (dependsOnUnnamed) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   638
            //msyms depends on the unnamed module, for which we generally don't know
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   639
            //the list of packages it "exports" ahead of time. So try to lookup the package in the
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   640
            //current module, and in the unnamed module and see if it exists in one of them
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   641
            PackageSymbol unnamedPack = getPackage(unnamedModule, flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   642
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   643
            if (unnamedPack != null && unnamedPack.exists()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   644
                msym.visiblePackages.put(unnamedPack.fullname, unnamedPack);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   645
                return unnamedPack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   646
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   647
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   648
            pack = enterPackage(msym, flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   649
            pack.complete();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   650
            if (pack.exists())
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   651
                return pack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   652
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   653
            unnamedPack = enterPackage(unnamedModule, flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   654
            unnamedPack.complete();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   655
            if (unnamedPack.exists()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   656
                msym.visiblePackages.put(unnamedPack.fullname, unnamedPack);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   657
                return unnamedPack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   658
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   659
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   660
            return pack;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   661
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   662
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   663
        return enterPackage(msym, flatName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   664
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   665
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   666
    private static final Map<ModuleSymbol, ClassSymbol> EMPTY = new HashMap<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   667
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   668
    public void removeClass(ModuleSymbol msym, Name flatName) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   669
        classes.getOrDefault(flatName, EMPTY).remove(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   670
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   671
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   672
    public Iterable<ClassSymbol> getAllClasses() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   673
        return () -> Iterators.createCompoundIterator(classes.values(), v -> v.values().iterator());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   674
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   675
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   676
    private void doEnterClass(ModuleSymbol msym, ClassSymbol cs) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   677
        classes.computeIfAbsent(cs.flatname, n -> new HashMap<>()).put(msym, cs);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   678
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   679
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   680
    /** Create a new member or toplevel class symbol with given flat name
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   681
     *  and enter in `classes' unless already there.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   682
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   683
    public ClassSymbol enterClass(ModuleSymbol msym, Name flatname) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   684
        Assert.checkNonNull(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   685
        PackageSymbol ps = lookupPackage(msym, Convert.packagePart(flatname));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   686
        Assert.checkNonNull(ps);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   687
        Assert.checkNonNull(ps.modle);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   688
        ClassSymbol c = getClass(ps.modle, flatname);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   689
        if (c == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   690
            c = defineClass(Convert.shortName(flatname), ps);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   691
            doEnterClass(ps.modle, c);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   692
            return c;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   693
        } else
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   694
            return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   695
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   696
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   697
    /** Check to see if a package exists, given its fully qualified name.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   698
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   699
    public boolean packageExists(ModuleSymbol msym, Name fullname) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   700
        Assert.checkNonNull(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   701
        return enterPackage(msym, fullname).exists();
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   702
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   703
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   704
    /** Make a package, given its fully qualified name.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   705
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   706
    public PackageSymbol enterPackage(ModuleSymbol currModule, Name fullname) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   707
        Assert.checkNonNull(currModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   708
        PackageSymbol p = getPackage(currModule, fullname);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   709
        if (p == null) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   710
            Assert.check(!fullname.isEmpty(), () -> "rootPackage missing!; currModule: " + currModule);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   711
            p = new PackageSymbol(
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   712
                    Convert.shortName(fullname),
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   713
                    enterPackage(currModule, Convert.packagePart(fullname)));
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   714
            p.completer = initialCompleter;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   715
            p.modle = currModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   716
            doEnterPackage(currModule, p);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   717
        }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   718
        return p;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   719
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   720
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   721
    private void doEnterPackage(ModuleSymbol msym, PackageSymbol pack) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   722
        packages.computeIfAbsent(pack.fullname, n -> new HashMap<>()).put(msym, pack);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   723
        msym.enclosedPackages = msym.enclosedPackages.prepend(pack);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   724
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   725
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   726
    private void addRootPackageFor(ModuleSymbol module) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   727
        doEnterPackage(module, rootPackage);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   728
        PackageSymbol unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   729
                @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   730
                public String toString() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   731
                    return messages.getLocalizedString("compiler.misc.unnamed.package");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   732
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   733
            };
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   734
        unnamedPackage.modle = module;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   735
        unnamedPackage.completer = sym -> initialCompleter.complete(sym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   736
        module.unnamedPackage = unnamedPackage;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   737
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   738
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   739
    public PackageSymbol getPackage(ModuleSymbol module, Name fullname) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   740
        return packages.getOrDefault(fullname, Collections.emptyMap()).get(module);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   741
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   742
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   743
    public ModuleSymbol enterModule(Name name) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   744
        ModuleSymbol msym = modules.get(name);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   745
        if (msym == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   746
            msym = ModuleSymbol.create(name, names.module_info);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   747
            addRootPackageFor(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   748
            msym.completer = sym -> moduleCompleter.complete(sym); //bootstrap issues
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   749
            modules.put(name, msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   750
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   751
        return msym;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   752
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   753
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   754
    public void enterModule(ModuleSymbol msym, Name name) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   755
        Assert.checkNull(modules.get(name));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   756
        Assert.checkNull(msym.name);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   757
        msym.name = name;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   758
        addRootPackageFor(msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   759
        ClassSymbol info = msym.module_info;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   760
        info.fullname = msym.name.append('.', names.module_info);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   761
        info.flatname = info.fullname;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   762
        modules.put(name, msym);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   763
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   764
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   765
    public ModuleSymbol getModule(Name name) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   766
        return modules.get(name);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   767
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   768
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   769
    //temporary:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   770
    public ModuleSymbol inferModule(Name packageName) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   771
        if (packageName.isEmpty())
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   772
            return java_base == noModule ? noModule : unnamedModule;//!
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   773
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   774
        ModuleSymbol msym = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   775
        Map<ModuleSymbol,PackageSymbol> map = packages.get(packageName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   776
        if (map == null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   777
            return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   778
        for (Map.Entry<ModuleSymbol,PackageSymbol> e: map.entrySet()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   779
            if (!e.getValue().members().isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   780
                if (msym == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   781
                    msym = e.getKey();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   782
                } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   783
                    return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   784
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   785
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   786
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   787
        return msym;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   788
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   789
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   790
    public List<ModuleSymbol> listPackageModules(Name packageName) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   791
        if (packageName.isEmpty())
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   792
            return List.nil();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   793
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   794
        List<ModuleSymbol> result = List.nil();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   795
        Map<ModuleSymbol,PackageSymbol> map = packages.get(packageName);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   796
        if (map != null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   797
            for (Map.Entry<ModuleSymbol, PackageSymbol> e: map.entrySet()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   798
                if (!e.getValue().members().isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   799
                    result = result.prepend(e.getKey());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   800
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   801
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   802
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   803
        return result;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   804
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   805
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   806
    public Collection<ModuleSymbol> getAllModules() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35424
diff changeset
   807
        return modules.values();
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   808
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   809
}