Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 16 | |
| 17 | #ifndef ART_SRC_OBJECT_H_ |
| 18 | #define ART_SRC_OBJECT_H_ |
| 19 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 20 | #include <iosfwd> |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 21 | #include <vector> |
| 22 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 23 | #include "UniquePtr.h" |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 24 | #include "atomic.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 25 | #include "casts.h" |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 26 | #include "constants.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 27 | #include "globals.h" |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 28 | #include "heap.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 29 | #include "logging.h" |
| 30 | #include "macros.h" |
| 31 | #include "offsets.h" |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 32 | #include "runtime.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 33 | #include "stringpiece.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 34 | #include "thread.h" |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 35 | #include "utf.h" |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 36 | |
| 37 | namespace art { |
| 38 | |
| 39 | class Array; |
| 40 | class Class; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 41 | class ClassLoader; |
Brian Carlstrom | 9cc262e | 2011-08-28 12:45:30 -0700 | [diff] [blame] | 42 | class CodeAndDirectMethods; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 43 | class DexCache; |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 44 | class Field; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 45 | class InterfaceEntry; |
| 46 | class Monitor; |
| 47 | class Method; |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 48 | class Object; |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 49 | class StaticStorageBase; |
Jesse Wilson | 46cdd4b | 2011-07-28 17:40:48 -0400 | [diff] [blame] | 50 | class String; |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 51 | template<class T> class ObjectArray; |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 52 | template<class T> class PrimitiveArray; |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 53 | typedef PrimitiveArray<uint8_t> BooleanArray; |
| 54 | typedef PrimitiveArray<int8_t> ByteArray; |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 55 | typedef PrimitiveArray<uint16_t> CharArray; |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 56 | typedef PrimitiveArray<double> DoubleArray; |
| 57 | typedef PrimitiveArray<float> FloatArray; |
| 58 | typedef PrimitiveArray<int32_t> IntArray; |
| 59 | typedef PrimitiveArray<int64_t> LongArray; |
| 60 | typedef PrimitiveArray<int16_t> ShortArray; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 61 | |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 62 | union JValue { |
| 63 | uint8_t z; |
| 64 | int8_t b; |
| 65 | uint16_t c; |
| 66 | int16_t s; |
| 67 | int32_t i; |
| 68 | int64_t j; |
| 69 | float f; |
| 70 | double d; |
| 71 | Object* l; |
| 72 | }; |
| 73 | |
Brian Carlstrom | be97785 | 2011-07-19 14:54:54 -0700 | [diff] [blame] | 74 | static const uint32_t kAccPublic = 0x0001; // class, field, method, ic |
| 75 | static const uint32_t kAccPrivate = 0x0002; // field, method, ic |
| 76 | static const uint32_t kAccProtected = 0x0004; // field, method, ic |
| 77 | static const uint32_t kAccStatic = 0x0008; // field, method, ic |
| 78 | static const uint32_t kAccFinal = 0x0010; // class, field, method, ic |
| 79 | static const uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives) |
| 80 | static const uint32_t kAccSuper = 0x0020; // class (not used in Dalvik) |
| 81 | static const uint32_t kAccVolatile = 0x0040; // field |
| 82 | static const uint32_t kAccBridge = 0x0040; // method (1.5) |
| 83 | static const uint32_t kAccTransient = 0x0080; // field |
| 84 | static const uint32_t kAccVarargs = 0x0080; // method (1.5) |
| 85 | static const uint32_t kAccNative = 0x0100; // method |
| 86 | static const uint32_t kAccInterface = 0x0200; // class, ic |
| 87 | static const uint32_t kAccAbstract = 0x0400; // class, method, ic |
| 88 | static const uint32_t kAccStrict = 0x0800; // method |
| 89 | static const uint32_t kAccSynthetic = 0x1000; // field, method, ic |
| 90 | static const uint32_t kAccAnnotation = 0x2000; // class, ic (1.5) |
| 91 | static const uint32_t kAccEnum = 0x4000; // class, field, ic (1.5) |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 92 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 93 | static const uint32_t kAccMiranda = 0x8000; // method |
| 94 | |
Brian Carlstrom | a331b3c | 2011-07-18 17:47:56 -0700 | [diff] [blame] | 95 | static const uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16) |
| 96 | |
Brian Carlstrom | be97785 | 2011-07-19 14:54:54 -0700 | [diff] [blame] | 97 | static const uint32_t kAccConstructor = 0x00010000; // method (Dalvik only) |
| 98 | static const uint32_t kAccDeclaredSynchronized = 0x00020000; // method (Dalvik only) |
jeffhao | bdb7651 | 2011-09-07 11:43:16 -0700 | [diff] [blame] | 99 | static const uint32_t kAccWritable = 0x80000000; // method (Dalvik only) |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 100 | |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 101 | static const uint32_t kAccClassFlagsMask = (kAccPublic |
| 102 | | kAccFinal |
| 103 | | kAccInterface |
| 104 | | kAccAbstract |
| 105 | | kAccSynthetic |
| 106 | | kAccAnnotation |
| 107 | | kAccEnum); |
| 108 | static const uint32_t kAccInnerClassFlagsMask = (kAccClassFlagsMask |
| 109 | | kAccPrivate |
| 110 | | kAccProtected |
| 111 | | kAccStatic); |
| 112 | static const uint32_t kAccFieldFlagsMask = (kAccPublic |
| 113 | | kAccPrivate |
| 114 | | kAccProtected |
| 115 | | kAccStatic |
| 116 | | kAccFinal |
| 117 | | kAccVolatile |
| 118 | | kAccTransient |
| 119 | | kAccSynthetic |
| 120 | | kAccEnum); |
| 121 | static const uint32_t kAccMethodFlagsMask = (kAccPublic |
| 122 | | kAccPrivate |
| 123 | | kAccProtected |
| 124 | | kAccStatic |
| 125 | | kAccFinal |
| 126 | | kAccSynchronized |
| 127 | | kAccBridge |
| 128 | | kAccVarargs |
| 129 | | kAccNative |
| 130 | | kAccAbstract |
| 131 | | kAccStrict |
| 132 | | kAccSynthetic |
| 133 | | kAccConstructor |
| 134 | | kAccDeclaredSynchronized); |
| 135 | |
| 136 | // if only kAccClassIsReference is set, we have a soft reference |
| 137 | static const uint32_t kAccClassIsReference = 0x8000000; // class is a soft/weak/phantom ref |
| 138 | static const uint32_t kAccClassIsWeakReference = 0x4000000; // class is a weak reference |
| 139 | static const uint32_t kAccClassIsFinalizerReference = 0x2000000; // class is a finalizer reference |
| 140 | static const uint32_t kAccClassIsPhantomReference = 0x1000000; // class is a phantom reference |
| 141 | |
| 142 | static const uint32_t kAccReferenceFlagsMask = (kAccClassIsReference |
| 143 | | kAccClassIsWeakReference |
| 144 | | kAccClassIsFinalizerReference |
| 145 | | kAccClassIsPhantomReference); |
| 146 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 147 | /* |
Brian Carlstrom | a331b3c | 2011-07-18 17:47:56 -0700 | [diff] [blame] | 148 | * Definitions for packing refOffsets in Class. |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 149 | */ |
| 150 | /* |
| 151 | * A magic value for refOffsets. Ignore the bits and walk the super |
| 152 | * chain when this is the value. |
| 153 | * [This is an unlikely "natural" value, since it would be 30 non-ref instance |
| 154 | * fields followed by 2 ref instance fields.] |
| 155 | */ |
| 156 | #define CLASS_WALK_SUPER ((unsigned int)(3)) |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 157 | #define CLASS_BITS_PER_WORD (sizeof(unsigned long int) * 8) |
| 158 | #define CLASS_OFFSET_ALIGNMENT 4 |
| 159 | #define CLASS_HIGH_BIT ((unsigned int)1 << (CLASS_BITS_PER_WORD - 1)) |
| 160 | /* |
| 161 | * Given an offset, return the bit number which would encode that offset. |
| 162 | * Local use only. |
| 163 | */ |
| 164 | #define _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) \ |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 165 | ((unsigned int)(byteOffset) / \ |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 166 | CLASS_OFFSET_ALIGNMENT) |
| 167 | /* |
| 168 | * Is the given offset too large to be encoded? |
| 169 | */ |
| 170 | #define CLASS_CAN_ENCODE_OFFSET(byteOffset) \ |
| 171 | (_CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset) < CLASS_BITS_PER_WORD) |
| 172 | /* |
| 173 | * Return a single bit, encoding the offset. |
| 174 | * Undefined if the offset is too large, as defined above. |
| 175 | */ |
| 176 | #define CLASS_BIT_FROM_OFFSET(byteOffset) \ |
| 177 | (CLASS_HIGH_BIT >> _CLASS_BIT_NUMBER_FROM_OFFSET(byteOffset)) |
| 178 | /* |
| 179 | * Return an offset, given a bit number as returned from CLZ. |
| 180 | */ |
| 181 | #define CLASS_OFFSET_FROM_CLZ(rshift) \ |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 182 | MemberOffset((static_cast<int>(rshift) * CLASS_OFFSET_ALIGNMENT)) |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 183 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 184 | #define OFFSET_OF_OBJECT_MEMBER(type, field) \ |
| 185 | MemberOffset(OFFSETOF_MEMBER(type, field)) |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 186 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 187 | // Classes shared with the managed side of the world need to be packed |
| 188 | // so that they don't have extra platform specific padding. |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 189 | #define MANAGED PACKED |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 190 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 191 | // C++ mirror of java.lang.Object |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 192 | class MANAGED Object { |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 193 | public: |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 194 | static bool InstanceOf(const Object* object, const Class* klass) { |
| 195 | if (object == NULL) { |
| 196 | return false; |
| 197 | } |
| 198 | return object->InstanceOf(klass); |
| 199 | } |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 200 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 201 | static MemberOffset ClassOffset() { |
| 202 | return OFFSET_OF_OBJECT_MEMBER(Object, klass_); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 205 | Class* GetClass() const { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 206 | return GetFieldObject<Class*>(OFFSET_OF_OBJECT_MEMBER(Object, klass_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | void SetClass(Class* new_klass); |
| 210 | |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 211 | bool InstanceOf(const Class* klass) const; |
| 212 | |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 213 | size_t SizeOf() const; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 214 | |
Elliott Hughes | 081be7f | 2011-09-18 16:50:26 -0700 | [diff] [blame] | 215 | Object* Clone(); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 216 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 217 | static MemberOffset MonitorOffset() { |
| 218 | return OFFSET_OF_OBJECT_MEMBER(Object, monitor_); |
| 219 | } |
| 220 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 221 | volatile int32_t* GetRawLockWordAddress() { |
| 222 | byte* raw_addr = reinterpret_cast<byte*>(this) + OFFSET_OF_OBJECT_MEMBER(Object, monitor_).Int32Value(); |
| 223 | int32_t* word_addr = reinterpret_cast<int32_t*>(raw_addr); |
| 224 | return const_cast<volatile int32_t*>(word_addr); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 227 | uint32_t GetLockOwner(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 228 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 229 | void MonitorEnter(Thread* thread); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 230 | |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 231 | bool MonitorExit(Thread* thread); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 232 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 233 | void Notify(); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 234 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 235 | void NotifyAll(); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 236 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 237 | void Wait(int64_t timeout); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 238 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 239 | void Wait(int64_t timeout, int32_t nanos); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 240 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 241 | bool IsClass() const; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 242 | |
| 243 | Class* AsClass() { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 244 | DCHECK(IsClass()); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 245 | return down_cast<Class*>(this); |
| 246 | } |
| 247 | |
| 248 | const Class* AsClass() const { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 249 | DCHECK(IsClass()); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 250 | return down_cast<const Class*>(this); |
| 251 | } |
| 252 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 253 | bool IsClassClass() const; |
| 254 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 255 | bool IsObjectArray() const; |
| 256 | |
| 257 | template<class T> |
| 258 | ObjectArray<T>* AsObjectArray() { |
| 259 | DCHECK(IsObjectArray()); |
| 260 | return down_cast<ObjectArray<T>*>(this); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 263 | template<class T> |
| 264 | const ObjectArray<T>* AsObjectArray() const { |
| 265 | DCHECK(IsObjectArray()); |
| 266 | return down_cast<const ObjectArray<T>*>(this); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 269 | bool IsArrayInstance() const; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 270 | |
| 271 | Array* AsArray() { |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 272 | DCHECK(IsArrayInstance()); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 273 | return down_cast<Array*>(this); |
| 274 | } |
| 275 | |
| 276 | const Array* AsArray() const { |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 277 | DCHECK(IsArrayInstance()); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 278 | return down_cast<const Array*>(this); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 281 | bool IsString() const; |
| 282 | |
| 283 | String* AsString() { |
| 284 | DCHECK(IsString()); |
| 285 | return down_cast<String*>(this); |
| 286 | } |
| 287 | |
| 288 | bool IsMethod() const; |
| 289 | |
| 290 | Method* AsMethod() { |
| 291 | DCHECK(IsMethod()); |
| 292 | return down_cast<Method*>(this); |
| 293 | } |
| 294 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 295 | const Method* AsMethod() const { |
| 296 | DCHECK(IsMethod()); |
| 297 | return down_cast<const Method*>(this); |
| 298 | } |
| 299 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 300 | bool IsField() const; |
| 301 | |
| 302 | Field* AsField() { |
| 303 | DCHECK(IsField()); |
| 304 | return down_cast<Field*>(this); |
| 305 | } |
| 306 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 307 | const Field* AsField() const { |
| 308 | DCHECK(IsField()); |
| 309 | return down_cast<const Field*>(this); |
| 310 | } |
| 311 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 312 | bool IsReferenceInstance() const; |
| 313 | |
| 314 | bool IsWeakReferenceInstance() const; |
| 315 | |
| 316 | bool IsSoftReferenceInstance() const; |
| 317 | |
| 318 | bool IsFinalizerReferenceInstance() const; |
| 319 | |
| 320 | bool IsPhantomReferenceInstance() const; |
| 321 | |
| 322 | // Accessors for Java type fields |
| 323 | template<class T> |
| 324 | T GetFieldObject(MemberOffset field_offset, bool is_volatile) const { |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 325 | DCHECK(Thread::Current() == NULL || Thread::Current()->CanAccessDirectReferences()); |
| 326 | T result = reinterpret_cast<T>(GetField32(field_offset, is_volatile)); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 327 | Heap::VerifyObject(result); |
| 328 | return result; |
| 329 | } |
| 330 | |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 331 | void SetFieldObject(MemberOffset field_offset, const Object* new_value, bool is_volatile, bool this_is_valid = true) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 332 | Heap::VerifyObject(new_value); |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 333 | SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid); |
| 334 | if (new_value != NULL) { |
| 335 | Heap::WriteBarrier(this); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 336 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | uint32_t GetField32(MemberOffset field_offset, bool is_volatile) const { |
| 340 | Heap::VerifyObject(this); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 341 | const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value(); |
| 342 | const int32_t* word_addr = reinterpret_cast<const int32_t*>(raw_addr); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 343 | if (is_volatile) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 344 | return android_atomic_acquire_load(word_addr); |
| 345 | } else { |
| 346 | return *word_addr; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 347 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 350 | void SetField32(MemberOffset field_offset, uint32_t new_value, bool is_volatile, bool this_is_valid = true) { |
| 351 | if (this_is_valid) { |
| 352 | Heap::VerifyObject(this); |
| 353 | } |
| 354 | byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value(); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 355 | uint32_t* word_addr = reinterpret_cast<uint32_t*>(raw_addr); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 356 | if (is_volatile) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 357 | /* |
| 358 | * TODO: add an android_atomic_synchronization_store() function and |
| 359 | * use it in the 32-bit volatile set handlers. On some platforms we |
| 360 | * can use a fast atomic instruction and avoid the barriers. |
| 361 | */ |
| 362 | ANDROID_MEMBAR_STORE(); |
| 363 | *word_addr = new_value; |
| 364 | ANDROID_MEMBAR_FULL(); |
| 365 | } else { |
| 366 | *word_addr = new_value; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 367 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | uint64_t GetField64(MemberOffset field_offset, bool is_volatile) const { |
| 371 | Heap::VerifyObject(this); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 372 | const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value(); |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 373 | const int64_t* addr = reinterpret_cast<const int64_t*>(raw_addr); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 374 | if (is_volatile) { |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 375 | uint64_t result = QuasiAtomicRead64(addr); |
| 376 | ANDROID_MEMBAR_FULL(); |
| 377 | return result; |
| 378 | } else { |
| 379 | return *addr; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 380 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 383 | void SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 384 | Heap::VerifyObject(this); |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 385 | byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value(); |
| 386 | int64_t* addr = reinterpret_cast<int64_t*>(raw_addr); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 387 | if (is_volatile) { |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 388 | ANDROID_MEMBAR_STORE(); |
| 389 | QuasiAtomicSwap64(new_value, addr); |
| 390 | // Post-store barrier not required due to use of atomic op or mutex. |
| 391 | } else { |
| 392 | *addr = new_value; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 393 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | protected: |
| 397 | // Accessors for non-Java type fields |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 398 | template<class T> |
| 399 | T GetFieldPtr(MemberOffset field_offset, bool is_volatile) const { |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 400 | return reinterpret_cast<T>(GetField32(field_offset, is_volatile)); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | template<typename T> |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 404 | void SetFieldPtr(MemberOffset field_offset, T new_value, bool is_volatile) { |
| 405 | SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | private: |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 409 | Class* klass_; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 410 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 411 | uint32_t monitor_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 412 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 413 | friend class ImageWriter; // for abusing monitor_ directly |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 414 | friend struct ObjectOffsets; // for verifying offset information |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 415 | DISALLOW_IMPLICIT_CONSTRUCTORS(Object); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 416 | }; |
| 417 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 418 | // C++ mirror of java.lang.reflect.AccessibleObject |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 419 | class MANAGED AccessibleObject : public Object { |
Jesse Wilson | 46cdd4b | 2011-07-28 17:40:48 -0400 | [diff] [blame] | 420 | private: |
| 421 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 422 | uint32_t java_flag_; // can accessibility checks be bypassed |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 423 | friend struct AccessibleObjectOffsets; // for verifying offset information |
| 424 | DISALLOW_IMPLICIT_CONSTRUCTORS(AccessibleObject); |
Jesse Wilson | 46cdd4b | 2011-07-28 17:40:48 -0400 | [diff] [blame] | 425 | }; |
| 426 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 427 | // C++ mirror of java.lang.reflect.Field |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 428 | class MANAGED Field : public AccessibleObject { |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 429 | public: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 430 | Class* GetDeclaringClass() const; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 431 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 432 | void SetDeclaringClass(Class *new_declaring_class); |
| 433 | |
| 434 | const String* GetName() const; |
| 435 | |
| 436 | void SetName(String* new_name); |
| 437 | |
| 438 | uint32_t GetAccessFlags() const; |
| 439 | |
| 440 | void SetAccessFlags(uint32_t new_access_flags) { |
| 441 | SetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), new_access_flags, |
| 442 | false); |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | bool IsStatic() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 446 | return (GetAccessFlags() & kAccStatic) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 447 | } |
| 448 | |
jeffhao | bdb7651 | 2011-09-07 11:43:16 -0700 | [diff] [blame] | 449 | bool IsFinal() const { |
| 450 | return (access_flags_ & kAccFinal) != 0; |
| 451 | } |
| 452 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 453 | uint32_t GetTypeIdx() const; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 454 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 455 | void SetTypeIdx(uint32_t type_idx); |
Carl Shapiro | 5fafe2b | 2011-07-09 15:34:41 -0700 | [diff] [blame] | 456 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 457 | // Gets type using type index and resolved types in the dex cache, may be null |
| 458 | // if type isn't yet resolved |
| 459 | Class* GetTypeDuringLinking() const; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 460 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 461 | // Performs full resolution, may return null and set exceptions if type cannot |
| 462 | // be resolved |
| 463 | Class* GetType() const; |
| 464 | |
| 465 | // Offset to field within an Object |
| 466 | MemberOffset GetOffset() const; |
| 467 | |
buzbee | 34cd9e5 | 2011-09-08 14:31:52 -0700 | [diff] [blame] | 468 | static MemberOffset OffsetOffset() { |
| 469 | return MemberOffset(OFFSETOF_MEMBER(Field, offset_)); |
| 470 | } |
| 471 | |
Brian Carlstrom | 845490b | 2011-09-19 15:56:53 -0700 | [diff] [blame] | 472 | static Field* FindInstanceFieldFromCode(uint32_t field_idx, const Method* referrer); |
| 473 | static Field* FindStaticFieldFromCode(uint32_t field_idx, const Method* referrer); |
| 474 | static Field* FindFieldFromCode(uint32_t field_idx, const Method* referrer, bool is_static); |
buzbee | 34cd9e5 | 2011-09-08 14:31:52 -0700 | [diff] [blame] | 475 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 476 | MemberOffset GetOffsetDuringLinking() const; |
| 477 | |
| 478 | void SetOffset(MemberOffset num_bytes); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 479 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 480 | // field access, null object for static fields |
| 481 | bool GetBoolean(const Object* object) const; |
| 482 | void SetBoolean(Object* object, bool z) const; |
| 483 | int8_t GetByte(const Object* object) const; |
| 484 | void SetByte(Object* object, int8_t b) const; |
| 485 | uint16_t GetChar(const Object* object) const; |
| 486 | void SetChar(Object* object, uint16_t c) const; |
| 487 | uint16_t GetShort(const Object* object) const; |
| 488 | void SetShort(Object* object, uint16_t s) const; |
| 489 | int32_t GetInt(const Object* object) const; |
| 490 | void SetInt(Object* object, int32_t i) const; |
| 491 | int64_t GetLong(const Object* object) const; |
| 492 | void SetLong(Object* object, int64_t j) const; |
| 493 | float GetFloat(const Object* object) const; |
| 494 | void SetFloat(Object* object, float f) const; |
| 495 | double GetDouble(const Object* object) const; |
| 496 | void SetDouble(Object* object, double d) const; |
| 497 | Object* GetObject(const Object* object) const; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 498 | void SetObject(Object* object, const Object* l) const; |
Carl Shapiro | 5fafe2b | 2011-07-09 15:34:41 -0700 | [diff] [blame] | 499 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 500 | // Slow path routines for static field access when field was unresolved at |
| 501 | // compile time |
| 502 | static uint32_t Get32StaticFromCode(uint32_t field_idx, |
| 503 | const Method* referrer); |
| 504 | static void Set32StaticFromCode(uint32_t field_idx, const Method* referrer, |
| 505 | uint32_t new_value); |
| 506 | static uint64_t Get64StaticFromCode(uint32_t field_idx, |
| 507 | const Method* referrer); |
| 508 | static void Set64StaticFromCode(uint32_t field_idx, const Method* referrer, |
| 509 | uint64_t new_value); |
| 510 | static Object* GetObjStaticFromCode(uint32_t field_idx, |
| 511 | const Method* referrer); |
| 512 | static void SetObjStaticFromCode(uint32_t field_idx, const Method* referrer, |
| 513 | Object* new_value); |
Brian Carlstrom | b9edb84 | 2011-08-28 16:31:06 -0700 | [diff] [blame] | 514 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 515 | static Class* GetJavaLangReflectField() { |
| 516 | DCHECK(java_lang_reflect_Field_ != NULL); |
| 517 | return java_lang_reflect_Field_; |
| 518 | } |
| 519 | |
| 520 | static void SetClass(Class* java_lang_reflect_Field); |
| 521 | static void ResetClass(); |
| 522 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 523 | bool IsVolatile() const { |
| 524 | return (GetAccessFlags() & kAccVolatile) != 0; |
| 525 | } |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 526 | |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 527 | private: |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 528 | // private implementation of field access using raw data |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 529 | uint32_t Get32(const Object* object) const; |
| 530 | void Set32(Object* object, uint32_t new_value) const; |
| 531 | uint64_t Get64(const Object* object) const; |
| 532 | void Set64(Object* object, uint64_t new_value) const; |
| 533 | Object* GetObj(const Object* object) const; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 534 | void SetObj(Object* object, const Object* new_value) const; |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 535 | |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 536 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 537 | |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 538 | // The class in which this field is declared. |
| 539 | Class* declaring_class_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 540 | |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 541 | Object* generic_type_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 542 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 543 | const String* name_; |
| 544 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 545 | // Type of the field |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 546 | Class* type_; |
| 547 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 548 | uint32_t generic_types_are_initialized_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 549 | |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 550 | uint32_t access_flags_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 551 | |
| 552 | // Offset of field within an instance or in the Class' static fields |
| 553 | uint32_t offset_; |
| 554 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 555 | // Dex cache index of resolved type |
| 556 | uint32_t type_idx_; |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 557 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 558 | int32_t slot_; |
| 559 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 560 | static Class* java_lang_reflect_Field_; |
| 561 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 562 | friend struct FieldOffsets; // for verifying offset information |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 563 | DISALLOW_IMPLICIT_CONSTRUCTORS(Field); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 564 | }; |
| 565 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 566 | // C++ mirror of java.lang.reflect.Method |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 567 | class MANAGED Method : public AccessibleObject { |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 568 | public: |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 569 | // An function that invokes a method with an array of its arguments. |
Elliott Hughes | f5ecf06 | 2011-09-06 17:37:59 -0700 | [diff] [blame] | 570 | typedef void InvokeStub(const Method* method, |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 571 | Object* obj, |
| 572 | Thread* thread, |
| 573 | byte* args, |
| 574 | JValue* result); |
| 575 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 576 | Class* GetDeclaringClass() const; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 577 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 578 | void SetDeclaringClass(Class *new_declaring_class); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 579 | |
Ian Rogers | cdd1d2d | 2011-08-18 09:58:17 -0700 | [diff] [blame] | 580 | static MemberOffset DeclaringClassOffset() { |
| 581 | return MemberOffset(OFFSETOF_MEMBER(Method, declaring_class_)); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 584 | // Returns the method name, e.g. "<init>" or "eatLunch" |
| 585 | const String* GetName() const; |
| 586 | |
| 587 | void SetName(String* new_name); |
| 588 | |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 589 | ByteArray* GetRegisterMapData() const; |
| 590 | |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 591 | void SetRegisterMapData(ByteArray* data); |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 592 | |
| 593 | ByteArray* GetRegisterMapHeader() const; |
| 594 | |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 595 | void SetRegisterMapHeader(ByteArray* header); |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 596 | |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 597 | String* GetShorty() const; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 598 | |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 599 | void SetShorty(String* new_shorty); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 600 | |
| 601 | const String* GetSignature() const; |
| 602 | |
| 603 | void SetSignature(String* new_signature); |
| 604 | |
| 605 | bool HasSameNameAndDescriptor(const Method* that) const; |
| 606 | |
| 607 | uint32_t GetAccessFlags() const; |
| 608 | |
| 609 | void SetAccessFlags(uint32_t new_access_flags) { |
| 610 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, access_flags_), new_access_flags, |
| 611 | false); |
| 612 | } |
| 613 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 614 | // Returns true if the method is declared public. |
| 615 | bool IsPublic() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 616 | return (GetAccessFlags() & kAccPublic) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | // Returns true if the method is declared private. |
| 620 | bool IsPrivate() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 621 | return (GetAccessFlags() & kAccPrivate) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | // Returns true if the method is declared static. |
| 625 | bool IsStatic() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 626 | return (GetAccessFlags() & kAccStatic) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 629 | // Returns true if the method is a constructor. |
| 630 | bool IsConstructor() const { |
| 631 | return (access_flags_ & kAccConstructor) != 0; |
| 632 | } |
| 633 | |
| 634 | // Returns true if the method is static, private, or a constructor. |
| 635 | bool IsDirect() const { |
| 636 | return IsStatic() || IsPrivate() || IsConstructor(); |
| 637 | } |
| 638 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 639 | // Returns true if the method is declared synchronized. |
| 640 | bool IsSynchronized() const { |
| 641 | uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 642 | return (GetAccessFlags() & synchonized) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | // Returns true if the method is declared final. |
| 646 | bool IsFinal() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 647 | return (GetAccessFlags() & kAccFinal) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | // Returns true if the method is declared native. |
| 651 | bool IsNative() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 652 | return (GetAccessFlags() & kAccNative) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | // Returns true if the method is declared abstract. |
| 656 | bool IsAbstract() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 657 | return (GetAccessFlags() & kAccAbstract) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | bool IsSynthetic() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 661 | return (GetAccessFlags() & kAccSynthetic) != 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 664 | uint16_t GetMethodIndex() const; |
| 665 | |
| 666 | size_t GetVtableIndex() const { |
| 667 | return GetMethodIndex(); |
| 668 | } |
| 669 | |
| 670 | void SetMethodIndex(uint16_t new_method_index) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 671 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, method_index_), |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 672 | new_method_index, false); |
| 673 | } |
| 674 | |
| 675 | static MemberOffset MethodIndexOffset() { |
| 676 | return OFFSET_OF_OBJECT_MEMBER(Method, method_index_); |
| 677 | } |
| 678 | |
| 679 | uint32_t GetCodeItemOffset() const { |
| 680 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, code_item_offset_), false); |
| 681 | } |
| 682 | |
| 683 | void SetCodeItemOffset(uint32_t new_code_off) { |
| 684 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, code_item_offset_), |
| 685 | new_code_off, false); |
| 686 | } |
| 687 | |
| 688 | // Number of 32bit registers that would be required to hold all the arguments |
| 689 | static size_t NumArgRegisters(const StringPiece& shorty); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 690 | |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 691 | // Number of argument bytes required for densely packing the |
| 692 | // arguments into an array of arguments. |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 693 | size_t NumArgArrayBytes() const; |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 694 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 695 | uint16_t NumRegisters() const; |
| 696 | |
| 697 | void SetNumRegisters(uint16_t new_num_registers) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 698 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_registers_), |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 699 | new_num_registers, false); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 702 | uint16_t NumIns() const; |
| 703 | |
| 704 | void SetNumIns(uint16_t new_num_ins) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 705 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_ins_), |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 706 | new_num_ins, false); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 707 | } |
| 708 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 709 | uint16_t NumOuts() const; |
Brian Carlstrom | a7f4f48 | 2011-07-17 17:01:34 -0700 | [diff] [blame] | 710 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 711 | void SetNumOuts(uint16_t new_num_outs) { |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 712 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_outs_), |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 713 | new_num_outs, false); |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 714 | } |
| 715 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 716 | uint32_t GetProtoIdx() const; |
| 717 | |
| 718 | void SetProtoIdx(uint32_t new_proto_idx) { |
| 719 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, proto_idx_), new_proto_idx, false); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 722 | ObjectArray<String>* GetDexCacheStrings() const; |
| 723 | void SetDexCacheStrings(ObjectArray<String>* new_dex_cache_strings); |
| 724 | |
| 725 | static MemberOffset DexCacheStringsOffset() { |
| 726 | return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_strings_); |
| 727 | } |
| 728 | |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 729 | static MemberOffset DexCacheResolvedTypesOffset() { |
| 730 | return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_types_); |
| 731 | } |
| 732 | |
buzbee | 34cd9e5 | 2011-09-08 14:31:52 -0700 | [diff] [blame] | 733 | static MemberOffset DexCacheResolvedFieldsOffset() { |
| 734 | return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_fields_); |
| 735 | } |
| 736 | |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 737 | static MemberOffset DexCacheInitializedStaticStorageOffset() { |
| 738 | return OFFSET_OF_OBJECT_MEMBER(Method, |
| 739 | dex_cache_initialized_static_storage_); |
| 740 | } |
| 741 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 742 | ObjectArray<Class>* GetDexCacheResolvedTypes() const; |
| 743 | void SetDexCacheResolvedTypes(ObjectArray<Class>* new_dex_cache_types); |
| 744 | |
| 745 | ObjectArray<Method>* GetDexCacheResolvedMethods() const; |
| 746 | void SetDexCacheResolvedMethods(ObjectArray<Method>* new_dex_cache_methods); |
| 747 | |
| 748 | ObjectArray<Field>* GetDexCacheResolvedFields() const; |
| 749 | void SetDexCacheResolvedFields(ObjectArray<Field>* new_dex_cache_fields); |
| 750 | |
| 751 | CodeAndDirectMethods* GetDexCacheCodeAndDirectMethods() const; |
| 752 | void SetDexCacheCodeAndDirectMethods(CodeAndDirectMethods* new_value); |
| 753 | |
| 754 | ObjectArray<StaticStorageBase>* GetDexCacheInitializedStaticStorage() const; |
| 755 | void SetDexCacheInitializedStaticStorage(ObjectArray<StaticStorageBase>* new_value); |
| 756 | |
| 757 | void SetReturnTypeIdx(uint32_t new_return_type_idx); |
| 758 | |
| 759 | Class* GetReturnType() const; |
| 760 | |
| 761 | bool IsReturnAReference() const; |
| 762 | |
| 763 | bool IsReturnAFloat() const; |
| 764 | |
| 765 | bool IsReturnADouble() const; |
| 766 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 767 | bool IsReturnAFloatOrDouble() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 768 | return IsReturnAFloat() || IsReturnADouble(); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 769 | } |
| 770 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 771 | bool IsReturnALong() const; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 772 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 773 | bool IsReturnVoid() const; |
Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 774 | |
Shih-wei Liao | 5381cf9 | 2011-07-27 00:28:04 -0700 | [diff] [blame] | 775 | // "Args" may refer to any of the 3 levels of "Args." |
| 776 | // To avoid confusion, our code will denote which "Args" clearly: |
| 777 | // 1. UserArgs: Args that a user see. |
| 778 | // 2. Args: Logical JVM-level Args. E.g., the first in Args will be the |
| 779 | // receiver. |
| 780 | // 3. CConvArgs: Calling Convention Args, which is physical-level Args. |
| 781 | // E.g., the first in Args is Method* for both static and non-static |
| 782 | // methods. And CConvArgs doesn't deal with the receiver because |
| 783 | // receiver is hardwired in an implicit register, so CConvArgs doesn't |
| 784 | // need to deal with it. |
| 785 | // |
| 786 | // The number of Args that should be supplied to this method |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 787 | size_t NumArgs() const; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 788 | |
| 789 | // The number of reference arguments to this method including implicit this |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 790 | // pointer. |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 791 | size_t NumReferenceArgs() const; |
| 792 | |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 793 | // The number of long or double arguments. |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 794 | size_t NumLongOrDoubleArgs() const; |
| 795 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 796 | // Is the given method parameter a reference? |
| 797 | bool IsParamAReference(unsigned int param) const; |
| 798 | |
| 799 | // Is the given method parameter a long or double? |
| 800 | bool IsParamALongOrDouble(unsigned int param) const; |
| 801 | |
Ian Rogers | df20fe0 | 2011-07-20 20:34:16 -0700 | [diff] [blame] | 802 | // Size in bytes of the given parameter |
| 803 | size_t ParamSize(unsigned int param) const; |
| 804 | |
| 805 | // Size in bytes of the return value |
| 806 | size_t ReturnSize() const; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 807 | |
Elliott Hughes | f5ecf06 | 2011-09-06 17:37:59 -0700 | [diff] [blame] | 808 | void Invoke(Thread* self, Object* receiver, byte* args, JValue* result) const; |
| 809 | |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 810 | const ByteArray* GetCodeArray() const { |
| 811 | return GetFieldPtr<const ByteArray*>(OFFSET_OF_OBJECT_MEMBER(Method, code_array_), false); |
| 812 | } |
| 813 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 814 | const void* GetCode() const { |
| 815 | return GetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(Method, code_), false); |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 816 | } |
| 817 | |
buzbee | 4ef7652 | 2011-09-08 10:00:32 -0700 | [diff] [blame] | 818 | void SetCode(ByteArray* code_array, InstructionSet instruction_set, |
buzbee | c41e5b5 | 2011-09-23 12:46:19 -0700 | [diff] [blame] | 819 | IntArray* mapping_table = NULL, ShortArray* vmap_table = NULL); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 820 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 821 | static MemberOffset GetCodeOffset() { |
| 822 | return OFFSET_OF_OBJECT_MEMBER(Method, code_); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 825 | // Is the given PC within the code array? |
| 826 | bool IsWithinCode(uintptr_t pc) const; |
| 827 | |
| 828 | IntArray* GetMappingTable() const { |
| 829 | return GetFieldObject<IntArray*>( |
| 830 | OFFSET_OF_OBJECT_MEMBER(Method, mapping_table_), false); |
| 831 | } |
| 832 | |
buzbee | c41e5b5 | 2011-09-23 12:46:19 -0700 | [diff] [blame] | 833 | ShortArray* GetVMapTable() const { |
| 834 | return GetFieldObject<ShortArray*>( |
| 835 | OFFSET_OF_OBJECT_MEMBER(Method, vmap_table_), false); |
| 836 | } |
| 837 | |
Shih-wei Liao | d11af15 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 838 | size_t GetFrameSizeInBytes() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 839 | DCHECK(sizeof(size_t) == sizeof(uint32_t)); |
| 840 | size_t result = GetField32( |
| 841 | OFFSET_OF_OBJECT_MEMBER(Method, frame_size_in_bytes_), false); |
| 842 | DCHECK_LE(static_cast<size_t>(kStackAlignment), result); |
| 843 | return result; |
| 844 | } |
| 845 | |
| 846 | void SetFrameSizeInBytes(size_t new_frame_size_in_bytes) { |
| 847 | DCHECK(sizeof(size_t) == sizeof(uint32_t)); |
| 848 | DCHECK_LE(static_cast<size_t>(kStackAlignment), new_frame_size_in_bytes); |
| 849 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, frame_size_in_bytes_), |
| 850 | new_frame_size_in_bytes, false); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 851 | } |
| 852 | |
Shih-wei Liao | d11af15 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 853 | size_t GetReturnPcOffsetInBytes() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 854 | DCHECK(sizeof(size_t) == sizeof(uint32_t)); |
| 855 | return GetField32( |
| 856 | OFFSET_OF_OBJECT_MEMBER(Method, return_pc_offset_in_bytes_), false); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 857 | } |
| 858 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 859 | void SetReturnPcOffsetInBytes(size_t return_pc_offset_in_bytes) { |
| 860 | DCHECK(sizeof(size_t) == sizeof(uint32_t)); |
| 861 | DCHECK_LT(return_pc_offset_in_bytes, GetFrameSizeInBytes()); |
| 862 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, return_pc_offset_in_bytes_), |
| 863 | return_pc_offset_in_bytes, false); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 866 | bool IsRegistered(); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 867 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 868 | void RegisterNative(const void* native_method); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 869 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 870 | void UnregisterNative(); |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 871 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 872 | static MemberOffset NativeMethodOffset() { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 873 | return OFFSET_OF_OBJECT_MEMBER(Method, native_method_); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 876 | const void* GetNativeMethod() const { |
| 877 | return reinterpret_cast<const void*>(GetField32(NativeMethodOffset(), false)); |
| 878 | } |
| 879 | |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 880 | ByteArray* GetInvokeStubArray() const { |
| 881 | ByteArray* result = GetFieldPtr<ByteArray*>( |
| 882 | OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_array_), false); |
| 883 | // TODO: DCHECK(result != NULL); should be ahead of time compiled |
| 884 | return result; |
| 885 | } |
| 886 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 887 | // Native to managed invocation stub entry point |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 888 | InvokeStub* GetInvokeStub() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 889 | InvokeStub* result = GetFieldPtr<InvokeStub*>( |
| 890 | OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_), false); |
| 891 | // TODO: DCHECK(result != NULL); should be ahead of time compiled |
| 892 | return result; |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 895 | static MemberOffset GetInvokeStubOffset() { |
| 896 | return OFFSET_OF_OBJECT_MEMBER(Method, invoke_stub_); |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 897 | } |
| 898 | |
buzbee | 561227c | 2011-09-02 15:28:19 -0700 | [diff] [blame] | 899 | static MemberOffset GetDexCacheCodeAndDirectMethodsOffset() { |
| 900 | return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_code_and_direct_methods_); |
| 901 | } |
| 902 | |
| 903 | static MemberOffset GetDexCacheResolvedMethodsOffset() { |
| 904 | return OFFSET_OF_OBJECT_MEMBER(Method, dex_cache_resolved_methods_); |
| 905 | } |
| 906 | |
| 907 | static MemberOffset GetMethodIndexOffset() { |
| 908 | return OFFSET_OF_OBJECT_MEMBER(Method, method_index_); |
| 909 | } |
| 910 | |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 911 | void SetInvokeStub(const ByteArray* invoke_stub_array); |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 912 | |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 913 | uint32_t GetCoreSpillMask() const { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 914 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, core_spill_mask_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 915 | } |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 916 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 917 | void SetCoreSpillMask(uint32_t core_spill_mask) { |
| 918 | // Computed during compilation |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 919 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, core_spill_mask_), core_spill_mask, false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 922 | uint32_t GetFpSpillMask() const { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 923 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, fp_spill_mask_), false); |
| 924 | } |
| 925 | |
| 926 | void SetFpSpillMask(uint32_t fp_spill_mask) { |
| 927 | // Computed during compilation |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 928 | SetField32(OFFSET_OF_OBJECT_MEMBER(Method, fp_spill_mask_), fp_spill_mask, false); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 929 | } |
| 930 | |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 931 | // Is this a hand crafted method used for something like describing callee saves? |
| 932 | bool IsPhony() const { |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 933 | bool result = this == Runtime::Current()->GetCalleeSaveMethod(); |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 934 | // Check that if we do think it is phony it looks like the callee save method |
| 935 | DCHECK(!result || GetCoreSpillMask() != 0); |
| 936 | return result; |
| 937 | } |
| 938 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 939 | // Converts a native PC to a dex PC. TODO: this is a no-op |
| 940 | // until we associate a PC mapping table with each method. |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 941 | uint32_t ToDexPC(const uintptr_t pc) const; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 942 | |
| 943 | // Converts a dex PC to a native PC. TODO: this is a no-op |
| 944 | // until we associate a PC mapping table with each method. |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 945 | uintptr_t ToNativePC(const uint32_t dex_pc) const; |
| 946 | |
| 947 | // Find the catch block for the given exception type and dex_pc |
| 948 | uint32_t FindCatchBlock(Class* exception_type, uint32_t dex_pc) const; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 949 | |
| 950 | static Class* GetJavaLangReflectMethod() { |
| 951 | DCHECK(java_lang_reflect_Method_ != NULL); |
| 952 | return java_lang_reflect_Method_; |
| 953 | } |
| 954 | |
| 955 | static void SetClass(Class* java_lang_reflect_Method); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 956 | static Class* GetMethodClass() { return java_lang_reflect_Method_; } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 957 | static void ResetClass(); |
| 958 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 959 | void InitJavaFields(); |
| 960 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 961 | private: |
| 962 | uint32_t GetReturnTypeIdx() const; |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 963 | void InitJavaFieldsLocked(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 964 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 965 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
| 966 | // the class we are a part of |
| 967 | Class* declaring_class_; |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 968 | ObjectArray<Class>* java_exception_types_; // TODO |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 969 | Object* java_formal_type_parameters_; |
| 970 | Object* java_generic_exception_types_; |
| 971 | Object* java_generic_parameter_types_; |
| 972 | Object* java_generic_return_type_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 973 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 974 | String* name_; |
| 975 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 976 | // Initialized by InitJavaFields. |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 977 | ObjectArray<Class>* java_parameter_types_; |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 978 | Class* java_return_type_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 979 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 980 | // Storage for code_ |
| 981 | const ByteArray* code_array_; |
| 982 | |
| 983 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 984 | CodeAndDirectMethods* dex_cache_code_and_direct_methods_; |
| 985 | |
| 986 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
| 987 | ObjectArray<StaticStorageBase>* dex_cache_initialized_static_storage_; |
| 988 | |
| 989 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
| 990 | ObjectArray<Field>* dex_cache_resolved_fields_; |
| 991 | |
| 992 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
| 993 | ObjectArray<Method>* dex_cache_resolved_methods_; |
| 994 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 995 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
| 996 | ObjectArray<Class>* dex_cache_resolved_types_; |
| 997 | |
| 998 | // short cuts to declaring_class_->dex_cache_ member for fast compiled code access |
| 999 | ObjectArray<String>* dex_cache_strings_; |
| 1000 | |
| 1001 | // Storage for invoke_stub_ |
| 1002 | const ByteArray* invoke_stub_array_; |
| 1003 | |
| 1004 | // Storage for mapping_table_ |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 1005 | IntArray* mapping_table_; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1006 | |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 1007 | // Byte arrays that hold data for the register maps |
| 1008 | const ByteArray* register_map_data_; |
| 1009 | const ByteArray* register_map_header_; |
| 1010 | |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 1011 | // The short-form method descriptor string. |
| 1012 | String* shorty_; |
| 1013 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1014 | // The method descriptor. This represents the parameters a method |
| 1015 | // takes and value it returns. This string is a list of the type |
| 1016 | // descriptors for the parameters enclosed in parenthesis followed |
| 1017 | // by the return type descriptor. For example, for the method |
| 1018 | // |
| 1019 | // Object mymethod(int i, double d, Thread t) |
| 1020 | // |
| 1021 | // the method descriptor would be |
| 1022 | // |
| 1023 | // (IDLjava/lang/Thread;)Ljava/lang/Object; |
| 1024 | String* signature_; |
| 1025 | |
buzbee | c41e5b5 | 2011-09-23 12:46:19 -0700 | [diff] [blame] | 1026 | // Storage for Dalvik virtual register mapping_table_ |
| 1027 | ShortArray* vmap_table_; |
| 1028 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1029 | uint32_t java_generic_types_are_initialized_; |
| 1030 | |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 1031 | // Access flags; low 16 bits are defined by spec. |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1032 | uint32_t access_flags_; |
| 1033 | |
| 1034 | // Compiled code associated with this method for callers from managed code. |
| 1035 | // May be compiled managed code or a bridge for invoking a native method. |
| 1036 | const void* code_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1037 | |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 1038 | // Offset to the CodeItem. |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1039 | uint32_t code_item_offset_; |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 1040 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1041 | // Architecture-dependent register spill mask |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1042 | uint32_t core_spill_mask_; |
| 1043 | |
| 1044 | // Architecture-dependent register spill mask |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1045 | uint32_t fp_spill_mask_; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1046 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1047 | // Total size in bytes of the frame |
| 1048 | size_t frame_size_in_bytes_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1049 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1050 | // Native invocation stub entry point for calling from native to managed code. |
| 1051 | const InvokeStub* invoke_stub_; |
buzbee | 4ef7652 | 2011-09-08 10:00:32 -0700 | [diff] [blame] | 1052 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1053 | // Index of the return type |
| 1054 | uint32_t java_return_type_idx_; |
| 1055 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1056 | // For concrete virtual methods, this is the offset of the method |
| 1057 | // in Class::vtable_. |
| 1058 | // |
| 1059 | // For abstract methods in an interface class, this is the offset |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1060 | // of the method in "iftable_->Get(n)->GetMethodArray()". |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 1061 | uint32_t method_index_; |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 1062 | |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 1063 | // The target native method registered with this method |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 1064 | const void* native_method_; |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1065 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1066 | // Method bounds; not needed for an abstract method. |
| 1067 | // |
| 1068 | // For a native method, we compute the size of the argument list, and |
| 1069 | // set "insSize" and "registerSize" equal to it. |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 1070 | uint32_t num_ins_; |
| 1071 | uint32_t num_outs_; |
| 1072 | uint32_t num_registers_; // ins + locals |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 1073 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1074 | // Method prototype descriptor string (return and argument types). |
| 1075 | uint32_t proto_idx_; |
| 1076 | |
| 1077 | // Offset of return PC within frame for compiled code (in bytes) |
| 1078 | size_t return_pc_offset_in_bytes_; |
| 1079 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1080 | uint32_t java_slot_; |
Carl Shapiro | 9b9ba28 | 2011-08-14 15:30:39 -0700 | [diff] [blame] | 1081 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1082 | static Class* java_lang_reflect_Method_; |
| 1083 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1084 | friend class ImageWriter; // for relocating code_ and invoke_stub_ |
| 1085 | friend struct MethodOffsets; // for verifying offset information |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1086 | DISALLOW_IMPLICIT_CONSTRUCTORS(Method); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1087 | }; |
| 1088 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1089 | class MANAGED Array : public Object { |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1090 | public: |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 1091 | static size_t SizeOf(size_t component_count, |
| 1092 | size_t component_size) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 1093 | return sizeof(Array) + component_count * component_size; |
| 1094 | } |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 1095 | |
Elliott Hughes | 68f4fa0 | 2011-08-21 10:46:59 -0700 | [diff] [blame] | 1096 | // A convenience for code that doesn't know the component size, |
| 1097 | // and doesn't want to have to work it out itself. |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 1098 | static Array* Alloc(Class* array_class, int32_t component_count); |
Elliott Hughes | 68f4fa0 | 2011-08-21 10:46:59 -0700 | [diff] [blame] | 1099 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 1100 | static Array* Alloc(Class* array_class, int32_t component_count, size_t component_size); |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1101 | |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 1102 | size_t SizeOf() const; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 1103 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 1104 | int32_t GetLength() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1105 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Array, length_), false); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1106 | } |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1107 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1108 | void SetLength(int32_t length) { |
Elliott Hughes | 0f4c41d | 2011-09-04 14:58:03 -0700 | [diff] [blame] | 1109 | CHECK_GE(length, 0); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1110 | SetField32(OFFSET_OF_OBJECT_MEMBER(Array, length_), length, false); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1111 | } |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1112 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1113 | static MemberOffset LengthOffset() { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1114 | return OFFSET_OF_OBJECT_MEMBER(Array, length_); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | static MemberOffset DataOffset() { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1118 | return OFFSET_OF_OBJECT_MEMBER(Array, first_element_); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 1121 | void* GetRawData() { |
| 1122 | return reinterpret_cast<void*>(first_element_); |
| 1123 | } |
| 1124 | |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 1125 | protected: |
| 1126 | bool IsValidIndex(int32_t index) const { |
| 1127 | if (index < 0 || index >= length_) { |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 1128 | Thread* self = Thread::Current(); |
| 1129 | self->ThrowNewException("Ljava/lang/ArrayIndexOutOfBoundsException;", |
| 1130 | "length=%i; index=%i", length_, index); |
Elliott Hughes | 710a0cb | 2011-08-16 14:32:37 -0700 | [diff] [blame] | 1131 | return false; |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 1132 | } |
| 1133 | return true; |
| 1134 | } |
| 1135 | |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1136 | private: |
| 1137 | // The number of array elements. |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 1138 | int32_t length_; |
Jesse Wilson | df4189c | 2011-08-09 17:10:28 -0400 | [diff] [blame] | 1139 | // Padding to ensure the first member defined by a subclass begins on a 8-byte boundary |
| 1140 | int32_t padding_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1141 | // Marker for the data (used by generated code) |
| 1142 | uint32_t first_element_[0]; |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1143 | |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1144 | DISALLOW_IMPLICIT_CONSTRUCTORS(Array); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1145 | }; |
| 1146 | |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 1147 | template<class T> |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1148 | class MANAGED ObjectArray : public Array { |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1149 | public: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1150 | static ObjectArray<T>* Alloc(Class* object_array_class, int32_t length); |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 1151 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1152 | T* Get(int32_t i) const; |
Jesse Wilson | df4189c | 2011-08-09 17:10:28 -0400 | [diff] [blame] | 1153 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1154 | void Set(int32_t i, T* object); |
Jesse Wilson | df4189c | 2011-08-09 17:10:28 -0400 | [diff] [blame] | 1155 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1156 | // Set element without bound and element type checks, to be used in limited |
| 1157 | // circumstances, such as during boot image writing |
| 1158 | void SetWithoutChecks(int32_t i, T* object); |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1159 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1160 | static void Copy(const ObjectArray<T>* src, int src_pos, |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1161 | ObjectArray<T>* dst, int dst_pos, |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1162 | size_t length); |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1163 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1164 | ObjectArray<T>* CopyOf(int32_t new_length); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1165 | |
| 1166 | private: |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 1167 | DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1168 | }; |
| 1169 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1170 | template<class T> |
| 1171 | ObjectArray<T>* ObjectArray<T>::Alloc(Class* object_array_class, int32_t length) { |
| 1172 | return Array::Alloc(object_array_class, length, sizeof(uint32_t))->AsObjectArray<T>(); |
| 1173 | } |
| 1174 | |
| 1175 | template<class T> |
| 1176 | T* ObjectArray<T>::Get(int32_t i) const { |
| 1177 | if (!IsValidIndex(i)) { |
| 1178 | return NULL; |
| 1179 | } |
| 1180 | MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*)); |
| 1181 | return GetFieldObject<T*>(data_offset, false); |
| 1182 | } |
| 1183 | |
| 1184 | template<class T> |
| 1185 | ObjectArray<T>* ObjectArray<T>::CopyOf(int32_t new_length) { |
| 1186 | ObjectArray<T>* new_array = Alloc(GetClass(), new_length); |
| 1187 | Copy(this, 0, new_array, 0, std::min(GetLength(), new_length)); |
| 1188 | return new_array; |
| 1189 | } |
| 1190 | |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 1191 | // Type for the InitializedStaticStorage table. Currently the Class |
Brian Carlstrom | 848a4b3 | 2011-09-04 11:29:27 -0700 | [diff] [blame] | 1192 | // provides the static storage. However, this might change to an Array |
| 1193 | // to improve image sharing, so we use this type to avoid assumptions |
| 1194 | // on the current storage. |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1195 | class MANAGED StaticStorageBase : public Object {}; |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 1196 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1197 | // C++ mirror of java.lang.Class |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1198 | class MANAGED Class : public StaticStorageBase { |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1199 | public: |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 1200 | |
| 1201 | // Class Status |
| 1202 | // |
| 1203 | // kStatusNotReady: If a Class cannot be found in the class table by |
| 1204 | // FindClass, it allocates an new one with AllocClass in the |
| 1205 | // kStatusNotReady and calls LoadClass. Note if it does find a |
| 1206 | // class, it may not be kStatusResolved and it will try to push it |
| 1207 | // forward toward kStatusResolved. |
| 1208 | // |
| 1209 | // kStatusIdx: LoadClass populates with Class with information from |
| 1210 | // the DexFile, moving the status to kStatusIdx, indicating that the |
| 1211 | // Class values in super_class_ and interfaces_ have not been |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1212 | // populated based on super_class_type_idx_ and |
| 1213 | // interfaces_type_idx_. The new Class can then be inserted into the |
| 1214 | // classes table. |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 1215 | // |
| 1216 | // kStatusLoaded: After taking a lock on Class, the ClassLinker will |
| 1217 | // attempt to move a kStatusIdx class forward to kStatusLoaded by |
| 1218 | // using ResolveClass to initialize the super_class_ and interfaces_. |
| 1219 | // |
| 1220 | // kStatusResolved: Still holding the lock on Class, the ClassLinker |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1221 | // shows linking is complete and fields of the Class populated by making |
| 1222 | // it kStatusResolved. Java allows circularities of the form where a super |
| 1223 | // class has a field that is of the type of the sub class. We need to be able |
| 1224 | // to fully resolve super classes while resolving types for fields. |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 1225 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1226 | enum Status { |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1227 | kStatusError = -1, |
| 1228 | kStatusNotReady = 0, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1229 | kStatusIdx = 1, // loaded, DEX idx in super_class_type_idx_ and interfaces_type_idx_ |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1230 | kStatusLoaded = 2, // DEX idx values resolved |
| 1231 | kStatusResolved = 3, // part of linking |
| 1232 | kStatusVerifying = 4, // in the process of being verified |
| 1233 | kStatusVerified = 5, // logically part of linking; done pre-init |
| 1234 | kStatusInitializing = 6, // class init in progress |
| 1235 | kStatusInitialized = 7, // ready to go |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1236 | }; |
| 1237 | |
| 1238 | enum PrimitiveType { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1239 | kPrimNot = 0, |
| 1240 | kPrimBoolean, |
| 1241 | kPrimByte, |
| 1242 | kPrimChar, |
| 1243 | kPrimShort, |
| 1244 | kPrimInt, |
| 1245 | kPrimLong, |
| 1246 | kPrimFloat, |
| 1247 | kPrimDouble, |
| 1248 | kPrimVoid, |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1249 | }; |
| 1250 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1251 | Status GetStatus() const { |
| 1252 | CHECK(sizeof(Status) == sizeof(uint32_t)); |
| 1253 | return static_cast<Status>( |
| 1254 | GetField32(OFFSET_OF_OBJECT_MEMBER(Class, status_), false)); |
| 1255 | } |
| 1256 | |
| 1257 | void SetStatus(Status new_status); |
| 1258 | |
| 1259 | // Returns true if the class has failed to link. |
| 1260 | bool IsErroneous() const { |
| 1261 | return GetStatus() == kStatusError; |
| 1262 | } |
| 1263 | |
| 1264 | // Returns true if the class has been loaded. |
| 1265 | bool IsIdxLoaded() const { |
| 1266 | return GetStatus() >= kStatusIdx; |
| 1267 | } |
| 1268 | |
| 1269 | // Returns true if the class has been loaded. |
| 1270 | bool IsLoaded() const { |
| 1271 | return GetStatus() >= kStatusLoaded; |
| 1272 | } |
| 1273 | |
| 1274 | // Returns true if the class has been linked. |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 1275 | bool IsResolved() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1276 | return GetStatus() >= kStatusResolved; |
| 1277 | } |
| 1278 | |
| 1279 | // Returns true if the class has been verified. |
| 1280 | bool IsVerified() const { |
| 1281 | return GetStatus() >= kStatusVerified; |
| 1282 | } |
| 1283 | |
| 1284 | // Returns true if the class is initialized. |
| 1285 | bool IsInitialized() const { |
| 1286 | return GetStatus() == kStatusInitialized; |
| 1287 | } |
| 1288 | |
| 1289 | uint32_t GetAccessFlags() const; |
| 1290 | |
| 1291 | void SetAccessFlags(uint32_t new_access_flags) { |
| 1292 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, access_flags_), new_access_flags, |
| 1293 | false); |
| 1294 | } |
| 1295 | |
| 1296 | // Returns true if the class is an interface. |
| 1297 | bool IsInterface() const { |
| 1298 | return (GetAccessFlags() & kAccInterface) != 0; |
| 1299 | } |
| 1300 | |
| 1301 | // Returns true if the class is declared public. |
| 1302 | bool IsPublic() const { |
| 1303 | return (GetAccessFlags() & kAccPublic) != 0; |
| 1304 | } |
| 1305 | |
| 1306 | // Returns true if the class is declared final. |
| 1307 | bool IsFinal() const { |
| 1308 | return (GetAccessFlags() & kAccFinal) != 0; |
| 1309 | } |
| 1310 | |
| 1311 | // Returns true if the class is abstract. |
| 1312 | bool IsAbstract() const { |
| 1313 | return (GetAccessFlags() & kAccAbstract) != 0; |
| 1314 | } |
| 1315 | |
| 1316 | // Returns true if the class is an annotation. |
| 1317 | bool IsAnnotation() const { |
| 1318 | return (GetAccessFlags() & kAccAnnotation) != 0; |
| 1319 | } |
| 1320 | |
| 1321 | // Returns true if the class is synthetic. |
| 1322 | bool IsSynthetic() const { |
| 1323 | return (GetAccessFlags() & kAccSynthetic) != 0; |
| 1324 | } |
| 1325 | |
| 1326 | bool IsReferenceClass() const { |
| 1327 | return (GetAccessFlags() & kAccClassIsReference) != 0; |
| 1328 | } |
| 1329 | |
| 1330 | bool IsWeakReferenceClass() const { |
| 1331 | return (GetAccessFlags() & kAccClassIsWeakReference) != 0; |
| 1332 | } |
| 1333 | |
| 1334 | bool IsSoftReferenceClass() const { |
| 1335 | return (GetAccessFlags() & ~kAccReferenceFlagsMask) == kAccClassIsReference; |
| 1336 | } |
| 1337 | |
| 1338 | bool IsFinalizerReferenceClass() const { |
| 1339 | return (GetAccessFlags() & kAccClassIsFinalizerReference) != 0; |
| 1340 | } |
| 1341 | |
| 1342 | bool IsPhantomReferenceClass() const { |
| 1343 | return (GetAccessFlags() & kAccClassIsPhantomReference) != 0; |
| 1344 | } |
| 1345 | |
| 1346 | PrimitiveType GetPrimitiveType() const { |
| 1347 | CHECK(sizeof(PrimitiveType) == sizeof(int32_t)); |
| 1348 | return static_cast<PrimitiveType>( |
| 1349 | GetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), false)); |
| 1350 | } |
| 1351 | |
| 1352 | void SetPrimitiveType(PrimitiveType new_type) { |
| 1353 | CHECK(sizeof(PrimitiveType) == sizeof(int32_t)); |
| 1354 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), new_type, |
| 1355 | false); |
| 1356 | } |
| 1357 | |
| 1358 | // Returns true if the class is a primitive type. |
| 1359 | bool IsPrimitive() const { |
| 1360 | return GetPrimitiveType() != kPrimNot; |
| 1361 | } |
| 1362 | |
| 1363 | bool IsPrimitiveBoolean() const { |
| 1364 | return GetPrimitiveType() == kPrimBoolean; |
| 1365 | } |
| 1366 | |
| 1367 | bool IsPrimitiveByte() const { |
| 1368 | return GetPrimitiveType() == kPrimByte; |
| 1369 | } |
| 1370 | |
| 1371 | bool IsPrimitiveChar() const { |
| 1372 | return GetPrimitiveType() == kPrimChar; |
| 1373 | } |
| 1374 | |
| 1375 | bool IsPrimitiveShort() const { |
| 1376 | return GetPrimitiveType() == kPrimShort; |
| 1377 | } |
| 1378 | |
| 1379 | bool IsPrimitiveInt() const { |
| 1380 | return GetPrimitiveType() == kPrimInt; |
| 1381 | } |
| 1382 | |
| 1383 | bool IsPrimitiveLong() const { |
| 1384 | return GetPrimitiveType() == kPrimLong; |
| 1385 | } |
| 1386 | |
| 1387 | bool IsPrimitiveFloat() const { |
| 1388 | return GetPrimitiveType() == kPrimFloat; |
| 1389 | } |
| 1390 | |
| 1391 | bool IsPrimitiveDouble() const { |
| 1392 | return GetPrimitiveType() == kPrimDouble; |
| 1393 | } |
| 1394 | |
| 1395 | bool IsPrimitiveVoid() const { |
| 1396 | return GetPrimitiveType() == kPrimVoid; |
| 1397 | } |
| 1398 | |
| 1399 | size_t PrimitiveSize() const; |
| 1400 | |
| 1401 | bool IsArrayClass() const { |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1402 | return GetComponentType() != NULL; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | Class* GetComponentType() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1406 | return GetFieldObject<Class*>( |
| 1407 | OFFSET_OF_OBJECT_MEMBER(Class, component_type_), false); |
| 1408 | } |
| 1409 | |
| 1410 | void SetComponentType(Class* new_component_type) { |
| 1411 | DCHECK(GetComponentType() == NULL); |
| 1412 | DCHECK(new_component_type != NULL); |
| 1413 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, component_type_), |
| 1414 | new_component_type, false); |
| 1415 | } |
| 1416 | |
| 1417 | size_t GetComponentSize() const { |
| 1418 | return GetTypeSize(GetComponentType()->GetDescriptor()); |
| 1419 | } |
| 1420 | |
| 1421 | bool IsObjectClass() const { |
| 1422 | return !IsPrimitive() && GetSuperClass() == NULL; |
| 1423 | } |
| 1424 | |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 1425 | // Creates a raw object instance but does not invoke the default constructor. |
| 1426 | Object* AllocObject(); |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 1427 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1428 | static size_t GetTypeSize(const String* descriptor); |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 1429 | |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 1430 | const String* GetDescriptor() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1431 | const String* result = GetFieldObject<const String*>( |
| 1432 | OFFSET_OF_OBJECT_MEMBER(Class, descriptor_), false); |
| 1433 | // DCHECK(result != NULL); // may be NULL prior to class linker initialization |
| 1434 | // DCHECK_NE(0, result->GetLength()); // TODO: keep? |
| 1435 | return result; |
| 1436 | } |
| 1437 | |
| 1438 | void SetDescriptor(String* new_descriptor); |
| 1439 | |
| 1440 | bool IsVariableSize() const { |
| 1441 | // Classes and arrays vary in size, and so the object_size_ field cannot |
| 1442 | // be used to get their instance size |
| 1443 | return IsClassClass() || IsArrayClass(); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1444 | } |
| 1445 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 1446 | size_t SizeOf() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1447 | CHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1448 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), false); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 1449 | } |
| 1450 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1451 | size_t GetClassSize() const { |
| 1452 | CHECK(sizeof(size_t) == sizeof(uint32_t)); |
| 1453 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), false); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1454 | } |
| 1455 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1456 | void SetClassSize(size_t new_class_size) { |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1457 | DCHECK(new_class_size >= GetClassSize()) |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 1458 | << " class=" << PrettyTypeOf(this) |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 1459 | << " new_class_size=" << new_class_size |
| 1460 | << " GetClassSize=" << GetClassSize(); |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 1461 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), new_class_size, false); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1464 | size_t GetObjectSize() const { |
| 1465 | CHECK(!IsVariableSize()); |
| 1466 | CHECK(sizeof(size_t) == sizeof(int32_t)); |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 1467 | size_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1468 | CHECK_GE(result, sizeof(Object)); |
| 1469 | return result; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1470 | } |
| 1471 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1472 | void SetObjectSize(size_t new_object_size) { |
| 1473 | DCHECK(!IsVariableSize()); |
| 1474 | CHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1475 | return SetField32(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), |
| 1476 | new_object_size, false); |
Carl Shapiro | 83ab4f3 | 2011-08-15 20:21:39 -0700 | [diff] [blame] | 1477 | } |
| 1478 | |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1479 | // Returns true if this class is in the same packages as that class. |
| 1480 | bool IsInSamePackage(const Class* that) const; |
| 1481 | |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 1482 | static bool IsInSamePackage(const String* descriptor1, |
| 1483 | const String* descriptor2); |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1484 | |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1485 | // Returns true if this class can access that class. |
| 1486 | bool CanAccess(const Class* that) const { |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1487 | return that->IsPublic() || this->IsInSamePackage(that); |
Carl Shapiro | 894d0fa | 2011-06-30 14:48:49 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
jeffhao | 4a801a4 | 2011-09-23 13:53:40 -0700 | [diff] [blame] | 1490 | // Validate method/field access. |
| 1491 | bool CanAccessMember(const Class* access_to, uint32_t member_flags) const { |
| 1492 | // quick accept for public access |
| 1493 | if (member_flags & kAccPublic) { |
| 1494 | return true; |
| 1495 | } |
| 1496 | |
| 1497 | // quick accept for access from same class |
| 1498 | if (this == access_to) { |
| 1499 | return true; |
| 1500 | } |
| 1501 | |
| 1502 | // quick reject for private access from another class |
| 1503 | if (member_flags & kAccPrivate) { |
| 1504 | return false; |
| 1505 | } |
| 1506 | |
| 1507 | // Semi-quick test for protected access from a sub-class, which may or |
| 1508 | // may not be in the same package. |
| 1509 | if (member_flags & kAccProtected) { |
| 1510 | if (this->IsSubClass(access_to)) { |
| 1511 | return true; |
| 1512 | } |
| 1513 | } |
| 1514 | |
| 1515 | // Allow protected and private access from other classes in the same package. |
| 1516 | return this->IsInSamePackage(access_to); |
| 1517 | } |
| 1518 | |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 1519 | bool IsSubClass(const Class* klass) const; |
| 1520 | |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1521 | bool IsAssignableFrom(const Class* src) const { |
| 1522 | DCHECK(src != NULL); |
| 1523 | if (this == src) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1524 | // Can always assign to things of the same type |
| 1525 | return true; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1526 | } else if (IsObjectClass()) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1527 | // Can assign any reference to java.lang.Object |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1528 | return !src->IsPrimitive(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1529 | } else if (IsInterface()) { |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1530 | return src->Implements(this); |
| 1531 | } else if (src->IsArrayClass()) { |
| 1532 | return IsAssignableFromArray(src); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1533 | } else { |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1534 | return src->IsSubClass(this); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1535 | } |
| 1536 | } |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 1537 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1538 | Class* GetSuperClass() const { |
| 1539 | // Can only get super class for loaded classes (hack for when runtime is |
| 1540 | // initializing) |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1541 | DCHECK(IsLoaded() || !Runtime::Current()->IsStarted()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1542 | return GetFieldObject<Class*>( |
| 1543 | OFFSET_OF_OBJECT_MEMBER(Class, super_class_), false); |
| 1544 | } |
| 1545 | |
buzbee | 4a3164f | 2011-09-03 11:25:10 -0700 | [diff] [blame] | 1546 | static MemberOffset SuperClassOffset() { |
| 1547 | return MemberOffset(OFFSETOF_MEMBER(Class, super_class_)); |
| 1548 | } |
| 1549 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1550 | void SetSuperClass(Class *new_super_class) { |
| 1551 | // super class is assigned once, except during class linker initialization |
| 1552 | Class* old_super_class = GetFieldObject<Class*>( |
| 1553 | OFFSET_OF_OBJECT_MEMBER(Class, super_class_), false); |
| 1554 | DCHECK(old_super_class == NULL || old_super_class == new_super_class); |
| 1555 | DCHECK(new_super_class != NULL); |
| 1556 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, super_class_), |
| 1557 | new_super_class, false); |
| 1558 | } |
| 1559 | |
| 1560 | bool HasSuperClass() const { |
| 1561 | return GetSuperClass() != NULL; |
| 1562 | } |
| 1563 | |
| 1564 | uint32_t GetSuperClassTypeIdx() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1565 | DCHECK(IsIdxLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1566 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, super_class_type_idx_), |
| 1567 | false); |
| 1568 | } |
| 1569 | |
| 1570 | void SetSuperClassTypeIdx(int32_t new_super_class_idx) { |
| 1571 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, super_class_type_idx_), |
| 1572 | new_super_class_idx, false); |
| 1573 | } |
| 1574 | |
| 1575 | const ClassLoader* GetClassLoader() const; |
| 1576 | |
| 1577 | void SetClassLoader(const ClassLoader* new_cl); |
| 1578 | |
| 1579 | static MemberOffset DexCacheOffset() { |
| 1580 | return MemberOffset(OFFSETOF_MEMBER(Class, dex_cache_)); |
| 1581 | } |
| 1582 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1583 | enum { |
| 1584 | kDumpClassFullDetail = 1, |
| 1585 | kDumpClassClassLoader = (1 << 1), |
| 1586 | kDumpClassInitialized = (1 << 2), |
| 1587 | }; |
| 1588 | |
| 1589 | void DumpClass(std::ostream& os, int flags); |
| 1590 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1591 | DexCache* GetDexCache() const; |
| 1592 | |
| 1593 | void SetDexCache(DexCache* new_dex_cache); |
| 1594 | |
| 1595 | ObjectArray<Method>* GetDirectMethods() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1596 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1597 | return GetFieldObject<ObjectArray<Method>*>( |
| 1598 | OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false); |
| 1599 | } |
| 1600 | |
| 1601 | void SetDirectMethods(ObjectArray<Method>* new_direct_methods) { |
| 1602 | DCHECK(NULL == GetFieldObject<ObjectArray<Method>*>( |
| 1603 | OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false)); |
| 1604 | DCHECK_NE(0, new_direct_methods->GetLength()); |
| 1605 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), |
| 1606 | new_direct_methods, false); |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 1607 | } |
| 1608 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 1609 | Method* GetDirectMethod(int32_t i) const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1610 | return GetDirectMethods()->Get(i); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | void SetDirectMethod(uint32_t i, Method* f) { // TODO: uint16_t |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1614 | ObjectArray<Method>* direct_methods = |
| 1615 | GetFieldObject<ObjectArray<Method>*>( |
| 1616 | OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false); |
| 1617 | direct_methods->Set(i, f); |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 1618 | } |
| 1619 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1620 | // Returns the number of static, private, and constructor methods. |
| 1621 | size_t NumDirectMethods() const { |
| 1622 | return (GetDirectMethods() != NULL) ? GetDirectMethods()->GetLength() : 0; |
| 1623 | } |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 1624 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1625 | ObjectArray<Method>* GetVirtualMethods() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1626 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1627 | return GetFieldObject<ObjectArray<Method>*>( |
| 1628 | OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false); |
| 1629 | } |
| 1630 | |
| 1631 | void SetVirtualMethods(ObjectArray<Method>* new_virtual_methods) { |
| 1632 | // TODO: we reassign virtual methods to grow the table for miranda |
| 1633 | // methods.. they should really just be assigned once |
| 1634 | DCHECK_NE(0, new_virtual_methods->GetLength()); |
| 1635 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), |
| 1636 | new_virtual_methods, false); |
| 1637 | } |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 1638 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1639 | // Returns the number of non-inherited virtual methods. |
| 1640 | size_t NumVirtualMethods() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1641 | return (GetVirtualMethods() != NULL) ? GetVirtualMethods()->GetLength() : 0; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1642 | } |
| 1643 | |
| 1644 | Method* GetVirtualMethod(uint32_t i) const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1645 | DCHECK(IsResolved() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1646 | return GetVirtualMethods()->Get(i); |
| 1647 | } |
| 1648 | |
| 1649 | Method* GetVirtualMethodDuringLinking(uint32_t i) const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1650 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1651 | return GetVirtualMethods()->Get(i); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1652 | } |
| 1653 | |
| 1654 | void SetVirtualMethod(uint32_t i, Method* f) { // TODO: uint16_t |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1655 | ObjectArray<Method>* virtual_methods = |
| 1656 | GetFieldObject<ObjectArray<Method>*>( |
| 1657 | OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false); |
| 1658 | virtual_methods->Set(i, f); |
| 1659 | } |
| 1660 | |
| 1661 | ObjectArray<Method>* GetVTable() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1662 | DCHECK(IsResolved() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1663 | return GetFieldObject<ObjectArray<Method>*>( |
| 1664 | OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false); |
| 1665 | } |
| 1666 | |
| 1667 | ObjectArray<Method>* GetVTableDuringLinking() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1668 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1669 | return GetFieldObject<ObjectArray<Method>*>( |
| 1670 | OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false); |
| 1671 | } |
| 1672 | |
| 1673 | void SetVTable(ObjectArray<Method>* new_vtable) { |
| 1674 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), new_vtable, false); |
| 1675 | } |
| 1676 | |
| 1677 | static MemberOffset VTableOffset() { |
| 1678 | return OFFSET_OF_OBJECT_MEMBER(Class, vtable_); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1679 | } |
| 1680 | |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 1681 | // Given a method implemented by this class but potentially from a |
| 1682 | // super class, return the specific implementation |
| 1683 | // method for this class. |
| 1684 | Method* FindVirtualMethodForVirtual(Method* method) { |
| 1685 | DCHECK(!method->GetDeclaringClass()->IsInterface()); |
| 1686 | // The argument method may from a super class. |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1687 | // Use the index to a potentially overridden one for this instance's class. |
| 1688 | return GetVTable()->Get(method->GetMethodIndex()); |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | // Given a method implemented by this class, but potentially from a |
| 1692 | // super class or interface, return the specific implementation |
| 1693 | // method for this class. |
| 1694 | Method* FindVirtualMethodForInterface(Method* method); |
| 1695 | |
jeffhao | bdb7651 | 2011-09-07 11:43:16 -0700 | [diff] [blame] | 1696 | Method* FindInterfaceMethod(const StringPiece& name, |
| 1697 | const StringPiece& descriptor); |
| 1698 | |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 1699 | Method* FindVirtualMethodForVirtualOrInterface(Method* method) { |
| 1700 | if (method->GetDeclaringClass()->IsInterface()) { |
| 1701 | return FindVirtualMethodForInterface(method); |
| 1702 | } |
| 1703 | return FindVirtualMethodForVirtual(method); |
Elliott Hughes | 72025e5 | 2011-08-23 17:50:30 -0700 | [diff] [blame] | 1704 | } |
| 1705 | |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 1706 | Method* FindDeclaredVirtualMethod(const StringPiece& name, |
Brian Carlstrom | 3a7b4f2 | 2011-09-17 15:01:57 -0700 | [diff] [blame] | 1707 | const StringPiece& signature); |
Carl Shapiro | 419ec7b | 2011-08-03 14:48:33 -0700 | [diff] [blame] | 1708 | |
| 1709 | Method* FindVirtualMethod(const StringPiece& name, |
| 1710 | const StringPiece& descriptor); |
| 1711 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1712 | Method* FindDeclaredDirectMethod(const StringPiece& name, |
| 1713 | const StringPiece& signature); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1714 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1715 | Method* FindDirectMethod(const StringPiece& name, |
| 1716 | const StringPiece& signature); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 1717 | |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 1718 | size_t NumInterfaces() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1719 | CHECK(IsIdxLoaded() || IsErroneous()); // used during loading |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1720 | ObjectArray<Class>* interfaces = GetFieldObject<ObjectArray<Class>*>( |
| 1721 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false); |
| 1722 | return (interfaces != NULL) ? interfaces->GetLength() : 0; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 1723 | } |
| 1724 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1725 | IntArray* GetInterfacesTypeIdx() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1726 | CHECK(IsIdxLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1727 | return GetFieldObject<IntArray*>( |
| 1728 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_), false); |
| 1729 | } |
| 1730 | |
| 1731 | void SetInterfacesTypeIdx(IntArray* new_interfaces_idx); |
| 1732 | |
| 1733 | ObjectArray<Class>* GetInterfaces() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1734 | CHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1735 | return GetFieldObject<ObjectArray<Class>*>( |
| 1736 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false); |
| 1737 | } |
| 1738 | |
| 1739 | void SetInterfaces(ObjectArray<Class>* new_interfaces) { |
| 1740 | DCHECK(NULL == GetFieldObject<Object*>( |
| 1741 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false)); |
| 1742 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), |
| 1743 | new_interfaces, false); |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 1744 | } |
| 1745 | |
| 1746 | void SetInterface(uint32_t i, Class* f) { // TODO: uint16_t |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1747 | DCHECK_LT(i, NumInterfaces()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1748 | ObjectArray<Class>* interfaces = |
| 1749 | GetFieldObject<ObjectArray<Class>*>( |
| 1750 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_), false); |
| 1751 | interfaces->Set(i, f); |
| 1752 | } |
| 1753 | |
| 1754 | Class* GetInterface(uint32_t i) const { |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1755 | DCHECK_LT(i, NumInterfaces()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1756 | return GetInterfaces()->Get(i); |
| 1757 | } |
| 1758 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1759 | int32_t GetIfTableCount() const { |
| 1760 | ObjectArray<InterfaceEntry>* iftable = GetIfTable(); |
| 1761 | if (iftable == NULL) { |
| 1762 | return 0; |
| 1763 | } |
| 1764 | return iftable->GetLength(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1765 | } |
| 1766 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1767 | ObjectArray<InterfaceEntry>* GetIfTable() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1768 | DCHECK(IsResolved() || IsErroneous()); |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1769 | return GetFieldObject<ObjectArray<InterfaceEntry>*>( |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1770 | OFFSET_OF_OBJECT_MEMBER(Class, iftable_), false); |
| 1771 | } |
| 1772 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1773 | void SetIfTable(ObjectArray<InterfaceEntry>* new_iftable) { |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 1774 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, iftable_), new_iftable, false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | // Get instance fields |
| 1778 | ObjectArray<Field>* GetIFields() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1779 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1780 | return GetFieldObject<ObjectArray<Field>*>( |
| 1781 | OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false); |
| 1782 | } |
| 1783 | |
| 1784 | void SetIFields(ObjectArray<Field>* new_ifields) { |
| 1785 | DCHECK(NULL == GetFieldObject<ObjectArray<Field>*>( |
| 1786 | OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false)); |
| 1787 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), |
| 1788 | new_ifields, false); |
| 1789 | } |
| 1790 | |
| 1791 | size_t NumInstanceFields() const { |
| 1792 | return (GetIFields() != NULL) ? GetIFields()->GetLength() : 0; |
| 1793 | } |
| 1794 | |
| 1795 | Field* GetInstanceField(uint32_t i) const { // TODO: uint16_t |
| 1796 | DCHECK_NE(NumInstanceFields(), 0U); |
| 1797 | return GetIFields()->Get(i); |
| 1798 | } |
| 1799 | |
| 1800 | void SetInstanceField(uint32_t i, Field* f) { // TODO: uint16_t |
| 1801 | ObjectArray<Field>* ifields= GetFieldObject<ObjectArray<Field>*>( |
| 1802 | OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false); |
| 1803 | ifields->Set(i, f); |
| 1804 | } |
| 1805 | |
| 1806 | // Returns the number of instance fields containing reference types. |
| 1807 | size_t NumReferenceInstanceFields() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1808 | DCHECK(IsResolved() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1809 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1810 | return GetField32( |
| 1811 | OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_), false); |
| 1812 | } |
| 1813 | |
| 1814 | size_t NumReferenceInstanceFieldsDuringLinking() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1815 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1816 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1817 | return GetField32( |
| 1818 | OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_), false); |
| 1819 | } |
| 1820 | |
| 1821 | void SetNumReferenceInstanceFields(size_t new_num) { |
| 1822 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1823 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, num_reference_instance_fields_), |
| 1824 | new_num, false); |
| 1825 | } |
| 1826 | |
| 1827 | uint32_t GetReferenceInstanceOffsets() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1828 | DCHECK(IsResolved() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1829 | return GetField32( |
| 1830 | OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_), false); |
| 1831 | } |
| 1832 | |
| 1833 | void SetReferenceInstanceOffsets(uint32_t new_reference_offsets); |
| 1834 | |
| 1835 | // Beginning of static field data |
| 1836 | static MemberOffset FieldsOffset() { |
| 1837 | return OFFSET_OF_OBJECT_MEMBER(Class, fields_); |
| 1838 | } |
| 1839 | |
| 1840 | // Returns the number of static fields containing reference types. |
| 1841 | size_t NumReferenceStaticFields() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1842 | DCHECK(IsResolved() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1843 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1844 | return GetField32( |
| 1845 | OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_), false); |
| 1846 | } |
| 1847 | |
| 1848 | size_t NumReferenceStaticFieldsDuringLinking() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1849 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1850 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1851 | return GetField32( |
| 1852 | OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_), false); |
| 1853 | } |
| 1854 | |
| 1855 | void SetNumReferenceStaticFields(size_t new_num) { |
| 1856 | DCHECK(sizeof(size_t) == sizeof(int32_t)); |
| 1857 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, num_reference_static_fields_), |
| 1858 | new_num, false); |
| 1859 | } |
| 1860 | |
| 1861 | ObjectArray<Field>* GetSFields() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1862 | DCHECK(IsLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1863 | return GetFieldObject<ObjectArray<Field>*>( |
| 1864 | OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false); |
| 1865 | } |
| 1866 | |
| 1867 | void SetSFields(ObjectArray<Field>* new_sfields) { |
| 1868 | DCHECK(NULL == GetFieldObject<ObjectArray<Field>*>( |
| 1869 | OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false)); |
| 1870 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), |
| 1871 | new_sfields, false); |
| 1872 | } |
| 1873 | |
| 1874 | size_t NumStaticFields() const { |
| 1875 | return (GetSFields() != NULL) ? GetSFields()->GetLength() : 0; |
| 1876 | } |
| 1877 | |
| 1878 | Field* GetStaticField(uint32_t i) const { // TODO: uint16_t |
| 1879 | return GetSFields()->Get(i); |
| 1880 | } |
| 1881 | |
| 1882 | void SetStaticField(uint32_t i, Field* f) { // TODO: uint16_t |
| 1883 | ObjectArray<Field>* sfields= GetFieldObject<ObjectArray<Field>*>( |
| 1884 | OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false); |
| 1885 | sfields->Set(i, f); |
| 1886 | } |
| 1887 | |
| 1888 | uint32_t GetReferenceStaticOffsets() const { |
| 1889 | return GetField32( |
| 1890 | OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_), false); |
| 1891 | } |
| 1892 | |
| 1893 | void SetReferenceStaticOffsets(uint32_t new_reference_offsets); |
| 1894 | |
| 1895 | // Finds the given instance field in this class or a superclass. |
| 1896 | Field* FindInstanceField(const StringPiece& name, Class* type); |
| 1897 | |
| 1898 | Field* FindDeclaredInstanceField(const StringPiece& name, Class* type); |
| 1899 | |
| 1900 | // Finds the given static field in this class or a superclass. |
| 1901 | Field* FindStaticField(const StringPiece& name, Class* type); |
| 1902 | |
| 1903 | Field* FindDeclaredStaticField(const StringPiece& name, Class* type); |
| 1904 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1905 | pid_t GetClinitThreadId() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1906 | DCHECK(IsIdxLoaded() || IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1907 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, clinit_thread_id_), false); |
| 1908 | } |
| 1909 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1910 | void SetClinitThreadId(pid_t new_clinit_thread_id) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1911 | SetField32(OFFSET_OF_OBJECT_MEMBER(Class, clinit_thread_id_), |
| 1912 | new_clinit_thread_id, false); |
| 1913 | } |
| 1914 | |
| 1915 | Class* GetVerifyErrorClass() const { |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1916 | // DCHECK(IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1917 | return GetFieldObject<Class*>( |
| 1918 | OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_), false); |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 1919 | } |
| 1920 | |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 1921 | void SetVerifyErrorClass(Class* klass) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1922 | klass->SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_), |
| 1923 | klass, false); |
| 1924 | } |
| 1925 | |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 1926 | String* GetSourceFile() const; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 1927 | |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 1928 | void SetSourceFile(String* new_source_file); |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 1929 | |
jeffhao | bdb7651 | 2011-09-07 11:43:16 -0700 | [diff] [blame] | 1930 | private: |
jeffhao | 5dbddee | 2011-09-07 16:38:26 -0700 | [diff] [blame] | 1931 | bool Implements(const Class* klass) const; |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 1932 | bool IsArrayAssignableFromArray(const Class* klass) const; |
| 1933 | bool IsAssignableFromArray(const Class* klass) const; |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 1934 | |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 1935 | // descriptor for the class such as "java.lang.Class" or "[C" |
| 1936 | String* name_; // TODO initialize |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1937 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1938 | // defining class loader, or NULL for the "bootstrap" system loader |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1939 | const ClassLoader* class_loader_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1940 | |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 1941 | // For array classes, the component class object for instanceof/checkcast |
| 1942 | // (for String[][][], this will be String[][]). NULL for non-array classes. |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1943 | Class* component_type_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1944 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1945 | // descriptor for the class such as "Ljava/lang/Class;" or "[C" |
| 1946 | String* descriptor_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1947 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1948 | // DexCache of resolved constant pool entries |
| 1949 | // (will be NULL for VM-generated, e.g. arrays and primitive classes) |
| 1950 | DexCache* dex_cache_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1951 | |
| 1952 | // static, private, and <init> methods |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 1953 | ObjectArray<Method>* direct_methods_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1954 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1955 | // instance fields |
| 1956 | // |
| 1957 | // These describe the layout of the contents of an Object. |
| 1958 | // Note that only the fields directly declared by this class are |
| 1959 | // listed in ifields; fields declared by a superclass are listed in |
| 1960 | // the superclass's Class.ifields. |
| 1961 | // |
| 1962 | // All instance fields that refer to objects are guaranteed to be at |
| 1963 | // the beginning of the field list. num_reference_instance_fields_ |
| 1964 | // specifies the number of reference fields. |
| 1965 | ObjectArray<Field>* ifields_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1966 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1967 | // Interface table (iftable_), one entry per interface supported by |
| 1968 | // this class. That means one entry for each interface we support |
| 1969 | // directly, indirectly via superclass, or indirectly via |
| 1970 | // superinterface. This will be null if neither we nor our |
| 1971 | // superclass implement any interfaces. |
| 1972 | // |
| 1973 | // Why we need this: given "class Foo implements Face", declare |
| 1974 | // "Face faceObj = new Foo()". Invoke faceObj.blah(), where "blah" |
| 1975 | // is part of the Face interface. We can't easily use a single |
| 1976 | // vtable. |
| 1977 | // |
| 1978 | // For every interface a concrete class implements, we create an array |
| 1979 | // of the concrete vtable_ methods for the methods in the interface. |
| 1980 | ObjectArray<InterfaceEntry>* iftable_; |
| 1981 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1982 | // array of interfaces this class implements directly |
| 1983 | // see also interfaces_type_idx_ |
| 1984 | ObjectArray<Class>* interfaces_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1985 | |
| 1986 | // array of type_idx's for interfaces this class implements directly |
| 1987 | // see also interfaces_ |
| 1988 | IntArray* interfaces_type_idx_; |
| 1989 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1990 | // Static fields |
| 1991 | ObjectArray<Field>* sfields_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 1992 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 1993 | // source file name, if known. Otherwise, NULL. |
| 1994 | String* source_file_; |
| 1995 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 1996 | // The superclass, or NULL if this is java.lang.Object or a |
| 1997 | // primitive type. |
| 1998 | // see also super_class_type_idx_; |
| 1999 | Class* super_class_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2000 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2001 | // If class verify fails, we must return same error on subsequent tries. |
| 2002 | // Update with SetVerifyErrorClass to ensure a write barrier is used. |
| 2003 | const Class* verify_error_class_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2004 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2005 | // virtual methods defined in this class; invoked through vtable |
| 2006 | ObjectArray<Method>* virtual_methods_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2007 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2008 | // Virtual method table (vtable), for use by "invoke-virtual". The |
| 2009 | // vtable from the superclass is copied in, and virtual methods from |
| 2010 | // our class either replace those from the super or are appended. |
| 2011 | ObjectArray<Method>* vtable_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2012 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2013 | // access flags; low 16 bits are defined by VM spec |
| 2014 | uint32_t access_flags_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2015 | |
Brian Carlstrom | 53d6ff4 | 2011-09-23 10:45:07 -0700 | [diff] [blame] | 2016 | // Total class size; used when allocating storage on gc heap. |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2017 | size_t class_size_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2018 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 2019 | // tid used to check for recursive <clinit> invocation |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2020 | pid_t clinit_thread_id_; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2021 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2022 | // number of instance fields that are object refs |
| 2023 | size_t num_reference_instance_fields_; |
| 2024 | |
| 2025 | // number of static fields that are object refs |
| 2026 | size_t num_reference_static_fields_; |
| 2027 | |
| 2028 | // Total object size; used when allocating storage on gc heap. |
| 2029 | // (For interfaces and abstract classes this will be zero.) |
| 2030 | size_t object_size_; |
| 2031 | |
| 2032 | // primitive type index, or kPrimNot (0); set for generated prim classes |
| 2033 | PrimitiveType primitive_type_; |
| 2034 | |
| 2035 | // Bitmap of offsets of ifields. |
| 2036 | uint32_t reference_instance_offsets_; |
| 2037 | |
| 2038 | // Bitmap of offsets of sfields. |
| 2039 | uint32_t reference_static_offsets_; |
| 2040 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2041 | // state of class initialization |
| 2042 | Status status_; |
Jesse Wilson | 7833bd2 | 2011-08-09 18:31:44 -0400 | [diff] [blame] | 2043 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2044 | // Set in LoadClass, used to LinkClass |
| 2045 | // see also super_class_ |
| 2046 | uint32_t super_class_type_idx_; |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2047 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2048 | // TODO: ? |
| 2049 | // initiating class loader list |
| 2050 | // NOTE: for classes with low serialNumber, these are unused, and the |
| 2051 | // values are kept in a table in gDvm. |
| 2052 | // InitiatingLoaderList initiating_loader_list_; |
| 2053 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2054 | // Location of first static field. |
| 2055 | uint32_t fields_[0]; |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2056 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2057 | friend struct ClassOffsets; // for verifying offset information |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2058 | DISALLOW_IMPLICIT_CONSTRUCTORS(Class); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2059 | }; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2060 | |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 2061 | std::ostream& operator<<(std::ostream& os, const Class::Status& rhs); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2062 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2063 | inline void Object::SetClass(Class* new_klass) { |
| 2064 | // new_klass may be NULL prior to class linker initialization |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 2065 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Object, klass_), new_klass, false, false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2066 | } |
| 2067 | |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 2068 | inline bool Object::InstanceOf(const Class* klass) const { |
Jesse Wilson | 1415074 | 2011-07-29 19:04:44 -0400 | [diff] [blame] | 2069 | DCHECK(klass != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2070 | DCHECK(GetClass() != NULL); |
| 2071 | return klass->IsAssignableFrom(GetClass()); |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 2072 | } |
| 2073 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2074 | inline bool Object::IsClass() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2075 | Class* java_lang_Class = GetClass()->GetClass(); |
| 2076 | return GetClass() == java_lang_Class; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2077 | } |
| 2078 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2079 | inline bool Object::IsClassClass() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2080 | Class* java_lang_Class = GetClass()->GetClass(); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2081 | return this == java_lang_Class; |
| 2082 | } |
| 2083 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2084 | inline bool Object::IsObjectArray() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2085 | return IsArrayInstance() && !GetClass()->GetComponentType()->IsPrimitive(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2086 | } |
| 2087 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 2088 | inline bool Object::IsArrayInstance() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2089 | return GetClass()->IsArrayClass(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2090 | } |
| 2091 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2092 | inline bool Object::IsField() const { |
| 2093 | Class* java_lang_Class = klass_->klass_; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2094 | Class* java_lang_reflect_Field = |
| 2095 | java_lang_Class->GetInstanceField(0)->GetClass(); |
| 2096 | return GetClass() == java_lang_reflect_Field; |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2097 | } |
| 2098 | |
| 2099 | inline bool Object::IsMethod() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2100 | Class* java_lang_Class = GetClass()->GetClass(); |
| 2101 | Class* java_lang_reflect_Method = |
| 2102 | java_lang_Class->GetDirectMethod(0)->GetClass(); |
| 2103 | return GetClass() == java_lang_reflect_Method; |
| 2104 | } |
| 2105 | |
| 2106 | inline bool Object::IsReferenceInstance() const { |
| 2107 | return GetClass()->IsReferenceClass(); |
| 2108 | } |
| 2109 | |
| 2110 | inline bool Object::IsWeakReferenceInstance() const { |
| 2111 | return GetClass()->IsWeakReferenceClass(); |
| 2112 | } |
| 2113 | |
| 2114 | inline bool Object::IsSoftReferenceInstance() const { |
| 2115 | return GetClass()->IsSoftReferenceClass(); |
| 2116 | } |
| 2117 | |
| 2118 | inline bool Object::IsFinalizerReferenceInstance() const { |
| 2119 | return GetClass()->IsFinalizerReferenceClass(); |
| 2120 | } |
| 2121 | |
| 2122 | inline bool Object::IsPhantomReferenceInstance() const { |
| 2123 | return GetClass()->IsPhantomReferenceClass(); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2124 | } |
| 2125 | |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 2126 | inline size_t Object::SizeOf() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2127 | size_t result; |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 2128 | if (IsArrayInstance()) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2129 | result = AsArray()->SizeOf(); |
| 2130 | } else if (IsClass()) { |
| 2131 | result = AsClass()->SizeOf(); |
| 2132 | } else { |
| 2133 | result = GetClass()->GetObjectSize(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2134 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2135 | DCHECK(!IsField() || result == sizeof(Field)); |
| 2136 | DCHECK(!IsMethod() || result == sizeof(Method)); |
| 2137 | return result; |
| 2138 | } |
| 2139 | |
| 2140 | inline void Field::SetOffset(MemberOffset num_bytes) { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2141 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2142 | Class* type = GetTypeDuringLinking(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2143 | if (type != NULL && (type->IsPrimitiveDouble() || type->IsPrimitiveLong())) { |
| 2144 | DCHECK(IsAligned(num_bytes.Uint32Value(), 8)); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2145 | } |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2146 | SetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_), |
| 2147 | num_bytes.Uint32Value(), false); |
| 2148 | } |
| 2149 | |
| 2150 | inline Class* Field::GetDeclaringClass() const { |
| 2151 | Class* result = GetFieldObject<Class*>( |
| 2152 | OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), false); |
| 2153 | DCHECK(result != NULL); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2154 | DCHECK(result->IsLoaded() || result->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2155 | return result; |
| 2156 | } |
| 2157 | |
| 2158 | inline void Field::SetDeclaringClass(Class *new_declaring_class) { |
| 2159 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), |
| 2160 | new_declaring_class, false); |
| 2161 | } |
| 2162 | |
| 2163 | inline Class* Method::GetDeclaringClass() const { |
| 2164 | Class* result = |
| 2165 | GetFieldObject<Class*>( |
| 2166 | OFFSET_OF_OBJECT_MEMBER(Method, declaring_class_), false); |
| 2167 | DCHECK(result != NULL); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2168 | DCHECK(result->IsLoaded() || result->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2169 | return result; |
| 2170 | } |
| 2171 | |
| 2172 | inline void Method::SetDeclaringClass(Class *new_declaring_class) { |
| 2173 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, declaring_class_), |
| 2174 | new_declaring_class, false); |
| 2175 | } |
| 2176 | |
| 2177 | inline uint32_t Method::GetReturnTypeIdx() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2178 | DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2179 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, java_return_type_idx_), |
| 2180 | false); |
| 2181 | } |
| 2182 | |
| 2183 | inline bool Method::IsReturnAReference() const { |
| 2184 | return !GetReturnType()->IsPrimitive(); |
| 2185 | } |
| 2186 | |
| 2187 | inline bool Method::IsReturnAFloat() const { |
| 2188 | return GetReturnType()->IsPrimitiveFloat(); |
| 2189 | } |
| 2190 | |
| 2191 | inline bool Method::IsReturnADouble() const { |
| 2192 | return GetReturnType()->IsPrimitiveDouble(); |
| 2193 | } |
| 2194 | |
| 2195 | inline bool Method::IsReturnALong() const { |
| 2196 | return GetReturnType()->IsPrimitiveLong(); |
| 2197 | } |
| 2198 | |
| 2199 | inline bool Method::IsReturnVoid() const { |
| 2200 | return GetReturnType()->IsPrimitiveVoid(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2201 | } |
| 2202 | |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 2203 | inline size_t Array::SizeOf() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2204 | return SizeOf(GetLength(), GetClass()->GetComponentSize()); |
| 2205 | } |
| 2206 | |
| 2207 | template<class T> |
| 2208 | void ObjectArray<T>::Set(int32_t i, T* object) { |
| 2209 | if (IsValidIndex(i)) { |
| 2210 | if (object != NULL) { |
| 2211 | Class* element_class = GetClass()->GetComponentType(); |
| 2212 | DCHECK(!element_class->IsPrimitive()); |
| 2213 | // TODO: ArrayStoreException |
| 2214 | CHECK(object->InstanceOf(element_class)); |
| 2215 | } |
| 2216 | MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*)); |
| 2217 | SetFieldObject(data_offset, object, false); |
| 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | template<class T> |
| 2222 | void ObjectArray<T>::SetWithoutChecks(int32_t i, T* object) { |
| 2223 | DCHECK(IsValidIndex(i)); |
| 2224 | MemberOffset data_offset(DataOffset().Int32Value() + i * sizeof(Object*)); |
| 2225 | SetFieldObject(data_offset, object, false); |
| 2226 | } |
| 2227 | |
| 2228 | template<class T> |
| 2229 | void ObjectArray<T>::Copy(const ObjectArray<T>* src, int src_pos, |
| 2230 | ObjectArray<T>* dst, int dst_pos, |
| 2231 | size_t length) { |
| 2232 | if (src->IsValidIndex(src_pos) && |
| 2233 | src->IsValidIndex(src_pos+length-1) && |
| 2234 | dst->IsValidIndex(dst_pos) && |
| 2235 | dst->IsValidIndex(dst_pos+length-1)) { |
| 2236 | MemberOffset src_offset(DataOffset().Int32Value() + |
| 2237 | src_pos * sizeof(Object*)); |
| 2238 | MemberOffset dst_offset(DataOffset().Int32Value() + |
| 2239 | dst_pos * sizeof(Object*)); |
| 2240 | Class* array_class = dst->GetClass(); |
| 2241 | if (array_class == src->GetClass()) { |
| 2242 | // No need for array store checks if arrays are of the same type |
| 2243 | for (size_t i=0; i < length; i++) { |
| 2244 | Object* object = src->GetFieldObject<Object*>(src_offset, false); |
| 2245 | dst->SetFieldObject(dst_offset, object, false); |
| 2246 | src_offset = MemberOffset(src_offset.Uint32Value() + sizeof(Object*)); |
| 2247 | dst_offset = MemberOffset(dst_offset.Uint32Value() + sizeof(Object*)); |
| 2248 | } |
| 2249 | } else { |
| 2250 | Class* element_class = array_class->GetComponentType(); |
| 2251 | CHECK(!element_class->IsPrimitive()); |
| 2252 | for (size_t i=0; i < length; i++) { |
| 2253 | Object* object = src->GetFieldObject<Object*>(src_offset, false); |
| 2254 | // TODO: ArrayStoreException |
| 2255 | CHECK(object == NULL || object->InstanceOf(element_class)); |
| 2256 | dst->SetFieldObject(dst_offset, object, false); |
| 2257 | src_offset = MemberOffset(src_offset.Uint32Value() + sizeof(Object*)); |
| 2258 | dst_offset = MemberOffset(dst_offset.Uint32Value() + sizeof(Object*)); |
| 2259 | } |
| 2260 | } |
Elliott Hughes | 3a4f8df | 2011-09-13 15:22:36 -0700 | [diff] [blame] | 2261 | Heap::WriteBarrier(dst); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2262 | } |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 2263 | } |
Brian Carlstrom | f7ed11a | 2011-08-09 17:55:51 -0700 | [diff] [blame] | 2264 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2265 | class MANAGED ClassClass : public Class { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2266 | private: |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 2267 | int32_t padding_; |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2268 | int64_t serialVersionUID_; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2269 | friend struct ClassClassOffsets; // for verifying offset information |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2270 | DISALLOW_IMPLICIT_CONSTRUCTORS(ClassClass); |
| 2271 | }; |
| 2272 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2273 | class MANAGED StringClass : public Class { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2274 | private: |
| 2275 | CharArray* ASCII_; |
| 2276 | Object* CASE_INSENSITIVE_ORDER_; |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2277 | uint32_t REPLACEMENT_CHAR_; |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 2278 | int64_t serialVersionUID_; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2279 | friend struct StringClassOffsets; // for verifying offset information |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2280 | DISALLOW_IMPLICIT_CONSTRUCTORS(StringClass); |
| 2281 | }; |
| 2282 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2283 | class MANAGED FieldClass : public Class { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2284 | private: |
| 2285 | Object* ORDER_BY_NAME_AND_DECLARING_CLASS_; |
| 2286 | uint32_t TYPE_BOOLEAN_; |
| 2287 | uint32_t TYPE_BYTE_; |
| 2288 | uint32_t TYPE_CHAR_; |
| 2289 | uint32_t TYPE_DOUBLE_; |
| 2290 | uint32_t TYPE_FLOAT_; |
| 2291 | uint32_t TYPE_INTEGER_; |
| 2292 | uint32_t TYPE_LONG_; |
| 2293 | uint32_t TYPE_SHORT_; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2294 | friend struct FieldClassOffsets; // for verifying offset information |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2295 | DISALLOW_IMPLICIT_CONSTRUCTORS(FieldClass); |
| 2296 | }; |
| 2297 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2298 | class MANAGED MethodClass : public Class { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2299 | private: |
Brian Carlstrom | 53d6ff4 | 2011-09-23 10:45:07 -0700 | [diff] [blame] | 2300 | ObjectArray<Object>* NO_ANNOTATIONS_; |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2301 | Object* ORDER_BY_SIGNATURE_; |
| 2302 | friend struct MethodClassOffsets; // for verifying offset information |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 2303 | DISALLOW_IMPLICIT_CONSTRUCTORS(MethodClass); |
| 2304 | }; |
| 2305 | |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2306 | template<class T> |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2307 | class MANAGED PrimitiveArray : public Array { |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 2308 | public: |
Elliott Hughes | 710a0cb | 2011-08-16 14:32:37 -0700 | [diff] [blame] | 2309 | typedef T ElementType; |
| 2310 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2311 | static PrimitiveArray<T>* Alloc(size_t length); |
Brian Carlstrom | 0b138b2 | 2011-07-27 15:19:17 -0700 | [diff] [blame] | 2312 | |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2313 | const T* GetData() const { |
| 2314 | return reinterpret_cast<const T*>(&elements_); |
Brian Carlstrom | 0b138b2 | 2011-07-27 15:19:17 -0700 | [diff] [blame] | 2315 | } |
| 2316 | |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2317 | T* GetData() { |
| 2318 | return reinterpret_cast<T*>(&elements_); |
Brian Carlstrom | 0b138b2 | 2011-07-27 15:19:17 -0700 | [diff] [blame] | 2319 | } |
| 2320 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2321 | T Get(int32_t i) const { |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 2322 | if (!IsValidIndex(i)) { |
Elliott Hughes | 710a0cb | 2011-08-16 14:32:37 -0700 | [diff] [blame] | 2323 | return T(0); |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 2324 | } |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2325 | return GetData()[i]; |
Brian Carlstrom | 0b138b2 | 2011-07-27 15:19:17 -0700 | [diff] [blame] | 2326 | } |
| 2327 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2328 | void Set(int32_t i, T value) { |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 2329 | // TODO: ArrayStoreException |
| 2330 | if (IsValidIndex(i)) { |
| 2331 | GetData()[i] = value; |
| 2332 | } |
Brian Carlstrom | 0b138b2 | 2011-07-27 15:19:17 -0700 | [diff] [blame] | 2333 | } |
| 2334 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2335 | static void SetArrayClass(Class* array_class) { |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2336 | CHECK(array_class_ == NULL); |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2337 | CHECK(array_class != NULL); |
| 2338 | array_class_ = array_class; |
| 2339 | } |
| 2340 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2341 | static void ResetArrayClass() { |
| 2342 | CHECK(array_class_ != NULL); |
| 2343 | array_class_ = NULL; |
| 2344 | } |
| 2345 | |
Brian Carlstrom | a7f4f48 | 2011-07-17 17:01:34 -0700 | [diff] [blame] | 2346 | private: |
Jesse Wilson | fd687c5 | 2011-08-04 19:27:35 -0700 | [diff] [blame] | 2347 | // Location of first element. |
| 2348 | T elements_[0]; |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2349 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 2350 | static Class* array_class_; |
| 2351 | |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2352 | DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray); |
Brian Carlstrom | a7f4f48 | 2011-07-17 17:01:34 -0700 | [diff] [blame] | 2353 | }; |
Carl Shapiro | 5fafe2b | 2011-07-09 15:34:41 -0700 | [diff] [blame] | 2354 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2355 | inline void Class::SetInterfacesTypeIdx(IntArray* new_interfaces_idx) { |
| 2356 | DCHECK(NULL == GetFieldObject<IntArray*>( |
| 2357 | OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_), false)); |
| 2358 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, interfaces_type_idx_), |
| 2359 | new_interfaces_idx, false); |
| 2360 | } |
| 2361 | |
| 2362 | // C++ mirror of java.lang.String |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2363 | class MANAGED String : public Object { |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2364 | public: |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2365 | const CharArray* GetCharArray() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2366 | const CharArray* result = GetFieldObject<const CharArray*>( |
| 2367 | OFFSET_OF_OBJECT_MEMBER(String, array_), false); |
| 2368 | DCHECK(result != NULL); |
| 2369 | return result; |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2370 | } |
| 2371 | |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 2372 | int32_t GetOffset() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2373 | int32_t result = GetField32( |
| 2374 | OFFSET_OF_OBJECT_MEMBER(String, offset_), false); |
| 2375 | DCHECK_LE(0, result); |
| 2376 | return result; |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2377 | } |
| 2378 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2379 | int32_t GetLength() const; |
| 2380 | |
| 2381 | int32_t GetHashCode() const; |
| 2382 | |
| 2383 | void ComputeHashCode() { |
| 2384 | SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength())); |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2385 | } |
| 2386 | |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 2387 | int32_t GetUtfLength() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2388 | return CountUtf8Bytes(GetCharArray()->GetData(), GetLength()); |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 2389 | } |
| 2390 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2391 | uint16_t CharAt(int32_t index) const; |
| 2392 | |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 2393 | String* Intern(); |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2394 | |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 2395 | static String* AllocFromUtf16(int32_t utf16_length, |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2396 | const uint16_t* utf16_data_in, |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2397 | int32_t hash_code = 0); |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 2398 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2399 | static String* AllocFromModifiedUtf8(const char* utf); |
Jesse Wilson | f7e85a5 | 2011-08-01 18:45:58 -0700 | [diff] [blame] | 2400 | |
Jesse Wilson | 8989d99 | 2011-08-02 13:39:42 -0700 | [diff] [blame] | 2401 | static String* AllocFromModifiedUtf8(int32_t utf16_length, |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2402 | const char* utf8_data_in); |
| 2403 | |
| 2404 | static String* Alloc(Class* java_lang_String, int32_t utf16_length); |
| 2405 | |
| 2406 | static String* Alloc(Class* java_lang_String, CharArray* array); |
| 2407 | |
| 2408 | bool Equals(const char* modified_utf8) const; |
| 2409 | |
| 2410 | // TODO: do we need this overload? give it a more intention-revealing name. |
| 2411 | bool Equals(const StringPiece& modified_utf8) const; |
| 2412 | |
| 2413 | bool Equals(const String* that) const; |
| 2414 | |
| 2415 | // TODO: do we need this overload? give it a more intention-revealing name. |
| 2416 | bool Equals(const uint16_t* that_chars, int32_t that_offset, |
| 2417 | int32_t that_length) const; |
| 2418 | |
| 2419 | // Create a modified UTF-8 encoded std::string from a java/lang/String object. |
| 2420 | std::string ToModifiedUtf8() const; |
| 2421 | |
| 2422 | static Class* GetJavaLangString() { |
| 2423 | DCHECK(java_lang_String_ != NULL); |
| 2424 | return java_lang_String_; |
Jesse Wilson | 8989d99 | 2011-08-02 13:39:42 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 2427 | static void SetClass(Class* java_lang_String); |
| 2428 | static void ResetClass(); |
Jesse Wilson | f7e85a5 | 2011-08-01 18:45:58 -0700 | [diff] [blame] | 2429 | |
Brian Carlstrom | a7f4f48 | 2011-07-17 17:01:34 -0700 | [diff] [blame] | 2430 | private: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2431 | void SetHashCode(int32_t new_hash_code) { |
| 2432 | DCHECK_EQ(0u, |
| 2433 | GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), false)); |
| 2434 | SetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), |
| 2435 | new_hash_code, false); |
| 2436 | } |
| 2437 | |
| 2438 | void SetCount(int32_t new_count) { |
| 2439 | DCHECK_LE(0, new_count); |
| 2440 | SetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count, false); |
| 2441 | } |
| 2442 | |
| 2443 | void SetOffset(int32_t new_offset) { |
| 2444 | DCHECK_LE(0, new_offset); |
| 2445 | DCHECK_GE(GetLength(), new_offset); |
| 2446 | SetField32(OFFSET_OF_OBJECT_MEMBER(String, offset_), new_offset, false); |
| 2447 | } |
| 2448 | |
| 2449 | void SetArray(CharArray* new_array) { |
| 2450 | DCHECK(new_array != NULL); |
| 2451 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(String, array_), new_array, false); |
| 2452 | } |
| 2453 | |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2454 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
| 2455 | CharArray* array_; |
| 2456 | |
Brian Carlstrom | dbc0525 | 2011-09-09 01:59:59 -0700 | [diff] [blame] | 2457 | int32_t count_; |
| 2458 | |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2459 | uint32_t hash_code_; |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2460 | |
Elliott Hughes | 289da82 | 2011-08-16 10:11:20 -0700 | [diff] [blame] | 2461 | int32_t offset_; |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2462 | |
Jesse Wilson | f7e85a5 | 2011-08-01 18:45:58 -0700 | [diff] [blame] | 2463 | static Class* java_lang_String_; |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2464 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2465 | friend struct StringOffsets; // for verifying offset information |
Carl Shapiro | 8860c0e | 2011-08-04 17:36:16 -0700 | [diff] [blame] | 2466 | DISALLOW_IMPLICIT_CONSTRUCTORS(String); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2467 | }; |
| 2468 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2469 | inline const String* Field::GetName() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2470 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2471 | String* result = |
| 2472 | GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(Field, name_), false); |
| 2473 | DCHECK(result != NULL); |
| 2474 | return result; |
| 2475 | } |
| 2476 | |
| 2477 | inline void Field::SetName(String* new_name) { |
| 2478 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Field, name_), |
| 2479 | new_name, false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | inline uint32_t Field::GetAccessFlags() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2483 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2484 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), false); |
| 2485 | } |
| 2486 | |
| 2487 | inline uint32_t Field::GetTypeIdx() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2488 | DCHECK(GetDeclaringClass()->IsIdxLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2489 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, type_idx_), false); |
| 2490 | } |
| 2491 | |
| 2492 | inline MemberOffset Field::GetOffset() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2493 | DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2494 | return MemberOffset( |
| 2495 | GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_), false)); |
| 2496 | } |
| 2497 | |
| 2498 | inline MemberOffset Field::GetOffsetDuringLinking() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2499 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2500 | return MemberOffset( |
| 2501 | GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_), false)); |
| 2502 | } |
| 2503 | |
| 2504 | inline const String* Method::GetName() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2505 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2506 | const String* result = |
| 2507 | GetFieldObject<const String*>( |
| 2508 | OFFSET_OF_OBJECT_MEMBER(Method, name_), false); |
| 2509 | DCHECK(result != NULL); |
| 2510 | return result; |
| 2511 | } |
| 2512 | |
| 2513 | inline void Method::SetName(String* new_name) { |
| 2514 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, name_), |
| 2515 | new_name, false); |
| 2516 | |
| 2517 | } |
| 2518 | |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 2519 | inline ByteArray* Method::GetRegisterMapData() const { |
| 2520 | return GetFieldObject<ByteArray*>( |
| 2521 | OFFSET_OF_OBJECT_MEMBER(Method, register_map_data_), false); |
| 2522 | } |
| 2523 | |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 2524 | inline void Method::SetRegisterMapData(ByteArray* data) { |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 2525 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, register_map_data_), |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 2526 | data, false); |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 2527 | } |
| 2528 | |
| 2529 | inline ByteArray* Method::GetRegisterMapHeader() const { |
| 2530 | return GetFieldObject<ByteArray*>( |
| 2531 | OFFSET_OF_OBJECT_MEMBER(Method, register_map_header_), false); |
| 2532 | } |
| 2533 | |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 2534 | inline void Method::SetRegisterMapHeader(ByteArray* header) { |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 2535 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, register_map_header_), |
jeffhao | a0a764a | 2011-09-16 10:43:38 -0700 | [diff] [blame] | 2536 | header, false); |
jeffhao | e23d93c | 2011-09-15 14:48:43 -0700 | [diff] [blame] | 2537 | } |
| 2538 | |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 2539 | inline String* Method::GetShorty() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2540 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 2541 | return GetFieldObject<String*>( |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2542 | OFFSET_OF_OBJECT_MEMBER(Method, shorty_), false); |
| 2543 | } |
| 2544 | |
Brian Carlstrom | 2ed6739 | 2011-09-09 14:53:28 -0700 | [diff] [blame] | 2545 | inline void Method::SetShorty(String* new_shorty) { |
| 2546 | DCHECK(NULL == GetFieldObject<String*>( |
| 2547 | OFFSET_OF_OBJECT_MEMBER(Method, shorty_), false)); |
| 2548 | DCHECK_LE(1, new_shorty->GetLength()); |
| 2549 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, shorty_), new_shorty, false); |
| 2550 | } |
| 2551 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2552 | inline const String* Method::GetSignature() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2553 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2554 | const String* result = |
| 2555 | GetFieldObject<const String*>( |
| 2556 | OFFSET_OF_OBJECT_MEMBER(Method, signature_), false); |
| 2557 | DCHECK(result != NULL); |
| 2558 | return result; |
| 2559 | } |
| 2560 | |
| 2561 | inline void Method::SetSignature(String* new_signature) { |
| 2562 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Method, signature_), |
| 2563 | new_signature, false); |
| 2564 | } |
| 2565 | |
| 2566 | inline uint32_t Class::GetAccessFlags() const { |
| 2567 | // Check class is loaded or this is java.lang.String that has a |
| 2568 | // circularity issue during loading the names of its members |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2569 | DCHECK(IsLoaded() || IsErroneous() || |
| 2570 | this == String::GetJavaLangString() || |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2571 | this == Field::GetJavaLangReflectField() || |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 2572 | this == Method::GetJavaLangReflectMethod()) << PrettyClass(this); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2573 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, access_flags_), false); |
| 2574 | } |
| 2575 | |
| 2576 | inline void Class::SetDescriptor(String* new_descriptor) { |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2577 | DCHECK(GetDescriptor() == NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2578 | DCHECK(new_descriptor != NULL); |
| 2579 | DCHECK_NE(0, new_descriptor->GetLength()); |
| 2580 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, descriptor_), |
| 2581 | new_descriptor, false); |
| 2582 | } |
| 2583 | |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 2584 | inline String* Class::GetSourceFile() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2585 | DCHECK(IsLoaded() || IsErroneous()); |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 2586 | return GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(Class, source_file_), false); |
| 2587 | } |
| 2588 | |
| 2589 | inline void Class::SetSourceFile(String* new_source_file) { |
| 2590 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Class, source_file_), new_source_file, false); |
| 2591 | } |
| 2592 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2593 | inline uint32_t Method::GetAccessFlags() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2594 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2595 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, access_flags_), false); |
| 2596 | } |
| 2597 | |
| 2598 | inline uint16_t Method::GetMethodIndex() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2599 | DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous()); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 2600 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, method_index_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2601 | } |
| 2602 | |
| 2603 | inline uint16_t Method::NumRegisters() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2604 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 2605 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_registers_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2606 | } |
| 2607 | |
| 2608 | inline uint16_t Method::NumIns() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2609 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 2610 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_ins_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | inline uint16_t Method::NumOuts() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2614 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Elliott Hughes | 1d3f114 | 2011-09-13 12:00:00 -0700 | [diff] [blame] | 2615 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, num_outs_), false); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2616 | } |
| 2617 | |
| 2618 | inline uint32_t Method::GetProtoIdx() const { |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 2619 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2620 | return GetField32(OFFSET_OF_OBJECT_MEMBER(Method, proto_idx_), false); |
| 2621 | } |
| 2622 | |
| 2623 | // C++ mirror of java.lang.Throwable |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2624 | class MANAGED Throwable : public Object { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 2625 | public: |
| 2626 | void SetDetailMessage(String* new_detail_message) { |
| 2627 | SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), |
| 2628 | new_detail_message, false); |
| 2629 | } |
| 2630 | |
Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 2631 | private: |
| 2632 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
| 2633 | Throwable* cause_; |
| 2634 | String* detail_message_; |
| 2635 | Object* stack_state_; // Note this is Java volatile: |
| 2636 | Object* stack_trace_; |
| 2637 | Object* suppressed_exceptions_; |
| 2638 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2639 | friend struct ThrowableOffsets; // for verifying offset information |
Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 2640 | DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable); |
| 2641 | }; |
| 2642 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2643 | // C++ mirror of java.lang.StackTraceElement |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2644 | class MANAGED StackTraceElement : public Object { |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2645 | public: |
| 2646 | const String* GetDeclaringClass() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2647 | return GetFieldObject<const String*>( |
| 2648 | OFFSET_OF_OBJECT_MEMBER(StackTraceElement, declaring_class_), false); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2649 | } |
| 2650 | |
| 2651 | const String* GetMethodName() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2652 | return GetFieldObject<const String*>( |
| 2653 | OFFSET_OF_OBJECT_MEMBER(StackTraceElement, method_name_), false); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | const String* GetFileName() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2657 | return GetFieldObject<const String*>( |
| 2658 | OFFSET_OF_OBJECT_MEMBER(StackTraceElement, file_name_), false); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2659 | } |
| 2660 | |
Shih-wei Liao | ff0f9be | 2011-08-29 15:43:53 -0700 | [diff] [blame] | 2661 | int32_t GetLineNumber() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2662 | return GetField32( |
| 2663 | OFFSET_OF_OBJECT_MEMBER(StackTraceElement, line_number_), false); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2664 | } |
| 2665 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2666 | static StackTraceElement* Alloc(const String* declaring_class, |
| 2667 | const String* method_name, |
| 2668 | const String* file_name, |
| 2669 | int32_t line_number); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2670 | |
| 2671 | static void SetClass(Class* java_lang_StackTraceElement); |
| 2672 | |
| 2673 | static void ResetClass(); |
| 2674 | |
| 2675 | private: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2676 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2677 | const String* declaring_class_; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2678 | const String* file_name_; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2679 | const String* method_name_; |
Shih-wei Liao | ff0f9be | 2011-08-29 15:43:53 -0700 | [diff] [blame] | 2680 | int32_t line_number_; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2681 | |
| 2682 | static Class* GetStackTraceElement() { |
| 2683 | DCHECK(java_lang_StackTraceElement_ != NULL); |
| 2684 | return java_lang_StackTraceElement_; |
| 2685 | } |
| 2686 | |
| 2687 | static Class* java_lang_StackTraceElement_; |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 2688 | |
| 2689 | friend struct StackTraceElementOffsets; // for verifying offset information |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2690 | DISALLOW_IMPLICIT_CONSTRUCTORS(StackTraceElement); |
| 2691 | }; |
| 2692 | |
Brian Carlstrom | e4f7e1d | 2011-09-11 13:21:12 -0700 | [diff] [blame] | 2693 | class MANAGED InterfaceEntry : public ObjectArray<Object> { |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2694 | public: |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 2695 | Class* GetInterface() const { |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2696 | Class* interface = Get(kInterface)->AsClass(); |
| 2697 | DCHECK(interface != NULL); |
| 2698 | return interface; |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2699 | } |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 2700 | |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 2701 | void SetInterface(Class* interface) { |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2702 | DCHECK(interface != NULL); |
Brian Carlstrom | 30b9445 | 2011-08-25 21:35:26 -0700 | [diff] [blame] | 2703 | DCHECK(interface->IsInterface()); |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2704 | DCHECK(Get(kInterface) == NULL); |
| 2705 | Set(kInterface, interface); |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2706 | } |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 2707 | |
Brian Carlstrom | 8692721 | 2011-09-15 11:31:11 -0700 | [diff] [blame] | 2708 | size_t GetMethodArrayCount() const { |
| 2709 | ObjectArray<Method>* method_array = down_cast<ObjectArray<Method>*>(Get(kMethodArray)); |
| 2710 | if (method_array == 0) { |
| 2711 | return 0; |
| 2712 | } |
| 2713 | return method_array->GetLength(); |
| 2714 | } |
| 2715 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2716 | ObjectArray<Method>* GetMethodArray() const { |
| 2717 | ObjectArray<Method>* method_array = down_cast<ObjectArray<Method>*>(Get(kMethodArray)); |
| 2718 | DCHECK(method_array != NULL); |
| 2719 | return method_array; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2720 | } |
| 2721 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2722 | void SetMethodArray(ObjectArray<Method>* new_ma) { |
| 2723 | DCHECK(new_ma != NULL); |
| 2724 | DCHECK(Get(kMethodArray) == NULL); |
| 2725 | Set(kMethodArray, new_ma); |
| 2726 | } |
| 2727 | |
| 2728 | static size_t LengthAsArray() { |
| 2729 | return kMax; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 2730 | } |
| 2731 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 2732 | private: |
Carl Shapiro | 3ee755d | 2011-06-28 12:11:04 -0700 | [diff] [blame] | 2733 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2734 | enum ArrayIndex { |
| 2735 | // Points to the interface class. |
| 2736 | kInterface = 0, |
| 2737 | // Method pointers into the vtable, allow fast map from interface |
| 2738 | // method index to concrete instance method. |
| 2739 | kMethodArray = 1, |
| 2740 | kMax = 2, |
| 2741 | }; |
Carl Shapiro | f88c952 | 2011-08-06 15:47:38 -0700 | [diff] [blame] | 2742 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 2743 | DISALLOW_IMPLICIT_CONSTRUCTORS(InterfaceEntry); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 2744 | }; |
| 2745 | |
| 2746 | } // namespace art |
| 2747 | |
| 2748 | #endif // ART_SRC_OBJECT_H_ |