1 /*
2 * Copyright (c) 2000, 2025, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 package sun.jvm.hotspot.oops;
26
27 import java.io.*;
28 import java.util.*;
29 import sun.jvm.hotspot.debugger.*;
30 import sun.jvm.hotspot.classfile.*;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.types.*;
33 import sun.jvm.hotspot.utilities.Observable;
34 import sun.jvm.hotspot.utilities.Observer;
35
36 public class Klass extends Metadata implements ClassConstants {
37 static {
38 VM.registerVMInitializedObserver(new Observer() {
39 public void update(Observable o, Object data) {
40 initialize(VM.getVM().getTypeDataBase());
41 }
42 });
43 }
44
45 // anon-enum constants for _layout_helper.
46 public static int LH_INSTANCE_SLOW_PATH_BIT;
47 public static int LH_LOG2_ELEMENT_SIZE_SHIFT;
48 public static int LH_ELEMENT_TYPE_SHIFT;
49 public static int LH_HEADER_SIZE_SHIFT;
50 public static int LH_ARRAY_TAG_SHIFT;
51 public static int LH_ARRAY_TAG_TYPE_VALUE;
52 public static int LH_ARRAY_TAG_OBJ_VALUE;
53
54 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
55 Type type = db.lookupType("Klass");
56 javaMirrorFieldOffset = type.getField("_java_mirror").getOffset();
57 superField = new MetadataField(type.getAddressField("_super"), 0);
58 layoutHelper = new IntField(type.getJIntField("_layout_helper"), 0);
59 name = type.getAddressField("_name");
60 try {
61 traceIDField = type.getField("_trace_id");
62 } catch(Exception e) {
63 }
64 subklass = new MetadataField(type.getAddressField("_subklass"), 0);
65 nextSibling = new MetadataField(type.getAddressField("_next_sibling"), 0);
66 nextLink = new MetadataField(type.getAddressField("_next_link"), 0);
67 vtableLen = new CIntField(type.getCIntegerField("_vtable_len"), 0);
68 classLoaderData = type.getAddressField("_class_loader_data");
69
70 LH_INSTANCE_SLOW_PATH_BIT = db.lookupIntConstant("Klass::_lh_instance_slow_path_bit").intValue();
71 LH_LOG2_ELEMENT_SIZE_SHIFT = db.lookupIntConstant("Klass::_lh_log2_element_size_shift").intValue();
72 LH_ELEMENT_TYPE_SHIFT = db.lookupIntConstant("Klass::_lh_element_type_shift").intValue();
73 LH_HEADER_SIZE_SHIFT = db.lookupIntConstant("Klass::_lh_header_size_shift").intValue();
74 LH_ARRAY_TAG_SHIFT = db.lookupIntConstant("Klass::_lh_array_tag_shift").intValue();
75 LH_ARRAY_TAG_TYPE_VALUE = db.lookupIntConstant("Klass::_lh_array_tag_type_value").intValue();
76 LH_ARRAY_TAG_OBJ_VALUE = db.lookupIntConstant("Klass::_lh_array_tag_obj_value").intValue();
77 }
78
79
80 public Klass(Address addr) {
81 super(addr);
82 }
83
84 // jvmdi support - see also class_status in VM code
85 public int getClassStatus() {
86 return 0; // overridden in derived classes
87 }
88
89 public boolean isKlass() { return true; }
90 public boolean isArrayKlass() { return false; }
91
92 // Fields
93 private static long javaMirrorFieldOffset;
94 private static MetadataField superField;
95 private static IntField layoutHelper;
96 private static AddressField name;
97 private static MetadataField subklass;
98 private static MetadataField nextSibling;
99 private static MetadataField nextLink;
100 private static sun.jvm.hotspot.types.Field traceIDField;
101 private static CIntField vtableLen;
102 private static AddressField classLoaderData;
103
104 protected Symbol getSymbol(AddressField field) {
105 return Symbol.create(addr.getAddressAt(field.getOffset()));
106 }
107
108 // Accessors for declared fields
109 public Instance getJavaMirror() {
110 Address addr = getAddress().addOffsetTo(javaMirrorFieldOffset);
111 VMOopHandle vmOopHandle = VMObjectFactory.newObject(VMOopHandle.class, addr);
112 return vmOopHandle.resolve();
113 }
114 public Klass getSuper() { return (Klass) superField.getValue(this); }
115 public Klass getJavaSuper() { return null; }
116 public int getLayoutHelper() { return layoutHelper.getValue(this); }
117 public Symbol getName() { return getSymbol(name); }
118 public Klass getSubklassKlass() { return (Klass) subklass.getValue(this); }
119 public Klass getNextSiblingKlass() { return (Klass) nextSibling.getValue(this); }
120 public Klass getNextLinkKlass() { return (Klass) nextLink.getValue(this); }
121 public long getVtableLen() { return vtableLen.getValue(this); }
122
123 public ClassLoaderData getClassLoaderData() { return ClassLoaderData.instantiateWrapperFor(classLoaderData.getValue(getAddress())); }
124 public Oop getClassLoader() { return getClassLoaderData().getClassLoader(); }
125
126 public long traceID() {
127 if (traceIDField == null) return 0;
128 return traceIDField.getJLong(addr);
129 }
130
131 // subclass check
132 public boolean isSubclassOf(Klass k) {
133 if (k != null) {
134 Klass t = this;
135 // Run up the super chain and check
136 while (t != null) {
137 if (t.equals(k)) return true;
138 t = t.getSuper();
139 }
140 }
141 return false;
142 }
143
144 // subtype check
145 public boolean isSubtypeOf(Klass k) {
146 return computeSubtypeOf(k);
147 }
148
149 boolean computeSubtypeOf(Klass k) {
150 return isSubclassOf(k);
151 }
152
153 // Find LCA (Least Common Ancester) in class hierarchy
154 public Klass lca( Klass k2 ) {
155 Klass k1 = this;
156 while ( true ) {
157 if ( k1.isSubtypeOf(k2) ) return k2;
158 if ( k2.isSubtypeOf(k1) ) return k1;
159 k1 = k1.getSuper();
160 k2 = k2.getSuper();
161 }
162 }
163
164 public void printValueOn(PrintStream tty) {
165 tty.print("Klass");
166 }
167
168 public void iterateFields(MetadataVisitor visitor) {
169 // visitor.doOop(javaMirror, true);
170 visitor.doMetadata(superField, true);
171 visitor.doInt(layoutHelper, true);
172 // visitor.doOop(name, true);
173 visitor.doMetadata(subklass, true);
174 visitor.doMetadata(nextSibling, true);
175 visitor.doCInt(vtableLen, true);
176 }
177
178 public long getObjectSize() {
179 throw new RuntimeException("should not reach here");
180 }
181
182 /** Array class with specific rank */
183 public Klass arrayKlass(int rank) { return arrayKlassImpl(false, rank); }
184 /** Array class with this klass as element type */
185 public Klass arrayKlass() { return arrayKlassImpl(false); }
186 /** These will return null instead of allocating on the heap */
187 public Klass arrayKlassOrNull(int rank) { return arrayKlassImpl(true, rank); }
188 public Klass arrayKlassOrNull() { return arrayKlassImpl(true); }
189
190 public Klass arrayKlassImpl(boolean orNull, int rank) {
191 throw new RuntimeException("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
192 }
193
194 public Klass arrayKlassImpl(boolean orNull) {
195 throw new RuntimeException("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
196 }
197
198 // This returns the name in the form java/lang/String which isn't really a signature
199 // The subclasses override this to produce the correct form, eg
200 // Ljava/lang/String; For ArrayKlasses getName itself is the signature.
201 public String signature() { return getName().asString(); }
202 }