Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [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 | */ |
| 16 | |
| 17 | #ifndef ART_SRC_OBJECT_UTILS_H_ |
| 18 | #define ART_SRC_OBJECT_UTILS_H_ |
| 19 | |
| 20 | #include "class_linker.h" |
| 21 | #include "dex_cache.h" |
| 22 | #include "dex_file.h" |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 23 | #include "intern_table.h" |
Ian Rogers | 672f520 | 2012-01-12 18:06:40 -0800 | [diff] [blame] | 24 | #include "monitor.h" |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 25 | #include "object.h" |
| 26 | #include "runtime.h" |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 27 | #include "UniquePtr.h" |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 28 | |
| 29 | #include <string> |
| 30 | |
| 31 | namespace art { |
| 32 | |
Ian Rogers | 672f520 | 2012-01-12 18:06:40 -0800 | [diff] [blame] | 33 | class ObjectLock { |
| 34 | public: |
| 35 | explicit ObjectLock(Object* object) : self_(Thread::Current()), obj_(object) { |
| 36 | CHECK(object != NULL); |
| 37 | obj_->MonitorEnter(self_); |
| 38 | } |
| 39 | |
| 40 | ~ObjectLock() { |
| 41 | obj_->MonitorExit(self_); |
| 42 | } |
| 43 | |
| 44 | void Wait() { |
| 45 | return Monitor::Wait(self_, obj_, 0, 0, false); |
| 46 | } |
| 47 | |
| 48 | void Notify() { |
| 49 | obj_->Notify(); |
| 50 | } |
| 51 | |
| 52 | void NotifyAll() { |
| 53 | obj_->NotifyAll(); |
| 54 | } |
| 55 | |
| 56 | private: |
| 57 | Thread* self_; |
| 58 | Object* obj_; |
| 59 | DISALLOW_COPY_AND_ASSIGN(ObjectLock); |
| 60 | }; |
| 61 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 62 | class ClassHelper { |
| 63 | public: |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 64 | ClassHelper(const Class* c = NULL, ClassLinker* l = NULL) |
| 65 | : class_def_(NULL), |
| 66 | class_linker_(l), |
| 67 | dex_cache_(NULL), |
| 68 | dex_file_(NULL), |
| 69 | interface_type_list_(NULL), |
Brian Carlstrom | e77be40 | 2012-03-30 01:08:38 -0700 | [diff] [blame] | 70 | klass_(NULL) { |
| 71 | if (c != NULL) { |
| 72 | ChangeClass(c); |
| 73 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 74 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 75 | |
| 76 | void ChangeClass(const Class* new_c) { |
Brian Carlstrom | 01e076e | 2012-03-30 11:54:16 -0700 | [diff] [blame] | 77 | CHECK(new_c != NULL) << "klass_=" << klass_; // Log what we were changing from if any |
| 78 | CHECK(new_c->IsClass()) << "new_c=" << new_c; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 79 | if (dex_cache_ != NULL) { |
| 80 | DexCache* new_c_dex_cache = new_c->GetDexCache(); |
| 81 | if (new_c_dex_cache != dex_cache_) { |
| 82 | dex_cache_ = new_c_dex_cache; |
| 83 | dex_file_ = NULL; |
| 84 | } |
| 85 | } |
| 86 | klass_ = new_c; |
| 87 | interface_type_list_ = NULL; |
| 88 | class_def_ = NULL; |
| 89 | } |
| 90 | |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 91 | // The returned const char* is only guaranteed to be valid for the lifetime of the ClassHelper. |
| 92 | // If you need it longer, copy it into a std::string. |
| 93 | const char* GetDescriptor() { |
Brian Carlstrom | 93235f7 | 2012-03-29 22:48:15 -0700 | [diff] [blame] | 94 | CHECK(klass_ != NULL); |
Ian Rogers | a68a1cb | 2012-01-10 10:34:36 -0800 | [diff] [blame] | 95 | if (UNLIKELY(klass_->IsArrayClass())) { |
| 96 | return GetArrayDescriptor(); |
| 97 | } else if (UNLIKELY(klass_->IsPrimitive())) { |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 98 | return Primitive::Descriptor(klass_->GetPrimitiveType()); |
Ian Rogers | a68a1cb | 2012-01-10 10:34:36 -0800 | [diff] [blame] | 99 | } else if (UNLIKELY(klass_->IsProxyClass())) { |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 100 | descriptor_ = GetClassLinker()->GetDescriptorForProxy(klass_); |
| 101 | return descriptor_.c_str(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 102 | } else { |
| 103 | const DexFile& dex_file = GetDexFile(); |
| 104 | const DexFile::TypeId& type_id = dex_file.GetTypeId(klass_->GetDexTypeIndex()); |
| 105 | return dex_file.GetTypeDescriptor(type_id); |
| 106 | } |
| 107 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 108 | |
Ian Rogers | a68a1cb | 2012-01-10 10:34:36 -0800 | [diff] [blame] | 109 | const char* GetArrayDescriptor() { |
| 110 | std::string result("["); |
| 111 | const Class* saved_klass = klass_; |
Brian Carlstrom | 93235f7 | 2012-03-29 22:48:15 -0700 | [diff] [blame] | 112 | CHECK(saved_klass != NULL); |
Ian Rogers | a68a1cb | 2012-01-10 10:34:36 -0800 | [diff] [blame] | 113 | ChangeClass(klass_->GetComponentType()); |
| 114 | result += GetDescriptor(); |
| 115 | ChangeClass(saved_klass); |
| 116 | descriptor_ = result; |
| 117 | return descriptor_.c_str(); |
| 118 | } |
| 119 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 120 | const DexFile::ClassDef* GetClassDef() { |
| 121 | const DexFile::ClassDef* result = class_def_; |
| 122 | if (result == NULL) { |
| 123 | result = GetDexFile().FindClassDef(GetDescriptor()); |
| 124 | class_def_ = result; |
| 125 | } |
| 126 | return result; |
| 127 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 128 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 129 | uint32_t NumInterfaces() { |
Brian Carlstrom | 93235f7 | 2012-03-29 22:48:15 -0700 | [diff] [blame] | 130 | DCHECK(klass_ != NULL); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 131 | if (klass_->IsPrimitive()) { |
| 132 | return 0; |
| 133 | } else if (klass_->IsArrayClass()) { |
| 134 | return 2; |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 135 | } else if (klass_->IsProxyClass()) { |
| 136 | return klass_->GetIfTable()->GetLength(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 137 | } else { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 138 | const DexFile::TypeList* interfaces = GetInterfaceTypeList(); |
| 139 | if (interfaces == NULL) { |
| 140 | return 0; |
| 141 | } else { |
| 142 | return interfaces->Size(); |
| 143 | } |
| 144 | } |
| 145 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 146 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 147 | uint16_t GetInterfaceTypeIdx(uint32_t idx) { |
Brian Carlstrom | 93235f7 | 2012-03-29 22:48:15 -0700 | [diff] [blame] | 148 | DCHECK(klass_ != NULL); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 149 | DCHECK(!klass_->IsPrimitive()); |
| 150 | DCHECK(!klass_->IsArrayClass()); |
| 151 | return GetInterfaceTypeList()->GetTypeItem(idx).type_idx_; |
| 152 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 153 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 154 | Class* GetInterface(uint32_t idx) { |
Brian Carlstrom | 93235f7 | 2012-03-29 22:48:15 -0700 | [diff] [blame] | 155 | DCHECK(klass_ != NULL); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 156 | DCHECK(!klass_->IsPrimitive()); |
| 157 | if (klass_->IsArrayClass()) { |
| 158 | if (idx == 0) { |
| 159 | return GetClassLinker()->FindSystemClass("Ljava/lang/Cloneable;"); |
| 160 | } else { |
| 161 | DCHECK_EQ(1U, idx); |
| 162 | return GetClassLinker()->FindSystemClass("Ljava/io/Serializable;"); |
| 163 | } |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 164 | } else if (klass_->IsProxyClass()) { |
| 165 | return klass_->GetIfTable()->Get(idx)->GetInterface(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 166 | } else { |
| 167 | uint16_t type_idx = GetInterfaceTypeIdx(idx); |
| 168 | Class* interface = GetDexCache()->GetResolvedType(type_idx); |
| 169 | if (interface == NULL) { |
| 170 | interface = GetClassLinker()->ResolveType(GetDexFile(), type_idx, klass_); |
| 171 | CHECK(interface != NULL || Thread::Current()->IsExceptionPending()); |
| 172 | } |
| 173 | return interface; |
| 174 | } |
| 175 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 176 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 177 | const char* GetSourceFile() { |
Elliott Hughes | 9557241 | 2011-12-13 18:14:20 -0800 | [diff] [blame] | 178 | std::string descriptor(GetDescriptor()); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 179 | const DexFile& dex_file = GetDexFile(); |
| 180 | const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor); |
Elliott Hughes | 12c51e3 | 2012-01-17 20:25:05 -0800 | [diff] [blame] | 181 | CHECK(dex_class_def != NULL); |
| 182 | return dex_file.GetSourceFile(*dex_class_def); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 183 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 184 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 185 | std::string GetLocation() { |
Ian Rogers | e1758fe | 2012-04-19 11:31:15 -0700 | [diff] [blame] | 186 | return GetDexCache()->GetLocation()->ToModifiedUtf8(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | const DexFile& GetDexFile() { |
| 190 | const DexFile* result = dex_file_; |
| 191 | if (result == NULL) { |
| 192 | const DexCache* dex_cache = GetDexCache(); |
| 193 | result = &GetClassLinker()->FindDexFile(dex_cache); |
| 194 | dex_file_ = result; |
| 195 | } |
| 196 | return *result; |
| 197 | } |
| 198 | |
| 199 | private: |
| 200 | const DexFile::TypeList* GetInterfaceTypeList() { |
| 201 | const DexFile::TypeList* result = interface_type_list_; |
| 202 | if (result == NULL) { |
| 203 | const DexFile::ClassDef* class_def = GetClassDef(); |
| 204 | if (class_def != NULL) { |
| 205 | result = GetDexFile().GetInterfacesList(*class_def); |
| 206 | interface_type_list_ = result; |
| 207 | } |
| 208 | } |
| 209 | return result; |
| 210 | } |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 211 | |
Ian Rogers | e1758fe | 2012-04-19 11:31:15 -0700 | [diff] [blame] | 212 | DexCache* GetDexCache() { |
| 213 | DexCache* result = dex_cache_; |
| 214 | if (result == NULL) { |
| 215 | DCHECK(klass_ != NULL); |
| 216 | result = klass_->GetDexCache(); |
| 217 | dex_cache_ = result; |
| 218 | } |
| 219 | return result; |
| 220 | } |
| 221 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 222 | ClassLinker* GetClassLinker() { |
| 223 | ClassLinker* result = class_linker_; |
| 224 | if (result == NULL) { |
| 225 | result = Runtime::Current()->GetClassLinker(); |
| 226 | class_linker_ = result; |
| 227 | } |
| 228 | return result; |
| 229 | } |
| 230 | |
| 231 | const DexFile::ClassDef* class_def_; |
| 232 | ClassLinker* class_linker_; |
| 233 | DexCache* dex_cache_; |
| 234 | const DexFile* dex_file_; |
| 235 | const DexFile::TypeList* interface_type_list_; |
| 236 | const Class* klass_; |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 237 | std::string descriptor_; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 238 | |
| 239 | DISALLOW_COPY_AND_ASSIGN(ClassHelper); |
| 240 | }; |
| 241 | |
| 242 | class FieldHelper { |
| 243 | public: |
| 244 | FieldHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(NULL) {} |
Elliott Hughes | ff17f1f | 2012-01-24 18:12:29 -0800 | [diff] [blame] | 245 | explicit FieldHelper(const Field* f) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(f) {} |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 246 | FieldHelper(const Field* f, ClassLinker* l) : class_linker_(l), dex_cache_(NULL), dex_file_(NULL), |
| 247 | field_(f) {} |
| 248 | |
| 249 | void ChangeField(const Field* new_f) { |
| 250 | DCHECK(new_f != NULL); |
| 251 | if (dex_cache_ != NULL) { |
| 252 | DexCache* new_f_dex_cache = new_f->GetDeclaringClass()->GetDexCache(); |
| 253 | if (new_f_dex_cache != dex_cache_) { |
| 254 | dex_cache_ = new_f_dex_cache; |
| 255 | dex_file_ = NULL; |
| 256 | } |
| 257 | } |
| 258 | field_ = new_f; |
| 259 | } |
| 260 | const char* GetName() { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 261 | uint32_t field_index = field_->GetDexFieldIndex(); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 262 | if (!field_->GetDeclaringClass()->IsProxyClass()) { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 263 | const DexFile& dex_file = GetDexFile(); |
| 264 | return dex_file.GetFieldName(dex_file.GetFieldId(field_index)); |
| 265 | } else { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 266 | DCHECK(field_->IsStatic()); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 267 | DCHECK_LT(field_index, 2U); |
| 268 | return field_index == 0 ? "interfaces" : "throws"; |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 269 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 270 | } |
| 271 | String* GetNameAsString() { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 272 | uint32_t field_index = field_->GetDexFieldIndex(); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 273 | if (!field_->GetDeclaringClass()->IsProxyClass()) { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 274 | const DexFile& dex_file = GetDexFile(); |
| 275 | const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index); |
| 276 | return GetClassLinker()->ResolveString(dex_file, field_id.name_idx_, GetDexCache()); |
| 277 | } else { |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 278 | return Runtime::Current()->GetInternTable()->InternStrong(GetName()); |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 279 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 280 | } |
| 281 | Class* GetType() { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 282 | uint32_t field_index = field_->GetDexFieldIndex(); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 283 | if (!field_->GetDeclaringClass()->IsProxyClass()) { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 284 | const DexFile& dex_file = GetDexFile(); |
| 285 | const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index); |
| 286 | Class* type = GetDexCache()->GetResolvedType(field_id.type_idx_); |
| 287 | if (type == NULL) { |
| 288 | type = GetClassLinker()->ResolveType(field_id.type_idx_, field_); |
| 289 | CHECK(type != NULL || Thread::Current()->IsExceptionPending()); |
| 290 | } |
| 291 | return type; |
| 292 | } else { |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 293 | return GetClassLinker()->FindSystemClass(GetTypeDescriptor()); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 294 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 295 | } |
| 296 | const char* GetTypeDescriptor() { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 297 | uint32_t field_index = field_->GetDexFieldIndex(); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 298 | if (!field_->GetDeclaringClass()->IsProxyClass()) { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 299 | const DexFile& dex_file = GetDexFile(); |
| 300 | const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index); |
| 301 | return dex_file.GetFieldTypeDescriptor(field_id); |
| 302 | } else { |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 303 | DCHECK(field_->IsStatic()); |
Elliott Hughes | 2ed52c4 | 2012-03-21 16:56:56 -0700 | [diff] [blame] | 304 | DCHECK_LT(field_index, 2U); |
| 305 | // 0 == Class[] interfaces; 1 == Class[][] throws; |
| 306 | return field_index == 0 ? "[Ljava/lang/Class;" : "[[Ljava/lang/Class;"; |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 307 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 308 | } |
| 309 | Primitive::Type GetTypeAsPrimitiveType() { |
| 310 | return Primitive::GetType(GetTypeDescriptor()[0]); |
| 311 | } |
| 312 | bool IsPrimitiveType() { |
| 313 | Primitive::Type type = GetTypeAsPrimitiveType(); |
| 314 | return type != Primitive::kPrimNot; |
| 315 | } |
| 316 | size_t FieldSize() { |
| 317 | Primitive::Type type = GetTypeAsPrimitiveType(); |
| 318 | return Primitive::FieldSize(type); |
| 319 | } |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 320 | |
| 321 | // The returned const char* is only guaranteed to be valid for the lifetime of the FieldHelper. |
| 322 | // If you need it longer, copy it into a std::string. |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 323 | const char* GetDeclaringClassDescriptor() { |
| 324 | uint16_t type_idx = field_->GetDeclaringClass()->GetDexTypeIndex(); |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 325 | if (type_idx != DexFile::kDexNoIndex16) { |
| 326 | const DexFile& dex_file = GetDexFile(); |
| 327 | return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx)); |
| 328 | } else { |
| 329 | // Most likely a proxy class |
| 330 | ClassHelper kh(field_->GetDeclaringClass()); |
| 331 | declaring_class_descriptor_ = kh.GetDescriptor(); |
| 332 | return declaring_class_descriptor_.c_str(); |
| 333 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | private: |
| 337 | DexCache* GetDexCache() { |
| 338 | DexCache* result = dex_cache_; |
| 339 | if (result == NULL) { |
| 340 | result = field_->GetDeclaringClass()->GetDexCache(); |
| 341 | dex_cache_ = result; |
| 342 | } |
| 343 | return result; |
| 344 | } |
| 345 | ClassLinker* GetClassLinker() { |
| 346 | ClassLinker* result = class_linker_; |
| 347 | if (result == NULL) { |
| 348 | result = Runtime::Current()->GetClassLinker(); |
| 349 | class_linker_ = result; |
| 350 | } |
| 351 | return result; |
| 352 | } |
| 353 | const DexFile& GetDexFile() { |
| 354 | const DexFile* result = dex_file_; |
| 355 | if (result == NULL) { |
| 356 | const DexCache* dex_cache = GetDexCache(); |
| 357 | result = &GetClassLinker()->FindDexFile(dex_cache); |
| 358 | dex_file_ = result; |
| 359 | } |
| 360 | return *result; |
| 361 | } |
| 362 | |
| 363 | ClassLinker* class_linker_; |
| 364 | DexCache* dex_cache_; |
| 365 | const DexFile* dex_file_; |
| 366 | const Field* field_; |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 367 | std::string declaring_class_descriptor_; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 368 | |
| 369 | DISALLOW_COPY_AND_ASSIGN(FieldHelper); |
| 370 | }; |
| 371 | |
| 372 | class MethodHelper { |
| 373 | public: |
| 374 | MethodHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), method_(NULL), |
| 375 | shorty_(NULL), shorty_len_(0) {} |
Elliott Hughes | ff17f1f | 2012-01-24 18:12:29 -0800 | [diff] [blame] | 376 | explicit MethodHelper(const Method* m) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 377 | method_(NULL), shorty_(NULL), shorty_len_(0) { |
| 378 | SetMethod(m); |
| 379 | } |
| 380 | MethodHelper(const Method* m, ClassLinker* l) : class_linker_(l), dex_cache_(NULL), |
| 381 | dex_file_(NULL), method_(NULL), shorty_(NULL), shorty_len_(0) { |
| 382 | SetMethod(m); |
| 383 | } |
| 384 | |
| 385 | void ChangeMethod(Method* new_m) { |
| 386 | DCHECK(new_m != NULL); |
| 387 | if (dex_cache_ != NULL) { |
| 388 | Class* klass = new_m->GetDeclaringClass(); |
| 389 | if (klass->IsProxyClass()) { |
| 390 | dex_cache_ = NULL; |
| 391 | dex_file_ = NULL; |
| 392 | } else { |
| 393 | DexCache* new_m_dex_cache = klass->GetDexCache(); |
| 394 | if (new_m_dex_cache != dex_cache_) { |
| 395 | dex_cache_ = new_m_dex_cache; |
| 396 | dex_file_ = NULL; |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | SetMethod(new_m); |
| 401 | shorty_ = NULL; |
| 402 | } |
| 403 | const char* GetName() { |
| 404 | const DexFile& dex_file = GetDexFile(); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 405 | uint32_t dex_method_idx = method_->GetDexMethodIndex(); |
| 406 | if (dex_method_idx != DexFile::kDexNoIndex16) { |
| 407 | return dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); |
| 408 | } else { |
| 409 | Runtime* runtime = Runtime::Current(); |
| 410 | if (method_ == runtime->GetResolutionMethod()) { |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 411 | return "<runtime internal resolution method>"; |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 412 | } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) { |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 413 | return "<runtime internal callee-save all registers method>"; |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 414 | } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) { |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 415 | return "<runtime internal callee-save reference registers method>"; |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 416 | } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) { |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 417 | return "<runtime internal callee-save reference and argument registers method>"; |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 418 | } else { |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 419 | return "<unknown runtime internal method>"; |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 420 | } |
| 421 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 422 | } |
| 423 | String* GetNameAsString() { |
| 424 | const DexFile& dex_file = GetDexFile(); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 425 | uint32_t dex_method_idx = method_->GetDexMethodIndex(); |
| 426 | const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 427 | return GetClassLinker()->ResolveString(dex_file, method_id.name_idx_, GetDexCache()); |
| 428 | } |
| 429 | const char* GetShorty() { |
| 430 | const char* result = shorty_; |
| 431 | if (result == NULL) { |
| 432 | const DexFile& dex_file = GetDexFile(); |
| 433 | result = dex_file.GetMethodShorty(dex_file.GetMethodId(method_->GetDexMethodIndex()), |
| 434 | &shorty_len_); |
| 435 | shorty_ = result; |
| 436 | } |
| 437 | return result; |
| 438 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 439 | uint32_t GetShortyLength() { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 440 | if (shorty_ == NULL) { |
| 441 | GetShorty(); |
| 442 | } |
| 443 | return shorty_len_; |
| 444 | } |
| 445 | const std::string GetSignature() { |
| 446 | const DexFile& dex_file = GetDexFile(); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 447 | uint32_t dex_method_idx = method_->GetDexMethodIndex(); |
| 448 | if (dex_method_idx != DexFile::kDexNoIndex16) { |
| 449 | return dex_file.GetMethodSignature(dex_file.GetMethodId(dex_method_idx)); |
| 450 | } else { |
| 451 | return "<no signature>"; |
| 452 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 453 | } |
| 454 | const DexFile::ProtoId& GetPrototype() { |
| 455 | const DexFile& dex_file = GetDexFile(); |
| 456 | return dex_file.GetMethodPrototype(dex_file.GetMethodId(method_->GetDexMethodIndex())); |
| 457 | } |
| 458 | const DexFile::TypeList* GetParameterTypeList() { |
| 459 | const DexFile::ProtoId& proto = GetPrototype(); |
| 460 | return GetDexFile().GetProtoParameters(proto); |
| 461 | } |
| 462 | ObjectArray<Class>* GetParameterTypes() { |
| 463 | const DexFile::TypeList* params = GetParameterTypeList(); |
| 464 | Class* array_class = GetClassLinker()->FindSystemClass("[Ljava/lang/Class;"); |
| 465 | uint32_t num_params = params == NULL ? 0 : params->Size(); |
| 466 | ObjectArray<Class>* result = ObjectArray<Class>::Alloc(array_class, num_params); |
| 467 | for (uint32_t i = 0; i < num_params; i++) { |
| 468 | Class* param_type = GetClassFromTypeIdx(params->GetTypeItem(i).type_idx_); |
jeffhao | 441d912 | 2012-03-21 17:29:10 -0700 | [diff] [blame] | 469 | if (param_type == NULL) { |
| 470 | DCHECK(Thread::Current()->IsExceptionPending()); |
| 471 | return NULL; |
| 472 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 473 | result->Set(i, param_type); |
| 474 | } |
| 475 | return result; |
| 476 | } |
| 477 | Class* GetReturnType() { |
| 478 | const DexFile& dex_file = GetDexFile(); |
| 479 | const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex()); |
| 480 | const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id); |
| 481 | uint16_t return_type_idx = proto_id.return_type_idx_; |
| 482 | return GetClassFromTypeIdx(return_type_idx); |
| 483 | } |
| 484 | const char* GetReturnTypeDescriptor() { |
| 485 | const DexFile& dex_file = GetDexFile(); |
| 486 | const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex()); |
| 487 | const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id); |
| 488 | uint16_t return_type_idx = proto_id.return_type_idx_; |
| 489 | return dex_file.GetTypeDescriptor(dex_file.GetTypeId(return_type_idx)); |
| 490 | } |
| 491 | int32_t GetLineNumFromNativePC(uintptr_t raw_pc) { |
| 492 | const DexFile& dex_file = GetDexFile(); |
| 493 | return dex_file.GetLineNumFromPC(method_, method_->ToDexPC(raw_pc)); |
| 494 | } |
| 495 | const char* GetDeclaringClassDescriptor() { |
| 496 | Class* klass = method_->GetDeclaringClass(); |
Ian Rogers | c2b4447 | 2011-12-14 21:17:17 -0800 | [diff] [blame] | 497 | DCHECK(!klass->IsProxyClass()); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 498 | uint16_t type_idx = klass->GetDexTypeIndex(); |
| 499 | const DexFile& dex_file = GetDexFile(); |
| 500 | return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx)); |
| 501 | } |
| 502 | const char* GetDeclaringClassSourceFile() { |
| 503 | const char* descriptor = GetDeclaringClassDescriptor(); |
| 504 | const DexFile& dex_file = GetDexFile(); |
| 505 | const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor); |
Elliott Hughes | 12c51e3 | 2012-01-17 20:25:05 -0800 | [diff] [blame] | 506 | CHECK(dex_class_def != NULL); |
| 507 | return dex_file.GetSourceFile(*dex_class_def); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 508 | } |
| 509 | bool IsStatic() { |
| 510 | return method_->IsStatic(); |
| 511 | } |
| 512 | bool IsClassInitializer() { |
| 513 | return IsStatic() && StringPiece(GetName()) == "<clinit>"; |
| 514 | } |
| 515 | size_t NumArgs() { |
| 516 | // "1 +" because the first in Args is the receiver. |
| 517 | // "- 1" because we don't count the return type. |
| 518 | return (IsStatic() ? 0 : 1) + GetShortyLength() - 1; |
| 519 | } |
| 520 | // Is the specified parameter a long or double, where parameter 0 is 'this' for instance methods |
| 521 | bool IsParamALongOrDouble(size_t param) { |
| 522 | CHECK_LT(param, NumArgs()); |
| 523 | if (IsStatic()) { |
| 524 | param++; // 0th argument must skip return value at start of the shorty |
| 525 | } else if (param == 0) { |
| 526 | return false; // this argument |
| 527 | } |
| 528 | char ch = GetShorty()[param]; |
| 529 | return (ch == 'J' || ch == 'D'); |
| 530 | } |
| 531 | // Is the specified parameter a reference, where parameter 0 is 'this' for instance methods |
| 532 | bool IsParamAReference(size_t param) { |
| 533 | CHECK_LT(param, NumArgs()); |
| 534 | if (IsStatic()) { |
| 535 | param++; // 0th argument must skip return value at start of the shorty |
| 536 | } else if (param == 0) { |
| 537 | return true; // this argument |
| 538 | } |
| 539 | return GetShorty()[param] == 'L'; // An array also has a shorty character of 'L' (not '[') |
| 540 | } |
| 541 | bool HasSameNameAndSignature(MethodHelper* other) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 542 | if (GetDexCache() == other->GetDexCache()) { |
| 543 | const DexFile& dex_file = GetDexFile(); |
| 544 | const DexFile::MethodId& mid = dex_file.GetMethodId(method_->GetDexMethodIndex()); |
| 545 | const DexFile::MethodId& other_mid = |
| 546 | dex_file.GetMethodId(other->method_->GetDexMethodIndex()); |
Ian Rogers | 7b0c5b4 | 2012-02-16 15:29:07 -0800 | [diff] [blame] | 547 | return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 548 | } |
Ian Rogers | 7b0c5b4 | 2012-02-16 15:29:07 -0800 | [diff] [blame] | 549 | StringPiece name(GetName()); |
| 550 | StringPiece other_name(other->GetName()); |
| 551 | return name == other_name && GetSignature() == other->GetSignature(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 552 | } |
| 553 | const DexFile::CodeItem* GetCodeItem() { |
| 554 | return GetDexFile().GetCodeItem(method_->GetCodeItemOffset()); |
| 555 | } |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 556 | bool IsResolvedTypeIdx(uint16_t type_idx) const { |
| 557 | return method_->GetDexCacheResolvedTypes()->Get(type_idx) != NULL; |
| 558 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 559 | Class* GetClassFromTypeIdx(uint16_t type_idx) { |
| 560 | Class* type = method_->GetDexCacheResolvedTypes()->Get(type_idx); |
| 561 | if (type == NULL) { |
| 562 | type = GetClassLinker()->ResolveType(type_idx, method_); |
| 563 | CHECK(type != NULL || Thread::Current()->IsExceptionPending()); |
| 564 | } |
| 565 | return type; |
| 566 | } |
| 567 | const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx) { |
| 568 | const DexFile& dex_file = GetDexFile(); |
| 569 | return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx)); |
| 570 | } |
| 571 | Class* GetDexCacheResolvedType(uint16_t type_idx) { |
| 572 | return GetDexCache()->GetResolvedType(type_idx); |
| 573 | } |
| 574 | const DexFile& GetDexFile() { |
| 575 | const DexFile* result = dex_file_; |
| 576 | if (result == NULL) { |
| 577 | const DexCache* dex_cache = GetDexCache(); |
| 578 | result = &GetClassLinker()->FindDexFile(dex_cache); |
| 579 | dex_file_ = result; |
| 580 | } |
| 581 | return *result; |
| 582 | } |
| 583 | private: |
| 584 | // Set the method_ field, for proxy methods looking up the interface method via the resolved |
| 585 | // methods table. |
| 586 | void SetMethod(const Method* method) { |
| 587 | if (method != NULL) { |
| 588 | Class* klass = method->GetDeclaringClass(); |
| 589 | if (klass->IsProxyClass()) { |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 590 | Method* interface_method = |
| 591 | method->GetDexCacheResolvedMethods()->Get(method->GetDexMethodIndex()); |
| 592 | CHECK(interface_method != NULL); |
| 593 | CHECK(interface_method == GetClassLinker()->FindMethodForProxy(klass, method)); |
| 594 | method = interface_method; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 595 | } |
| 596 | } |
| 597 | method_ = method; |
| 598 | } |
Ian Rogers | e1758fe | 2012-04-19 11:31:15 -0700 | [diff] [blame] | 599 | DexCache* GetDexCache() { |
| 600 | DexCache* result = dex_cache_; |
| 601 | if (result == NULL) { |
| 602 | Class* klass = method_->GetDeclaringClass(); |
| 603 | result = klass->GetDexCache(); |
| 604 | dex_cache_ = result; |
| 605 | } |
| 606 | return result; |
| 607 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 608 | ClassLinker* GetClassLinker() { |
| 609 | ClassLinker* result = class_linker_; |
| 610 | if (result == NULL) { |
| 611 | result = Runtime::Current()->GetClassLinker(); |
| 612 | class_linker_ = result; |
| 613 | } |
| 614 | return result; |
| 615 | } |
| 616 | |
| 617 | ClassLinker* class_linker_; |
| 618 | DexCache* dex_cache_; |
| 619 | const DexFile* dex_file_; |
| 620 | const Method* method_; |
| 621 | const char* shorty_; |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 622 | uint32_t shorty_len_; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 623 | |
| 624 | DISALLOW_COPY_AND_ASSIGN(MethodHelper); |
| 625 | }; |
| 626 | |
| 627 | } // namespace art |
| 628 | |
| 629 | #endif // ART_SRC_OBJECT_UTILS_H_ |