blob: abcf51f64bb7a91a2e79b67b71dbca332e5114ec [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
Elliott Hughes04b63fd2011-08-16 09:40:10 -0700132 size_t SizeOf() const;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700133
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 }
Elliott Hughes04b63fd2011-08-16 09:40:10 -0700606
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700607 static Array* Alloc(Class* array_class,
608 size_t component_count,
609 size_t component_size) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700610 size_t size = Size(component_count, component_size);
611 Array* array = Heap::AllocObject(array_class, size)->AsArray();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700612 if (array != NULL) {
613 array->SetLength(component_count);
614 }
615 return array;
616 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700617
Elliott Hughes04b63fd2011-08-16 09:40:10 -0700618 size_t SizeOf() const;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700619
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700620 int32_t GetLength() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700621 return length_;
622 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700623
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700624 void SetLength(uint32_t length) {
625 length_ = length;
626 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700627
Elliott Hughes289da822011-08-16 10:11:20 -0700628 protected:
629 bool IsValidIndex(int32_t index) const {
630 if (index < 0 || index >= length_) {
631 // TODO: throw ArrayIndexOutOfBoundsException with the detail message
632 // "length=%d; index=%d", length_, index;
633 CHECK(false) << "ArrayIndexOutOfBoundsException: length="
634 << length_ << "; index=" << index;
635 return false;
636 }
637 return true;
638 }
639
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700640 private:
641 // The number of array elements.
Elliott Hughes289da822011-08-16 10:11:20 -0700642 int32_t length_;
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400643 // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary
644 int32_t padding_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700645
Carl Shapirof88c9522011-08-06 15:47:38 -0700646 DISALLOW_IMPLICIT_CONSTRUCTORS(Array);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700647};
648
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700649template<class T>
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700650class ObjectArray : public Array {
651 public:
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700652 static ObjectArray<T>* Alloc(Class* object_array_class,
653 size_t length) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700654 return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700655 }
656
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700657 T* const * GetData() const {
658 return reinterpret_cast<T* const *>(&elements_);
659 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400660
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700661 T** GetData() {
662 return reinterpret_cast<T**>(&elements_);
663 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400664
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700665 T* Get(int32_t i) const {
Elliott Hughes289da822011-08-16 10:11:20 -0700666 if (!IsValidIndex(i)) {
667 return NULL;
668 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700669 return GetData()[i];
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700670 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700671
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700672 void Set(int32_t i, T* object) {
Elliott Hughes289da822011-08-16 10:11:20 -0700673 if (IsValidIndex(i)) {
674 // TODO: ArrayStoreException
675 GetData()[i] = object; // TODO: write barrier
676 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700677 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700678
679 static void Copy(ObjectArray<T>* src, int src_pos,
680 ObjectArray<T>* dst, int dst_pos,
681 size_t length) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700682 for (size_t i = 0; i < length; i++) {
683 dst->Set(dst_pos + i, src->Get(src_pos + i));
684 }
685 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700686
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700687 ObjectArray<T>* CopyOf(int32_t new_length) {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700688 ObjectArray<T>* new_array = Alloc(klass_, new_length);
689 Copy(this, 0, new_array, 0, std::min(GetLength(), new_length));
690 return new_array;
691 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700692
693 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700694 // Location of first element.
695 T* elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -0700696
697 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700698};
699
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700700// ClassLoader objects.
701class ClassLoader : public Object {
702 public:
703 std::vector<const DexFile*>& GetClassPath() {
704 return class_path_;
705 }
706 void SetClassPath(std::vector<const DexFile*>& class_path) {
707 DCHECK_EQ(0U, class_path_.size());
708 class_path_ = class_path;
709 }
710
711 private:
712 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
713 Object* packages_;
714 ClassLoader* parent_;
715
716 // TODO remove once we can create a real PathClassLoader
717 std::vector<const DexFile*> class_path_;
718
Carl Shapirof88c9522011-08-06 15:47:38 -0700719 DISALLOW_IMPLICIT_CONSTRUCTORS(ClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700720};
721
722class BaseDexClassLoader : public ClassLoader {
723 private:
724 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
725 String* original_path_;
726 Object* path_list_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700727 DISALLOW_IMPLICIT_CONSTRUCTORS(BaseDexClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700728};
729
730class PathClassLoader : public BaseDexClassLoader {
731 private:
Carl Shapirof88c9522011-08-06 15:47:38 -0700732 DISALLOW_IMPLICIT_CONSTRUCTORS(PathClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700733};
734
Carl Shapiro1fb86202011-06-27 17:43:13 -0700735// Class objects.
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700736class Class : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -0700737 public:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700738
739 // Class Status
740 //
741 // kStatusNotReady: If a Class cannot be found in the class table by
742 // FindClass, it allocates an new one with AllocClass in the
743 // kStatusNotReady and calls LoadClass. Note if it does find a
744 // class, it may not be kStatusResolved and it will try to push it
745 // forward toward kStatusResolved.
746 //
747 // kStatusIdx: LoadClass populates with Class with information from
748 // the DexFile, moving the status to kStatusIdx, indicating that the
749 // Class values in super_class_ and interfaces_ have not been
750 // populated based on super_class_idx_ and interfaces_idx_. The new
751 // Class can then be inserted into the classes table.
752 //
753 // kStatusLoaded: After taking a lock on Class, the ClassLinker will
754 // attempt to move a kStatusIdx class forward to kStatusLoaded by
755 // using ResolveClass to initialize the super_class_ and interfaces_.
756 //
757 // kStatusResolved: Still holding the lock on Class, the ClassLinker
758 // will use LinkClass to link all members, creating Field and Method
759 // objects, setting up the vtable, etc. On success, the class is
760 // marked kStatusResolved.
761
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700762 enum Status {
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700763 kStatusError = -1,
764 kStatusNotReady = 0,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700765 kStatusIdx = 1, // loaded, DEX idx in super_class_idx_ and interfaces_idx_
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700766 kStatusLoaded = 2, // DEX idx values resolved
767 kStatusResolved = 3, // part of linking
768 kStatusVerifying = 4, // in the process of being verified
769 kStatusVerified = 5, // logically part of linking; done pre-init
770 kStatusInitializing = 6, // class init in progress
771 kStatusInitialized = 7, // ready to go
Carl Shapiro1fb86202011-06-27 17:43:13 -0700772 };
773
774 enum PrimitiveType {
775 kPrimNot = -1
776 };
777
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700778 Object* NewInstance() {
779 return Heap::AllocObject(this, this->object_size_);
780 }
781
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700782 Class* GetSuperClass() const {
783 return super_class_;
784 }
785
786 uint32_t GetSuperClassIdx() const {
787 return super_class_idx_;
788 }
789
790 bool HasSuperClass() const {
791 return super_class_ != NULL;
792 }
793
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700794 bool IsAssignableFrom(const Class* klass) const {
795 DCHECK(klass != NULL);
796 if (this == klass) {
797 return true;
798 }
799 if (IsInterface()) {
800 return klass->Implements(this);
801 }
802 if (klass->IsArray()) {
803 return IsAssignableFromArray(klass);
804 }
805 return klass->IsSubClass(this);
806 }
807
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700808 ClassLoader* GetClassLoader() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700809 return class_loader_;
810 }
811
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700812 DexCache* GetDexCache() const {
813 return dex_cache_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700814 }
815
816 Class* GetComponentType() const {
817 return component_type_;
818 }
819
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700820 static size_t GetTypeSize(const StringPiece& descriptor) {
821 switch (descriptor[0]) {
822 case 'B': return 1; // byte
823 case 'C': return 2; // char
824 case 'D': return 8; // double
825 case 'F': return 4; // float
826 case 'I': return 4; // int
827 case 'J': return 8; // long
828 case 'S': return 2; // short
829 case 'Z': return 1; // boolean
830 case 'L': return sizeof(Object*);
831 case '[': return sizeof(Array*);
832 default:
833 LOG(ERROR) << "Unknown type " << descriptor;
834 return 0;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700835 }
836 }
837
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700838 size_t GetComponentSize() const {
839 return GetTypeSize(component_type_->descriptor_);
840 }
841
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700842 const StringPiece& GetDescriptor() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700843 DCHECK_NE(0, descriptor_.size());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700844 return descriptor_;
845 }
846
847 Status GetStatus() const {
848 return status_;
849 }
850
851 void SetStatus(Status new_status) {
852 // TODO: validate transition
853 status_ = new_status;
854 }
855
Carl Shapiro69759ea2011-07-21 18:13:35 -0700856 // Returns true if the class has failed to link.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700857 bool IsErroneous() const {
858 return GetStatus() == kStatusError;
859 }
860
Carl Shapiro69759ea2011-07-21 18:13:35 -0700861 // Returns true if the class has been verified.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700862 bool IsVerified() const {
863 return GetStatus() >= kStatusVerified;
864 }
865
Carl Shapiro69759ea2011-07-21 18:13:35 -0700866 // Returns true if the class has been linked.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700867 bool IsLinked() const {
868 return GetStatus() >= kStatusResolved;
869 }
870
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700871 // Returns true if the class has been loaded.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700872 bool IsLoaded() const {
873 return GetStatus() >= kStatusLoaded;
874 }
875
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700876 // Returns true if the class is initialized.
877 bool IsInitialized() const {
878 return GetStatus() == kStatusInitialized;
879 }
880
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700881 // Returns true if this class is in the same packages as that class.
882 bool IsInSamePackage(const Class* that) const;
883
Ian Rogersb033c752011-07-20 12:22:35 -0700884 static bool IsInSamePackage(const StringPiece& descriptor1,
885 const StringPiece& descriptor2);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700886
887 // Returns true if this class represents an array class.
888 bool IsArray() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700889 return GetDescriptor()[0] == '['; // TODO: avoid parsing the descriptor
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700890 }
891
892 // Returns true if the class is an interface.
893 bool IsInterface() const {
894 return (access_flags_ & kAccInterface) != 0;
895 }
896
897 // Returns true if the class is declared public.
898 bool IsPublic() const {
899 return (access_flags_ & kAccPublic) != 0;
900 }
901
902 // Returns true if the class is declared final.
903 bool IsFinal() const {
904 return (access_flags_ & kAccFinal) != 0;
905 }
906
907 // Returns true if the class is abstract.
908 bool IsAbstract() const {
909 return (access_flags_ & kAccAbstract) != 0;
910 }
911
912 // Returns true if the class is an annotation.
913 bool IsAnnotation() const {
914 return (access_flags_ & kAccAnnotation) != 0;
915 }
916
917 // Returns true if the class is a primitive type.
918 bool IsPrimitive() const {
919 return primitive_type_ != kPrimNot;
920 }
921
Brian Carlstromae3ac012011-07-27 01:30:28 -0700922 // Returns true if the class is synthetic.
923 bool IsSynthetic() const {
924 return (access_flags_ & kAccSynthetic) != 0;
925 }
926
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700927 // Returns true if this class can access that class.
928 bool CanAccess(const Class* that) const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700929 return that->IsPublic() || this->IsInSamePackage(that);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700930 }
931
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700932 // Returns the number of static, private, and constructor methods.
933 size_t NumDirectMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700934 return (direct_methods_ != NULL) ? direct_methods_->GetLength() : 0;
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700935 }
936
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700937 Method* GetDirectMethod(int32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700938 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700939 return direct_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700940 }
941
942 void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700943 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700944 direct_methods_->Set(i, f);
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700945 }
946
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700947 Method* FindDeclaredDirectMethod(const StringPiece& name,
948 const StringPiece& descriptor);
949
950 Method* FindDirectMethod(const StringPiece& name,
951 const StringPiece& descriptor);
952
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700953 // Returns the number of non-inherited virtual methods.
954 size_t NumVirtualMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700955 return (virtual_methods_ != NULL) ? virtual_methods_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700956 }
957
958 Method* GetVirtualMethod(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700959 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700960 return virtual_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700961 }
962
963 void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700964 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700965 virtual_methods_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700966 }
967
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700968 Method* FindDeclaredVirtualMethod(const StringPiece& name,
969 const StringPiece& descriptor);
970
971 Method* FindVirtualMethod(const StringPiece& name,
972 const StringPiece& descriptor);
973
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700974 size_t NumInstanceFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700975 return (ifields_ != NULL) ? ifields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700976 }
977
Carl Shapiro69759ea2011-07-21 18:13:35 -0700978 // Returns the number of instance fields containing reference types.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700979 size_t NumReferenceInstanceFields() const {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700980 return num_reference_instance_fields_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700981 }
982
Jesse Wilson35baaab2011-08-10 16:18:03 -0400983 Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700984 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700985 return ifields_->Get(i);
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700986 }
987
Jesse Wilson35baaab2011-08-10 16:18:03 -0400988 void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700989 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700990 ifields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700991 }
992
993 size_t NumStaticFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700994 return (sfields_ != NULL) ? sfields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700995 }
996
Jesse Wilson35baaab2011-08-10 16:18:03 -0400997 Field* GetStaticField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700998 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700999 return sfields_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001000 }
1001
Jesse Wilson35baaab2011-08-10 16:18:03 -04001002 void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001003 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001004 sfields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001005 }
1006
1007 uint32_t GetReferenceOffsets() const {
1008 return reference_offsets_;
1009 }
1010
1011 void SetReferenceOffsets(uint32_t new_reference_offsets) {
1012 reference_offsets_ = new_reference_offsets;
1013 }
1014
Carl Shapiro69759ea2011-07-21 18:13:35 -07001015 size_t NumInterfaces() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001016 return (interfaces_ != NULL) ? interfaces_->GetLength() : 0;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001017 }
1018
1019 Class* GetInterface(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001020 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001021 return interfaces_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001022 }
1023
1024 void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001025 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001026 interfaces_->Set(i, f);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001027 }
1028
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001029 void SetVerifyErrorClass(Class* klass) {
1030 // Note SetFieldObject is used rather than verify_error_class_ directly for the barrier
1031 size_t field_offset = OFFSETOF_MEMBER(Class, verify_error_class_);
1032 klass->SetFieldObject(field_offset, klass);
1033 }
1034
1035 private:
1036 bool Implements(const Class* klass) const;
1037 bool IsArrayAssignableFromArray(const Class* klass) const;
1038 bool IsAssignableFromArray(const Class* klass) const;
1039 bool IsSubClass(const Class* klass) const;
1040
Ian Rogersb033c752011-07-20 12:22:35 -07001041 public: // TODO: private
Carl Shapiro1fb86202011-06-27 17:43:13 -07001042 // leave space for instance data; we could access fields directly if
1043 // we freeze the definition of java/lang/Class
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001044#define CLASS_FIELD_SLOTS 1
1045 // Class.#0 name
Carl Shapiro1fb86202011-06-27 17:43:13 -07001046 uint32_t instance_data_[CLASS_FIELD_SLOTS];
1047#undef CLASS_FIELD_SLOTS
1048
1049 // UTF-8 descriptor for the class from constant pool
1050 // ("Ljava/lang/Class;"), or on heap if generated ("[C")
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001051 StringPiece descriptor_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001052
1053 // Proxy classes have their descriptor allocated on the native heap.
1054 // When this field is non-NULL it must be explicitly freed.
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001055 std::string* descriptor_alloc_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001056
1057 // access flags; low 16 bits are defined by VM spec
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001058 uint32_t access_flags_; // TODO: make an instance field?
Carl Shapiro1fb86202011-06-27 17:43:13 -07001059
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001060 // DexCache of resolved constant pool entries
Carl Shapiro1fb86202011-06-27 17:43:13 -07001061 // (will be NULL for VM-generated, e.g. arrays and primitive classes)
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001062 DexCache* dex_cache_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001063
1064 // state of class initialization
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001065 Status status_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001066
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001067 // If class verify fails, we must return same error on subsequent tries.
1068 // Update with SetVerifyErrorClass to ensure a write barrier is used.
1069 const Class* verify_error_class_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001070
1071 // threadId, used to check for recursive <clinit> invocation
1072 uint32_t clinit_thread_id_;
1073
1074 // Total object size; used when allocating storage on gc heap. (For
1075 // interfaces and abstract classes this will be zero.)
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001076 size_t object_size_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001077
1078 // For array classes, the class object for base element, for
1079 // instanceof/checkcast (for String[][][], this will be String).
1080 // Otherwise, NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001081 Class* component_type_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001082
1083 // For array classes, the number of array dimensions, e.g. int[][]
1084 // is 2. Otherwise 0.
1085 int32_t array_rank_;
1086
1087 // primitive type index, or PRIM_NOT (-1); set for generated prim classes
1088 PrimitiveType primitive_type_;
1089
1090 // The superclass, or NULL if this is java.lang.Object or a
1091 // primitive type.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001092 Class* super_class_; // TODO: make an instance field
1093 uint32_t super_class_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001094
1095 // defining class loader, or NULL for the "bootstrap" system loader
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001096 ClassLoader* class_loader_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001097
1098 // initiating class loader list
1099 // NOTE: for classes with low serialNumber, these are unused, and the
1100 // values are kept in a table in gDvm.
Ian Rogersb033c752011-07-20 12:22:35 -07001101 // InitiatingLoaderList initiating_loader_list_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001102
1103 // array of interfaces this class implements directly
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001104 ObjectArray<Class>* interfaces_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001105 uint32_t* interfaces_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001106
1107 // static, private, and <init> methods
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001108 ObjectArray<Method>* direct_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001109
1110 // virtual methods defined in this class; invoked through vtable
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001111 ObjectArray<Method>* virtual_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001112
1113 // Virtual method table (vtable), for use by "invoke-virtual". The
1114 // vtable from the superclass is copied in, and virtual methods from
1115 // our class either replace those from the super or are appended.
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001116 ObjectArray<Method>* vtable_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001117
1118 // Interface table (iftable), one entry per interface supported by
1119 // this class. That means one entry for each interface we support
1120 // directly, indirectly via superclass, or indirectly via
1121 // superinterface. This will be null if neither we nor our
1122 // superclass implement any interfaces.
1123 //
1124 // Why we need this: given "class Foo implements Face", declare
1125 // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah"
1126 // is part of the Face interface. We can't easily use a single
1127 // vtable.
1128 //
1129 // For every interface a concrete class implements, we create a list
1130 // of virtualMethod indices for the methods in the interface.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001131 size_t iftable_count_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001132 InterfaceEntry* iftable_;
1133
1134 // The interface vtable indices for iftable get stored here. By
1135 // placing them all in a single pool for each class that implements
1136 // interfaces, we decrease the number of allocations.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001137 size_t ifvi_pool_count_;
1138 uint32_t* ifvi_pool_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001139
1140 // instance fields
1141 //
1142 // These describe the layout of the contents of a
1143 // DataObject-compatible Object. Note that only the fields directly
1144 // declared by this class are listed in ifields; fields declared by
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001145 // a superclass are listed in the superclass's Class.ifields.
Carl Shapiro1fb86202011-06-27 17:43:13 -07001146 //
1147 // All instance fields that refer to objects are guaranteed to be at
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001148 // the beginning of the field list. num_reference_instance_fields_
1149 // specifies the number of reference fields.
Jesse Wilson35baaab2011-08-10 16:18:03 -04001150 ObjectArray<Field>* ifields_;
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001151
1152 // number of fields that are object refs
Carl Shapiro69759ea2011-07-21 18:13:35 -07001153 size_t num_reference_instance_fields_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001154
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001155 // Bitmap of offsets of ifields.
1156 uint32_t reference_offsets_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001157
1158 // source file name, if known. Otherwise, NULL.
1159 const char* source_file_;
1160
Jesse Wilson7833bd22011-08-09 18:31:44 -04001161 // Static fields
Jesse Wilson35baaab2011-08-10 16:18:03 -04001162 ObjectArray<Field>* sfields_;
Jesse Wilson7833bd22011-08-09 18:31:44 -04001163
1164 // static field storage
1165 //
1166 // Each static field is stored in one of three arrays:
1167 // o references are stored in static_references_
1168 // o doubles and longs are stored in static_64bit_primitives_
1169 // o everything else is in static_32bit_primitives_
1170 // Static fields select their array using their type and their index using the
1171 // Field->slot_ member. Storing static fields in arrays avoids the need for a
1172 // special case in the GC.
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001173 ObjectArray<Object>* static_references_;
1174 IntArray* static_32bit_primitives_;
1175 LongArray* static_64bit_primitives_;
1176
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001177 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001178 DISALLOW_IMPLICIT_CONSTRUCTORS(Class);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001179};
Elliott Hughes1f359b02011-07-17 14:27:17 -07001180std::ostream& operator<<(std::ostream& os, const Class::Status& rhs);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001181
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001182inline bool Object::InstanceOf(const Class* klass) const {
Jesse Wilson14150742011-07-29 19:04:44 -04001183 DCHECK(klass != NULL);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001184 DCHECK(klass_ != NULL);
1185 return klass->IsAssignableFrom(klass_);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001186}
1187
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001188inline bool Object::IsClass() const {
1189 return klass_ == klass_->klass_;
1190}
1191
1192inline bool Object::IsObjectArray() const {
1193 return IsArray() && !klass_->component_type_->IsPrimitive();
1194}
1195
1196inline bool Object::IsArray() const {
1197 return klass_->IsArray();
1198}
1199
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001200inline size_t Object::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001201 if (IsArray()) {
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001202 return AsArray()->SizeOf();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001203 }
1204 return klass_->object_size_;
1205}
1206
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001207inline size_t Array::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001208 return Size(GetLength(), klass_->GetComponentSize());
1209}
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001210
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001211class DataObject : public Object {
1212 public:
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001213 uint32_t fields_[0];
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001214 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001215 DISALLOW_IMPLICIT_CONSTRUCTORS(DataObject);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001216};
1217
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001218template<class T>
1219class PrimitiveArray : public Array {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001220 public:
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001221 static PrimitiveArray<T>* Alloc(size_t length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001222
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001223 const T* GetData() const {
1224 return reinterpret_cast<const T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001225 }
1226
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001227 T* GetData() {
1228 return reinterpret_cast<T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001229 }
1230
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001231 T Get(int32_t i) const {
Elliott Hughes289da822011-08-16 10:11:20 -07001232 if (!IsValidIndex(i)) {
1233 return T();
1234 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001235 return GetData()[i];
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001236 }
1237
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001238 void Set(int32_t i, T value) {
Elliott Hughes289da822011-08-16 10:11:20 -07001239 // TODO: ArrayStoreException
1240 if (IsValidIndex(i)) {
1241 GetData()[i] = value;
1242 }
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001243 }
1244
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001245 static void SetArrayClass(Class* array_class) {
1246 CHECK(array_class != NULL);
1247 array_class_ = array_class;
1248 }
1249
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001250 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001251 // Location of first element.
1252 T elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07001253
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001254 static Class* array_class_;
1255
Carl Shapirof88c9522011-08-06 15:47:38 -07001256 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001257};
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001258
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001259class String : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001260 public:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001261 const CharArray* GetCharArray() const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001262 DCHECK(array_ != NULL);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001263 return array_;
1264 }
1265
Carl Shapirof88c9522011-08-06 15:47:38 -07001266 uint32_t GetHashCode() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001267 return hash_code_;
1268 }
1269
Carl Shapirof88c9522011-08-06 15:47:38 -07001270 uint32_t GetOffset() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001271 return offset_;
1272 }
1273
Carl Shapirof88c9522011-08-06 15:47:38 -07001274 uint32_t GetLength() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001275 return count_;
1276 }
1277
Elliott Hughes289da822011-08-16 10:11:20 -07001278 uint16_t CharAt(int32_t index) const {
1279 if (index < 0 || index >= count_) {
1280 // TODO: throw new StringIndexOutOfBounds(this, index);
1281 CHECK(false) << "StringIndexOutOfBounds: " << index;
1282 return 0;
1283 } else {
1284 return GetCharArray()->Get(index + GetOffset());
1285 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001286 }
1287
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001288 static String* AllocFromUtf16(int32_t utf16_length,
1289 uint16_t* utf16_data_in,
1290 int32_t hash_code) {
Carl Shapirof88c9522011-08-06 15:47:38 -07001291 String* string = Alloc(GetJavaLangString(),
Carl Shapirof88c9522011-08-06 15:47:38 -07001292 utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001293 // TODO use 16-bit wide memset variant
1294 for (int i = 0; i < utf16_length; i++ ) {
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001295 string->array_->Set(i, utf16_data_in[i]);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001296 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001297 string->ComputeHashCode();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001298 return string;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001299 }
1300
1301 static String* AllocFromModifiedUtf8(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001302 int32_t utf16_length,
1303 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001304 String* string = Alloc(java_lang_String, utf16_length);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001305 uint16_t* utf16_data_out = string->array_->GetData();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001306 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001307 string->ComputeHashCode();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001308 return string;
1309 }
1310
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001311 // Creates a String of the given ASCII characters. It is an error to call this
1312 // using non-ASCII characters as this function assumes one char per byte.
1313 static String* AllocFromAscii(const char* ascii_data_in) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001314 return AllocFromModifiedUtf8(GetJavaLangString(),
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001315 strlen(ascii_data_in),
1316 ascii_data_in);
1317 }
1318
Jesse Wilson8989d992011-08-02 13:39:42 -07001319 static String* AllocFromModifiedUtf8(int32_t utf16_length,
1320 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001321 return AllocFromModifiedUtf8(GetJavaLangString(),
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001322 utf16_length, utf8_data_in);
Jesse Wilson8989d992011-08-02 13:39:42 -07001323 }
1324
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001325 static void InitClasses(Class* java_lang_String);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001326
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001327 static String* Alloc(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001328 int32_t utf16_length) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001329 String* string = down_cast<String*>(java_lang_String->NewInstance());
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001330 CharArray* array = CharArray::Alloc(utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001331 string->array_ = array;
1332 string->count_ = utf16_length;
1333 return string;
1334 }
1335
1336 // Convert Modified UTF-8 to UTF-16
1337 // http://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8
1338 static void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_data_out, const char* utf8_data_in) {
1339 while (*utf8_data_in != '\0') {
1340 *utf16_data_out++ = GetUtf16FromUtf8(&utf8_data_in);
1341 }
1342 }
1343
1344 // Retrieve the next UTF-16 character from a UTF-8 string.
1345 //
1346 // Advances "*pUtf8Ptr" to the start of the next character.
1347 //
1348 // WARNING: If a string is corrupted by dropping a '\0' in the middle
1349 // of a 3-byte sequence, you can end up overrunning the buffer with
1350 // reads (and possibly with the writes if the length was computed and
1351 // cached before the damage). For performance reasons, this function
1352 // assumes that the string being parsed is known to be valid (e.g., by
1353 // already being verified). Most strings we process here are coming
1354 // out of dex files or other internal translations, so the only real
1355 // risk comes from the JNI NewStringUTF call.
1356 static uint16_t GetUtf16FromUtf8(const char** utf8_data_in) {
1357 uint8_t one = *(*utf8_data_in)++;
1358 if ((one & 0x80) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001359 // one-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001360 return one;
1361 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001362 // two- or three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001363 uint8_t two = *(*utf8_data_in)++;
1364 if ((one & 0x20) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001365 // two-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001366 return ((one & 0x1f) << 6) |
1367 (two & 0x3f);
1368 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001369 // three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001370 uint8_t three = *(*utf8_data_in)++;
1371 return ((one & 0x0f) << 12) |
1372 ((two & 0x3f) << 6) |
1373 (three & 0x3f);
1374 }
1375
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001376 // Like "strlen", but for strings encoded with "modified" UTF-8.
1377 //
1378 // The value returned is the number of characters, which may or may not
1379 // be the same as the number of bytes.
1380 //
1381 // (If this needs optimizing, try: mask against 0xa0, shift right 5,
1382 // get increment {1-3} from table of 8 values.)
1383 static size_t ModifiedUtf8Len(const char* utf8) {
1384 size_t len = 0;
1385 int ic;
1386 while ((ic = *utf8++) != '\0') {
1387 len++;
1388 if ((ic & 0x80) == 0) {
1389 // one-byte encoding
1390 continue;
1391 }
1392 // two- or three-byte encoding
1393 utf8++;
1394 if ((ic & 0x20) == 0) {
1395 // two-byte encoding
1396 continue;
1397 }
1398 // three-byte encoding
1399 utf8++;
1400 }
1401 return len;
1402 }
1403
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001404 // The java/lang/String.computeHashCode() algorithm
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001405 static int32_t ComputeUtf16Hash(const uint16_t* string_data, size_t string_length) {
1406 int32_t hash = 0;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001407 while (string_length--) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001408 hash = hash * 31 + *string_data++;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001409 }
1410 return hash;
1411 }
1412
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001413 void ComputeHashCode() {
1414 hash_code_ = ComputeUtf16Hash(array_->GetData(), count_);
1415 }
1416
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001417 bool Equals(const char* modified_utf8) const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001418 for (uint32_t i = 0; i < GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001419 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1420 if (ch == '\0' || ch != CharAt(i)) {
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001421 return false;
1422 }
1423 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001424 return *modified_utf8 == '\0';
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001425 }
1426
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001427 bool Equals(const StringPiece& modified_utf8) const {
1428 // TODO: do not assume C-string representation.
1429 return Equals(modified_utf8.data());
1430 }
1431
1432 bool Equals(const String* that) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001433 // TODO short circuit on hash_code_
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001434 if (this->GetLength() != that->GetLength()) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001435 return false;
1436 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001437 for (uint32_t i = 0; i < that->GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001438 if (this->CharAt(i) != that->CharAt(i)) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001439 return false;
1440 }
1441 }
1442 return true;
1443 }
1444
Carl Shapirof88c9522011-08-06 15:47:38 -07001445 bool Equals(const uint16_t* that_chars, uint32_t that_offset, uint32_t that_length) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001446 if (this->GetLength() != that_length) {
1447 return false;
1448 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001449 for (uint32_t i = 0; i < that_length; ++i) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001450 if (this->CharAt(i) != that_chars[that_offset + i]) {
1451 return false;
1452 }
1453 }
1454 return true;
1455 }
1456
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001457 private:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001458 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
1459 CharArray* array_;
1460
Carl Shapirof88c9522011-08-06 15:47:38 -07001461 uint32_t hash_code_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001462
Elliott Hughes289da822011-08-16 10:11:20 -07001463 int32_t offset_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001464
Elliott Hughes289da822011-08-16 10:11:20 -07001465 int32_t count_;
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001466
1467 static Class* GetJavaLangString() {
1468 DCHECK(java_lang_String_ != NULL);
1469 return java_lang_String_;
1470 }
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001471
1472 static Class* java_lang_String_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001473
1474 DISALLOW_IMPLICIT_CONSTRUCTORS(String);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001475};
1476
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001477class InterfaceEntry {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001478 public:
Carl Shapirof88c9522011-08-06 15:47:38 -07001479 InterfaceEntry() : klass_(NULL), method_index_array_(NULL) {
1480 }
1481
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001482 Class* GetClass() const {
1483 return klass_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001484 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001485
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001486 void SetClass(Class* klass) {
1487 klass_ = klass;
Carl Shapirof88c9522011-08-06 15:47:38 -07001488 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001489
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001490 private:
1491 // Points to the interface class.
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001492 Class* klass_;
1493
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001494 public: // TODO: private
1495 // Index into array of vtable offsets. This points into the
1496 // ifviPool, which holds the vtables for all interfaces declared by
1497 // this class.
1498 uint32_t* method_index_array_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001499
1500 private:
1501 DISALLOW_COPY_AND_ASSIGN(InterfaceEntry);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001502};
1503
1504} // namespace art
1505
1506#endif // ART_SRC_OBJECT_H_