langtools/src/share/classes/com/sun/tools/javac/code/Symtab.java
author jlahoda
Wed, 09 Jul 2014 16:32:05 +0200
changeset 25443 9187d77f2c64
parent 24604 7f68545b5128
child 25445 603f0c93d5c9
permissions -rw-r--r--
8031569: Refactor javac scope implementation to enable lazy imports Summary: Introducing an internal API for Scope; rewriting ImportScopes to extend CompoundScopes. Reviewed-by: mcimadamore, jjg, jfranck Contributed-by: maurizio.cimadamore@oracle.com, jan.lahoda@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
     2
 * Copyright (c) 1999, 2014, 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
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    28
import java.util.HashMap;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    29
import java.util.HashSet;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    30
import java.util.Map;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    31
import java.util.Set;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    33
import javax.lang.model.element.ElementVisitor;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    34
import javax.tools.JavaFileObject;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    35
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;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    38
import com.sun.tools.javac.code.Symbol.ClassSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    39
import com.sun.tools.javac.code.Symbol.Completer;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    40
import com.sun.tools.javac.code.Symbol.CompletionFailure;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    41
import com.sun.tools.javac.code.Symbol.MethodSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    42
import com.sun.tools.javac.code.Symbol.OperatorSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    43
import com.sun.tools.javac.code.Symbol.PackageSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    44
import com.sun.tools.javac.code.Symbol.TypeSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    45
import com.sun.tools.javac.code.Symbol.VarSymbol;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    46
import com.sun.tools.javac.code.Type.BottomType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    47
import com.sun.tools.javac.code.Type.ClassType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    48
import com.sun.tools.javac.code.Type.ErrorType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    49
import com.sun.tools.javac.code.Type.JCPrimitiveType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    50
import com.sun.tools.javac.code.Type.JCVoidType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    51
import com.sun.tools.javac.code.Type.MethodType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    52
import com.sun.tools.javac.code.Type.UnknownType;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    53
import com.sun.tools.javac.jvm.ByteCodes;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    54
import com.sun.tools.javac.jvm.Target;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    55
import com.sun.tools.javac.util.Assert;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    56
import com.sun.tools.javac.util.Context;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    57
import com.sun.tools.javac.util.Convert;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    58
import com.sun.tools.javac.util.JavacMessages;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    59
import com.sun.tools.javac.util.List;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    60
import com.sun.tools.javac.util.Log;
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;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    63
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    64
import static com.sun.tools.javac.code.Flags.*;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    65
import static com.sun.tools.javac.code.Kinds.PCK;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
    66
import static com.sun.tools.javac.code.Kinds.TYP;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
import static com.sun.tools.javac.jvm.ByteCodes.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
    68
import static com.sun.tools.javac.code.TypeTag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
/** A class that defines all predefined constants and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
 *  as well as special classes such as java.lang.Object, which need
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
 *  to be known to the compiler. All symbols are held in instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
 *  fields. This makes it possible to work in multiple concurrent
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
 *  projects, which might use different class files for library classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    76
 *  <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
    77
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
public class Symtab {
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /** The context key for the symbol table. */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 18646
diff changeset
    83
    protected static final Context.Key<Symtab> symtabKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    /** Get the symbol table instance. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    public static Symtab instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        Symtab instance = context.get(symtabKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            instance = new Symtab(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    /** Builtin types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     */
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
    95
    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
    96
    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
    97
    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
    98
    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
    99
    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
   100
    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
   101
    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
   102
    public final JCPrimitiveType booleanType = new JCPrimitiveType(BOOLEAN, null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    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
   104
    public final JCVoidType voidType = new JCVoidType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   106
    private final Names names;
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   107
    private final Completer initialCompleter;
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   108
    private final Target target;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    /** A symbol for the root package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    public final PackageSymbol rootPackage;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    /** A symbol for the unnamed package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public final PackageSymbol unnamedPackage;
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    /** A symbol that stands for a missing symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    public final TypeSymbol noSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /** The error symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public final ClassSymbol errSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   126
    /** The unknown symbol.
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   127
     */
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   128
    public final ClassSymbol unknownSymbol;
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   129
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
   130
    /** A value for the errType, with a originalType of noType */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    public final Type errType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    /** A value for the unknown type. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    public final Type unknownType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    /** The builtin type of all arrays. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public final ClassSymbol arrayClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    public final MethodSymbol arrayCloneMethod;
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    /** VGJ: The (singleton) type of all bound types. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public final ClassSymbol boundClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    /** The builtin type of all methods. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    public final ClassSymbol methodClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    /** Predefined types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    public final Type objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    public final Type classType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    public final Type classLoaderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    public final Type stringType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public final Type stringBufferType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    public final Type stringBuilderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    public final Type cloneableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    public final Type serializableType;
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   156
    public final Type serializedLambdaType;
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 1471
diff changeset
   157
    public final Type methodHandleType;
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   158
    public final Type methodHandleLookupType;
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   159
    public final Type methodTypeType;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   160
    public final Type nativeHeaderType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    public final Type throwableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    public final Type errorType;
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   163
    public final Type interruptedExceptionType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    public final Type illegalArgumentExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public final Type exceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public final Type runtimeExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    public final Type classNotFoundExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    public final Type noClassDefFoundErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    public final Type noSuchFieldErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    public final Type assertionErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    public final Type cloneNotSupportedExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    public final Type annotationType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    public final TypeSymbol enumSym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public final Type listType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    public final Type collectionsType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public final Type comparableType;
16333
a6e1ded87200 8009138: javac, equals-hashCode warning tuning
vromero
parents: 16316
diff changeset
   177
    public final Type comparatorType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public final Type arraysType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    public final Type iterableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public final Type iteratorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    public final Type annotationTargetType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    public final Type overrideType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    public final Type retentionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
    public final Type deprecatedType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    public final Type suppressWarningsType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public final Type inheritedType;
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   187
    public final Type profileType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    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
   189
    public final Type systemType;
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   190
    public final Type autoCloseableType;
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   191
    public final Type trustMeType;
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   192
    public final Type lambdaMetafactory;
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14539
diff changeset
   193
    public final Type repeatableType;
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   194
    public final Type documentedType;
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   195
    public final Type elementTypeType;
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   196
    public final Type functionalInterfaceType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    /** The symbol representing the length field of an array.
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    public final VarSymbol lengthVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /** The null check operator. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    public final OperatorSymbol nullcheck;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    /** The symbol representing the final finalize method on enums */
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    public final MethodSymbol enumFinalFinalize;
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   208
    /** 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
   209
    public final MethodSymbol autoCloseableClose;
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   210
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    /** The predefined type that belongs to a tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     */
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   213
    public final Type[] typeOfTag = new Type[TypeTag.getTypeTagCount()];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    /** The name of the class that belongs to a basix type tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     */
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14259
diff changeset
   217
    public final Name[] boxedName = new Name[TypeTag.getTypeTagCount()];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   219
    /** A set containing all operator names.
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   220
     */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 18646
diff changeset
   221
    public final Set<Name> operatorNames = new HashSet<>();
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   222
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
    /** A hashtable containing the encountered top-level and member classes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     *  indexed by flat names. The table does not contain local classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     *  It should be updated from the outside to reflect classes defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 18646
diff changeset
   228
    public final Map<Name, ClassSymbol> classes = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
    /** A hashtable containing the encountered packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
     *  the table should be updated from outside to reflect packages defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 18646
diff changeset
   234
    public final Map<Name, PackageSymbol> packages = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
    public void initType(Type type, ClassSymbol c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        type.tsym = c;
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   238
        typeOfTag[type.getTag().ordinal()] = type;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
    public void initType(Type type, String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
        initType(
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            new ClassSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                PUBLIC, names.fromString(name), type, rootPackage));
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    public void initType(Type type, String name, String bname) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        initType(type, name);
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   250
            boxedName[type.getTag().ordinal()] = names.fromString("java.lang." + bname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
    /** The class symbol that owns all predefined symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    public final ClassSymbol predefClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    /** Enter a constant into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     *  @param name   The constant's name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     *  @param type   The constant's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    private VarSymbol enterConstant(String name, Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        VarSymbol c = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
            PUBLIC | STATIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            names.fromString(name),
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
            predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        c.setData(type.constValue());
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        predefClass.members().enter(c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        return c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    /** Enter a binary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     *  @param left     The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     *  @param right    The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
                            int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        predefClass.members().enter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            new OperatorSymbol(
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   284
                makeOperatorName(name),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                new MethodType(List.of(left, right), res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                               List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                predefClass));
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    /** Enter a binary operation, as above but with two opcodes,
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13689
diff changeset
   292
     *  which get encoded as
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13689
diff changeset
   293
     *  {@code (opcode1 << ByteCodeTags.preShift) + opcode2 }.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
     *  @param opcode1     First opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     *  @param opcode2     Second opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                            int opcode1, int opcode2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
        enterBinop(
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            name, left, right, res, (opcode1 << ByteCodes.preShift) | opcode2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
    /** Enter a unary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
     *  @param arg      The type of the operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
    private OperatorSymbol enterUnop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
                                     Type arg,
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
                                     Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
                                     int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
        OperatorSymbol sym =
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   315
            new OperatorSymbol(makeOperatorName(name),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                               new MethodType(List.of(arg),
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
                                              res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
                                              List.<Type>nil(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
                                              methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
                               opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
                               predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
        predefClass.members().enter(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   326
    /**
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   327
     * Create a new operator name from corresponding String representation
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   328
     * and add the name to the set of known operator names.
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   329
     */
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   330
    private Name makeOperatorName(String name) {
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   331
        Name opName = names.fromString(name);
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   332
        operatorNames.add(opName);
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   333
        return opName;
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   334
    }
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   335
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
    /** Enter a class into symbol table.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   337
     *  @param s The name of the class.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
    private Type enterClass(String s) {
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   340
        return enterClass(names.fromString(s)).type;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   343
    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
   344
        final Completer completer = type.tsym.completer;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   345
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   346
            type.tsym.completer = new Completer() {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   347
                public void complete(Symbol sym) throws CompletionFailure {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   348
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   349
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   350
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   351
                        sym.flags_field |= (PUBLIC | INTERFACE);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   352
                        ((ClassType) sym.type).supertype_field = objectType;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   353
                    }
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
            };
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   356
        }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   357
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   358
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   359
    public void synthesizeBoxTypeIfMissing(final Type type) {
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   360
        ClassSymbol sym = enterClass(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
   361
        final Completer completer = sym.completer;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   362
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   363
            sym.completer = new Completer() {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   364
                public void complete(Symbol sym) throws CompletionFailure {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   365
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   366
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   367
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   368
                        sym.flags_field |= PUBLIC;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   369
                        ((ClassType) sym.type).supertype_field = objectType;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   370
                        Name n = target.boxWithConstructors() ? names.init : names.valueOf;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   371
                        MethodSymbol boxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   372
                            new MethodSymbol(PUBLIC | STATIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   373
                                n,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   374
                                new MethodType(List.of(type), sym.type,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   375
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   376
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   377
                        sym.members().enter(boxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   378
                        MethodSymbol unboxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   379
                            new MethodSymbol(PUBLIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   380
                                type.tsym.name.append(names.Value), // x.intValue()
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   381
                                new MethodType(List.<Type>nil(), type,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   382
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   383
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   384
                        sym.members().enter(unboxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   385
                    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   386
                }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   387
            };
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   388
        }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   389
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   390
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   391
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   392
    // 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
   393
    // This class does not have a class file.
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   394
    private Type enterSyntheticAnnotation(String name) {
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   395
        ClassType type = (ClassType)enterClass(name);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   396
        ClassSymbol sym = (ClassSymbol)type.tsym;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   397
        sym.completer = null;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   398
        sym.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   399
        sym.erasure_field = type;
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   400
        sym.members_field = WriteableScope.create(sym);
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   401
        type.typarams_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   402
        type.allparams_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   403
        type.supertype_field = annotationType;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   404
        type.interfaces_field = List.nil();
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   405
        return type;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   406
    }
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   407
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
    /** Constructor; enters all predefined identifiers and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
     *  into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
    protected Symtab(Context context) throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        context.put(symtabKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   414
        names = Names.instance(context);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   415
        target = Target.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        // Create the unknown type
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 18414
diff changeset
   418
        unknownType = new UnknownType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        // create the basic builtin symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        rootPackage = new PackageSymbol(names.empty, null);
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   422
        packages.put(names.empty, rootPackage);
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1264
diff changeset
   423
        final JavacMessages messages = JavacMessages.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
                public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
                    return messages.getLocalizedString("compiler.misc.unnamed.package");
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
            };
16967
79d444669f3f 7015104: use new subtype of TypeSymbol for type parameters
jfranck
parents: 16333
diff changeset
   429
        noSymbol = new TypeSymbol(Kinds.NIL, 0, names.empty, Type.noType, rootPackage) {
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   430
            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
   431
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   432
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   433
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        // create the error symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
        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
   437
        errType = new ErrorType(errSymbol, Type.noType);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   438
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   439
        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
   440
        unknownSymbol.members_field = new Scope.ErrorScope(unknownSymbol);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   441
        unknownSymbol.type = unknownType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        // initialize builtin types
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        initType(byteType, "byte", "Byte");
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        initType(shortType, "short", "Short");
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        initType(charType, "char", "Character");
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        initType(intType, "int", "Integer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
        initType(longType, "long", "Long");
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
        initType(floatType, "float", "Float");
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        initType(doubleType, "double", "Double");
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        initType(booleanType, "boolean", "Boolean");
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        initType(voidType, "void", "Void");
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        initType(botType, "<nulltype>");
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
        initType(errType, errSymbol);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   455
        initType(unknownType, unknownSymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        // the builtin class of all arrays
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
        // VGJ
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
        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
   462
        boundClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        // the builtin class of all methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        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
   466
        methodClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
        // Create class to hold all predefined constants and operations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        predefClass = new ClassSymbol(PUBLIC|ACYCLIC, names.empty, rootPackage);
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   470
        WriteableScope scope = WriteableScope.create(predefClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        predefClass.members_field = scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22442
diff changeset
   473
        // Get the initial completer for Symbols from the ClassFinder
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22442
diff changeset
   474
        initialCompleter = ClassFinder.instance(context).getCompleter();
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   475
        rootPackage.completer = initialCompleter;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   476
        unnamedPackage.completer = initialCompleter;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   477
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
        // Enter symbols for basic types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
        scope.enter(byteType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
        scope.enter(shortType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        scope.enter(charType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
        scope.enter(intType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
        scope.enter(longType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
        scope.enter(floatType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
        scope.enter(doubleType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
        scope.enter(booleanType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
        scope.enter(errType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
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
   489
        // 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
   490
        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
   491
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
        classes.put(predefClass.fullname, predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        // Enter predefined classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        objectType = enterClass("java.lang.Object");
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        classType = enterClass("java.lang.Class");
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
        stringType = enterClass("java.lang.String");
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
        stringBufferType = enterClass("java.lang.StringBuffer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
        stringBuilderType = enterClass("java.lang.StringBuilder");
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
        cloneableType = enterClass("java.lang.Cloneable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
        throwableType = enterClass("java.lang.Throwable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        serializableType = enterClass("java.io.Serializable");
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   503
        serializedLambdaType = enterClass("java.lang.invoke.SerializedLambda");
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
   504
        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
   505
        methodHandleLookupType = enterClass("java.lang.invoke.MethodHandles$Lookup");
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   506
        methodTypeType = enterClass("java.lang.invoke.MethodType");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
        errorType = enterClass("java.lang.Error");
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
        illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   509
        interruptedExceptionType = enterClass("java.lang.InterruptedException");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
        exceptionType = enterClass("java.lang.Exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
        runtimeExceptionType = enterClass("java.lang.RuntimeException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
        classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
        noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
        noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
        assertionErrorType = enterClass("java.lang.AssertionError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
        cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
        annotationType = enterClass("java.lang.annotation.Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        classLoaderType = enterClass("java.lang.ClassLoader");
22442
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   519
        enumSym = enterClass(names.java_lang_Enum);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
        enumFinalFinalize =
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
            new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
                             names.finalize,
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
                             new MethodType(List.<Type>nil(), voidType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
                                            List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
                             enumSym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
        listType = enterClass("java.util.List");
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
        collectionsType = enterClass("java.util.Collections");
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        comparableType = enterClass("java.lang.Comparable");
16333
a6e1ded87200 8009138: javac, equals-hashCode warning tuning
vromero
parents: 16316
diff changeset
   529
        comparatorType = enterClass("java.util.Comparator");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        arraysType = enterClass("java.util.Arrays");
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   531
        iterableType = target.hasIterable()
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
            ? enterClass("java.lang.Iterable")
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
            : enterClass("java.util.Collection");
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
        iteratorType = enterClass("java.util.Iterator");
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
        annotationTargetType = enterClass("java.lang.annotation.Target");
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        overrideType = enterClass("java.lang.Override");
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
        retentionType = enterClass("java.lang.annotation.Retention");
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
        deprecatedType = enterClass("java.lang.Deprecated");
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
        suppressWarningsType = enterClass("java.lang.SuppressWarnings");
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
        inheritedType = enterClass("java.lang.annotation.Inherited");
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14539
diff changeset
   541
        repeatableType = enterClass("java.lang.annotation.Repeatable");
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   542
        documentedType = enterClass("java.lang.annotation.Documented");
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   543
        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
   544
        systemType = enterClass("java.lang.System");
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   545
        autoCloseableType = enterClass("java.lang.AutoCloseable");
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   546
        autoCloseableClose = new MethodSymbol(PUBLIC,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   547
                             names.close,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   548
                             new MethodType(List.<Type>nil(), voidType,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   549
                                            List.of(exceptionType), methodClass),
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   550
                             autoCloseableType.tsym);
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   551
        trustMeType = enterClass("java.lang.SafeVarargs");
14539
507556c4e622 8003412: javac needs to understand java.lang.annotation.Native
jjg
parents: 14365
diff changeset
   552
        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
   553
        lambdaMetafactory = enterClass("java.lang.invoke.LambdaMetafactory");
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   554
        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
   555
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   556
        synthesizeEmptyInterfaceIfMissing(autoCloseableType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   557
        synthesizeEmptyInterfaceIfMissing(cloneableType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   558
        synthesizeEmptyInterfaceIfMissing(serializableType);
14365
20f388573215 8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
rfield
parents: 14359
diff changeset
   559
        synthesizeEmptyInterfaceIfMissing(lambdaMetafactory);
16300
7cf27559c8df 8004969: Generate $deserializeLambda$ method
rfield
parents: 15361
diff changeset
   560
        synthesizeEmptyInterfaceIfMissing(serializedLambdaType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   561
        synthesizeBoxTypeIfMissing(doubleType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   562
        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
   563
        synthesizeBoxTypeIfMissing(voidType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5847
diff changeset
   565
        // Enter a synthetic class that is used to mark internal
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
        // proprietary classes in ct.sym.  This class does not have a
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
        // class file.
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   568
        proprietaryType = enterSyntheticAnnotation("sun.Proprietary+Annotation");
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   569
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   570
        // 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
   571
        // 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
   572
        profileType = enterSyntheticAnnotation("jdk.Profile+Annotation");
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   573
        MethodSymbol m = new MethodSymbol(PUBLIC | ABSTRACT, names.value, intType, profileType.tsym);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14539
diff changeset
   574
        profileType.tsym.members().enter(m);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
        // Enter a class for arrays.
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
        // The class implements java.lang.Cloneable and java.io.Serializable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
        // It has a final length field and a clone method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        ClassType arrayClassType = (ClassType)arrayClass.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
        arrayClassType.supertype_field = objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
        arrayClassType.interfaces_field = List.of(cloneableType, serializableType);
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 24604
diff changeset
   582
        arrayClass.members_field = WriteableScope.create(arrayClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        lengthVar = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            PUBLIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
            names.length,
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
            intType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
        arrayClass.members().enter(lengthVar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
        arrayCloneMethod = new MethodSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
            PUBLIC,
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
            names.clone,
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
            new MethodType(List.<Type>nil(), objectType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
                           List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        arrayClass.members().enter(arrayCloneMethod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        // Enter operators.
18414
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   598
        /*  Internally we use +++, --- for unary +, - to reduce +, - operators
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   599
         *  overloading
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   600
         */
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   601
        enterUnop("+++", doubleType, doubleType, nop);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   602
        enterUnop("+++", floatType, floatType, nop);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   603
        enterUnop("+++", longType, longType, nop);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   604
        enterUnop("+++", intType, intType, nop);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
18414
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   606
        enterUnop("---", doubleType, doubleType, dneg);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   607
        enterUnop("---", floatType, floatType, fneg);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   608
        enterUnop("---", longType, longType, lneg);
ee1e93e83d2b 8016610: javac, add new internal symbols to make operator resolution faster
vromero
parents: 17546
diff changeset
   609
        enterUnop("---", intType, intType, ineg);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        enterUnop("~", longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
        enterUnop("~", intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        enterUnop("++", doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
        enterUnop("++", floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
        enterUnop("++", longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
        enterUnop("++", intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
        enterUnop("++", charType, charType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
        enterUnop("++", shortType, shortType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        enterUnop("++", byteType, byteType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
        enterUnop("--", doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
        enterUnop("--", floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
        enterUnop("--", longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
        enterUnop("--", intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
        enterUnop("--", charType, charType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
        enterUnop("--", shortType, shortType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
        enterUnop("--", byteType, byteType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        enterUnop("!", booleanType, booleanType, bool_not);
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
        nullcheck = enterUnop("<*nullchk*>", objectType, objectType, nullchk);
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
        // string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        enterBinop("+", stringType, objectType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
        enterBinop("+", objectType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        enterBinop("+", stringType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        enterBinop("+", stringType, intType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
        enterBinop("+", stringType, longType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
        enterBinop("+", stringType, floatType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
        enterBinop("+", stringType, doubleType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
        enterBinop("+", stringType, booleanType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
        enterBinop("+", stringType, botType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
        enterBinop("+", intType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
        enterBinop("+", longType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
        enterBinop("+", floatType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
        enterBinop("+", doubleType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
        enterBinop("+", booleanType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
        enterBinop("+", botType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
        // these errors would otherwise be matched as string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        enterBinop("+", botType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        enterBinop("+", botType, intType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
        enterBinop("+", botType, longType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
        enterBinop("+", botType, floatType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        enterBinop("+", botType, doubleType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        enterBinop("+", botType, booleanType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        enterBinop("+", botType, objectType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
        enterBinop("+", intType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
        enterBinop("+", longType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
        enterBinop("+", floatType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
        enterBinop("+", doubleType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        enterBinop("+", booleanType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
        enterBinop("+", objectType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
        enterBinop("+", doubleType, doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
        enterBinop("+", floatType, floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
        enterBinop("+", longType, longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
        enterBinop("+", intType, intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
        enterBinop("-", doubleType, doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
        enterBinop("-", floatType, floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
        enterBinop("-", longType, longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
        enterBinop("-", intType, intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
        enterBinop("*", doubleType, doubleType, doubleType, dmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
        enterBinop("*", floatType, floatType, floatType, fmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
        enterBinop("*", longType, longType, longType, lmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
        enterBinop("*", intType, intType, intType, imul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
        enterBinop("/", doubleType, doubleType, doubleType, ddiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
        enterBinop("/", floatType, floatType, floatType, fdiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
        enterBinop("/", longType, longType, longType, ldiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
        enterBinop("/", intType, intType, intType, idiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
        enterBinop("%", doubleType, doubleType, doubleType, dmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
        enterBinop("%", floatType, floatType, floatType, fmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        enterBinop("%", longType, longType, longType, lmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
        enterBinop("%", intType, intType, intType, imod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
        enterBinop("&", booleanType, booleanType, booleanType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
        enterBinop("&", longType, longType, longType, land);
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
        enterBinop("&", intType, intType, intType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
        enterBinop("|", booleanType, booleanType, booleanType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
        enterBinop("|", longType, longType, longType, lor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
        enterBinop("|", intType, intType, intType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
        enterBinop("^", booleanType, booleanType, booleanType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        enterBinop("^", longType, longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
        enterBinop("^", intType, intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
        enterBinop("<<", longType, longType, longType, lshll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
        enterBinop("<<", intType, longType, intType, ishll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
        enterBinop("<<", longType, intType, longType, lshl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
        enterBinop("<<", intType, intType, intType, ishl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
        enterBinop(">>", longType, longType, longType, lshrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
        enterBinop(">>", intType, longType, intType, ishrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
        enterBinop(">>", longType, intType, longType, lshr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
        enterBinop(">>", intType, intType, intType, ishr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
        enterBinop(">>>", longType, longType, longType, lushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
        enterBinop(">>>", intType, longType, intType, iushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
        enterBinop(">>>", longType, intType, longType, lushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
        enterBinop(">>>", intType, intType, intType, iushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
        enterBinop("<", doubleType, doubleType, booleanType, dcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
        enterBinop("<", floatType, floatType, booleanType, fcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
        enterBinop("<", longType, longType, booleanType, lcmp, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
        enterBinop("<", intType, intType, booleanType, if_icmplt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
        enterBinop(">", doubleType, doubleType, booleanType, dcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
        enterBinop(">", floatType, floatType, booleanType, fcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
        enterBinop(">", longType, longType, booleanType, lcmp, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
        enterBinop(">", intType, intType, booleanType, if_icmpgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
        enterBinop("<=", doubleType, doubleType, booleanType, dcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
        enterBinop("<=", floatType, floatType, booleanType, fcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
        enterBinop("<=", longType, longType, booleanType, lcmp, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
        enterBinop("<=", intType, intType, booleanType, if_icmple);
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
        enterBinop(">=", doubleType, doubleType, booleanType, dcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
        enterBinop(">=", floatType, floatType, booleanType, fcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
        enterBinop(">=", longType, longType, booleanType, lcmp, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
        enterBinop(">=", intType, intType, booleanType, if_icmpge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
        enterBinop("==", objectType, objectType, booleanType, if_acmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
        enterBinop("==", booleanType, booleanType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
        enterBinop("==", doubleType, doubleType, booleanType, dcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
        enterBinop("==", floatType, floatType, booleanType, fcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
        enterBinop("==", longType, longType, booleanType, lcmp, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
        enterBinop("==", intType, intType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
        enterBinop("!=", objectType, objectType, booleanType, if_acmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
        enterBinop("!=", booleanType, booleanType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
        enterBinop("!=", doubleType, doubleType, booleanType, dcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
        enterBinop("!=", floatType, floatType, booleanType, fcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
        enterBinop("!=", longType, longType, booleanType, lcmp, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
        enterBinop("!=", intType, intType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
        enterBinop("&&", booleanType, booleanType, booleanType, bool_and);
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
        enterBinop("||", booleanType, booleanType, booleanType, bool_or);
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
    }
22442
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
    /** Define a new class given its name and owner.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   756
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   757
    public ClassSymbol defineClass(Name name, Symbol owner) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   758
        ClassSymbol c = new ClassSymbol(0, name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   759
        if (owner.kind == PCK)
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   760
            Assert.checkNull(classes.get(c.flatname), c);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   761
        c.completer = initialCompleter;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   762
        return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   763
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   764
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   765
    /** 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
   766
     *  and owner and enter in `classes' unless already there.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   767
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   768
    public ClassSymbol enterClass(Name name, TypeSymbol owner) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   769
        Name flatname = TypeSymbol.formFlatName(name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   770
        ClassSymbol c = classes.get(flatname);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   771
        if (c == null) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   772
            c = defineClass(name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   773
            classes.put(flatname, c);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   774
        } 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
   775
            // reassign fields of classes that might have been loaded with
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   776
            // their flat names.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   777
            c.owner.members().remove(c);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   778
            c.name = name;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   779
            c.owner = owner;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   780
            c.fullname = ClassSymbol.formFullName(name, owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   781
        }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   782
        return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   783
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   784
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   785
    /**
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   786
     * Creates a new toplevel class symbol with given flat name and
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   787
     * given class (or source) file.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   788
     *
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   789
     * @param flatName a fully qualified binary class name
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   790
     * @param classFile the class file or compilation unit defining
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   791
     * the class (may be {@code null})
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   792
     * @return a newly created class symbol
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   793
     * @throws AssertionError if the class symbol already exists
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   794
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   795
    public ClassSymbol enterClass(Name flatName, JavaFileObject classFile) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   796
        ClassSymbol cs = classes.get(flatName);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   797
        if (cs != null) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   798
            String msg = Log.format("%s: completer = %s; class file = %s; source file = %s",
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   799
                                    cs.fullname,
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   800
                                    cs.completer,
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   801
                                    cs.classfile,
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   802
                                    cs.sourcefile);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   803
            throw new AssertionError(msg);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   804
        }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   805
        Name packageName = Convert.packagePart(flatName);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   806
        PackageSymbol owner = packageName.isEmpty()
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   807
                                ? unnamedPackage
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   808
                                : enterPackage(packageName);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   809
        cs = defineClass(Convert.shortName(flatName), owner);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   810
        cs.classfile = classFile;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   811
        classes.put(flatName, cs);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   812
        return cs;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   813
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   814
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   815
    /** 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
   816
     *  and enter in `classes' unless already there.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   817
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   818
    public ClassSymbol enterClass(Name flatname) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   819
        ClassSymbol c = classes.get(flatname);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   820
        if (c == null)
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   821
            return enterClass(flatname, (JavaFileObject)null);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   822
        else
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   823
            return c;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   824
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   825
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   826
    /** 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
   827
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   828
    public boolean packageExists(Name fullname) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   829
        return enterPackage(fullname).exists();
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   830
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   831
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   832
    /** Make a package, given its fully qualified name.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   833
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   834
    public PackageSymbol enterPackage(Name fullname) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   835
        PackageSymbol p = packages.get(fullname);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   836
        if (p == null) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   837
            Assert.check(!fullname.isEmpty(), "rootPackage missing!");
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   838
            p = new PackageSymbol(
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   839
                Convert.shortName(fullname),
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   840
                enterPackage(Convert.packagePart(fullname)));
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   841
            p.completer = initialCompleter;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   842
            packages.put(fullname, p);
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   843
        }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   844
        return p;
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   845
    }
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   846
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   847
    /** Make a package, given its unqualified name and enclosing package.
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   848
     */
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   849
    public PackageSymbol enterPackage(Name name, PackageSymbol owner) {
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   850
        return enterPackage(TypeSymbol.formFullName(name, owner));
8fd30fc4e3a3 8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents: 22163
diff changeset
   851
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
}