blob: cfc18bf3aa5c48ca4d32a6e4da606469d6e35304 [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 Hughes4681c802011-09-25 18:04:37 -0700691// CHECK(GetCode() == NULL || IsNative()) << PrettyMethod(this);
692 if (GetCode() != NULL && !IsNative()) {
693 LOG(WARNING) << "Calling SetCode more than once for " << PrettyMethod(this);
694 }
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700695 SetFieldPtr<ByteArray*>(OFFSET_OF_OBJECT_MEMBER(Method, code_array_), code_array, false);
Ian Rogersbdb03912011-09-14 00:55:44 -0700696 SetFieldPtr<IntArray*>(OFFSET_OF_OBJECT_MEMBER(Method, mapping_table_),
buzbee4ef76522011-09-08 10:00:32 -0700697 mapping_table, false);
buzbeec41e5b52011-09-23 12:46:19 -0700698 SetFieldPtr<ShortArray*>(OFFSET_OF_OBJECT_MEMBER(Method, vmap_table_),
699 vmap_table, false);
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700700 int8_t* code = code_array->GetData();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700701 uintptr_t address = reinterpret_cast<uintptr_t>(code);
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700702 if (instruction_set == kThumb2) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700703 // Set the low-order bit so a BLX will switch to Thumb mode
704 address |= 0x1;
705 }
Ian Rogersff1ed472011-09-20 13:46:24 -0700706 SetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, code_),
707 reinterpret_cast<const void*>(address), false);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700708}
709
Ian Rogersbdb03912011-09-14 00:55:44 -0700710bool Method::IsWithinCode(uintptr_t pc) const {
Ian Rogersbdb03912011-09-14 00:55:44 -0700711 if (pc == 0) {
Ian Rogersff1ed472011-09-20 13:46:24 -0700712 // PC of 0 represents the beginning of a stack trace either a native or where we have a callee
713 // save method that has no code
714 DCHECK(IsNative() || IsPhony());
Ian Rogersbdb03912011-09-14 00:55:44 -0700715 return true;
716 } else {
Ian Rogers93dd9662011-09-17 23:21:22 -0700717#if defined(__arm__)
718 pc &= ~0x1; // clear any possible thumb instruction mode bit
719#endif
Ian Rogersbdb03912011-09-14 00:55:44 -0700720 uint32_t rel_offset = pc - reinterpret_cast<uintptr_t>(GetCodeArray()->GetData());
Ian Rogers93dd9662011-09-17 23:21:22 -0700721 // Strictly the following test should be a less-than, however, if the last
722 // instruction is a call to an exception throw we may see return addresses
723 // that are 1 beyond the end of code.
724 return rel_offset <= static_cast<uint32_t>(GetCodeArray()->GetLength());
Ian Rogersbdb03912011-09-14 00:55:44 -0700725 }
726}
727
Brian Carlstrom9baa4ae2011-09-01 21:14:14 -0700728void Method::SetInvokeStub(const ByteArray* invoke_stub_array) {
729 const InvokeStub* invoke_stub = reinterpret_cast<InvokeStub*>(invoke_stub_array->GetData());
730 SetFieldPtr<const ByteArray*>(
731 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_array_), invoke_stub_array, false);
732 SetFieldPtr<const InvokeStub*>(
733 OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_), invoke_stub, false);
734}
735
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700736void Method::Invoke(Thread* self, Object* receiver, byte* args, JValue* result) const {
737 // Push a transition back into managed code onto the linked list in thread.
738 CHECK_EQ(Thread::kRunnable, self->GetState());
739 NativeToManagedRecord record;
740 self->PushNativeToManagedRecord(&record);
741
742 // Call the invoke stub associated with the method.
743 // Pass everything as arguments.
744 const Method::InvokeStub* stub = GetInvokeStub();
Elliott Hughes1240dad2011-09-09 16:24:50 -0700745
746 bool have_executable_code = (GetCode() != NULL);
747#if !defined(__arm__)
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700748 // Currently we can only compile non-native methods for ARM.
749 have_executable_code = IsNative();
Elliott Hughes1240dad2011-09-09 16:24:50 -0700750#endif
751
752 if (have_executable_code && stub != NULL) {
753 LOG(INFO) << "invoking " << PrettyMethod(this) << " code=" << (void*) GetCode() << " stub=" << (void*) stub;
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700754 (*stub)(this, receiver, self, args, result);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700755 LOG(INFO) << "returned " << PrettyMethod(this) << " code=" << (void*) GetCode() << " stub=" << (void*) stub;
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700756 } else {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700757 if (Runtime::Current()->IsStarted()) {
758 LOG(WARNING) << "Not invoking method with no associated code: " << PrettyMethod(this);
759 }
Elliott Hughesf5ecf062011-09-06 17:37:59 -0700760 if (result != NULL) {
761 result->j = 0;
762 }
763 }
764
765 // Pop transition.
766 self->PopNativeToManagedRecord(record);
767}
768
Brian Carlstrom16192862011-09-12 17:50:06 -0700769bool Method::IsRegistered() {
770 void* native_method = GetFieldPtr<void*>(OFFSET_OF_OBJECT_MEMBER(Method, native_method_), false);
771 void* jni_stub = Runtime::Current()->GetJniStubArray()->GetData();
772 return native_method != jni_stub;
773}
774
775void Method::RegisterNative(const void* native_method) {
776 CHECK(IsNative());
777 CHECK(native_method != NULL);
778 SetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, native_method_),
779 native_method, false);
780}
781
782void Method::UnregisterNative() {
783 CHECK(IsNative());
784 // restore stub to lookup native pointer via dlsym
785 RegisterNative(Runtime::Current()->GetJniStubArray()->GetData());
786}
787
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700788void Class::SetStatus(Status new_status) {
789 CHECK(new_status > GetStatus() || new_status == kStatusError ||
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700790 !Runtime::Current()->IsStarted()) << PrettyClass(this);
791 CHECK(sizeof(Status) == sizeof(uint32_t)) << PrettyClass(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700792 return SetField32(OFFSET_OF_OBJECT_MEMBER(Class, status_),
793 new_status, false);
794}
795
796DexCache* Class::GetDexCache() const {
797 return GetFieldObject<DexCache*>(
798 OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_), false);
799}
800
801void Class::SetDexCache(DexCache* new_dex_cache) {
802 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_),
803 new_dex_cache, false);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700804}
805
Brian Carlstrom1f870082011-08-23 16:02:11 -0700806Object* Class::AllocObject() {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700807 DCHECK(!IsAbstract()) << PrettyClass(this);
808 DCHECK(!IsInterface()) << PrettyClass(this);
809 DCHECK(!IsPrimitive()) << PrettyClass(this);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700810 return Heap::AllocObject(this, this->object_size_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700811}
812
Elliott Hughes4681c802011-09-25 18:04:37 -0700813void Class::DumpClass(std::ostream& os, int flags) const {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700814 if ((flags & kDumpClassFullDetail) == 0) {
815 os << PrettyClass(this);
816 if ((flags & kDumpClassClassLoader) != 0) {
817 os << ' ' << GetClassLoader();
818 }
819 if ((flags & kDumpClassInitialized) != 0) {
820 os << ' ' << GetStatus();
821 }
822 os << std::endl;
823 return;
824 }
825
826 Class* super = GetSuperClass();
827 os << "----- " << (IsInterface() ? "interface" : "class") << " "
828 << "'" << GetDescriptor()->ToModifiedUtf8() << "' cl=" << GetClassLoader() << " -----\n",
829 os << " objectSize=" << SizeOf() << " "
830 << "(" << (super != NULL ? super->SizeOf() : -1) << " from super)\n",
831 os << StringPrintf(" access=0x%04x.%04x\n",
832 GetAccessFlags() >> 16, GetAccessFlags() & kAccJavaFlagsMask);
833 if (super != NULL) {
834 os << " super='" << PrettyClass(super) << "' (cl=" << super->GetClassLoader() << ")\n";
835 }
836 if (IsArrayClass()) {
837 os << " componentType=" << PrettyClass(GetComponentType()) << "\n";
838 }
839 if (NumInterfaces() > 0) {
840 os << " interfaces (" << NumInterfaces() << "):\n";
841 for (size_t i = 0; i < NumInterfaces(); ++i) {
842 Class* interface = GetInterface(i);
843 const ClassLoader* cl = interface->GetClassLoader();
844 os << StringPrintf(" %2d: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl);
845 }
846 }
847 os << " vtable (" << NumVirtualMethods() << " entries, "
848 << (super != NULL ? super->NumVirtualMethods() : 0) << " in super):\n";
849 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700850 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetVirtualMethodDuringLinking(i)).c_str());
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700851 }
852 os << " direct methods (" << NumDirectMethods() << " entries):\n";
853 for (size_t i = 0; i < NumDirectMethods(); ++i) {
854 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetDirectMethod(i)).c_str());
855 }
856 if (NumStaticFields() > 0) {
857 os << " static fields (" << NumStaticFields() << " entries):\n";
Elliott Hughes03f03492011-09-26 13:38:08 -0700858 if (IsResolved() || IsErroneous()) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700859 for (size_t i = 0; i < NumStaticFields(); ++i) {
Elliott Hughes03f03492011-09-26 13:38:08 -0700860 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetStaticField(i)).c_str());
Elliott Hughes4681c802011-09-25 18:04:37 -0700861 }
862 } else {
863 os << " <not yet available>";
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700864 }
865 }
866 if (NumInstanceFields() > 0) {
867 os << " instance fields (" << NumInstanceFields() << " entries):\n";
Elliott Hughes03f03492011-09-26 13:38:08 -0700868 if (IsResolved() || IsErroneous()) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700869 for (size_t i = 0; i < NumInstanceFields(); ++i) {
Elliott Hughes03f03492011-09-26 13:38:08 -0700870 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetInstanceField(i)).c_str());
Elliott Hughes4681c802011-09-25 18:04:37 -0700871 }
872 } else {
873 os << " <not yet available>";
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700874 }
875 }
876}
877
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700878void Class::SetReferenceInstanceOffsets(uint32_t new_reference_offsets) {
879 if (new_reference_offsets != CLASS_WALK_SUPER) {
880 // Sanity check that the number of bits set in the reference offset bitmap
881 // agrees with the number of references
882 Class* cur = this;
883 size_t cnt = 0;
884 while (cur) {
885 cnt += cur->NumReferenceInstanceFieldsDuringLinking();
886 cur = cur->GetSuperClass();
887 }
888 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets), cnt);
889 }
890 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_),
891 new_reference_offsets, false);
892}
893
894void Class::SetReferenceStaticOffsets(uint32_t new_reference_offsets) {
895 if (new_reference_offsets != CLASS_WALK_SUPER) {
896 // Sanity check that the number of bits set in the reference offset bitmap
897 // agrees with the number of references
898 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets),
899 NumReferenceStaticFieldsDuringLinking());
900 }
901 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_),
902 new_reference_offsets, false);
903}
904
905size_t Class::PrimitiveSize() const {
906 switch (GetPrimitiveType()) {
907 case kPrimBoolean:
908 case kPrimByte:
909 case kPrimChar:
910 case kPrimShort:
911 case kPrimInt:
912 case kPrimFloat:
913 return sizeof(int32_t);
914 case kPrimLong:
915 case kPrimDouble:
916 return sizeof(int64_t);
917 default:
918 LOG(FATAL) << "Primitive type size calculation on invalid type " << this;
919 return 0;
920 }
921}
922
923size_t Class::GetTypeSize(const String* descriptor) {
924 switch (descriptor->CharAt(0)) {
925 case 'B': return 1; // byte
926 case 'C': return 2; // char
927 case 'D': return 8; // double
928 case 'F': return 4; // float
929 case 'I': return 4; // int
930 case 'J': return 8; // long
931 case 'S': return 2; // short
932 case 'Z': return 1; // boolean
933 case 'L': return sizeof(Object*);
934 case '[': return sizeof(Array*);
935 default:
936 LOG(ERROR) << "Unknown type " << descriptor;
937 return 0;
938 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700939}
940
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700941bool Class::Implements(const Class* klass) const {
942 DCHECK(klass != NULL);
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700943 DCHECK(klass->IsInterface()) << PrettyClass(this);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700944 // All interfaces implemented directly and by our superclass, and
945 // recursively all super-interfaces of those interfaces, are listed
946 // in iftable_, so we can just do a linear scan through that.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700947 int32_t iftable_count = GetIfTableCount();
948 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
949 for (int32_t i = 0; i < iftable_count; i++) {
950 if (iftable->Get(i)->GetInterface() == klass) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700951 return true;
952 }
953 }
954 return false;
955}
956
957// Determine whether "this" is assignable from "klazz", where both of these
958// are array classes.
959//
960// Consider an array class, e.g. Y[][], where Y is a subclass of X.
961// Y[][] = Y[][] --> true (identity)
962// X[][] = Y[][] --> true (element superclass)
963// Y = Y[][] --> false
964// Y[] = Y[][] --> false
965// Object = Y[][] --> true (everything is an object)
966// Object[] = Y[][] --> true
967// Object[][] = Y[][] --> true
968// Object[][][] = Y[][] --> false (too many []s)
969// Serializable = Y[][] --> true (all arrays are Serializable)
970// Serializable[] = Y[][] --> true
971// Serializable[][] = Y[][] --> false (unless Y is Serializable)
972//
973// Don't forget about primitive types.
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700974// Object[] = int[] --> false
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700975//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700976bool Class::IsArrayAssignableFromArray(const Class* src) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700977 DCHECK(IsArrayClass()) << PrettyClass(this);
978 DCHECK(src->IsArrayClass()) << PrettyClass(src);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700979 return GetComponentType()->IsAssignableFrom(src->GetComponentType());
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700980}
981
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700982bool Class::IsAssignableFromArray(const Class* src) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700983 DCHECK(!IsInterface()) << PrettyClass(this); // handled first in IsAssignableFrom
984 DCHECK(src->IsArrayClass()) << PrettyClass(src);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700985 if (!IsArrayClass()) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700986 // If "this" is not also an array, it must be Object.
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700987 // src's super should be java_lang_Object, since it is an array.
988 Class* java_lang_Object = src->GetSuperClass();
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700989 DCHECK(java_lang_Object != NULL) << PrettyClass(src);
990 DCHECK(java_lang_Object->GetSuperClass() == NULL) << PrettyClass(src);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700991 return this == java_lang_Object;
992 }
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700993 return IsArrayAssignableFromArray(src);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700994}
995
996bool Class::IsSubClass(const Class* klass) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700997 DCHECK(!IsInterface()) << PrettyClass(this);
998 DCHECK(!IsArrayClass()) << PrettyClass(this);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700999 const Class* current = this;
1000 do {
1001 if (current == klass) {
1002 return true;
1003 }
1004 current = current->GetSuperClass();
1005 } while (current != NULL);
1006 return false;
1007}
1008
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001009bool Class::IsInSamePackage(const String* descriptor_string_1,
1010 const String* descriptor_string_2) {
1011 const std::string descriptor1(descriptor_string_1->ToModifiedUtf8());
1012 const std::string descriptor2(descriptor_string_2->ToModifiedUtf8());
1013
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001014 size_t i = 0;
1015 while (descriptor1[i] != '\0' && descriptor1[i] == descriptor2[i]) {
1016 ++i;
1017 }
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001018 if (descriptor1.find('/', i) != StringPiece::npos ||
1019 descriptor2.find('/', i) != StringPiece::npos) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001020 return false;
1021 } else {
1022 return true;
1023 }
1024}
1025
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001026#if 0
Ian Rogersb033c752011-07-20 12:22:35 -07001027bool Class::IsInSamePackage(const StringPiece& descriptor1,
1028 const StringPiece& descriptor2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001029 size_t size = std::min(descriptor1.size(), descriptor2.size());
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001030 std::pair<StringPiece::const_iterator, StringPiece::const_iterator> pos;
Ian Rogersb033c752011-07-20 12:22:35 -07001031 pos = std::mismatch(descriptor1.begin(), descriptor1.begin() + size,
1032 descriptor2.begin());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001033 return !(*(pos.second).rfind('/') != npos && descriptor2.rfind('/') != npos);
1034}
1035#endif
1036
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001037bool Class::IsInSamePackage(const Class* that) const {
1038 const Class* klass1 = this;
1039 const Class* klass2 = that;
1040 if (klass1 == klass2) {
1041 return true;
1042 }
1043 // Class loaders must match.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001044 if (klass1->GetClassLoader() != klass2->GetClassLoader()) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001045 return false;
1046 }
1047 // Arrays are in the same package when their element classes are.
jeffhao4a801a42011-09-23 13:53:40 -07001048 while (klass1->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001049 klass1 = klass1->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001050 }
jeffhao4a801a42011-09-23 13:53:40 -07001051 while (klass2->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001052 klass2 = klass2->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001053 }
1054 // Compare the package part of the descriptor string.
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001055 return IsInSamePackage(klass1->descriptor_, klass2->descriptor_);
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001056}
1057
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001058const ClassLoader* Class::GetClassLoader() const {
1059 return GetFieldObject<const ClassLoader*>(
1060 OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), false);
Brian Carlstromb9edb842011-08-28 16:31:06 -07001061}
1062
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001063void Class::SetClassLoader(const ClassLoader* new_cl) {
1064 ClassLoader* new_class_loader = const_cast<ClassLoader*>(new_cl);
1065 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_),
1066 new_class_loader, false);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001067}
1068
Brian Carlstrom30b94452011-08-25 21:35:26 -07001069Method* Class::FindVirtualMethodForInterface(Method* method) {
1070 Class* declaring_class = method->GetDeclaringClass();
Brian Carlstrom65ca0772011-09-24 16:03:08 -07001071 DCHECK(declaring_class != NULL) << PrettyClass(this);
1072 DCHECK(declaring_class->IsInterface()) << PrettyMethod(method);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001073 // TODO cache to improve lookup speed
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001074 int32_t iftable_count = GetIfTableCount();
1075 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1076 for (int32_t i = 0; i < iftable_count; i++) {
1077 InterfaceEntry* interface_entry = iftable->Get(i);
1078 if (interface_entry->GetInterface() == declaring_class) {
1079 return interface_entry->GetMethodArray()->Get(method->GetMethodIndex());
Brian Carlstrom30b94452011-08-25 21:35:26 -07001080 }
1081 }
Brian Carlstrom16192862011-09-12 17:50:06 -07001082 UNIMPLEMENTED(FATAL) << "Need to throw an error of some kind " << PrettyMethod(method);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001083 return NULL;
1084}
1085
jeffhaobdb76512011-09-07 11:43:16 -07001086Method* Class::FindInterfaceMethod(const StringPiece& name,
1087 const StringPiece& signature) {
1088 // Check the current class before checking the interfaces.
1089 Method* method = FindVirtualMethod(name, signature);
1090 if (method != NULL) {
1091 return method;
1092 }
1093
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001094 int32_t iftable_count = GetIfTableCount();
1095 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1096 for (int32_t i = 0; i < iftable_count; i++) {
1097 method = iftable->Get(i)->GetInterface()->FindVirtualMethod(name, signature);
jeffhaobdb76512011-09-07 11:43:16 -07001098 if (method != NULL) {
1099 return method;
1100 }
1101 }
1102 return NULL;
1103}
1104
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001105Method* Class::FindDeclaredDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001106 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001107 for (size_t i = 0; i < NumDirectMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001108 Method* method = GetDirectMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001109 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001110 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001111 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001112 }
1113 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001114 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001115}
1116
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001117Method* Class::FindDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001118 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001119 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001120 Method* method = klass->FindDeclaredDirectMethod(name, signature);
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001121 if (method != NULL) {
1122 return method;
1123 }
1124 }
1125 return NULL;
1126}
1127
1128Method* Class::FindDeclaredVirtualMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001129 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001130 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001131 Method* method = GetVirtualMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001132 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001133 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001134 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001135 }
1136 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001137 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001138}
1139
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001140Method* Class::FindVirtualMethod(const StringPiece& name,
1141 const StringPiece& descriptor) {
1142 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
1143 Method* method = klass->FindDeclaredVirtualMethod(name, descriptor);
1144 if (method != NULL) {
1145 return method;
1146 }
1147 }
1148 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001149}
1150
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001151Field* Class::FindDeclaredInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001152 // Is the field in this class?
1153 // Interfaces are not relevant because they can't contain instance fields.
1154 for (size_t i = 0; i < NumInstanceFields(); ++i) {
1155 Field* f = GetInstanceField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001156 if (f->GetName()->Equals(name) && type == f->GetType()) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001157 return f;
1158 }
1159 }
1160 return NULL;
1161}
1162
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001163Field* Class::FindInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001164 // Is the field in this class, or any of its superclasses?
1165 // Interfaces are not relevant because they can't contain instance fields.
1166 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001167 Field* f = c->FindDeclaredInstanceField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001168 if (f != NULL) {
1169 return f;
1170 }
1171 }
1172 return NULL;
1173}
1174
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001175Field* Class::FindDeclaredStaticField(const StringPiece& name, Class* type) {
1176 DCHECK(type != NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001177 for (size_t i = 0; i < NumStaticFields(); ++i) {
1178 Field* f = GetStaticField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001179 if (f->GetName()->Equals(name) && f->GetType() == type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001180 return f;
1181 }
1182 }
1183 return NULL;
1184}
1185
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001186Field* Class::FindStaticField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001187 // Is the field in this class (or its interfaces), or any of its
1188 // superclasses (or their interfaces)?
1189 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
1190 // Is the field in this class?
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001191 Field* f = c->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001192 if (f != NULL) {
1193 return f;
1194 }
1195
1196 // Is this field in any of this class' interfaces?
jeffhaoe0cfb6f2011-09-22 16:42:56 -07001197 for (int32_t i = 0; i < c->GetIfTableCount(); ++i) {
1198 InterfaceEntry* interface_entry = c->GetIfTable()->Get(i);
1199 Class* interface = interface_entry->GetInterface();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001200 f = interface->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001201 if (f != NULL) {
1202 return f;
1203 }
1204 }
1205 }
1206 return NULL;
1207}
1208
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001209Array* Array::Alloc(Class* array_class, int32_t component_count, size_t component_size) {
Elliott Hughes0f4c41d2011-09-04 14:58:03 -07001210 DCHECK(array_class != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001211 DCHECK_GE(component_count, 0);
1212 DCHECK(array_class->IsArrayClass());
1213 size_t size = SizeOf(component_count, component_size);
1214 Array* array = down_cast<Array*>(Heap::AllocObject(array_class, size));
1215 if (array != NULL) {
1216 DCHECK(array->IsArrayInstance());
1217 array->SetLength(component_count);
1218 }
1219 return array;
1220}
1221
1222Array* Array::Alloc(Class* array_class, int32_t component_count) {
1223 return Alloc(array_class, component_count, array_class->GetComponentSize());
1224}
1225
Elliott Hughes80609252011-09-23 17:24:51 -07001226bool Array::ThrowArrayIndexOutOfBoundsException(int32_t index) const {
1227 Thread::Current()->ThrowNewException("Ljava/lang/ArrayIndexOutOfBoundsException;",
1228 "length=%i; index=%i", length_, index);
1229 return false;
1230}
1231
1232bool Array::ThrowArrayStoreException(Object* object) const {
1233 Thread::Current()->ThrowNewException("Ljava/lang/ArrayStoreException;",
1234 "Can't store an element of type %s into an array of type %s",
1235 PrettyTypeOf(object).c_str(), PrettyTypeOf(this).c_str());
1236 return false;
1237}
1238
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001239template<typename T>
1240PrimitiveArray<T>* PrimitiveArray<T>::Alloc(size_t length) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001241 DCHECK(array_class_ != NULL);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001242 Array* raw_array = Array::Alloc(array_class_, length, sizeof(T));
1243 return down_cast<PrimitiveArray<T>*>(raw_array);
1244}
1245
1246template <typename T> Class* PrimitiveArray<T>::array_class_ = NULL;
1247
1248// Explicitly instantiate all the primitive array types.
1249template class PrimitiveArray<uint8_t>; // BooleanArray
1250template class PrimitiveArray<int8_t>; // ByteArray
1251template class PrimitiveArray<uint16_t>; // CharArray
1252template class PrimitiveArray<double>; // DoubleArray
1253template class PrimitiveArray<float>; // FloatArray
1254template class PrimitiveArray<int32_t>; // IntArray
1255template class PrimitiveArray<int64_t>; // LongArray
1256template class PrimitiveArray<int16_t>; // ShortArray
1257
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001258// TODO: get global references for these
1259Class* String::java_lang_String_ = NULL;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001260
Brian Carlstroma663ea52011-08-19 23:33:41 -07001261void String::SetClass(Class* java_lang_String) {
1262 CHECK(java_lang_String_ == NULL);
1263 CHECK(java_lang_String != NULL);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001264 java_lang_String_ = java_lang_String;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001265}
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001266
Brian Carlstroma663ea52011-08-19 23:33:41 -07001267void String::ResetClass() {
1268 CHECK(java_lang_String_ != NULL);
1269 java_lang_String_ = NULL;
1270}
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001271
Brian Carlstromc74255f2011-09-11 22:47:39 -07001272String* String::Intern() {
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001273 return Runtime::Current()->GetInternTable()->InternWeak(this);
1274}
1275
Brian Carlstrom395520e2011-09-25 19:35:00 -07001276int32_t String::GetHashCode() {
1277 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
1278 if (result == 0) {
1279 ComputeHashCode();
1280 }
1281 result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
1282 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
1283 << ToModifiedUtf8() << " " << result;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001284 return result;
1285}
1286
1287int32_t String::GetLength() const {
1288 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), false);
1289 DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
1290 return result;
1291}
1292
1293uint16_t String::CharAt(int32_t index) const {
1294 // TODO: do we need this? Equals is the only caller, and could
1295 // bounds check itself.
1296 if (index < 0 || index >= count_) {
1297 Thread* self = Thread::Current();
1298 self->ThrowNewException("Ljava/lang/StringIndexOutOfBoundsException;",
1299 "length=%i; index=%i", count_, index);
1300 return 0;
1301 }
1302 return GetCharArray()->Get(index + GetOffset());
1303}
1304
1305String* String::AllocFromUtf16(int32_t utf16_length,
1306 const uint16_t* utf16_data_in,
1307 int32_t hash_code) {
1308 String* string = Alloc(GetJavaLangString(), utf16_length);
1309 // TODO: use 16-bit wide memset variant
1310 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
1311 for (int i = 0; i < utf16_length; i++) {
1312 array->Set(i, utf16_data_in[i]);
1313 }
1314 if (hash_code != 0) {
1315 string->SetHashCode(hash_code);
1316 } else {
1317 string->ComputeHashCode();
1318 }
1319 return string;
1320}
1321
1322String* String::AllocFromModifiedUtf8(const char* utf) {
1323 size_t char_count = CountModifiedUtf8Chars(utf);
1324 return AllocFromModifiedUtf8(char_count, utf);
1325}
1326
1327String* String::AllocFromModifiedUtf8(int32_t utf16_length,
1328 const char* utf8_data_in) {
1329 String* string = Alloc(GetJavaLangString(), utf16_length);
1330 uint16_t* utf16_data_out =
1331 const_cast<uint16_t*>(string->GetCharArray()->GetData());
1332 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
1333 string->ComputeHashCode();
1334 return string;
1335}
1336
1337String* String::Alloc(Class* java_lang_String, int32_t utf16_length) {
1338 return Alloc(java_lang_String, CharArray::Alloc(utf16_length));
1339}
1340
1341String* String::Alloc(Class* java_lang_String, CharArray* array) {
1342 String* string = down_cast<String*>(java_lang_String->AllocObject());
1343 string->SetArray(array);
1344 string->SetCount(array->GetLength());
1345 return string;
1346}
1347
1348bool String::Equals(const String* that) const {
1349 if (this == that) {
1350 // Quick reference equality test
1351 return true;
1352 } else if (that == NULL) {
1353 // Null isn't an instanceof anything
1354 return false;
1355 } else if (this->GetLength() != that->GetLength()) {
1356 // Quick length inequality test
1357 return false;
1358 } else {
1359 // NB don't short circuit on hash code as we're presumably here as the
1360 // hash code was already equal
1361 for (int32_t i = 0; i < that->GetLength(); ++i) {
1362 if (this->CharAt(i) != that->CharAt(i)) {
1363 return false;
1364 }
1365 }
1366 return true;
1367 }
1368}
1369
1370bool String::Equals(const uint16_t* that_chars, int32_t that_offset,
1371 int32_t that_length) const {
1372 if (this->GetLength() != that_length) {
1373 return false;
1374 } else {
1375 for (int32_t i = 0; i < that_length; ++i) {
1376 if (this->CharAt(i) != that_chars[that_offset + i]) {
1377 return false;
1378 }
1379 }
1380 return true;
1381 }
1382}
1383
1384bool String::Equals(const char* modified_utf8) const {
1385 for (int32_t i = 0; i < GetLength(); ++i) {
1386 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1387 if (ch == '\0' || ch != CharAt(i)) {
1388 return false;
1389 }
1390 }
1391 return *modified_utf8 == '\0';
1392}
1393
1394bool String::Equals(const StringPiece& modified_utf8) const {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001395 if (modified_utf8.size() != GetLength()) {
1396 return false;
1397 }
1398 const char* p = modified_utf8.data();
1399 for (int32_t i = 0; i < GetLength(); ++i) {
1400 uint16_t ch = GetUtf16FromUtf8(&p);
1401 if (ch != CharAt(i)) {
1402 return false;
1403 }
1404 }
1405 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001406}
1407
1408// Create a modified UTF-8 encoded std::string from a java/lang/String object.
1409std::string String::ToModifiedUtf8() const {
1410 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
1411 size_t byte_count(CountUtf8Bytes(chars, GetLength()));
1412 std::string result(byte_count, char(0));
1413 ConvertUtf16ToModifiedUtf8(&result[0], chars, GetLength());
1414 return result;
1415}
1416
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001417Class* StackTraceElement::java_lang_StackTraceElement_ = NULL;
1418
1419void StackTraceElement::SetClass(Class* java_lang_StackTraceElement) {
1420 CHECK(java_lang_StackTraceElement_ == NULL);
1421 CHECK(java_lang_StackTraceElement != NULL);
1422 java_lang_StackTraceElement_ = java_lang_StackTraceElement;
1423}
1424
1425void StackTraceElement::ResetClass() {
1426 CHECK(java_lang_StackTraceElement_ != NULL);
1427 java_lang_StackTraceElement_ = NULL;
1428}
1429
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001430StackTraceElement* StackTraceElement::Alloc(const String* declaring_class,
1431 const String* method_name,
1432 const String* file_name,
1433 int32_t line_number) {
1434 StackTraceElement* trace =
1435 down_cast<StackTraceElement*>(GetStackTraceElement()->AllocObject());
1436 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, declaring_class_),
1437 const_cast<String*>(declaring_class), false);
1438 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, method_name_),
1439 const_cast<String*>(method_name), false);
1440 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, file_name_),
1441 const_cast<String*>(file_name), false);
1442 trace->SetField32(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, line_number_),
1443 line_number, false);
1444 return trace;
1445}
1446
Elliott Hughes1f359b02011-07-17 14:27:17 -07001447static const char* kClassStatusNames[] = {
1448 "Error",
1449 "NotReady",
1450 "Idx",
1451 "Loaded",
1452 "Resolved",
1453 "Verifying",
1454 "Verified",
1455 "Initializing",
1456 "Initialized"
1457};
1458std::ostream& operator<<(std::ostream& os, const Class::Status& rhs) {
1459 if (rhs >= Class::kStatusError && rhs <= Class::kStatusInitialized) {
Brian Carlstromae3ac012011-07-27 01:30:28 -07001460 os << kClassStatusNames[rhs + 1];
Elliott Hughes1f359b02011-07-17 14:27:17 -07001461 } else {
Ian Rogersb033c752011-07-20 12:22:35 -07001462 os << "Class::Status[" << static_cast<int>(rhs) << "]";
Elliott Hughes1f359b02011-07-17 14:27:17 -07001463 }
1464 return os;
1465}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001466
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001467} // namespace art