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