blob: 4a6e6491637f1f884109d711f691bb0afa2c169d [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 }
Elliott Hughes14134a12011-09-30 16:55:51 -0700436 CHECK(result != NULL) << PrettyMethod(this);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 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 Carlstrom5d40f182011-09-26 22:29:18 -0700810 DCHECK(!Runtime::Current()->IsStarted() || IsInitializing()) << PrettyClass(this);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700811 return Heap::AllocObject(this, this->object_size_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700812}
813
Elliott Hughes4681c802011-09-25 18:04:37 -0700814void Class::DumpClass(std::ostream& os, int flags) const {
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700815 if ((flags & kDumpClassFullDetail) == 0) {
816 os << PrettyClass(this);
817 if ((flags & kDumpClassClassLoader) != 0) {
818 os << ' ' << GetClassLoader();
819 }
820 if ((flags & kDumpClassInitialized) != 0) {
821 os << ' ' << GetStatus();
822 }
823 os << std::endl;
824 return;
825 }
826
827 Class* super = GetSuperClass();
828 os << "----- " << (IsInterface() ? "interface" : "class") << " "
829 << "'" << GetDescriptor()->ToModifiedUtf8() << "' cl=" << GetClassLoader() << " -----\n",
830 os << " objectSize=" << SizeOf() << " "
831 << "(" << (super != NULL ? super->SizeOf() : -1) << " from super)\n",
832 os << StringPrintf(" access=0x%04x.%04x\n",
833 GetAccessFlags() >> 16, GetAccessFlags() & kAccJavaFlagsMask);
834 if (super != NULL) {
835 os << " super='" << PrettyClass(super) << "' (cl=" << super->GetClassLoader() << ")\n";
836 }
837 if (IsArrayClass()) {
838 os << " componentType=" << PrettyClass(GetComponentType()) << "\n";
839 }
840 if (NumInterfaces() > 0) {
841 os << " interfaces (" << NumInterfaces() << "):\n";
842 for (size_t i = 0; i < NumInterfaces(); ++i) {
843 Class* interface = GetInterface(i);
844 const ClassLoader* cl = interface->GetClassLoader();
845 os << StringPrintf(" %2d: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl);
846 }
847 }
848 os << " vtable (" << NumVirtualMethods() << " entries, "
849 << (super != NULL ? super->NumVirtualMethods() : 0) << " in super):\n";
850 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700851 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetVirtualMethodDuringLinking(i)).c_str());
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700852 }
853 os << " direct methods (" << NumDirectMethods() << " entries):\n";
854 for (size_t i = 0; i < NumDirectMethods(); ++i) {
855 os << StringPrintf(" %2d: %s\n", i, PrettyMethod(GetDirectMethod(i)).c_str());
856 }
857 if (NumStaticFields() > 0) {
858 os << " static fields (" << NumStaticFields() << " entries):\n";
Elliott Hughes03f03492011-09-26 13:38:08 -0700859 if (IsResolved() || IsErroneous()) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700860 for (size_t i = 0; i < NumStaticFields(); ++i) {
Elliott Hughes03f03492011-09-26 13:38:08 -0700861 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetStaticField(i)).c_str());
Elliott Hughes4681c802011-09-25 18:04:37 -0700862 }
863 } else {
864 os << " <not yet available>";
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700865 }
866 }
867 if (NumInstanceFields() > 0) {
868 os << " instance fields (" << NumInstanceFields() << " entries):\n";
Elliott Hughes03f03492011-09-26 13:38:08 -0700869 if (IsResolved() || IsErroneous()) {
Elliott Hughes4681c802011-09-25 18:04:37 -0700870 for (size_t i = 0; i < NumInstanceFields(); ++i) {
Elliott Hughes03f03492011-09-26 13:38:08 -0700871 os << StringPrintf(" %2d: %s\n", i, PrettyField(GetInstanceField(i)).c_str());
Elliott Hughes4681c802011-09-25 18:04:37 -0700872 }
873 } else {
874 os << " <not yet available>";
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700875 }
876 }
877}
878
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700879void Class::SetReferenceInstanceOffsets(uint32_t new_reference_offsets) {
880 if (new_reference_offsets != CLASS_WALK_SUPER) {
881 // Sanity check that the number of bits set in the reference offset bitmap
882 // agrees with the number of references
883 Class* cur = this;
884 size_t cnt = 0;
885 while (cur) {
886 cnt += cur->NumReferenceInstanceFieldsDuringLinking();
887 cur = cur->GetSuperClass();
888 }
889 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets), cnt);
890 }
891 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_),
892 new_reference_offsets, false);
893}
894
895void Class::SetReferenceStaticOffsets(uint32_t new_reference_offsets) {
896 if (new_reference_offsets != CLASS_WALK_SUPER) {
897 // Sanity check that the number of bits set in the reference offset bitmap
898 // agrees with the number of references
899 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets),
900 NumReferenceStaticFieldsDuringLinking());
901 }
902 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_),
903 new_reference_offsets, false);
904}
905
906size_t Class::PrimitiveSize() const {
907 switch (GetPrimitiveType()) {
908 case kPrimBoolean:
909 case kPrimByte:
910 case kPrimChar:
911 case kPrimShort:
912 case kPrimInt:
913 case kPrimFloat:
914 return sizeof(int32_t);
915 case kPrimLong:
916 case kPrimDouble:
917 return sizeof(int64_t);
918 default:
919 LOG(FATAL) << "Primitive type size calculation on invalid type " << this;
920 return 0;
921 }
922}
923
924size_t Class::GetTypeSize(const String* descriptor) {
925 switch (descriptor->CharAt(0)) {
926 case 'B': return 1; // byte
927 case 'C': return 2; // char
928 case 'D': return 8; // double
929 case 'F': return 4; // float
930 case 'I': return 4; // int
931 case 'J': return 8; // long
932 case 'S': return 2; // short
933 case 'Z': return 1; // boolean
934 case 'L': return sizeof(Object*);
935 case '[': return sizeof(Array*);
936 default:
937 LOG(ERROR) << "Unknown type " << descriptor;
938 return 0;
939 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700940}
941
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700942bool Class::Implements(const Class* klass) const {
943 DCHECK(klass != NULL);
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700944 DCHECK(klass->IsInterface()) << PrettyClass(this);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700945 // All interfaces implemented directly and by our superclass, and
946 // recursively all super-interfaces of those interfaces, are listed
947 // in iftable_, so we can just do a linear scan through that.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700948 int32_t iftable_count = GetIfTableCount();
949 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
950 for (int32_t i = 0; i < iftable_count; i++) {
951 if (iftable->Get(i)->GetInterface() == klass) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700952 return true;
953 }
954 }
955 return false;
956}
957
958// Determine whether "this" is assignable from "klazz", where both of these
959// are array classes.
960//
961// Consider an array class, e.g. Y[][], where Y is a subclass of X.
962// Y[][] = Y[][] --> true (identity)
963// X[][] = Y[][] --> true (element superclass)
964// Y = Y[][] --> false
965// Y[] = Y[][] --> false
966// Object = Y[][] --> true (everything is an object)
967// Object[] = Y[][] --> true
968// Object[][] = Y[][] --> true
969// Object[][][] = Y[][] --> false (too many []s)
970// Serializable = Y[][] --> true (all arrays are Serializable)
971// Serializable[] = Y[][] --> true
972// Serializable[][] = Y[][] --> false (unless Y is Serializable)
973//
974// Don't forget about primitive types.
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700975// Object[] = int[] --> false
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700976//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700977bool Class::IsArrayAssignableFromArray(const Class* src) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700978 DCHECK(IsArrayClass()) << PrettyClass(this);
979 DCHECK(src->IsArrayClass()) << PrettyClass(src);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700980 return GetComponentType()->IsAssignableFrom(src->GetComponentType());
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700981}
982
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700983bool Class::IsAssignableFromArray(const Class* src) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700984 DCHECK(!IsInterface()) << PrettyClass(this); // handled first in IsAssignableFrom
985 DCHECK(src->IsArrayClass()) << PrettyClass(src);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700986 if (!IsArrayClass()) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700987 // If "this" is not also an array, it must be Object.
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700988 // src's super should be java_lang_Object, since it is an array.
989 Class* java_lang_Object = src->GetSuperClass();
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700990 DCHECK(java_lang_Object != NULL) << PrettyClass(src);
991 DCHECK(java_lang_Object->GetSuperClass() == NULL) << PrettyClass(src);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700992 return this == java_lang_Object;
993 }
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700994 return IsArrayAssignableFromArray(src);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700995}
996
997bool Class::IsSubClass(const Class* klass) const {
Brian Carlstrom65ca0772011-09-24 16:03:08 -0700998 DCHECK(!IsInterface()) << PrettyClass(this);
999 DCHECK(!IsArrayClass()) << PrettyClass(this);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001000 const Class* current = this;
1001 do {
1002 if (current == klass) {
1003 return true;
1004 }
1005 current = current->GetSuperClass();
1006 } while (current != NULL);
1007 return false;
1008}
1009
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001010bool Class::IsInSamePackage(const String* descriptor_string_1,
1011 const String* descriptor_string_2) {
1012 const std::string descriptor1(descriptor_string_1->ToModifiedUtf8());
1013 const std::string descriptor2(descriptor_string_2->ToModifiedUtf8());
1014
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001015 size_t i = 0;
1016 while (descriptor1[i] != '\0' && descriptor1[i] == descriptor2[i]) {
1017 ++i;
1018 }
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001019 if (descriptor1.find('/', i) != StringPiece::npos ||
1020 descriptor2.find('/', i) != StringPiece::npos) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001021 return false;
1022 } else {
1023 return true;
1024 }
1025}
1026
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001027#if 0
Ian Rogersb033c752011-07-20 12:22:35 -07001028bool Class::IsInSamePackage(const StringPiece& descriptor1,
1029 const StringPiece& descriptor2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001030 size_t size = std::min(descriptor1.size(), descriptor2.size());
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001031 std::pair<StringPiece::const_iterator, StringPiece::const_iterator> pos;
Ian Rogersb033c752011-07-20 12:22:35 -07001032 pos = std::mismatch(descriptor1.begin(), descriptor1.begin() + size,
1033 descriptor2.begin());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001034 return !(*(pos.second).rfind('/') != npos && descriptor2.rfind('/') != npos);
1035}
1036#endif
1037
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001038bool Class::IsInSamePackage(const Class* that) const {
1039 const Class* klass1 = this;
1040 const Class* klass2 = that;
1041 if (klass1 == klass2) {
1042 return true;
1043 }
1044 // Class loaders must match.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001045 if (klass1->GetClassLoader() != klass2->GetClassLoader()) {
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001046 return false;
1047 }
1048 // Arrays are in the same package when their element classes are.
jeffhao4a801a42011-09-23 13:53:40 -07001049 while (klass1->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001050 klass1 = klass1->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001051 }
jeffhao4a801a42011-09-23 13:53:40 -07001052 while (klass2->IsArrayClass()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001053 klass2 = klass2->GetComponentType();
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001054 }
1055 // Compare the package part of the descriptor string.
Brian Carlstrom6cc18452011-07-18 15:10:33 -07001056 return IsInSamePackage(klass1->descriptor_, klass2->descriptor_);
Carl Shapiro894d0fa2011-06-30 14:48:49 -07001057}
1058
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001059const ClassLoader* Class::GetClassLoader() const {
1060 return GetFieldObject<const ClassLoader*>(
1061 OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), false);
Brian Carlstromb9edb842011-08-28 16:31:06 -07001062}
1063
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001064void Class::SetClassLoader(const ClassLoader* new_cl) {
1065 ClassLoader* new_class_loader = const_cast<ClassLoader*>(new_cl);
1066 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_),
1067 new_class_loader, false);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001068}
1069
Brian Carlstrom30b94452011-08-25 21:35:26 -07001070Method* Class::FindVirtualMethodForInterface(Method* method) {
1071 Class* declaring_class = method->GetDeclaringClass();
Brian Carlstrom65ca0772011-09-24 16:03:08 -07001072 DCHECK(declaring_class != NULL) << PrettyClass(this);
1073 DCHECK(declaring_class->IsInterface()) << PrettyMethod(method);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001074 // TODO cache to improve lookup speed
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001075 int32_t iftable_count = GetIfTableCount();
1076 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1077 for (int32_t i = 0; i < iftable_count; i++) {
1078 InterfaceEntry* interface_entry = iftable->Get(i);
1079 if (interface_entry->GetInterface() == declaring_class) {
1080 return interface_entry->GetMethodArray()->Get(method->GetMethodIndex());
Brian Carlstrom30b94452011-08-25 21:35:26 -07001081 }
1082 }
Brian Carlstrom16192862011-09-12 17:50:06 -07001083 UNIMPLEMENTED(FATAL) << "Need to throw an error of some kind " << PrettyMethod(method);
Brian Carlstrom30b94452011-08-25 21:35:26 -07001084 return NULL;
1085}
1086
jeffhaobdb76512011-09-07 11:43:16 -07001087Method* Class::FindInterfaceMethod(const StringPiece& name,
1088 const StringPiece& signature) {
1089 // Check the current class before checking the interfaces.
1090 Method* method = FindVirtualMethod(name, signature);
1091 if (method != NULL) {
1092 return method;
1093 }
1094
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001095 int32_t iftable_count = GetIfTableCount();
1096 ObjectArray<InterfaceEntry>* iftable = GetIfTable();
1097 for (int32_t i = 0; i < iftable_count; i++) {
1098 method = iftable->Get(i)->GetInterface()->FindVirtualMethod(name, signature);
jeffhaobdb76512011-09-07 11:43:16 -07001099 if (method != NULL) {
1100 return method;
1101 }
1102 }
1103 return NULL;
1104}
1105
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001106Method* Class::FindDeclaredDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001107 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001108 for (size_t i = 0; i < NumDirectMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001109 Method* method = GetDirectMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001110 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001111 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001112 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001113 }
1114 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001115 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001116}
1117
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001118Method* Class::FindDirectMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001119 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001120 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001121 Method* method = klass->FindDeclaredDirectMethod(name, signature);
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001122 if (method != NULL) {
1123 return method;
1124 }
1125 }
1126 return NULL;
1127}
1128
1129Method* Class::FindDeclaredVirtualMethod(const StringPiece& name,
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001130 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001131 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Ian Rogersb033c752011-07-20 12:22:35 -07001132 Method* method = GetVirtualMethod(i);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001133 if (method->GetName()->Equals(name) &&
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001134 method->GetSignature()->Equals(signature)) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001135 return method;
Ian Rogersb033c752011-07-20 12:22:35 -07001136 }
1137 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001138 return NULL;
Ian Rogersb033c752011-07-20 12:22:35 -07001139}
1140
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001141Method* Class::FindVirtualMethod(const StringPiece& name,
Elliott Hughescc5f9a92011-09-28 19:17:29 -07001142 const StringPiece& signature) {
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001143 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07001144 Method* method = klass->FindDeclaredVirtualMethod(name, signature);
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001145 if (method != NULL) {
1146 return method;
1147 }
1148 }
1149 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001150}
1151
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001152Field* Class::FindDeclaredInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001153 // Is the field in this class?
1154 // Interfaces are not relevant because they can't contain instance fields.
1155 for (size_t i = 0; i < NumInstanceFields(); ++i) {
1156 Field* f = GetInstanceField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001157 if (f->GetName()->Equals(name) && type == f->GetType()) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001158 return f;
1159 }
1160 }
1161 return NULL;
1162}
1163
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001164Field* Class::FindInstanceField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001165 // Is the field in this class, or any of its superclasses?
1166 // Interfaces are not relevant because they can't contain instance fields.
1167 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001168 Field* f = c->FindDeclaredInstanceField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001169 if (f != NULL) {
1170 return f;
1171 }
1172 }
1173 return NULL;
1174}
1175
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001176Field* Class::FindDeclaredStaticField(const StringPiece& name, Class* type) {
1177 DCHECK(type != NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001178 for (size_t i = 0; i < NumStaticFields(); ++i) {
1179 Field* f = GetStaticField(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001180 if (f->GetName()->Equals(name) && f->GetType() == type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001181 return f;
1182 }
1183 }
1184 return NULL;
1185}
1186
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001187Field* Class::FindStaticField(const StringPiece& name, Class* type) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001188 // Is the field in this class (or its interfaces), or any of its
1189 // superclasses (or their interfaces)?
1190 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
1191 // Is the field in this class?
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001192 Field* f = c->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001193 if (f != NULL) {
1194 return f;
1195 }
1196
1197 // Is this field in any of this class' interfaces?
jeffhaoe0cfb6f2011-09-22 16:42:56 -07001198 for (int32_t i = 0; i < c->GetIfTableCount(); ++i) {
1199 InterfaceEntry* interface_entry = c->GetIfTable()->Get(i);
1200 Class* interface = interface_entry->GetInterface();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001201 f = interface->FindDeclaredStaticField(name, type);
Elliott Hughescdf53122011-08-19 15:46:09 -07001202 if (f != NULL) {
1203 return f;
1204 }
1205 }
1206 }
1207 return NULL;
1208}
1209
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001210Array* Array::Alloc(Class* array_class, int32_t component_count, size_t component_size) {
Elliott Hughes0f4c41d2011-09-04 14:58:03 -07001211 DCHECK(array_class != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001212 DCHECK_GE(component_count, 0);
1213 DCHECK(array_class->IsArrayClass());
1214 size_t size = SizeOf(component_count, component_size);
1215 Array* array = down_cast<Array*>(Heap::AllocObject(array_class, size));
1216 if (array != NULL) {
1217 DCHECK(array->IsArrayInstance());
1218 array->SetLength(component_count);
1219 }
1220 return array;
1221}
1222
1223Array* Array::Alloc(Class* array_class, int32_t component_count) {
1224 return Alloc(array_class, component_count, array_class->GetComponentSize());
1225}
1226
Elliott Hughes80609252011-09-23 17:24:51 -07001227bool Array::ThrowArrayIndexOutOfBoundsException(int32_t index) const {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001228 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes80609252011-09-23 17:24:51 -07001229 "length=%i; index=%i", length_, index);
1230 return false;
1231}
1232
1233bool Array::ThrowArrayStoreException(Object* object) const {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001234 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ArrayStoreException;",
Elliott Hughes80609252011-09-23 17:24:51 -07001235 "Can't store an element of type %s into an array of type %s",
1236 PrettyTypeOf(object).c_str(), PrettyTypeOf(this).c_str());
1237 return false;
1238}
1239
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001240template<typename T>
1241PrimitiveArray<T>* PrimitiveArray<T>::Alloc(size_t length) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001242 DCHECK(array_class_ != NULL);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001243 Array* raw_array = Array::Alloc(array_class_, length, sizeof(T));
1244 return down_cast<PrimitiveArray<T>*>(raw_array);
1245}
1246
1247template <typename T> Class* PrimitiveArray<T>::array_class_ = NULL;
1248
1249// Explicitly instantiate all the primitive array types.
1250template class PrimitiveArray<uint8_t>; // BooleanArray
1251template class PrimitiveArray<int8_t>; // ByteArray
1252template class PrimitiveArray<uint16_t>; // CharArray
1253template class PrimitiveArray<double>; // DoubleArray
1254template class PrimitiveArray<float>; // FloatArray
1255template class PrimitiveArray<int32_t>; // IntArray
1256template class PrimitiveArray<int64_t>; // LongArray
1257template class PrimitiveArray<int16_t>; // ShortArray
1258
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001259// TODO: get global references for these
1260Class* String::java_lang_String_ = NULL;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001261
Brian Carlstroma663ea52011-08-19 23:33:41 -07001262void String::SetClass(Class* java_lang_String) {
1263 CHECK(java_lang_String_ == NULL);
1264 CHECK(java_lang_String != NULL);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001265 java_lang_String_ = java_lang_String;
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001266}
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001267
Brian Carlstroma663ea52011-08-19 23:33:41 -07001268void String::ResetClass() {
1269 CHECK(java_lang_String_ != NULL);
1270 java_lang_String_ = NULL;
1271}
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001272
Brian Carlstromc74255f2011-09-11 22:47:39 -07001273String* String::Intern() {
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001274 return Runtime::Current()->GetInternTable()->InternWeak(this);
1275}
1276
Brian Carlstrom395520e2011-09-25 19:35:00 -07001277int32_t String::GetHashCode() {
1278 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
1279 if (result == 0) {
1280 ComputeHashCode();
1281 }
1282 result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false);
1283 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
1284 << ToModifiedUtf8() << " " << result;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001285 return result;
1286}
1287
1288int32_t String::GetLength() const {
1289 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), false);
1290 DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
1291 return result;
1292}
1293
1294uint16_t String::CharAt(int32_t index) const {
1295 // TODO: do we need this? Equals is the only caller, and could
1296 // bounds check itself.
1297 if (index < 0 || index >= count_) {
1298 Thread* self = Thread::Current();
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001299 self->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001300 "length=%i; index=%i", count_, index);
1301 return 0;
1302 }
1303 return GetCharArray()->Get(index + GetOffset());
1304}
1305
1306String* String::AllocFromUtf16(int32_t utf16_length,
1307 const uint16_t* utf16_data_in,
1308 int32_t hash_code) {
1309 String* string = Alloc(GetJavaLangString(), utf16_length);
1310 // TODO: use 16-bit wide memset variant
1311 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
1312 for (int i = 0; i < utf16_length; i++) {
1313 array->Set(i, utf16_data_in[i]);
1314 }
1315 if (hash_code != 0) {
1316 string->SetHashCode(hash_code);
1317 } else {
1318 string->ComputeHashCode();
1319 }
1320 return string;
1321}
1322
1323String* String::AllocFromModifiedUtf8(const char* utf) {
1324 size_t char_count = CountModifiedUtf8Chars(utf);
1325 return AllocFromModifiedUtf8(char_count, utf);
1326}
1327
1328String* String::AllocFromModifiedUtf8(int32_t utf16_length,
1329 const char* utf8_data_in) {
1330 String* string = Alloc(GetJavaLangString(), utf16_length);
1331 uint16_t* utf16_data_out =
1332 const_cast<uint16_t*>(string->GetCharArray()->GetData());
1333 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
1334 string->ComputeHashCode();
1335 return string;
1336}
1337
1338String* String::Alloc(Class* java_lang_String, int32_t utf16_length) {
1339 return Alloc(java_lang_String, CharArray::Alloc(utf16_length));
1340}
1341
1342String* String::Alloc(Class* java_lang_String, CharArray* array) {
1343 String* string = down_cast<String*>(java_lang_String->AllocObject());
1344 string->SetArray(array);
1345 string->SetCount(array->GetLength());
1346 return string;
1347}
1348
1349bool String::Equals(const String* that) const {
1350 if (this == that) {
1351 // Quick reference equality test
1352 return true;
1353 } else if (that == NULL) {
1354 // Null isn't an instanceof anything
1355 return false;
1356 } else if (this->GetLength() != that->GetLength()) {
1357 // Quick length inequality test
1358 return false;
1359 } else {
1360 // NB don't short circuit on hash code as we're presumably here as the
1361 // hash code was already equal
1362 for (int32_t i = 0; i < that->GetLength(); ++i) {
1363 if (this->CharAt(i) != that->CharAt(i)) {
1364 return false;
1365 }
1366 }
1367 return true;
1368 }
1369}
1370
1371bool String::Equals(const uint16_t* that_chars, int32_t that_offset,
1372 int32_t that_length) const {
1373 if (this->GetLength() != that_length) {
1374 return false;
1375 } else {
1376 for (int32_t i = 0; i < that_length; ++i) {
1377 if (this->CharAt(i) != that_chars[that_offset + i]) {
1378 return false;
1379 }
1380 }
1381 return true;
1382 }
1383}
1384
1385bool String::Equals(const char* modified_utf8) const {
1386 for (int32_t i = 0; i < GetLength(); ++i) {
1387 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1388 if (ch == '\0' || ch != CharAt(i)) {
1389 return false;
1390 }
1391 }
1392 return *modified_utf8 == '\0';
1393}
1394
1395bool String::Equals(const StringPiece& modified_utf8) const {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001396 if (modified_utf8.size() != GetLength()) {
1397 return false;
1398 }
1399 const char* p = modified_utf8.data();
1400 for (int32_t i = 0; i < GetLength(); ++i) {
1401 uint16_t ch = GetUtf16FromUtf8(&p);
1402 if (ch != CharAt(i)) {
1403 return false;
1404 }
1405 }
1406 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001407}
1408
1409// Create a modified UTF-8 encoded std::string from a java/lang/String object.
1410std::string String::ToModifiedUtf8() const {
1411 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
1412 size_t byte_count(CountUtf8Bytes(chars, GetLength()));
1413 std::string result(byte_count, char(0));
1414 ConvertUtf16ToModifiedUtf8(&result[0], chars, GetLength());
1415 return result;
1416}
1417
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001418Class* StackTraceElement::java_lang_StackTraceElement_ = NULL;
1419
1420void StackTraceElement::SetClass(Class* java_lang_StackTraceElement) {
1421 CHECK(java_lang_StackTraceElement_ == NULL);
1422 CHECK(java_lang_StackTraceElement != NULL);
1423 java_lang_StackTraceElement_ = java_lang_StackTraceElement;
1424}
1425
1426void StackTraceElement::ResetClass() {
1427 CHECK(java_lang_StackTraceElement_ != NULL);
1428 java_lang_StackTraceElement_ = NULL;
1429}
1430
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001431StackTraceElement* StackTraceElement::Alloc(const String* declaring_class,
1432 const String* method_name,
1433 const String* file_name,
1434 int32_t line_number) {
1435 StackTraceElement* trace =
1436 down_cast<StackTraceElement*>(GetStackTraceElement()->AllocObject());
1437 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, declaring_class_),
1438 const_cast<String*>(declaring_class), false);
1439 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, method_name_),
1440 const_cast<String*>(method_name), false);
1441 trace->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, file_name_),
1442 const_cast<String*>(file_name), false);
1443 trace->SetField32(OFFSET_OF_OBJECT_MEMBER(StackTraceElement, line_number_),
1444 line_number, false);
1445 return trace;
1446}
1447
Elliott Hughes1f359b02011-07-17 14:27:17 -07001448static const char* kClassStatusNames[] = {
1449 "Error",
1450 "NotReady",
1451 "Idx",
1452 "Loaded",
1453 "Resolved",
1454 "Verifying",
1455 "Verified",
1456 "Initializing",
1457 "Initialized"
1458};
1459std::ostream& operator<<(std::ostream& os, const Class::Status& rhs) {
1460 if (rhs >= Class::kStatusError && rhs <= Class::kStatusInitialized) {
Brian Carlstromae3ac012011-07-27 01:30:28 -07001461 os << kClassStatusNames[rhs + 1];
Elliott Hughes1f359b02011-07-17 14:27:17 -07001462 } else {
Ian Rogersb033c752011-07-20 12:22:35 -07001463 os << "Class::Status[" << static_cast<int>(rhs) << "]";
Elliott Hughes1f359b02011-07-17 14:27:17 -07001464 }
1465 return os;
1466}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001467
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001468} // namespace art