blob: 6fe2ecfba7ebe9c527330ad2d8f6416cec84b43e [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
628 private:
629 // The number of array elements.
630 uint32_t length_;
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400631 // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary
632 int32_t padding_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700633
Carl Shapirof88c9522011-08-06 15:47:38 -0700634 DISALLOW_IMPLICIT_CONSTRUCTORS(Array);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700635};
636
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700637template<class T>
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700638class ObjectArray : public Array {
639 public:
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700640 static ObjectArray<T>* Alloc(Class* object_array_class,
641 size_t length) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700642 return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700643 }
644
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700645 T* const * GetData() const {
646 return reinterpret_cast<T* const *>(&elements_);
647 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400648
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700649 T** GetData() {
650 return reinterpret_cast<T**>(&elements_);
651 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400652
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700653 T* Get(int32_t i) const {
Brian Carlstrom0b138b22011-07-27 15:19:17 -0700654 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700655 return GetData()[i];
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700656 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700657
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700658 void Set(int32_t i, T* object) {
Brian Carlstrom0b138b22011-07-27 15:19:17 -0700659 CHECK_LT(i, GetLength());
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400660 GetData()[i] = object; // TODO: write barrier
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700661 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700662
663 static void Copy(ObjectArray<T>* src, int src_pos,
664 ObjectArray<T>* dst, int dst_pos,
665 size_t length) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700666 for (size_t i = 0; i < length; i++) {
667 dst->Set(dst_pos + i, src->Get(src_pos + i));
668 }
669 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700670
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700671 ObjectArray<T>* CopyOf(int32_t new_length) {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700672 ObjectArray<T>* new_array = Alloc(klass_, new_length);
673 Copy(this, 0, new_array, 0, std::min(GetLength(), new_length));
674 return new_array;
675 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700676
677 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700678 // Location of first element.
679 T* elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -0700680
681 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700682};
683
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700684// ClassLoader objects.
685class ClassLoader : public Object {
686 public:
687 std::vector<const DexFile*>& GetClassPath() {
688 return class_path_;
689 }
690 void SetClassPath(std::vector<const DexFile*>& class_path) {
691 DCHECK_EQ(0U, class_path_.size());
692 class_path_ = class_path;
693 }
694
695 private:
696 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
697 Object* packages_;
698 ClassLoader* parent_;
699
700 // TODO remove once we can create a real PathClassLoader
701 std::vector<const DexFile*> class_path_;
702
Carl Shapirof88c9522011-08-06 15:47:38 -0700703 DISALLOW_IMPLICIT_CONSTRUCTORS(ClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700704};
705
706class BaseDexClassLoader : public ClassLoader {
707 private:
708 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
709 String* original_path_;
710 Object* path_list_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700711 DISALLOW_IMPLICIT_CONSTRUCTORS(BaseDexClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700712};
713
714class PathClassLoader : public BaseDexClassLoader {
715 private:
Carl Shapirof88c9522011-08-06 15:47:38 -0700716 DISALLOW_IMPLICIT_CONSTRUCTORS(PathClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700717};
718
Carl Shapiro1fb86202011-06-27 17:43:13 -0700719// Class objects.
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700720class Class : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -0700721 public:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700722
723 // Class Status
724 //
725 // kStatusNotReady: If a Class cannot be found in the class table by
726 // FindClass, it allocates an new one with AllocClass in the
727 // kStatusNotReady and calls LoadClass. Note if it does find a
728 // class, it may not be kStatusResolved and it will try to push it
729 // forward toward kStatusResolved.
730 //
731 // kStatusIdx: LoadClass populates with Class with information from
732 // the DexFile, moving the status to kStatusIdx, indicating that the
733 // Class values in super_class_ and interfaces_ have not been
734 // populated based on super_class_idx_ and interfaces_idx_. The new
735 // Class can then be inserted into the classes table.
736 //
737 // kStatusLoaded: After taking a lock on Class, the ClassLinker will
738 // attempt to move a kStatusIdx class forward to kStatusLoaded by
739 // using ResolveClass to initialize the super_class_ and interfaces_.
740 //
741 // kStatusResolved: Still holding the lock on Class, the ClassLinker
742 // will use LinkClass to link all members, creating Field and Method
743 // objects, setting up the vtable, etc. On success, the class is
744 // marked kStatusResolved.
745
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700746 enum Status {
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700747 kStatusError = -1,
748 kStatusNotReady = 0,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700749 kStatusIdx = 1, // loaded, DEX idx in super_class_idx_ and interfaces_idx_
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700750 kStatusLoaded = 2, // DEX idx values resolved
751 kStatusResolved = 3, // part of linking
752 kStatusVerifying = 4, // in the process of being verified
753 kStatusVerified = 5, // logically part of linking; done pre-init
754 kStatusInitializing = 6, // class init in progress
755 kStatusInitialized = 7, // ready to go
Carl Shapiro1fb86202011-06-27 17:43:13 -0700756 };
757
758 enum PrimitiveType {
759 kPrimNot = -1
760 };
761
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700762 Object* NewInstance() {
763 return Heap::AllocObject(this, this->object_size_);
764 }
765
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700766 Class* GetSuperClass() const {
767 return super_class_;
768 }
769
770 uint32_t GetSuperClassIdx() const {
771 return super_class_idx_;
772 }
773
774 bool HasSuperClass() const {
775 return super_class_ != NULL;
776 }
777
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700778 bool IsAssignableFrom(const Class* klass) const {
779 DCHECK(klass != NULL);
780 if (this == klass) {
781 return true;
782 }
783 if (IsInterface()) {
784 return klass->Implements(this);
785 }
786 if (klass->IsArray()) {
787 return IsAssignableFromArray(klass);
788 }
789 return klass->IsSubClass(this);
790 }
791
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700792 ClassLoader* GetClassLoader() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700793 return class_loader_;
794 }
795
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700796 DexCache* GetDexCache() const {
797 return dex_cache_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700798 }
799
800 Class* GetComponentType() const {
801 return component_type_;
802 }
803
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700804 static size_t GetTypeSize(const StringPiece& descriptor) {
805 switch (descriptor[0]) {
806 case 'B': return 1; // byte
807 case 'C': return 2; // char
808 case 'D': return 8; // double
809 case 'F': return 4; // float
810 case 'I': return 4; // int
811 case 'J': return 8; // long
812 case 'S': return 2; // short
813 case 'Z': return 1; // boolean
814 case 'L': return sizeof(Object*);
815 case '[': return sizeof(Array*);
816 default:
817 LOG(ERROR) << "Unknown type " << descriptor;
818 return 0;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700819 }
820 }
821
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700822 size_t GetComponentSize() const {
823 return GetTypeSize(component_type_->descriptor_);
824 }
825
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700826 const StringPiece& GetDescriptor() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700827 DCHECK_NE(0, descriptor_.size());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700828 return descriptor_;
829 }
830
831 Status GetStatus() const {
832 return status_;
833 }
834
835 void SetStatus(Status new_status) {
836 // TODO: validate transition
837 status_ = new_status;
838 }
839
Carl Shapiro69759ea2011-07-21 18:13:35 -0700840 // Returns true if the class has failed to link.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700841 bool IsErroneous() const {
842 return GetStatus() == kStatusError;
843 }
844
Carl Shapiro69759ea2011-07-21 18:13:35 -0700845 // Returns true if the class has been verified.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700846 bool IsVerified() const {
847 return GetStatus() >= kStatusVerified;
848 }
849
Carl Shapiro69759ea2011-07-21 18:13:35 -0700850 // Returns true if the class has been linked.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700851 bool IsLinked() const {
852 return GetStatus() >= kStatusResolved;
853 }
854
Carl Shapiro69759ea2011-07-21 18:13:35 -0700855 bool IsLoaded() const {
856 return GetStatus() >= kStatusLoaded;
857 }
858
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700859 // Returns true if this class is in the same packages as that class.
860 bool IsInSamePackage(const Class* that) const;
861
Ian Rogersb033c752011-07-20 12:22:35 -0700862 static bool IsInSamePackage(const StringPiece& descriptor1,
863 const StringPiece& descriptor2);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700864
865 // Returns true if this class represents an array class.
866 bool IsArray() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700867 return GetDescriptor()[0] == '['; // TODO: avoid parsing the descriptor
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700868 }
869
870 // Returns true if the class is an interface.
871 bool IsInterface() const {
872 return (access_flags_ & kAccInterface) != 0;
873 }
874
875 // Returns true if the class is declared public.
876 bool IsPublic() const {
877 return (access_flags_ & kAccPublic) != 0;
878 }
879
880 // Returns true if the class is declared final.
881 bool IsFinal() const {
882 return (access_flags_ & kAccFinal) != 0;
883 }
884
885 // Returns true if the class is abstract.
886 bool IsAbstract() const {
887 return (access_flags_ & kAccAbstract) != 0;
888 }
889
890 // Returns true if the class is an annotation.
891 bool IsAnnotation() const {
892 return (access_flags_ & kAccAnnotation) != 0;
893 }
894
895 // Returns true if the class is a primitive type.
896 bool IsPrimitive() const {
897 return primitive_type_ != kPrimNot;
898 }
899
Brian Carlstromae3ac012011-07-27 01:30:28 -0700900 // Returns true if the class is synthetic.
901 bool IsSynthetic() const {
902 return (access_flags_ & kAccSynthetic) != 0;
903 }
904
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700905 // Returns true if this class can access that class.
906 bool CanAccess(const Class* that) const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700907 return that->IsPublic() || this->IsInSamePackage(that);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700908 }
909
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700910 // Returns the number of static, private, and constructor methods.
911 size_t NumDirectMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700912 return (direct_methods_ != NULL) ? direct_methods_->GetLength() : 0;
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700913 }
914
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700915 Method* GetDirectMethod(int32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700916 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700917 return direct_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700918 }
919
920 void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700921 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700922 direct_methods_->Set(i, f);
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700923 }
924
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700925 Method* FindDeclaredDirectMethod(const StringPiece& name,
926 const StringPiece& descriptor);
927
928 Method* FindDirectMethod(const StringPiece& name,
929 const StringPiece& descriptor);
930
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700931 // Returns the number of non-inherited virtual methods.
932 size_t NumVirtualMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700933 return (virtual_methods_ != NULL) ? virtual_methods_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700934 }
935
936 Method* GetVirtualMethod(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700937 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700938 return virtual_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700939 }
940
941 void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700942 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700943 virtual_methods_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700944 }
945
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700946 Method* FindDeclaredVirtualMethod(const StringPiece& name,
947 const StringPiece& descriptor);
948
949 Method* FindVirtualMethod(const StringPiece& name,
950 const StringPiece& descriptor);
951
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700952 size_t NumInstanceFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700953 return (ifields_ != NULL) ? ifields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700954 }
955
Carl Shapiro69759ea2011-07-21 18:13:35 -0700956 // Returns the number of instance fields containing reference types.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700957 size_t NumReferenceInstanceFields() const {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700958 return num_reference_instance_fields_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700959 }
960
Jesse Wilson35baaab2011-08-10 16:18:03 -0400961 Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700962 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700963 return ifields_->Get(i);
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700964 }
965
Jesse Wilson35baaab2011-08-10 16:18:03 -0400966 void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700967 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700968 ifields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700969 }
970
971 size_t NumStaticFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700972 return (sfields_ != NULL) ? sfields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700973 }
974
Jesse Wilson35baaab2011-08-10 16:18:03 -0400975 Field* GetStaticField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700976 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700977 return sfields_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700978 }
979
Jesse Wilson35baaab2011-08-10 16:18:03 -0400980 void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700981 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700982 sfields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700983 }
984
985 uint32_t GetReferenceOffsets() const {
986 return reference_offsets_;
987 }
988
989 void SetReferenceOffsets(uint32_t new_reference_offsets) {
990 reference_offsets_ = new_reference_offsets;
991 }
992
Carl Shapiro69759ea2011-07-21 18:13:35 -0700993 size_t NumInterfaces() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700994 return (interfaces_ != NULL) ? interfaces_->GetLength() : 0;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700995 }
996
997 Class* GetInterface(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700998 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700999 return interfaces_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001000 }
1001
1002 void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001003 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001004 interfaces_->Set(i, f);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001005 }
1006
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001007 void SetVerifyErrorClass(Class* klass) {
1008 // Note SetFieldObject is used rather than verify_error_class_ directly for the barrier
1009 size_t field_offset = OFFSETOF_MEMBER(Class, verify_error_class_);
1010 klass->SetFieldObject(field_offset, klass);
1011 }
1012
1013 private:
1014 bool Implements(const Class* klass) const;
1015 bool IsArrayAssignableFromArray(const Class* klass) const;
1016 bool IsAssignableFromArray(const Class* klass) const;
1017 bool IsSubClass(const Class* klass) const;
1018
Ian Rogersb033c752011-07-20 12:22:35 -07001019 public: // TODO: private
Carl Shapiro1fb86202011-06-27 17:43:13 -07001020 // leave space for instance data; we could access fields directly if
1021 // we freeze the definition of java/lang/Class
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001022#define CLASS_FIELD_SLOTS 1
1023 // Class.#0 name
Carl Shapiro1fb86202011-06-27 17:43:13 -07001024 uint32_t instance_data_[CLASS_FIELD_SLOTS];
1025#undef CLASS_FIELD_SLOTS
1026
1027 // UTF-8 descriptor for the class from constant pool
1028 // ("Ljava/lang/Class;"), or on heap if generated ("[C")
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001029 StringPiece descriptor_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001030
1031 // Proxy classes have their descriptor allocated on the native heap.
1032 // When this field is non-NULL it must be explicitly freed.
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001033 std::string* descriptor_alloc_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001034
1035 // access flags; low 16 bits are defined by VM spec
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001036 uint32_t access_flags_; // TODO: make an instance field?
Carl Shapiro1fb86202011-06-27 17:43:13 -07001037
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001038 // DexCache of resolved constant pool entries
Carl Shapiro1fb86202011-06-27 17:43:13 -07001039 // (will be NULL for VM-generated, e.g. arrays and primitive classes)
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001040 DexCache* dex_cache_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001041
1042 // state of class initialization
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001043 Status status_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001044
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001045 // If class verify fails, we must return same error on subsequent tries.
1046 // Update with SetVerifyErrorClass to ensure a write barrier is used.
1047 const Class* verify_error_class_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001048
1049 // threadId, used to check for recursive <clinit> invocation
1050 uint32_t clinit_thread_id_;
1051
1052 // Total object size; used when allocating storage on gc heap. (For
1053 // interfaces and abstract classes this will be zero.)
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001054 size_t object_size_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001055
1056 // For array classes, the class object for base element, for
1057 // instanceof/checkcast (for String[][][], this will be String).
1058 // Otherwise, NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001059 Class* component_type_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001060
1061 // For array classes, the number of array dimensions, e.g. int[][]
1062 // is 2. Otherwise 0.
1063 int32_t array_rank_;
1064
1065 // primitive type index, or PRIM_NOT (-1); set for generated prim classes
1066 PrimitiveType primitive_type_;
1067
1068 // The superclass, or NULL if this is java.lang.Object or a
1069 // primitive type.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001070 Class* super_class_; // TODO: make an instance field
1071 uint32_t super_class_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001072
1073 // defining class loader, or NULL for the "bootstrap" system loader
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001074 ClassLoader* class_loader_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001075
1076 // initiating class loader list
1077 // NOTE: for classes with low serialNumber, these are unused, and the
1078 // values are kept in a table in gDvm.
Ian Rogersb033c752011-07-20 12:22:35 -07001079 // InitiatingLoaderList initiating_loader_list_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001080
1081 // array of interfaces this class implements directly
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001082 ObjectArray<Class>* interfaces_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001083 uint32_t* interfaces_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001084
1085 // static, private, and <init> methods
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001086 ObjectArray<Method>* direct_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001087
1088 // virtual methods defined in this class; invoked through vtable
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001089 ObjectArray<Method>* virtual_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001090
1091 // Virtual method table (vtable), for use by "invoke-virtual". The
1092 // vtable from the superclass is copied in, and virtual methods from
1093 // our class either replace those from the super or are appended.
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001094 ObjectArray<Method>* vtable_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001095
1096 // Interface table (iftable), one entry per interface supported by
1097 // this class. That means one entry for each interface we support
1098 // directly, indirectly via superclass, or indirectly via
1099 // superinterface. This will be null if neither we nor our
1100 // superclass implement any interfaces.
1101 //
1102 // Why we need this: given "class Foo implements Face", declare
1103 // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah"
1104 // is part of the Face interface. We can't easily use a single
1105 // vtable.
1106 //
1107 // For every interface a concrete class implements, we create a list
1108 // of virtualMethod indices for the methods in the interface.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001109 size_t iftable_count_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001110 InterfaceEntry* iftable_;
1111
1112 // The interface vtable indices for iftable get stored here. By
1113 // placing them all in a single pool for each class that implements
1114 // interfaces, we decrease the number of allocations.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001115 size_t ifvi_pool_count_;
1116 uint32_t* ifvi_pool_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001117
1118 // instance fields
1119 //
1120 // These describe the layout of the contents of a
1121 // DataObject-compatible Object. Note that only the fields directly
1122 // declared by this class are listed in ifields; fields declared by
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001123 // a superclass are listed in the superclass's Class.ifields.
Carl Shapiro1fb86202011-06-27 17:43:13 -07001124 //
1125 // All instance fields that refer to objects are guaranteed to be at
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001126 // the beginning of the field list. num_reference_instance_fields_
1127 // specifies the number of reference fields.
Jesse Wilson35baaab2011-08-10 16:18:03 -04001128 ObjectArray<Field>* ifields_;
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001129
1130 // number of fields that are object refs
Carl Shapiro69759ea2011-07-21 18:13:35 -07001131 size_t num_reference_instance_fields_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001132
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001133 // Bitmap of offsets of ifields.
1134 uint32_t reference_offsets_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001135
1136 // source file name, if known. Otherwise, NULL.
1137 const char* source_file_;
1138
Jesse Wilson7833bd22011-08-09 18:31:44 -04001139 // Static fields
Jesse Wilson35baaab2011-08-10 16:18:03 -04001140 ObjectArray<Field>* sfields_;
Jesse Wilson7833bd22011-08-09 18:31:44 -04001141
1142 // static field storage
1143 //
1144 // Each static field is stored in one of three arrays:
1145 // o references are stored in static_references_
1146 // o doubles and longs are stored in static_64bit_primitives_
1147 // o everything else is in static_32bit_primitives_
1148 // Static fields select their array using their type and their index using the
1149 // Field->slot_ member. Storing static fields in arrays avoids the need for a
1150 // special case in the GC.
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001151 ObjectArray<Object>* static_references_;
1152 IntArray* static_32bit_primitives_;
1153 LongArray* static_64bit_primitives_;
1154
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001155 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001156 DISALLOW_IMPLICIT_CONSTRUCTORS(Class);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001157};
Elliott Hughes1f359b02011-07-17 14:27:17 -07001158std::ostream& operator<<(std::ostream& os, const Class::Status& rhs);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001159
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001160inline bool Object::InstanceOf(const Class* klass) const {
Jesse Wilson14150742011-07-29 19:04:44 -04001161 DCHECK(klass != NULL);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001162 DCHECK(klass_ != NULL);
1163 return klass->IsAssignableFrom(klass_);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001164}
1165
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001166inline bool Object::IsClass() const {
1167 return klass_ == klass_->klass_;
1168}
1169
1170inline bool Object::IsObjectArray() const {
1171 return IsArray() && !klass_->component_type_->IsPrimitive();
1172}
1173
1174inline bool Object::IsArray() const {
1175 return klass_->IsArray();
1176}
1177
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001178inline size_t Object::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001179 if (IsArray()) {
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001180 return AsArray()->SizeOf();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001181 }
1182 return klass_->object_size_;
1183}
1184
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001185inline size_t Array::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001186 return Size(GetLength(), klass_->GetComponentSize());
1187}
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001188
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001189class DataObject : public Object {
1190 public:
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001191 uint32_t fields_[0];
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001192 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001193 DISALLOW_IMPLICIT_CONSTRUCTORS(DataObject);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001194};
1195
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001196template<class T>
1197class PrimitiveArray : public Array {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001198 public:
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001199 static PrimitiveArray<T>* Alloc(size_t length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001200
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001201 const T* GetData() const {
1202 return reinterpret_cast<const T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001203 }
1204
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001205 T* GetData() {
1206 return reinterpret_cast<T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001207 }
1208
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001209 T Get(int32_t i) const {
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001210 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001211 return GetData()[i];
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001212 }
1213
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001214 void Set(int32_t i, T value) {
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001215 CHECK_LT(i, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001216 GetData()[i] = value;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001217 }
1218
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001219 static void SetArrayClass(Class* array_class) {
1220 CHECK(array_class != NULL);
1221 array_class_ = array_class;
1222 }
1223
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001224 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001225 // Location of first element.
1226 T elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07001227
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001228 static Class* array_class_;
1229
Carl Shapirof88c9522011-08-06 15:47:38 -07001230 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001231};
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001232
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001233class String : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001234 public:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001235 const CharArray* GetCharArray() const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001236 DCHECK(array_ != NULL);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001237 return array_;
1238 }
1239
Carl Shapirof88c9522011-08-06 15:47:38 -07001240 uint32_t GetHashCode() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001241 return hash_code_;
1242 }
1243
Carl Shapirof88c9522011-08-06 15:47:38 -07001244 uint32_t GetOffset() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001245 return offset_;
1246 }
1247
Carl Shapirof88c9522011-08-06 15:47:38 -07001248 uint32_t GetLength() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001249 return count_;
1250 }
1251
Carl Shapirof88c9522011-08-06 15:47:38 -07001252 uint16_t CharAt(uint32_t index) const {
1253 DCHECK_LE(index, GetLength());
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001254 return GetCharArray()->Get(index + GetOffset());
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001255 }
1256
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001257 static String* AllocFromUtf16(int32_t utf16_length,
1258 uint16_t* utf16_data_in,
1259 int32_t hash_code) {
Carl Shapirof88c9522011-08-06 15:47:38 -07001260 String* string = Alloc(GetJavaLangString(),
Carl Shapirof88c9522011-08-06 15:47:38 -07001261 utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001262 // TODO use 16-bit wide memset variant
1263 for (int i = 0; i < utf16_length; i++ ) {
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001264 string->array_->Set(i, utf16_data_in[i]);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001265 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001266 string->ComputeHashCode();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001267 return string;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001268 }
1269
1270 static String* AllocFromModifiedUtf8(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001271 int32_t utf16_length,
1272 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001273 String* string = Alloc(java_lang_String, utf16_length);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001274 uint16_t* utf16_data_out = string->array_->GetData();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001275 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001276 string->ComputeHashCode();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001277 return string;
1278 }
1279
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001280 // Creates a String of the given ASCII characters. It is an error to call this
1281 // using non-ASCII characters as this function assumes one char per byte.
1282 static String* AllocFromAscii(const char* ascii_data_in) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001283 return AllocFromModifiedUtf8(GetJavaLangString(),
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001284 strlen(ascii_data_in),
1285 ascii_data_in);
1286 }
1287
Jesse Wilson8989d992011-08-02 13:39:42 -07001288 static String* AllocFromModifiedUtf8(int32_t utf16_length,
1289 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001290 return AllocFromModifiedUtf8(GetJavaLangString(),
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001291 utf16_length, utf8_data_in);
Jesse Wilson8989d992011-08-02 13:39:42 -07001292 }
1293
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001294 static void InitClasses(Class* java_lang_String);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001295
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001296 static String* Alloc(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001297 int32_t utf16_length) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001298 String* string = down_cast<String*>(java_lang_String->NewInstance());
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001299 CharArray* array = CharArray::Alloc(utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001300 string->array_ = array;
1301 string->count_ = utf16_length;
1302 return string;
1303 }
1304
1305 // Convert Modified UTF-8 to UTF-16
1306 // http://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8
1307 static void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_data_out, const char* utf8_data_in) {
1308 while (*utf8_data_in != '\0') {
1309 *utf16_data_out++ = GetUtf16FromUtf8(&utf8_data_in);
1310 }
1311 }
1312
1313 // Retrieve the next UTF-16 character from a UTF-8 string.
1314 //
1315 // Advances "*pUtf8Ptr" to the start of the next character.
1316 //
1317 // WARNING: If a string is corrupted by dropping a '\0' in the middle
1318 // of a 3-byte sequence, you can end up overrunning the buffer with
1319 // reads (and possibly with the writes if the length was computed and
1320 // cached before the damage). For performance reasons, this function
1321 // assumes that the string being parsed is known to be valid (e.g., by
1322 // already being verified). Most strings we process here are coming
1323 // out of dex files or other internal translations, so the only real
1324 // risk comes from the JNI NewStringUTF call.
1325 static uint16_t GetUtf16FromUtf8(const char** utf8_data_in) {
1326 uint8_t one = *(*utf8_data_in)++;
1327 if ((one & 0x80) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001328 // one-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001329 return one;
1330 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001331 // two- or three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001332 uint8_t two = *(*utf8_data_in)++;
1333 if ((one & 0x20) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001334 // two-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001335 return ((one & 0x1f) << 6) |
1336 (two & 0x3f);
1337 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001338 // three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001339 uint8_t three = *(*utf8_data_in)++;
1340 return ((one & 0x0f) << 12) |
1341 ((two & 0x3f) << 6) |
1342 (three & 0x3f);
1343 }
1344
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001345 // Like "strlen", but for strings encoded with "modified" UTF-8.
1346 //
1347 // The value returned is the number of characters, which may or may not
1348 // be the same as the number of bytes.
1349 //
1350 // (If this needs optimizing, try: mask against 0xa0, shift right 5,
1351 // get increment {1-3} from table of 8 values.)
1352 static size_t ModifiedUtf8Len(const char* utf8) {
1353 size_t len = 0;
1354 int ic;
1355 while ((ic = *utf8++) != '\0') {
1356 len++;
1357 if ((ic & 0x80) == 0) {
1358 // one-byte encoding
1359 continue;
1360 }
1361 // two- or three-byte encoding
1362 utf8++;
1363 if ((ic & 0x20) == 0) {
1364 // two-byte encoding
1365 continue;
1366 }
1367 // three-byte encoding
1368 utf8++;
1369 }
1370 return len;
1371 }
1372
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001373 // The java/lang/String.computeHashCode() algorithm
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001374 static int32_t ComputeUtf16Hash(const uint16_t* string_data, size_t string_length) {
1375 int32_t hash = 0;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001376 while (string_length--) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001377 hash = hash * 31 + *string_data++;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001378 }
1379 return hash;
1380 }
1381
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001382 void ComputeHashCode() {
1383 hash_code_ = ComputeUtf16Hash(array_->GetData(), count_);
1384 }
1385
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001386 bool Equals(const char* modified_utf8) const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001387 for (uint32_t i = 0; i < GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001388 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1389 if (ch == '\0' || ch != CharAt(i)) {
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001390 return false;
1391 }
1392 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001393 return *modified_utf8 == '\0';
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001394 }
1395
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001396 bool Equals(const StringPiece& modified_utf8) const {
1397 // TODO: do not assume C-string representation.
1398 return Equals(modified_utf8.data());
1399 }
1400
1401 bool Equals(const String* that) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001402 // TODO short circuit on hash_code_
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001403 if (this->GetLength() != that->GetLength()) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001404 return false;
1405 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001406 for (uint32_t i = 0; i < that->GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001407 if (this->CharAt(i) != that->CharAt(i)) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001408 return false;
1409 }
1410 }
1411 return true;
1412 }
1413
Carl Shapirof88c9522011-08-06 15:47:38 -07001414 bool Equals(const uint16_t* that_chars, uint32_t that_offset, uint32_t that_length) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001415 if (this->GetLength() != that_length) {
1416 return false;
1417 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001418 for (uint32_t i = 0; i < that_length; ++i) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001419 if (this->CharAt(i) != that_chars[that_offset + i]) {
1420 return false;
1421 }
1422 }
1423 return true;
1424 }
1425
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001426 private:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001427 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
1428 CharArray* array_;
1429
Carl Shapirof88c9522011-08-06 15:47:38 -07001430 uint32_t hash_code_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001431
Carl Shapirof88c9522011-08-06 15:47:38 -07001432 uint32_t offset_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001433
Carl Shapirof88c9522011-08-06 15:47:38 -07001434 uint32_t count_;
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001435
1436 static Class* GetJavaLangString() {
1437 DCHECK(java_lang_String_ != NULL);
1438 return java_lang_String_;
1439 }
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001440
1441 static Class* java_lang_String_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001442
1443 DISALLOW_IMPLICIT_CONSTRUCTORS(String);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001444};
1445
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001446class InterfaceEntry {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001447 public:
Carl Shapirof88c9522011-08-06 15:47:38 -07001448 InterfaceEntry() : klass_(NULL), method_index_array_(NULL) {
1449 }
1450
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001451 Class* GetClass() const {
1452 return klass_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001453 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001454
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001455 void SetClass(Class* klass) {
1456 klass_ = klass;
Carl Shapirof88c9522011-08-06 15:47:38 -07001457 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001458
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001459 private:
1460 // Points to the interface class.
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001461 Class* klass_;
1462
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001463 public: // TODO: private
1464 // Index into array of vtable offsets. This points into the
1465 // ifviPool, which holds the vtables for all interfaces declared by
1466 // this class.
1467 uint32_t* method_index_array_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001468
1469 private:
1470 DISALLOW_COPY_AND_ASSIGN(InterfaceEntry);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001471};
1472
1473} // namespace art
1474
1475#endif // ART_SRC_OBJECT_H_