1 /*
2 * Copyright 2000-2007 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 *
23 */
24
25 package sun.jvm.hotspot.oops;
26
27 import java.io.*;
28 import java.util.*;
29 import sun.jvm.hotspot.utilities.*;
30 import sun.jvm.hotspot.debugger.*;
31 import sun.jvm.hotspot.memory.*;
32 import sun.jvm.hotspot.runtime.*;
33 import sun.jvm.hotspot.types.*;
34
35 // ArrayKlass is the abstract class for all array classes
36
37 public class ArrayKlass extends Klass {
38 static {
39 VM.registerVMInitializedObserver(new Observer() {
40 public void update(Observable o, Object data) {
41 initialize(VM.getVM().getTypeDataBase());
42 }
43 });
44 }
45
46 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
47 Type type = db.lookupType("arrayKlass");
48 dimension = new CIntField(type.getCIntegerField("_dimension"), Oop.getHeaderSize());
49 higherDimension = new OopField(type.getOopField("_higher_dimension"), Oop.getHeaderSize());
50 lowerDimension = new OopField(type.getOopField("_lower_dimension"), Oop.getHeaderSize());
51 vtableLen = new CIntField(type.getCIntegerField("_vtable_len"), Oop.getHeaderSize());
52 allocSize = new CIntField(type.getCIntegerField("_alloc_size"), Oop.getHeaderSize());
53 componentMirror = new OopField(type.getOopField("_component_mirror"), Oop.getHeaderSize());
54 javaLangCloneableName = null;
55 javaLangObjectName = null;
56 javaIoSerializableName = null;
57 }
58
59 ArrayKlass(OopHandle handle, ObjectHeap heap) {
60 super(handle, heap);
61 }
62
63 private static CIntField dimension;
64 private static OopField higherDimension;
65 private static OopField lowerDimension;
66 private static CIntField vtableLen;
67 private static CIntField allocSize;
68 private static OopField componentMirror;
69
70 public Klass getJavaSuper() {
71 SystemDictionary sysDict = VM.getVM().getSystemDictionary();
72 return sysDict.getObjectKlass();
73 }
74
75 public long getDimension() { return dimension.getValue(this); }
76 public Klass getHigherDimension() { return (Klass) higherDimension.getValue(this); }
77 public Klass getLowerDimension() { return (Klass) lowerDimension.getValue(this); }
78 public long getVtableLen() { return vtableLen.getValue(this); }
79 public long getAllocSize() { return allocSize.getValue(this); }
80 public Oop getComponentMirror() { return componentMirror.getValue(this); }
81
82 // constant class names - javaLangCloneable, javaIoSerializable, javaLangObject
83 // Initialized lazily to avoid initialization ordering dependencies between ArrayKlass and SymbolTable
84 private static Symbol javaLangCloneableName;
85 private static Symbol javaLangObjectName;
86 private static Symbol javaIoSerializableName;
87 private static Symbol javaLangCloneableName() {
88 if (javaLangCloneableName == null) {
89 javaLangCloneableName = VM.getVM().getSymbolTable().probe("java/lang/Cloneable");
90 }
91 return javaLangCloneableName;
92 }
93
94 private static Symbol javaLangObjectName() {
95 if (javaLangObjectName == null) {
96 javaLangObjectName = VM.getVM().getSymbolTable().probe("java/lang/Object");
97 }
98 return javaLangObjectName;
99 }
100
101 private static Symbol javaIoSerializableName() {
102 if (javaIoSerializableName == null) {
103 javaIoSerializableName = VM.getVM().getSymbolTable().probe("java/io/Serializable");
104 }
105 return javaIoSerializableName;
106 }
107
108 public int getClassStatus() {
109 return JVMDIClassStatus.VERIFIED | JVMDIClassStatus.PREPARED | JVMDIClassStatus.INITIALIZED;
110 }
111
112 public long computeModifierFlags() {
113 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
114 }
115
116 public long getArrayHeaderInBytes() {
117 return getHeaderSizeInBytes();
118 }
119
120 boolean computeSubtypeOf(Klass k) {
121 // An array is a subtype of Serializable, Clonable, and Object
122 Symbol name = k.getName();
123 if (name != null && (name.equals(javaIoSerializableName()) ||
124 name.equals(javaLangCloneableName()) ||
125 name.equals(javaLangObjectName()))) {
126 return true;
127 } else {
128 return false;
129 }
130 }
131
132 public void printValueOn(PrintStream tty) {
133 tty.print("ArrayKlass");
134 }
135
136 public long getObjectSize() {
137 return alignObjectSize(InstanceKlass.getHeaderSize() + getVtableLen() * getHeap().getOopSize());
138 }
139
140 public void iterateFields(OopVisitor visitor, boolean doVMFields) {
141 super.iterateFields(visitor, doVMFields);
142 if (doVMFields) {
143 visitor.doCInt(dimension, true);
144 visitor.doOop(higherDimension, true);
145 visitor.doOop(lowerDimension, true);
146 visitor.doCInt(vtableLen, true);
147 visitor.doCInt(allocSize, true);
148 visitor.doOop(componentMirror, true);
149 }
150 }
151 }