src/share/classes/com/sun/tools/javac/code/Symtab.java

Fri, 01 Aug 2008 15:23:18 -0700

author
jjg
date
Fri, 01 Aug 2008 15:23:18 -0700
changeset 86
3437676858e3
parent 1
9a66ca7c79fa
child 110
91eea580fbe9
permissions
-rw-r--r--

6627362: javac generates code that uses array.clone, which is not available on JavaCard
6627364: javac needs Float and Double on the bootclasspath even when not directly used
6627366: javac needs Cloneable and Serializable on the classpath even when not directly used
Reviewed-by: darcy

duke@1 1 /*
duke@1 2 * Copyright 1999-2006 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation. Sun designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
duke@1 9 * by Sun in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
duke@1 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 * have any questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.javac.code;
duke@1 27
duke@1 28 import java.util.*;
duke@1 29
duke@1 30 import com.sun.tools.javac.util.*;
duke@1 31 import com.sun.tools.javac.util.List;
duke@1 32 import com.sun.tools.javac.code.Symbol.*;
duke@1 33 import com.sun.tools.javac.code.Type.*;
duke@1 34 import com.sun.tools.javac.jvm.*;
duke@1 35
duke@1 36 import static com.sun.tools.javac.jvm.ByteCodes.*;
duke@1 37 import static com.sun.tools.javac.code.Flags.*;
duke@1 38
duke@1 39 /** A class that defines all predefined constants and operators
duke@1 40 * as well as special classes such as java.lang.Object, which need
duke@1 41 * to be known to the compiler. All symbols are held in instance
duke@1 42 * fields. This makes it possible to work in multiple concurrent
duke@1 43 * projects, which might use different class files for library classes.
duke@1 44 *
duke@1 45 * <p><b>This is NOT part of any API supported by Sun Microsystems. If
duke@1 46 * you write code that depends on this, you do so at your own risk.
duke@1 47 * This code and its internal interfaces are subject to change or
duke@1 48 * deletion without notice.</b>
duke@1 49 */
duke@1 50 public class Symtab {
duke@1 51 /** The context key for the symbol table. */
duke@1 52 protected static final Context.Key<Symtab> symtabKey =
duke@1 53 new Context.Key<Symtab>();
duke@1 54
duke@1 55 /** Get the symbol table instance. */
duke@1 56 public static Symtab instance(Context context) {
duke@1 57 Symtab instance = context.get(symtabKey);
duke@1 58 if (instance == null)
duke@1 59 instance = new Symtab(context);
duke@1 60 return instance;
duke@1 61 }
duke@1 62
duke@1 63 /** Builtin types.
duke@1 64 */
duke@1 65 public final Type byteType = new Type(TypeTags.BYTE, null);
duke@1 66 public final Type charType = new Type(TypeTags.CHAR, null);
duke@1 67 public final Type shortType = new Type(TypeTags.SHORT, null);
duke@1 68 public final Type intType = new Type(TypeTags.INT, null);
duke@1 69 public final Type longType = new Type(TypeTags.LONG, null);
duke@1 70 public final Type floatType = new Type(TypeTags.FLOAT, null);
duke@1 71 public final Type doubleType = new Type(TypeTags.DOUBLE, null);
duke@1 72 public final Type booleanType = new Type(TypeTags.BOOLEAN, null);
duke@1 73 public final Type botType = new BottomType();
duke@1 74 public final JCNoType voidType = new JCNoType(TypeTags.VOID);
duke@1 75
duke@1 76 private final Name.Table names;
duke@1 77 private final ClassReader reader;
jjg@86 78 private final Target target;
duke@1 79
duke@1 80 /** A symbol for the root package.
duke@1 81 */
duke@1 82 public final PackageSymbol rootPackage;
duke@1 83
duke@1 84 /** A symbol for the unnamed package.
duke@1 85 */
duke@1 86 public final PackageSymbol unnamedPackage;
duke@1 87
duke@1 88 /** A symbol that stands for a missing symbol.
duke@1 89 */
duke@1 90 public final TypeSymbol noSymbol;
duke@1 91
duke@1 92 /** The error symbol.
duke@1 93 */
duke@1 94 public final ClassSymbol errSymbol;
duke@1 95
duke@1 96 /** An instance of the error type.
duke@1 97 */
duke@1 98 public final Type errType;
duke@1 99
duke@1 100 /** A value for the unknown type. */
duke@1 101 public final Type unknownType;
duke@1 102
duke@1 103 /** The builtin type of all arrays. */
duke@1 104 public final ClassSymbol arrayClass;
duke@1 105 public final MethodSymbol arrayCloneMethod;
duke@1 106
duke@1 107 /** VGJ: The (singleton) type of all bound types. */
duke@1 108 public final ClassSymbol boundClass;
duke@1 109
duke@1 110 /** The builtin type of all methods. */
duke@1 111 public final ClassSymbol methodClass;
duke@1 112
duke@1 113 /** Predefined types.
duke@1 114 */
duke@1 115 public final Type objectType;
duke@1 116 public final Type classType;
duke@1 117 public final Type classLoaderType;
duke@1 118 public final Type stringType;
duke@1 119 public final Type stringBufferType;
duke@1 120 public final Type stringBuilderType;
duke@1 121 public final Type cloneableType;
duke@1 122 public final Type serializableType;
duke@1 123 public final Type throwableType;
duke@1 124 public final Type errorType;
duke@1 125 public final Type illegalArgumentExceptionType;
duke@1 126 public final Type exceptionType;
duke@1 127 public final Type runtimeExceptionType;
duke@1 128 public final Type classNotFoundExceptionType;
duke@1 129 public final Type noClassDefFoundErrorType;
duke@1 130 public final Type noSuchFieldErrorType;
duke@1 131 public final Type assertionErrorType;
duke@1 132 public final Type cloneNotSupportedExceptionType;
duke@1 133 public final Type annotationType;
duke@1 134 public final TypeSymbol enumSym;
duke@1 135 public final Type listType;
duke@1 136 public final Type collectionsType;
duke@1 137 public final Type comparableType;
duke@1 138 public final Type arraysType;
duke@1 139 public final Type iterableType;
duke@1 140 public final Type iteratorType;
duke@1 141 public final Type annotationTargetType;
duke@1 142 public final Type overrideType;
duke@1 143 public final Type retentionType;
duke@1 144 public final Type deprecatedType;
duke@1 145 public final Type suppressWarningsType;
duke@1 146 public final Type inheritedType;
duke@1 147 public final Type proprietaryType;
jjg@86 148 public final Type systemType;
duke@1 149
duke@1 150 /** The symbol representing the length field of an array.
duke@1 151 */
duke@1 152 public final VarSymbol lengthVar;
duke@1 153
duke@1 154 /** The null check operator. */
duke@1 155 public final OperatorSymbol nullcheck;
duke@1 156
duke@1 157 /** The symbol representing the final finalize method on enums */
duke@1 158 public final MethodSymbol enumFinalFinalize;
duke@1 159
duke@1 160 /** The predefined type that belongs to a tag.
duke@1 161 */
duke@1 162 public final Type[] typeOfTag = new Type[TypeTags.TypeTagCount];
duke@1 163
duke@1 164 /** The name of the class that belongs to a basix type tag.
duke@1 165 */
duke@1 166 public final Name[] boxedName = new Name[TypeTags.TypeTagCount];
duke@1 167
duke@1 168 /** A hashtable containing the encountered top-level and member classes,
duke@1 169 * indexed by flat names. The table does not contain local classes.
duke@1 170 * It should be updated from the outside to reflect classes defined
duke@1 171 * by compiled source files.
duke@1 172 */
duke@1 173 public final Map<Name, ClassSymbol> classes = new HashMap<Name, ClassSymbol>();
duke@1 174
duke@1 175 /** A hashtable containing the encountered packages.
duke@1 176 * the table should be updated from outside to reflect packages defined
duke@1 177 * by compiled source files.
duke@1 178 */
duke@1 179 public final Map<Name, PackageSymbol> packages = new HashMap<Name, PackageSymbol>();
duke@1 180
duke@1 181 public void initType(Type type, ClassSymbol c) {
duke@1 182 type.tsym = c;
duke@1 183 typeOfTag[type.tag] = type;
duke@1 184 }
duke@1 185
duke@1 186 public void initType(Type type, String name) {
duke@1 187 initType(
duke@1 188 type,
duke@1 189 new ClassSymbol(
duke@1 190 PUBLIC, names.fromString(name), type, rootPackage));
duke@1 191 }
duke@1 192
duke@1 193 public void initType(Type type, String name, String bname) {
duke@1 194 initType(type, name);
duke@1 195 boxedName[type.tag] = names.fromString("java.lang." + bname);
duke@1 196 }
duke@1 197
duke@1 198 /** The class symbol that owns all predefined symbols.
duke@1 199 */
duke@1 200 public final ClassSymbol predefClass;
duke@1 201
duke@1 202 /** Enter a constant into symbol table.
duke@1 203 * @param name The constant's name.
duke@1 204 * @param type The constant's type.
duke@1 205 */
duke@1 206 private VarSymbol enterConstant(String name, Type type) {
duke@1 207 VarSymbol c = new VarSymbol(
duke@1 208 PUBLIC | STATIC | FINAL,
duke@1 209 names.fromString(name),
duke@1 210 type,
duke@1 211 predefClass);
duke@1 212 c.setData(type.constValue());
duke@1 213 predefClass.members().enter(c);
duke@1 214 return c;
duke@1 215 }
duke@1 216
duke@1 217 /** Enter a binary operation into symbol table.
duke@1 218 * @param name The name of the operator.
duke@1 219 * @param left The type of the left operand.
duke@1 220 * @param right The type of the left operand.
duke@1 221 * @param res The operation's result type.
duke@1 222 * @param opcode The operation's bytecode instruction.
duke@1 223 */
duke@1 224 private void enterBinop(String name,
duke@1 225 Type left, Type right, Type res,
duke@1 226 int opcode) {
duke@1 227 predefClass.members().enter(
duke@1 228 new OperatorSymbol(
duke@1 229 names.fromString(name),
duke@1 230 new MethodType(List.of(left, right), res,
duke@1 231 List.<Type>nil(), methodClass),
duke@1 232 opcode,
duke@1 233 predefClass));
duke@1 234 }
duke@1 235
duke@1 236 /** Enter a binary operation, as above but with two opcodes,
duke@1 237 * which get encoded as (opcode1 << ByteCodeTags.preShift) + opcode2.
duke@1 238 * @param opcode1 First opcode.
duke@1 239 * @param opcode2 Second opcode.
duke@1 240 */
duke@1 241 private void enterBinop(String name,
duke@1 242 Type left, Type right, Type res,
duke@1 243 int opcode1, int opcode2) {
duke@1 244 enterBinop(
duke@1 245 name, left, right, res, (opcode1 << ByteCodes.preShift) | opcode2);
duke@1 246 }
duke@1 247
duke@1 248 /** Enter a unary operation into symbol table.
duke@1 249 * @param name The name of the operator.
duke@1 250 * @param arg The type of the operand.
duke@1 251 * @param res The operation's result type.
duke@1 252 * @param opcode The operation's bytecode instruction.
duke@1 253 */
duke@1 254 private OperatorSymbol enterUnop(String name,
duke@1 255 Type arg,
duke@1 256 Type res,
duke@1 257 int opcode) {
duke@1 258 OperatorSymbol sym =
duke@1 259 new OperatorSymbol(names.fromString(name),
duke@1 260 new MethodType(List.of(arg),
duke@1 261 res,
duke@1 262 List.<Type>nil(),
duke@1 263 methodClass),
duke@1 264 opcode,
duke@1 265 predefClass);
duke@1 266 predefClass.members().enter(sym);
duke@1 267 return sym;
duke@1 268 }
duke@1 269
duke@1 270 /** Enter a class into symbol table.
duke@1 271 * @param The name of the class.
duke@1 272 */
duke@1 273 private Type enterClass(String s) {
duke@1 274 return reader.enterClass(names.fromString(s)).type;
duke@1 275 }
duke@1 276
jjg@86 277 public void synthesizeEmptyInterfaceIfMissing(final Type type) {
jjg@86 278 final Completer completer = type.tsym.completer;
jjg@86 279 if (completer != null) {
jjg@86 280 type.tsym.completer = new Completer() {
jjg@86 281 public void complete(Symbol sym) throws CompletionFailure {
jjg@86 282 try {
jjg@86 283 completer.complete(sym);
jjg@86 284 } catch (CompletionFailure e) {
jjg@86 285 sym.flags_field |= (PUBLIC | INTERFACE);
jjg@86 286 ((ClassType) sym.type).supertype_field = objectType;
jjg@86 287 }
jjg@86 288 }
jjg@86 289 };
jjg@86 290 }
jjg@86 291 }
jjg@86 292
jjg@86 293 public void synthesizeBoxTypeIfMissing(final Type type) {
jjg@86 294 ClassSymbol sym = reader.enterClass(boxedName[type.tag]);
jjg@86 295 final Completer completer = sym.completer;
jjg@86 296 if (completer != null) {
jjg@86 297 sym.completer = new Completer() {
jjg@86 298 public void complete(Symbol sym) throws CompletionFailure {
jjg@86 299 try {
jjg@86 300 completer.complete(sym);
jjg@86 301 } catch (CompletionFailure e) {
jjg@86 302 sym.flags_field |= PUBLIC;
jjg@86 303 ((ClassType) sym.type).supertype_field = objectType;
jjg@86 304 Name n = target.boxWithConstructors() ? names.init : names.valueOf;
jjg@86 305 MethodSymbol boxMethod =
jjg@86 306 new MethodSymbol(PUBLIC | STATIC,
jjg@86 307 n,
jjg@86 308 new MethodType(List.of(type), sym.type,
jjg@86 309 List.<Type>nil(), methodClass),
jjg@86 310 sym);
jjg@86 311 sym.members().enter(boxMethod);
jjg@86 312 MethodSymbol unboxMethod =
jjg@86 313 new MethodSymbol(PUBLIC,
jjg@86 314 type.tsym.name.append(names.Value), // x.intValue()
jjg@86 315 new MethodType(List.<Type>nil(), type,
jjg@86 316 List.<Type>nil(), methodClass),
jjg@86 317 sym);
jjg@86 318 sym.members().enter(unboxMethod);
jjg@86 319 }
jjg@86 320 }
jjg@86 321 };
jjg@86 322 }
jjg@86 323
jjg@86 324 }
jjg@86 325
duke@1 326 /** Constructor; enters all predefined identifiers and operators
duke@1 327 * into symbol table.
duke@1 328 */
duke@1 329 protected Symtab(Context context) throws CompletionFailure {
duke@1 330 context.put(symtabKey, this);
duke@1 331
duke@1 332 names = Name.Table.instance(context);
jjg@86 333 target = Target.instance(context);
duke@1 334
duke@1 335 // Create the unknown type
duke@1 336 unknownType = new Type(TypeTags.UNKNOWN, null);
duke@1 337
duke@1 338 // create the basic builtin symbols
duke@1 339 rootPackage = new PackageSymbol(names.empty, null);
duke@1 340 final Messages messages = Messages.instance(context);
duke@1 341 unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
duke@1 342 public String toString() {
duke@1 343 return messages.getLocalizedString("compiler.misc.unnamed.package");
duke@1 344 }
duke@1 345 };
duke@1 346 noSymbol = new TypeSymbol(0, names.empty, Type.noType, rootPackage);
duke@1 347 noSymbol.kind = Kinds.NIL;
duke@1 348
duke@1 349 // create the error symbols
duke@1 350 errSymbol = new ClassSymbol(PUBLIC|STATIC|ACYCLIC, names.any, null, rootPackage);
duke@1 351 errType = new ErrorType(errSymbol);
duke@1 352
duke@1 353 // initialize builtin types
duke@1 354 initType(byteType, "byte", "Byte");
duke@1 355 initType(shortType, "short", "Short");
duke@1 356 initType(charType, "char", "Character");
duke@1 357 initType(intType, "int", "Integer");
duke@1 358 initType(longType, "long", "Long");
duke@1 359 initType(floatType, "float", "Float");
duke@1 360 initType(doubleType, "double", "Double");
duke@1 361 initType(booleanType, "boolean", "Boolean");
duke@1 362 initType(voidType, "void", "Void");
duke@1 363 initType(botType, "<nulltype>");
duke@1 364 initType(errType, errSymbol);
duke@1 365 initType(unknownType, "<any?>");
duke@1 366
duke@1 367 // the builtin class of all arrays
duke@1 368 arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
duke@1 369
duke@1 370 // VGJ
duke@1 371 boundClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Bound, noSymbol);
duke@1 372
duke@1 373 // the builtin class of all methods
duke@1 374 methodClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Method, noSymbol);
duke@1 375
duke@1 376 // Create class to hold all predefined constants and operations.
duke@1 377 predefClass = new ClassSymbol(PUBLIC|ACYCLIC, names.empty, rootPackage);
duke@1 378 Scope scope = new Scope(predefClass);
duke@1 379 predefClass.members_field = scope;
duke@1 380
duke@1 381 // Enter symbols for basic types.
duke@1 382 scope.enter(byteType.tsym);
duke@1 383 scope.enter(shortType.tsym);
duke@1 384 scope.enter(charType.tsym);
duke@1 385 scope.enter(intType.tsym);
duke@1 386 scope.enter(longType.tsym);
duke@1 387 scope.enter(floatType.tsym);
duke@1 388 scope.enter(doubleType.tsym);
duke@1 389 scope.enter(booleanType.tsym);
duke@1 390 scope.enter(errType.tsym);
duke@1 391
duke@1 392 classes.put(predefClass.fullname, predefClass);
duke@1 393
duke@1 394 reader = ClassReader.instance(context);
duke@1 395 reader.init(this);
duke@1 396
duke@1 397 // Enter predefined classes.
duke@1 398 objectType = enterClass("java.lang.Object");
duke@1 399 classType = enterClass("java.lang.Class");
duke@1 400 stringType = enterClass("java.lang.String");
duke@1 401 stringBufferType = enterClass("java.lang.StringBuffer");
duke@1 402 stringBuilderType = enterClass("java.lang.StringBuilder");
duke@1 403 cloneableType = enterClass("java.lang.Cloneable");
duke@1 404 throwableType = enterClass("java.lang.Throwable");
duke@1 405 serializableType = enterClass("java.io.Serializable");
duke@1 406 errorType = enterClass("java.lang.Error");
duke@1 407 illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
duke@1 408 exceptionType = enterClass("java.lang.Exception");
duke@1 409 runtimeExceptionType = enterClass("java.lang.RuntimeException");
duke@1 410 classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
duke@1 411 noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
duke@1 412 noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
duke@1 413 assertionErrorType = enterClass("java.lang.AssertionError");
duke@1 414 cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
duke@1 415 annotationType = enterClass("java.lang.annotation.Annotation");
duke@1 416 classLoaderType = enterClass("java.lang.ClassLoader");
duke@1 417 enumSym = reader.enterClass(names.java_lang_Enum);
duke@1 418 enumFinalFinalize =
duke@1 419 new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
duke@1 420 names.finalize,
duke@1 421 new MethodType(List.<Type>nil(), voidType,
duke@1 422 List.<Type>nil(), methodClass),
duke@1 423 enumSym);
duke@1 424 listType = enterClass("java.util.List");
duke@1 425 collectionsType = enterClass("java.util.Collections");
duke@1 426 comparableType = enterClass("java.lang.Comparable");
duke@1 427 arraysType = enterClass("java.util.Arrays");
jjg@86 428 iterableType = target.hasIterable()
duke@1 429 ? enterClass("java.lang.Iterable")
duke@1 430 : enterClass("java.util.Collection");
duke@1 431 iteratorType = enterClass("java.util.Iterator");
duke@1 432 annotationTargetType = enterClass("java.lang.annotation.Target");
duke@1 433 overrideType = enterClass("java.lang.Override");
duke@1 434 retentionType = enterClass("java.lang.annotation.Retention");
duke@1 435 deprecatedType = enterClass("java.lang.Deprecated");
duke@1 436 suppressWarningsType = enterClass("java.lang.SuppressWarnings");
duke@1 437 inheritedType = enterClass("java.lang.annotation.Inherited");
jjg@86 438 systemType = enterClass("java.lang.System");
jjg@86 439
jjg@86 440 synthesizeEmptyInterfaceIfMissing(cloneableType);
jjg@86 441 synthesizeEmptyInterfaceIfMissing(serializableType);
jjg@86 442 synthesizeBoxTypeIfMissing(doubleType);
jjg@86 443 synthesizeBoxTypeIfMissing(floatType);
duke@1 444
duke@1 445 // Enter a synthetic class that is used to mark Sun
duke@1 446 // proprietary classes in ct.sym. This class does not have a
duke@1 447 // class file.
duke@1 448 ClassType proprietaryType = (ClassType)enterClass("sun.Proprietary+Annotation");
duke@1 449 this.proprietaryType = proprietaryType;
duke@1 450 ClassSymbol proprietarySymbol = (ClassSymbol)proprietaryType.tsym;
duke@1 451 proprietarySymbol.completer = null;
duke@1 452 proprietarySymbol.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
duke@1 453 proprietarySymbol.erasure_field = proprietaryType;
duke@1 454 proprietarySymbol.members_field = new Scope(proprietarySymbol);
duke@1 455 proprietaryType.typarams_field = List.nil();
duke@1 456 proprietaryType.allparams_field = List.nil();
duke@1 457 proprietaryType.supertype_field = annotationType;
duke@1 458 proprietaryType.interfaces_field = List.nil();
duke@1 459
duke@1 460 // Enter a class for arrays.
duke@1 461 // The class implements java.lang.Cloneable and java.io.Serializable.
duke@1 462 // It has a final length field and a clone method.
duke@1 463 ClassType arrayClassType = (ClassType)arrayClass.type;
duke@1 464 arrayClassType.supertype_field = objectType;
duke@1 465 arrayClassType.interfaces_field = List.of(cloneableType, serializableType);
duke@1 466 arrayClass.members_field = new Scope(arrayClass);
duke@1 467 lengthVar = new VarSymbol(
duke@1 468 PUBLIC | FINAL,
duke@1 469 names.length,
duke@1 470 intType,
duke@1 471 arrayClass);
duke@1 472 arrayClass.members().enter(lengthVar);
duke@1 473 arrayCloneMethod = new MethodSymbol(
duke@1 474 PUBLIC,
duke@1 475 names.clone,
duke@1 476 new MethodType(List.<Type>nil(), objectType,
duke@1 477 List.<Type>nil(), methodClass),
duke@1 478 arrayClass);
duke@1 479 arrayClass.members().enter(arrayCloneMethod);
duke@1 480
duke@1 481 // Enter operators.
duke@1 482 enterUnop("+", doubleType, doubleType, nop);
duke@1 483 enterUnop("+", floatType, floatType, nop);
duke@1 484 enterUnop("+", longType, longType, nop);
duke@1 485 enterUnop("+", intType, intType, nop);
duke@1 486
duke@1 487 enterUnop("-", doubleType, doubleType, dneg);
duke@1 488 enterUnop("-", floatType, floatType, fneg);
duke@1 489 enterUnop("-", longType, longType, lneg);
duke@1 490 enterUnop("-", intType, intType, ineg);
duke@1 491
duke@1 492 enterUnop("~", longType, longType, lxor);
duke@1 493 enterUnop("~", intType, intType, ixor);
duke@1 494
duke@1 495 enterUnop("++", doubleType, doubleType, dadd);
duke@1 496 enterUnop("++", floatType, floatType, fadd);
duke@1 497 enterUnop("++", longType, longType, ladd);
duke@1 498 enterUnop("++", intType, intType, iadd);
duke@1 499 enterUnop("++", charType, charType, iadd);
duke@1 500 enterUnop("++", shortType, shortType, iadd);
duke@1 501 enterUnop("++", byteType, byteType, iadd);
duke@1 502
duke@1 503 enterUnop("--", doubleType, doubleType, dsub);
duke@1 504 enterUnop("--", floatType, floatType, fsub);
duke@1 505 enterUnop("--", longType, longType, lsub);
duke@1 506 enterUnop("--", intType, intType, isub);
duke@1 507 enterUnop("--", charType, charType, isub);
duke@1 508 enterUnop("--", shortType, shortType, isub);
duke@1 509 enterUnop("--", byteType, byteType, isub);
duke@1 510
duke@1 511 enterUnop("!", booleanType, booleanType, bool_not);
duke@1 512 nullcheck = enterUnop("<*nullchk*>", objectType, objectType, nullchk);
duke@1 513
duke@1 514 // string concatenation
duke@1 515 enterBinop("+", stringType, objectType, stringType, string_add);
duke@1 516 enterBinop("+", objectType, stringType, stringType, string_add);
duke@1 517 enterBinop("+", stringType, stringType, stringType, string_add);
duke@1 518 enterBinop("+", stringType, intType, stringType, string_add);
duke@1 519 enterBinop("+", stringType, longType, stringType, string_add);
duke@1 520 enterBinop("+", stringType, floatType, stringType, string_add);
duke@1 521 enterBinop("+", stringType, doubleType, stringType, string_add);
duke@1 522 enterBinop("+", stringType, booleanType, stringType, string_add);
duke@1 523 enterBinop("+", stringType, botType, stringType, string_add);
duke@1 524 enterBinop("+", intType, stringType, stringType, string_add);
duke@1 525 enterBinop("+", longType, stringType, stringType, string_add);
duke@1 526 enterBinop("+", floatType, stringType, stringType, string_add);
duke@1 527 enterBinop("+", doubleType, stringType, stringType, string_add);
duke@1 528 enterBinop("+", booleanType, stringType, stringType, string_add);
duke@1 529 enterBinop("+", botType, stringType, stringType, string_add);
duke@1 530
duke@1 531 // these errors would otherwise be matched as string concatenation
duke@1 532 enterBinop("+", botType, botType, botType, error);
duke@1 533 enterBinop("+", botType, intType, botType, error);
duke@1 534 enterBinop("+", botType, longType, botType, error);
duke@1 535 enterBinop("+", botType, floatType, botType, error);
duke@1 536 enterBinop("+", botType, doubleType, botType, error);
duke@1 537 enterBinop("+", botType, booleanType, botType, error);
duke@1 538 enterBinop("+", botType, objectType, botType, error);
duke@1 539 enterBinop("+", intType, botType, botType, error);
duke@1 540 enterBinop("+", longType, botType, botType, error);
duke@1 541 enterBinop("+", floatType, botType, botType, error);
duke@1 542 enterBinop("+", doubleType, botType, botType, error);
duke@1 543 enterBinop("+", booleanType, botType, botType, error);
duke@1 544 enterBinop("+", objectType, botType, botType, error);
duke@1 545
duke@1 546 enterBinop("+", doubleType, doubleType, doubleType, dadd);
duke@1 547 enterBinop("+", floatType, floatType, floatType, fadd);
duke@1 548 enterBinop("+", longType, longType, longType, ladd);
duke@1 549 enterBinop("+", intType, intType, intType, iadd);
duke@1 550
duke@1 551 enterBinop("-", doubleType, doubleType, doubleType, dsub);
duke@1 552 enterBinop("-", floatType, floatType, floatType, fsub);
duke@1 553 enterBinop("-", longType, longType, longType, lsub);
duke@1 554 enterBinop("-", intType, intType, intType, isub);
duke@1 555
duke@1 556 enterBinop("*", doubleType, doubleType, doubleType, dmul);
duke@1 557 enterBinop("*", floatType, floatType, floatType, fmul);
duke@1 558 enterBinop("*", longType, longType, longType, lmul);
duke@1 559 enterBinop("*", intType, intType, intType, imul);
duke@1 560
duke@1 561 enterBinop("/", doubleType, doubleType, doubleType, ddiv);
duke@1 562 enterBinop("/", floatType, floatType, floatType, fdiv);
duke@1 563 enterBinop("/", longType, longType, longType, ldiv);
duke@1 564 enterBinop("/", intType, intType, intType, idiv);
duke@1 565
duke@1 566 enterBinop("%", doubleType, doubleType, doubleType, dmod);
duke@1 567 enterBinop("%", floatType, floatType, floatType, fmod);
duke@1 568 enterBinop("%", longType, longType, longType, lmod);
duke@1 569 enterBinop("%", intType, intType, intType, imod);
duke@1 570
duke@1 571 enterBinop("&", booleanType, booleanType, booleanType, iand);
duke@1 572 enterBinop("&", longType, longType, longType, land);
duke@1 573 enterBinop("&", intType, intType, intType, iand);
duke@1 574
duke@1 575 enterBinop("|", booleanType, booleanType, booleanType, ior);
duke@1 576 enterBinop("|", longType, longType, longType, lor);
duke@1 577 enterBinop("|", intType, intType, intType, ior);
duke@1 578
duke@1 579 enterBinop("^", booleanType, booleanType, booleanType, ixor);
duke@1 580 enterBinop("^", longType, longType, longType, lxor);
duke@1 581 enterBinop("^", intType, intType, intType, ixor);
duke@1 582
duke@1 583 enterBinop("<<", longType, longType, longType, lshll);
duke@1 584 enterBinop("<<", intType, longType, intType, ishll);
duke@1 585 enterBinop("<<", longType, intType, longType, lshl);
duke@1 586 enterBinop("<<", intType, intType, intType, ishl);
duke@1 587
duke@1 588 enterBinop(">>", longType, longType, longType, lshrl);
duke@1 589 enterBinop(">>", intType, longType, intType, ishrl);
duke@1 590 enterBinop(">>", longType, intType, longType, lshr);
duke@1 591 enterBinop(">>", intType, intType, intType, ishr);
duke@1 592
duke@1 593 enterBinop(">>>", longType, longType, longType, lushrl);
duke@1 594 enterBinop(">>>", intType, longType, intType, iushrl);
duke@1 595 enterBinop(">>>", longType, intType, longType, lushr);
duke@1 596 enterBinop(">>>", intType, intType, intType, iushr);
duke@1 597
duke@1 598 enterBinop("<", doubleType, doubleType, booleanType, dcmpg, iflt);
duke@1 599 enterBinop("<", floatType, floatType, booleanType, fcmpg, iflt);
duke@1 600 enterBinop("<", longType, longType, booleanType, lcmp, iflt);
duke@1 601 enterBinop("<", intType, intType, booleanType, if_icmplt);
duke@1 602
duke@1 603 enterBinop(">", doubleType, doubleType, booleanType, dcmpl, ifgt);
duke@1 604 enterBinop(">", floatType, floatType, booleanType, fcmpl, ifgt);
duke@1 605 enterBinop(">", longType, longType, booleanType, lcmp, ifgt);
duke@1 606 enterBinop(">", intType, intType, booleanType, if_icmpgt);
duke@1 607
duke@1 608 enterBinop("<=", doubleType, doubleType, booleanType, dcmpg, ifle);
duke@1 609 enterBinop("<=", floatType, floatType, booleanType, fcmpg, ifle);
duke@1 610 enterBinop("<=", longType, longType, booleanType, lcmp, ifle);
duke@1 611 enterBinop("<=", intType, intType, booleanType, if_icmple);
duke@1 612
duke@1 613 enterBinop(">=", doubleType, doubleType, booleanType, dcmpl, ifge);
duke@1 614 enterBinop(">=", floatType, floatType, booleanType, fcmpl, ifge);
duke@1 615 enterBinop(">=", longType, longType, booleanType, lcmp, ifge);
duke@1 616 enterBinop(">=", intType, intType, booleanType, if_icmpge);
duke@1 617
duke@1 618 enterBinop("==", objectType, objectType, booleanType, if_acmpeq);
duke@1 619 enterBinop("==", booleanType, booleanType, booleanType, if_icmpeq);
duke@1 620 enterBinop("==", doubleType, doubleType, booleanType, dcmpl, ifeq);
duke@1 621 enterBinop("==", floatType, floatType, booleanType, fcmpl, ifeq);
duke@1 622 enterBinop("==", longType, longType, booleanType, lcmp, ifeq);
duke@1 623 enterBinop("==", intType, intType, booleanType, if_icmpeq);
duke@1 624
duke@1 625 enterBinop("!=", objectType, objectType, booleanType, if_acmpne);
duke@1 626 enterBinop("!=", booleanType, booleanType, booleanType, if_icmpne);
duke@1 627 enterBinop("!=", doubleType, doubleType, booleanType, dcmpl, ifne);
duke@1 628 enterBinop("!=", floatType, floatType, booleanType, fcmpl, ifne);
duke@1 629 enterBinop("!=", longType, longType, booleanType, lcmp, ifne);
duke@1 630 enterBinop("!=", intType, intType, booleanType, if_icmpne);
duke@1 631
duke@1 632 enterBinop("&&", booleanType, booleanType, booleanType, bool_and);
duke@1 633 enterBinop("||", booleanType, booleanType, booleanType, bool_or);
duke@1 634 }
duke@1 635 }

mercurial