blob: ba8aaa93c44212e6393fe27e3af32d8e28c6c082 [file] [log] [blame]
Elliott Hughes1d3f1142011-09-13 12:00:00 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
17#ifndef ART_SRC_OBJECT_H_
18#define ART_SRC_OBJECT_H_
19
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070020#include <iosfwd>
Brian Carlstrom1f870082011-08-23 16:02:11 -070021#include <vector>
22
Elliott Hughes90a33692011-08-30 13:27:07 -070023#include "UniquePtr.h"
Elliott Hughes5ea047b2011-09-13 14:38:18 -070024#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070025#include "casts.h"
Elliott Hughes814e4032011-08-23 12:07:56 -070026#include "constants.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "globals.h"
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070028#include "heap.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070029#include "logging.h"
30#include "macros.h"
31#include "offsets.h"
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070032#include "runtime.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070033#include "stringpiece.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070034#include "thread.h"
Elliott Hughes814e4032011-08-23 12:07:56 -070035#include "utf.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070036
37namespace art {
38
39class Array;
40class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070041class ClassLoader;
Brian Carlstrom9cc262e2011-08-28 12:45:30 -070042class CodeAndDirectMethods;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070043class DexCache;
Jesse Wilson35baaab2011-08-10 16:18:03 -040044class Field;
Carl Shapiro1fb86202011-06-27 17:43:13 -070045class InterfaceEntry;
46class Monitor;
47class Method;
Carl Shapiro3ee755d2011-06-28 12:11:04 -070048class Object;
Brian Carlstrom1caa2c22011-08-28 13:02:33 -070049class StaticStorageBase;
Jesse Wilson46cdd4b2011-07-28 17:40:48 -040050class String;
Brian Carlstrom4a96b602011-07-26 16:40:23 -070051template<class T> class ObjectArray;
Jesse Wilsonfd687c52011-08-04 19:27:35 -070052template<class T> class PrimitiveArray;
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070053typedef PrimitiveArray<uint8_t> BooleanArray;
54typedef PrimitiveArray<int8_t> ByteArray;
Jesse Wilsonfd687c52011-08-04 19:27:35 -070055typedef PrimitiveArray<uint16_t> CharArray;
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070056typedef PrimitiveArray<double> DoubleArray;
57typedef PrimitiveArray<float> FloatArray;
58typedef PrimitiveArray<int32_t> IntArray;
59typedef PrimitiveArray<int64_t> LongArray;
60typedef PrimitiveArray<int16_t> ShortArray;
Carl Shapiro1fb86202011-06-27 17:43:13 -070061
Carl Shapiro3ee755d2011-06-28 12:11:04 -070062union JValue {
63 uint8_t z;
64 int8_t b;
65 uint16_t c;
66 int16_t s;
67 int32_t i;
68 int64_t j;
69 float f;
70 double d;
71 Object* l;
72};
73
Brian Carlstrombe977852011-07-19 14:54:54 -070074static const uint32_t kAccPublic = 0x0001; // class, field, method, ic
75static const uint32_t kAccPrivate = 0x0002; // field, method, ic
76static const uint32_t kAccProtected = 0x0004; // field, method, ic
77static const uint32_t kAccStatic = 0x0008; // field, method, ic
78static const uint32_t kAccFinal = 0x0010; // class, field, method, ic
79static const uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
80static const uint32_t kAccSuper = 0x0020; // class (not used in Dalvik)
81static const uint32_t kAccVolatile = 0x0040; // field
82static const uint32_t kAccBridge = 0x0040; // method (1.5)
83static const uint32_t kAccTransient = 0x0080; // field
84static const uint32_t kAccVarargs = 0x0080; // method (1.5)
85static const uint32_t kAccNative = 0x0100; // method
86static const uint32_t kAccInterface = 0x0200; // class, ic
87static const uint32_t kAccAbstract = 0x0400; // class, method, ic
88static const uint32_t kAccStrict = 0x0800; // method
89static const uint32_t kAccSynthetic = 0x1000; // field, method, ic
90static const uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
91static const uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
Carl Shapiro3ee755d2011-06-28 12:11:04 -070092
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070093static const uint32_t kAccMiranda = 0x8000; // method
94
Brian Carlstroma331b3c2011-07-18 17:47:56 -070095static const uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
96
Brian Carlstrombe977852011-07-19 14:54:54 -070097static const uint32_t kAccConstructor = 0x00010000; // method (Dalvik only)
98static const uint32_t kAccDeclaredSynchronized = 0x00020000; // method (Dalvik only)
jeffhaobdb76512011-09-07 11:43:16 -070099static const uint32_t kAccWritable = 0x80000000; // method (Dalvik only)
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700100
Brian Carlstrom1f870082011-08-23 16:02:11 -0700101static const uint32_t kAccClassFlagsMask = (kAccPublic
102 | kAccFinal
103 | kAccInterface
104 | kAccAbstract
105 | kAccSynthetic
106 | kAccAnnotation
107 | kAccEnum);
108static const uint32_t kAccInnerClassFlagsMask = (kAccClassFlagsMask
109 | kAccPrivate
110 | kAccProtected
111 | kAccStatic);
112static const uint32_t kAccFieldFlagsMask = (kAccPublic
113 | kAccPrivate
114 | kAccProtected
115 | kAccStatic
116 | kAccFinal
117 | kAccVolatile
118 | kAccTransient
119 | kAccSynthetic
120 | kAccEnum);
121static const uint32_t kAccMethodFlagsMask = (kAccPublic
122 | kAccPrivate
123 | kAccProtected
124 | kAccStatic
125 | kAccFinal
126 | kAccSynchronized
127 | kAccBridge
128 | kAccVarargs
129 | kAccNative
130 | kAccAbstract
131 | kAccStrict
132 | kAccSynthetic
133 | kAccConstructor
134 | kAccDeclaredSynchronized);
135
136// if only kAccClassIsReference is set, we have a soft reference
137static const uint32_t kAccClassIsReference = 0x8000000; // class is a soft/weak/phantom ref
138static const uint32_t kAccClassIsWeakReference = 0x4000000; // class is a weak reference
139static const uint32_t kAccClassIsFinalizerReference = 0x2000000; // class is a finalizer reference
140static const uint32_t kAccClassIsPhantomReference = 0x1000000; // class is a phantom reference
141
142static const uint32_t kAccReferenceFlagsMask = (kAccClassIsReference
143 | kAccClassIsWeakReference
144 | kAccClassIsFinalizerReference
145 | kAccClassIsPhantomReference);
146
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700147/*
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700148 * Definitions for packing refOffsets in Class.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700149 */
150/*
151 * A magic value for refOffsets. Ignore the bits and walk the super
152 * chain when this is the value.
153 * [This is an unlikely "natural" value, since it would be 30 non-ref instance
154 * fields followed by 2 ref instance fields.]
155 */
156#define CLASS_WALK_SUPER ((unsigned int)(3))
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700157#define CLASS_BITS_PER_WORD (sizeof(unsigned long int) * 8)
158#define CLASS_OFFSET_ALIGNMENT 4
159#define CLASS_HIGH_BIT ((unsigned int)1 << (CLASS_BITS_PER_WORD - 1))
160/*
161 * Given an offset, return the bit number which would encode that offset.
162 * Local use only.
163 */
164#define _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) \
Brian Carlstrom693267a2011-09-06 09:25:34 -0700165 ((unsigned int)(byteOffset) / \
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700166 CLASS_OFFSET_ALIGNMENT)
167/*
168 * Is the given offset too large to be encoded?
169 */
170#define CLASS_CAN_ENCODE_OFFSET(byteOffset) \
171 (_CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) < CLASS_BITS_PER_WORD)
172/*
173 * Return a single bit, encoding the offset.
174 * Undefined if the offset is too large, as defined above.
175 */
176#define CLASS_BIT_FROM_OFFSET(byteOffset) \
177 (CLASS_HIGH_BIT >> _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset))
178/*
179 * Return an offset, given a bit number as returned from CLZ.
180 */
181#define CLASS_OFFSET_FROM_CLZ(rshift) \
Brian Carlstrom693267a2011-09-06 09:25:34 -0700182 MemberOffset((static_cast<int>(rshift) * CLASS_OFFSET_ALIGNMENT))
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700183
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700184#define OFFSET_OF_OBJECT_MEMBER(type, field) \
185 MemberOffset(OFFSETOF_MEMBER(type, field))
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700186
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700187// Classes shared with the managed side of the world need to be packed
188// so that they don't have extra platform specific padding.
Elliott Hughes85d15452011-09-16 17:33:01 -0700189#define MANAGED PACKED
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700190
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700191// C++ mirror of java.lang.Object
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700192class MANAGED Object {
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700193 public:
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700194 static bool InstanceOf(const Object* object, const Class* klass) {
195 if (object == NULL) {
196 return false;
197 }
198 return object->InstanceOf(klass);
199 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700200
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700201 static MemberOffset ClassOffset() {
202 return OFFSET_OF_OBJECT_MEMBER(Object, klass_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700203 }
204
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700205 Class* GetClass() const {
Elliott Hughes5f791332011-09-15 17:45:30 -0700206 return GetFieldObject<Class*>(OFFSET_OF_OBJECT_MEMBER(Object, klass_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700207 }
208
209 void SetClass(Class* new_klass);
210
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700211 bool InstanceOf(const Class* klass) const;
212
Elliott Hughes04b63fd2011-08-16 09:40:10 -0700213 size_t SizeOf() const;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700214
Elliott Hughes081be7f2011-09-18 16:50:26 -0700215 Object* Clone();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700216
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700217 static MemberOffset MonitorOffset() {
218 return OFFSET_OF_OBJECT_MEMBER(Object, monitor_);
219 }
220
Elliott Hughes5f791332011-09-15 17:45:30 -0700221 volatile int32_t* GetRawLockWordAddress() {
222 byte* raw_addr = reinterpret_cast<byte*>(this) + OFFSET_OF_OBJECT_MEMBER(Object, monitor_).Int32Value();
223 int32_t* word_addr = reinterpret_cast<int32_t*>(raw_addr);
224 return const_cast<volatile int32_t*>(word_addr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700225 }
226
Elliott Hughes5f791332011-09-15 17:45:30 -0700227 uint32_t GetLockOwner();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700228
Elliott Hughes5f791332011-09-15 17:45:30 -0700229 void MonitorEnter(Thread* thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700230
Ian Rogersff1ed472011-09-20 13:46:24 -0700231 bool MonitorExit(Thread* thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700232
Elliott Hughes5f791332011-09-15 17:45:30 -0700233 void Notify();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700234
Elliott Hughes5f791332011-09-15 17:45:30 -0700235 void NotifyAll();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700236
Elliott Hughes5f791332011-09-15 17:45:30 -0700237 void Wait(int64_t timeout);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700238
Elliott Hughes5f791332011-09-15 17:45:30 -0700239 void Wait(int64_t timeout, int32_t nanos);
Brian Carlstrom4873d462011-08-21 15:23:39 -0700240
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700241 bool IsClass() const;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700242
243 Class* AsClass() {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700244 DCHECK(IsClass());
Carl Shapiro69759ea2011-07-21 18:13:35 -0700245 return down_cast<Class*>(this);
246 }
247
248 const Class* AsClass() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700249 DCHECK(IsClass());
Carl Shapiro69759ea2011-07-21 18:13:35 -0700250 return down_cast<const Class*>(this);
251 }
252
Brian Carlstrom4873d462011-08-21 15:23:39 -0700253 bool IsClassClass() const;
254
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700255 bool IsObjectArray() const;
256
257 template<class T>
258 ObjectArray<T>* AsObjectArray() {
259 DCHECK(IsObjectArray());
260 return down_cast<ObjectArray<T>*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700261 }
262
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700263 template<class T>
264 const ObjectArray<T>* AsObjectArray() const {
265 DCHECK(IsObjectArray());
266 return down_cast<const ObjectArray<T>*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700267 }
268
Brian Carlstromb63ec392011-08-27 17:38:27 -0700269 bool IsArrayInstance() const;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700270
271 Array* AsArray() {
Brian Carlstromb63ec392011-08-27 17:38:27 -0700272 DCHECK(IsArrayInstance());
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700273 return down_cast<Array*>(this);
274 }
275
276 const Array* AsArray() const {
Brian Carlstromb63ec392011-08-27 17:38:27 -0700277 DCHECK(IsArrayInstance());
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700278 return down_cast<const Array*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700279 }
280
Brian Carlstroma663ea52011-08-19 23:33:41 -0700281 bool IsString() const;
282
283 String* AsString() {
284 DCHECK(IsString());
285 return down_cast<String*>(this);
286 }
287
288 bool IsMethod() const;
289
290 Method* AsMethod() {
291 DCHECK(IsMethod());
292 return down_cast<Method*>(this);
293 }
294
Brian Carlstrom4873d462011-08-21 15:23:39 -0700295 const Method* AsMethod() const {
296 DCHECK(IsMethod());
297 return down_cast<const Method*>(this);
298 }
299
Brian Carlstroma663ea52011-08-19 23:33:41 -0700300 bool IsField() const;
301
302 Field* AsField() {
303 DCHECK(IsField());
304 return down_cast<Field*>(this);
305 }
306
Brian Carlstrom4873d462011-08-21 15:23:39 -0700307 const Field* AsField() const {
308 DCHECK(IsField());
309 return down_cast<const Field*>(this);
310 }
311
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700312 bool IsReferenceInstance() const;
313
314 bool IsWeakReferenceInstance() const;
315
316 bool IsSoftReferenceInstance() const;
317
318 bool IsFinalizerReferenceInstance() const;
319
320 bool IsPhantomReferenceInstance() const;
321
322 // Accessors for Java type fields
323 template<class T>
324 T GetFieldObject(MemberOffset field_offset, bool is_volatile) const {
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700325 DCHECK(Thread::Current() == NULL || Thread::Current()->CanAccessDirectReferences());
326 T result = reinterpret_cast<T>(GetField32(field_offset, is_volatile));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 Heap::VerifyObject(result);
328 return result;
329 }
330
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700331 void SetFieldObject(MemberOffset field_offset, const Object* new_value, bool is_volatile, bool this_is_valid = true) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 Heap::VerifyObject(new_value);
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700333 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid);
334 if (new_value != NULL) {
335 Heap::WriteBarrier(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700337 }
338
339 uint32_t GetField32(MemberOffset field_offset, bool is_volatile) const {
340 Heap::VerifyObject(this);
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700341 const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value();
342 const int32_t* word_addr = reinterpret_cast<const int32_t*>(raw_addr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700343 if (is_volatile) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700344 return android_atomic_acquire_load(word_addr);
345 } else {
346 return *word_addr;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700347 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 }
349
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700350 void SetField32(MemberOffset field_offset, uint32_t new_value, bool is_volatile, bool this_is_valid = true) {
351 if (this_is_valid) {
352 Heap::VerifyObject(this);
353 }
354 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value();
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700355 uint32_t* word_addr = reinterpret_cast<uint32_t*>(raw_addr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700356 if (is_volatile) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700357 /*
358 * TODO: add an android_atomic_synchronization_store() function and
359 * use it in the 32-bit volatile set handlers. On some platforms we
360 * can use a fast atomic instruction and avoid the barriers.
361 */
362 ANDROID_MEMBAR_STORE();
363 *word_addr = new_value;
364 ANDROID_MEMBAR_FULL();
365 } else {
366 *word_addr = new_value;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700367 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368 }
369
370 uint64_t GetField64(MemberOffset field_offset, bool is_volatile) const {
371 Heap::VerifyObject(this);
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700372 const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value();
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700373 const int64_t* addr = reinterpret_cast<const int64_t*>(raw_addr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700374 if (is_volatile) {
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700375 uint64_t result = QuasiAtomicRead64(addr);
376 ANDROID_MEMBAR_FULL();
377 return result;
378 } else {
379 return *addr;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700380 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 }
382
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700383 void SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700384 Heap::VerifyObject(this);
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700385 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value();
386 int64_t* addr = reinterpret_cast<int64_t*>(raw_addr);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700387 if (is_volatile) {
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700388 ANDROID_MEMBAR_STORE();
389 QuasiAtomicSwap64(new_value, addr);
390 // Post-store barrier not required due to use of atomic op or mutex.
391 } else {
392 *addr = new_value;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700393 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700394 }
395
396 protected:
397 // Accessors for non-Java type fields
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398 template<class T>
399 T GetFieldPtr(MemberOffset field_offset, bool is_volatile) const {
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700400 return reinterpret_cast<T>(GetField32(field_offset, is_volatile));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700401 }
402
403 template<typename T>
Elliott Hughes5ea047b2011-09-13 14:38:18 -0700404 void SetFieldPtr(MemberOffset field_offset, T new_value, bool is_volatile) {
405 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700406 }
407
408 private:
Carl Shapiro1fb86202011-06-27 17:43:13 -0700409 Class* klass_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700410
Elliott Hughes5f791332011-09-15 17:45:30 -0700411 uint32_t monitor_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700412
Elliott Hughes5f791332011-09-15 17:45:30 -0700413 friend class ImageWriter; // for abusing monitor_ directly
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700414 friend struct ObjectOffsets; // for verifying offset information
Carl Shapirof88c9522011-08-06 15:47:38 -0700415 DISALLOW_IMPLICIT_CONSTRUCTORS(Object);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700416};
417
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418// C++ mirror of java.lang.reflect.AccessibleObject
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700419class MANAGED AccessibleObject : public Object {
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400420 private:
421 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700422 uint32_t java_flag_; // can accessibility checks be bypassed
Brian Carlstrom693267a2011-09-06 09:25:34 -0700423 friend struct AccessibleObjectOffsets; // for verifying offset information
424 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessibleObject);
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400425};
426
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700427// C++ mirror of java.lang.reflect.Field
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700428class MANAGED Field : public AccessibleObject {
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700429 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 Class* GetDeclaringClass() const;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700431
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700432 void SetDeclaringClass(Class *new_declaring_class);
433
434 const String* GetName() const;
435
436 void SetName(String* new_name);
437
438 uint32_t GetAccessFlags() const;
439
440 void SetAccessFlags(uint32_t new_access_flags) {
441 SetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), new_access_flags,
442 false);
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700443 }
444
Elliott Hughes80609252011-09-23 17:24:51 -0700445 bool IsPublic() const {
446 return (GetAccessFlags() & kAccPublic) != 0;
447 }
448
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700449 bool IsStatic() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700450 return (GetAccessFlags() & kAccStatic) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700451 }
452
jeffhaobdb76512011-09-07 11:43:16 -0700453 bool IsFinal() const {
Elliott Hughes80609252011-09-23 17:24:51 -0700454 return (GetAccessFlags() & kAccFinal) != 0;
jeffhaobdb76512011-09-07 11:43:16 -0700455 }
456
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700457 uint32_t GetTypeIdx() const;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700458
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700459 void SetTypeIdx(uint32_t type_idx);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -0700460
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700461 // Gets type using type index and resolved types in the dex cache, may be null
462 // if type isn't yet resolved
463 Class* GetTypeDuringLinking() const;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700464
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700465 // Performs full resolution, may return null and set exceptions if type cannot
466 // be resolved
467 Class* GetType() const;
468
469 // Offset to field within an Object
470 MemberOffset GetOffset() const;
471
buzbee34cd9e52011-09-08 14:31:52 -0700472 static MemberOffset OffsetOffset() {
473 return MemberOffset(OFFSETOF_MEMBER(Field, offset_));
474 }
475
Brian Carlstrom845490b2011-09-19 15:56:53 -0700476 static Field* FindInstanceFieldFromCode(uint32_t field_idx, const Method* referrer);
477 static Field* FindStaticFieldFromCode(uint32_t field_idx, const Method* referrer);
478 static Field* FindFieldFromCode(uint32_t field_idx, const Method* referrer, bool is_static);
buzbee34cd9e52011-09-08 14:31:52 -0700479
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700480 MemberOffset GetOffsetDuringLinking() const;
481
482 void SetOffset(MemberOffset num_bytes);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700483
Brian Carlstrom4873d462011-08-21 15:23:39 -0700484 // field access, null object for static fields
485 bool GetBoolean(const Object* object) const;
486 void SetBoolean(Object* object, bool z) const;
487 int8_t GetByte(const Object* object) const;
488 void SetByte(Object* object, int8_t b) const;
489 uint16_t GetChar(const Object* object) const;
490 void SetChar(Object* object, uint16_t c) const;
491 uint16_t GetShort(const Object* object) const;
492 void SetShort(Object* object, uint16_t s) const;
493 int32_t GetInt(const Object* object) const;
494 void SetInt(Object* object, int32_t i) const;
495 int64_t GetLong(const Object* object) const;
496 void SetLong(Object* object, int64_t j) const;
497 float GetFloat(const Object* object) const;
498 void SetFloat(Object* object, float f) const;
499 double GetDouble(const Object* object) const;
500 void SetDouble(Object* object, double d) const;
501 Object* GetObject(const Object* object) const;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700502 void SetObject(Object* object, const Object* l) const;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -0700503
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700504 // Slow path routines for static field access when field was unresolved at
505 // compile time
506 static uint32_t Get32StaticFromCode(uint32_t field_idx,
507 const Method* referrer);
508 static void Set32StaticFromCode(uint32_t field_idx, const Method* referrer,
509 uint32_t new_value);
510 static uint64_t Get64StaticFromCode(uint32_t field_idx,
511 const Method* referrer);
512 static void Set64StaticFromCode(uint32_t field_idx, const Method* referrer,
513 uint64_t new_value);
514 static Object* GetObjStaticFromCode(uint32_t field_idx,
515 const Method* referrer);
516 static void SetObjStaticFromCode(uint32_t field_idx, const Method* referrer,
517 Object* new_value);
Brian Carlstromb9edb842011-08-28 16:31:06 -0700518
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519 static Class* GetJavaLangReflectField() {
520 DCHECK(java_lang_reflect_Field_ != NULL);
521 return java_lang_reflect_Field_;
522 }
523
524 static void SetClass(Class* java_lang_reflect_Field);
525 static void ResetClass();
526
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700527 bool IsVolatile() const {
528 return (GetAccessFlags() & kAccVolatile) != 0;
529 }
Brian Carlstrom4873d462011-08-21 15:23:39 -0700530
Elliott Hughes80609252011-09-23 17:24:51 -0700531 void InitJavaFields();
532
buzbee1da522d2011-09-04 11:22:20 -0700533 private:
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700534 // private implementation of field access using raw data
Brian Carlstrom4873d462011-08-21 15:23:39 -0700535 uint32_t Get32(const Object* object) const;
536 void Set32(Object* object, uint32_t new_value) const;
537 uint64_t Get64(const Object* object) const;
538 void Set64(Object* object, uint64_t new_value) const;
539 Object* GetObj(const Object* object) const;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700540 void SetObj(Object* object, const Object* new_value) const;
Brian Carlstrom4873d462011-08-21 15:23:39 -0700541
Elliott Hughes80609252011-09-23 17:24:51 -0700542 void InitJavaFieldsLocked();
543
Jesse Wilson35baaab2011-08-10 16:18:03 -0400544 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Brian Carlstrom693267a2011-09-06 09:25:34 -0700545
Jesse Wilson35baaab2011-08-10 16:18:03 -0400546 // The class in which this field is declared.
547 Class* declaring_class_;
Brian Carlstrom693267a2011-09-06 09:25:34 -0700548
Jesse Wilson35baaab2011-08-10 16:18:03 -0400549 Object* generic_type_;
Brian Carlstrom693267a2011-09-06 09:25:34 -0700550
Brian Carlstromdbc05252011-09-09 01:59:59 -0700551 const String* name_;
552
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700553 // Type of the field
Elliott Hughes80609252011-09-23 17:24:51 -0700554 mutable Class* type_;
Jesse Wilson35baaab2011-08-10 16:18:03 -0400555
Brian Carlstromdbc05252011-09-09 01:59:59 -0700556 uint32_t generic_types_are_initialized_;
Brian Carlstrom693267a2011-09-06 09:25:34 -0700557
Jesse Wilson35baaab2011-08-10 16:18:03 -0400558 uint32_t access_flags_;
Brian Carlstrom693267a2011-09-06 09:25:34 -0700559
560 // Offset of field within an instance or in the Class' static fields
561 uint32_t offset_;
562
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700563 // Dex cache index of resolved type
564 uint32_t type_idx_;
Jesse Wilson35baaab2011-08-10 16:18:03 -0400565
Brian Carlstrom693267a2011-09-06 09:25:34 -0700566 int32_t slot_;
567
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700568 static Class* java_lang_reflect_Field_;
569
Brian Carlstrom693267a2011-09-06 09:25:34 -0700570 friend struct FieldOffsets; // for verifying offset information
Jesse Wilson35baaab2011-08-10 16:18:03 -0400571 DISALLOW_IMPLICIT_CONSTRUCTORS(Field);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700572};
573
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700574// C++ mirror of java.lang.reflect.Method
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -0700575class MANAGED Method : public AccessibleObject {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700576 public:
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700577 // An function that invokes a method with an array of its arguments.
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700578 typedef void InvokeStub(const Method* method,
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700579 Object* obj,
580 Thread* thread,
581 byte* args,
582 JValue* result);
583
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700584 Class* GetDeclaringClass() const;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700585
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700586 void SetDeclaringClass(Class *new_declaring_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700587
Ian Rogerscdd1d2d2011-08-18 09:58:17 -0700588 static MemberOffset DeclaringClassOffset() {
589 return MemberOffset(OFFSETOF_MEMBER(Method, declaring_class_));
Ian Rogersb033c752011-07-20 12:22:35 -0700590 }
591
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700592 // Returns the method name, e.g. "<init>" or "eatLunch"
593 const String* GetName() const;
594
595 void SetName(String* new_name);
596
jeffhaoe23d93c2011-09-15 14:48:43 -0700597 ByteArray* GetRegisterMapData() const;
598
jeffhaoa0a764a2011-09-16 10:43:38 -0700599 void SetRegisterMapData(ByteArray* data);
jeffhaoe23d93c2011-09-15 14:48:43 -0700600
601 ByteArray* GetRegisterMapHeader() const;
602
jeffhaoa0a764a2011-09-16 10:43:38 -0700603 void SetRegisterMapHeader(ByteArray* header);
jeffhaoe23d93c2011-09-15 14:48:43 -0700604
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700605 String* GetShorty() const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700606
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700607 void SetShorty(String* new_shorty);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700608
609 const String* GetSignature() const;
610
611 void SetSignature(String* new_signature);
612
613 bool HasSameNameAndDescriptor(const Method* that) const;
614
615 uint32_t GetAccessFlags() const;
616
617 void SetAccessFlags(uint32_t new_access_flags) {
618 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, access_flags_), new_access_flags,
619 false);
620 }
621
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700622 // Returns true if the method is declared public.
623 bool IsPublic() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700624 return (GetAccessFlags() & kAccPublic) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700625 }
626
627 // Returns true if the method is declared private.
628 bool IsPrivate() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700629 return (GetAccessFlags() & kAccPrivate) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700630 }
631
632 // Returns true if the method is declared static.
633 bool IsStatic() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700634 return (GetAccessFlags() & kAccStatic) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700635 }
636
Brian Carlstrom1f870082011-08-23 16:02:11 -0700637 // Returns true if the method is a constructor.
638 bool IsConstructor() const {
639 return (access_flags_ & kAccConstructor) != 0;
640 }
641
642 // Returns true if the method is static, private, or a constructor.
643 bool IsDirect() const {
644 return IsStatic() || IsPrivate() || IsConstructor();
645 }
646
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700647 // Returns true if the method is declared synchronized.
648 bool IsSynchronized() const {
649 uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700650 return (GetAccessFlags() & synchonized) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700651 }
652
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700653 bool IsFinal() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700654 return (GetAccessFlags() & kAccFinal) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700655 }
656
Elliott Hughes80609252011-09-23 17:24:51 -0700657 bool IsMiranda() const {
658 return (GetAccessFlags() & kAccMiranda) != 0;
659 }
660
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700661 bool IsNative() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700662 return (GetAccessFlags() & kAccNative) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700663 }
664
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700665 bool IsAbstract() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700666 return (GetAccessFlags() & kAccAbstract) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700667 }
668
669 bool IsSynthetic() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700670 return (GetAccessFlags() & kAccSynthetic) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700671 }
672
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700673 uint16_t GetMethodIndex() const;
674
675 size_t GetVtableIndex() const {
676 return GetMethodIndex();
677 }
678
679 void SetMethodIndex(uint16_t new_method_index) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700680 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, method_index_),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700681 new_method_index, false);
682 }
683
684 static MemberOffset MethodIndexOffset() {
685 return OFFSET_OF_OBJECT_MEMBER(Method, method_index_);
686 }
687
688 uint32_t GetCodeItemOffset() const {
689 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, code_item_offset_), false);
690 }
691
692 void SetCodeItemOffset(uint32_t new_code_off) {
693 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, code_item_offset_),
694 new_code_off, false);
695 }
696
697 // Number of 32bit registers that would be required to hold all the arguments
698 static size_t NumArgRegisters(const StringPiece& shorty);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700699
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700700 // Number of argument bytes required for densely packing the
701 // arguments into an array of arguments.
Brian Carlstrom4873d462011-08-21 15:23:39 -0700702 size_t NumArgArrayBytes() const;
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700703
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700704 uint16_t NumRegisters() const;
705
706 void SetNumRegisters(uint16_t new_num_registers) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700707 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_registers_),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700708 new_num_registers, false);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700709 }
710
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700711 uint16_t NumIns() const;
712
713 void SetNumIns(uint16_t new_num_ins) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700714 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_ins_),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700715 new_num_ins, false);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700716 }
717
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700718 uint16_t NumOuts() const;
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700719
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700720 void SetNumOuts(uint16_t new_num_outs) {
Elliott Hughes1d3f1142011-09-13 12:00:00 -0700721 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_outs_),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700722 new_num_outs, false);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700723 }
724
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700725 uint32_t GetProtoIdx() const;
726
727 void SetProtoIdx(uint32_t new_proto_idx) {
728 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, proto_idx_), new_proto_idx, false);
Ian Rogersb033c752011-07-20 12:22:35 -0700729 }
730
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700731 ObjectArray<String>* GetDexCacheStrings() const;
732 void SetDexCacheStrings(ObjectArray<String>* new_dex_cache_strings);
733
734 static MemberOffset DexCacheStringsOffset() {
735 return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_strings_);
736 }
737
buzbee2a475e72011-09-07 17:19:17 -0700738 static MemberOffset DexCacheResolvedTypesOffset() {
739 return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_types_);
740 }
741
buzbee34cd9e52011-09-08 14:31:52 -0700742 static MemberOffset DexCacheResolvedFieldsOffset() {
743 return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_fields_);
744 }
745
buzbee1da522d2011-09-04 11:22:20 -0700746 static MemberOffset DexCacheInitializedStaticStorageOffset() {
747 return OFFSET_OF_OBJECT_MEMBER(Method,
748 dex_cache_initialized_static_storage_);
749 }
750
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700751 ObjectArray<Class>* GetDexCacheResolvedTypes() const;
752 void SetDexCacheResolvedTypes(ObjectArray<Class>* new_dex_cache_types);
753
754 ObjectArray<Method>* GetDexCacheResolvedMethods() const;
755 void SetDexCacheResolvedMethods(ObjectArray<Method>* new_dex_cache_methods);
756
757 ObjectArray<Field>* GetDexCacheResolvedFields() const;
758 void SetDexCacheResolvedFields(ObjectArray<Field>* new_dex_cache_fields);
759
760 CodeAndDirectMethods* GetDexCacheCodeAndDirectMethods() const;
761 void SetDexCacheCodeAndDirectMethods(CodeAndDirectMethods* new_value);
762
763 ObjectArray<StaticStorageBase>* GetDexCacheInitializedStaticStorage() const;
764 void SetDexCacheInitializedStaticStorage(ObjectArray<StaticStorageBase>* new_value);
765
766 void SetReturnTypeIdx(uint32_t new_return_type_idx);
767
768 Class* GetReturnType() const;
769
770 bool IsReturnAReference() const;
771
772 bool IsReturnAFloat() const;
773
774 bool IsReturnADouble() const;
775
Ian Rogersb033c752011-07-20 12:22:35 -0700776 bool IsReturnAFloatOrDouble() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700777 return IsReturnAFloat() || IsReturnADouble();
Ian Rogersb033c752011-07-20 12:22:35 -0700778 }
779
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700780 bool IsReturnALong() const;
Ian Rogersb033c752011-07-20 12:22:35 -0700781
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700782 bool IsReturnVoid() const;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700783
Shih-wei Liao5381cf92011-07-27 00:28:04 -0700784 // "Args" may refer to any of the 3 levels of "Args."
785 // To avoid confusion, our code will denote which "Args" clearly:
786 // 1. UserArgs: Args that a user see.
787 // 2. Args: Logical JVM-level Args. E.g., the first in Args will be the
788 // receiver.
789 // 3. CConvArgs: Calling Convention Args, which is physical-level Args.
790 // E.g., the first in Args is Method* for both static and non-static
791 // methods. And CConvArgs doesn't deal with the receiver because
792 // receiver is hardwired in an implicit register, so CConvArgs doesn't
793 // need to deal with it.
794 //
795 // The number of Args that should be supplied to this method
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700796 size_t NumArgs() const;
Ian Rogersb033c752011-07-20 12:22:35 -0700797
798 // The number of reference arguments to this method including implicit this
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700799 // pointer.
Ian Rogersb033c752011-07-20 12:22:35 -0700800 size_t NumReferenceArgs() const;
801
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700802 // The number of long or double arguments.
Ian Rogersb033c752011-07-20 12:22:35 -0700803 size_t NumLongOrDoubleArgs() const;
804
Ian Rogersb033c752011-07-20 12:22:35 -0700805 // Is the given method parameter a reference?
806 bool IsParamAReference(unsigned int param) const;
807
808 // Is the given method parameter a long or double?
809 bool IsParamALongOrDouble(unsigned int param) const;
810
Ian Rogersdf20fe02011-07-20 20:34:16 -0700811 // Size in bytes of the given parameter
812 size_t ParamSize(unsigned int param) const;
813
814 // Size in bytes of the return value
815 size_t ReturnSize() const;
Ian Rogersb033c752011-07-20 12:22:35 -0700816
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700817 void Invoke(Thread* self, Object* receiver, byte* args, JValue* result) const;
818
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700819 const ByteArray* GetCodeArray() const {
820 return GetFieldPtr<const ByteArray*>(OFFSET_OF_OBJECT_MEMBER(Method, code_array_), false);
821 }
822
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700823 const void* GetCode() const {
824 return GetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, code_), false);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700825 }
826
buzbee4ef76522011-09-08 10:00:32 -0700827 void SetCode(ByteArray* code_array, InstructionSet instruction_set,
buzbeec41e5b52011-09-23 12:46:19 -0700828 IntArray* mapping_table = NULL, ShortArray* vmap_table = NULL);
buzbeec143c552011-08-20 17:38:58 -0700829
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700830 static MemberOffset GetCodeOffset() {
831 return OFFSET_OF_OBJECT_MEMBER(Method, code_);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700832 }
833
Ian Rogersbdb03912011-09-14 00:55:44 -0700834 // Is the given PC within the code array?
835 bool IsWithinCode(uintptr_t pc) const;
836
837 IntArray* GetMappingTable() const {
838 return GetFieldObject<IntArray*>(
839 OFFSET_OF_OBJECT_MEMBER(Method, mapping_table_), false);
840 }
841
buzbeec41e5b52011-09-23 12:46:19 -0700842 ShortArray* GetVMapTable() const {
843 return GetFieldObject<ShortArray*>(
844 OFFSET_OF_OBJECT_MEMBER(Method, vmap_table_), false);
845 }
846
Shih-wei Liaod11af152011-08-23 16:02:11 -0700847 size_t GetFrameSizeInBytes() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700848 DCHECK(sizeof(size_t) == sizeof(uint32_t));
849 size_t result = GetField32(
850 OFFSET_OF_OBJECT_MEMBER(Method, frame_size_in_bytes_), false);
851 DCHECK_LE(static_cast<size_t>(kStackAlignment), result);
852 return result;
853 }
854
855 void SetFrameSizeInBytes(size_t new_frame_size_in_bytes) {
856 DCHECK(sizeof(size_t) == sizeof(uint32_t));
857 DCHECK_LE(static_cast<size_t>(kStackAlignment), new_frame_size_in_bytes);
858 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, frame_size_in_bytes_),
859 new_frame_size_in_bytes, false);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700860 }
861
Shih-wei Liaod11af152011-08-23 16:02:11 -0700862 size_t GetReturnPcOffsetInBytes() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700863 DCHECK(sizeof(size_t) == sizeof(uint32_t));
864 return GetField32(
865 OFFSET_OF_OBJECT_MEMBER(Method, return_pc_offset_in_bytes_), false);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700866 }
867
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700868 void SetReturnPcOffsetInBytes(size_t return_pc_offset_in_bytes) {
869 DCHECK(sizeof(size_t) == sizeof(uint32_t));
870 DCHECK_LT(return_pc_offset_in_bytes, GetFrameSizeInBytes());
871 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, return_pc_offset_in_bytes_),
872 return_pc_offset_in_bytes, false);
buzbeec143c552011-08-20 17:38:58 -0700873 }
874
Brian Carlstrom16192862011-09-12 17:50:06 -0700875 bool IsRegistered();
Elliott Hughesd369bb72011-09-12 14:41:14 -0700876
Brian Carlstrom16192862011-09-12 17:50:06 -0700877 void RegisterNative(const void* native_method);
Ian Rogersb033c752011-07-20 12:22:35 -0700878
Brian Carlstrom16192862011-09-12 17:50:06 -0700879 void UnregisterNative();
Elliott Hughes5174fe62011-08-23 15:12:35 -0700880
Ian Rogersb033c752011-07-20 12:22:35 -0700881 static MemberOffset NativeMethodOffset() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700882 return OFFSET_OF_OBJECT_MEMBER(Method, native_method_);
Ian Rogersb033c752011-07-20 12:22:35 -0700883 }
884
Brian Carlstrom78128a62011-09-15 17:21:19 -0700885 const void* GetNativeMethod() const {
886 return reinterpret_cast<const void*>(GetField32(NativeMethodOffset(), false));
887 }
888
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700889 ByteArray* GetInvokeStubArray() const {
890 ByteArray* result = GetFieldPtr<ByteArray*>(
891 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_array_), false);
892 // TODO: DCHECK(result != NULL); should be ahead of time compiled
893 return result;
894 }
895
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700896 // Native to managed invocation stub entry point
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700897 InvokeStub* GetInvokeStub() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700898 InvokeStub* result = GetFieldPtr<InvokeStub*>(
899 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_), false);
900 // TODO: DCHECK(result != NULL); should be ahead of time compiled
901 return result;
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700902 }
903
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700904 static MemberOffset GetInvokeStubOffset() {
905 return OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700906 }
907
buzbee561227c2011-09-02 15:28:19 -0700908 static MemberOffset GetDexCacheCodeAndDirectMethodsOffset() {
909 return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_code_and_direct_methods_);
910 }
911
912 static MemberOffset GetDexCacheResolvedMethodsOffset() {
913 return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_methods_);
914 }
915
916 static MemberOffset GetMethodIndexOffset() {
917 return OFFSET_OF_OBJECT_MEMBER(Method, method_index_);
918 }
919
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700920 void SetInvokeStub(const ByteArray* invoke_stub_array);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700921
Ian Rogers90865722011-09-19 11:11:44 -0700922 uint32_t GetCoreSpillMask() const {
Ian Rogersbdb03912011-09-14 00:55:44 -0700923 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, core_spill_mask_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700924 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -0700925
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700926 void SetCoreSpillMask(uint32_t core_spill_mask) {
927 // Computed during compilation
Elliott Hughes418d20f2011-09-22 14:00:39 -0700928 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, core_spill_mask_), core_spill_mask, false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700929 }
930
Ian Rogers90865722011-09-19 11:11:44 -0700931 uint32_t GetFpSpillMask() const {
Ian Rogersbdb03912011-09-14 00:55:44 -0700932 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, fp_spill_mask_), false);
933 }
934
935 void SetFpSpillMask(uint32_t fp_spill_mask) {
936 // Computed during compilation
Elliott Hughes418d20f2011-09-22 14:00:39 -0700937 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, fp_spill_mask_), fp_spill_mask, false);
Ian Rogersbdb03912011-09-14 00:55:44 -0700938 }
939
Ian Rogers90865722011-09-19 11:11:44 -0700940 // Is this a hand crafted method used for something like describing callee saves?
941 bool IsPhony() const {
Ian Rogersff1ed472011-09-20 13:46:24 -0700942 bool result = this == Runtime::Current()->GetCalleeSaveMethod();
Ian Rogers90865722011-09-19 11:11:44 -0700943 // Check that if we do think it is phony it looks like the callee save method
944 DCHECK(!result || GetCoreSpillMask() != 0);
945 return result;
946 }
947
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700948 // Converts a native PC to a dex PC. TODO: this is a no-op
949 // until we associate a PC mapping table with each method.
Ian Rogersbdb03912011-09-14 00:55:44 -0700950 uint32_t ToDexPC(const uintptr_t pc) const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700951
952 // Converts a dex PC to a native PC. TODO: this is a no-op
953 // until we associate a PC mapping table with each method.
Ian Rogersbdb03912011-09-14 00:55:44 -0700954 uintptr_t ToNativePC(const uint32_t dex_pc) const;
955
956 // Find the catch block for the given exception type and dex_pc
957 uint32_t FindCatchBlock(Class* exception_type, uint32_t dex_pc) const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700958
Elliott Hughes80609252011-09-23 17:24:51 -0700959 static void SetClasses(Class* java_lang_reflect_Constructor, Class* java_lang_reflect_Method);
960
961 static Class* GetConstructorClass() {
962 return java_lang_reflect_Constructor_;
963 }
964
965 static Class* GetMethodClass() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700966 return java_lang_reflect_Method_;
967 }
968
Elliott Hughes80609252011-09-23 17:24:51 -0700969 static void ResetClasses();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700970
Elliott Hughes418d20f2011-09-22 14:00:39 -0700971 void InitJavaFields();
972
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700973 private:
974 uint32_t GetReturnTypeIdx() const;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700975 void InitJavaFieldsLocked();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700976
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700977 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
978 // the class we are a part of
979 Class* declaring_class_;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700980 ObjectArray<Class>* java_exception_types_; // TODO
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700981 Object* java_formal_type_parameters_;
982 Object* java_generic_exception_types_;
983 Object* java_generic_parameter_types_;
984 Object* java_generic_return_type_;
buzbeec143c552011-08-20 17:38:58 -0700985
Brian Carlstrom693267a2011-09-06 09:25:34 -0700986 String* name_;
987
Elliott Hughes418d20f2011-09-22 14:00:39 -0700988 // Initialized by InitJavaFields.
Brian Carlstrom693267a2011-09-06 09:25:34 -0700989 ObjectArray<Class>* java_parameter_types_;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700990 Class* java_return_type_;
Brian Carlstrom693267a2011-09-06 09:25:34 -0700991
Brian Carlstrom693267a2011-09-06 09:25:34 -0700992 // Storage for code_
993 const ByteArray* code_array_;
994
995 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
Brian Carlstrom693267a2011-09-06 09:25:34 -0700996 CodeAndDirectMethods* dex_cache_code_and_direct_methods_;
997
998 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
999 ObjectArray<StaticStorageBase>* dex_cache_initialized_static_storage_;
1000
1001 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
1002 ObjectArray<Field>* dex_cache_resolved_fields_;
1003
1004 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
1005 ObjectArray<Method>* dex_cache_resolved_methods_;
1006
Brian Carlstromdbc05252011-09-09 01:59:59 -07001007 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
1008 ObjectArray<Class>* dex_cache_resolved_types_;
1009
1010 // short cuts to declaring_class_->dex_cache_ member for fast compiled code access
1011 ObjectArray<String>* dex_cache_strings_;
1012
1013 // Storage for invoke_stub_
1014 const ByteArray* invoke_stub_array_;
1015
1016 // Storage for mapping_table_
Ian Rogersbdb03912011-09-14 00:55:44 -07001017 IntArray* mapping_table_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07001018
jeffhaoe23d93c2011-09-15 14:48:43 -07001019 // Byte arrays that hold data for the register maps
1020 const ByteArray* register_map_data_;
1021 const ByteArray* register_map_header_;
1022
Brian Carlstrom2ed67392011-09-09 14:53:28 -07001023 // The short-form method descriptor string.
1024 String* shorty_;
1025
Brian Carlstromdbc05252011-09-09 01:59:59 -07001026 // The method descriptor. This represents the parameters a method
1027 // takes and value it returns. This string is a list of the type
1028 // descriptors for the parameters enclosed in parenthesis followed
1029 // by the return type descriptor. For example, for the method
1030 //
1031 // Object mymethod(int i, double d, Thread t)
1032 //
1033 // the method descriptor would be
1034 //
1035 // (IDLjava/lang/Thread;)Ljava/lang/Object;
1036 String* signature_;
1037
buzbeec41e5b52011-09-23 12:46:19 -07001038 // Storage for Dalvik virtual register mapping_table_
1039 ShortArray* vmap_table_;
1040
Brian Carlstromdbc05252011-09-09 01:59:59 -07001041 uint32_t java_generic_types_are_initialized_;
1042
Elliott Hughes1d3f1142011-09-13 12:00:00 -07001043 // Access flags; low 16 bits are defined by spec.
Brian Carlstromdbc05252011-09-09 01:59:59 -07001044 uint32_t access_flags_;
1045
1046 // Compiled code associated with this method for callers from managed code.
1047 // May be compiled managed code or a bridge for invoking a native method.
1048 const void* code_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001049
Shih-wei Liao2fb97532011-08-11 16:17:23 -07001050 // Offset to the CodeItem.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001051 uint32_t code_item_offset_;
Shih-wei Liao2fb97532011-08-11 16:17:23 -07001052
Brian Carlstrom693267a2011-09-06 09:25:34 -07001053 // Architecture-dependent register spill mask
Brian Carlstromdbc05252011-09-09 01:59:59 -07001054 uint32_t core_spill_mask_;
1055
1056 // Architecture-dependent register spill mask
Brian Carlstrom693267a2011-09-06 09:25:34 -07001057 uint32_t fp_spill_mask_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001058
Brian Carlstrom693267a2011-09-06 09:25:34 -07001059 // Total size in bytes of the frame
1060 size_t frame_size_in_bytes_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001061
Brian Carlstrom693267a2011-09-06 09:25:34 -07001062 // Native invocation stub entry point for calling from native to managed code.
1063 const InvokeStub* invoke_stub_;
buzbee4ef76522011-09-08 10:00:32 -07001064
Brian Carlstrom693267a2011-09-06 09:25:34 -07001065 // Index of the return type
1066 uint32_t java_return_type_idx_;
1067
Brian Carlstrom693267a2011-09-06 09:25:34 -07001068 // For concrete virtual methods, this is the offset of the method
1069 // in Class::vtable_.
1070 //
1071 // For abstract methods in an interface class, this is the offset
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001072 // of the method in "iftable_->Get(n)->GetMethodArray()".
Elliott Hughes1d3f1142011-09-13 12:00:00 -07001073 uint32_t method_index_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001074
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -07001075 // The target native method registered with this method
Ian Rogersb033c752011-07-20 12:22:35 -07001076 const void* native_method_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001077
Brian Carlstrom693267a2011-09-06 09:25:34 -07001078 // Method bounds; not needed for an abstract method.
1079 //
1080 // For a native method, we compute the size of the argument list, and
1081 // set "insSize" and "registerSize" equal to it.
Elliott Hughes1d3f1142011-09-13 12:00:00 -07001082 uint32_t num_ins_;
1083 uint32_t num_outs_;
1084 uint32_t num_registers_; // ins + locals
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -07001085
Brian Carlstrom693267a2011-09-06 09:25:34 -07001086 // Method prototype descriptor string (return and argument types).
1087 uint32_t proto_idx_;
1088
1089 // Offset of return PC within frame for compiled code (in bytes)
1090 size_t return_pc_offset_in_bytes_;
1091
Brian Carlstrom693267a2011-09-06 09:25:34 -07001092 uint32_t java_slot_;
Carl Shapiro9b9ba282011-08-14 15:30:39 -07001093
Elliott Hughes80609252011-09-23 17:24:51 -07001094 static Class* java_lang_reflect_Constructor_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001095 static Class* java_lang_reflect_Method_;
1096
Brian Carlstrom693267a2011-09-06 09:25:34 -07001097 friend class ImageWriter; // for relocating code_ and invoke_stub_
1098 friend struct MethodOffsets; // for verifying offset information
Carl Shapirof88c9522011-08-06 15:47:38 -07001099 DISALLOW_IMPLICIT_CONSTRUCTORS(Method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001100};
1101
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001102class MANAGED Array : public Object {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001103 public:
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001104 static size_t SizeOf(size_t component_count,
1105 size_t component_size) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001106 return sizeof(Array) + component_count * component_size;
1107 }
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001108
Elliott Hughes68f4fa02011-08-21 10:46:59 -07001109 // A convenience for code that doesn't know the component size,
1110 // and doesn't want to have to work it out itself.
Brian Carlstromb63ec392011-08-27 17:38:27 -07001111 static Array* Alloc(Class* array_class, int32_t component_count);
Elliott Hughes68f4fa02011-08-21 10:46:59 -07001112
Brian Carlstromb63ec392011-08-27 17:38:27 -07001113 static Array* Alloc(Class* array_class, int32_t component_count, size_t component_size);
Carl Shapirof88c9522011-08-06 15:47:38 -07001114
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001115 size_t SizeOf() const;
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001116
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001117 int32_t GetLength() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001118 return GetField32(OFFSET_OF_OBJECT_MEMBER(Array, length_), false);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001119 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001120
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001121 void SetLength(int32_t length) {
Elliott Hughes0f4c41d2011-09-04 14:58:03 -07001122 CHECK_GE(length, 0);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001123 SetField32(OFFSET_OF_OBJECT_MEMBER(Array, length_), length, false);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001124 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001125
buzbeec143c552011-08-20 17:38:58 -07001126 static MemberOffset LengthOffset() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001127 return OFFSET_OF_OBJECT_MEMBER(Array, length_);
buzbeec143c552011-08-20 17:38:58 -07001128 }
1129
1130 static MemberOffset DataOffset() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001131 return OFFSET_OF_OBJECT_MEMBER(Array, first_element_);
buzbeec143c552011-08-20 17:38:58 -07001132 }
1133
Elliott Hughesbf86d042011-08-31 17:53:14 -07001134 void* GetRawData() {
1135 return reinterpret_cast<void*>(first_element_);
1136 }
1137
Elliott Hughes289da822011-08-16 10:11:20 -07001138 protected:
1139 bool IsValidIndex(int32_t index) const {
1140 if (index < 0 || index >= length_) {
Elliott Hughes80609252011-09-23 17:24:51 -07001141 return ThrowArrayIndexOutOfBoundsException(index);
Elliott Hughes289da822011-08-16 10:11:20 -07001142 }
1143 return true;
1144 }
1145
Elliott Hughes80609252011-09-23 17:24:51 -07001146 protected:
1147 bool ThrowArrayIndexOutOfBoundsException(int32_t index) const;
1148 bool ThrowArrayStoreException(Object* object) const;
1149
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001150 private:
1151 // The number of array elements.
Elliott Hughes289da822011-08-16 10:11:20 -07001152 int32_t length_;
Jesse Wilsondf4189c2011-08-09 17:10:28 -04001153 // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary
1154 int32_t padding_;
buzbeec143c552011-08-20 17:38:58 -07001155 // Marker for the data (used by generated code)
1156 uint32_t first_element_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07001157
Carl Shapirof88c9522011-08-06 15:47:38 -07001158 DISALLOW_IMPLICIT_CONSTRUCTORS(Array);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001159};
1160
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001161template<class T>
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001162class MANAGED ObjectArray : public Array {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001163 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001164 static ObjectArray<T>* Alloc(Class* object_array_class, int32_t length);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001165
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001166 T* Get(int32_t i) const;
Jesse Wilsondf4189c2011-08-09 17:10:28 -04001167
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001168 void Set(int32_t i, T* object);
Jesse Wilsondf4189c2011-08-09 17:10:28 -04001169
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001170 // Set element without bound and element type checks, to be used in limited
1171 // circumstances, such as during boot image writing
1172 void SetWithoutChecks(int32_t i, T* object);
Carl Shapirof88c9522011-08-06 15:47:38 -07001173
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001174 static void Copy(const ObjectArray<T>* src, int src_pos,
Carl Shapirof88c9522011-08-06 15:47:38 -07001175 ObjectArray<T>* dst, int dst_pos,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001176 size_t length);
Carl Shapirof88c9522011-08-06 15:47:38 -07001177
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001178 ObjectArray<T>* CopyOf(int32_t new_length);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001179
1180 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001181 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001182};
1183
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001184template<class T>
1185ObjectArray<T>* ObjectArray<T>::Alloc(Class* object_array_class, int32_t length) {
1186 return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>();
1187}
1188
1189template<class T>
1190T* ObjectArray<T>::Get(int32_t i) const {
1191 if (!IsValidIndex(i)) {
1192 return NULL;
1193 }
1194 MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*));
1195 return GetFieldObject<T*>(data_offset, false);
1196}
1197
1198template<class T>
1199ObjectArray<T>* ObjectArray<T>::CopyOf(int32_t new_length) {
1200 ObjectArray<T>* new_array = Alloc(GetClass(), new_length);
1201 Copy(this, 0, new_array, 0, std::min(GetLength(), new_length));
1202 return new_array;
1203}
1204
Brian Carlstrom1caa2c22011-08-28 13:02:33 -07001205// Type for the InitializedStaticStorage table. Currently the Class
Brian Carlstrom848a4b32011-09-04 11:29:27 -07001206// provides the static storage. However, this might change to an Array
1207// to improve image sharing, so we use this type to avoid assumptions
1208// on the current storage.
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001209class MANAGED StaticStorageBase : public Object {};
Brian Carlstrom1caa2c22011-08-28 13:02:33 -07001210
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001211// C++ mirror of java.lang.Class
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001212class MANAGED Class : public StaticStorageBase {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001213 public:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001214
1215 // Class Status
1216 //
1217 // kStatusNotReady: If a Class cannot be found in the class table by
1218 // FindClass, it allocates an new one with AllocClass in the
1219 // kStatusNotReady and calls LoadClass. Note if it does find a
1220 // class, it may not be kStatusResolved and it will try to push it
1221 // forward toward kStatusResolved.
1222 //
1223 // kStatusIdx: LoadClass populates with Class with information from
1224 // the DexFile, moving the status to kStatusIdx, indicating that the
1225 // Class values in super_class_ and interfaces_ have not been
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001226 // populated based on super_class_type_idx_ and
1227 // interfaces_type_idx_. The new Class can then be inserted into the
1228 // classes table.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001229 //
1230 // kStatusLoaded: After taking a lock on Class, the ClassLinker will
1231 // attempt to move a kStatusIdx class forward to kStatusLoaded by
1232 // using ResolveClass to initialize the super_class_ and interfaces_.
1233 //
1234 // kStatusResolved: Still holding the lock on Class, the ClassLinker
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001235 // shows linking is complete and fields of the Class populated by making
1236 // it kStatusResolved. Java allows circularities of the form where a super
1237 // class has a field that is of the type of the sub class. We need to be able
1238 // to fully resolve super classes while resolving types for fields.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001239
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001240 enum Status {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001241 kStatusError = -1,
1242 kStatusNotReady = 0,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001243 kStatusIdx = 1, // loaded, DEX idx in super_class_type_idx_ and interfaces_type_idx_
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001244 kStatusLoaded = 2, // DEX idx values resolved
1245 kStatusResolved = 3, // part of linking
1246 kStatusVerifying = 4, // in the process of being verified
1247 kStatusVerified = 5, // logically part of linking; done pre-init
1248 kStatusInitializing = 6, // class init in progress
1249 kStatusInitialized = 7, // ready to go
Carl Shapiro1fb86202011-06-27 17:43:13 -07001250 };
1251
1252 enum PrimitiveType {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001253 kPrimNot = 0,
1254 kPrimBoolean,
1255 kPrimByte,
1256 kPrimChar,
1257 kPrimShort,
1258 kPrimInt,
1259 kPrimLong,
1260 kPrimFloat,
1261 kPrimDouble,
1262 kPrimVoid,
Carl Shapiro1fb86202011-06-27 17:43:13 -07001263 };
1264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001265 Status GetStatus() const {
1266 CHECK(sizeof(Status) == sizeof(uint32_t));
1267 return static_cast<Status>(
1268 GetField32(OFFSET_OF_OBJECT_MEMBER(Class, status_), false));
1269 }
1270
1271 void SetStatus(Status new_status);
1272
1273 // Returns true if the class has failed to link.
1274 bool IsErroneous() const {
1275 return GetStatus() == kStatusError;
1276 }
1277
1278 // Returns true if the class has been loaded.
1279 bool IsIdxLoaded() const {
1280 return GetStatus() >= kStatusIdx;
1281 }
1282
1283 // Returns true if the class has been loaded.
1284 bool IsLoaded() const {
1285 return GetStatus() >= kStatusLoaded;
1286 }
1287
1288 // Returns true if the class has been linked.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001289 bool IsResolved() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001290 return GetStatus() >= kStatusResolved;
1291 }
1292
1293 // Returns true if the class has been verified.
1294 bool IsVerified() const {
1295 return GetStatus() >= kStatusVerified;
1296 }
1297
1298 // Returns true if the class is initialized.
1299 bool IsInitialized() const {
1300 return GetStatus() == kStatusInitialized;
1301 }
1302
1303 uint32_t GetAccessFlags() const;
1304
1305 void SetAccessFlags(uint32_t new_access_flags) {
1306 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, access_flags_), new_access_flags,
1307 false);
1308 }
1309
1310 // Returns true if the class is an interface.
1311 bool IsInterface() const {
1312 return (GetAccessFlags() & kAccInterface) != 0;
1313 }
1314
1315 // Returns true if the class is declared public.
1316 bool IsPublic() const {
1317 return (GetAccessFlags() & kAccPublic) != 0;
1318 }
1319
1320 // Returns true if the class is declared final.
1321 bool IsFinal() const {
1322 return (GetAccessFlags() & kAccFinal) != 0;
1323 }
1324
1325 // Returns true if the class is abstract.
1326 bool IsAbstract() const {
1327 return (GetAccessFlags() & kAccAbstract) != 0;
1328 }
1329
1330 // Returns true if the class is an annotation.
1331 bool IsAnnotation() const {
1332 return (GetAccessFlags() & kAccAnnotation) != 0;
1333 }
1334
1335 // Returns true if the class is synthetic.
1336 bool IsSynthetic() const {
1337 return (GetAccessFlags() & kAccSynthetic) != 0;
1338 }
1339
1340 bool IsReferenceClass() const {
1341 return (GetAccessFlags() & kAccClassIsReference) != 0;
1342 }
1343
1344 bool IsWeakReferenceClass() const {
1345 return (GetAccessFlags() & kAccClassIsWeakReference) != 0;
1346 }
1347
1348 bool IsSoftReferenceClass() const {
1349 return (GetAccessFlags() & ~kAccReferenceFlagsMask) == kAccClassIsReference;
1350 }
1351
1352 bool IsFinalizerReferenceClass() const {
1353 return (GetAccessFlags() & kAccClassIsFinalizerReference) != 0;
1354 }
1355
1356 bool IsPhantomReferenceClass() const {
1357 return (GetAccessFlags() & kAccClassIsPhantomReference) != 0;
1358 }
1359
1360 PrimitiveType GetPrimitiveType() const {
1361 CHECK(sizeof(PrimitiveType) == sizeof(int32_t));
1362 return static_cast<PrimitiveType>(
1363 GetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), false));
1364 }
1365
1366 void SetPrimitiveType(PrimitiveType new_type) {
1367 CHECK(sizeof(PrimitiveType) == sizeof(int32_t));
1368 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), new_type,
1369 false);
1370 }
1371
1372 // Returns true if the class is a primitive type.
1373 bool IsPrimitive() const {
1374 return GetPrimitiveType() != kPrimNot;
1375 }
1376
1377 bool IsPrimitiveBoolean() const {
1378 return GetPrimitiveType() == kPrimBoolean;
1379 }
1380
1381 bool IsPrimitiveByte() const {
1382 return GetPrimitiveType() == kPrimByte;
1383 }
1384
1385 bool IsPrimitiveChar() const {
1386 return GetPrimitiveType() == kPrimChar;
1387 }
1388
1389 bool IsPrimitiveShort() const {
1390 return GetPrimitiveType() == kPrimShort;
1391 }
1392
1393 bool IsPrimitiveInt() const {
1394 return GetPrimitiveType() == kPrimInt;
1395 }
1396
1397 bool IsPrimitiveLong() const {
1398 return GetPrimitiveType() == kPrimLong;
1399 }
1400
1401 bool IsPrimitiveFloat() const {
1402 return GetPrimitiveType() == kPrimFloat;
1403 }
1404
1405 bool IsPrimitiveDouble() const {
1406 return GetPrimitiveType() == kPrimDouble;
1407 }
1408
1409 bool IsPrimitiveVoid() const {
1410 return GetPrimitiveType() == kPrimVoid;
1411 }
1412
1413 size_t PrimitiveSize() const;
1414
1415 bool IsArrayClass() const {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001416 return GetComponentType() != NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001417 }
1418
1419 Class* GetComponentType() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001420 return GetFieldObject<Class*>(
1421 OFFSET_OF_OBJECT_MEMBER(Class, component_type_), false);
1422 }
1423
1424 void SetComponentType(Class* new_component_type) {
1425 DCHECK(GetComponentType() == NULL);
1426 DCHECK(new_component_type != NULL);
1427 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, component_type_),
1428 new_component_type, false);
1429 }
1430
1431 size_t GetComponentSize() const {
1432 return GetTypeSize(GetComponentType()->GetDescriptor());
1433 }
1434
1435 bool IsObjectClass() const {
1436 return !IsPrimitive() && GetSuperClass() == NULL;
1437 }
1438
Brian Carlstrom1f870082011-08-23 16:02:11 -07001439 // Creates a raw object instance but does not invoke the default constructor.
1440 Object* AllocObject();
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001441
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001442 static size_t GetTypeSize(const String* descriptor);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001443
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001444 const String* GetDescriptor() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001445 const String* result = GetFieldObject<const String*>(
1446 OFFSET_OF_OBJECT_MEMBER(Class, descriptor_), false);
1447 // DCHECK(result != NULL); // may be NULL prior to class linker initialization
1448 // DCHECK_NE(0, result->GetLength()); // TODO: keep?
1449 return result;
1450 }
1451
1452 void SetDescriptor(String* new_descriptor);
1453
1454 bool IsVariableSize() const {
1455 // Classes and arrays vary in size, and so the object_size_ field cannot
1456 // be used to get their instance size
1457 return IsClassClass() || IsArrayClass();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001458 }
1459
Brian Carlstrom4873d462011-08-21 15:23:39 -07001460 size_t SizeOf() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001461 CHECK(sizeof(size_t) == sizeof(int32_t));
1462 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001463 }
1464
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001465 size_t GetClassSize() const {
1466 CHECK(sizeof(size_t) == sizeof(uint32_t));
1467 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), false);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001468 }
1469
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001470 void SetClassSize(size_t new_class_size) {
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001471 DCHECK(new_class_size >= GetClassSize())
Elliott Hughes54e7df12011-09-16 11:47:04 -07001472 << " class=" << PrettyTypeOf(this)
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07001473 << " new_class_size=" << new_class_size
1474 << " GetClassSize=" << GetClassSize();
Elliott Hughes54e7df12011-09-16 11:47:04 -07001475 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), new_class_size, false);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001476 }
1477
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001478 size_t GetObjectSize() const {
1479 CHECK(!IsVariableSize());
1480 CHECK(sizeof(size_t) == sizeof(int32_t));
Elliott Hughes54e7df12011-09-16 11:47:04 -07001481 size_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001482 CHECK_GE(result, sizeof(Object));
1483 return result;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001484 }
1485
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001486 void SetObjectSize(size_t new_object_size) {
1487 DCHECK(!IsVariableSize());
1488 CHECK(sizeof(size_t) == sizeof(int32_t));
1489 return SetField32(OFFSET_OF_OBJECT_MEMBER(Class, object_size_),
1490 new_object_size, false);
Carl Shapiro83ab4f32011-08-15 20:21:39 -07001491 }
1492
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001493 // Returns true if this class is in the same packages as that class.
1494 bool IsInSamePackage(const Class* that) const;
1495
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001496 static bool IsInSamePackage(const String* descriptor1,
1497 const String* descriptor2);
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001498
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001499 // Returns true if this class can access that class.
1500 bool CanAccess(const Class* that) const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001501 return that->IsPublic() || this->IsInSamePackage(that);
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001502 }
1503
jeffhao4a801a42011-09-23 13:53:40 -07001504 // Validate method/field access.
1505 bool CanAccessMember(const Class* access_to, uint32_t member_flags) const {
1506 // quick accept for public access
1507 if (member_flags & kAccPublic) {
1508 return true;
1509 }
1510
1511 // quick accept for access from same class
1512 if (this == access_to) {
1513 return true;
1514 }
1515
1516 // quick reject for private access from another class
1517 if (member_flags & kAccPrivate) {
1518 return false;
1519 }
1520
1521 // Semi-quick test for protected access from a sub-class, which may or
1522 // may not be in the same package.
1523 if (member_flags & kAccProtected) {
1524 if (this->IsSubClass(access_to)) {
1525 return true;
1526 }
1527 }
1528
1529 // Allow protected and private access from other classes in the same package.
1530 return this->IsInSamePackage(access_to);
1531 }
1532
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001533 bool IsSubClass(const Class* klass) const;
1534
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001535 bool IsAssignableFrom(const Class* src) const {
1536 DCHECK(src != NULL);
1537 if (this == src) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001538 // Can always assign to things of the same type
1539 return true;
Brian Carlstromdbc05252011-09-09 01:59:59 -07001540 } else if (IsObjectClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001541 // Can assign any reference to java.lang.Object
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001542 return !src->IsPrimitive();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001543 } else if (IsInterface()) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001544 return src->Implements(this);
1545 } else if (src->IsArrayClass()) {
1546 return IsAssignableFromArray(src);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001547 } else {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001548 return src->IsSubClass(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001549 }
1550 }
Elliott Hughesbf86d042011-08-31 17:53:14 -07001551
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001552 Class* GetSuperClass() const {
1553 // Can only get super class for loaded classes (hack for when runtime is
1554 // initializing)
Elliott Hughesdcc24742011-09-07 14:02:44 -07001555 DCHECK(IsLoaded() || !Runtime::Current()->IsStarted());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001556 return GetFieldObject<Class*>(
1557 OFFSET_OF_OBJECT_MEMBER(Class, super_class_), false);
1558 }
1559
buzbee4a3164f2011-09-03 11:25:10 -07001560 static MemberOffset SuperClassOffset() {
1561 return MemberOffset(OFFSETOF_MEMBER(Class, super_class_));
1562 }
1563
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001564 void SetSuperClass(Class *new_super_class) {
1565 // super class is assigned once, except during class linker initialization
1566 Class* old_super_class = GetFieldObject<Class*>(
1567 OFFSET_OF_OBJECT_MEMBER(Class, super_class_), false);
1568 DCHECK(old_super_class == NULL || old_super_class == new_super_class);
1569 DCHECK(new_super_class != NULL);
1570 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, super_class_),
1571 new_super_class, false);
1572 }
1573
1574 bool HasSuperClass() const {
1575 return GetSuperClass() != NULL;
1576 }
1577
1578 uint32_t GetSuperClassTypeIdx() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001579 DCHECK(IsIdxLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001580 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, super_class_type_idx_),
1581 false);
1582 }
1583
1584 void SetSuperClassTypeIdx(int32_t new_super_class_idx) {
1585 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, super_class_type_idx_),
1586 new_super_class_idx, false);
1587 }
1588
1589 const ClassLoader* GetClassLoader() const;
1590
1591 void SetClassLoader(const ClassLoader* new_cl);
1592
1593 static MemberOffset DexCacheOffset() {
1594 return MemberOffset(OFFSETOF_MEMBER(Class, dex_cache_));
1595 }
1596
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001597 enum {
1598 kDumpClassFullDetail = 1,
1599 kDumpClassClassLoader = (1 << 1),
1600 kDumpClassInitialized = (1 << 2),
1601 };
1602
1603 void DumpClass(std::ostream& os, int flags);
1604
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001605 DexCache* GetDexCache() const;
1606
1607 void SetDexCache(DexCache* new_dex_cache);
1608
1609 ObjectArray<Method>* GetDirectMethods() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001610 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001611 return GetFieldObject<ObjectArray<Method>*>(
1612 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false);
1613 }
1614
1615 void SetDirectMethods(ObjectArray<Method>* new_direct_methods) {
1616 DCHECK(NULL == GetFieldObject<ObjectArray<Method>*>(
1617 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false));
1618 DCHECK_NE(0, new_direct_methods->GetLength());
1619 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_),
1620 new_direct_methods, false);
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001621 }
1622
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001623 Method* GetDirectMethod(int32_t i) const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001624 return GetDirectMethods()->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001625 }
1626
1627 void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001628 ObjectArray<Method>* direct_methods =
1629 GetFieldObject<ObjectArray<Method>*>(
1630 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false);
1631 direct_methods->Set(i, f);
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001632 }
1633
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001634 // Returns the number of static, private, and constructor methods.
1635 size_t NumDirectMethods() const {
1636 return (GetDirectMethods() != NULL) ? GetDirectMethods()->GetLength() : 0;
1637 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001638
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001639 ObjectArray<Method>* GetVirtualMethods() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001640 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001641 return GetFieldObject<ObjectArray<Method>*>(
1642 OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false);
1643 }
1644
1645 void SetVirtualMethods(ObjectArray<Method>* new_virtual_methods) {
1646 // TODO: we reassign virtual methods to grow the table for miranda
1647 // methods.. they should really just be assigned once
1648 DCHECK_NE(0, new_virtual_methods->GetLength());
1649 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_),
1650 new_virtual_methods, false);
1651 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001652
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001653 // Returns the number of non-inherited virtual methods.
1654 size_t NumVirtualMethods() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001655 return (GetVirtualMethods() != NULL) ? GetVirtualMethods()->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001656 }
1657
1658 Method* GetVirtualMethod(uint32_t i) const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001659 DCHECK(IsResolved() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001660 return GetVirtualMethods()->Get(i);
1661 }
1662
1663 Method* GetVirtualMethodDuringLinking(uint32_t i) const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001664 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001665 return GetVirtualMethods()->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001666 }
1667
1668 void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001669 ObjectArray<Method>* virtual_methods =
1670 GetFieldObject<ObjectArray<Method>*>(
1671 OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false);
1672 virtual_methods->Set(i, f);
1673 }
1674
1675 ObjectArray<Method>* GetVTable() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001676 DCHECK(IsResolved() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001677 return GetFieldObject<ObjectArray<Method>*>(
1678 OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
1679 }
1680
1681 ObjectArray<Method>* GetVTableDuringLinking() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001682 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001683 return GetFieldObject<ObjectArray<Method>*>(
1684 OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
1685 }
1686
1687 void SetVTable(ObjectArray<Method>* new_vtable) {
1688 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), new_vtable, false);
1689 }
1690
1691 static MemberOffset VTableOffset() {
1692 return OFFSET_OF_OBJECT_MEMBER(Class, vtable_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001693 }
1694
Brian Carlstrom30b94452011-08-25 21:35:26 -07001695 // Given a method implemented by this class but potentially from a
1696 // super class, return the specific implementation
1697 // method for this class.
1698 Method* FindVirtualMethodForVirtual(Method* method) {
1699 DCHECK(!method->GetDeclaringClass()->IsInterface());
1700 // The argument method may from a super class.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001701 // Use the index to a potentially overridden one for this instance's class.
1702 return GetVTable()->Get(method->GetMethodIndex());
Brian Carlstrom30b94452011-08-25 21:35:26 -07001703 }
1704
1705 // Given a method implemented by this class, but potentially from a
1706 // super class or interface, return the specific implementation
1707 // method for this class.
1708 Method* FindVirtualMethodForInterface(Method* method);
1709
jeffhaobdb76512011-09-07 11:43:16 -07001710 Method* FindInterfaceMethod(const StringPiece& name,
1711 const StringPiece& descriptor);
1712
Brian Carlstrom30b94452011-08-25 21:35:26 -07001713 Method* FindVirtualMethodForVirtualOrInterface(Method* method) {
1714 if (method->GetDeclaringClass()->IsInterface()) {
1715 return FindVirtualMethodForInterface(method);
1716 }
1717 return FindVirtualMethodForVirtual(method);
Elliott Hughes72025e52011-08-23 17:50:30 -07001718 }
1719
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001720 Method* FindDeclaredVirtualMethod(const StringPiece& name,
Brian Carlstrom3a7b4f22011-09-17 15:01:57 -07001721 const StringPiece& signature);
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001722
1723 Method* FindVirtualMethod(const StringPiece& name,
1724 const StringPiece& descriptor);
1725
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001726 Method* FindDeclaredDirectMethod(const StringPiece& name,
1727 const StringPiece& signature);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001728
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001729 Method* FindDirectMethod(const StringPiece& name,
1730 const StringPiece& signature);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001731
Carl Shapiro69759ea2011-07-21 18:13:35 -07001732 size_t NumInterfaces() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001733 CHECK(IsIdxLoaded() || IsErroneous()); // used during loading
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001734 ObjectArray<Class>* interfaces = GetFieldObject<ObjectArray<Class>*>(
1735 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false);
1736 return (interfaces != NULL) ? interfaces->GetLength() : 0;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001737 }
1738
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001739 IntArray* GetInterfacesTypeIdx() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001740 CHECK(IsIdxLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001741 return GetFieldObject<IntArray*>(
1742 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_), false);
1743 }
1744
1745 void SetInterfacesTypeIdx(IntArray* new_interfaces_idx);
1746
1747 ObjectArray<Class>* GetInterfaces() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001748 CHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001749 return GetFieldObject<ObjectArray<Class>*>(
1750 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false);
1751 }
1752
1753 void SetInterfaces(ObjectArray<Class>* new_interfaces) {
1754 DCHECK(NULL == GetFieldObject<Object*>(
1755 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false));
1756 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, interfaces_),
1757 new_interfaces, false);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001758 }
1759
1760 void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t
Elliott Hughes418d20f2011-09-22 14:00:39 -07001761 DCHECK_LT(i, NumInterfaces());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001762 ObjectArray<Class>* interfaces =
1763 GetFieldObject<ObjectArray<Class>*>(
1764 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false);
1765 interfaces->Set(i, f);
1766 }
1767
1768 Class* GetInterface(uint32_t i) const {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001769 DCHECK_LT(i, NumInterfaces());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001770 return GetInterfaces()->Get(i);
1771 }
1772
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001773 int32_t GetIfTableCount() const {
1774 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1775 if (iftable == NULL) {
1776 return 0;
1777 }
1778 return iftable->GetLength();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001779 }
1780
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001781 ObjectArray<InterfaceEntry>* GetIfTable() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001782 DCHECK(IsResolved() || IsErroneous());
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001783 return GetFieldObject<ObjectArray<InterfaceEntry>*>(
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001784 OFFSET_OF_OBJECT_MEMBER(Class, iftable_), false);
1785 }
1786
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001787 void SetIfTable(ObjectArray<InterfaceEntry>* new_iftable) {
Elliott Hughes5ea047b2011-09-13 14:38:18 -07001788 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, iftable_), new_iftable, false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001789 }
1790
1791 // Get instance fields
1792 ObjectArray<Field>* GetIFields() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001793 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001794 return GetFieldObject<ObjectArray<Field>*>(
1795 OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false);
1796 }
1797
1798 void SetIFields(ObjectArray<Field>* new_ifields) {
1799 DCHECK(NULL == GetFieldObject<ObjectArray<Field>*>(
1800 OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false));
1801 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, ifields_),
1802 new_ifields, false);
1803 }
1804
1805 size_t NumInstanceFields() const {
1806 return (GetIFields() != NULL) ? GetIFields()->GetLength() : 0;
1807 }
1808
1809 Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t
1810 DCHECK_NE(NumInstanceFields(), 0U);
1811 return GetIFields()->Get(i);
1812 }
1813
1814 void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t
1815 ObjectArray<Field>* ifields= GetFieldObject<ObjectArray<Field>*>(
1816 OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false);
1817 ifields->Set(i, f);
1818 }
1819
1820 // Returns the number of instance fields containing reference types.
1821 size_t NumReferenceInstanceFields() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001822 DCHECK(IsResolved() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001823 DCHECK(sizeof(size_t) == sizeof(int32_t));
1824 return GetField32(
1825 OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_), false);
1826 }
1827
1828 size_t NumReferenceInstanceFieldsDuringLinking() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001829 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001830 DCHECK(sizeof(size_t) == sizeof(int32_t));
1831 return GetField32(
1832 OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_), false);
1833 }
1834
1835 void SetNumReferenceInstanceFields(size_t new_num) {
1836 DCHECK(sizeof(size_t) == sizeof(int32_t));
1837 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_),
1838 new_num, false);
1839 }
1840
1841 uint32_t GetReferenceInstanceOffsets() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001842 DCHECK(IsResolved() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001843 return GetField32(
1844 OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_), false);
1845 }
1846
1847 void SetReferenceInstanceOffsets(uint32_t new_reference_offsets);
1848
1849 // Beginning of static field data
1850 static MemberOffset FieldsOffset() {
1851 return OFFSET_OF_OBJECT_MEMBER(Class, fields_);
1852 }
1853
1854 // Returns the number of static fields containing reference types.
1855 size_t NumReferenceStaticFields() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001856 DCHECK(IsResolved() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001857 DCHECK(sizeof(size_t) == sizeof(int32_t));
1858 return GetField32(
1859 OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_), false);
1860 }
1861
1862 size_t NumReferenceStaticFieldsDuringLinking() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001863 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001864 DCHECK(sizeof(size_t) == sizeof(int32_t));
1865 return GetField32(
1866 OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_), false);
1867 }
1868
1869 void SetNumReferenceStaticFields(size_t new_num) {
1870 DCHECK(sizeof(size_t) == sizeof(int32_t));
1871 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_),
1872 new_num, false);
1873 }
1874
1875 ObjectArray<Field>* GetSFields() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001876 DCHECK(IsLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001877 return GetFieldObject<ObjectArray<Field>*>(
1878 OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false);
1879 }
1880
1881 void SetSFields(ObjectArray<Field>* new_sfields) {
1882 DCHECK(NULL == GetFieldObject<ObjectArray<Field>*>(
1883 OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false));
1884 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, sfields_),
1885 new_sfields, false);
1886 }
1887
1888 size_t NumStaticFields() const {
1889 return (GetSFields() != NULL) ? GetSFields()->GetLength() : 0;
1890 }
1891
1892 Field* GetStaticField(uint32_t i) const { // TODO: uint16_t
1893 return GetSFields()->Get(i);
1894 }
1895
1896 void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t
1897 ObjectArray<Field>* sfields= GetFieldObject<ObjectArray<Field>*>(
1898 OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false);
1899 sfields->Set(i, f);
1900 }
1901
1902 uint32_t GetReferenceStaticOffsets() const {
1903 return GetField32(
1904 OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_), false);
1905 }
1906
1907 void SetReferenceStaticOffsets(uint32_t new_reference_offsets);
1908
1909 // Finds the given instance field in this class or a superclass.
1910 Field* FindInstanceField(const StringPiece& name, Class* type);
1911
1912 Field* FindDeclaredInstanceField(const StringPiece& name, Class* type);
1913
1914 // Finds the given static field in this class or a superclass.
1915 Field* FindStaticField(const StringPiece& name, Class* type);
1916
1917 Field* FindDeclaredStaticField(const StringPiece& name, Class* type);
1918
Elliott Hughesdcc24742011-09-07 14:02:44 -07001919 pid_t GetClinitThreadId() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001920 DCHECK(IsIdxLoaded() || IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001921 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, clinit_thread_id_), false);
1922 }
1923
Elliott Hughesdcc24742011-09-07 14:02:44 -07001924 void SetClinitThreadId(pid_t new_clinit_thread_id) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001925 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, clinit_thread_id_),
1926 new_clinit_thread_id, false);
1927 }
1928
1929 Class* GetVerifyErrorClass() const {
Brian Carlstrom693267a2011-09-06 09:25:34 -07001930 // DCHECK(IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001931 return GetFieldObject<Class*>(
1932 OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_), false);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001933 }
1934
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001935 void SetVerifyErrorClass(Class* klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001936 klass->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_),
1937 klass, false);
1938 }
1939
Brian Carlstromc74255f2011-09-11 22:47:39 -07001940 String* GetSourceFile() const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001941
Brian Carlstromc74255f2011-09-11 22:47:39 -07001942 void SetSourceFile(String* new_source_file);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001943
jeffhaobdb76512011-09-07 11:43:16 -07001944 private:
jeffhao5dbddee2011-09-07 16:38:26 -07001945 bool Implements(const Class* klass) const;
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001946 bool IsArrayAssignableFromArray(const Class* klass) const;
1947 bool IsAssignableFromArray(const Class* klass) const;
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001948
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001949 // descriptor for the class such as "java.lang.Class" or "[C"
1950 String* name_; // TODO initialize
Carl Shapiro1fb86202011-06-27 17:43:13 -07001951
Brian Carlstrom693267a2011-09-06 09:25:34 -07001952 // defining class loader, or NULL for the "bootstrap" system loader
Brian Carlstromdbc05252011-09-09 01:59:59 -07001953 const ClassLoader* class_loader_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001954
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001955 // For array classes, the component class object for instanceof/checkcast
1956 // (for String[][][], this will be String[][]). NULL for non-array classes.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001957 Class* component_type_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001958
Brian Carlstrom693267a2011-09-06 09:25:34 -07001959 // descriptor for the class such as "Ljava/lang/Class;" or "[C"
1960 String* descriptor_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001961
Brian Carlstrom693267a2011-09-06 09:25:34 -07001962 // DexCache of resolved constant pool entries
1963 // (will be NULL for VM-generated, e.g. arrays and primitive classes)
1964 DexCache* dex_cache_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001965
1966 // static, private, and <init> methods
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001967 ObjectArray<Method>* direct_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001968
Brian Carlstrom693267a2011-09-06 09:25:34 -07001969 // instance fields
1970 //
1971 // These describe the layout of the contents of an Object.
1972 // Note that only the fields directly declared by this class are
1973 // listed in ifields; fields declared by a superclass are listed in
1974 // the superclass's Class.ifields.
1975 //
1976 // All instance fields that refer to objects are guaranteed to be at
1977 // the beginning of the field list. num_reference_instance_fields_
1978 // specifies the number of reference fields.
1979 ObjectArray<Field>* ifields_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001980
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001981 // Interface table (iftable_), one entry per interface supported by
1982 // this class. That means one entry for each interface we support
1983 // directly, indirectly via superclass, or indirectly via
1984 // superinterface. This will be null if neither we nor our
1985 // superclass implement any interfaces.
1986 //
1987 // Why we need this: given "class Foo implements Face", declare
1988 // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah"
1989 // is part of the Face interface. We can't easily use a single
1990 // vtable.
1991 //
1992 // For every interface a concrete class implements, we create an array
1993 // of the concrete vtable_ methods for the methods in the interface.
1994 ObjectArray<InterfaceEntry>* iftable_;
1995
Brian Carlstromdbc05252011-09-09 01:59:59 -07001996 // array of interfaces this class implements directly
1997 // see also interfaces_type_idx_
1998 ObjectArray<Class>* interfaces_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07001999
2000 // array of type_idx's for interfaces this class implements directly
2001 // see also interfaces_
2002 IntArray* interfaces_type_idx_;
2003
Brian Carlstromdbc05252011-09-09 01:59:59 -07002004 // Static fields
2005 ObjectArray<Field>* sfields_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002006
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002007 // source file name, if known. Otherwise, NULL.
2008 String* source_file_;
2009
Brian Carlstromdbc05252011-09-09 01:59:59 -07002010 // The superclass, or NULL if this is java.lang.Object or a
2011 // primitive type.
2012 // see also super_class_type_idx_;
2013 Class* super_class_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002014
Brian Carlstromdbc05252011-09-09 01:59:59 -07002015 // If class verify fails, we must return same error on subsequent tries.
2016 // Update with SetVerifyErrorClass to ensure a write barrier is used.
2017 const Class* verify_error_class_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002018
Brian Carlstromdbc05252011-09-09 01:59:59 -07002019 // virtual methods defined in this class; invoked through vtable
2020 ObjectArray<Method>* virtual_methods_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002021
Brian Carlstromdbc05252011-09-09 01:59:59 -07002022 // Virtual method table (vtable), for use by "invoke-virtual". The
2023 // vtable from the superclass is copied in, and virtual methods from
2024 // our class either replace those from the super or are appended.
2025 ObjectArray<Method>* vtable_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002026
Brian Carlstromdbc05252011-09-09 01:59:59 -07002027 // access flags; low 16 bits are defined by VM spec
2028 uint32_t access_flags_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002029
Brian Carlstrom53d6ff42011-09-23 10:45:07 -07002030 // Total class size; used when allocating storage on gc heap.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002031 size_t class_size_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002032
Elliott Hughes5f791332011-09-15 17:45:30 -07002033 // tid used to check for recursive <clinit> invocation
Brian Carlstromdbc05252011-09-09 01:59:59 -07002034 pid_t clinit_thread_id_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07002035
Brian Carlstromdbc05252011-09-09 01:59:59 -07002036 // number of instance fields that are object refs
2037 size_t num_reference_instance_fields_;
2038
2039 // number of static fields that are object refs
2040 size_t num_reference_static_fields_;
2041
2042 // Total object size; used when allocating storage on gc heap.
2043 // (For interfaces and abstract classes this will be zero.)
2044 size_t object_size_;
2045
2046 // primitive type index, or kPrimNot (0); set for generated prim classes
2047 PrimitiveType primitive_type_;
2048
2049 // Bitmap of offsets of ifields.
2050 uint32_t reference_instance_offsets_;
2051
2052 // Bitmap of offsets of sfields.
2053 uint32_t reference_static_offsets_;
2054
Brian Carlstrom693267a2011-09-06 09:25:34 -07002055 // state of class initialization
2056 Status status_;
Jesse Wilson7833bd22011-08-09 18:31:44 -04002057
Brian Carlstrom693267a2011-09-06 09:25:34 -07002058 // Set in LoadClass, used to LinkClass
2059 // see also super_class_
2060 uint32_t super_class_type_idx_;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002061
Brian Carlstrom693267a2011-09-06 09:25:34 -07002062 // TODO: ?
2063 // initiating class loader list
2064 // NOTE: for classes with low serialNumber, these are unused, and the
2065 // values are kept in a table in gDvm.
2066 // InitiatingLoaderList initiating_loader_list_;
2067
Brian Carlstrom4873d462011-08-21 15:23:39 -07002068 // Location of first static field.
2069 uint32_t fields_[0];
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002070
Brian Carlstrom693267a2011-09-06 09:25:34 -07002071 friend struct ClassOffsets; // for verifying offset information
Carl Shapirof88c9522011-08-06 15:47:38 -07002072 DISALLOW_IMPLICIT_CONSTRUCTORS(Class);
Carl Shapiro1fb86202011-06-27 17:43:13 -07002073};
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002074
Elliott Hughes1f359b02011-07-17 14:27:17 -07002075std::ostream& operator<<(std::ostream& os, const Class::Status& rhs);
Carl Shapiro1fb86202011-06-27 17:43:13 -07002076
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002077inline void Object::SetClass(Class* new_klass) {
2078 // new_klass may be NULL prior to class linker initialization
Elliott Hughes5ea047b2011-09-13 14:38:18 -07002079 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Object, klass_), new_klass, false, false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002080}
2081
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07002082inline bool Object::InstanceOf(const Class* klass) const {
Jesse Wilson14150742011-07-29 19:04:44 -04002083 DCHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002084 DCHECK(GetClass() != NULL);
2085 return klass->IsAssignableFrom(GetClass());
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002086}
2087
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002088inline bool Object::IsClass() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002089 Class* java_lang_Class = GetClass()->GetClass();
2090 return GetClass() == java_lang_Class;
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002091}
2092
Brian Carlstrom4873d462011-08-21 15:23:39 -07002093inline bool Object::IsClassClass() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002094 Class* java_lang_Class = GetClass()->GetClass();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002095 return this == java_lang_Class;
2096}
2097
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002098inline bool Object::IsObjectArray() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002099 return IsArrayInstance() && !GetClass()->GetComponentType()->IsPrimitive();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002100}
2101
Brian Carlstromb63ec392011-08-27 17:38:27 -07002102inline bool Object::IsArrayInstance() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002103 return GetClass()->IsArrayClass();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002104}
2105
Brian Carlstroma663ea52011-08-19 23:33:41 -07002106inline bool Object::IsField() const {
2107 Class* java_lang_Class = klass_->klass_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002108 Class* java_lang_reflect_Field =
2109 java_lang_Class->GetInstanceField(0)->GetClass();
2110 return GetClass() == java_lang_reflect_Field;
Brian Carlstroma663ea52011-08-19 23:33:41 -07002111}
2112
2113inline bool Object::IsMethod() const {
Elliott Hughes80609252011-09-23 17:24:51 -07002114 Class* c = GetClass();
2115 return c == Method::GetMethodClass() || c == Method::GetConstructorClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002116}
2117
2118inline bool Object::IsReferenceInstance() const {
2119 return GetClass()->IsReferenceClass();
2120}
2121
2122inline bool Object::IsWeakReferenceInstance() const {
2123 return GetClass()->IsWeakReferenceClass();
2124}
2125
2126inline bool Object::IsSoftReferenceInstance() const {
2127 return GetClass()->IsSoftReferenceClass();
2128}
2129
2130inline bool Object::IsFinalizerReferenceInstance() const {
2131 return GetClass()->IsFinalizerReferenceClass();
2132}
2133
2134inline bool Object::IsPhantomReferenceInstance() const {
2135 return GetClass()->IsPhantomReferenceClass();
Brian Carlstroma663ea52011-08-19 23:33:41 -07002136}
2137
Elliott Hughes04b63fd2011-08-16 09:40:10 -07002138inline size_t Object::SizeOf() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002139 size_t result;
Brian Carlstromb63ec392011-08-27 17:38:27 -07002140 if (IsArrayInstance()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002141 result = AsArray()->SizeOf();
2142 } else if (IsClass()) {
2143 result = AsClass()->SizeOf();
2144 } else {
2145 result = GetClass()->GetObjectSize();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002146 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002147 DCHECK(!IsField() || result == sizeof(Field));
2148 DCHECK(!IsMethod() || result == sizeof(Method));
2149 return result;
2150}
2151
2152inline void Field::SetOffset(MemberOffset num_bytes) {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002153 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Brian Carlstrom693267a2011-09-06 09:25:34 -07002154 Class* type = GetTypeDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002155 if (type != NULL && (type->IsPrimitiveDouble() || type->IsPrimitiveLong())) {
2156 DCHECK(IsAligned(num_bytes.Uint32Value(), 8));
Brian Carlstrom4873d462011-08-21 15:23:39 -07002157 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002158 SetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_),
2159 num_bytes.Uint32Value(), false);
2160}
2161
2162inline Class* Field::GetDeclaringClass() const {
2163 Class* result = GetFieldObject<Class*>(
2164 OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), false);
2165 DCHECK(result != NULL);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002166 DCHECK(result->IsLoaded() || result->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002167 return result;
2168}
2169
2170inline void Field::SetDeclaringClass(Class *new_declaring_class) {
2171 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_),
2172 new_declaring_class, false);
2173}
2174
2175inline Class* Method::GetDeclaringClass() const {
2176 Class* result =
2177 GetFieldObject<Class*>(
2178 OFFSET_OF_OBJECT_MEMBER(Method, declaring_class_), false);
2179 DCHECK(result != NULL);
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002180 DCHECK(result->IsLoaded() || result->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002181 return result;
2182}
2183
2184inline void Method::SetDeclaringClass(Class *new_declaring_class) {
2185 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, declaring_class_),
2186 new_declaring_class, false);
2187}
2188
2189inline uint32_t Method::GetReturnTypeIdx() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002190 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002191 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, java_return_type_idx_),
2192 false);
2193}
2194
2195inline bool Method::IsReturnAReference() const {
2196 return !GetReturnType()->IsPrimitive();
2197}
2198
2199inline bool Method::IsReturnAFloat() const {
2200 return GetReturnType()->IsPrimitiveFloat();
2201}
2202
2203inline bool Method::IsReturnADouble() const {
2204 return GetReturnType()->IsPrimitiveDouble();
2205}
2206
2207inline bool Method::IsReturnALong() const {
2208 return GetReturnType()->IsPrimitiveLong();
2209}
2210
2211inline bool Method::IsReturnVoid() const {
2212 return GetReturnType()->IsPrimitiveVoid();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002213}
2214
Elliott Hughes04b63fd2011-08-16 09:40:10 -07002215inline size_t Array::SizeOf() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002216 return SizeOf(GetLength(), GetClass()->GetComponentSize());
2217}
2218
2219template<class T>
2220void ObjectArray<T>::Set(int32_t i, T* object) {
2221 if (IsValidIndex(i)) {
2222 if (object != NULL) {
2223 Class* element_class = GetClass()->GetComponentType();
Elliott Hughes80609252011-09-23 17:24:51 -07002224 if (!object->InstanceOf(element_class)) {
2225 ThrowArrayStoreException(object);
2226 return;
2227 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002228 }
2229 MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*));
2230 SetFieldObject(data_offset, object, false);
2231 }
2232}
2233
2234template<class T>
2235void ObjectArray<T>::SetWithoutChecks(int32_t i, T* object) {
2236 DCHECK(IsValidIndex(i));
2237 MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*));
2238 SetFieldObject(data_offset, object, false);
2239}
2240
2241template<class T>
2242void ObjectArray<T>::Copy(const ObjectArray<T>* src, int src_pos,
2243 ObjectArray<T>* dst, int dst_pos,
2244 size_t length) {
2245 if (src->IsValidIndex(src_pos) &&
2246 src->IsValidIndex(src_pos+length-1) &&
2247 dst->IsValidIndex(dst_pos) &&
2248 dst->IsValidIndex(dst_pos+length-1)) {
2249 MemberOffset src_offset(DataOffset().Int32Value() +
2250 src_pos * sizeof(Object*));
2251 MemberOffset dst_offset(DataOffset().Int32Value() +
2252 dst_pos * sizeof(Object*));
2253 Class* array_class = dst->GetClass();
2254 if (array_class == src->GetClass()) {
2255 // No need for array store checks if arrays are of the same type
2256 for (size_t i=0; i < length; i++) {
2257 Object* object = src->GetFieldObject<Object*>(src_offset, false);
2258 dst->SetFieldObject(dst_offset, object, false);
2259 src_offset = MemberOffset(src_offset.Uint32Value() + sizeof(Object*));
2260 dst_offset = MemberOffset(dst_offset.Uint32Value() + sizeof(Object*));
2261 }
2262 } else {
2263 Class* element_class = array_class->GetComponentType();
2264 CHECK(!element_class->IsPrimitive());
2265 for (size_t i=0; i < length; i++) {
2266 Object* object = src->GetFieldObject<Object*>(src_offset, false);
Elliott Hughes80609252011-09-23 17:24:51 -07002267 if (object != NULL && !object->InstanceOf(element_class)) {
2268 dst->ThrowArrayStoreException(object);
2269 return;
2270 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002271 dst->SetFieldObject(dst_offset, object, false);
2272 src_offset = MemberOffset(src_offset.Uint32Value() + sizeof(Object*));
2273 dst_offset = MemberOffset(dst_offset.Uint32Value() + sizeof(Object*));
2274 }
2275 }
Elliott Hughes3a4f8df2011-09-13 15:22:36 -07002276 Heap::WriteBarrier(dst);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002277 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -07002278}
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07002279
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002280class MANAGED ClassClass : public Class {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002281 private:
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002282 int32_t padding_;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002283 int64_t serialVersionUID_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002284 friend struct ClassClassOffsets; // for verifying offset information
Brian Carlstrom4873d462011-08-21 15:23:39 -07002285 DISALLOW_IMPLICIT_CONSTRUCTORS(ClassClass);
2286};
2287
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002288class MANAGED StringClass : public Class {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002289 private:
2290 CharArray* ASCII_;
2291 Object* CASE_INSENSITIVE_ORDER_;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002292 uint32_t REPLACEMENT_CHAR_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002293 int64_t serialVersionUID_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002294 friend struct StringClassOffsets; // for verifying offset information
Brian Carlstrom4873d462011-08-21 15:23:39 -07002295 DISALLOW_IMPLICIT_CONSTRUCTORS(StringClass);
2296};
2297
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002298class MANAGED FieldClass : public Class {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002299 private:
2300 Object* ORDER_BY_NAME_AND_DECLARING_CLASS_;
2301 uint32_t TYPE_BOOLEAN_;
2302 uint32_t TYPE_BYTE_;
2303 uint32_t TYPE_CHAR_;
2304 uint32_t TYPE_DOUBLE_;
2305 uint32_t TYPE_FLOAT_;
2306 uint32_t TYPE_INTEGER_;
2307 uint32_t TYPE_LONG_;
2308 uint32_t TYPE_SHORT_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002309 friend struct FieldClassOffsets; // for verifying offset information
Brian Carlstrom4873d462011-08-21 15:23:39 -07002310 DISALLOW_IMPLICIT_CONSTRUCTORS(FieldClass);
2311};
2312
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002313class MANAGED MethodClass : public Class {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002314 private:
Brian Carlstrom53d6ff42011-09-23 10:45:07 -07002315 ObjectArray<Object>* NO_ANNOTATIONS_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002316 Object* ORDER_BY_SIGNATURE_;
2317 friend struct MethodClassOffsets; // for verifying offset information
Brian Carlstrom4873d462011-08-21 15:23:39 -07002318 DISALLOW_IMPLICIT_CONSTRUCTORS(MethodClass);
2319};
2320
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002321template<class T>
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002322class MANAGED PrimitiveArray : public Array {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002323 public:
Elliott Hughes710a0cb2011-08-16 14:32:37 -07002324 typedef T ElementType;
2325
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002326 static PrimitiveArray<T>* Alloc(size_t length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07002327
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002328 const T* GetData() const {
2329 return reinterpret_cast<const T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07002330 }
2331
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002332 T* GetData() {
2333 return reinterpret_cast<T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07002334 }
2335
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002336 T Get(int32_t i) const {
Elliott Hughes289da822011-08-16 10:11:20 -07002337 if (!IsValidIndex(i)) {
Elliott Hughes710a0cb2011-08-16 14:32:37 -07002338 return T(0);
Elliott Hughes289da822011-08-16 10:11:20 -07002339 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002340 return GetData()[i];
Brian Carlstrom0b138b22011-07-27 15:19:17 -07002341 }
2342
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002343 void Set(int32_t i, T value) {
Elliott Hughes289da822011-08-16 10:11:20 -07002344 // TODO: ArrayStoreException
2345 if (IsValidIndex(i)) {
2346 GetData()[i] = value;
2347 }
Brian Carlstrom0b138b22011-07-27 15:19:17 -07002348 }
2349
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002350 static void SetArrayClass(Class* array_class) {
Brian Carlstroma663ea52011-08-19 23:33:41 -07002351 CHECK(array_class_ == NULL);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002352 CHECK(array_class != NULL);
2353 array_class_ = array_class;
2354 }
2355
Brian Carlstroma663ea52011-08-19 23:33:41 -07002356 static void ResetArrayClass() {
2357 CHECK(array_class_ != NULL);
2358 array_class_ = NULL;
2359 }
2360
Brian Carlstroma7f4f482011-07-17 17:01:34 -07002361 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -07002362 // Location of first element.
2363 T elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07002364
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07002365 static Class* array_class_;
2366
Carl Shapirof88c9522011-08-06 15:47:38 -07002367 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
Brian Carlstroma7f4f482011-07-17 17:01:34 -07002368};
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002369
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002370inline void Class::SetInterfacesTypeIdx(IntArray* new_interfaces_idx) {
2371 DCHECK(NULL == GetFieldObject<IntArray*>(
2372 OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_), false));
2373 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_),
2374 new_interfaces_idx, false);
2375}
2376
2377// C++ mirror of java.lang.String
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002378class MANAGED String : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -07002379 public:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002380 const CharArray* GetCharArray() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002381 const CharArray* result = GetFieldObject<const CharArray*>(
2382 OFFSET_OF_OBJECT_MEMBER(String, array_), false);
2383 DCHECK(result != NULL);
2384 return result;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002385 }
2386
Elliott Hughes814e4032011-08-23 12:07:56 -07002387 int32_t GetOffset() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002388 int32_t result = GetField32(
2389 OFFSET_OF_OBJECT_MEMBER(String, offset_), false);
2390 DCHECK_LE(0, result);
2391 return result;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002392 }
2393
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002394 int32_t GetLength() const;
2395
2396 int32_t GetHashCode() const;
2397
2398 void ComputeHashCode() {
2399 SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()));
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002400 }
2401
Elliott Hughes814e4032011-08-23 12:07:56 -07002402 int32_t GetUtfLength() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002403 return CountUtf8Bytes(GetCharArray()->GetData(), GetLength());
Elliott Hughes814e4032011-08-23 12:07:56 -07002404 }
2405
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002406 uint16_t CharAt(int32_t index) const;
2407
Brian Carlstromc74255f2011-09-11 22:47:39 -07002408 String* Intern();
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002409
Brian Carlstrom7e93b502011-08-04 14:16:22 -07002410 static String* AllocFromUtf16(int32_t utf16_length,
Brian Carlstroma663ea52011-08-19 23:33:41 -07002411 const uint16_t* utf16_data_in,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002412 int32_t hash_code = 0);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002413
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002414 static String* AllocFromModifiedUtf8(const char* utf);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07002415
Jesse Wilson8989d992011-08-02 13:39:42 -07002416 static String* AllocFromModifiedUtf8(int32_t utf16_length,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002417 const char* utf8_data_in);
2418
2419 static String* Alloc(Class* java_lang_String, int32_t utf16_length);
2420
2421 static String* Alloc(Class* java_lang_String, CharArray* array);
2422
2423 bool Equals(const char* modified_utf8) const;
2424
2425 // TODO: do we need this overload? give it a more intention-revealing name.
2426 bool Equals(const StringPiece& modified_utf8) const;
2427
2428 bool Equals(const String* that) const;
2429
2430 // TODO: do we need this overload? give it a more intention-revealing name.
2431 bool Equals(const uint16_t* that_chars, int32_t that_offset,
2432 int32_t that_length) const;
2433
2434 // Create a modified UTF-8 encoded std::string from a java/lang/String object.
2435 std::string ToModifiedUtf8() const;
2436
2437 static Class* GetJavaLangString() {
2438 DCHECK(java_lang_String_ != NULL);
2439 return java_lang_String_;
Jesse Wilson8989d992011-08-02 13:39:42 -07002440 }
2441
Brian Carlstroma663ea52011-08-19 23:33:41 -07002442 static void SetClass(Class* java_lang_String);
2443 static void ResetClass();
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07002444
Brian Carlstroma7f4f482011-07-17 17:01:34 -07002445 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002446 void SetHashCode(int32_t new_hash_code) {
2447 DCHECK_EQ(0u,
2448 GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false));
2449 SetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_),
2450 new_hash_code, false);
2451 }
2452
2453 void SetCount(int32_t new_count) {
2454 DCHECK_LE(0, new_count);
2455 SetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count, false);
2456 }
2457
2458 void SetOffset(int32_t new_offset) {
2459 DCHECK_LE(0, new_offset);
2460 DCHECK_GE(GetLength(), new_offset);
2461 SetField32(OFFSET_OF_OBJECT_MEMBER(String, offset_), new_offset, false);
2462 }
2463
2464 void SetArray(CharArray* new_array) {
2465 DCHECK(new_array != NULL);
2466 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(String, array_), new_array, false);
2467 }
2468
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002469 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
2470 CharArray* array_;
2471
Brian Carlstromdbc05252011-09-09 01:59:59 -07002472 int32_t count_;
2473
Carl Shapirof88c9522011-08-06 15:47:38 -07002474 uint32_t hash_code_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002475
Elliott Hughes289da822011-08-16 10:11:20 -07002476 int32_t offset_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002477
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07002478 static Class* java_lang_String_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002479
Brian Carlstrom693267a2011-09-06 09:25:34 -07002480 friend struct StringOffsets; // for verifying offset information
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002481 DISALLOW_IMPLICIT_CONSTRUCTORS(String);
Carl Shapiro1fb86202011-06-27 17:43:13 -07002482};
2483
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002484inline const String* Field::GetName() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002485 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002486 String* result =
2487 GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(Field, name_), false);
2488 DCHECK(result != NULL);
2489 return result;
2490}
2491
2492inline void Field::SetName(String* new_name) {
2493 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Field, name_),
2494 new_name, false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002495}
2496
2497inline uint32_t Field::GetAccessFlags() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002498 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002499 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), false);
2500}
2501
2502inline uint32_t Field::GetTypeIdx() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002503 DCHECK(GetDeclaringClass()->IsIdxLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002504 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, type_idx_), false);
2505}
2506
2507inline MemberOffset Field::GetOffset() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002508 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002509 return MemberOffset(
2510 GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_), false));
2511}
2512
2513inline MemberOffset Field::GetOffsetDuringLinking() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002514 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002515 return MemberOffset(
2516 GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_), false));
2517}
2518
2519inline const String* Method::GetName() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002520 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002521 const String* result =
2522 GetFieldObject<const String*>(
2523 OFFSET_OF_OBJECT_MEMBER(Method, name_), false);
2524 DCHECK(result != NULL);
2525 return result;
2526}
2527
2528inline void Method::SetName(String* new_name) {
2529 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, name_),
2530 new_name, false);
2531
2532}
2533
jeffhaoe23d93c2011-09-15 14:48:43 -07002534inline ByteArray* Method::GetRegisterMapData() const {
2535 return GetFieldObject<ByteArray*>(
2536 OFFSET_OF_OBJECT_MEMBER(Method, register_map_data_), false);
2537}
2538
jeffhaoa0a764a2011-09-16 10:43:38 -07002539inline void Method::SetRegisterMapData(ByteArray* data) {
jeffhaoe23d93c2011-09-15 14:48:43 -07002540 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, register_map_data_),
jeffhaoa0a764a2011-09-16 10:43:38 -07002541 data, false);
jeffhaoe23d93c2011-09-15 14:48:43 -07002542}
2543
2544inline ByteArray* Method::GetRegisterMapHeader() const {
2545 return GetFieldObject<ByteArray*>(
2546 OFFSET_OF_OBJECT_MEMBER(Method, register_map_header_), false);
2547}
2548
jeffhaoa0a764a2011-09-16 10:43:38 -07002549inline void Method::SetRegisterMapHeader(ByteArray* header) {
jeffhaoe23d93c2011-09-15 14:48:43 -07002550 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, register_map_header_),
jeffhaoa0a764a2011-09-16 10:43:38 -07002551 header, false);
jeffhaoe23d93c2011-09-15 14:48:43 -07002552}
2553
Brian Carlstrom2ed67392011-09-09 14:53:28 -07002554inline String* Method::GetShorty() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002555 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Brian Carlstrom2ed67392011-09-09 14:53:28 -07002556 return GetFieldObject<String*>(
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002557 OFFSET_OF_OBJECT_MEMBER(Method, shorty_), false);
2558}
2559
Brian Carlstrom2ed67392011-09-09 14:53:28 -07002560inline void Method::SetShorty(String* new_shorty) {
2561 DCHECK(NULL == GetFieldObject<String*>(
2562 OFFSET_OF_OBJECT_MEMBER(Method, shorty_), false));
2563 DCHECK_LE(1, new_shorty->GetLength());
2564 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, shorty_), new_shorty, false);
2565}
2566
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002567inline const String* Method::GetSignature() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002568 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002569 const String* result =
2570 GetFieldObject<const String*>(
2571 OFFSET_OF_OBJECT_MEMBER(Method, signature_), false);
2572 DCHECK(result != NULL);
2573 return result;
2574}
2575
2576inline void Method::SetSignature(String* new_signature) {
2577 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, signature_),
2578 new_signature, false);
2579}
2580
2581inline uint32_t Class::GetAccessFlags() const {
2582 // Check class is loaded or this is java.lang.String that has a
2583 // circularity issue during loading the names of its members
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002584 DCHECK(IsLoaded() || IsErroneous() ||
Elliott Hughes80609252011-09-23 17:24:51 -07002585 this == String::GetJavaLangString() ||
2586 this == Field::GetJavaLangReflectField() ||
2587 this == Method::GetConstructorClass() ||
2588 this == Method::GetMethodClass()) << PrettyClass(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002589 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, access_flags_), false);
2590}
2591
2592inline void Class::SetDescriptor(String* new_descriptor) {
Brian Carlstrom693267a2011-09-06 09:25:34 -07002593 DCHECK(GetDescriptor() == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002594 DCHECK(new_descriptor != NULL);
2595 DCHECK_NE(0, new_descriptor->GetLength());
2596 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, descriptor_),
2597 new_descriptor, false);
2598}
2599
Brian Carlstromc74255f2011-09-11 22:47:39 -07002600inline String* Class::GetSourceFile() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002601 DCHECK(IsLoaded() || IsErroneous());
Brian Carlstromc74255f2011-09-11 22:47:39 -07002602 return GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(Class, source_file_), false);
2603}
2604
2605inline void Class::SetSourceFile(String* new_source_file) {
2606 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, source_file_), new_source_file, false);
2607}
2608
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002609inline uint32_t Method::GetAccessFlags() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002610 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002611 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, access_flags_), false);
2612}
2613
2614inline uint16_t Method::GetMethodIndex() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002615 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Elliott Hughes1d3f1142011-09-13 12:00:00 -07002616 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, method_index_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002617}
2618
2619inline uint16_t Method::NumRegisters() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002620 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Elliott Hughes1d3f1142011-09-13 12:00:00 -07002621 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_registers_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002622}
2623
2624inline uint16_t Method::NumIns() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002625 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Elliott Hughes1d3f1142011-09-13 12:00:00 -07002626 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_ins_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002627}
2628
2629inline uint16_t Method::NumOuts() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002630 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Elliott Hughes1d3f1142011-09-13 12:00:00 -07002631 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_outs_), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002632}
2633
2634inline uint32_t Method::GetProtoIdx() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002635 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002636 return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, proto_idx_), false);
2637}
2638
2639// C++ mirror of java.lang.Throwable
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002640class MANAGED Throwable : public Object {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002641 public:
2642 void SetDetailMessage(String* new_detail_message) {
2643 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_),
2644 new_detail_message, false);
2645 }
2646
Elliott Hughese5b0dc82011-08-23 09:59:02 -07002647 private:
2648 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
2649 Throwable* cause_;
2650 String* detail_message_;
2651 Object* stack_state_; // Note this is Java volatile:
2652 Object* stack_trace_;
2653 Object* suppressed_exceptions_;
2654
Brian Carlstrom693267a2011-09-06 09:25:34 -07002655 friend struct ThrowableOffsets; // for verifying offset information
Elliott Hughese5b0dc82011-08-23 09:59:02 -07002656 DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable);
2657};
2658
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002659// C++ mirror of java.lang.StackTraceElement
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002660class MANAGED StackTraceElement : public Object {
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002661 public:
2662 const String* GetDeclaringClass() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002663 return GetFieldObject<const String*>(
2664 OFFSET_OF_OBJECT_MEMBER(StackTraceElement, declaring_class_), false);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002665 }
2666
2667 const String* GetMethodName() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002668 return GetFieldObject<const String*>(
2669 OFFSET_OF_OBJECT_MEMBER(StackTraceElement, method_name_), false);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002670 }
2671
2672 const String* GetFileName() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002673 return GetFieldObject<const String*>(
2674 OFFSET_OF_OBJECT_MEMBER(StackTraceElement, file_name_), false);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002675 }
2676
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -07002677 int32_t GetLineNumber() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002678 return GetField32(
2679 OFFSET_OF_OBJECT_MEMBER(StackTraceElement, line_number_), false);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002680 }
2681
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002682 static StackTraceElement* Alloc(const String* declaring_class,
2683 const String* method_name,
2684 const String* file_name,
2685 int32_t line_number);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002686
2687 static void SetClass(Class* java_lang_StackTraceElement);
2688
2689 static void ResetClass();
2690
2691 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002692 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002693 const String* declaring_class_;
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002694 const String* file_name_;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002695 const String* method_name_;
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -07002696 int32_t line_number_;
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002697
2698 static Class* GetStackTraceElement() {
2699 DCHECK(java_lang_StackTraceElement_ != NULL);
2700 return java_lang_StackTraceElement_;
2701 }
2702
2703 static Class* java_lang_StackTraceElement_;
Brian Carlstrom693267a2011-09-06 09:25:34 -07002704
2705 friend struct StackTraceElementOffsets; // for verifying offset information
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002706 DISALLOW_IMPLICIT_CONSTRUCTORS(StackTraceElement);
2707};
2708
Brian Carlstrome4f7e1d2011-09-11 13:21:12 -07002709class MANAGED InterfaceEntry : public ObjectArray<Object> {
Carl Shapiro1fb86202011-06-27 17:43:13 -07002710 public:
Brian Carlstrom30b94452011-08-25 21:35:26 -07002711 Class* GetInterface() const {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002712 Class* interface = Get(kInterface)->AsClass();
2713 DCHECK(interface != NULL);
2714 return interface;
Carl Shapirof88c9522011-08-06 15:47:38 -07002715 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07002716
Brian Carlstrom30b94452011-08-25 21:35:26 -07002717 void SetInterface(Class* interface) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002718 DCHECK(interface != NULL);
Brian Carlstrom30b94452011-08-25 21:35:26 -07002719 DCHECK(interface->IsInterface());
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002720 DCHECK(Get(kInterface) == NULL);
2721 Set(kInterface, interface);
Carl Shapirof88c9522011-08-06 15:47:38 -07002722 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07002723
Brian Carlstrom86927212011-09-15 11:31:11 -07002724 size_t GetMethodArrayCount() const {
2725 ObjectArray<Method>* method_array = down_cast<ObjectArray<Method>*>(Get(kMethodArray));
2726 if (method_array == 0) {
2727 return 0;
2728 }
2729 return method_array->GetLength();
2730 }
2731
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002732 ObjectArray<Method>* GetMethodArray() const {
2733 ObjectArray<Method>* method_array = down_cast<ObjectArray<Method>*>(Get(kMethodArray));
2734 DCHECK(method_array != NULL);
2735 return method_array;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002736 }
2737
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002738 void SetMethodArray(ObjectArray<Method>* new_ma) {
2739 DCHECK(new_ma != NULL);
2740 DCHECK(Get(kMethodArray) == NULL);
2741 Set(kMethodArray, new_ma);
2742 }
2743
2744 static size_t LengthAsArray() {
2745 return kMax;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002746 }
2747
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002748 private:
Carl Shapiro3ee755d2011-06-28 12:11:04 -07002749
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002750 enum ArrayIndex {
2751 // Points to the interface class.
2752 kInterface = 0,
2753 // Method pointers into the vtable, allow fast map from interface
2754 // method index to concrete instance method.
2755 kMethodArray = 1,
2756 kMax = 2,
2757 };
Carl Shapirof88c9522011-08-06 15:47:38 -07002758
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002759 DISALLOW_IMPLICIT_CONSTRUCTORS(InterfaceEntry);
Carl Shapiro1fb86202011-06-27 17:43:13 -07002760};
2761
2762} // namespace art
2763
2764#endif // ART_SRC_OBJECT_H_