blob: 4da6725588ae867dde9d4898302be9a432f49835 [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_) {
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700631 Thread* self = Thread::Current();
632 self->ThrowNewException("Ljava/lang/ArrayIndexOutOfBoundsException;",
633 "length=%i; index=%i", length_, index);
Elliott Hughes289da822011-08-16 10:11:20 -0700634 }
635 return true;
636 }
637
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700638 private:
639 // The number of array elements.
Elliott Hughes289da822011-08-16 10:11:20 -0700640 int32_t length_;
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400641 // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary
642 int32_t padding_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700643
Carl Shapirof88c9522011-08-06 15:47:38 -0700644 DISALLOW_IMPLICIT_CONSTRUCTORS(Array);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700645};
646
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700647template<class T>
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700648class ObjectArray : public Array {
649 public:
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700650 static ObjectArray<T>* Alloc(Class* object_array_class,
651 size_t length) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700652 return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700653 }
654
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700655 T* const * GetData() const {
656 return reinterpret_cast<T* const *>(&elements_);
657 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400658
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700659 T** GetData() {
660 return reinterpret_cast<T**>(&elements_);
661 }
Jesse Wilsondf4189c2011-08-09 17:10:28 -0400662
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700663 T* Get(int32_t i) const {
Elliott Hughes289da822011-08-16 10:11:20 -0700664 if (!IsValidIndex(i)) {
665 return NULL;
666 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700667 return GetData()[i];
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700668 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700669
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700670 void Set(int32_t i, T* object) {
Elliott Hughes289da822011-08-16 10:11:20 -0700671 if (IsValidIndex(i)) {
672 // TODO: ArrayStoreException
673 GetData()[i] = object; // TODO: write barrier
674 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700675 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700676
677 static void Copy(ObjectArray<T>* src, int src_pos,
678 ObjectArray<T>* dst, int dst_pos,
679 size_t length) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700680 for (size_t i = 0; i < length; i++) {
681 dst->Set(dst_pos + i, src->Get(src_pos + i));
682 }
683 }
Carl Shapirof88c9522011-08-06 15:47:38 -0700684
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700685 ObjectArray<T>* CopyOf(int32_t new_length) {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -0700686 ObjectArray<T>* new_array = Alloc(klass_, new_length);
687 Copy(this, 0, new_array, 0, std::min(GetLength(), new_length));
688 return new_array;
689 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700690
691 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -0700692 // Location of first element.
693 T* elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -0700694
695 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700696};
697
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700698// ClassLoader objects.
699class ClassLoader : public Object {
700 public:
701 std::vector<const DexFile*>& GetClassPath() {
702 return class_path_;
703 }
704 void SetClassPath(std::vector<const DexFile*>& class_path) {
705 DCHECK_EQ(0U, class_path_.size());
706 class_path_ = class_path;
707 }
708
709 private:
710 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
711 Object* packages_;
712 ClassLoader* parent_;
713
714 // TODO remove once we can create a real PathClassLoader
715 std::vector<const DexFile*> class_path_;
716
Carl Shapirof88c9522011-08-06 15:47:38 -0700717 DISALLOW_IMPLICIT_CONSTRUCTORS(ClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700718};
719
720class BaseDexClassLoader : public ClassLoader {
721 private:
722 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
723 String* original_path_;
724 Object* path_list_;
Carl Shapirof88c9522011-08-06 15:47:38 -0700725 DISALLOW_IMPLICIT_CONSTRUCTORS(BaseDexClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700726};
727
728class PathClassLoader : public BaseDexClassLoader {
729 private:
Carl Shapirof88c9522011-08-06 15:47:38 -0700730 DISALLOW_IMPLICIT_CONSTRUCTORS(PathClassLoader);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700731};
732
Carl Shapiro1fb86202011-06-27 17:43:13 -0700733// Class objects.
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700734class Class : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -0700735 public:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700736
737 // Class Status
738 //
739 // kStatusNotReady: If a Class cannot be found in the class table by
740 // FindClass, it allocates an new one with AllocClass in the
741 // kStatusNotReady and calls LoadClass. Note if it does find a
742 // class, it may not be kStatusResolved and it will try to push it
743 // forward toward kStatusResolved.
744 //
745 // kStatusIdx: LoadClass populates with Class with information from
746 // the DexFile, moving the status to kStatusIdx, indicating that the
747 // Class values in super_class_ and interfaces_ have not been
748 // populated based on super_class_idx_ and interfaces_idx_. The new
749 // Class can then be inserted into the classes table.
750 //
751 // kStatusLoaded: After taking a lock on Class, the ClassLinker will
752 // attempt to move a kStatusIdx class forward to kStatusLoaded by
753 // using ResolveClass to initialize the super_class_ and interfaces_.
754 //
755 // kStatusResolved: Still holding the lock on Class, the ClassLinker
756 // will use LinkClass to link all members, creating Field and Method
757 // objects, setting up the vtable, etc. On success, the class is
758 // marked kStatusResolved.
759
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700760 enum Status {
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700761 kStatusError = -1,
762 kStatusNotReady = 0,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700763 kStatusIdx = 1, // loaded, DEX idx in super_class_idx_ and interfaces_idx_
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700764 kStatusLoaded = 2, // DEX idx values resolved
765 kStatusResolved = 3, // part of linking
766 kStatusVerifying = 4, // in the process of being verified
767 kStatusVerified = 5, // logically part of linking; done pre-init
768 kStatusInitializing = 6, // class init in progress
769 kStatusInitialized = 7, // ready to go
Carl Shapiro1fb86202011-06-27 17:43:13 -0700770 };
771
772 enum PrimitiveType {
773 kPrimNot = -1
774 };
775
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700776 Object* NewInstance() {
777 return Heap::AllocObject(this, this->object_size_);
778 }
779
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700780 Class* GetSuperClass() const {
781 return super_class_;
782 }
783
784 uint32_t GetSuperClassIdx() const {
785 return super_class_idx_;
786 }
787
788 bool HasSuperClass() const {
789 return super_class_ != NULL;
790 }
791
Brian Carlstromf7ed11a2011-08-09 17:55:51 -0700792 bool IsAssignableFrom(const Class* klass) const {
793 DCHECK(klass != NULL);
794 if (this == klass) {
795 return true;
796 }
797 if (IsInterface()) {
798 return klass->Implements(this);
799 }
800 if (klass->IsArray()) {
801 return IsAssignableFromArray(klass);
802 }
803 return klass->IsSubClass(this);
804 }
805
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700806 ClassLoader* GetClassLoader() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700807 return class_loader_;
808 }
809
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700810 DexCache* GetDexCache() const {
811 return dex_cache_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700812 }
813
814 Class* GetComponentType() const {
815 return component_type_;
816 }
817
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700818 static size_t GetTypeSize(const StringPiece& descriptor) {
819 switch (descriptor[0]) {
820 case 'B': return 1; // byte
821 case 'C': return 2; // char
822 case 'D': return 8; // double
823 case 'F': return 4; // float
824 case 'I': return 4; // int
825 case 'J': return 8; // long
826 case 'S': return 2; // short
827 case 'Z': return 1; // boolean
828 case 'L': return sizeof(Object*);
829 case '[': return sizeof(Array*);
830 default:
831 LOG(ERROR) << "Unknown type " << descriptor;
832 return 0;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700833 }
834 }
835
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700836 size_t GetComponentSize() const {
837 return GetTypeSize(component_type_->descriptor_);
838 }
839
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700840 const StringPiece& GetDescriptor() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700841 DCHECK_NE(0, descriptor_.size());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700842 return descriptor_;
843 }
844
845 Status GetStatus() const {
846 return status_;
847 }
848
849 void SetStatus(Status new_status) {
850 // TODO: validate transition
851 status_ = new_status;
852 }
853
Carl Shapiro69759ea2011-07-21 18:13:35 -0700854 // Returns true if the class has failed to link.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700855 bool IsErroneous() const {
856 return GetStatus() == kStatusError;
857 }
858
Carl Shapiro69759ea2011-07-21 18:13:35 -0700859 // Returns true if the class has been verified.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700860 bool IsVerified() const {
861 return GetStatus() >= kStatusVerified;
862 }
863
Carl Shapiro69759ea2011-07-21 18:13:35 -0700864 // Returns true if the class has been linked.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700865 bool IsLinked() const {
866 return GetStatus() >= kStatusResolved;
867 }
868
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700869 // Returns true if the class has been loaded.
Carl Shapiro69759ea2011-07-21 18:13:35 -0700870 bool IsLoaded() const {
871 return GetStatus() >= kStatusLoaded;
872 }
873
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700874 // Returns true if the class is initialized.
875 bool IsInitialized() const {
876 return GetStatus() == kStatusInitialized;
877 }
878
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700879 // Returns true if this class is in the same packages as that class.
880 bool IsInSamePackage(const Class* that) const;
881
Ian Rogersb033c752011-07-20 12:22:35 -0700882 static bool IsInSamePackage(const StringPiece& descriptor1,
883 const StringPiece& descriptor2);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700884
885 // Returns true if this class represents an array class.
886 bool IsArray() const {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700887 return GetDescriptor()[0] == '['; // TODO: avoid parsing the descriptor
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700888 }
889
890 // Returns true if the class is an interface.
891 bool IsInterface() const {
892 return (access_flags_ & kAccInterface) != 0;
893 }
894
895 // Returns true if the class is declared public.
896 bool IsPublic() const {
897 return (access_flags_ & kAccPublic) != 0;
898 }
899
900 // Returns true if the class is declared final.
901 bool IsFinal() const {
902 return (access_flags_ & kAccFinal) != 0;
903 }
904
905 // Returns true if the class is abstract.
906 bool IsAbstract() const {
907 return (access_flags_ & kAccAbstract) != 0;
908 }
909
910 // Returns true if the class is an annotation.
911 bool IsAnnotation() const {
912 return (access_flags_ & kAccAnnotation) != 0;
913 }
914
915 // Returns true if the class is a primitive type.
916 bool IsPrimitive() const {
917 return primitive_type_ != kPrimNot;
918 }
919
Brian Carlstromae3ac012011-07-27 01:30:28 -0700920 // Returns true if the class is synthetic.
921 bool IsSynthetic() const {
922 return (access_flags_ & kAccSynthetic) != 0;
923 }
924
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700925 // Returns true if this class can access that class.
926 bool CanAccess(const Class* that) const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700927 return that->IsPublic() || this->IsInSamePackage(that);
Carl Shapiro894d0fa2011-06-30 14:48:49 -0700928 }
929
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700930 // Returns the number of static, private, and constructor methods.
931 size_t NumDirectMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700932 return (direct_methods_ != NULL) ? direct_methods_->GetLength() : 0;
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700933 }
934
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700935 Method* GetDirectMethod(int32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700936 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700937 return direct_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700938 }
939
940 void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700941 DCHECK_NE(NumDirectMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700942 direct_methods_->Set(i, f);
Carl Shapiro3ee755d2011-06-28 12:11:04 -0700943 }
944
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700945 Method* FindDeclaredDirectMethod(const StringPiece& name,
946 const StringPiece& descriptor);
947
948 Method* FindDirectMethod(const StringPiece& name,
949 const StringPiece& descriptor);
950
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700951 // Returns the number of non-inherited virtual methods.
952 size_t NumVirtualMethods() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700953 return (virtual_methods_ != NULL) ? virtual_methods_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700954 }
955
956 Method* GetVirtualMethod(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700957 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700958 return virtual_methods_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700959 }
960
961 void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700962 DCHECK_NE(NumVirtualMethods(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700963 virtual_methods_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700964 }
965
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700966 Method* FindDeclaredVirtualMethod(const StringPiece& name,
967 const StringPiece& descriptor);
968
969 Method* FindVirtualMethod(const StringPiece& name,
970 const StringPiece& descriptor);
971
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700972 size_t NumInstanceFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700973 return (ifields_ != NULL) ? ifields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700974 }
975
Carl Shapiro69759ea2011-07-21 18:13:35 -0700976 // Returns the number of instance fields containing reference types.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700977 size_t NumReferenceInstanceFields() const {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700978 return num_reference_instance_fields_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700979 }
980
Jesse Wilson35baaab2011-08-10 16:18:03 -0400981 Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700982 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700983 return ifields_->Get(i);
Brian Carlstroma7f4f482011-07-17 17:01:34 -0700984 }
985
Jesse Wilson35baaab2011-08-10 16:18:03 -0400986 void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700987 DCHECK_NE(NumInstanceFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700988 ifields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700989 }
990
991 size_t NumStaticFields() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700992 return (sfields_ != NULL) ? sfields_->GetLength() : 0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700993 }
994
Jesse Wilson35baaab2011-08-10 16:18:03 -0400995 Field* GetStaticField(uint32_t i) const { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700996 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700997 return sfields_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700998 }
999
Jesse Wilson35baaab2011-08-10 16:18:03 -04001000 void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001001 DCHECK_NE(NumStaticFields(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001002 sfields_->Set(i, f);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001003 }
1004
1005 uint32_t GetReferenceOffsets() const {
1006 return reference_offsets_;
1007 }
1008
1009 void SetReferenceOffsets(uint32_t new_reference_offsets) {
1010 reference_offsets_ = new_reference_offsets;
1011 }
1012
Carl Shapiro69759ea2011-07-21 18:13:35 -07001013 size_t NumInterfaces() const {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001014 return (interfaces_ != NULL) ? interfaces_->GetLength() : 0;
Carl Shapiro69759ea2011-07-21 18:13:35 -07001015 }
1016
1017 Class* GetInterface(uint32_t i) const {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001018 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001019 return interfaces_->Get(i);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001020 }
1021
1022 void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001023 DCHECK_NE(NumInterfaces(), 0U);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001024 interfaces_->Set(i, f);
Carl Shapiro69759ea2011-07-21 18:13:35 -07001025 }
1026
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001027 void SetVerifyErrorClass(Class* klass) {
1028 // Note SetFieldObject is used rather than verify_error_class_ directly for the barrier
1029 size_t field_offset = OFFSETOF_MEMBER(Class, verify_error_class_);
1030 klass->SetFieldObject(field_offset, klass);
1031 }
1032
1033 private:
1034 bool Implements(const Class* klass) const;
1035 bool IsArrayAssignableFromArray(const Class* klass) const;
1036 bool IsAssignableFromArray(const Class* klass) const;
1037 bool IsSubClass(const Class* klass) const;
1038
Ian Rogersb033c752011-07-20 12:22:35 -07001039 public: // TODO: private
Carl Shapiro1fb86202011-06-27 17:43:13 -07001040 // leave space for instance data; we could access fields directly if
1041 // we freeze the definition of java/lang/Class
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001042#define CLASS_FIELD_SLOTS 1
1043 // Class.#0 name
Carl Shapiro1fb86202011-06-27 17:43:13 -07001044 uint32_t instance_data_[CLASS_FIELD_SLOTS];
1045#undef CLASS_FIELD_SLOTS
1046
1047 // UTF-8 descriptor for the class from constant pool
1048 // ("Ljava/lang/Class;"), or on heap if generated ("[C")
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001049 StringPiece descriptor_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001050
1051 // Proxy classes have their descriptor allocated on the native heap.
1052 // When this field is non-NULL it must be explicitly freed.
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001053 std::string* descriptor_alloc_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001054
1055 // access flags; low 16 bits are defined by VM spec
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001056 uint32_t access_flags_; // TODO: make an instance field?
Carl Shapiro1fb86202011-06-27 17:43:13 -07001057
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001058 // DexCache of resolved constant pool entries
Carl Shapiro1fb86202011-06-27 17:43:13 -07001059 // (will be NULL for VM-generated, e.g. arrays and primitive classes)
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001060 DexCache* dex_cache_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001061
1062 // state of class initialization
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001063 Status status_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001064
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001065 // If class verify fails, we must return same error on subsequent tries.
1066 // Update with SetVerifyErrorClass to ensure a write barrier is used.
1067 const Class* verify_error_class_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001068
1069 // threadId, used to check for recursive <clinit> invocation
1070 uint32_t clinit_thread_id_;
1071
1072 // Total object size; used when allocating storage on gc heap. (For
1073 // interfaces and abstract classes this will be zero.)
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001074 size_t object_size_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001075
1076 // For array classes, the class object for base element, for
1077 // instanceof/checkcast (for String[][][], this will be String).
1078 // Otherwise, NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001079 Class* component_type_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001080
1081 // For array classes, the number of array dimensions, e.g. int[][]
1082 // is 2. Otherwise 0.
1083 int32_t array_rank_;
1084
1085 // primitive type index, or PRIM_NOT (-1); set for generated prim classes
1086 PrimitiveType primitive_type_;
1087
1088 // The superclass, or NULL if this is java.lang.Object or a
1089 // primitive type.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001090 Class* super_class_; // TODO: make an instance field
1091 uint32_t super_class_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001092
1093 // defining class loader, or NULL for the "bootstrap" system loader
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001094 ClassLoader* class_loader_; // TODO: make an instance field
Carl Shapiro1fb86202011-06-27 17:43:13 -07001095
1096 // initiating class loader list
1097 // NOTE: for classes with low serialNumber, these are unused, and the
1098 // values are kept in a table in gDvm.
Ian Rogersb033c752011-07-20 12:22:35 -07001099 // InitiatingLoaderList initiating_loader_list_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001100
1101 // array of interfaces this class implements directly
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001102 ObjectArray<Class>* interfaces_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001103 uint32_t* interfaces_idx_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001104
1105 // static, private, and <init> methods
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001106 ObjectArray<Method>* direct_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001107
1108 // virtual methods defined in this class; invoked through vtable
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001109 ObjectArray<Method>* virtual_methods_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001110
1111 // Virtual method table (vtable), for use by "invoke-virtual". The
1112 // vtable from the superclass is copied in, and virtual methods from
1113 // our class either replace those from the super or are appended.
Brian Carlstrom4a96b602011-07-26 16:40:23 -07001114 ObjectArray<Method>* vtable_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001115
1116 // Interface table (iftable), one entry per interface supported by
1117 // this class. That means one entry for each interface we support
1118 // directly, indirectly via superclass, or indirectly via
1119 // superinterface. This will be null if neither we nor our
1120 // superclass implement any interfaces.
1121 //
1122 // Why we need this: given "class Foo implements Face", declare
1123 // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah"
1124 // is part of the Face interface. We can't easily use a single
1125 // vtable.
1126 //
1127 // For every interface a concrete class implements, we create a list
1128 // of virtualMethod indices for the methods in the interface.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001129 size_t iftable_count_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001130 InterfaceEntry* iftable_;
1131
1132 // The interface vtable indices for iftable get stored here. By
1133 // placing them all in a single pool for each class that implements
1134 // interfaces, we decrease the number of allocations.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001135 size_t ifvi_pool_count_;
1136 uint32_t* ifvi_pool_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001137
1138 // instance fields
1139 //
1140 // These describe the layout of the contents of a
1141 // DataObject-compatible Object. Note that only the fields directly
1142 // declared by this class are listed in ifields; fields declared by
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001143 // a superclass are listed in the superclass's Class.ifields.
Carl Shapiro1fb86202011-06-27 17:43:13 -07001144 //
1145 // All instance fields that refer to objects are guaranteed to be at
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001146 // the beginning of the field list. num_reference_instance_fields_
1147 // specifies the number of reference fields.
Jesse Wilson35baaab2011-08-10 16:18:03 -04001148 ObjectArray<Field>* ifields_;
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001149
1150 // number of fields that are object refs
Carl Shapiro69759ea2011-07-21 18:13:35 -07001151 size_t num_reference_instance_fields_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001152
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001153 // Bitmap of offsets of ifields.
1154 uint32_t reference_offsets_;
Carl Shapiro1fb86202011-06-27 17:43:13 -07001155
1156 // source file name, if known. Otherwise, NULL.
1157 const char* source_file_;
1158
Jesse Wilson7833bd22011-08-09 18:31:44 -04001159 // Static fields
Jesse Wilson35baaab2011-08-10 16:18:03 -04001160 ObjectArray<Field>* sfields_;
Jesse Wilson7833bd22011-08-09 18:31:44 -04001161
1162 // static field storage
1163 //
1164 // Each static field is stored in one of three arrays:
1165 // o references are stored in static_references_
1166 // o doubles and longs are stored in static_64bit_primitives_
1167 // o everything else is in static_32bit_primitives_
1168 // Static fields select their array using their type and their index using the
1169 // Field->slot_ member. Storing static fields in arrays avoids the need for a
1170 // special case in the GC.
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001171 ObjectArray<Object>* static_references_;
1172 IntArray* static_32bit_primitives_;
1173 LongArray* static_64bit_primitives_;
1174
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001175 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001176 DISALLOW_IMPLICIT_CONSTRUCTORS(Class);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001177};
Elliott Hughes1f359b02011-07-17 14:27:17 -07001178std::ostream& operator<<(std::ostream& os, const Class::Status& rhs);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001179
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001180inline bool Object::InstanceOf(const Class* klass) const {
Jesse Wilson14150742011-07-29 19:04:44 -04001181 DCHECK(klass != NULL);
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001182 DCHECK(klass_ != NULL);
1183 return klass->IsAssignableFrom(klass_);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001184}
1185
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001186inline bool Object::IsClass() const {
1187 return klass_ == klass_->klass_;
1188}
1189
1190inline bool Object::IsObjectArray() const {
1191 return IsArray() && !klass_->component_type_->IsPrimitive();
1192}
1193
1194inline bool Object::IsArray() const {
1195 return klass_->IsArray();
1196}
1197
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001198inline size_t Object::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001199 if (IsArray()) {
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001200 return AsArray()->SizeOf();
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001201 }
1202 return klass_->object_size_;
1203}
1204
Elliott Hughes04b63fd2011-08-16 09:40:10 -07001205inline size_t Array::SizeOf() const {
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001206 return Size(GetLength(), klass_->GetComponentSize());
1207}
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001208
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001209class DataObject : public Object {
1210 public:
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001211 uint32_t fields_[0];
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001212 private:
Carl Shapirof88c9522011-08-06 15:47:38 -07001213 DISALLOW_IMPLICIT_CONSTRUCTORS(DataObject);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001214};
1215
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001216template<class T>
1217class PrimitiveArray : public Array {
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001218 public:
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001219 static PrimitiveArray<T>* Alloc(size_t length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001220
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001221 const T* GetData() const {
1222 return reinterpret_cast<const T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001223 }
1224
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001225 T* GetData() {
1226 return reinterpret_cast<T*>(&elements_);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001227 }
1228
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001229 T Get(int32_t i) const {
Elliott Hughes289da822011-08-16 10:11:20 -07001230 if (!IsValidIndex(i)) {
1231 return T();
1232 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001233 return GetData()[i];
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001234 }
1235
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001236 void Set(int32_t i, T value) {
Elliott Hughes289da822011-08-16 10:11:20 -07001237 // TODO: ArrayStoreException
1238 if (IsValidIndex(i)) {
1239 GetData()[i] = value;
1240 }
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001241 }
1242
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001243 static void SetArrayClass(Class* array_class) {
1244 CHECK(array_class != NULL);
1245 array_class_ = array_class;
1246 }
1247
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001248 private:
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001249 // Location of first element.
1250 T elements_[0];
Carl Shapirof88c9522011-08-06 15:47:38 -07001251
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001252 static Class* array_class_;
1253
Carl Shapirof88c9522011-08-06 15:47:38 -07001254 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001255};
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001256
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001257class String : public Object {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001258 public:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001259 const CharArray* GetCharArray() const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001260 DCHECK(array_ != NULL);
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001261 return array_;
1262 }
1263
Carl Shapirof88c9522011-08-06 15:47:38 -07001264 uint32_t GetHashCode() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001265 return hash_code_;
1266 }
1267
Carl Shapirof88c9522011-08-06 15:47:38 -07001268 uint32_t GetOffset() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001269 return offset_;
1270 }
1271
Carl Shapirof88c9522011-08-06 15:47:38 -07001272 uint32_t GetLength() const {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001273 return count_;
1274 }
1275
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001276 // TODO: do we need this? Equals is the only caller, and could
1277 // bounds check itself.
Elliott Hughes289da822011-08-16 10:11:20 -07001278 uint16_t CharAt(int32_t index) const {
1279 if (index < 0 || index >= count_) {
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001280 Thread* self = Thread::Current();
1281 self->ThrowNewException("Ljava/lang/StringIndexOutOfBoundsException;",
1282 "length=%i; index=%i", count_, index);
Elliott Hughes289da822011-08-16 10:11:20 -07001283 return 0;
1284 } else {
1285 return GetCharArray()->Get(index + GetOffset());
1286 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001287 }
1288
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001289 static String* AllocFromUtf16(int32_t utf16_length,
1290 uint16_t* utf16_data_in,
1291 int32_t hash_code) {
Carl Shapirof88c9522011-08-06 15:47:38 -07001292 String* string = Alloc(GetJavaLangString(),
Carl Shapirof88c9522011-08-06 15:47:38 -07001293 utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001294 // TODO use 16-bit wide memset variant
1295 for (int i = 0; i < utf16_length; i++ ) {
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001296 string->array_->Set(i, utf16_data_in[i]);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001297 }
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001298 string->ComputeHashCode();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001299 return string;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001300 }
1301
1302 static String* AllocFromModifiedUtf8(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001303 int32_t utf16_length,
1304 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001305 String* string = Alloc(java_lang_String, utf16_length);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001306 uint16_t* utf16_data_out = string->array_->GetData();
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001307 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001308 string->ComputeHashCode();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07001309 return string;
1310 }
1311
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001312 // Creates a String of the given ASCII characters. It is an error to call this
1313 // using non-ASCII characters as this function assumes one char per byte.
1314 static String* AllocFromAscii(const char* ascii_data_in) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001315 return AllocFromModifiedUtf8(GetJavaLangString(),
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001316 strlen(ascii_data_in),
1317 ascii_data_in);
1318 }
1319
Jesse Wilson8989d992011-08-02 13:39:42 -07001320 static String* AllocFromModifiedUtf8(int32_t utf16_length,
1321 const char* utf8_data_in) {
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001322 return AllocFromModifiedUtf8(GetJavaLangString(),
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001323 utf16_length, utf8_data_in);
Jesse Wilson8989d992011-08-02 13:39:42 -07001324 }
1325
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001326 static void InitClasses(Class* java_lang_String);
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001327
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001328 static String* Alloc(Class* java_lang_String,
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001329 int32_t utf16_length) {
Brian Carlstromf7ed11a2011-08-09 17:55:51 -07001330 String* string = down_cast<String*>(java_lang_String->NewInstance());
Elliott Hughesd8ddfd52011-08-15 14:32:53 -07001331 CharArray* array = CharArray::Alloc(utf16_length);
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001332 string->array_ = array;
1333 string->count_ = utf16_length;
1334 return string;
1335 }
1336
1337 // Convert Modified UTF-8 to UTF-16
1338 // http://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8
1339 static void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_data_out, const char* utf8_data_in) {
1340 while (*utf8_data_in != '\0') {
1341 *utf16_data_out++ = GetUtf16FromUtf8(&utf8_data_in);
1342 }
1343 }
1344
1345 // Retrieve the next UTF-16 character from a UTF-8 string.
1346 //
1347 // Advances "*pUtf8Ptr" to the start of the next character.
1348 //
1349 // WARNING: If a string is corrupted by dropping a '\0' in the middle
1350 // of a 3-byte sequence, you can end up overrunning the buffer with
1351 // reads (and possibly with the writes if the length was computed and
1352 // cached before the damage). For performance reasons, this function
1353 // assumes that the string being parsed is known to be valid (e.g., by
1354 // already being verified). Most strings we process here are coming
1355 // out of dex files or other internal translations, so the only real
1356 // risk comes from the JNI NewStringUTF call.
1357 static uint16_t GetUtf16FromUtf8(const char** utf8_data_in) {
1358 uint8_t one = *(*utf8_data_in)++;
1359 if ((one & 0x80) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001360 // one-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001361 return one;
1362 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001363 // two- or three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001364 uint8_t two = *(*utf8_data_in)++;
1365 if ((one & 0x20) == 0) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001366 // two-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001367 return ((one & 0x1f) << 6) |
1368 (two & 0x3f);
1369 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001370 // three-byte encoding
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001371 uint8_t three = *(*utf8_data_in)++;
1372 return ((one & 0x0f) << 12) |
1373 ((two & 0x3f) << 6) |
1374 (three & 0x3f);
1375 }
1376
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001377 // Like "strlen", but for strings encoded with "modified" UTF-8.
1378 //
1379 // The value returned is the number of characters, which may or may not
1380 // be the same as the number of bytes.
1381 //
1382 // (If this needs optimizing, try: mask against 0xa0, shift right 5,
1383 // get increment {1-3} from table of 8 values.)
1384 static size_t ModifiedUtf8Len(const char* utf8) {
1385 size_t len = 0;
1386 int ic;
1387 while ((ic = *utf8++) != '\0') {
1388 len++;
1389 if ((ic & 0x80) == 0) {
1390 // one-byte encoding
1391 continue;
1392 }
1393 // two- or three-byte encoding
1394 utf8++;
1395 if ((ic & 0x20) == 0) {
1396 // two-byte encoding
1397 continue;
1398 }
1399 // three-byte encoding
1400 utf8++;
1401 }
1402 return len;
1403 }
1404
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001405 // The java/lang/String.computeHashCode() algorithm
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001406 static int32_t ComputeUtf16Hash(const uint16_t* string_data, size_t string_length) {
1407 int32_t hash = 0;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001408 while (string_length--) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001409 hash = hash * 31 + *string_data++;
Brian Carlstrom0b138b22011-07-27 15:19:17 -07001410 }
1411 return hash;
1412 }
1413
Jesse Wilsonfd687c52011-08-04 19:27:35 -07001414 void ComputeHashCode() {
1415 hash_code_ = ComputeUtf16Hash(array_->GetData(), count_);
1416 }
1417
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001418 // TODO: do we need this overload? give it a more intention-revealing name.
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001419 bool Equals(const char* modified_utf8) const {
Carl Shapirof88c9522011-08-06 15:47:38 -07001420 for (uint32_t i = 0; i < GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001421 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
1422 if (ch == '\0' || ch != CharAt(i)) {
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001423 return false;
1424 }
1425 }
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001426 return *modified_utf8 == '\0';
Jesse Wilsoncbe9fc02011-07-29 18:59:50 -04001427 }
1428
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001429 // TODO: do we need this overload? give it a more intention-revealing name.
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001430 bool Equals(const StringPiece& modified_utf8) const {
1431 // TODO: do not assume C-string representation.
1432 return Equals(modified_utf8.data());
1433 }
1434
1435 bool Equals(const String* that) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001436 // TODO short circuit on hash_code_
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001437 if (this->GetLength() != that->GetLength()) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001438 return false;
1439 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001440 for (uint32_t i = 0; i < that->GetLength(); ++i) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001441 if (this->CharAt(i) != that->CharAt(i)) {
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001442 return false;
1443 }
1444 }
1445 return true;
1446 }
1447
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001448 // TODO: do we need this overload? give it a more intention-revealing name.
Carl Shapirof88c9522011-08-06 15:47:38 -07001449 bool Equals(const uint16_t* that_chars, uint32_t that_offset, uint32_t that_length) const {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001450 if (this->GetLength() != that_length) {
1451 return false;
1452 }
Carl Shapirof88c9522011-08-06 15:47:38 -07001453 for (uint32_t i = 0; i < that_length; ++i) {
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001454 if (this->CharAt(i) != that_chars[that_offset + i]) {
1455 return false;
1456 }
1457 }
1458 return true;
1459 }
1460
Brian Carlstroma7f4f482011-07-17 17:01:34 -07001461 private:
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001462 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
1463 CharArray* array_;
1464
Carl Shapirof88c9522011-08-06 15:47:38 -07001465 uint32_t hash_code_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001466
Elliott Hughes289da822011-08-16 10:11:20 -07001467 int32_t offset_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001468
Elliott Hughes289da822011-08-16 10:11:20 -07001469 int32_t count_;
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001470
1471 static Class* GetJavaLangString() {
1472 DCHECK(java_lang_String_ != NULL);
1473 return java_lang_String_;
1474 }
Jesse Wilsonf7e85a52011-08-01 18:45:58 -07001475
1476 static Class* java_lang_String_;
Carl Shapiro8860c0e2011-08-04 17:36:16 -07001477
1478 DISALLOW_IMPLICIT_CONSTRUCTORS(String);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001479};
1480
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001481class InterfaceEntry {
Carl Shapiro1fb86202011-06-27 17:43:13 -07001482 public:
Carl Shapirof88c9522011-08-06 15:47:38 -07001483 InterfaceEntry() : klass_(NULL), method_index_array_(NULL) {
1484 }
1485
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001486 Class* GetClass() const {
1487 return 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 void SetClass(Class* klass) {
1491 klass_ = klass;
Carl Shapirof88c9522011-08-06 15:47:38 -07001492 }
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001493
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001494 private:
1495 // Points to the interface class.
Carl Shapiro3ee755d2011-06-28 12:11:04 -07001496 Class* klass_;
1497
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001498 public: // TODO: private
1499 // Index into array of vtable offsets. This points into the
1500 // ifviPool, which holds the vtables for all interfaces declared by
1501 // this class.
1502 uint32_t* method_index_array_;
Carl Shapirof88c9522011-08-06 15:47:38 -07001503
1504 private:
1505 DISALLOW_COPY_AND_ASSIGN(InterfaceEntry);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001506};
1507
1508} // namespace art
1509
1510#endif // ART_SRC_OBJECT_H_