blob: f47f16edfcdcf5520045082c59ed8db9e27a49b2 [file] [log] [blame]
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "object.h"
4
Ian Rogersb033c752011-07-20 12:22:35 -07005#include <string.h>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07006
Ian Rogersdf20fe02011-07-20 20:34:16 -07007#include <algorithm>
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07008#include <iostream>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07009#include <string>
10#include <utility>
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070011
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070012#include "class_linker.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070013#include "class_loader.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070014#include "dex_cache.h"
15#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070016#include "globals.h"
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070017#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070018#include "intern_table.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070019#include "logging.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070020#include "monitor.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070021#include "runtime.h"
Carl Shapiro3ee755d2011-06-28 12:11:04 -070022
23namespace art {
24
Elliott Hughes081be7f2011-09-18 16:50:26 -070025Object* Object::Clone() {
26 Class* c = GetClass();
27 DCHECK(!c->IsClassClass());
28
29 // Object::SizeOf gets the right size even if we're an array.
30 // Using c->AllocObject() here would be wrong.
31 size_t num_bytes = SizeOf();
32 Object* copy = Heap::AllocObject(c, num_bytes);
33 if (copy == NULL) {
34 return NULL;
35 }
36
37 // Copy instance data. We assume memcpy copies by words.
38 // TODO: expose and use move32.
39 byte* src_bytes = reinterpret_cast<byte*>(this);
40 byte* dst_bytes = reinterpret_cast<byte*>(copy);
41 size_t offset = sizeof(Object);
42 memcpy(dst_bytes + offset, src_bytes + offset, num_bytes - offset);
43
44 // TODO: Mark the clone as finalizable if appropriate.
45// if (IS_CLASS_FLAG_SET(clazz, CLASS_ISFINALIZABLE)) {
46// dvmSetFinalizable(copy);
47// }
48
49 return copy;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070050}
51
Elliott Hughes5f791332011-09-15 17:45:30 -070052uint32_t Object::GetLockOwner() {
53 return Monitor::GetLockOwner(monitor_);
54}
55
Elliott Hughes081be7f2011-09-18 16:50:26 -070056bool Object::IsString() const {
57 // TODO use "klass_ == String::GetJavaLangString()" instead?
58 return GetClass() == GetClass()->GetDescriptor()->GetClass();
59}
60
Elliott Hughes5f791332011-09-15 17:45:30 -070061void Object::MonitorEnter(Thread* thread) {
62 Monitor::MonitorEnter(thread, this);
63}
64
Ian Rogersff1ed472011-09-20 13:46:24 -070065bool Object::MonitorExit(Thread* thread) {
66 return Monitor::MonitorExit(thread, this);
Elliott Hughes5f791332011-09-15 17:45:30 -070067}
68
69void Object::Notify() {
70 Monitor::Notify(Thread::Current(), this);
71}
72
73void Object::NotifyAll() {
74 Monitor::NotifyAll(Thread::Current(), this);
75}
76
77void Object::Wait(int64_t ms, int32_t ns) {
78 Monitor::Wait(Thread::Current(), this, ms, ns, true);
79}
80
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070081// TODO: get global references for these
82Class* Field::java_lang_reflect_Field_ = NULL;
83
84void Field::SetClass(Class* java_lang_reflect_Field) {
85 CHECK(java_lang_reflect_Field_ == NULL);
86 CHECK(java_lang_reflect_Field != NULL);
87 java_lang_reflect_Field_ = java_lang_reflect_Field;
88}
89
90void Field::ResetClass() {
91 CHECK(java_lang_reflect_Field_ != NULL);
92 java_lang_reflect_Field_ = NULL;
93}
94
95void Field::SetTypeIdx(uint32_t type_idx) {
96 SetField32(OFFSET_OF_OBJECT_MEMBER(Field, type_idx_), type_idx, false);
97}
98
99Class* Field::GetTypeDuringLinking() const {
100 // We are assured that the necessary primitive types are in the dex cache
101 // early during class linking
102 return GetDeclaringClass()->GetDexCache()->GetResolvedType(GetTypeIdx());
103}
104
105Class* Field::GetType() const {
Elliott Hughes80609252011-09-23 17:24:51 -0700106 if (type_ == NULL) {
107 type_ = Runtime::Current()->GetClassLinker()->ResolveType(GetTypeIdx(), this);
108 }
109 return type_;
110}
111
112void Field::InitJavaFields() {
113 Thread* self = Thread::Current();
114 ScopedThreadStateChange tsc(self, Thread::kRunnable);
115 MonitorEnter(self);
116 if (type_ == NULL) {
117 InitJavaFieldsLocked();
118 }
119 MonitorExit(self);
120}
121
122void Field::InitJavaFieldsLocked() {
123 GetType(); // Sets type_ as a side-effect. May throw.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700124}
125
Brian Carlstrom845490b2011-09-19 15:56:53 -0700126Field* Field::FindInstanceFieldFromCode(uint32_t field_idx, const Method* referrer) {
127 return FindFieldFromCode(field_idx, referrer, false);
128}
129
130Field* Field::FindStaticFieldFromCode(uint32_t field_idx, const Method* referrer) {
131 return FindFieldFromCode(field_idx, referrer, true);
132}
133
134Field* Field::FindFieldFromCode(uint32_t field_idx, const Method* referrer, bool is_static) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700135 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom845490b2011-09-19 15:56:53 -0700136 Field* f = class_linker->ResolveField(field_idx, referrer, is_static);
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700137 if (f != NULL) {
138 Class* c = f->GetDeclaringClass();
139 // If the class is already initializing, we must be inside <clinit>, or
140 // we'd still be waiting for the lock.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700141 if (c->GetStatus() == Class::kStatusInitializing || class_linker->EnsureInitialized(c, true)) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700142 return f;
143 }
Brian Carlstromb63ec392011-08-27 17:38:27 -0700144 }
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700145 UNIMPLEMENTED(FATAL) << "throw an error and unwind";
146 return NULL;
147}
148
149uint32_t Field::Get32StaticFromCode(uint32_t field_idx, const Method* referrer) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700150 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700151 DCHECK(field->GetType()->PrimitiveSize() == sizeof(int32_t));
152 return field->Get32(NULL);
153}
154void Field::Set32StaticFromCode(uint32_t field_idx, const Method* referrer, uint32_t new_value) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700155 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700156 DCHECK(field->GetType()->PrimitiveSize() == sizeof(int32_t));
157 field->Set32(NULL, new_value);
158}
159uint64_t Field::Get64StaticFromCode(uint32_t field_idx, const Method* referrer) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700160 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700161 DCHECK(field->GetType()->PrimitiveSize() == sizeof(int64_t));
162 return field->Get64(NULL);
163}
164void Field::Set64StaticFromCode(uint32_t field_idx, const Method* referrer, uint64_t new_value) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700165 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700166 DCHECK(field->GetType()->PrimitiveSize() == sizeof(int64_t));
167 field->Set64(NULL, new_value);
168}
169Object* Field::GetObjStaticFromCode(uint32_t field_idx, const Method* referrer) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700170 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700171 DCHECK(!field->GetType()->IsPrimitive());
172 return field->GetObj(NULL);
173}
174void Field::SetObjStaticFromCode(uint32_t field_idx, const Method* referrer, Object* new_value) {
Brian Carlstrom845490b2011-09-19 15:56:53 -0700175 Field* field = FindStaticFieldFromCode(field_idx, referrer);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700176 DCHECK(!field->GetType()->IsPrimitive());
177 field->SetObj(NULL, new_value);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700178}
179
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700180uint32_t Field::Get32(const Object* object) const {
181 CHECK((object == NULL) == IsStatic());
182 if (IsStatic()) {
183 object = declaring_class_;
184 }
185 return object->GetField32(GetOffset(), IsVolatile());
Elliott Hughes68f4fa02011-08-21 10:46:59 -0700186}
187
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700188void Field::Set32(Object* object, uint32_t new_value) const {
189 CHECK((object == NULL) == IsStatic());
190 if (IsStatic()) {
191 object = declaring_class_;
192 }
193 object->SetField32(GetOffset(), new_value, IsVolatile());
194}
195
196uint64_t Field::Get64(const Object* object) const {
197 CHECK((object == NULL) == IsStatic());
198 if (IsStatic()) {
199 object = declaring_class_;
200 }
201 return object->GetField64(GetOffset(), IsVolatile());
202}
203
204void Field::Set64(Object* object, uint64_t new_value) const {
205 CHECK((object == NULL) == IsStatic());
206 if (IsStatic()) {
207 object = declaring_class_;
208 }
209 object->SetField64(GetOffset(), new_value, IsVolatile());
210}
211
212Object* Field::GetObj(const Object* object) const {
213 CHECK((object == NULL) == IsStatic());
214 if (IsStatic()) {
215 object = declaring_class_;
216 }
217 return object->GetFieldObject<Object*>(GetOffset(), IsVolatile());
218}
219
220void Field::SetObj(Object* object, const Object* new_value) const {
221 CHECK((object == NULL) == IsStatic());
222 if (IsStatic()) {
223 object = declaring_class_;
224 }
225 object->SetFieldObject(GetOffset(), new_value, IsVolatile());
226}
227
228bool Field::GetBoolean(const Object* object) const {
229 DCHECK(GetType()->IsPrimitiveBoolean());
230 return Get32(object);
231}
232
233void Field::SetBoolean(Object* object, bool z) const {
234 DCHECK(GetType()->IsPrimitiveBoolean());
235 Set32(object, z);
236}
237
238int8_t Field::GetByte(const Object* object) const {
239 DCHECK(GetType()->IsPrimitiveByte());
240 return Get32(object);
241}
242
243void Field::SetByte(Object* object, int8_t b) const {
244 DCHECK(GetType()->IsPrimitiveByte());
245 Set32(object, b);
246}
247
248uint16_t Field::GetChar(const Object* object) const {
249 DCHECK(GetType()->IsPrimitiveChar());
250 return Get32(object);
251}
252
253void Field::SetChar(Object* object, uint16_t c) const {
254 DCHECK(GetType()->IsPrimitiveChar());
255 Set32(object, c);
256}
257
258uint16_t Field::GetShort(const Object* object) const {
259 DCHECK(GetType()->IsPrimitiveShort());
260 return Get32(object);
261}
262
263void Field::SetShort(Object* object, uint16_t s) const {
264 DCHECK(GetType()->IsPrimitiveShort());
265 Set32(object, s);
266}
267
268int32_t Field::GetInt(const Object* object) const {
269 DCHECK(GetType()->IsPrimitiveInt());
270 return Get32(object);
271}
272
273void Field::SetInt(Object* object, int32_t i) const {
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700274 DCHECK(GetType()->IsPrimitiveInt()) << PrettyField(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700275 Set32(object, i);
276}
277
278int64_t Field::GetLong(const Object* object) const {
279 DCHECK(GetType()->IsPrimitiveLong());
280 return Get64(object);
281}
282
283void Field::SetLong(Object* object, int64_t j) const {
284 DCHECK(GetType()->IsPrimitiveLong());
285 Set64(object, j);
286}
287
288float Field::GetFloat(const Object* object) const {
289 DCHECK(GetType()->IsPrimitiveFloat());
290 JValue float_bits;
291 float_bits.i = Get32(object);
292 return float_bits.f;
293}
294
295void Field::SetFloat(Object* object, float f) const {
296 DCHECK(GetType()->IsPrimitiveFloat());
297 JValue float_bits;
298 float_bits.f = f;
299 Set32(object, float_bits.i);
300}
301
302double Field::GetDouble(const Object* object) const {
303 DCHECK(GetType()->IsPrimitiveDouble());
304 JValue double_bits;
305 double_bits.j = Get64(object);
306 return double_bits.d;
307}
308
309void Field::SetDouble(Object* object, double d) const {
310 DCHECK(GetType()->IsPrimitiveDouble());
311 JValue double_bits;
312 double_bits.d = d;
313 Set64(object, double_bits.j);
314}
315
316Object* Field::GetObject(const Object* object) const {
317 CHECK(!GetType()->IsPrimitive());
318 return GetObj(object);
319}
320
321void Field::SetObject(Object* object, const Object* l) const {
322 CHECK(!GetType()->IsPrimitive());
323 SetObj(object, l);
324}
325
326// TODO: get global references for these
Elliott Hughes80609252011-09-23 17:24:51 -0700327Class* Method::java_lang_reflect_Constructor_ = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700328Class* Method::java_lang_reflect_Method_ = NULL;
329
Elliott Hughes80609252011-09-23 17:24:51 -0700330void Method::SetClasses(Class* java_lang_reflect_Constructor, Class* java_lang_reflect_Method) {
331 CHECK(java_lang_reflect_Constructor_ == NULL);
332 CHECK(java_lang_reflect_Constructor != NULL);
333 java_lang_reflect_Constructor_ = java_lang_reflect_Constructor;
334
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 CHECK(java_lang_reflect_Method_ == NULL);
336 CHECK(java_lang_reflect_Method != NULL);
337 java_lang_reflect_Method_ = java_lang_reflect_Method;
338}
339
Elliott Hughes80609252011-09-23 17:24:51 -0700340void Method::ResetClasses() {
341 CHECK(java_lang_reflect_Constructor_ != NULL);
342 java_lang_reflect_Constructor_ = NULL;
343
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 CHECK(java_lang_reflect_Method_ != NULL);
345 java_lang_reflect_Method_ = NULL;
346}
347
Elliott Hughes418d20f2011-09-22 14:00:39 -0700348Class* ExtractNextClassFromSignature(ClassLinker* class_linker, const ClassLoader* cl, const char*& p) {
349 if (*p == '[') {
350 // Something like "[[[Ljava/lang/String;".
351 const char* start = p;
352 while (*p == '[') {
353 ++p;
354 }
355 if (*p == 'L') {
356 while (*p != ';') {
357 ++p;
358 }
359 }
360 ++p; // Either the ';' or the primitive type.
361
362 StringPiece descriptor(start, (p - start));
363 return class_linker->FindClass(descriptor, cl);
364 } else if (*p == 'L') {
365 const char* start = p;
366 while (*p != ';') {
367 ++p;
368 }
369 ++p;
370 StringPiece descriptor(start, (p - start));
371 return class_linker->FindClass(descriptor, cl);
372 } else {
373 return class_linker->FindPrimitiveClass(*p++);
374 }
375}
376
377void Method::InitJavaFieldsLocked() {
378 // Create the array.
379 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
380 size_t arg_count = GetShorty()->GetLength() - 1;
381 Class* array_class = class_linker->FindSystemClass("[Ljava/lang/Class;");
382 ObjectArray<Class>* parameters = ObjectArray<Class>::Alloc(array_class, arg_count);
383 if (parameters == NULL) {
384 return;
385 }
386
387 // Parse the signature, filling the array.
388 const ClassLoader* cl = GetDeclaringClass()->GetClassLoader();
389 std::string signature(GetSignature()->ToModifiedUtf8());
390 const char* p = signature.c_str();
391 DCHECK_EQ(*p, '(');
392 ++p;
393 for (size_t i = 0; i < arg_count; ++i) {
394 Class* c = ExtractNextClassFromSignature(class_linker, cl, p);
395 if (c == NULL) {
396 return;
397 }
398 parameters->Set(i, c);
399 }
400
401 DCHECK_EQ(*p, ')');
402 ++p;
403
404 java_parameter_types_ = parameters;
405 java_return_type_ = ExtractNextClassFromSignature(class_linker, cl, p);
406}
407
408void Method::InitJavaFields() {
409 Thread* self = Thread::Current();
410 ScopedThreadStateChange tsc(self, Thread::kRunnable);
411 MonitorEnter(self);
412 if (java_parameter_types_ == NULL || java_return_type_ == NULL) {
413 InitJavaFieldsLocked();
414 }
415 MonitorExit(self);
416}
417
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418ObjectArray<String>* Method::GetDexCacheStrings() const {
419 return GetFieldObject<ObjectArray<String>*>(
420 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_strings_), false);
421}
422
423void Method::SetReturnTypeIdx(uint32_t new_return_type_idx) {
424 SetField32(OFFSET_OF_OBJECT_MEMBER(Method, java_return_type_idx_),
425 new_return_type_idx, false);
426}
427
428Class* Method::GetReturnType() const {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700429 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 // Short-cut
431 Class* result = GetDexCacheResolvedTypes()->Get(GetReturnTypeIdx());
432 if (result == NULL) {
433 // Do full linkage and set cache value for next call
434 result = Runtime::Current()->GetClassLinker()->ResolveType(GetReturnTypeIdx(), this);
435 }
436 CHECK(result != NULL);
437 return result;
438}
439
440void Method::SetDexCacheStrings(ObjectArray<String>* new_dex_cache_strings) {
441 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_strings_),
442 new_dex_cache_strings, false);
443}
444
445ObjectArray<Class>* Method::GetDexCacheResolvedTypes() const {
446 return GetFieldObject<ObjectArray<Class>*>(
447 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_types_), false);
448}
449
450void Method::SetDexCacheResolvedTypes(ObjectArray<Class>* new_dex_cache_classes) {
451 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_types_),
452 new_dex_cache_classes, false);
453}
454
455ObjectArray<Method>* Method::GetDexCacheResolvedMethods() const {
456 return GetFieldObject<ObjectArray<Method>*>(
457 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_methods_), false);
458}
459
460void Method::SetDexCacheResolvedMethods(ObjectArray<Method>* new_dex_cache_methods) {
461 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_methods_),
462 new_dex_cache_methods, false);
463}
464
465ObjectArray<Field>* Method::GetDexCacheResolvedFields() const {
466 return GetFieldObject<ObjectArray<Field>*>(
467 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_fields_), false);
468}
469
470void Method::SetDexCacheResolvedFields(ObjectArray<Field>* new_dex_cache_fields) {
471 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_fields_),
472 new_dex_cache_fields, false);
473}
474
475CodeAndDirectMethods* Method::GetDexCacheCodeAndDirectMethods() const {
476 return GetFieldPtr<CodeAndDirectMethods*>(
477 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_code_and_direct_methods_),
478 false);
479}
480
481void Method::SetDexCacheCodeAndDirectMethods(CodeAndDirectMethods* new_value) {
482 SetFieldPtr<CodeAndDirectMethods*>(
483 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_code_and_direct_methods_),
484 new_value, false);
485}
486
487ObjectArray<StaticStorageBase>* Method::GetDexCacheInitializedStaticStorage() const {
488 return GetFieldObject<ObjectArray<StaticStorageBase>*>(
489 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_initialized_static_storage_),
490 false);
491}
492
493void Method::SetDexCacheInitializedStaticStorage(ObjectArray<StaticStorageBase>* new_value) {
494 SetFieldObject(
495 OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_initialized_static_storage_),
496 new_value, false);
497
498}
499
500size_t Method::NumArgRegisters(const StringPiece& shorty) {
501 CHECK_LE(1, shorty.length());
502 uint32_t num_registers = 0;
503 for (int i = 1; i < shorty.length(); ++i) {
504 char ch = shorty[i];
505 if (ch == 'D' || ch == 'J') {
506 num_registers += 2;
507 } else {
508 num_registers += 1;
Brian Carlstromb63ec392011-08-27 17:38:27 -0700509 }
510 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700511 return num_registers;
512}
513
514size_t Method::NumArgArrayBytes() const {
Brian Carlstromc74255f2011-09-11 22:47:39 -0700515 const String* shorty = GetShorty();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700516 size_t num_bytes = 0;
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700517 for (int i = 1; i < shorty->GetLength(); ++i) {
518 char ch = shorty->CharAt(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519 if (ch == 'D' || ch == 'J') {
520 num_bytes += 8;
521 } else if (ch == 'L') {
522 // Argument is a reference or an array. The shorty descriptor
523 // does not distinguish between these types.
524 num_bytes += sizeof(Object*);
525 } else {
526 num_bytes += 4;
527 }
528 }
529 return num_bytes;
530}
531
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700532size_t Method::NumArgs() const {
533 // "1 +" because the first in Args is the receiver.
534 // "- 1" because we don't count the return type.
535 return (IsStatic() ? 0 : 1) + GetShorty()->GetLength() - 1;
536}
537
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700538// The number of reference arguments to this method including implicit this
539// pointer
540size_t Method::NumReferenceArgs() const {
Brian Carlstromc74255f2011-09-11 22:47:39 -0700541 const String* shorty = GetShorty();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700542 size_t result = IsStatic() ? 0 : 1; // The implicit this pointer.
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700543 for (int i = 1; i < shorty->GetLength(); i++) {
544 char ch = shorty->CharAt(i);
545 if ((ch == 'L') || (ch == '[')) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700546 result++;
547 }
548 }
549 return result;
550}
551
552// The number of long or double arguments
553size_t Method::NumLongOrDoubleArgs() const {
Brian Carlstromc74255f2011-09-11 22:47:39 -0700554 const String* shorty = GetShorty();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700555 size_t result = 0;
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700556 for (int i = 1; i < shorty->GetLength(); i++) {
557 char ch = shorty->CharAt(i);
558 if ((ch == 'D') || (ch == 'J')) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700559 result++;
560 }
561 }
562 return result;
563}
564
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700565// Is the given method parameter a reference?
566bool Method::IsParamAReference(unsigned int param) const {
567 CHECK_LT(param, NumArgs());
568 if (IsStatic()) {
569 param++; // 0th argument must skip return value at start of the shorty
570 } else if (param == 0) {
571 return true; // this argument
572 }
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700573 return GetShorty()->CharAt(param) == 'L';
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700574}
575
576// Is the given method parameter a long or double?
577bool Method::IsParamALongOrDouble(unsigned int param) const {
578 CHECK_LT(param, NumArgs());
579 if (IsStatic()) {
580 param++; // 0th argument must skip return value at start of the shorty
581 } else if (param == 0) {
582 return false; // this argument
583 }
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700584 char ch = GetShorty()->CharAt(param);
585 return (ch == 'J' || ch == 'D');
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700586}
587
588static size_t ShortyCharToSize(char x) {
589 switch (x) {
590 case 'V': return 0;
591 case '[': return kPointerSize;
592 case 'L': return kPointerSize;
593 case 'D': return 8;
594 case 'J': return 8;
595 default: return 4;
596 }
597}
598
599size_t Method::ParamSize(unsigned int param) const {
600 CHECK_LT(param, NumArgs());
601 if (IsStatic()) {
602 param++; // 0th argument must skip return value at start of the shorty
603 } else if (param == 0) {
604 return kPointerSize; // this argument
605 }
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700606 return ShortyCharToSize(GetShorty()->CharAt(param));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700607}
608
609size_t Method::ReturnSize() const {
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700610 return ShortyCharToSize(GetShorty()->CharAt(0));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700611}
612
613bool Method::HasSameNameAndDescriptor(const Method* that) const {
614 return (this->GetName()->Equals(that->GetName()) &&
615 this->GetSignature()->Equals(that->GetSignature()));
616}
617
Ian Rogersbdb03912011-09-14 00:55:44 -0700618uint32_t Method::ToDexPC(const uintptr_t pc) const {
619 IntArray* mapping_table = GetMappingTable();
620 if (mapping_table == NULL) {
Ian Rogers67375ac2011-09-14 00:55:44 -0700621 DCHECK(IsNative());
622 return DexFile::kDexNoIndex; // Special no mapping case
Ian Rogersbdb03912011-09-14 00:55:44 -0700623 }
624 size_t mapping_table_length = mapping_table->GetLength();
625 uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(GetCode());
626 CHECK_LT(sought_offset, static_cast<uint32_t>(GetCodeArray()->GetLength()));
627 uint32_t best_offset = 0;
628 uint32_t best_dex_offset = 0;
629 for (size_t i = 0; i < mapping_table_length; i += 2) {
630 uint32_t map_offset = mapping_table->Get(i);
631 uint32_t map_dex_offset = mapping_table->Get(i + 1);
632 if (map_offset == sought_offset) {
633 best_offset = map_offset;
634 best_dex_offset = map_dex_offset;
635 break;
636 }
637 if (map_offset < sought_offset && map_offset > best_offset) {
638 best_offset = map_offset;
639 best_dex_offset = map_dex_offset;
640 }
641 }
642 return best_dex_offset;
643}
644
645uintptr_t Method::ToNativePC(const uint32_t dex_pc) const {
646 IntArray* mapping_table = GetMappingTable();
647 if (mapping_table == NULL) {
648 DCHECK(dex_pc == 0);
649 return 0; // Special no mapping/pc == 0 case
650 }
651 size_t mapping_table_length = mapping_table->GetLength();
652 for (size_t i = 0; i < mapping_table_length; i += 2) {
653 uint32_t map_offset = mapping_table->Get(i);
654 uint32_t map_dex_offset = mapping_table->Get(i + 1);
655 if (map_dex_offset == dex_pc) {
656 DCHECK_LT(map_offset, static_cast<uint32_t>(GetCodeArray()->GetLength()));
657 return reinterpret_cast<uintptr_t>(GetCode()) + map_offset;
658 }
659 }
660 LOG(FATAL) << "Looking up Dex PC not contained in method";
661 return 0;
662}
663
664uint32_t Method::FindCatchBlock(Class* exception_type, uint32_t dex_pc) const {
665 DexCache* dex_cache = GetDeclaringClass()->GetDexCache();
666 const ClassLoader* class_loader = GetDeclaringClass()->GetClassLoader();
667 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
668 const DexFile& dex_file = class_linker->FindDexFile(dex_cache);
669 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(GetCodeItemOffset());
670 // Iterate over the catch handlers associated with dex_pc
671 for (DexFile::CatchHandlerIterator iter = dex_file.dexFindCatchHandler(*code_item, dex_pc);
672 !iter.HasNext(); iter.Next()) {
673 uint32_t iter_type_idx = iter.Get().type_idx_;
674 // Catch all case
Elliott Hughes80609252011-09-23 17:24:51 -0700675 if (iter_type_idx == DexFile::kDexNoIndex) {
Ian Rogersbdb03912011-09-14 00:55:44 -0700676 return iter.Get().address_;
677 }
678 // Does this catch exception type apply?
679 Class* iter_exception_type =
680 class_linker->ResolveType(dex_file, iter_type_idx, dex_cache, class_loader);
681 if (iter_exception_type->IsAssignableFrom(exception_type)) {
682 return iter.Get().address_;
683 }
684 }
685 // Handler not found
686 return DexFile::kDexNoIndex;
687}
688
buzbee4ef76522011-09-08 10:00:32 -0700689void Method::SetCode(ByteArray* code_array, InstructionSet instruction_set,
buzbeec41e5b52011-09-23 12:46:19 -0700690 IntArray* mapping_table, ShortArray* vmap_table) {
Elliott Hughes1240dad2011-09-09 16:24:50 -0700691 CHECK(GetCode() == NULL || IsNative());
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700692 SetFieldPtr<ByteArray*>(OFFSET_OF_OBJECT_MEMBER(Method, code_array_), code_array, false);
Ian Rogersbdb03912011-09-14 00:55:44 -0700693 SetFieldPtr<IntArray*>(OFFSET_OF_OBJECT_MEMBER(Method, mapping_table_),
buzbee4ef76522011-09-08 10:00:32 -0700694 mapping_table, false);
buzbeec41e5b52011-09-23 12:46:19 -0700695 SetFieldPtr<ShortArray*>(OFFSET_OF_OBJECT_MEMBER(Method, vmap_table_),
696 vmap_table, false);
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700697 int8_t* code = code_array->GetData();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700698 uintptr_t address = reinterpret_cast<uintptr_t>(code);
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700699 if (instruction_set == kThumb2) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700700 // Set the low-order bit so a BLX will switch to Thumb mode
701 address |= 0x1;
702 }
Ian Rogersff1ed472011-09-20 13:46:24 -0700703 SetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, code_),
704 reinterpret_cast<const void*>(address), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700705}
706
Ian Rogersbdb03912011-09-14 00:55:44 -0700707bool Method::IsWithinCode(uintptr_t pc) const {
Ian Rogersbdb03912011-09-14 00:55:44 -0700708 if (pc == 0) {
Ian Rogersff1ed472011-09-20 13:46:24 -0700709 // PC of 0 represents the beginning of a stack trace either a native or where we have a callee
710 // save method that has no code
711 DCHECK(IsNative() || IsPhony());
Ian Rogersbdb03912011-09-14 00:55:44 -0700712 return true;
713 } else {
Ian Rogers93dd9662011-09-17 23:21:22 -0700714#if defined(__arm__)
715 pc &= ~0x1; // clear any possible thumb instruction mode bit
716#endif
Ian Rogersbdb03912011-09-14 00:55:44 -0700717 uint32_t rel_offset = pc - reinterpret_cast<uintptr_t>(GetCodeArray()->GetData());
Ian Rogers93dd9662011-09-17 23:21:22 -0700718 // Strictly the following test should be a less-than, however, if the last
719 // instruction is a call to an exception throw we may see return addresses
720 // that are 1 beyond the end of code.
721 return rel_offset <= static_cast<uint32_t>(GetCodeArray()->GetLength());
Ian Rogersbdb03912011-09-14 00:55:44 -0700722 }
723}
724
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700725void Method::SetInvokeStub(const ByteArray* invoke_stub_array) {
726 const InvokeStub* invoke_stub = reinterpret_cast<InvokeStub*>(invoke_stub_array->GetData());
727 SetFieldPtr<const ByteArray*>(
728 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_array_), invoke_stub_array, false);
729 SetFieldPtr<const InvokeStub*>(
730 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_), invoke_stub, false);
731}
732
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700733void Method::Invoke(Thread* self, Object* receiver, byte* args, JValue* result) const {
734 // Push a transition back into managed code onto the linked list in thread.
735 CHECK_EQ(Thread::kRunnable, self->GetState());
736 NativeToManagedRecord record;
737 self->PushNativeToManagedRecord(&record);
738
739 // Call the invoke stub associated with the method.
740 // Pass everything as arguments.
741 const Method::InvokeStub* stub = GetInvokeStub();
Elliott Hughes1240dad2011-09-09 16:24:50 -0700742
743 bool have_executable_code = (GetCode() != NULL);
744#if !defined(__arm__)
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700745 // Currently we can only compile non-native methods for ARM.
746 have_executable_code = IsNative();
Elliott Hughes1240dad2011-09-09 16:24:50 -0700747#endif
748
749 if (have_executable_code && stub != NULL) {
750 LOG(INFO) << "invoking " << PrettyMethod(this) << " code=" << (void*) GetCode() << " stub=" << (void*) stub;
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700751 (*stub)(this, receiver, self, args, result);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700752 LOG(INFO) << "returned " << PrettyMethod(this) << " code=" << (void*) GetCode() << " stub=" << (void*) stub;
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700753 } else {
754 LOG(WARNING) << "Not invoking method with no associated code: " << PrettyMethod(this);
755 if (result != NULL) {
756 result->j = 0;
757 }
758 }
759
760 // Pop transition.
761 self->PopNativeToManagedRecord(record);
762}
763
Brian Carlstrom16192862011-09-12 17:50:06 -0700764bool Method::IsRegistered() {
765 void* native_method = GetFieldPtr<void*>(OFFSET_OF_OBJECT_MEMBER(Method, native_method_), false);
766 void* jni_stub = Runtime::Current()->GetJniStubArray()->GetData();
767 return native_method != jni_stub;
768}
769
770void Method::RegisterNative(const void* native_method) {
771 CHECK(IsNative());
772 CHECK(native_method != NULL);
773 SetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, native_method_),
774 native_method, false);
775}
776
777void Method::UnregisterNative() {
778 CHECK(IsNative());
779 // restore stub to lookup native pointer via dlsym
780 RegisterNative(Runtime::Current()->GetJniStubArray()->GetData());
781}
782
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700783void Class::SetStatus(Status new_status) {
784 CHECK(new_status > GetStatus() || new_status == kStatusError ||
Brian Carlstroma5a97a22011-09-15 14:08:49 -0700785 !Runtime::Current()->IsStarted()) << GetDescriptor()->ToModifiedUtf8();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700786 CHECK(sizeof(Status) == sizeof(uint32_t));
787 return SetField32(OFFSET_OF_OBJECT_MEMBER(Class, status_),
788 new_status, false);
789}
790
791DexCache* Class::GetDexCache() const {
792 return GetFieldObject<DexCache*>(
793 OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_), false);
794}
795
796void Class::SetDexCache(DexCache* new_dex_cache) {
797 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_),
798 new_dex_cache, false);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700799}
800
Brian Carlstrom1f870082011-08-23 16:02:11 -0700801Object* Class::AllocObject() {
802 DCHECK(!IsAbstract());
Ian Rogers21d9e832011-09-23 17:05:09 -0700803 DCHECK(!IsInterface());
804 DCHECK(!IsPrimitive());
Brian Carlstrom1f870082011-08-23 16:02:11 -0700805 return Heap::AllocObject(this, this->object_size_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700806}
807
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700808void Class::DumpClass(std::ostream& os, int flags) {
809 if ((flags & kDumpClassFullDetail) == 0) {
810 os << PrettyClass(this);
811 if ((flags & kDumpClassClassLoader) != 0) {
812 os << ' ' << GetClassLoader();
813 }
814 if ((flags & kDumpClassInitialized) != 0) {
815 os << ' ' << GetStatus();
816 }
817 os << std::endl;
818 return;
819 }
820
821 Class* super = GetSuperClass();
822 os << "----- " << (IsInterface() ? "interface" : "class") << " "
823 << "'" << GetDescriptor()->ToModifiedUtf8() << "' cl=" << GetClassLoader() << " -----\n",
824 os << " objectSize=" << SizeOf() << " "
825 << "(" << (super != NULL ? super->SizeOf() : -1) << " from super)\n",
826 os << StringPrintf(" access=0x%04x.%04x\n",
827 GetAccessFlags() >> 16, GetAccessFlags() & kAccJavaFlagsMask);
828 if (super != NULL) {
829 os << " super='" << PrettyClass(super) << "' (cl=" << super->GetClassLoader() << ")\n";
830 }
831 if (IsArrayClass()) {
832 os << " componentType=" << PrettyClass(GetComponentType()) << "\n";
833 }
834 if (NumInterfaces() > 0) {
835 os << " interfaces (" << NumInterfaces() << "):\n";
836 for (size_t i = 0; i < NumInterfaces(); ++i) {
837 Class* interface = GetInterface(i);
838 const ClassLoader* cl = interface->GetClassLoader();
839 os << StringPrintf(" %2d: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl);
840 }
841 }
842 os << " vtable (" << NumVirtualMethods() << " entries, "
843 << (super != NULL ? super->NumVirtualMethods() : 0) << " in super):\n";
844 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
845 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetVirtualMethod(i)).c_str());
846 }
847 os << " direct methods (" << NumDirectMethods() << " entries):\n";
848 for (size_t i = 0; i < NumDirectMethods(); ++i) {
849 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetDirectMethod(i)).c_str());
850 }
851 if (NumStaticFields() > 0) {
852 os << " static fields (" << NumStaticFields() << " entries):\n";
853 for (size_t i = 0; i < NumStaticFields(); ++i) {
854 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetStaticField(i)).c_str());
855 }
856 }
857 if (NumInstanceFields() > 0) {
858 os << " instance fields (" << NumInstanceFields() << " entries):\n";
859 for (size_t i = 0; i < NumInstanceFields(); ++i) {
860 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetInstanceField(i)).c_str());
861 }
862 }
863}
864
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700865void Class::SetReferenceInstanceOffsets(uint32_t new_reference_offsets) {
866 if (new_reference_offsets != CLASS_WALK_SUPER) {
867 // Sanity check that the number of bits set in the reference offset bitmap
868 // agrees with the number of references
869 Class* cur = this;
870 size_t cnt = 0;
871 while (cur) {
872 cnt += cur->NumReferenceInstanceFieldsDuringLinking();
873 cur = cur->GetSuperClass();
874 }
875 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets), cnt);
876 }
877 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_),
878 new_reference_offsets, false);
879}
880
881void Class::SetReferenceStaticOffsets(uint32_t new_reference_offsets) {
882 if (new_reference_offsets != CLASS_WALK_SUPER) {
883 // Sanity check that the number of bits set in the reference offset bitmap
884 // agrees with the number of references
885 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets),
886 NumReferenceStaticFieldsDuringLinking());
887 }
888 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_),
889 new_reference_offsets, false);
890}
891
892size_t Class::PrimitiveSize() const {
893 switch (GetPrimitiveType()) {
894 case kPrimBoolean:
895 case kPrimByte:
896 case kPrimChar:
897 case kPrimShort:
898 case kPrimInt:
899 case kPrimFloat:
900 return sizeof(int32_t);
901 case kPrimLong:
902 case kPrimDouble:
903 return sizeof(int64_t);
904 default:
905 LOG(FATAL) << "Primitive type size calculation on invalid type " << this;
906 return 0;
907 }
908}
909
910size_t Class::GetTypeSize(const String* descriptor) {
911 switch (descriptor->CharAt(0)) {
912 case 'B': return 1; // byte
913 case 'C': return 2; // char
914 case 'D': return 8; // double
915 case 'F': return 4; // float
916 case 'I': return 4; // int
917 case 'J': return 8; // long
918 case 'S': return 2; // short
919 case 'Z': return 1; // boolean
920 case 'L': return sizeof(Object*);
921 case '[': return sizeof(Array*);
922 default:
923 LOG(ERROR) << "Unknown type " << descriptor;
924 return 0;
925 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700926}
927
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700928bool Class::Implements(const Class* klass) const {
929 DCHECK(klass != NULL);
930 DCHECK(klass->IsInterface());
931 // All interfaces implemented directly and by our superclass, and
932 // recursively all super-interfaces of those interfaces, are listed
933 // in iftable_, so we can just do a linear scan through that.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700934 int32_t iftable_count = GetIfTableCount();
935 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
936 for (int32_t i = 0; i < iftable_count; i++) {
937 if (iftable->Get(i)->GetInterface() == klass) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700938 return true;
939 }
940 }
941 return false;
942}
943
944// Determine whether "this" is assignable from "klazz", where both of these
945// are array classes.
946//
947// Consider an array class, e.g. Y[][], where Y is a subclass of X.
948// Y[][] = Y[][] --> true (identity)
949// X[][] = Y[][] --> true (element superclass)
950// Y = Y[][] --> false
951// Y[] = Y[][] --> false
952// Object = Y[][] --> true (everything is an object)
953// Object[] = Y[][] --> true
954// Object[][] = Y[][] --> true
955// Object[][][] = Y[][] --> false (too many []s)
956// Serializable = Y[][] --> true (all arrays are Serializable)
957// Serializable[] = Y[][] --> true
958// Serializable[][] = Y[][] --> false (unless Y is Serializable)
959//
960// Don't forget about primitive types.
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700961// Object[] = int[] --> false
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700962//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700963bool Class::IsArrayAssignableFromArray(const Class* src) const {
Brian Carlstromb63ec392011-08-27 17:38:27 -0700964 DCHECK(IsArrayClass());
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700965 DCHECK(src->IsArrayClass());
966 return GetComponentType()->IsAssignableFrom(src->GetComponentType());
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700967}
968
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700969bool Class::IsAssignableFromArray(const Class* src) const {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700970 DCHECK(!IsInterface()); // handled first in IsAssignableFrom
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700971 DCHECK(src->IsArrayClass());
Brian Carlstromb63ec392011-08-27 17:38:27 -0700972 if (!IsArrayClass()) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700973 // If "this" is not also an array, it must be Object.
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700974 // src's super should be java_lang_Object, since it is an array.
975 Class* java_lang_Object = src->GetSuperClass();
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700976 DCHECK(java_lang_Object != NULL);
977 DCHECK(java_lang_Object->GetSuperClass() == NULL);
978 return this == java_lang_Object;
979 }
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700980 return IsArrayAssignableFromArray(src);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700981}
982
983bool Class::IsSubClass(const Class* klass) const {
984 DCHECK(!IsInterface());
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700985 DCHECK(!IsArrayClass());
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700986 const Class* current = this;
987 do {
988 if (current == klass) {
989 return true;
990 }
991 current = current->GetSuperClass();
992 } while (current != NULL);
993 return false;
994}
995
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700996bool Class::IsInSamePackage(const String* descriptor_string_1,
997 const String* descriptor_string_2) {
998 const std::string descriptor1(descriptor_string_1->ToModifiedUtf8());
999 const std::string descriptor2(descriptor_string_2->ToModifiedUtf8());
1000
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001001 size_t i = 0;
1002 while (descriptor1[i] != '\0' && descriptor1[i] == descriptor2[i]) {
1003 ++i;
1004 }
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001005 if (descriptor1.find('/', i) != StringPiece::npos ||
1006 descriptor2.find('/', i) != StringPiece::npos) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001007 return false;
1008 } else {
1009 return true;
1010 }
1011}
1012
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001013#if 0
Ian Rogersb033c752011-07-20 12:22:35 -07001014bool Class::IsInSamePackage(const StringPiece& descriptor1,
1015 const StringPiece& descriptor2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001016 size_t size = std::min(descriptor1.size(), descriptor2.size());
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001017 std::pair<StringPiece::const_iterator, StringPiece::const_iterator> pos;
Ian Rogersb033c752011-07-20 12:22:35 -07001018 pos = std::mismatch(descriptor1.begin(), descriptor1.begin() + size,
1019 descriptor2.begin());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001020 return !(*(pos.second).rfind('/') != npos && descriptor2.rfind('/') != npos);
1021}
1022#endif
1023
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001024bool Class::IsInSamePackage(const Class* that) const {
1025 const Class* klass1 = this;
1026 const Class* klass2 = that;
1027 if (klass1 == klass2) {
1028 return true;
1029 }
1030 // Class loaders must match.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001031 if (klass1->GetClassLoader() != klass2->GetClassLoader()) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001032 return false;
1033 }
1034 // Arrays are in the same package when their element classes are.
jeffhao4a801a42011-09-23 13:53:40 -07001035 while (klass1->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001036 klass1 = klass1->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001037 }
jeffhao4a801a42011-09-23 13:53:40 -07001038 while (klass2->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001039 klass2 = klass2->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001040 }
1041 // Compare the package part of the descriptor string.
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001042 return IsInSamePackage(klass1->descriptor_, klass2->descriptor_);
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001043}
1044
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001045const ClassLoader* Class::GetClassLoader() const {
1046 return GetFieldObject<const ClassLoader*>(
1047 OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), false);
Brian Carlstromb9edb842011-08-28 16:31:06 -07001048}
1049
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001050void Class::SetClassLoader(const ClassLoader* new_cl) {
1051 ClassLoader* new_class_loader = const_cast<ClassLoader*>(new_cl);
1052 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_),
1053 new_class_loader, false);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001054}
1055
Brian Carlstrom30b94452011-08-25 21:35:26 -07001056Method* Class::FindVirtualMethodForInterface(Method* method) {
1057 Class* declaring_class = method->GetDeclaringClass();
Brian Carlstroma5a97a22011-09-15 14:08:49 -07001058 DCHECK(declaring_class != NULL);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001059 DCHECK(declaring_class->IsInterface());
1060 // TODO cache to improve lookup speed
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001061 int32_t iftable_count = GetIfTableCount();
1062 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1063 for (int32_t i = 0; i < iftable_count; i++) {
1064 InterfaceEntry* interface_entry = iftable->Get(i);
1065 if (interface_entry->GetInterface() == declaring_class) {
1066 return interface_entry->GetMethodArray()->Get(method->GetMethodIndex());
Brian Carlstrom30b94452011-08-25 21:35:26 -07001067 }
1068 }
Brian Carlstrom16192862011-09-12 17:50:06 -07001069 UNIMPLEMENTED(FATAL) << "Need to throw an error of some kind " << PrettyMethod(method);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001070 return NULL;
1071}
1072
jeffhaobdb76512011-09-07 11:43:16 -07001073Method* Class::FindInterfaceMethod(const StringPiece& name,
1074 const StringPiece& signature) {
1075 // Check the current class before checking the interfaces.
1076 Method* method = FindVirtualMethod(name, signature);
1077 if (method != NULL) {
1078 return method;
1079 }
1080
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001081 int32_t iftable_count = GetIfTableCount();
1082 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1083 for (int32_t i = 0; i < iftable_count; i++) {
1084 method = iftable->Get(i)->GetInterface()->FindVirtualMethod(name, signature);
jeffhaobdb76512011-09-07 11:43:16 -07001085 if (method != NULL) {
1086 return method;
1087 }
1088 }
1089 return NULL;
1090}
1091
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001092Method* Class::FindDeclaredDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001093 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001094 for (size_t i = 0; i < NumDirectMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001095 Method* method = GetDirectMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001096 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001097 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001098 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001099 }
1100 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001101 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001102}
1103
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001104Method* Class::FindDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001105 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001106 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001107 Method* method = klass->FindDeclaredDirectMethod(name, signature);
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001108 if (method != NULL) {
1109 return method;
1110 }
1111 }
1112 return NULL;
1113}
1114
1115Method* Class::FindDeclaredVirtualMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001116 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001117 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001118 Method* method = GetVirtualMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001119 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001120 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001121 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001122 }
1123 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001124 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001125}
1126
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001127Method* Class::FindVirtualMethod(const StringPiece& name,
1128 const StringPiece& descriptor) {
1129 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
1130 Method* method = klass->FindDeclaredVirtualMethod(name, descriptor);
1131 if (method != NULL) {
1132 return method;
1133 }
1134 }
1135 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001136}
1137
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001138Field* Class::FindDeclaredInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001139 // Is the field in this class?
1140 // Interfaces are not relevant because they can't contain instance fields.
1141 for (size_t i = 0; i < NumInstanceFields(); ++i) {
1142 Field* f = GetInstanceField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001143 if (f->GetName()->Equals(name) && type == f->GetType()) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001144 return f;
1145 }
1146 }
1147 return NULL;
1148}
1149
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001150Field* Class::FindInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001151 // Is the field in this class, or any of its superclasses?
1152 // Interfaces are not relevant because they can't contain instance fields.
1153 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001154 Field* f = c->FindDeclaredInstanceField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001155 if (f != NULL) {
1156 return f;
1157 }
1158 }
1159 return NULL;
1160}
1161
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001162Field* Class::FindDeclaredStaticField(const StringPiece& name, Class* type) {
1163 DCHECK(type != NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001164 for (size_t i = 0; i < NumStaticFields(); ++i) {
1165 Field* f = GetStaticField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001166 if (f->GetName()->Equals(name) && f->GetType() == type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001167 return f;
1168 }
1169 }
1170 return NULL;
1171}
1172
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001173Field* Class::FindStaticField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001174 // Is the field in this class (or its interfaces), or any of its
1175 // superclasses (or their interfaces)?
1176 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
1177 // Is the field in this class?
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001178 Field* f = c->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001179 if (f != NULL) {
1180 return f;
1181 }
1182
1183 // Is this field in any of this class' interfaces?
jeffhaoe0cfb6f2011-09-22 16:42:56 -07001184 for (int32_t i = 0; i < c->GetIfTableCount(); ++i) {
1185 InterfaceEntry* interface_entry = c->GetIfTable()->Get(i);
1186 Class* interface = interface_entry->GetInterface();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001187 f = interface->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001188 if (f != NULL) {
1189 return f;
1190 }
1191 }
1192 }
1193 return NULL;
1194}
1195
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001196Array* Array::Alloc(Class* array_class, int32_t component_count, size_t component_size) {
Elliott Hughes0f4c41d2011-09-04 14:58:03 -07001197 DCHECK(array_class != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001198 DCHECK_GE(component_count, 0);
1199 DCHECK(array_class->IsArrayClass());
1200 size_t size = SizeOf(component_count, component_size);
1201 Array* array = down_cast<Array*>(Heap::AllocObject(array_class, size));
1202 if (array != NULL) {
1203 DCHECK(array->IsArrayInstance());
1204 array->SetLength(component_count);
1205 }
1206 return array;
1207}
1208
1209Array* Array::Alloc(Class* array_class, int32_t component_count) {
1210 return Alloc(array_class, component_count, array_class->GetComponentSize());
1211}
1212
Elliott Hughes80609252011-09-23 17:24:51 -07001213bool Array::ThrowArrayIndexOutOfBoundsException(int32_t index) const {
1214 Thread::Current()->ThrowNewException("Ljava/lang/ArrayIndexOutOfBoundsException;",
1215 "length=%i; index=%i", length_, index);
1216 return false;
1217}
1218
1219bool Array::ThrowArrayStoreException(Object* object) const {
1220 Thread::Current()->ThrowNewException("Ljava/lang/ArrayStoreException;",
1221 "Can't store an element of type %s into an array of type %s",
1222 PrettyTypeOf(object).c_str(), PrettyTypeOf(this).c_str());
1223 return false;
1224}
1225
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001226template<typename T>
1227PrimitiveArray<T>* PrimitiveArray<T>::Alloc(size_t length) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001228 DCHECK(array_class_ != NULL);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001229 Array* raw_array = Array::Alloc(array_class_, length, sizeof(T));
1230 return down_cast<PrimitiveArray<T>*>(raw_array);
1231}
1232
1233template <typename T> Class* PrimitiveArray<T>::array_class_ = NULL;
1234
1235// Explicitly instantiate all the primitive array types.
1236template class PrimitiveArray<uint8_t>; // BooleanArray
1237template class PrimitiveArray<int8_t>; // ByteArray
1238template class PrimitiveArray<uint16_t>; // CharArray
1239template class PrimitiveArray<double>; // DoubleArray
1240template class PrimitiveArray<float>; // FloatArray
1241template class PrimitiveArray<int32_t>; // IntArray
1242template class PrimitiveArray<int64_t>; // LongArray
1243template class PrimitiveArray<int16_t>; // ShortArray
1244
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001245// TODO: get global references for these
1246Class* String::java_lang_String_ = NULL;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001247
Brian Carlstroma663ea52011-08-19 23:33:41 -07001248void String::SetClass(Class* java_lang_String) {
1249 CHECK(java_lang_String_ == NULL);
1250 CHECK(java_lang_String != NULL);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001251 java_lang_String_ = java_lang_String;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001252}
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001253
Brian Carlstroma663ea52011-08-19 23:33:41 -07001254void String::ResetClass() {
1255 CHECK(java_lang_String_ != NULL);
1256 java_lang_String_ = NULL;
1257}
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001258
Brian Carlstromc74255f2011-09-11 22:47:39 -07001259String* String::Intern() {
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001260 return Runtime::Current()->GetInternTable()->InternWeak(this);
1261}
1262
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001263int32_t String::GetHashCode() const {
1264 int32_t result = GetField32(
1265 OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
1266 DCHECK(result != 0 ||
1267 ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0);
1268 return result;
1269}
1270
1271int32_t String::GetLength() const {
1272 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), false);
1273 DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
1274 return result;
1275}
1276
1277uint16_t String::CharAt(int32_t index) const {
1278 // TODO: do we need this? Equals is the only caller, and could
1279 // bounds check itself.
1280 if (index < 0 || index >= count_) {
1281 Thread* self = Thread::Current();
1282 self->ThrowNewException("Ljava/lang/StringIndexOutOfBoundsException;",
1283 "length=%i; index=%i", count_, index);
1284 return 0;
1285 }
1286 return GetCharArray()->Get(index + GetOffset());
1287}
1288
1289String* String::AllocFromUtf16(int32_t utf16_length,
1290 const uint16_t* utf16_data_in,
1291 int32_t hash_code) {
1292 String* string = Alloc(GetJavaLangString(), utf16_length);
1293 // TODO: use 16-bit wide memset variant
1294 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
1295 for (int i = 0; i < utf16_length; i++) {
1296 array->Set(i, utf16_data_in[i]);
1297 }
1298 if (hash_code != 0) {
1299 string->SetHashCode(hash_code);
1300 } else {
1301 string->ComputeHashCode();
1302 }
1303 return string;
1304}
1305
1306String* String::AllocFromModifiedUtf8(const char* utf) {
1307 size_t char_count = CountModifiedUtf8Chars(utf);
1308 return AllocFromModifiedUtf8(char_count, utf);
1309}
1310
1311String* String::AllocFromModifiedUtf8(int32_t utf16_length,
1312 const char* utf8_data_in) {
1313 String* string = Alloc(GetJavaLangString(), utf16_length);
1314 uint16_t* utf16_data_out =
1315 const_cast<uint16_t*>(string->GetCharArray()->GetData());
1316 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
1317 string->ComputeHashCode();
1318 return string;
1319}
1320
1321String* String::Alloc(Class* java_lang_String, int32_t utf16_length) {
1322 return Alloc(java_lang_String, CharArray::Alloc(utf16_length));
1323}
1324
1325String* String::Alloc(Class* java_lang_String, CharArray* array) {
1326 String* string = down_cast<String*>(java_lang_String->AllocObject());
1327 string->SetArray(array);
1328 string->SetCount(array->GetLength());
1329 return string;
1330}
1331
1332bool String::Equals(const String* that) const {
1333 if (this == that) {
1334 // Quick reference equality test
1335 return true;
1336 } else if (that == NULL) {
1337 // Null isn't an instanceof anything
1338 return false;
1339 } else if (this->GetLength() != that->GetLength()) {
1340 // Quick length inequality test
1341 return false;
1342 } else {
1343 // NB don't short circuit on hash code as we're presumably here as the
1344 // hash code was already equal
1345 for (int32_t i = 0; i < that->GetLength(); ++i) {
1346 if (this->CharAt(i) != that->CharAt(i)) {
1347 return false;
1348 }
1349 }
1350 return true;
1351 }
1352}
1353
1354bool String::Equals(const uint16_t* that_chars, int32_t that_offset,
1355 int32_t that_length) const {
1356 if (this->GetLength() != that_length) {
1357 return false;
1358 } else {
1359 for (int32_t i = 0; i < that_length; ++i) {
1360 if (this->CharAt(i) != that_chars[that_offset + i]) {
1361 return false;
1362 }
1363 }
1364 return true;
1365 }
1366}
1367
1368bool String::Equals(const char* modified_utf8) const {
1369 for (int32_t i = 0; i < GetLength(); ++i) {
1370 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1371 if (ch == '\0' || ch != CharAt(i)) {
1372 return false;
1373 }
1374 }
1375 return *modified_utf8 == '\0';
1376}
1377
1378bool String::Equals(const StringPiece& modified_utf8) const {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001379 if (modified_utf8.size() != GetLength()) {
1380 return false;
1381 }
1382 const char* p = modified_utf8.data();
1383 for (int32_t i = 0; i < GetLength(); ++i) {
1384 uint16_t ch = GetUtf16FromUtf8(&p);
1385 if (ch != CharAt(i)) {
1386 return false;
1387 }
1388 }
1389 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001390}
1391
1392// Create a modified UTF-8 encoded std::string from a java/lang/String object.
1393std::string String::ToModifiedUtf8() const {
1394 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
1395 size_t byte_count(CountUtf8Bytes(chars, GetLength()));
1396 std::string result(byte_count, char(0));
1397 ConvertUtf16ToModifiedUtf8(&result[0], chars, GetLength());
1398 return result;
1399}
1400
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001401Class* StackTraceElement::java_lang_StackTraceElement_ = NULL;
1402
1403void StackTraceElement::SetClass(Class* java_lang_StackTraceElement) {
1404 CHECK(java_lang_StackTraceElement_ == NULL);
1405 CHECK(java_lang_StackTraceElement != NULL);
1406 java_lang_StackTraceElement_ = java_lang_StackTraceElement;
1407}
1408
1409void StackTraceElement::ResetClass() {
1410 CHECK(java_lang_StackTraceElement_ != NULL);
1411 java_lang_StackTraceElement_ = NULL;
1412}
1413
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001414StackTraceElement* StackTraceElement::Alloc(const String* declaring_class,
1415 const String* method_name,
1416 const String* file_name,
1417 int32_t line_number) {
1418 StackTraceElement* trace =
1419 down_cast<StackTraceElement*>(GetStackTraceElement()->AllocObject());
1420 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, declaring_class_),
1421 const_cast<String*>(declaring_class), false);
1422 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, method_name_),
1423 const_cast<String*>(method_name), false);
1424 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, file_name_),
1425 const_cast<String*>(file_name), false);
1426 trace->SetField32(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, line_number_),
1427 line_number, false);
1428 return trace;
1429}
1430
Elliott Hughes1f359b02011-07-17 14:27:17 -07001431static const char* kClassStatusNames[] = {
1432 "Error",
1433 "NotReady",
1434 "Idx",
1435 "Loaded",
1436 "Resolved",
1437 "Verifying",
1438 "Verified",
1439 "Initializing",
1440 "Initialized"
1441};
1442std::ostream& operator<<(std::ostream& os, const Class::Status& rhs) {
1443 if (rhs >= Class::kStatusError && rhs <= Class::kStatusInitialized) {
Brian Carlstromae3ac012011-07-27 01:30:28 -07001444 os << kClassStatusNames[rhs + 1];
Elliott Hughes1f359b02011-07-17 14:27:17 -07001445 } else {
Ian Rogersb033c752011-07-20 12:22:35 -07001446 os << "Class::Status[" << static_cast<int>(rhs) << "]";
Elliott Hughes1f359b02011-07-17 14:27:17 -07001447 }
1448 return os;
1449}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001450
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001451} // namespace art