langtools/src/share/classes/com/sun/tools/javac/code/Symtab.java
author jjg
Tue, 09 Oct 2012 19:31:58 -0700
changeset 14259 fb94a1df0d53
parent 14258 8d2148961366
child 14359 d4099818ab70
permissions -rw-r--r--
8000208: fix langtools javadoc comment issues Reviewed-by: bpatel, mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
     2
 * Copyright (c) 1999, 2012, 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
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    30
import javax.lang.model.element.ElementVisitor;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    31
import javax.lang.model.type.TypeVisitor;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    32
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.jvm.*;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    36
import com.sun.tools.javac.util.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    37
import com.sun.tools.javac.util.List;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14057
diff changeset
    38
import static com.sun.tools.javac.code.Flags.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import static com.sun.tools.javac.jvm.ByteCodes.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
/** A class that defines all predefined constants and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 *  as well as special classes such as java.lang.Object, which need
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 *  to be known to the compiler. All symbols are held in instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 *  fields. This makes it possible to work in multiple concurrent
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 *  projects, which might use different class files for library classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    47
 *  <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
    48
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
public class Symtab {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /** The context key for the symbol table. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    protected static final Context.Key<Symtab> symtabKey =
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        new Context.Key<Symtab>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    /** Get the symbol table instance. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    public static Symtab instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        Symtab instance = context.get(symtabKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            instance = new Symtab(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /** Builtin types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    public final Type byteType = new Type(TypeTags.BYTE, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public final Type charType = new Type(TypeTags.CHAR, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    public final Type shortType = new Type(TypeTags.SHORT, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    public final Type intType = new Type(TypeTags.INT, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    public final Type longType = new Type(TypeTags.LONG, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    public final Type floatType = new Type(TypeTags.FLOAT, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    public final Type doubleType = new Type(TypeTags.DOUBLE, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    public final Type booleanType = new Type(TypeTags.BOOLEAN, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    public final Type botType = new BottomType();
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    public final JCNoType voidType = new JCNoType(TypeTags.VOID);
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
    78
    private final Names names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    private final ClassReader reader;
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
    80
    private final Target target;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /** A symbol for the root package.
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    public final PackageSymbol rootPackage;
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    /** A symbol for the unnamed package.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    public final PackageSymbol unnamedPackage;
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    /** A symbol that stands for a missing symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    public final TypeSymbol noSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    /** The error symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    public final ClassSymbol errSymbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
    98
    /** The unknown symbol.
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
    99
     */
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   100
    public final ClassSymbol unknownSymbol;
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   101
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
   102
    /** A value for the errType, with a originalType of noType */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    public final Type errType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /** A value for the unknown type. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    public final Type unknownType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    /** The builtin type of all arrays. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    public final ClassSymbol arrayClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    public final MethodSymbol arrayCloneMethod;
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    /** VGJ: The (singleton) type of all bound types. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    public final ClassSymbol boundClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    /** The builtin type of all methods. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public final ClassSymbol methodClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    /** Predefined types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    public final Type objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    public final Type classType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    public final Type classLoaderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    public final Type stringType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public final Type stringBufferType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    public final Type stringBuilderType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    public final Type cloneableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    public final Type serializableType;
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 1471
diff changeset
   128
    public final Type methodHandleType;
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   129
    public final Type methodTypeType;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   130
    public final Type nativeHeaderType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    public final Type throwableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    public final Type errorType;
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   133
    public final Type interruptedExceptionType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    public final Type illegalArgumentExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    public final Type exceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    public final Type runtimeExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public final Type classNotFoundExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    public final Type noClassDefFoundErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    public final Type noSuchFieldErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    public final Type assertionErrorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public final Type cloneNotSupportedExceptionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    public final Type annotationType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    public final TypeSymbol enumSym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    public final Type listType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    public final Type collectionsType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    public final Type comparableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    public final Type arraysType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    public final Type iterableType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    public final Type iteratorType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    public final Type annotationTargetType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    public final Type overrideType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public final Type retentionType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    public final Type deprecatedType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    public final Type suppressWarningsType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    public final Type inheritedType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    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
   157
    public final Type systemType;
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   158
    public final Type autoCloseableType;
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   159
    public final Type trustMeType;
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   160
    public final Type containedByType;
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   161
    public final Type containerForType;
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   162
    public final Type documentedType;
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   163
    public final Type elementTypeType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    /** The symbol representing the length field of an array.
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    public final VarSymbol lengthVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    /** The null check operator. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    public final OperatorSymbol nullcheck;
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    /** The symbol representing the final finalize method on enums */
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    public final MethodSymbol enumFinalFinalize;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   175
    /** 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
   176
    public final MethodSymbol autoCloseableClose;
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   177
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    /** The predefined type that belongs to a tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public final Type[] typeOfTag = new Type[TypeTags.TypeTagCount];
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /** The name of the class that belongs to a basix type tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
    public final Name[] boxedName = new Name[TypeTags.TypeTagCount];
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   186
    /** A set containing all operator names.
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   187
     */
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   188
    public final Set<Name> operatorNames = new HashSet<Name>();
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   189
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    /** A hashtable containing the encountered top-level and member classes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *  indexed by flat names. The table does not contain local classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     *  It should be updated from the outside to reflect classes defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public final Map<Name, ClassSymbol> classes = new HashMap<Name, ClassSymbol>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    /** A hashtable containing the encountered packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     *  the table should be updated from outside to reflect packages defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    public final Map<Name, PackageSymbol> packages = new HashMap<Name, PackageSymbol>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    public void initType(Type type, ClassSymbol c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        type.tsym = c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        typeOfTag[type.tag] = type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    public void initType(Type type, String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        initType(
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
            new ClassSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
                PUBLIC, names.fromString(name), type, rootPackage));
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    public void initType(Type type, String name, String bname) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        initType(type, name);
3555
a6fd77fe81df 6390045: Unexpected error "cannot access java.lang.Void" with '-target cldc1.0' with -source >=1.5
mcimadamore
parents: 2723
diff changeset
   217
            boxedName[type.tag] = names.fromString("java.lang." + bname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    /** The class symbol that owns all predefined symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    public final ClassSymbol predefClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    /** Enter a constant into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     *  @param name   The constant's name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     *  @param type   The constant's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    private VarSymbol enterConstant(String name, Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        VarSymbol c = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            PUBLIC | STATIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            names.fromString(name),
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        c.setData(type.constValue());
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
        predefClass.members().enter(c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        return c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    /** Enter a binary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     *  @param left     The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
     *  @param right    The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
                            int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        predefClass.members().enter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            new OperatorSymbol(
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   251
                makeOperatorName(name),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                new MethodType(List.of(left, right), res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
                               List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
                opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
                predefClass));
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    /** Enter a binary operation, as above but with two opcodes,
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13689
diff changeset
   259
     *  which get encoded as
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13689
diff changeset
   260
     *  {@code (opcode1 << ByteCodeTags.preShift) + opcode2 }.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     *  @param opcode1     First opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     *  @param opcode2     Second opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
                            int opcode1, int opcode2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        enterBinop(
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
            name, left, right, res, (opcode1 << ByteCodes.preShift) | opcode2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    /** Enter a unary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     *  @param arg      The type of the operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    private OperatorSymbol enterUnop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
                                     Type arg,
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
                                     Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
                                     int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        OperatorSymbol sym =
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   282
            new OperatorSymbol(makeOperatorName(name),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                               new MethodType(List.of(arg),
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                                              res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                                              List.<Type>nil(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                                              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
        predefClass.members().enter(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   293
    /**
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   294
     * Create a new operator name from corresponding String representation
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   295
     * 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
   296
     */
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   297
    private Name makeOperatorName(String name) {
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   298
        Name opName = names.fromString(name);
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   299
        operatorNames.add(opName);
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   300
        return opName;
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   301
    }
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14046
diff changeset
   302
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
    /** Enter a class into symbol table.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   304
     *  @param s The name of the class.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
    private Type enterClass(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        return reader.enterClass(names.fromString(s)).type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   310
    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
   311
        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
   312
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   313
            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
   314
                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
   315
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   316
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   317
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   318
                        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
   319
                        ((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
   320
                    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   321
                }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   322
            };
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   323
        }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   324
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   325
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   326
    public void synthesizeBoxTypeIfMissing(final Type type) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   327
        ClassSymbol sym = reader.enterClass(boxedName[type.tag]);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   328
        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
   329
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   330
            sym.completer = new Completer() {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   331
                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
   332
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   333
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   334
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   335
                        sym.flags_field |= PUBLIC;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   336
                        ((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
   337
                        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
   338
                        MethodSymbol boxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   339
                            new MethodSymbol(PUBLIC | STATIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   340
                                n,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   341
                                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
   342
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   343
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   344
                        sym.members().enter(boxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   345
                        MethodSymbol unboxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   346
                            new MethodSymbol(PUBLIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   347
                                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
   348
                                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
   349
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   350
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   351
                        sym.members().enter(unboxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   352
                    }
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
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
    /** Constructor; enters all predefined identifiers and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
     *  into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
    protected Symtab(Context context) throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
        context.put(symtabKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   365
        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
   366
        target = Target.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        // Create the unknown type
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   369
        unknownType = new Type(TypeTags.UNKNOWN, null) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   370
            @Override
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   371
            public <R, P> R accept(TypeVisitor<R, P> v, P p) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   372
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   373
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   374
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        // create the basic builtin symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
        rootPackage = new PackageSymbol(names.empty, null);
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1264
diff changeset
   378
        final JavacMessages messages = JavacMessages.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
        unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
                public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
                    return messages.getLocalizedString("compiler.misc.unnamed.package");
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            };
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   384
        noSymbol = new TypeSymbol(0, names.empty, Type.noType, rootPackage) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   385
            public <R, P> R accept(ElementVisitor<R, P> v, P p) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   386
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   387
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   388
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
        noSymbol.kind = Kinds.NIL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        // create the error symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
        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
   393
        errType = new ErrorType(errSymbol, Type.noType);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   394
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   395
        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
   396
        unknownSymbol.members_field = new Scope.ErrorScope(unknownSymbol);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   397
        unknownSymbol.type = unknownType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
        // initialize builtin types
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
        initType(byteType, "byte", "Byte");
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
        initType(shortType, "short", "Short");
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        initType(charType, "char", "Character");
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        initType(intType, "int", "Integer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
        initType(longType, "long", "Long");
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        initType(floatType, "float", "Float");
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        initType(doubleType, "double", "Double");
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
        initType(booleanType, "boolean", "Boolean");
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
        initType(voidType, "void", "Void");
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
        initType(botType, "<nulltype>");
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
        initType(errType, errSymbol);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   411
        initType(unknownType, unknownSymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
        // the builtin class of all arrays
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        // VGJ
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        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
   418
        boundClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        // the builtin class of all methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        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
   422
        methodClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        // Create class to hold all predefined constants and operations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        predefClass = new ClassSymbol(PUBLIC|ACYCLIC, names.empty, rootPackage);
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8241
diff changeset
   426
        Scope scope = new Scope(predefClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        predefClass.members_field = scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
        // Enter symbols for basic types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
        scope.enter(byteType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
        scope.enter(shortType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        scope.enter(charType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        scope.enter(intType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        scope.enter(longType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        scope.enter(floatType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
        scope.enter(doubleType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
        scope.enter(booleanType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
        scope.enter(errType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
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
   440
        // 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
   441
        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
   442
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        classes.put(predefClass.fullname, predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        reader = ClassReader.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        reader.init(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
        // Enter predefined classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
        objectType = enterClass("java.lang.Object");
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        classType = enterClass("java.lang.Class");
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        stringType = enterClass("java.lang.String");
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        stringBufferType = enterClass("java.lang.StringBuffer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        stringBuilderType = enterClass("java.lang.StringBuilder");
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
        cloneableType = enterClass("java.lang.Cloneable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
        throwableType = enterClass("java.lang.Throwable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
        serializableType = enterClass("java.io.Serializable");
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
   457
        methodHandleType = enterClass("java.lang.invoke.MethodHandle");
14046
8ef5d5b19998 7194586: Add back-end support for invokedynamic
mcimadamore
parents: 13844
diff changeset
   458
        methodTypeType = enterClass("java.lang.invoke.MethodType");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        errorType = enterClass("java.lang.Error");
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
        illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   461
        interruptedExceptionType = enterClass("java.lang.InterruptedException");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
        exceptionType = enterClass("java.lang.Exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
        runtimeExceptionType = enterClass("java.lang.RuntimeException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
        assertionErrorType = enterClass("java.lang.AssertionError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
        cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        annotationType = enterClass("java.lang.annotation.Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        classLoaderType = enterClass("java.lang.ClassLoader");
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        enumSym = reader.enterClass(names.java_lang_Enum);
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
        enumFinalFinalize =
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
            new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
                             names.finalize,
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
                             new MethodType(List.<Type>nil(), voidType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
                                            List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
                             enumSym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
        listType = enterClass("java.util.List");
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
        collectionsType = enterClass("java.util.Collections");
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
        comparableType = enterClass("java.lang.Comparable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        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
   482
        iterableType = target.hasIterable()
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            ? enterClass("java.lang.Iterable")
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            : enterClass("java.util.Collection");
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
        iteratorType = enterClass("java.util.Iterator");
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
        annotationTargetType = enterClass("java.lang.annotation.Target");
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
        overrideType = enterClass("java.lang.Override");
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
        retentionType = enterClass("java.lang.annotation.Retention");
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
        deprecatedType = enterClass("java.lang.Deprecated");
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
        suppressWarningsType = enterClass("java.lang.SuppressWarnings");
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
        inheritedType = enterClass("java.lang.annotation.Inherited");
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   492
        containedByType = enterClass("java.lang.annotation.ContainedBy");
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   493
        containerForType = enterClass("java.lang.annotation.ContainerFor");
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   494
        documentedType = enterClass("java.lang.annotation.Documented");
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 12335
diff changeset
   495
        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
   496
        systemType = enterClass("java.lang.System");
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   497
        autoCloseableType = enterClass("java.lang.AutoCloseable");
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   498
        autoCloseableClose = new MethodSymbol(PUBLIC,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   499
                             names.close,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   500
                             new MethodType(List.<Type>nil(), voidType,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   501
                                            List.of(exceptionType), methodClass),
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   502
                             autoCloseableType.tsym);
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   503
        trustMeType = enterClass("java.lang.SafeVarargs");
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   504
        nativeHeaderType = enterClass("javax.tools.annotation.GenerateNativeHeader");
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   505
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   506
        synthesizeEmptyInterfaceIfMissing(autoCloseableType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   507
        synthesizeEmptyInterfaceIfMissing(cloneableType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   508
        synthesizeEmptyInterfaceIfMissing(serializableType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   509
        synthesizeBoxTypeIfMissing(doubleType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   510
        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
   511
        synthesizeBoxTypeIfMissing(voidType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5847
diff changeset
   513
        // Enter a synthetic class that is used to mark internal
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
        // proprietary classes in ct.sym.  This class does not have a
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
        // class file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
        ClassType proprietaryType = (ClassType)enterClass("sun.Proprietary+Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
        this.proprietaryType = proprietaryType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        ClassSymbol proprietarySymbol = (ClassSymbol)proprietaryType.tsym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
        proprietarySymbol.completer = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
        proprietarySymbol.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
        proprietarySymbol.erasure_field = proprietaryType;
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8241
diff changeset
   522
        proprietarySymbol.members_field = new Scope(proprietarySymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
        proprietaryType.typarams_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
        proprietaryType.allparams_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
        proprietaryType.supertype_field = annotationType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
        proprietaryType.interfaces_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        // Enter a class for arrays.
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
        // The class implements java.lang.Cloneable and java.io.Serializable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        // It has a final length field and a clone method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
        ClassType arrayClassType = (ClassType)arrayClass.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
        arrayClassType.supertype_field = objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
        arrayClassType.interfaces_field = List.of(cloneableType, serializableType);
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8241
diff changeset
   534
        arrayClass.members_field = new Scope(arrayClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
        lengthVar = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
            PUBLIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
            names.length,
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
            intType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
        arrayClass.members().enter(lengthVar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
        arrayCloneMethod = new MethodSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
            PUBLIC,
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
            names.clone,
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
            new MethodType(List.<Type>nil(), objectType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
                           List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
        arrayClass.members().enter(arrayCloneMethod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
        // Enter operators.
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
        enterUnop("+", doubleType, doubleType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        enterUnop("+", floatType, floatType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
        enterUnop("+", longType, longType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
        enterUnop("+", intType, intType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
        enterUnop("-", doubleType, doubleType, dneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
        enterUnop("-", floatType, floatType, fneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
        enterUnop("-", longType, longType, lneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        enterUnop("-", intType, intType, ineg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        enterUnop("~", longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
        enterUnop("~", intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
        enterUnop("++", doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
        enterUnop("++", floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
        enterUnop("++", longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
        enterUnop("++", intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
        enterUnop("++", charType, charType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
        enterUnop("++", shortType, shortType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
        enterUnop("++", byteType, byteType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
        enterUnop("--", doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
        enterUnop("--", floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        enterUnop("--", longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        enterUnop("--", intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
        enterUnop("--", charType, charType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
        enterUnop("--", shortType, shortType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
        enterUnop("--", byteType, byteType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        enterUnop("!", booleanType, booleanType, bool_not);
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
        nullcheck = enterUnop("<*nullchk*>", objectType, objectType, nullchk);
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
        // string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        enterBinop("+", stringType, objectType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
        enterBinop("+", objectType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
        enterBinop("+", stringType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
        enterBinop("+", stringType, intType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
        enterBinop("+", stringType, longType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
        enterBinop("+", stringType, floatType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
        enterBinop("+", stringType, doubleType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
        enterBinop("+", stringType, booleanType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
        enterBinop("+", stringType, botType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
        enterBinop("+", intType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
        enterBinop("+", longType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
        enterBinop("+", floatType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        enterBinop("+", doubleType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
        enterBinop("+", booleanType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        enterBinop("+", botType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
        // these errors would otherwise be matched as string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
        enterBinop("+", botType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
        enterBinop("+", botType, intType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
        enterBinop("+", botType, longType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
        enterBinop("+", botType, floatType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
        enterBinop("+", botType, doubleType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
        enterBinop("+", botType, booleanType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
        enterBinop("+", botType, objectType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
        enterBinop("+", intType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
        enterBinop("+", longType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
        enterBinop("+", floatType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        enterBinop("+", doubleType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        enterBinop("+", booleanType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
        enterBinop("+", objectType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        enterBinop("+", doubleType, doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
        enterBinop("+", floatType, floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
        enterBinop("+", longType, longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
        enterBinop("+", intType, intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
        enterBinop("-", doubleType, doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        enterBinop("-", floatType, floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
        enterBinop("-", longType, longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
        enterBinop("-", intType, intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
        enterBinop("*", doubleType, doubleType, doubleType, dmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
        enterBinop("*", floatType, floatType, floatType, fmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
        enterBinop("*", longType, longType, longType, lmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
        enterBinop("*", intType, intType, intType, imul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
        enterBinop("/", doubleType, doubleType, doubleType, ddiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        enterBinop("/", floatType, floatType, floatType, fdiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
        enterBinop("/", longType, longType, longType, ldiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
        enterBinop("/", intType, intType, intType, idiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        enterBinop("%", doubleType, doubleType, doubleType, dmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
        enterBinop("%", floatType, floatType, floatType, fmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        enterBinop("%", longType, longType, longType, lmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        enterBinop("%", intType, intType, intType, imod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
        enterBinop("&", booleanType, booleanType, booleanType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
        enterBinop("&", longType, longType, longType, land);
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
        enterBinop("&", intType, intType, intType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
        enterBinop("|", booleanType, booleanType, booleanType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
        enterBinop("|", longType, longType, longType, lor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
        enterBinop("|", intType, intType, intType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
        enterBinop("^", booleanType, booleanType, booleanType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
        enterBinop("^", longType, longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        enterBinop("^", intType, intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        enterBinop("<<", longType, longType, longType, lshll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        enterBinop("<<", intType, longType, intType, ishll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
        enterBinop("<<", longType, intType, longType, lshl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
        enterBinop("<<", intType, intType, intType, ishl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        enterBinop(">>", longType, longType, longType, lshrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        enterBinop(">>", intType, longType, intType, ishrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
        enterBinop(">>", longType, intType, longType, lshr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
        enterBinop(">>", intType, intType, intType, ishr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
        enterBinop(">>>", longType, longType, longType, lushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        enterBinop(">>>", intType, longType, intType, iushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
        enterBinop(">>>", longType, intType, longType, lushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
        enterBinop(">>>", intType, intType, intType, iushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
        enterBinop("<", doubleType, doubleType, booleanType, dcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
        enterBinop("<", floatType, floatType, booleanType, fcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
        enterBinop("<", longType, longType, booleanType, lcmp, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
        enterBinop("<", intType, intType, booleanType, if_icmplt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
        enterBinop(">", doubleType, doubleType, booleanType, dcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
        enterBinop(">", floatType, floatType, booleanType, fcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
        enterBinop(">", longType, longType, booleanType, lcmp, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
        enterBinop(">", intType, intType, booleanType, if_icmpgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
        enterBinop("<=", doubleType, doubleType, booleanType, dcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
        enterBinop("<=", floatType, floatType, booleanType, fcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
        enterBinop("<=", longType, longType, booleanType, lcmp, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
        enterBinop("<=", intType, intType, booleanType, if_icmple);
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
        enterBinop(">=", doubleType, doubleType, booleanType, dcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
        enterBinop(">=", floatType, floatType, booleanType, fcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
        enterBinop(">=", longType, longType, booleanType, lcmp, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
        enterBinop(">=", intType, intType, booleanType, if_icmpge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
        enterBinop("==", objectType, objectType, booleanType, if_acmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        enterBinop("==", booleanType, booleanType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
        enterBinop("==", doubleType, doubleType, booleanType, dcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
        enterBinop("==", floatType, floatType, booleanType, fcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
        enterBinop("==", longType, longType, booleanType, lcmp, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
        enterBinop("==", intType, intType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
        enterBinop("!=", objectType, objectType, booleanType, if_acmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
        enterBinop("!=", booleanType, booleanType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
        enterBinop("!=", doubleType, doubleType, booleanType, dcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
        enterBinop("!=", floatType, floatType, booleanType, fcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
        enterBinop("!=", longType, longType, booleanType, lcmp, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
        enterBinop("!=", intType, intType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
        enterBinop("&&", booleanType, booleanType, booleanType, bool_and);
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
        enterBinop("||", booleanType, booleanType, booleanType, bool_or);
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
}