blob: 59ef515b2607b94e5818a513244bd2096335140d [file] [log] [blame]
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001/*
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 Rogersc2b44472011-12-14 21:17:17 -080023#include "intern_table.h"
Ian Rogers672f5202012-01-12 18:06:40 -080024#include "monitor.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080025#include "object.h"
26#include "runtime.h"
Elliott Hughes91250e02011-12-13 22:30:35 -080027#include "UniquePtr.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080028
29#include <string>
30
31namespace art {
32
Ian Rogers672f5202012-01-12 18:06:40 -080033class 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 Rogers6d4d9fc2011-11-30 16:24:48 -080062class ClassHelper {
63 public:
Elliott Hughes91250e02011-12-13 22:30:35 -080064 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 Carlstrome77be402012-03-30 01:08:38 -070070 klass_(NULL) {
71 if (c != NULL) {
72 ChangeClass(c);
73 }
Elliott Hughes91250e02011-12-13 22:30:35 -080074 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080075
76 void ChangeClass(const Class* new_c) {
Brian Carlstrom01e076e2012-03-30 11:54:16 -070077 CHECK(new_c != NULL) << "klass_=" << klass_; // Log what we were changing from if any
78 CHECK(new_c->IsClass()) << "new_c=" << new_c;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080079 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 Hughes91250e02011-12-13 22:30:35 -080091 // 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 Carlstrom93235f72012-03-29 22:48:15 -070094 CHECK(klass_ != NULL);
Ian Rogersa68a1cb2012-01-10 10:34:36 -080095 if (UNLIKELY(klass_->IsArrayClass())) {
96 return GetArrayDescriptor();
97 } else if (UNLIKELY(klass_->IsPrimitive())) {
Elliott Hughes91250e02011-12-13 22:30:35 -080098 return Primitive::Descriptor(klass_->GetPrimitiveType());
Ian Rogersa68a1cb2012-01-10 10:34:36 -080099 } else if (UNLIKELY(klass_->IsProxyClass())) {
Elliott Hughes91250e02011-12-13 22:30:35 -0800100 descriptor_ = GetClassLinker()->GetDescriptorForProxy(klass_);
101 return descriptor_.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800102 } 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 Hughes91250e02011-12-13 22:30:35 -0800108
Ian Rogersa68a1cb2012-01-10 10:34:36 -0800109 const char* GetArrayDescriptor() {
110 std::string result("[");
111 const Class* saved_klass = klass_;
Brian Carlstrom93235f72012-03-29 22:48:15 -0700112 CHECK(saved_klass != NULL);
Ian Rogersa68a1cb2012-01-10 10:34:36 -0800113 ChangeClass(klass_->GetComponentType());
114 result += GetDescriptor();
115 ChangeClass(saved_klass);
116 descriptor_ = result;
117 return descriptor_.c_str();
118 }
119
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800120 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 Hughes91250e02011-12-13 22:30:35 -0800128
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800129 uint32_t NumInterfaces() {
Brian Carlstrom93235f72012-03-29 22:48:15 -0700130 DCHECK(klass_ != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800131 if (klass_->IsPrimitive()) {
132 return 0;
133 } else if (klass_->IsArrayClass()) {
134 return 2;
Ian Rogersc2b44472011-12-14 21:17:17 -0800135 } else if (klass_->IsProxyClass()) {
136 return klass_->GetIfTable()->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800137 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800138 const DexFile::TypeList* interfaces = GetInterfaceTypeList();
139 if (interfaces == NULL) {
140 return 0;
141 } else {
142 return interfaces->Size();
143 }
144 }
145 }
Elliott Hughes91250e02011-12-13 22:30:35 -0800146
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800147 uint16_t GetInterfaceTypeIdx(uint32_t idx) {
Brian Carlstrom93235f72012-03-29 22:48:15 -0700148 DCHECK(klass_ != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800149 DCHECK(!klass_->IsPrimitive());
150 DCHECK(!klass_->IsArrayClass());
151 return GetInterfaceTypeList()->GetTypeItem(idx).type_idx_;
152 }
Elliott Hughes91250e02011-12-13 22:30:35 -0800153
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800154 Class* GetInterface(uint32_t idx) {
Brian Carlstrom93235f72012-03-29 22:48:15 -0700155 DCHECK(klass_ != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800156 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 Rogersc2b44472011-12-14 21:17:17 -0800164 } else if (klass_->IsProxyClass()) {
165 return klass_->GetIfTable()->Get(idx)->GetInterface();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800166 } 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 Hughes91250e02011-12-13 22:30:35 -0800176
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800177 const char* GetSourceFile() {
Elliott Hughes95572412011-12-13 18:14:20 -0800178 std::string descriptor(GetDescriptor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800179 const DexFile& dex_file = GetDexFile();
180 const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor);
Elliott Hughes12c51e32012-01-17 20:25:05 -0800181 CHECK(dex_class_def != NULL);
182 return dex_file.GetSourceFile(*dex_class_def);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800183 }
Elliott Hughes91250e02011-12-13 22:30:35 -0800184
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800185 std::string GetLocation() {
186 return GetDexCache()->GetLocation()->ToModifiedUtf8();
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 Hughes91250e02011-12-13 22:30:35 -0800211
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800212 DexCache* GetDexCache() {
213 DexCache* result = dex_cache_;
214 if (result == NULL) {
Brian Carlstrom93235f72012-03-29 22:48:15 -0700215 DCHECK(klass_ != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800216 result = klass_->GetDexCache();
217 dex_cache_ = result;
218 }
219 return result;
220 }
Elliott Hughes91250e02011-12-13 22:30:35 -0800221
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800222 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 Hughes91250e02011-12-13 22:30:35 -0800237 std::string descriptor_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800238
239 DISALLOW_COPY_AND_ASSIGN(ClassHelper);
240};
241
242class FieldHelper {
243 public:
244 FieldHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(NULL) {}
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800245 explicit FieldHelper(const Field* f) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(f) {}
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800246 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 Rogersc2b44472011-12-14 21:17:17 -0800261 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700262 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800263 const DexFile& dex_file = GetDexFile();
264 return dex_file.GetFieldName(dex_file.GetFieldId(field_index));
265 } else {
Ian Rogersc2b44472011-12-14 21:17:17 -0800266 DCHECK(field_->IsStatic());
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700267 DCHECK_LT(field_index, 2U);
268 return field_index == 0 ? "interfaces" : "throws";
Ian Rogersc2b44472011-12-14 21:17:17 -0800269 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800270 }
271 String* GetNameAsString() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800272 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700273 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800274 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 Hughes2ed52c42012-03-21 16:56:56 -0700278 return Runtime::Current()->GetInternTable()->InternStrong(GetName());
Ian Rogersc2b44472011-12-14 21:17:17 -0800279 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800280 }
281 Class* GetType() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800282 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700283 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800284 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 Hughes2ed52c42012-03-21 16:56:56 -0700293 return GetClassLinker()->FindSystemClass(GetTypeDescriptor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800294 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800295 }
296 const char* GetTypeDescriptor() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800297 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700298 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800299 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 Rogersc2b44472011-12-14 21:17:17 -0800303 DCHECK(field_->IsStatic());
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700304 DCHECK_LT(field_index, 2U);
305 // 0 == Class[] interfaces; 1 == Class[][] throws;
306 return field_index == 0 ? "[Ljava/lang/Class;" : "[[Ljava/lang/Class;";
Ian Rogersc2b44472011-12-14 21:17:17 -0800307 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800308 }
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 Rogersc2b44472011-12-14 21:17:17 -0800320
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 Rogers6d4d9fc2011-11-30 16:24:48 -0800323 const char* GetDeclaringClassDescriptor() {
324 uint16_t type_idx = field_->GetDeclaringClass()->GetDexTypeIndex();
Ian Rogersc2b44472011-12-14 21:17:17 -0800325 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 Rogers6d4d9fc2011-11-30 16:24:48 -0800334 }
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 Rogersc2b44472011-12-14 21:17:17 -0800367 std::string declaring_class_descriptor_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800368
369 DISALLOW_COPY_AND_ASSIGN(FieldHelper);
370};
371
372class MethodHelper {
373 public:
374 MethodHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), method_(NULL),
375 shorty_(NULL), shorty_len_(0) {}
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800376 explicit MethodHelper(const Method* m) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800377 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 Rogers19846512012-02-24 11:42:47 -0800405 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 Hughes81ff3182012-03-23 20:35:56 -0700411 return "<runtime internal resolution method>";
Ian Rogers19846512012-02-24 11:42:47 -0800412 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700413 return "<runtime internal callee-save all registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800414 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700415 return "<runtime internal callee-save reference registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800416 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700417 return "<runtime internal callee-save reference and argument registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800418 } else {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700419 return "<unknown runtime internal method>";
Ian Rogers19846512012-02-24 11:42:47 -0800420 }
421 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800422 }
423 String* GetNameAsString() {
424 const DexFile& dex_file = GetDexFile();
Ian Rogers19846512012-02-24 11:42:47 -0800425 uint32_t dex_method_idx = method_->GetDexMethodIndex();
426 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800427 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 Hughes45651fd2012-02-21 15:48:20 -0800439 uint32_t GetShortyLength() {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800440 if (shorty_ == NULL) {
441 GetShorty();
442 }
443 return shorty_len_;
444 }
445 const std::string GetSignature() {
446 const DexFile& dex_file = GetDexFile();
Ian Rogers19846512012-02-24 11:42:47 -0800447 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 Rogers6d4d9fc2011-11-30 16:24:48 -0800453 }
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_);
jeffhao441d9122012-03-21 17:29:10 -0700469 if (param_type == NULL) {
470 DCHECK(Thread::Current()->IsExceptionPending());
471 return NULL;
472 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800473 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 Rogersc2b44472011-12-14 21:17:17 -0800497 DCHECK(!klass->IsProxyClass());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800498 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 Hughes12c51e32012-01-17 20:25:05 -0800506 CHECK(dex_class_def != NULL);
507 return dex_file.GetSourceFile(*dex_class_def);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 }
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 Rogers6d4d9fc2011-11-30 16:24:48 -0800542 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 Rogers7b0c5b42012-02-16 15:29:07 -0800547 return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800548 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -0800549 StringPiece name(GetName());
550 StringPiece other_name(other->GetName());
551 return name == other_name && GetSignature() == other->GetSignature();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800552 }
553 const DexFile::CodeItem* GetCodeItem() {
554 return GetDexFile().GetCodeItem(method_->GetCodeItemOffset());
555 }
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800556 bool IsResolvedTypeIdx(uint16_t type_idx) const {
557 return method_->GetDexCacheResolvedTypes()->Get(type_idx) != NULL;
558 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800559 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 Rogers19846512012-02-24 11:42:47 -0800590 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 Rogers6d4d9fc2011-11-30 16:24:48 -0800595 }
596 }
597 method_ = method;
598 }
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 }
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 Hughes45651fd2012-02-21 15:48:20 -0800622 uint32_t shorty_len_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800623
624 DISALLOW_COPY_AND_ASSIGN(MethodHelper);
625};
626
627} // namespace art
628
629#endif // ART_SRC_OBJECT_UTILS_H_