annotate agent/src/share/classes/sun/jvm/hotspot/utilities/ConstantTag.java @ 1602:136b78722a08

6939203: JSR 292 needs method handle constants Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode. Reviewed-by: twisti, never
author jrose
date Wed, 09 Jun 2010 18:50:45 -0700
parents c18cbe5936b8
children 083fde3b838e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.utilities;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 public class ConstantTag {
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // These replicated from the VM to save space
a61af66fc99e Initial load
duke
parents:
diff changeset
29 private static int JVM_CONSTANT_Utf8 = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 private static int JVM_CONSTANT_Unicode = 2; // unused
a61af66fc99e Initial load
duke
parents:
diff changeset
31 private static int JVM_CONSTANT_Integer = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 private static int JVM_CONSTANT_Float = 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 private static int JVM_CONSTANT_Long = 5;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 private static int JVM_CONSTANT_Double = 6;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 private static int JVM_CONSTANT_Class = 7;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 private static int JVM_CONSTANT_String = 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private static int JVM_CONSTANT_Fieldref = 9;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 private static int JVM_CONSTANT_Methodref = 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 private static int JVM_CONSTANT_InterfaceMethodref = 11;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 private static int JVM_CONSTANT_NameAndType = 12;
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
41 private static int JVM_CONSTANT_MethodHandle = 15; // JSR 292
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
42 private static int JVM_CONSTANT_MethodType = 16; // JSR 292
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 private static int JVM_CONSTANT_Invalid = 0; // For bad value initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
44 private static int JVM_CONSTANT_UnresolvedClass = 100; // Temporary tag until actual use
a61af66fc99e Initial load
duke
parents:
diff changeset
45 private static int JVM_CONSTANT_ClassIndex = 101; // Temporary tag while constructing constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private static int JVM_CONSTANT_UnresolvedString = 102; // Temporary tag until actual use
a61af66fc99e Initial load
duke
parents:
diff changeset
47 private static int JVM_CONSTANT_StringIndex = 103; // Temporary tag while constructing constant pool
a61af66fc99e Initial load
duke
parents:
diff changeset
48 private static int JVM_CONSTANT_UnresolvedClassInError = 104; // Resolution failed
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
49 private static int JVM_CONSTANT_Object = 105; // Required for BoundMethodHandle arguments.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
50
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
51 // JVM_CONSTANT_MethodHandle subtypes //FIXME: connect these to data structure
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
52 private static int JVM_REF_getField = 1;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
53 private static int JVM_REF_getStatic = 2;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
54 private static int JVM_REF_putField = 3;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
55 private static int JVM_REF_putStatic = 4;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
56 private static int JVM_REF_invokeVirtual = 5;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
57 private static int JVM_REF_invokeStatic = 6;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
58 private static int JVM_REF_invokeSpecial = 7;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
59 private static int JVM_REF_newInvokeSpecial = 8;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
60 private static int JVM_REF_invokeInterface = 9;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 private byte tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 public ConstantTag(byte tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 this.tag = tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public boolean isKlass() { return tag == JVM_CONSTANT_Class; }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 public boolean isField () { return tag == JVM_CONSTANT_Fieldref; }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public boolean isMethod() { return tag == JVM_CONSTANT_Methodref; }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public boolean isInterfaceMethod() { return tag == JVM_CONSTANT_InterfaceMethodref; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 public boolean isString() { return tag == JVM_CONSTANT_String; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 public boolean isInt() { return tag == JVM_CONSTANT_Integer; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 public boolean isFloat() { return tag == JVM_CONSTANT_Float; }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 public boolean isLong() { return tag == JVM_CONSTANT_Long; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 public boolean isDouble() { return tag == JVM_CONSTANT_Double; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 public boolean isNameAndType() { return tag == JVM_CONSTANT_NameAndType; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 public boolean isUtf8() { return tag == JVM_CONSTANT_Utf8; }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
79 public boolean isMethodHandle() { return tag == JVM_CONSTANT_MethodHandle; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
80 public boolean isMethodType() { return tag == JVM_CONSTANT_MethodType; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 public boolean isInvalid() { return tag == JVM_CONSTANT_Invalid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 public boolean isUnresolvedKlass() {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return tag == JVM_CONSTANT_UnresolvedClass || tag == JVM_CONSTANT_UnresolvedClassInError;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 public boolean isUnresolveKlassInError() { return tag == JVM_CONSTANT_UnresolvedClassInError; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 public boolean isKlassIndex() { return tag == JVM_CONSTANT_ClassIndex; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 public boolean isUnresolvedString() { return tag == JVM_CONSTANT_UnresolvedString; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 public boolean isStringIndex() { return tag == JVM_CONSTANT_StringIndex; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
92 public boolean isObject() { return tag == JVM_CONSTANT_Object; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
93
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public boolean isKlassReference() { return isKlassIndex() || isUnresolvedKlass(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 public boolean isFieldOrMethod() { return isField() || isMethod() || isInterfaceMethod(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 public boolean isSymbol() { return isUtf8(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }