blob: 51109922e1463b9d5ab2c7390b4b38d8a8b5758c [file] [log] [blame]
Carl Shapiro1fb86202011-06-27 17:43:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#ifndef ART_SRC_OBJECT_H_
4#define ART_SRC_OBJECT_H_
5
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07006#include "constants.h"
7#include "casts.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -07008#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07009#include "globals.h"
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070010#include "heap.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070011#include "logging.h"
12#include "macros.h"
13#include "offsets.h"
14#include "stringpiece.h"
15#include "monitor.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
17namespace art {
18
19class Array;
20class Class;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070021class DexCache;
Jesse Wilson35baaab2011-08-10 16:18:03 -040022class Field;
Carl Shapiro1fb86202011-06-27 17:43:13 -070023class InterfaceEntry;
24class Monitor;
25class Method;
Carl Shapiro3ee755d2011-06-28 12:11:04 -070026class Object;
Jesse Wilson46cdd4b2011-07-28 17:40:48 -040027class String;
Brian Carlstrom4a96b602011-07-26 16:40:23 -070028template<class T> class ObjectArray;
Jesse Wilsonfd687c52011-08-04 19:27:35 -070029template<class T> class PrimitiveArray;
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070030typedef PrimitiveArray<uint8_t> BooleanArray;
31typedef PrimitiveArray<int8_t> ByteArray;
Jesse Wilsonfd687c52011-08-04 19:27:35 -070032typedef PrimitiveArray<uint16_t> CharArray;
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070033typedef PrimitiveArray<double> DoubleArray;
34typedef PrimitiveArray<float> FloatArray;
35typedef PrimitiveArray<int32_t> IntArray;
36typedef PrimitiveArray<int64_t> LongArray;
37typedef PrimitiveArray<int16_t> ShortArray;
Carl Shapiro1fb86202011-06-27 17:43:13 -070038
Carl Shapiro3ee755d2011-06-28 12:11:04 -070039union JValue {
40 uint8_t z;
41 int8_t b;
42 uint16_t c;
43 int16_t s;
44 int32_t i;
45 int64_t j;
46 float f;
47 double d;
48 Object* l;
49};
50
Brian Carlstrombe977852011-07-19 14:54:54 -070051static const uint32_t kAccPublic = 0x0001; // class, field, method, ic
52static const uint32_t kAccPrivate = 0x0002; // field, method, ic
53static const uint32_t kAccProtected = 0x0004; // field, method, ic
54static const uint32_t kAccStatic = 0x0008; // field, method, ic
55static const uint32_t kAccFinal = 0x0010; // class, field, method, ic
56static const uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
57static const uint32_t kAccSuper = 0x0020; // class (not used in Dalvik)
58static const uint32_t kAccVolatile = 0x0040; // field
59static const uint32_t kAccBridge = 0x0040; // method (1.5)
60static const uint32_t kAccTransient = 0x0080; // field
61static const uint32_t kAccVarargs = 0x0080; // method (1.5)
62static const uint32_t kAccNative = 0x0100; // method
63static const uint32_t kAccInterface = 0x0200; // class, ic
64static const uint32_t kAccAbstract = 0x0400; // class, method, ic
65static const uint32_t kAccStrict = 0x0800; // method
66static const uint32_t kAccSynthetic = 0x1000; // field, method, ic
67static const uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
68static const uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
Carl Shapiro3ee755d2011-06-28 12:11:04 -070069
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070070static const uint32_t kAccMiranda = 0x8000; // method
71
Brian Carlstroma331b3c2011-07-18 17:47:56 -070072static const uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
73
Brian Carlstrombe977852011-07-19 14:54:54 -070074static const uint32_t kAccConstructor = 0x00010000; // method (Dalvik only)
75static const uint32_t kAccDeclaredSynchronized = 0x00020000; // method (Dalvik only)
Carl Shapiro3ee755d2011-06-28 12:11:04 -070076
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070077/*
Brian Carlstroma331b3c2011-07-18 17:47:56 -070078 * Definitions for packing refOffsets in Class.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070079 */
80/*
81 * A magic value for refOffsets. Ignore the bits and walk the super
82 * chain when this is the value.
83 * [This is an unlikely "natural" value, since it would be 30 non-ref instance
84 * fields followed by 2 ref instance fields.]
85 */
86#define CLASS_WALK_SUPER ((unsigned int)(3))
87#define CLASS_SMALLEST_OFFSET (sizeof(struct Object))
88#define CLASS_BITS_PER_WORD (sizeof(unsigned long int) * 8)
89#define CLASS_OFFSET_ALIGNMENT 4
90#define CLASS_HIGH_BIT ((unsigned int)1 << (CLASS_BITS_PER_WORD - 1))
91/*
92 * Given an offset, return the bit number which would encode that offset.
93 * Local use only.
94 */
95#define _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) \
96 (((unsigned int)(byteOffset) - CLASS_SMALLEST_OFFSET) / \
97 CLASS_OFFSET_ALIGNMENT)
98/*
99 * Is the given offset too large to be encoded?
100 */
101#define CLASS_CAN_ENCODE_OFFSET(byteOffset) \
102 (_CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) < CLASS_BITS_PER_WORD)
103/*
104 * Return a single bit, encoding the offset.
105 * Undefined if the offset is too large, as defined above.
106 */
107#define CLASS_BIT_FROM_OFFSET(byteOffset) \
108 (CLASS_HIGH_BIT >> _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset))
109/*
110 * Return an offset, given a bit number as returned from CLZ.
111 */
112#define CLASS_OFFSET_FROM_CLZ(rshift) \
Ian Rogersb033c752011-07-20 12:22:35 -0700113 ((static_cast<int>(rshift) * CLASS_OFFSET_ALIGNMENT) + CLASS_SMALLEST_OFFSET)
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700114
115
Carl Shapiro1fb86202011-06-27 17:43:13 -0700116class Object {
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700117 public:
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700118 static bool InstanceOf(const Object* object, const Class* klass) {
119 if (object == NULL) {
120 return false;
121 }
122 return object->InstanceOf(klass);
123 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700124
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700125 Class* GetClass() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700126 DCHECK(klass_ != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700127 return klass_;
128 }
129
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700130 bool InstanceOf(const Class* klass) const;
131
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700132 size_t Size() const;
133
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700134 void MonitorEnter() {
135 monitor_->Enter();
136 }
137
138 void MonitorExit() {
139 monitor_->Exit();
140 }
141
142 void Notify() {
143 monitor_->Notify();
144 }
145
146 void NotifyAll() {
147 monitor_->NotifyAll();
148 }
149
150 void Wait() {
151 monitor_->Wait();
152 }
153
154 void Wait(int64_t timeout) {
155 monitor_->Wait(timeout);
156 }
157
158 void Wait(int64_t timeout, int32_t nanos) {
159 monitor_->Wait(timeout, nanos);
160 }
161
Carl Shapiro69759ea2011-07-21 18:13:35 -0700162 const Object* GetFieldObject(size_t field_offset) const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700163 Object* that = const_cast<Object*>(this);
164 Object* other = that->GetFieldObject(field_offset);
165 return const_cast<const Object*>(other);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700166 }
167
168 Object* GetFieldObject(size_t field_offset) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700169 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset;
170 return *reinterpret_cast<Object**>(raw_addr);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700171 }
172
173 void SetFieldObject(size_t offset, Object* new_value) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700174 byte* raw_addr = reinterpret_cast<byte*>(this) + offset;
175 *reinterpret_cast<Object**>(raw_addr) = new_value;
176 // TODO: write barrier
177 }
178
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700179 bool IsClass() const;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700180
181 Class* AsClass() {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700182 DCHECK(IsClass());
Carl Shapiro69759ea2011-07-21 18:13:35 -0700183 return down_cast<Class*>(this);
184 }
185
186 const Class* AsClass() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700187 DCHECK(IsClass());
Carl Shapiro69759ea2011-07-21 18:13:35 -0700188 return down_cast<const Class*>(this);
189 }
190
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700191 bool IsObjectArray() const;
192
193 template<class T>
194 ObjectArray<T>* AsObjectArray() {
195 DCHECK(IsObjectArray());
196 return down_cast<ObjectArray<T>*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700197 }
198
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700199 template<class T>
200 const ObjectArray<T>* AsObjectArray() const {
201 DCHECK(IsObjectArray());
202 return down_cast<const ObjectArray<T>*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700203 }
204
205 bool IsReference() const {
Elliott Hughes53b61312011-08-12 18:28:20 -0700206 UNIMPLEMENTED(FATAL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700207 return true;
208 }
209
210 bool IsWeakReference() const {
Elliott Hughes53b61312011-08-12 18:28:20 -0700211 UNIMPLEMENTED(FATAL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700212 return true;
213 }
214
215 bool IsSoftReference() const {
Elliott Hughes53b61312011-08-12 18:28:20 -0700216 UNIMPLEMENTED(FATAL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700217 return true;
218 }
219
220 bool IsFinalizerReference() const {
Elliott Hughes53b61312011-08-12 18:28:20 -0700221 UNIMPLEMENTED(FATAL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700222 return true;
223 }
224
225 bool IsPhantomReference() const {
Elliott Hughes53b61312011-08-12 18:28:20 -0700226 UNIMPLEMENTED(FATAL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700227 return true;
228 }
229
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700230 bool IsArray() const;
231
232 Array* AsArray() {
233 DCHECK(IsArray());
234 return down_cast<Array*>(this);
235 }
236
237 const Array* AsArray() const {
238 DCHECK(IsArray());
239 return down_cast<const Array*>(this);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700240 }
241
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700242 public:
Carl Shapiro1fb86202011-06-27 17:43:13 -0700243 Class* klass_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700244
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700245 Monitor* monitor_;
246
247 private:
Carl Shapirof88c9522011-08-06 15:47:38 -0700248 DISALLOW_IMPLICIT_CONSTRUCTORS(Object);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700249};
250
251class ObjectLock {
252 public:
Ian Rogersb033c752011-07-20 12:22:35 -0700253 explicit ObjectLock(Object* object) : obj_(object) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700254 CHECK(object != NULL);
255 obj_->MonitorEnter();
256 }
257
258 ~ObjectLock() {
259 obj_->MonitorExit();
260 }
261
262 void Wait(int64_t millis = 0) {
263 return obj_->Wait(millis);
264 }
265
266 void Notify() {
267 obj_->Notify();
268 }
269
270 void NotifyAll() {
271 obj_->NotifyAll();
272 }
273
274 private:
275 Object* obj_;
276 DISALLOW_COPY_AND_ASSIGN(ObjectLock);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700277};
278
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400279class AccessibleObject : public Object {
280 private:
281 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
282 uint32_t java_flag_;
283};
284
285class Field : public AccessibleObject {
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700286 public:
Brian Carlstroma0808032011-07-18 00:39:23 -0700287 Class* GetDeclaringClass() const {
288 return declaring_class_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700289 }
290
Jesse Wilson14150742011-07-29 19:04:44 -0400291 const String* GetName() const {
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700292 return name_;
293 }
294
295 bool IsStatic() const {
296 return (access_flags_ & kAccStatic) != 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700297 }
298
299 char GetType() const { // TODO: return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700300 return GetDescriptor()[0];
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700301 }
302
Brian Carlstromae3ac012011-07-27 01:30:28 -0700303 const StringPiece& GetDescriptor() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700304 DCHECK_NE(0, descriptor_.size());
Brian Carlstromae3ac012011-07-27 01:30:28 -0700305 return descriptor_;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -0700306 }
307
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700308 uint32_t GetOffset() const {
309 return offset_;
310 }
311
312 void SetOffset(size_t num_bytes) {
313 offset_ = num_bytes;
314 }
315
Jesse Wilson35baaab2011-08-10 16:18:03 -0400316 // static field access
Jesse Wilson7833bd22011-08-09 18:31:44 -0400317 bool GetBoolean();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400318 void SetBoolean(bool z);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400319 int8_t GetByte();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400320 void SetByte(int8_t b);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400321 uint16_t GetChar();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400322 void SetChar(uint16_t c);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400323 uint16_t GetShort();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400324 void SetShort(uint16_t s);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400325 int32_t GetInt();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400326 void SetInt(int32_t i);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400327 int64_t GetLong();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400328 void SetLong(int64_t j);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400329 float GetFloat();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400330 void SetFloat(float f);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400331 double GetDouble();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400332 void SetDouble(double d);
Jesse Wilson7833bd22011-08-09 18:31:44 -0400333 Object* GetObject();
Jesse Wilson7833bd22011-08-09 18:31:44 -0400334 const Object* GetObject() const;
Jesse Wilson7833bd22011-08-09 18:31:44 -0400335 void SetObject(Object* l);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -0700336
Jesse Wilson35baaab2011-08-10 16:18:03 -0400337 public: // TODO: private
338 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
339 // The class in which this field is declared.
340 Class* declaring_class_;
341 Object* generic_type_;
342 uint32_t generic_types_are_initialized_;
343 String* name_;
344 uint32_t offset_;
345 Class* type_;
346
347 // e.g. "I", "[C", "Landroid/os/Debug;"
348 StringPiece descriptor_;
349
350 uint32_t access_flags_;
351
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700352 private:
Jesse Wilson35baaab2011-08-10 16:18:03 -0400353 DISALLOW_IMPLICIT_CONSTRUCTORS(Field);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700354};
355
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400356class Method : public AccessibleObject {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700357 public:
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700358 // An function that invokes a method with an array of its arguments.
359 typedef void InvokeStub(Method* method,
360 Object* obj,
361 Thread* thread,
362 byte* args,
363 JValue* result);
364
Brian Carlstromae3ac012011-07-27 01:30:28 -0700365 // Returns the method name, e.g. "<init>" or "eatLunch"
Jesse Wilsonf7e85a52011-08-01 18:45:58 -0700366 const String* GetName() const {
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700367 return name_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700368 }
369
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700370 const String* GetDescriptor() const {
371 return descriptor_;
372 }
373
Brian Carlstroma0808032011-07-18 00:39:23 -0700374 Class* GetDeclaringClass() const {
375 return declaring_class_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700376 }
377
Ian Rogersb033c752011-07-20 12:22:35 -0700378 static MemberOffset ClassOffset() {
379 return MemberOffset(OFFSETOF_MEMBER(Method, klass_));
380 }
381
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700382 // Returns true if the method is declared public.
383 bool IsPublic() const {
384 return (access_flags_ & kAccPublic) != 0;
385 }
386
387 // Returns true if the method is declared private.
388 bool IsPrivate() const {
389 return (access_flags_ & kAccPrivate) != 0;
390 }
391
392 // Returns true if the method is declared static.
393 bool IsStatic() const {
394 return (access_flags_ & kAccStatic) != 0;
395 }
396
397 // Returns true if the method is declared synchronized.
398 bool IsSynchronized() const {
399 uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
400 return (access_flags_ & synchonized) != 0;
401 }
402
403 // Returns true if the method is declared final.
404 bool IsFinal() const {
405 return (access_flags_ & kAccFinal) != 0;
406 }
407
408 // Returns true if the method is declared native.
409 bool IsNative() const {
410 return (access_flags_ & kAccNative) != 0;
411 }
412
413 // Returns true if the method is declared abstract.
414 bool IsAbstract() const {
415 return (access_flags_ & kAccAbstract) != 0;
416 }
417
418 bool IsSynthetic() const {
419 return (access_flags_ & kAccSynthetic) != 0;
420 }
421
422 // Number of argument registers required by the prototype.
423 uint32_t NumArgRegisters();
424
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700425 // Number of argument bytes required for densely packing the
426 // arguments into an array of arguments.
427 size_t NumArgArrayBytes();
428
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700429 public: // TODO: private
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400430 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Jesse Wilson35baaab2011-08-10 16:18:03 -0400431 // the class we are a part of
432 Class* declaring_class_;
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400433 ObjectArray<Class>* java_exception_types_;
434 Object* java_formal_type_parameters_;
435 Object* java_generic_exception_types_;
436 Object* java_generic_parameter_types_;
437 Object* java_generic_return_type_;
438 Class* java_return_type_;
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700439 String* name_;
Jesse Wilson46cdd4b2011-07-28 17:40:48 -0400440 ObjectArray<Class>* java_parameter_types_;
441 uint32_t java_generic_types_are_initialized_;
442 uint32_t java_slot_;
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700443
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700444 const StringPiece& GetShorty() const {
445 return shorty_;
446 }
447
Ian Rogersb033c752011-07-20 12:22:35 -0700448 bool IsReturnAReference() const {
449 return (shorty_[0] == 'L') || (shorty_[0] == '[');
450 }
451
452 bool IsReturnAFloatOrDouble() const {
453 return (shorty_[0] == 'F') || (shorty_[0] == 'D');
454 }
455
456 bool IsReturnAFloat() const {
457 return shorty_[0] == 'F';
458 }
459
460 bool IsReturnADouble() const {
461 return shorty_[0] == 'D';
462 }
463
464 bool IsReturnALong() const {
465 return shorty_[0] == 'J';
466 }
467
Ian Rogers45a76cb2011-07-21 22:00:15 -0700468 bool IsReturnVoid() const {
469 return shorty_[0] == 'V';
470 }
471
Shih-wei Liao5381cf92011-07-27 00:28:04 -0700472 // "Args" may refer to any of the 3 levels of "Args."
473 // To avoid confusion, our code will denote which "Args" clearly:
474 // 1. UserArgs: Args that a user see.
475 // 2. Args: Logical JVM-level Args. E.g., the first in Args will be the
476 // receiver.
477 // 3. CConvArgs: Calling Convention Args, which is physical-level Args.
478 // E.g., the first in Args is Method* for both static and non-static
479 // methods. And CConvArgs doesn't deal with the receiver because
480 // receiver is hardwired in an implicit register, so CConvArgs doesn't
481 // need to deal with it.
482 //
483 // The number of Args that should be supplied to this method
Ian Rogersb033c752011-07-20 12:22:35 -0700484 size_t NumArgs() const {
Shih-wei Liao5381cf92011-07-27 00:28:04 -0700485 // "1 +" because the first in Args is the receiver.
486 // "- 1" because we don't count the return type.
Ian Rogersb033c752011-07-20 12:22:35 -0700487 return (IsStatic() ? 0 : 1) + shorty_.length() - 1;
488 }
489
490 // The number of reference arguments to this method including implicit this
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700491 // pointer.
Ian Rogersb033c752011-07-20 12:22:35 -0700492 size_t NumReferenceArgs() const;
493
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700494 // The number of long or double arguments.
Ian Rogersb033c752011-07-20 12:22:35 -0700495 size_t NumLongOrDoubleArgs() const;
496
497 // The number of reference arguments to this method before the given
498 // parameter index
499 size_t NumReferenceArgsBefore(unsigned int param) const;
500
501 // Is the given method parameter a reference?
502 bool IsParamAReference(unsigned int param) const;
503
504 // Is the given method parameter a long or double?
505 bool IsParamALongOrDouble(unsigned int param) const;
506
Ian Rogersdf20fe02011-07-20 20:34:16 -0700507 // Size in bytes of the given parameter
508 size_t ParamSize(unsigned int param) const;
509
510 // Size in bytes of the return value
511 size_t ReturnSize() const;
Ian Rogersb033c752011-07-20 12:22:35 -0700512
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700513 const void* GetCode() const {
514 return code_;
515 }
516
Ian Rogersb033c752011-07-20 12:22:35 -0700517 void SetCode(const void* code) {
518 code_ = code;
519 }
520
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700521 static size_t GetCodeOffset() {
522 return OFFSETOF_MEMBER(Method, code_);
Ian Rogersb033c752011-07-20 12:22:35 -0700523 }
524
525 void RegisterNative(const void* native_method) {
526 native_method_ = native_method;
527 }
528
529 static MemberOffset NativeMethodOffset() {
530 return MemberOffset(OFFSETOF_MEMBER(Method, native_method_));
531 }
532
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700533 InvokeStub* GetInvokeStub() const {
534 return invoke_stub_;
535 }
536
537 void SetInvokeStub(const InvokeStub* invoke_stub) {
538 invoke_stub_ = invoke_stub;
539 }
540
541 static size_t GetInvokeStubOffset() {
542 return OFFSETOF_MEMBER(Method, invoke_stub_);
543 }
544
Carl Shapiro8860c0e2011-08-04 17:36:16 -0700545 bool HasSameNameAndDescriptor(const Method* that) const;
546
Ian Rogersb033c752011-07-20 12:22:35 -0700547 public: // TODO: private/const
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700548 // access flags; low 16 bits are defined by spec (could be uint16_t?)
549 uint32_t access_flags_;
550
551 // For concrete virtual methods, this is the offset of the method
552 // in "vtable".
553 //
554 // For abstract methods in an interface class, this is the offset
555 // of the method in "iftable[n]->methodIndexArray".
556 uint16_t method_index_;
557
558 // Method bounds; not needed for an abstract method.
559 //
560 // For a native method, we compute the size of the argument list, and
561 // set "insSize" and "registerSize" equal to it.
562 uint16_t num_registers_; // ins + locals
563 uint16_t num_outs_;
564 uint16_t num_ins_;
565
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700566 // The method descriptor. This represents the parameters a method
567 // takes and value it returns. This string is a list of the type
568 // descriptors for the parameters enclosed in parenthesis followed
569 // by the return type descriptor. For example, for the method
570 //
571 // Object mymethod(int i, double d, Thread t)
572 //
573 // the method descriptor would be
574 //
575 // (IDLjava/lang/Thread;)Ljava/lang/Object;
576 String* descriptor_;
577
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700578 // Method prototype descriptor string (return and argument types).
579 uint32_t proto_idx_;
580
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700581 // Offset to the CodeItem.
582 uint32_t code_off_;
583
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700584 // The short-form method descriptor string.
585 StringPiece shorty_;
586
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700587 private:
Ian Rogersb033c752011-07-20 12:22:35 -0700588 // Compiled code associated with this method
589 const void* code_;
590
591 // Any native method registered with this method
592 const void* native_method_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700593
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700594 // Native invocation stub entry point.
595 const InvokeStub* invoke_stub_;
596
Carl Shapirof88c9522011-08-06 15:47:38 -0700597 DISALLOW_IMPLICIT_CONSTRUCTORS(Method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700598};
599
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700600class Array : public Object {
601 public:
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700602 static size_t Size(size_t component_count,
603 size_t component_size) {
604 return sizeof(Array) + component_count * component_size;
605 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700606 static Array* Alloc(Class* array_class,
607 size_t component_count,
608 size_t component_size) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700609 size_t size = Size(component_count, component_size);
610 Array* array = Heap::AllocObject(array_class, size)->AsArray();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700611 if (array != NULL) {
612 array->SetLength(component_count);
613 }
614 return array;
615 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700616
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700617 size_t Size() const;
618
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700619 int32_t GetLength() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700620 return length_;
621 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700622
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700623 void SetLength(uint32_t length) {
624 length_ = length;
625 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700626
627 private:
628 // The number of array elements.
629 uint32_t length_;
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400630 // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary
631 int32_t padding_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700632
Carl Shapirof88c9522011-08-06 15:47:38 -0700633 DISALLOW_IMPLICIT_CONSTRUCTORS(Array);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700634};
635
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700636template<class T>
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700637class ObjectArray : public Array {
638 public:
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700639 static ObjectArray<T>* Alloc(Class* object_array_class,
640 size_t length) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700641 return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700642 }
643
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700644 T* const * GetData() const {
645 return reinterpret_cast<T* const *>(&elements_);
646 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400647
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700648 T** GetData() {
649 return reinterpret_cast<T**>(&elements_);
650 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400651
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700652 T* Get(int32_t i) const {
Brian Carlstrom0b138b22011-07-27 15:19:17 -0700653 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700654 return GetData()[i];
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700655 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700656
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700657 void Set(int32_t i, T* object) {
Brian Carlstrom0b138b22011-07-27 15:19:17 -0700658 CHECK_LT(i, GetLength());
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400659 GetData()[i] = object; // TODO: write barrier
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700660 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700661
662 static void Copy(ObjectArray<T>* src, int src_pos,
663 ObjectArray<T>* dst, int dst_pos,
664 size_t length) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700665 for (size_t i = 0; i < length; i++) {
666 dst->Set(dst_pos + i, src->Get(src_pos + i));
667 }
668 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700669
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700670 ObjectArray<T>* CopyOf(int32_t new_length) {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700671 ObjectArray<T>* new_array = Alloc(klass_, new_length);
672 Copy(this, 0, new_array, 0, std::min(GetLength(), new_length));
673 return new_array;
674 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700675
676 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700677 // Location of first element.
678 T* elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -0700679
680 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700681};
682
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700683// ClassLoader objects.
684class ClassLoader : public Object {
685 public:
686 std::vector<const DexFile*>& GetClassPath() {
687 return class_path_;
688 }
689 void SetClassPath(std::vector<const DexFile*>& class_path) {
690 DCHECK_EQ(0U, class_path_.size());
691 class_path_ = class_path;
692 }
693
694 private:
695 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
696 Object* packages_;
697 ClassLoader* parent_;
698
699 // TODO remove once we can create a real PathClassLoader
700 std::vector<const DexFile*> class_path_;
701
Carl Shapirof88c9522011-08-06 15:47:38 -0700702 DISALLOW_IMPLICIT_CONSTRUCTORS(ClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700703};
704
705class BaseDexClassLoader : public ClassLoader {
706 private:
707 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
708 String* original_path_;
709 Object* path_list_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700710 DISALLOW_IMPLICIT_CONSTRUCTORS(BaseDexClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700711};
712
713class PathClassLoader : public BaseDexClassLoader {
714 private:
Carl Shapirof88c9522011-08-06 15:47:38 -0700715 DISALLOW_IMPLICIT_CONSTRUCTORS(PathClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700716};
717
Carl Shapiro1fb86202011-06-27 17:43:13 -0700718// Class objects.
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700719class Class : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -0700720 public:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700721
722 // Class Status
723 //
724 // kStatusNotReady: If a Class cannot be found in the class table by
725 // FindClass, it allocates an new one with AllocClass in the
726 // kStatusNotReady and calls LoadClass. Note if it does find a
727 // class, it may not be kStatusResolved and it will try to push it
728 // forward toward kStatusResolved.
729 //
730 // kStatusIdx: LoadClass populates with Class with information from
731 // the DexFile, moving the status to kStatusIdx, indicating that the
732 // Class values in super_class_ and interfaces_ have not been
733 // populated based on super_class_idx_ and interfaces_idx_. The new
734 // Class can then be inserted into the classes table.
735 //
736 // kStatusLoaded: After taking a lock on Class, the ClassLinker will
737 // attempt to move a kStatusIdx class forward to kStatusLoaded by
738 // using ResolveClass to initialize the super_class_ and interfaces_.
739 //
740 // kStatusResolved: Still holding the lock on Class, the ClassLinker
741 // will use LinkClass to link all members, creating Field and Method
742 // objects, setting up the vtable, etc. On success, the class is
743 // marked kStatusResolved.
744
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700745 enum Status {
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700746 kStatusError = -1,
747 kStatusNotReady = 0,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700748 kStatusIdx = 1, // loaded, DEX idx in super_class_idx_ and interfaces_idx_
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700749 kStatusLoaded = 2, // DEX idx values resolved
750 kStatusResolved = 3, // part of linking
751 kStatusVerifying = 4, // in the process of being verified
752 kStatusVerified = 5, // logically part of linking; done pre-init
753 kStatusInitializing = 6, // class init in progress
754 kStatusInitialized = 7, // ready to go
Carl Shapiro1fb86202011-06-27 17:43:13 -0700755 };
756
757 enum PrimitiveType {
758 kPrimNot = -1
759 };
760
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700761 Object* NewInstance() {
762 return Heap::AllocObject(this, this->object_size_);
763 }
764
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700765 Class* GetSuperClass() const {
766 return super_class_;
767 }
768
769 uint32_t GetSuperClassIdx() const {
770 return super_class_idx_;
771 }
772
773 bool HasSuperClass() const {
774 return super_class_ != NULL;
775 }
776
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700777 bool IsAssignableFrom(const Class* klass) const {
778 DCHECK(klass != NULL);
779 if (this == klass) {
780 return true;
781 }
782 if (IsInterface()) {
783 return klass->Implements(this);
784 }
785 if (klass->IsArray()) {
786 return IsAssignableFromArray(klass);
787 }
788 return klass->IsSubClass(this);
789 }
790
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700791 ClassLoader* GetClassLoader() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700792 return class_loader_;
793 }
794
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700795 DexCache* GetDexCache() const {
796 return dex_cache_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700797 }
798
799 Class* GetComponentType() const {
800 return component_type_;
801 }
802
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700803 static size_t GetTypeSize(const StringPiece& descriptor) {
804 switch (descriptor[0]) {
805 case 'B': return 1; // byte
806 case 'C': return 2; // char
807 case 'D': return 8; // double
808 case 'F': return 4; // float
809 case 'I': return 4; // int
810 case 'J': return 8; // long
811 case 'S': return 2; // short
812 case 'Z': return 1; // boolean
813 case 'L': return sizeof(Object*);
814 case '[': return sizeof(Array*);
815 default:
816 LOG(ERROR) << "Unknown type " << descriptor;
817 return 0;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700818 }
819 }
820
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700821 size_t GetComponentSize() const {
822 return GetTypeSize(component_type_->descriptor_);
823 }
824
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700825 const StringPiece& GetDescriptor() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700826 DCHECK_NE(0, descriptor_.size());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700827 return descriptor_;
828 }
829
830 Status GetStatus() const {
831 return status_;
832 }
833
834 void SetStatus(Status new_status) {
835 // TODO: validate transition
836 status_ = new_status;
837 }
838
Carl Shapiro69759ea2011-07-21 18:13:35 -0700839 // Returns true if the class has failed to link.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700840 bool IsErroneous() const {
841 return GetStatus() == kStatusError;
842 }
843
Carl Shapiro69759ea2011-07-21 18:13:35 -0700844 // Returns true if the class has been verified.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700845 bool IsVerified() const {
846 return GetStatus() >= kStatusVerified;
847 }
848
Carl Shapiro69759ea2011-07-21 18:13:35 -0700849 // Returns true if the class has been linked.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700850 bool IsLinked() const {
851 return GetStatus() >= kStatusResolved;
852 }
853
Carl Shapiro69759ea2011-07-21 18:13:35 -0700854 bool IsLoaded() const {
855 return GetStatus() >= kStatusLoaded;
856 }
857
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700858 // Returns true if this class is in the same packages as that class.
859 bool IsInSamePackage(const Class* that) const;
860
Ian Rogersb033c752011-07-20 12:22:35 -0700861 static bool IsInSamePackage(const StringPiece& descriptor1,
862 const StringPiece& descriptor2);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700863
864 // Returns true if this class represents an array class.
865 bool IsArray() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700866 return GetDescriptor()[0] == '['; // TODO: avoid parsing the descriptor
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700867 }
868
869 // Returns true if the class is an interface.
870 bool IsInterface() const {
871 return (access_flags_ & kAccInterface) != 0;
872 }
873
874 // Returns true if the class is declared public.
875 bool IsPublic() const {
876 return (access_flags_ & kAccPublic) != 0;
877 }
878
879 // Returns true if the class is declared final.
880 bool IsFinal() const {
881 return (access_flags_ & kAccFinal) != 0;
882 }
883
884 // Returns true if the class is abstract.
885 bool IsAbstract() const {
886 return (access_flags_ & kAccAbstract) != 0;
887 }
888
889 // Returns true if the class is an annotation.
890 bool IsAnnotation() const {
891 return (access_flags_ & kAccAnnotation) != 0;
892 }
893
894 // Returns true if the class is a primitive type.
895 bool IsPrimitive() const {
896 return primitive_type_ != kPrimNot;
897 }
898
Brian Carlstromae3ac012011-07-27 01:30:28 -0700899 // Returns true if the class is synthetic.
900 bool IsSynthetic() const {
901 return (access_flags_ & kAccSynthetic) != 0;
902 }
903
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700904 // Returns true if this class can access that class.
905 bool CanAccess(const Class* that) const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700906 return that->IsPublic() || this->IsInSamePackage(that);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700907 }
908
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700909 // Returns the number of static, private, and constructor methods.
910 size_t NumDirectMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700911 return (direct_methods_ != NULL) ? direct_methods_->GetLength() : 0;
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700912 }
913
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700914 Method* GetDirectMethod(int32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700915 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700916 return direct_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700917 }
918
919 void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700920 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700921 direct_methods_->Set(i, f);
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700922 }
923
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700924 Method* FindDeclaredDirectMethod(const StringPiece& name,
925 const StringPiece& descriptor);
926
927 Method* FindDirectMethod(const StringPiece& name,
928 const StringPiece& descriptor);
929
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700930 // Returns the number of non-inherited virtual methods.
931 size_t NumVirtualMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700932 return (virtual_methods_ != NULL) ? virtual_methods_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700933 }
934
935 Method* GetVirtualMethod(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700936 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700937 return virtual_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700938 }
939
940 void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700941 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700942 virtual_methods_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700943 }
944
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700945 Method* FindDeclaredVirtualMethod(const StringPiece& name,
946 const StringPiece& descriptor);
947
948 Method* FindVirtualMethod(const StringPiece& name,
949 const StringPiece& descriptor);
950
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700951 size_t NumInstanceFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700952 return (ifields_ != NULL) ? ifields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700953 }
954
Carl Shapiro69759ea2011-07-21 18:13:35 -0700955 // Returns the number of instance fields containing reference types.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700956 size_t NumReferenceInstanceFields() const {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700957 return num_reference_instance_fields_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700958 }
959
Jesse Wilson35baaab2011-08-10 16:18:03 -0400960 Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700961 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700962 return ifields_->Get(i);
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700963 }
964
Jesse Wilson35baaab2011-08-10 16:18:03 -0400965 void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700966 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700967 ifields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700968 }
969
970 size_t NumStaticFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700971 return (sfields_ != NULL) ? sfields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700972 }
973
Jesse Wilson35baaab2011-08-10 16:18:03 -0400974 Field* GetStaticField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700975 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700976 return sfields_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700977 }
978
Jesse Wilson35baaab2011-08-10 16:18:03 -0400979 void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700980 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700981 sfields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700982 }
983
984 uint32_t GetReferenceOffsets() const {
985 return reference_offsets_;
986 }
987
988 void SetReferenceOffsets(uint32_t new_reference_offsets) {
989 reference_offsets_ = new_reference_offsets;
990 }
991
Carl Shapiro69759ea2011-07-21 18:13:35 -0700992 size_t NumInterfaces() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700993 return (interfaces_ != NULL) ? interfaces_->GetLength() : 0;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700994 }
995
996 Class* GetInterface(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700997 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700998 return interfaces_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700999 }
1000
1001 void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001002 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001003 interfaces_->Set(i, f);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001004 }
1005
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001006 void SetVerifyErrorClass(Class* klass) {
1007 // Note SetFieldObject is used rather than verify_error_class_ directly for the barrier
1008 size_t field_offset = OFFSETOF_MEMBER(Class, verify_error_class_);
1009 klass->SetFieldObject(field_offset, klass);
1010 }
1011
1012 private:
1013 bool Implements(const Class* klass) const;
1014 bool IsArrayAssignableFromArray(const Class* klass) const;
1015 bool IsAssignableFromArray(const Class* klass) const;
1016 bool IsSubClass(const Class* klass) const;
1017
Ian Rogersb033c752011-07-20 12:22:35 -07001018 public: // TODO: private
Carl Shapiro1fb86202011-06-27 17:43:13 -07001019 // leave space for instance data; we could access fields directly if
1020 // we freeze the definition of java/lang/Class
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001021#define CLASS_FIELD_SLOTS 1
1022 // Class.#0 name
Carl Shapiro1fb86202011-06-27 17:43:13 -07001023 uint32_t instance_data_[CLASS_FIELD_SLOTS];
1024#undef CLASS_FIELD_SLOTS
1025
1026 // UTF-8 descriptor for the class from constant pool
1027 // ("Ljava/lang/Class;"), or on heap if generated ("[C")
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001028 StringPiece descriptor_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001029
1030 // Proxy classes have their descriptor allocated on the native heap.
1031 // When this field is non-NULL it must be explicitly freed.
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001032 std::string* descriptor_alloc_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001033
1034 // access flags; low 16 bits are defined by VM spec
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001035 uint32_t access_flags_; // TODO: make an instance field?
Carl Shapiro1fb86202011-06-27 17:43:13 -07001036
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001037 // DexCache of resolved constant pool entries
Carl Shapiro1fb86202011-06-27 17:43:13 -07001038 // (will be NULL for VM-generated, e.g. arrays and primitive classes)
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001039 DexCache* dex_cache_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001040
1041 // state of class initialization
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001042 Status status_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001043
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001044 // If class verify fails, we must return same error on subsequent tries.
1045 // Update with SetVerifyErrorClass to ensure a write barrier is used.
1046 const Class* verify_error_class_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001047
1048 // threadId, used to check for recursive <clinit> invocation
1049 uint32_t clinit_thread_id_;
1050
1051 // Total object size; used when allocating storage on gc heap. (For
1052 // interfaces and abstract classes this will be zero.)
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001053 size_t object_size_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001054
1055 // For array classes, the class object for base element, for
1056 // instanceof/checkcast (for String[][][], this will be String).
1057 // Otherwise, NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001058 Class* component_type_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001059
1060 // For array classes, the number of array dimensions, e.g. int[][]
1061 // is 2. Otherwise 0.
1062 int32_t array_rank_;
1063
1064 // primitive type index, or PRIM_NOT (-1); set for generated prim classes
1065 PrimitiveType primitive_type_;
1066
1067 // The superclass, or NULL if this is java.lang.Object or a
1068 // primitive type.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001069 Class* super_class_; // TODO: make an instance field
1070 uint32_t super_class_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001071
1072 // defining class loader, or NULL for the "bootstrap" system loader
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001073 ClassLoader* class_loader_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001074
1075 // initiating class loader list
1076 // NOTE: for classes with low serialNumber, these are unused, and the
1077 // values are kept in a table in gDvm.
Ian Rogersb033c752011-07-20 12:22:35 -07001078 // InitiatingLoaderList initiating_loader_list_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001079
1080 // array of interfaces this class implements directly
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001081 ObjectArray<Class>* interfaces_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001082 uint32_t* interfaces_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001083
1084 // static, private, and <init> methods
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001085 ObjectArray<Method>* direct_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001086
1087 // virtual methods defined in this class; invoked through vtable
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001088 ObjectArray<Method>* virtual_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001089
1090 // Virtual method table (vtable), for use by "invoke-virtual". The
1091 // vtable from the superclass is copied in, and virtual methods from
1092 // our class either replace those from the super or are appended.
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001093 ObjectArray<Method>* vtable_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001094
1095 // Interface table (iftable), one entry per interface supported by
1096 // this class. That means one entry for each interface we support
1097 // directly, indirectly via superclass, or indirectly via
1098 // superinterface. This will be null if neither we nor our
1099 // superclass implement any interfaces.
1100 //
1101 // Why we need this: given "class Foo implements Face", declare
1102 // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah"
1103 // is part of the Face interface. We can't easily use a single
1104 // vtable.
1105 //
1106 // For every interface a concrete class implements, we create a list
1107 // of virtualMethod indices for the methods in the interface.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001108 size_t iftable_count_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001109 InterfaceEntry* iftable_;
1110
1111 // The interface vtable indices for iftable get stored here. By
1112 // placing them all in a single pool for each class that implements
1113 // interfaces, we decrease the number of allocations.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001114 size_t ifvi_pool_count_;
1115 uint32_t* ifvi_pool_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001116
1117 // instance fields
1118 //
1119 // These describe the layout of the contents of a
1120 // DataObject-compatible Object. Note that only the fields directly
1121 // declared by this class are listed in ifields; fields declared by
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001122 // a superclass are listed in the superclass's Class.ifields.
Carl Shapiro1fb86202011-06-27 17:43:13 -07001123 //
1124 // All instance fields that refer to objects are guaranteed to be at
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001125 // the beginning of the field list. num_reference_instance_fields_
1126 // specifies the number of reference fields.
Jesse Wilson35baaab2011-08-10 16:18:03 -04001127 ObjectArray<Field>* ifields_;
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001128
1129 // number of fields that are object refs
Carl Shapiro69759ea2011-07-21 18:13:35 -07001130 size_t num_reference_instance_fields_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001131
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001132 // Bitmap of offsets of ifields.
1133 uint32_t reference_offsets_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001134
1135 // source file name, if known. Otherwise, NULL.
1136 const char* source_file_;
1137
Jesse Wilson7833bd22011-08-09 18:31:44 -04001138 // Static fields
Jesse Wilson35baaab2011-08-10 16:18:03 -04001139 ObjectArray<Field>* sfields_;
Jesse Wilson7833bd22011-08-09 18:31:44 -04001140
1141 // static field storage
1142 //
1143 // Each static field is stored in one of three arrays:
1144 // o references are stored in static_references_
1145 // o doubles and longs are stored in static_64bit_primitives_
1146 // o everything else is in static_32bit_primitives_
1147 // Static fields select their array using their type and their index using the
1148 // Field->slot_ member. Storing static fields in arrays avoids the need for a
1149 // special case in the GC.
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001150 ObjectArray<Object>* static_references_;
1151 IntArray* static_32bit_primitives_;
1152 LongArray* static_64bit_primitives_;
1153
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001154 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001155 DISALLOW_IMPLICIT_CONSTRUCTORS(Class);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001156};
Elliott Hughes1f359b02011-07-17 14:27:17 -07001157std::ostream& operator<<(std::ostream& os, const Class::Status& rhs);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001158
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001159inline bool Object::InstanceOf(const Class* klass) const {
Jesse Wilson14150742011-07-29 19:04:44 -04001160 DCHECK(klass != NULL);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001161 DCHECK(klass_ != NULL);
1162 return klass->IsAssignableFrom(klass_);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001163}
1164
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001165inline bool Object::IsClass() const {
1166 return klass_ == klass_->klass_;
1167}
1168
1169inline bool Object::IsObjectArray() const {
1170 return IsArray() && !klass_->component_type_->IsPrimitive();
1171}
1172
1173inline bool Object::IsArray() const {
1174 return klass_->IsArray();
1175}
1176
1177inline size_t Object::Size() const {
1178 if (IsArray()) {
1179 return AsArray()->Size();
1180 }
1181 return klass_->object_size_;
1182}
1183
1184inline size_t Array::Size() const {
1185 return Size(GetLength(), klass_->GetComponentSize());
1186}
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001187
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001188class DataObject : public Object {
1189 public:
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001190 uint32_t fields_[0];
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001191 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001192 DISALLOW_IMPLICIT_CONSTRUCTORS(DataObject);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001193};
1194
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001195template<class T>
1196class PrimitiveArray : public Array {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001197 public:
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001198 static PrimitiveArray<T>* Alloc(size_t length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001199
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001200 const T* GetData() const {
1201 return reinterpret_cast<const T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001202 }
1203
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001204 T* GetData() {
1205 return reinterpret_cast<T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001206 }
1207
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001208 T Get(int32_t i) const {
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001209 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001210 return GetData()[i];
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001211 }
1212
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001213 void Set(int32_t i, T value) {
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001214 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001215 GetData()[i] = value;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001216 }
1217
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001218 static void SetArrayClass(Class* array_class) {
1219 CHECK(array_class != NULL);
1220 array_class_ = array_class;
1221 }
1222
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001223 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001224 // Location of first element.
1225 T elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07001226
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001227 static Class* array_class_;
1228
Carl Shapirof88c9522011-08-06 15:47:38 -07001229 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001230};
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001231
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001232class String : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001233 public:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001234 const CharArray* GetCharArray() const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001235 DCHECK(array_ != NULL);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001236 return array_;
1237 }
1238
Carl Shapirof88c9522011-08-06 15:47:38 -07001239 uint32_t GetHashCode() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001240 return hash_code_;
1241 }
1242
Carl Shapirof88c9522011-08-06 15:47:38 -07001243 uint32_t GetOffset() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001244 return offset_;
1245 }
1246
Carl Shapirof88c9522011-08-06 15:47:38 -07001247 uint32_t GetLength() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001248 return count_;
1249 }
1250
Carl Shapirof88c9522011-08-06 15:47:38 -07001251 uint16_t CharAt(uint32_t index) const {
1252 DCHECK_LE(index, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001253 return GetCharArray()->Get(index + GetOffset());
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001254 }
1255
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001256 static String* AllocFromUtf16(int32_t utf16_length,
1257 uint16_t* utf16_data_in,
1258 int32_t hash_code) {
Carl Shapirof88c9522011-08-06 15:47:38 -07001259 String* string = Alloc(GetJavaLangString(),
Carl Shapirof88c9522011-08-06 15:47:38 -07001260 utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001261 // TODO use 16-bit wide memset variant
1262 for (int i = 0; i < utf16_length; i++ ) {
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001263 string->array_->Set(i, utf16_data_in[i]);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001264 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001265 string->ComputeHashCode();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001266 return string;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001267 }
1268
1269 static String* AllocFromModifiedUtf8(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001270 int32_t utf16_length,
1271 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001272 String* string = Alloc(java_lang_String, utf16_length);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001273 uint16_t* utf16_data_out = string->array_->GetData();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001274 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001275 string->ComputeHashCode();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001276 return string;
1277 }
1278
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001279 // Creates a String of the given ASCII characters. It is an error to call this
1280 // using non-ASCII characters as this function assumes one char per byte.
1281 static String* AllocFromAscii(const char* ascii_data_in) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001282 return AllocFromModifiedUtf8(GetJavaLangString(),
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001283 strlen(ascii_data_in),
1284 ascii_data_in);
1285 }
1286
Jesse Wilson8989d992011-08-02 13:39:42 -07001287 static String* AllocFromModifiedUtf8(int32_t utf16_length,
1288 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001289 return AllocFromModifiedUtf8(GetJavaLangString(),
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001290 utf16_length, utf8_data_in);
Jesse Wilson8989d992011-08-02 13:39:42 -07001291 }
1292
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001293 static void InitClasses(Class* java_lang_String);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001294
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001295 static String* Alloc(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001296 int32_t utf16_length) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001297 String* string = down_cast<String*>(java_lang_String->NewInstance());
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001298 CharArray* array = CharArray::Alloc(utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001299 string->array_ = array;
1300 string->count_ = utf16_length;
1301 return string;
1302 }
1303
1304 // Convert Modified UTF-8 to UTF-16
1305 // http://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8
1306 static void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_data_out, const char* utf8_data_in) {
1307 while (*utf8_data_in != '\0') {
1308 *utf16_data_out++ = GetUtf16FromUtf8(&utf8_data_in);
1309 }
1310 }
1311
1312 // Retrieve the next UTF-16 character from a UTF-8 string.
1313 //
1314 // Advances "*pUtf8Ptr" to the start of the next character.
1315 //
1316 // WARNING: If a string is corrupted by dropping a '\0' in the middle
1317 // of a 3-byte sequence, you can end up overrunning the buffer with
1318 // reads (and possibly with the writes if the length was computed and
1319 // cached before the damage). For performance reasons, this function
1320 // assumes that the string being parsed is known to be valid (e.g., by
1321 // already being verified). Most strings we process here are coming
1322 // out of dex files or other internal translations, so the only real
1323 // risk comes from the JNI NewStringUTF call.
1324 static uint16_t GetUtf16FromUtf8(const char** utf8_data_in) {
1325 uint8_t one = *(*utf8_data_in)++;
1326 if ((one & 0x80) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001327 // one-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001328 return one;
1329 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001330 // two- or three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001331 uint8_t two = *(*utf8_data_in)++;
1332 if ((one & 0x20) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001333 // two-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001334 return ((one & 0x1f) << 6) |
1335 (two & 0x3f);
1336 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001337 // three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001338 uint8_t three = *(*utf8_data_in)++;
1339 return ((one & 0x0f) << 12) |
1340 ((two & 0x3f) << 6) |
1341 (three & 0x3f);
1342 }
1343
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001344 // Like "strlen", but for strings encoded with "modified" UTF-8.
1345 //
1346 // The value returned is the number of characters, which may or may not
1347 // be the same as the number of bytes.
1348 //
1349 // (If this needs optimizing, try: mask against 0xa0, shift right 5,
1350 // get increment {1-3} from table of 8 values.)
1351 static size_t ModifiedUtf8Len(const char* utf8) {
1352 size_t len = 0;
1353 int ic;
1354 while ((ic = *utf8++) != '\0') {
1355 len++;
1356 if ((ic & 0x80) == 0) {
1357 // one-byte encoding
1358 continue;
1359 }
1360 // two- or three-byte encoding
1361 utf8++;
1362 if ((ic & 0x20) == 0) {
1363 // two-byte encoding
1364 continue;
1365 }
1366 // three-byte encoding
1367 utf8++;
1368 }
1369 return len;
1370 }
1371
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001372 // The java/lang/String.computeHashCode() algorithm
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001373 static int32_t ComputeUtf16Hash(const uint16_t* string_data, size_t string_length) {
1374 int32_t hash = 0;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001375 while (string_length--) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001376 hash = hash * 31 + *string_data++;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001377 }
1378 return hash;
1379 }
1380
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001381 void ComputeHashCode() {
1382 hash_code_ = ComputeUtf16Hash(array_->GetData(), count_);
1383 }
1384
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001385 bool Equals(const char* modified_utf8) const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001386 for (uint32_t i = 0; i < GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001387 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1388 if (ch == '\0' || ch != CharAt(i)) {
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001389 return false;
1390 }
1391 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001392 return *modified_utf8 == '\0';
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001393 }
1394
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001395 bool Equals(const StringPiece& modified_utf8) const {
1396 // TODO: do not assume C-string representation.
1397 return Equals(modified_utf8.data());
1398 }
1399
1400 bool Equals(const String* that) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001401 // TODO short circuit on hash_code_
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001402 if (this->GetLength() != that->GetLength()) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001403 return false;
1404 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001405 for (uint32_t i = 0; i < that->GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001406 if (this->CharAt(i) != that->CharAt(i)) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001407 return false;
1408 }
1409 }
1410 return true;
1411 }
1412
Carl Shapirof88c9522011-08-06 15:47:38 -07001413 bool Equals(const uint16_t* that_chars, uint32_t that_offset, uint32_t that_length) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001414 if (this->GetLength() != that_length) {
1415 return false;
1416 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001417 for (uint32_t i = 0; i < that_length; ++i) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001418 if (this->CharAt(i) != that_chars[that_offset + i]) {
1419 return false;
1420 }
1421 }
1422 return true;
1423 }
1424
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001425 private:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001426 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
1427 CharArray* array_;
1428
Carl Shapirof88c9522011-08-06 15:47:38 -07001429 uint32_t hash_code_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001430
Carl Shapirof88c9522011-08-06 15:47:38 -07001431 uint32_t offset_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001432
Carl Shapirof88c9522011-08-06 15:47:38 -07001433 uint32_t count_;
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001434
1435 static Class* GetJavaLangString() {
1436 DCHECK(java_lang_String_ != NULL);
1437 return java_lang_String_;
1438 }
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001439
1440 static Class* java_lang_String_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001441
1442 DISALLOW_IMPLICIT_CONSTRUCTORS(String);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001443};
1444
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001445class InterfaceEntry {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001446 public:
Carl Shapirof88c9522011-08-06 15:47:38 -07001447 InterfaceEntry() : klass_(NULL), method_index_array_(NULL) {
1448 }
1449
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001450 Class* GetClass() const {
1451 return klass_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001452 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001453
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001454 void SetClass(Class* klass) {
1455 klass_ = klass;
Carl Shapirof88c9522011-08-06 15:47:38 -07001456 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001457
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001458 private:
1459 // Points to the interface class.
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001460 Class* klass_;
1461
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001462 public: // TODO: private
1463 // Index into array of vtable offsets. This points into the
1464 // ifviPool, which holds the vtables for all interfaces declared by
1465 // this class.
1466 uint32_t* method_index_array_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001467
1468 private:
1469 DISALLOW_COPY_AND_ASSIGN(InterfaceEntry);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001470};
1471
1472} // namespace art
1473
1474#endif // ART_SRC_OBJECT_H_