langtools/src/share/classes/com/sun/tools/javac/code/Symtab.java
author jjg
Tue, 13 Mar 2012 15:43:40 -0700
changeset 12213 516b112d6c68
parent 9082 53409a3a93f8
child 12335 4725d88691dd
permissions -rw-r--r--
7150368: javac should include basic ability to generate native headers Reviewed-by: mcimadamore, darcy, ohrstrom
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.*;
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
    29
import javax.lang.model.type.TypeVisitor;
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
    30
import javax.lang.model.element.ElementVisitor;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.jvm.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import static com.sun.tools.javac.jvm.ByteCodes.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import static com.sun.tools.javac.code.Flags.*;
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;
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   129
    public final Type nativeHeaderType;
5736
ee0850472ca1 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 3555
diff changeset
   130
    public final Type polymorphicSignatureType;
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;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    /** The symbol representing the length field of an array.
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    public final VarSymbol lengthVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    /** The null check operator. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public final OperatorSymbol nullcheck;
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /** The symbol representing the final finalize method on enums */
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    public final MethodSymbol enumFinalFinalize;
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   171
    /** 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
   172
    public final MethodSymbol autoCloseableClose;
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   173
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    /** The predefined type that belongs to a tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public final Type[] typeOfTag = new Type[TypeTags.TypeTagCount];
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    /** The name of the class that belongs to a basix type tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public final Name[] boxedName = new Name[TypeTags.TypeTagCount];
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /** A hashtable containing the encountered top-level and member classes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     *  indexed by flat names. The table does not contain local classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     *  It should be updated from the outside to reflect classes defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    public final Map<Name, ClassSymbol> classes = new HashMap<Name, ClassSymbol>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /** A hashtable containing the encountered packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     *  the table should be updated from outside to reflect packages defined
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *  by compiled source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    public final Map<Name, PackageSymbol> packages = new HashMap<Name, PackageSymbol>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public void initType(Type type, ClassSymbol c) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        type.tsym = c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        typeOfTag[type.tag] = type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    public void initType(Type type, String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        initType(
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            new ClassSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
                PUBLIC, names.fromString(name), type, rootPackage));
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    public void initType(Type type, String name, String bname) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        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
   209
            boxedName[type.tag] = names.fromString("java.lang." + bname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    /** The class symbol that owns all predefined symbols.
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    public final ClassSymbol predefClass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    /** Enter a constant into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     *  @param name   The constant's name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     *  @param type   The constant's type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    private VarSymbol enterConstant(String name, Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
        VarSymbol c = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            PUBLIC | STATIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            names.fromString(name),
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
            type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
            predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        c.setData(type.constValue());
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        predefClass.members().enter(c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        return c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    /** Enter a binary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     *  @param left     The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
     *  @param right    The type of the left operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                            int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        predefClass.members().enter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            new OperatorSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                names.fromString(name),
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                new MethodType(List.of(left, right), res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                               List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                predefClass));
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
    /** Enter a binary operation, as above but with two opcodes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
     *  which get encoded as (opcode1 << ByteCodeTags.preShift) + opcode2.
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     *  @param opcode1     First opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     *  @param opcode2     Second opcode.
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    private void enterBinop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
                            Type left, Type right, Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
                            int opcode1, int opcode2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
        enterBinop(
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            name, left, right, res, (opcode1 << ByteCodes.preShift) | opcode2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
    /** Enter a unary operation into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     *  @param name     The name of the operator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     *  @param arg      The type of the operand.
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     *  @param res      The operation's result type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     *  @param opcode   The operation's bytecode instruction.
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
    private OperatorSymbol enterUnop(String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
                                     Type arg,
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
                                     Type res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
                                     int opcode) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
        OperatorSymbol sym =
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            new OperatorSymbol(names.fromString(name),
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
                               new MethodType(List.of(arg),
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
                                              res,
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
                                              List.<Type>nil(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
                                              methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
                               opcode,
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
                               predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        predefClass.members().enter(sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        return sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
    /** Enter a class into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
     *  @param    The name of the class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
    private Type enterClass(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        return reader.enterClass(names.fromString(s)).type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   291
    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
   292
        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
   293
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   294
            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
   295
                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
   296
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   297
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   298
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   299
                        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
   300
                        ((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
   301
                    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   302
                }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   303
            };
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   304
        }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   305
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   306
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   307
    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
   308
        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
   309
        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
   310
        if (completer != null) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   311
            sym.completer = new Completer() {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   312
                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
   313
                    try {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   314
                        completer.complete(sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   315
                    } catch (CompletionFailure e) {
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   316
                        sym.flags_field |= PUBLIC;
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   317
                        ((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
   318
                        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
   319
                        MethodSymbol boxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   320
                            new MethodSymbol(PUBLIC | STATIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   321
                                n,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   322
                                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
   323
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   324
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   325
                        sym.members().enter(boxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   326
                        MethodSymbol unboxMethod =
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   327
                            new MethodSymbol(PUBLIC,
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   328
                                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
   329
                                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
   330
                                    List.<Type>nil(), methodClass),
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   331
                                sym);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   332
                        sym.members().enter(unboxMethod);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   333
                    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   334
                }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   335
            };
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   336
        }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   337
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   338
    }
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   339
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
    /** Constructor; enters all predefined identifiers and operators
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
     *  into symbol table.
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
    protected Symtab(Context context) throws CompletionFailure {
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
        context.put(symtabKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1257
diff changeset
   346
        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
   347
        target = Target.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
        // Create the unknown type
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   350
        unknownType = new Type(TypeTags.UNKNOWN, null) {
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   351
            @Override
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   352
            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
   353
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   354
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   355
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        // create the basic builtin symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        rootPackage = new PackageSymbol(names.empty, null);
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1264
diff changeset
   359
        final JavacMessages messages = JavacMessages.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
        unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
                public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
                    return messages.getLocalizedString("compiler.misc.unnamed.package");
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
            };
8621
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   365
        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
   366
            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
   367
                return v.visitUnknown(this, p);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   368
            }
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   369
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        noSymbol.kind = Kinds.NIL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
        // create the error symbols
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
        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
   374
        errType = new ErrorType(errSymbol, Type.noType);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   375
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   376
        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
   377
        unknownSymbol.members_field = new Scope.ErrorScope(unknownSymbol);
ce0bce60cffc 7021183: 269: assertion failure getting enclosing element of an undefined name
jjg
parents: 8242
diff changeset
   378
        unknownSymbol.type = unknownType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
        // initialize builtin types
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        initType(byteType, "byte", "Byte");
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
        initType(shortType, "short", "Short");
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
        initType(charType, "char", "Character");
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        initType(intType, "int", "Integer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
        initType(longType, "long", "Long");
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
        initType(floatType, "float", "Float");
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
        initType(doubleType, "double", "Double");
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
        initType(booleanType, "boolean", "Boolean");
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
        initType(voidType, "void", "Void");
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
        initType(botType, "<nulltype>");
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        initType(errType, errSymbol);
6594
d43f068fba19 6970584: Flow.java should be more error-friendly
mcimadamore
parents: 6148
diff changeset
   392
        initType(unknownType, unknownSymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
        // the builtin class of all arrays
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
        arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
        // VGJ
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
        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
   399
        boundClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
        // the builtin class of all methods
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        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
   403
        methodClass.members_field = new Scope.ErrorScope(boundClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        // Create class to hold all predefined constants and operations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        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
   407
        Scope scope = new Scope(predefClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
        predefClass.members_field = scope;
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
        // Enter symbols for basic types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
        scope.enter(byteType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        scope.enter(shortType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
        scope.enter(charType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        scope.enter(intType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        scope.enter(longType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        scope.enter(floatType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        scope.enter(doubleType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
        scope.enter(booleanType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        scope.enter(errType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
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
   421
        // 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
   422
        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
   423
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        classes.put(predefClass.fullname, predefClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
        reader = ClassReader.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        reader.init(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
        // Enter predefined classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
        objectType = enterClass("java.lang.Object");
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
        classType = enterClass("java.lang.Class");
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        stringType = enterClass("java.lang.String");
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        stringBufferType = enterClass("java.lang.StringBuffer");
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        stringBuilderType = enterClass("java.lang.StringBuilder");
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        cloneableType = enterClass("java.lang.Cloneable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
        throwableType = enterClass("java.lang.Throwable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
        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
   438
        methodHandleType = enterClass("java.lang.invoke.MethodHandle");
4161b56e0d20 7017414: before the move of JSR 292 to package java.lang.invoke, javac must recognize the new package
mcimadamore
parents: 8036
diff changeset
   439
        polymorphicSignatureType = enterClass("java.lang.invoke.MethodHandle$PolymorphicSignature");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
        errorType = enterClass("java.lang.Error");
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   442
        interruptedExceptionType = enterClass("java.lang.InterruptedException");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        exceptionType = enterClass("java.lang.Exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        runtimeExceptionType = enterClass("java.lang.RuntimeException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
        assertionErrorType = enterClass("java.lang.AssertionError");
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
        cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        annotationType = enterClass("java.lang.annotation.Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        classLoaderType = enterClass("java.lang.ClassLoader");
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        enumSym = reader.enterClass(names.java_lang_Enum);
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        enumFinalFinalize =
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
                             names.finalize,
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
                             new MethodType(List.<Type>nil(), voidType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
                                            List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
                             enumSym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        listType = enterClass("java.util.List");
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
        collectionsType = enterClass("java.util.Collections");
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
        comparableType = enterClass("java.lang.Comparable");
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
        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
   463
        iterableType = target.hasIterable()
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
            ? enterClass("java.lang.Iterable")
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
            : enterClass("java.util.Collection");
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        iteratorType = enterClass("java.util.Iterator");
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
        annotationTargetType = enterClass("java.lang.annotation.Target");
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
        overrideType = enterClass("java.lang.Override");
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        retentionType = enterClass("java.lang.annotation.Retention");
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        deprecatedType = enterClass("java.lang.Deprecated");
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        suppressWarningsType = enterClass("java.lang.SuppressWarnings");
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
        inheritedType = enterClass("java.lang.annotation.Inherited");
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   473
        systemType = enterClass("java.lang.System");
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   474
        autoCloseableType = enterClass("java.lang.AutoCloseable");
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   475
        autoCloseableClose = new MethodSymbol(PUBLIC,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   476
                             names.close,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   477
                             new MethodType(List.<Type>nil(), voidType,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   478
                                            List.of(exceptionType), methodClass),
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5857
diff changeset
   479
                             autoCloseableType.tsym);
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 6709
diff changeset
   480
        trustMeType = enterClass("java.lang.SafeVarargs");
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 9082
diff changeset
   481
        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
   482
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 8621
diff changeset
   483
        synthesizeEmptyInterfaceIfMissing(autoCloseableType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   484
        synthesizeEmptyInterfaceIfMissing(cloneableType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   485
        synthesizeEmptyInterfaceIfMissing(serializableType);
5736
ee0850472ca1 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 3555
diff changeset
   486
        synthesizeEmptyInterfaceIfMissing(polymorphicSignatureType);
1037
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   487
        synthesizeBoxTypeIfMissing(doubleType);
c6b315a34dc6 6627362: javac generates code that uses array.clone, which is not available on JavaCard
jjg
parents: 10
diff changeset
   488
        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
   489
        synthesizeBoxTypeIfMissing(voidType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5847
diff changeset
   491
        // Enter a synthetic class that is used to mark internal
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
        // proprietary classes in ct.sym.  This class does not have a
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
        // class file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        ClassType proprietaryType = (ClassType)enterClass("sun.Proprietary+Annotation");
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        this.proprietaryType = proprietaryType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        ClassSymbol proprietarySymbol = (ClassSymbol)proprietaryType.tsym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
        proprietarySymbol.completer = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
        proprietarySymbol.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
        proprietarySymbol.erasure_field = proprietaryType;
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8241
diff changeset
   500
        proprietarySymbol.members_field = new Scope(proprietarySymbol);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
        proprietaryType.typarams_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        proprietaryType.allparams_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
        proprietaryType.supertype_field = annotationType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        proprietaryType.interfaces_field = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
        // Enter a class for arrays.
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
        // The class implements java.lang.Cloneable and java.io.Serializable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
        // It has a final length field and a clone method.
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
        ClassType arrayClassType = (ClassType)arrayClass.type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
        arrayClassType.supertype_field = objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
        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
   512
        arrayClass.members_field = new Scope(arrayClass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
        lengthVar = new VarSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
            PUBLIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
            names.length,
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
            intType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
        arrayClass.members().enter(lengthVar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
        arrayCloneMethod = new MethodSymbol(
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
            PUBLIC,
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
            names.clone,
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
            new MethodType(List.<Type>nil(), objectType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
                           List.<Type>nil(), methodClass),
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
            arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
        arrayClass.members().enter(arrayCloneMethod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
        // Enter operators.
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        enterUnop("+", doubleType, doubleType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
        enterUnop("+", floatType, floatType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        enterUnop("+", longType, longType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
        enterUnop("+", intType, intType, nop);
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
        enterUnop("-", doubleType, doubleType, dneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
        enterUnop("-", floatType, floatType, fneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
        enterUnop("-", longType, longType, lneg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        enterUnop("-", intType, intType, ineg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
        enterUnop("~", longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
        enterUnop("~", intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
        enterUnop("++", doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
        enterUnop("++", floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
        enterUnop("++", longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
        enterUnop("++", intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
        enterUnop("++", charType, charType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
        enterUnop("++", shortType, shortType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
        enterUnop("++", byteType, byteType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
        enterUnop("--", doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
        enterUnop("--", floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        enterUnop("--", longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
        enterUnop("--", intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
        enterUnop("--", charType, charType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
        enterUnop("--", shortType, shortType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
        enterUnop("--", byteType, byteType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
        enterUnop("!", booleanType, booleanType, bool_not);
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        nullcheck = enterUnop("<*nullchk*>", objectType, objectType, nullchk);
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        // string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
        enterBinop("+", stringType, objectType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
        enterBinop("+", objectType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
        enterBinop("+", stringType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
        enterBinop("+", stringType, intType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
        enterBinop("+", stringType, longType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
        enterBinop("+", stringType, floatType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
        enterBinop("+", stringType, doubleType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
        enterBinop("+", stringType, booleanType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
        enterBinop("+", stringType, botType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
        enterBinop("+", intType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
        enterBinop("+", longType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
        enterBinop("+", floatType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        enterBinop("+", doubleType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        enterBinop("+", booleanType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
        enterBinop("+", botType, stringType, stringType, string_add);
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
        // these errors would otherwise be matched as string concatenation
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
        enterBinop("+", botType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        enterBinop("+", botType, intType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
        enterBinop("+", botType, longType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
        enterBinop("+", botType, floatType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
        enterBinop("+", botType, doubleType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        enterBinop("+", botType, booleanType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
        enterBinop("+", botType, objectType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
        enterBinop("+", intType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
        enterBinop("+", longType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
        enterBinop("+", floatType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
        enterBinop("+", doubleType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
        enterBinop("+", booleanType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
        enterBinop("+", objectType, botType, botType, error);
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
        enterBinop("+", doubleType, doubleType, doubleType, dadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
        enterBinop("+", floatType, floatType, floatType, fadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
        enterBinop("+", longType, longType, longType, ladd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        enterBinop("+", intType, intType, intType, iadd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        enterBinop("-", doubleType, doubleType, doubleType, dsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
        enterBinop("-", floatType, floatType, floatType, fsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
        enterBinop("-", longType, longType, longType, lsub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
        enterBinop("-", intType, intType, intType, isub);
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
        enterBinop("*", doubleType, doubleType, doubleType, dmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
        enterBinop("*", floatType, floatType, floatType, fmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
        enterBinop("*", longType, longType, longType, lmul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
        enterBinop("*", intType, intType, intType, imul);
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
        enterBinop("/", doubleType, doubleType, doubleType, ddiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
        enterBinop("/", floatType, floatType, floatType, fdiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
        enterBinop("/", longType, longType, longType, ldiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        enterBinop("/", intType, intType, intType, idiv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
        enterBinop("%", doubleType, doubleType, doubleType, dmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
        enterBinop("%", floatType, floatType, floatType, fmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        enterBinop("%", longType, longType, longType, lmod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
        enterBinop("%", intType, intType, intType, imod);
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
        enterBinop("&", booleanType, booleanType, booleanType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
        enterBinop("&", longType, longType, longType, land);
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
        enterBinop("&", intType, intType, intType, iand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
        enterBinop("|", booleanType, booleanType, booleanType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
        enterBinop("|", longType, longType, longType, lor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
        enterBinop("|", intType, intType, intType, ior);
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
        enterBinop("^", booleanType, booleanType, booleanType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
        enterBinop("^", longType, longType, longType, lxor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
        enterBinop("^", intType, intType, intType, ixor);
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
        enterBinop("<<", longType, longType, longType, lshll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        enterBinop("<<", intType, longType, intType, ishll);
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
        enterBinop("<<", longType, intType, longType, lshl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
        enterBinop("<<", intType, intType, intType, ishl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        enterBinop(">>", longType, longType, longType, lshrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
        enterBinop(">>", intType, longType, intType, ishrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        enterBinop(">>", longType, intType, longType, lshr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        enterBinop(">>", intType, intType, intType, ishr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
        enterBinop(">>>", longType, longType, longType, lushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
        enterBinop(">>>", intType, longType, intType, iushrl);
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
        enterBinop(">>>", longType, intType, longType, lushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
        enterBinop(">>>", intType, intType, intType, iushr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
        enterBinop("<", doubleType, doubleType, booleanType, dcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
        enterBinop("<", floatType, floatType, booleanType, fcmpg, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
        enterBinop("<", longType, longType, booleanType, lcmp, iflt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
        enterBinop("<", intType, intType, booleanType, if_icmplt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        enterBinop(">", doubleType, doubleType, booleanType, dcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
        enterBinop(">", floatType, floatType, booleanType, fcmpl, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        enterBinop(">", longType, longType, booleanType, lcmp, ifgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        enterBinop(">", intType, intType, booleanType, if_icmpgt);
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
        enterBinop("<=", doubleType, doubleType, booleanType, dcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        enterBinop("<=", floatType, floatType, booleanType, fcmpg, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        enterBinop("<=", longType, longType, booleanType, lcmp, ifle);
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        enterBinop("<=", intType, intType, booleanType, if_icmple);
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
        enterBinop(">=", doubleType, doubleType, booleanType, dcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
        enterBinop(">=", floatType, floatType, booleanType, fcmpl, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
        enterBinop(">=", longType, longType, booleanType, lcmp, ifge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        enterBinop(">=", intType, intType, booleanType, if_icmpge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
        enterBinop("==", objectType, objectType, booleanType, if_acmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
        enterBinop("==", booleanType, booleanType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
        enterBinop("==", doubleType, doubleType, booleanType, dcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
        enterBinop("==", floatType, floatType, booleanType, fcmpl, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
        enterBinop("==", longType, longType, booleanType, lcmp, ifeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
        enterBinop("==", intType, intType, booleanType, if_icmpeq);
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
        enterBinop("!=", objectType, objectType, booleanType, if_acmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
        enterBinop("!=", booleanType, booleanType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
        enterBinop("!=", doubleType, doubleType, booleanType, dcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
        enterBinop("!=", floatType, floatType, booleanType, fcmpl, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
        enterBinop("!=", longType, longType, booleanType, lcmp, ifne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
        enterBinop("!=", intType, intType, booleanType, if_icmpne);
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
        enterBinop("&&", booleanType, booleanType, booleanType, bool_and);
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
        enterBinop("||", booleanType, booleanType, booleanType, bool_or);
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
}