blob: 8b2aab9b2d0cc554cb4e19fbdd5353a733285d0c [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 Rogersd24e2642012-06-06 21:21:43 -0700129 uint32_t NumDirectInterfaces() {
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 Rogersd24e2642012-06-06 21:21:43 -0700147 uint16_t GetDirectInterfaceTypeIdx(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 Rogersd24e2642012-06-06 21:21:43 -0700154 Class* GetDirectInterface(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 {
Ian Rogersd24e2642012-06-06 21:21:43 -0700167 uint16_t type_idx = GetDirectInterfaceTypeIdx(idx);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800168 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() {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700186 DexCache* dex_cache = GetDexCache();
187 if (dex_cache != NULL && !klass_->IsProxyClass()) {
188 return dex_cache->GetLocation()->ToModifiedUtf8();
189 } else {
190 // Arrays and proxies are generated and have no corresponding dex file location.
191 return "generated class";
192 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800193 }
194
195 const DexFile& GetDexFile() {
196 const DexFile* result = dex_file_;
197 if (result == NULL) {
198 const DexCache* dex_cache = GetDexCache();
199 result = &GetClassLinker()->FindDexFile(dex_cache);
200 dex_file_ = result;
201 }
202 return *result;
203 }
204
Ian Rogersad0b3a32012-04-16 14:50:24 -0700205 DexCache* GetDexCache() {
206 DexCache* result = dex_cache_;
207 if (result == NULL) {
208 DCHECK(klass_ != NULL);
209 result = klass_->GetDexCache();
210 dex_cache_ = result;
211 }
212 return result;
213 }
214
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800215 private:
216 const DexFile::TypeList* GetInterfaceTypeList() {
217 const DexFile::TypeList* result = interface_type_list_;
218 if (result == NULL) {
219 const DexFile::ClassDef* class_def = GetClassDef();
220 if (class_def != NULL) {
221 result = GetDexFile().GetInterfacesList(*class_def);
222 interface_type_list_ = result;
223 }
224 }
225 return result;
226 }
Elliott Hughes91250e02011-12-13 22:30:35 -0800227
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800228 ClassLinker* GetClassLinker() {
229 ClassLinker* result = class_linker_;
230 if (result == NULL) {
231 result = Runtime::Current()->GetClassLinker();
232 class_linker_ = result;
233 }
234 return result;
235 }
236
237 const DexFile::ClassDef* class_def_;
238 ClassLinker* class_linker_;
239 DexCache* dex_cache_;
240 const DexFile* dex_file_;
241 const DexFile::TypeList* interface_type_list_;
242 const Class* klass_;
Elliott Hughes91250e02011-12-13 22:30:35 -0800243 std::string descriptor_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800244
245 DISALLOW_COPY_AND_ASSIGN(ClassHelper);
246};
247
248class FieldHelper {
249 public:
250 FieldHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(NULL) {}
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800251 explicit FieldHelper(const Field* f) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(f) {}
Ian Rogersca190662012-06-26 15:45:57 -0700252 FieldHelper(const Field* f, ClassLinker* l)
253 : class_linker_(l), dex_cache_(NULL), dex_file_(NULL), field_(f) {}
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800254
255 void ChangeField(const Field* new_f) {
256 DCHECK(new_f != NULL);
257 if (dex_cache_ != NULL) {
258 DexCache* new_f_dex_cache = new_f->GetDeclaringClass()->GetDexCache();
259 if (new_f_dex_cache != dex_cache_) {
260 dex_cache_ = new_f_dex_cache;
261 dex_file_ = NULL;
262 }
263 }
264 field_ = new_f;
265 }
266 const char* GetName() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800267 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700268 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800269 const DexFile& dex_file = GetDexFile();
270 return dex_file.GetFieldName(dex_file.GetFieldId(field_index));
271 } else {
Ian Rogersc2b44472011-12-14 21:17:17 -0800272 DCHECK(field_->IsStatic());
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700273 DCHECK_LT(field_index, 2U);
274 return field_index == 0 ? "interfaces" : "throws";
Ian Rogersc2b44472011-12-14 21:17:17 -0800275 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800276 }
277 String* GetNameAsString() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800278 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700279 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800280 const DexFile& dex_file = GetDexFile();
281 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index);
282 return GetClassLinker()->ResolveString(dex_file, field_id.name_idx_, GetDexCache());
283 } else {
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700284 return Runtime::Current()->GetInternTable()->InternStrong(GetName());
Ian Rogersc2b44472011-12-14 21:17:17 -0800285 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800286 }
287 Class* GetType() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800288 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700289 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800290 const DexFile& dex_file = GetDexFile();
291 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index);
292 Class* type = GetDexCache()->GetResolvedType(field_id.type_idx_);
293 if (type == NULL) {
294 type = GetClassLinker()->ResolveType(field_id.type_idx_, field_);
295 CHECK(type != NULL || Thread::Current()->IsExceptionPending());
296 }
297 return type;
298 } else {
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700299 return GetClassLinker()->FindSystemClass(GetTypeDescriptor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800300 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800301 }
302 const char* GetTypeDescriptor() {
Ian Rogersc2b44472011-12-14 21:17:17 -0800303 uint32_t field_index = field_->GetDexFieldIndex();
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700304 if (!field_->GetDeclaringClass()->IsProxyClass()) {
Ian Rogersc2b44472011-12-14 21:17:17 -0800305 const DexFile& dex_file = GetDexFile();
306 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index);
307 return dex_file.GetFieldTypeDescriptor(field_id);
308 } else {
Ian Rogersc2b44472011-12-14 21:17:17 -0800309 DCHECK(field_->IsStatic());
Elliott Hughes2ed52c42012-03-21 16:56:56 -0700310 DCHECK_LT(field_index, 2U);
311 // 0 == Class[] interfaces; 1 == Class[][] throws;
312 return field_index == 0 ? "[Ljava/lang/Class;" : "[[Ljava/lang/Class;";
Ian Rogersc2b44472011-12-14 21:17:17 -0800313 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800314 }
315 Primitive::Type GetTypeAsPrimitiveType() {
316 return Primitive::GetType(GetTypeDescriptor()[0]);
317 }
318 bool IsPrimitiveType() {
319 Primitive::Type type = GetTypeAsPrimitiveType();
320 return type != Primitive::kPrimNot;
321 }
322 size_t FieldSize() {
323 Primitive::Type type = GetTypeAsPrimitiveType();
324 return Primitive::FieldSize(type);
325 }
Ian Rogersc2b44472011-12-14 21:17:17 -0800326
327 // The returned const char* is only guaranteed to be valid for the lifetime of the FieldHelper.
328 // If you need it longer, copy it into a std::string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800329 const char* GetDeclaringClassDescriptor() {
330 uint16_t type_idx = field_->GetDeclaringClass()->GetDexTypeIndex();
Ian Rogersc2b44472011-12-14 21:17:17 -0800331 if (type_idx != DexFile::kDexNoIndex16) {
332 const DexFile& dex_file = GetDexFile();
333 return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx));
334 } else {
335 // Most likely a proxy class
336 ClassHelper kh(field_->GetDeclaringClass());
337 declaring_class_descriptor_ = kh.GetDescriptor();
338 return declaring_class_descriptor_.c_str();
339 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800340 }
341
342 private:
343 DexCache* GetDexCache() {
344 DexCache* result = dex_cache_;
345 if (result == NULL) {
346 result = field_->GetDeclaringClass()->GetDexCache();
347 dex_cache_ = result;
348 }
349 return result;
350 }
351 ClassLinker* GetClassLinker() {
352 ClassLinker* result = class_linker_;
353 if (result == NULL) {
354 result = Runtime::Current()->GetClassLinker();
355 class_linker_ = result;
356 }
357 return result;
358 }
359 const DexFile& GetDexFile() {
360 const DexFile* result = dex_file_;
361 if (result == NULL) {
362 const DexCache* dex_cache = GetDexCache();
363 result = &GetClassLinker()->FindDexFile(dex_cache);
364 dex_file_ = result;
365 }
366 return *result;
367 }
368
369 ClassLinker* class_linker_;
370 DexCache* dex_cache_;
371 const DexFile* dex_file_;
372 const Field* field_;
Ian Rogersc2b44472011-12-14 21:17:17 -0800373 std::string declaring_class_descriptor_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800374
375 DISALLOW_COPY_AND_ASSIGN(FieldHelper);
376};
377
378class MethodHelper {
379 public:
Ian Rogersca190662012-06-26 15:45:57 -0700380 MethodHelper()
381 : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), method_(NULL), shorty_(NULL),
382 shorty_len_(0) {}
383
384 explicit MethodHelper(const Method* m)
385 : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), method_(NULL), shorty_(NULL),
386 shorty_len_(0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800387 SetMethod(m);
388 }
Ian Rogersca190662012-06-26 15:45:57 -0700389
390 MethodHelper(const Method* m, ClassLinker* l)
391 : class_linker_(l), dex_cache_(NULL), dex_file_(NULL), method_(NULL), shorty_(NULL),
392 shorty_len_(0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800393 SetMethod(m);
394 }
395
396 void ChangeMethod(Method* new_m) {
397 DCHECK(new_m != NULL);
398 if (dex_cache_ != NULL) {
399 Class* klass = new_m->GetDeclaringClass();
400 if (klass->IsProxyClass()) {
401 dex_cache_ = NULL;
402 dex_file_ = NULL;
403 } else {
404 DexCache* new_m_dex_cache = klass->GetDexCache();
405 if (new_m_dex_cache != dex_cache_) {
406 dex_cache_ = new_m_dex_cache;
407 dex_file_ = NULL;
408 }
409 }
410 }
411 SetMethod(new_m);
412 shorty_ = NULL;
413 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700414
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800415 const char* GetName() {
416 const DexFile& dex_file = GetDexFile();
Ian Rogers19846512012-02-24 11:42:47 -0800417 uint32_t dex_method_idx = method_->GetDexMethodIndex();
418 if (dex_method_idx != DexFile::kDexNoIndex16) {
419 return dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx));
420 } else {
421 Runtime* runtime = Runtime::Current();
422 if (method_ == runtime->GetResolutionMethod()) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700423 return "<runtime internal resolution method>";
Ian Rogers19846512012-02-24 11:42:47 -0800424 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700425 return "<runtime internal callee-save all registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800426 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700427 return "<runtime internal callee-save reference registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800428 } else if (method_ == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700429 return "<runtime internal callee-save reference and argument registers method>";
Ian Rogers19846512012-02-24 11:42:47 -0800430 } else {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700431 return "<unknown runtime internal method>";
Ian Rogers19846512012-02-24 11:42:47 -0800432 }
433 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800434 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700435
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800436 String* GetNameAsString() {
437 const DexFile& dex_file = GetDexFile();
Ian Rogers19846512012-02-24 11:42:47 -0800438 uint32_t dex_method_idx = method_->GetDexMethodIndex();
439 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800440 return GetClassLinker()->ResolveString(dex_file, method_id.name_idx_, GetDexCache());
441 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700442
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800443 const char* GetShorty() {
444 const char* result = shorty_;
445 if (result == NULL) {
446 const DexFile& dex_file = GetDexFile();
447 result = dex_file.GetMethodShorty(dex_file.GetMethodId(method_->GetDexMethodIndex()),
448 &shorty_len_);
449 shorty_ = result;
450 }
451 return result;
452 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700453
Elliott Hughes45651fd2012-02-21 15:48:20 -0800454 uint32_t GetShortyLength() {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800455 if (shorty_ == NULL) {
456 GetShorty();
457 }
458 return shorty_len_;
459 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700460
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800461 const std::string GetSignature() {
462 const DexFile& dex_file = GetDexFile();
Ian Rogers19846512012-02-24 11:42:47 -0800463 uint32_t dex_method_idx = method_->GetDexMethodIndex();
464 if (dex_method_idx != DexFile::kDexNoIndex16) {
465 return dex_file.GetMethodSignature(dex_file.GetMethodId(dex_method_idx));
466 } else {
467 return "<no signature>";
468 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800469 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700470
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800471 const DexFile::ProtoId& GetPrototype() {
472 const DexFile& dex_file = GetDexFile();
473 return dex_file.GetMethodPrototype(dex_file.GetMethodId(method_->GetDexMethodIndex()));
474 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700475
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800476 const DexFile::TypeList* GetParameterTypeList() {
477 const DexFile::ProtoId& proto = GetPrototype();
478 return GetDexFile().GetProtoParameters(proto);
479 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700480
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800481 ObjectArray<Class>* GetParameterTypes() {
482 const DexFile::TypeList* params = GetParameterTypeList();
483 Class* array_class = GetClassLinker()->FindSystemClass("[Ljava/lang/Class;");
484 uint32_t num_params = params == NULL ? 0 : params->Size();
485 ObjectArray<Class>* result = ObjectArray<Class>::Alloc(array_class, num_params);
486 for (uint32_t i = 0; i < num_params; i++) {
487 Class* param_type = GetClassFromTypeIdx(params->GetTypeItem(i).type_idx_);
jeffhao441d9122012-03-21 17:29:10 -0700488 if (param_type == NULL) {
489 DCHECK(Thread::Current()->IsExceptionPending());
490 return NULL;
491 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800492 result->Set(i, param_type);
493 }
494 return result;
495 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700496
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800497 Class* GetReturnType() {
498 const DexFile& dex_file = GetDexFile();
499 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex());
500 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
501 uint16_t return_type_idx = proto_id.return_type_idx_;
502 return GetClassFromTypeIdx(return_type_idx);
503 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700504
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800505 const char* GetReturnTypeDescriptor() {
506 const DexFile& dex_file = GetDexFile();
507 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex());
508 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
509 uint16_t return_type_idx = proto_id.return_type_idx_;
510 return dex_file.GetTypeDescriptor(dex_file.GetTypeId(return_type_idx));
511 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700512
Ian Rogers0399dde2012-06-06 17:09:28 -0700513 int32_t GetLineNumFromDexPC(uint32_t dex_pc) {
514 if (dex_pc == DexFile::kDexNoIndex) {
515 return method_->IsNative() ? -2 : -1;
516 } else {
517 const DexFile& dex_file = GetDexFile();
518 return dex_file.GetLineNumFromPC(method_, dex_pc);
519 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800520 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700521
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800522 const char* GetDeclaringClassDescriptor() {
523 Class* klass = method_->GetDeclaringClass();
Ian Rogersc2b44472011-12-14 21:17:17 -0800524 DCHECK(!klass->IsProxyClass());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800525 uint16_t type_idx = klass->GetDexTypeIndex();
526 const DexFile& dex_file = GetDexFile();
527 return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx));
528 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700529
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800530 const char* GetDeclaringClassSourceFile() {
531 const char* descriptor = GetDeclaringClassDescriptor();
532 const DexFile& dex_file = GetDexFile();
533 const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor);
Elliott Hughes12c51e32012-01-17 20:25:05 -0800534 CHECK(dex_class_def != NULL);
535 return dex_file.GetSourceFile(*dex_class_def);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800536 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700537
538 uint32_t GetClassDefIndex() {
539 const char* descriptor = GetDeclaringClassDescriptor();
540 const DexFile& dex_file = GetDexFile();
541 uint32_t index;
542 CHECK(dex_file.FindClassDefIndex(descriptor, index));
543 return index;
544 }
545
546 ClassLoader* GetClassLoader() {
547 return method_->GetDeclaringClass()->GetClassLoader();
548 }
549
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800550 bool IsStatic() {
551 return method_->IsStatic();
552 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700553
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800554 bool IsClassInitializer() {
555 return IsStatic() && StringPiece(GetName()) == "<clinit>";
556 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700557
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800558 size_t NumArgs() {
559 // "1 +" because the first in Args is the receiver.
560 // "- 1" because we don't count the return type.
561 return (IsStatic() ? 0 : 1) + GetShortyLength() - 1;
562 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700563
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800564 // Is the specified parameter a long or double, where parameter 0 is 'this' for instance methods
565 bool IsParamALongOrDouble(size_t param) {
566 CHECK_LT(param, NumArgs());
567 if (IsStatic()) {
568 param++; // 0th argument must skip return value at start of the shorty
569 } else if (param == 0) {
570 return false; // this argument
571 }
572 char ch = GetShorty()[param];
573 return (ch == 'J' || ch == 'D');
574 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700575
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800576 // Is the specified parameter a reference, where parameter 0 is 'this' for instance methods
577 bool IsParamAReference(size_t param) {
578 CHECK_LT(param, NumArgs());
579 if (IsStatic()) {
580 param++; // 0th argument must skip return value at start of the shorty
581 } else if (param == 0) {
582 return true; // this argument
583 }
584 return GetShorty()[param] == 'L'; // An array also has a shorty character of 'L' (not '[')
585 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700586
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800587 bool HasSameNameAndSignature(MethodHelper* other) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800588 if (GetDexCache() == other->GetDexCache()) {
589 const DexFile& dex_file = GetDexFile();
590 const DexFile::MethodId& mid = dex_file.GetMethodId(method_->GetDexMethodIndex());
591 const DexFile::MethodId& other_mid =
592 dex_file.GetMethodId(other->method_->GetDexMethodIndex());
Ian Rogers7b0c5b42012-02-16 15:29:07 -0800593 return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800594 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -0800595 StringPiece name(GetName());
596 StringPiece other_name(other->GetName());
597 return name == other_name && GetSignature() == other->GetSignature();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800598 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700599
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800600 const DexFile::CodeItem* GetCodeItem() {
601 return GetDexFile().GetCodeItem(method_->GetCodeItemOffset());
602 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700603
Ian Rogers6f1dfe42011-12-08 17:28:34 -0800604 bool IsResolvedTypeIdx(uint16_t type_idx) const {
605 return method_->GetDexCacheResolvedTypes()->Get(type_idx) != NULL;
606 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700607
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800608 Class* GetClassFromTypeIdx(uint16_t type_idx) {
609 Class* type = method_->GetDexCacheResolvedTypes()->Get(type_idx);
610 if (type == NULL) {
611 type = GetClassLinker()->ResolveType(type_idx, method_);
612 CHECK(type != NULL || Thread::Current()->IsExceptionPending());
613 }
614 return type;
615 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700616
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800617 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx) {
618 const DexFile& dex_file = GetDexFile();
619 return dex_file.GetTypeDescriptor(dex_file.GetTypeId(type_idx));
620 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700621
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800622 Class* GetDexCacheResolvedType(uint16_t type_idx) {
623 return GetDexCache()->GetResolvedType(type_idx);
624 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700625
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800626 const DexFile& GetDexFile() {
627 const DexFile* result = dex_file_;
628 if (result == NULL) {
629 const DexCache* dex_cache = GetDexCache();
630 result = &GetClassLinker()->FindDexFile(dex_cache);
631 dex_file_ = result;
632 }
633 return *result;
634 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700635
636 DexCache* GetDexCache() {
637 DexCache* result = dex_cache_;
638 if (result == NULL) {
639 Class* klass = method_->GetDeclaringClass();
640 result = klass->GetDexCache();
641 dex_cache_ = result;
642 }
643 return result;
644 }
Elliott Hughesa21039c2012-06-21 12:09:25 -0700645
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800646 private:
647 // Set the method_ field, for proxy methods looking up the interface method via the resolved
648 // methods table.
649 void SetMethod(const Method* method) {
650 if (method != NULL) {
651 Class* klass = method->GetDeclaringClass();
652 if (klass->IsProxyClass()) {
Ian Rogers19846512012-02-24 11:42:47 -0800653 Method* interface_method =
654 method->GetDexCacheResolvedMethods()->Get(method->GetDexMethodIndex());
655 CHECK(interface_method != NULL);
656 CHECK(interface_method == GetClassLinker()->FindMethodForProxy(klass, method));
657 method = interface_method;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800658 }
659 }
660 method_ = method;
661 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700662
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800663 ClassLinker* GetClassLinker() {
664 ClassLinker* result = class_linker_;
665 if (result == NULL) {
666 result = Runtime::Current()->GetClassLinker();
667 class_linker_ = result;
668 }
669 return result;
670 }
671
672 ClassLinker* class_linker_;
673 DexCache* dex_cache_;
674 const DexFile* dex_file_;
675 const Method* method_;
676 const char* shorty_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800677 uint32_t shorty_len_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800678
679 DISALLOW_COPY_AND_ASSIGN(MethodHelper);
680};
681
682} // namespace art
683
684#endif // ART_SRC_OBJECT_UTILS_H_