Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -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 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 17 | #include "art_method.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 18 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 19 | #include "arch/context.h" |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 20 | #include "art_field-inl.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 21 | #include "art_method-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 22 | #include "base/stringpiece.h" |
Hiroshi Yamauchi | 0037082 | 2015-08-18 14:47:25 -0700 | [diff] [blame] | 23 | #include "class_linker-inl.h" |
Andreas Gampe | 2a5c468 | 2015-08-14 08:22:54 -0700 | [diff] [blame] | 24 | #include "debugger.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 25 | #include "dex_file-inl.h" |
Ian Rogers | c449aa8 | 2013-07-29 14:35:46 -0700 | [diff] [blame] | 26 | #include "dex_instruction.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 27 | #include "entrypoints/entrypoint_utils.h" |
| 28 | #include "entrypoints/runtime_asm_entrypoints.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 29 | #include "gc/accounting/card_table-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 30 | #include "interpreter/interpreter.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 31 | #include "jit/jit.h" |
| 32 | #include "jit/jit_code_cache.h" |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 33 | #include "jit/profiling_info.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 34 | #include "jni_internal.h" |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 35 | #include "mapping_table.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 36 | #include "mirror/abstract_method.h" |
| 37 | #include "mirror/class-inl.h" |
| 38 | #include "mirror/object_array-inl.h" |
| 39 | #include "mirror/object-inl.h" |
| 40 | #include "mirror/string.h" |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 41 | #include "oat_file-inl.h" |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 42 | #include "scoped_thread_state_change.h" |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 43 | #include "well_known_classes.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 44 | |
| 45 | namespace art { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 46 | |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 47 | extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 48 | const char*); |
Ian Rogers | 936b37f | 2014-02-14 00:52:24 -0800 | [diff] [blame] | 49 | extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 50 | const char*); |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 51 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 52 | ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa, |
| 53 | jobject jlr_method) { |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 54 | auto* abstract_method = soa.Decode<mirror::AbstractMethod*>(jlr_method); |
| 55 | DCHECK(abstract_method != nullptr); |
| 56 | return abstract_method->GetArtMethod(); |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Ian Rogers | 6b14d55 | 2014-10-28 21:50:58 -0700 | [diff] [blame] | 59 | mirror::String* ArtMethod::GetNameAsString(Thread* self) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 60 | CHECK(!IsProxyMethod()); |
Ian Rogers | 6b14d55 | 2014-10-28 21:50:58 -0700 | [diff] [blame] | 61 | StackHandleScope<1> hs(self); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 62 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache())); |
| 63 | auto* dex_file = dex_cache->GetDexFile(); |
| 64 | uint32_t dex_method_idx = GetDexMethodIndex(); |
| 65 | const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); |
Ian Rogers | 6b14d55 | 2014-10-28 21:50:58 -0700 | [diff] [blame] | 66 | return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_, |
| 67 | dex_cache); |
| 68 | } |
| 69 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 70 | InvokeType ArtMethod::GetInvokeType() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 71 | // TODO: kSuper? |
| 72 | if (GetDeclaringClass()->IsInterface()) { |
| 73 | return kInterface; |
| 74 | } else if (IsStatic()) { |
| 75 | return kStatic; |
| 76 | } else if (IsDirect()) { |
| 77 | return kDirect; |
| 78 | } else { |
| 79 | return kVirtual; |
| 80 | } |
| 81 | } |
| 82 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 83 | size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) { |
Ian Rogers | 6b604a1 | 2014-09-25 15:35:37 -0700 | [diff] [blame] | 84 | CHECK_LE(1U, shorty.length()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 85 | uint32_t num_registers = 0; |
Ian Rogers | 6b604a1 | 2014-09-25 15:35:37 -0700 | [diff] [blame] | 86 | for (size_t i = 1; i < shorty.length(); ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 87 | char ch = shorty[i]; |
| 88 | if (ch == 'D' || ch == 'J') { |
| 89 | num_registers += 2; |
| 90 | } else { |
| 91 | num_registers += 1; |
| 92 | } |
| 93 | } |
| 94 | return num_registers; |
| 95 | } |
| 96 | |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 97 | static bool HasSameNameAndSignature(ArtMethod* method1, ArtMethod* method2) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 98 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 99 | ScopedAssertNoThreadSuspension ants(Thread::Current(), "HasSameNameAndSignature"); |
| 100 | const DexFile* dex_file = method1->GetDexFile(); |
| 101 | const DexFile::MethodId& mid = dex_file->GetMethodId(method1->GetDexMethodIndex()); |
| 102 | if (method1->GetDexCache() == method2->GetDexCache()) { |
| 103 | const DexFile::MethodId& mid2 = dex_file->GetMethodId(method2->GetDexMethodIndex()); |
| 104 | return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; |
| 105 | } |
| 106 | const DexFile* dex_file2 = method2->GetDexFile(); |
| 107 | const DexFile::MethodId& mid2 = dex_file2->GetMethodId(method2->GetDexMethodIndex()); |
| 108 | if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { |
| 109 | return false; // Name mismatch. |
| 110 | } |
| 111 | return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2); |
| 112 | } |
| 113 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 114 | ArtMethod* ArtMethod::FindOverriddenMethod(size_t pointer_size) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 115 | if (IsStatic()) { |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 116 | return nullptr; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 117 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 118 | mirror::Class* declaring_class = GetDeclaringClass(); |
| 119 | mirror::Class* super_class = declaring_class->GetSuperClass(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 120 | uint16_t method_index = GetMethodIndex(); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 121 | ArtMethod* result = nullptr; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 122 | // Did this method override a super class method? If so load the result from the super class' |
| 123 | // vtable |
Mingyao Yang | 2cdbad7 | 2014-07-16 10:44:41 -0700 | [diff] [blame] | 124 | if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 125 | result = super_class->GetVTableEntry(method_index, pointer_size); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 126 | } else { |
| 127 | // Method didn't override superclass method so search interfaces |
| 128 | if (IsProxyMethod()) { |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 129 | result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size), |
| 130 | GetDexMethodIndex(), |
| 131 | pointer_size); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 132 | CHECK_EQ(result, |
| 133 | Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this)); |
| 134 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 135 | mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable(); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 136 | for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 137 | mirror::Class* interface = iftable->GetInterface(i); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 138 | for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 139 | ArtMethod* interface_method = interface->GetVirtualMethod(j, pointer_size); |
| 140 | if (HasSameNameAndSignature( |
| 141 | this, interface_method->GetInterfaceMethodIfProxy(sizeof(void*)))) { |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 142 | result = interface_method; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 143 | break; |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 149 | DCHECK(result == nullptr || HasSameNameAndSignature( |
| 150 | GetInterfaceMethodIfProxy(sizeof(void*)), result->GetInterfaceMethodIfProxy(sizeof(void*)))); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 151 | return result; |
| 152 | } |
| 153 | |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 154 | uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile, |
| 155 | uint32_t name_and_signature_idx) { |
| 156 | const DexFile* dexfile = GetDexFile(); |
| 157 | const uint32_t dex_method_idx = GetDexMethodIndex(); |
| 158 | const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx); |
| 159 | const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx); |
| 160 | DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid)); |
| 161 | DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid)); |
| 162 | if (dexfile == &other_dexfile) { |
| 163 | return dex_method_idx; |
| 164 | } |
| 165 | const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_); |
| 166 | const DexFile::StringId* other_descriptor = |
| 167 | other_dexfile.FindStringId(mid_declaring_class_descriptor); |
| 168 | if (other_descriptor != nullptr) { |
| 169 | const DexFile::TypeId* other_type_id = |
| 170 | other_dexfile.FindTypeId(other_dexfile.GetIndexForStringId(*other_descriptor)); |
| 171 | if (other_type_id != nullptr) { |
| 172 | const DexFile::MethodId* other_mid = other_dexfile.FindMethodId( |
| 173 | *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_), |
| 174 | other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); |
| 175 | if (other_mid != nullptr) { |
| 176 | return other_dexfile.GetIndexForMethodId(*other_mid); |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | return DexFile::kDexNoIndex; |
| 181 | } |
| 182 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 183 | uint32_t ArtMethod::ToDexPc(const uintptr_t pc, bool abort_on_failure) { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 184 | const void* entry_point = GetQuickOatEntryPoint(sizeof(void*)); |
Nicolas Geoffray | 376b2bb | 2014-12-09 14:26:32 +0000 | [diff] [blame] | 185 | uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(entry_point); |
| 186 | if (IsOptimized(sizeof(void*))) { |
Nicolas Geoffray | 004c230 | 2015-03-20 10:06:38 +0000 | [diff] [blame] | 187 | CodeInfo code_info = GetOptimizedCodeInfo(); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 188 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 189 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(sought_offset, encoding); |
Nicolas Geoffray | e12997f | 2015-05-22 14:01:33 +0100 | [diff] [blame] | 190 | if (stack_map.IsValid()) { |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 191 | return stack_map.GetDexPc(encoding); |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 192 | } |
Nicolas Geoffray | e12997f | 2015-05-22 14:01:33 +0100 | [diff] [blame] | 193 | } else { |
| 194 | MappingTable table(entry_point != nullptr ? |
| 195 | GetMappingTable(EntryPointToCodePointer(entry_point), sizeof(void*)) : nullptr); |
| 196 | if (table.TotalSize() == 0) { |
| 197 | // NOTE: Special methods (see Mir2Lir::GenSpecialCase()) have an empty mapping |
| 198 | // but they have no suspend checks and, consequently, we never call ToDexPc() for them. |
| 199 | DCHECK(IsNative() || IsCalleeSaveMethod() || IsProxyMethod()) << PrettyMethod(this); |
| 200 | return DexFile::kDexNoIndex; // Special no mapping case |
| 201 | } |
| 202 | // Assume the caller wants a pc-to-dex mapping so check here first. |
| 203 | typedef MappingTable::PcToDexIterator It; |
| 204 | for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { |
| 205 | if (cur.NativePcOffset() == sought_offset) { |
| 206 | return cur.DexPc(); |
| 207 | } |
| 208 | } |
| 209 | // Now check dex-to-pc mappings. |
| 210 | typedef MappingTable::DexToPcIterator It2; |
| 211 | for (It2 cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { |
| 212 | if (cur.NativePcOffset() == sought_offset) { |
| 213 | return cur.DexPc(); |
| 214 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 215 | } |
| 216 | } |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 217 | if (abort_on_failure) { |
| 218 | LOG(FATAL) << "Failed to find Dex offset for PC offset " << reinterpret_cast<void*>(sought_offset) |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 219 | << "(PC " << reinterpret_cast<void*>(pc) << ", entry_point=" << entry_point |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 220 | << " current entry_point=" << GetQuickOatEntryPoint(sizeof(void*)) |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 221 | << ") in " << PrettyMethod(this); |
| 222 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 223 | return DexFile::kDexNoIndex; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 224 | } |
| 225 | |
David Brazdil | 72f7b88 | 2015-09-15 17:00:52 +0100 | [diff] [blame] | 226 | uintptr_t ArtMethod::ToNativeQuickPc(const uint32_t dex_pc, |
David Brazdil | f1fbd52 | 2015-09-15 17:57:31 +0100 | [diff] [blame] | 227 | bool is_for_catch_handler, |
David Brazdil | 72f7b88 | 2015-09-15 17:00:52 +0100 | [diff] [blame] | 228 | bool abort_on_failure) { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 229 | const void* entry_point = GetQuickOatEntryPoint(sizeof(void*)); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 230 | if (IsOptimized(sizeof(void*))) { |
| 231 | // Optimized code does not have a mapping table. Search for the dex-to-pc |
| 232 | // mapping in stack maps. |
| 233 | CodeInfo code_info = GetOptimizedCodeInfo(); |
| 234 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 235 | |
David Brazdil | 72f7b88 | 2015-09-15 17:00:52 +0100 | [diff] [blame] | 236 | // All stack maps are stored in the same CodeItem section, safepoint stack |
David Brazdil | f1fbd52 | 2015-09-15 17:57:31 +0100 | [diff] [blame] | 237 | // maps first, then catch stack maps. We use `is_for_catch_handler` to select |
| 238 | // the order of iteration. |
David Brazdil | 72f7b88 | 2015-09-15 17:00:52 +0100 | [diff] [blame] | 239 | StackMap stack_map = |
David Brazdil | f1fbd52 | 2015-09-15 17:57:31 +0100 | [diff] [blame] | 240 | LIKELY(is_for_catch_handler) ? code_info.GetCatchStackMapForDexPc(dex_pc, encoding) |
| 241 | : code_info.GetStackMapForDexPc(dex_pc, encoding); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 242 | if (stack_map.IsValid()) { |
| 243 | return reinterpret_cast<uintptr_t>(entry_point) + stack_map.GetNativePcOffset(encoding); |
| 244 | } |
| 245 | } else { |
| 246 | MappingTable table(entry_point != nullptr ? |
| 247 | GetMappingTable(EntryPointToCodePointer(entry_point), sizeof(void*)) : nullptr); |
| 248 | if (table.TotalSize() == 0) { |
| 249 | DCHECK_EQ(dex_pc, 0U); |
| 250 | return 0; // Special no mapping/pc == 0 case |
| 251 | } |
| 252 | // Assume the caller wants a dex-to-pc mapping so check here first. |
| 253 | typedef MappingTable::DexToPcIterator It; |
| 254 | for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { |
| 255 | if (cur.DexPc() == dex_pc) { |
| 256 | return reinterpret_cast<uintptr_t>(entry_point) + cur.NativePcOffset(); |
| 257 | } |
| 258 | } |
| 259 | // Now check pc-to-dex mappings. |
| 260 | typedef MappingTable::PcToDexIterator It2; |
| 261 | for (It2 cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { |
| 262 | if (cur.DexPc() == dex_pc) { |
| 263 | return reinterpret_cast<uintptr_t>(entry_point) + cur.NativePcOffset(); |
| 264 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 265 | } |
| 266 | } |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 267 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 268 | if (abort_on_failure) { |
| 269 | LOG(FATAL) << "Failed to find native offset for dex pc 0x" << std::hex << dex_pc |
| 270 | << " in " << PrettyMethod(this); |
| 271 | } |
| 272 | return UINTPTR_MAX; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 275 | uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 276 | uint32_t dex_pc, bool* has_no_move_exception) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 277 | const DexFile::CodeItem* code_item = GetCodeItem(); |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 278 | // Set aside the exception while we resolve its type. |
| 279 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 280 | StackHandleScope<1> hs(self); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 281 | Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 282 | self->ClearException(); |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 283 | // Default to handler not found. |
| 284 | uint32_t found_dex_pc = DexFile::kDexNoIndex; |
| 285 | // Iterate over the catch handlers associated with dex_pc. |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 286 | size_t pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 287 | for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { |
| 288 | uint16_t iter_type_idx = it.GetHandlerTypeIndex(); |
| 289 | // Catch all case |
| 290 | if (iter_type_idx == DexFile::kDexNoIndex16) { |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 291 | found_dex_pc = it.GetHandlerAddress(); |
| 292 | break; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 293 | } |
| 294 | // Does this catch exception type apply? |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 295 | mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, |
| 296 | true /* resolve */, |
| 297 | pointer_size); |
Ian Rogers | 822266b | 2014-05-29 16:55:06 -0700 | [diff] [blame] | 298 | if (UNLIKELY(iter_exception_type == nullptr)) { |
| 299 | // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was |
| 300 | // removed by a pro-guard like tool. |
Andreas Gampe | 72b3e43 | 2014-05-13 21:42:05 -0700 | [diff] [blame] | 301 | // Note: this is not RI behavior. RI would have failed when loading the class. |
Ian Rogers | 822266b | 2014-05-29 16:55:06 -0700 | [diff] [blame] | 302 | self->ClearException(); |
| 303 | // Delete any long jump context as this routine is called during a stack walk which will |
| 304 | // release its in use context at the end. |
| 305 | delete self->GetLongJumpContext(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 306 | LOG(WARNING) << "Unresolved exception class when finding catch block: " |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 307 | << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx)); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 308 | } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) { |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 309 | found_dex_pc = it.GetHandlerAddress(); |
| 310 | break; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 311 | } |
| 312 | } |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 313 | if (found_dex_pc != DexFile::kDexNoIndex) { |
| 314 | const Instruction* first_catch_instr = |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 315 | Instruction::At(&code_item->insns_[found_dex_pc]); |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 316 | *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION); |
| 317 | } |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 318 | // Put the exception back. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 319 | if (exception.Get() != nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 320 | self->SetException(exception.Get()); |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 321 | } |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 322 | return found_dex_pc; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 323 | } |
| 324 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 325 | void ArtMethod::AssertPcIsWithinQuickCode(uintptr_t pc) { |
| 326 | if (IsNative() || IsRuntimeMethod() || IsProxyMethod()) { |
| 327 | return; |
| 328 | } |
| 329 | if (pc == reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())) { |
| 330 | return; |
| 331 | } |
| 332 | const void* code = GetEntryPointFromQuickCompiledCode(); |
| 333 | if (code == GetQuickInstrumentationEntryPoint()) { |
| 334 | return; |
| 335 | } |
| 336 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 337 | if (class_linker->IsQuickToInterpreterBridge(code) || |
| 338 | class_linker->IsQuickResolutionStub(code)) { |
| 339 | return; |
| 340 | } |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 341 | // If we are the JIT then we may have just compiled the method after the |
| 342 | // IsQuickToInterpreterBridge check. |
| 343 | jit::Jit* const jit = Runtime::Current()->GetJit(); |
| 344 | if (jit != nullptr && |
| 345 | jit->GetCodeCache()->ContainsCodePtr(reinterpret_cast<const void*>(code))) { |
| 346 | return; |
| 347 | } |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 348 | /* |
| 349 | * During a stack walk, a return PC may point past-the-end of the code |
| 350 | * in the case that the last instruction is a call that isn't expected to |
| 351 | * return. Thus, we check <= code + GetCodeSize(). |
| 352 | * |
| 353 | * NOTE: For Thumb both pc and code are offset by 1 indicating the Thumb state. |
| 354 | */ |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 355 | CHECK(PcIsWithinQuickCode(reinterpret_cast<uintptr_t>(code), pc)) |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 356 | << PrettyMethod(this) |
| 357 | << " pc=" << std::hex << pc |
| 358 | << " code=" << code |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 359 | << " size=" << GetCodeSize( |
| 360 | EntryPointToCodePointer(reinterpret_cast<const void*>(code))); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 363 | bool ArtMethod::IsEntrypointInterpreter() { |
| 364 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 365 | const void* oat_quick_code = class_linker->GetOatMethodQuickCodeFor(this); |
| 366 | return oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode(); |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 369 | const void* ArtMethod::GetQuickOatEntryPoint(size_t pointer_size) { |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 370 | if (IsAbstract() || IsRuntimeMethod() || IsProxyMethod()) { |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 371 | return nullptr; |
| 372 | } |
| 373 | Runtime* runtime = Runtime::Current(); |
| 374 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 375 | const void* code = runtime->GetInstrumentation()->GetQuickCodeFor(this, pointer_size); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 376 | // On failure, instead of null we get the quick-generic-jni-trampoline for native method |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 377 | // indicating the generic JNI, or the quick-to-interpreter-bridge (but not the trampoline) |
| 378 | // for non-native methods. |
| 379 | if (class_linker->IsQuickToInterpreterBridge(code) || |
| 380 | class_linker->IsQuickGenericJniStub(code)) { |
| 381 | return nullptr; |
| 382 | } |
| 383 | return code; |
| 384 | } |
| 385 | |
| 386 | #ifndef NDEBUG |
| 387 | uintptr_t ArtMethod::NativeQuickPcOffset(const uintptr_t pc, const void* quick_entry_point) { |
| 388 | CHECK_NE(quick_entry_point, GetQuickToInterpreterBridge()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 389 | CHECK_EQ(quick_entry_point, |
| 390 | Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this, sizeof(void*))); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 391 | return pc - reinterpret_cast<uintptr_t>(quick_entry_point); |
| 392 | } |
| 393 | #endif |
| 394 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 395 | void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 396 | const char* shorty) { |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 397 | if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) { |
| 398 | ThrowStackOverflowError(self); |
| 399 | return; |
| 400 | } |
| 401 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 402 | if (kIsDebugBuild) { |
| 403 | self->AssertThreadSuspensionIsAllowable(); |
| 404 | CHECK_EQ(kRunnable, self->GetState()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 405 | CHECK_STREQ(GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(), shorty); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | // Push a transition back into managed code onto the linked list in thread. |
| 409 | ManagedStack fragment; |
| 410 | self->PushManagedStackFragment(&fragment); |
| 411 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 412 | Runtime* runtime = Runtime::Current(); |
Jeff Hao | 74180ca | 2013-03-27 15:29:11 -0700 | [diff] [blame] | 413 | // Call the invoke stub, passing everything as arguments. |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 414 | // If the runtime is not yet started or it is required by the debugger, then perform the |
| 415 | // Invocation by the interpreter. |
| 416 | if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) { |
Ian Rogers | 5d27faf | 2014-05-02 17:17:18 -0700 | [diff] [blame] | 417 | if (IsStatic()) { |
| 418 | art::interpreter::EnterInterpreterFromInvoke(self, this, nullptr, args, result); |
| 419 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 420 | mirror::Object* receiver = |
| 421 | reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr(); |
Ian Rogers | 5d27faf | 2014-05-02 17:17:18 -0700 | [diff] [blame] | 422 | art::interpreter::EnterInterpreterFromInvoke(self, this, receiver, args + 1, result); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 423 | } |
| 424 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 425 | DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), sizeof(void*)); |
| 426 | |
| 427 | constexpr bool kLogInvocationStartAndReturn = false; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 428 | bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr; |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 429 | if (LIKELY(have_quick_code)) { |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 430 | if (kLogInvocationStartAndReturn) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 431 | LOG(INFO) << StringPrintf( |
| 432 | "Invoking '%s' quick code=%p static=%d", PrettyMethod(this).c_str(), |
| 433 | GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0)); |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 434 | } |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 435 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 436 | // Ensure that we won't be accidentally calling quick compiled code when -Xint. |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 437 | if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) { |
| 438 | DCHECK(!runtime->UseJit()); |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 439 | CHECK(IsEntrypointInterpreter()) |
| 440 | << "Don't call compiled code when -Xint " << PrettyMethod(this); |
| 441 | } |
| 442 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 443 | if (!IsStatic()) { |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 444 | (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 445 | } else { |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 446 | (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 447 | } |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 448 | if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 449 | // Unusual case where we were running generated code and an |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 450 | // exception was thrown to force the activations to be removed from the |
| 451 | // stack. Continue execution in the interpreter. |
| 452 | self->ClearException(); |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 453 | ShadowFrame* shadow_frame = |
| 454 | self->PopStackedShadowFrame(StackedShadowFrameType::kDeoptimizationShadowFrame); |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 455 | mirror::Throwable* pending_exception = nullptr; |
| 456 | self->PopDeoptimizationContext(result, &pending_exception); |
Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 457 | self->SetTopOfStack(nullptr); |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 458 | self->SetTopOfShadowStack(shadow_frame); |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 459 | |
| 460 | // Restore the exception that was pending before deoptimization then interpret the |
| 461 | // deoptimized frames. |
| 462 | if (pending_exception != nullptr) { |
| 463 | self->SetException(pending_exception); |
| 464 | } |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 465 | interpreter::EnterInterpreterFromDeoptimize(self, shadow_frame, result); |
| 466 | } |
| 467 | if (kLogInvocationStartAndReturn) { |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 468 | LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod(this).c_str(), |
| 469 | GetEntryPointFromQuickCompiledCode()); |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 470 | } |
| 471 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 472 | LOG(INFO) << "Not invoking '" << PrettyMethod(this) << "' code=null"; |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 473 | if (result != nullptr) { |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 474 | result->SetJ(0); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | // Pop transition. |
| 480 | self->PopManagedStackFragment(fragment); |
| 481 | } |
| 482 | |
Ian Rogers | 1a10218 | 2014-12-02 17:49:19 -0800 | [diff] [blame] | 483 | // Counts the number of references in the parameter list of the corresponding method. |
| 484 | // Note: Thus does _not_ include "this" for non-static methods. |
| 485 | static uint32_t GetNumberOfReferenceArgsWithoutReceiver(ArtMethod* method) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 486 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 1a10218 | 2014-12-02 17:49:19 -0800 | [diff] [blame] | 487 | uint32_t shorty_len; |
| 488 | const char* shorty = method->GetShorty(&shorty_len); |
| 489 | uint32_t refs = 0; |
| 490 | for (uint32_t i = 1; i < shorty_len ; ++i) { |
| 491 | if (shorty[i] == 'L') { |
| 492 | refs++; |
| 493 | } |
| 494 | } |
| 495 | return refs; |
| 496 | } |
| 497 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 498 | QuickMethodFrameInfo ArtMethod::GetQuickFrameInfo() { |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 499 | Runtime* runtime = Runtime::Current(); |
Daniel Mihalyi | e14f2b3 | 2014-10-10 18:24:11 +0200 | [diff] [blame] | 500 | |
| 501 | if (UNLIKELY(IsAbstract())) { |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 502 | return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs); |
| 503 | } |
Daniel Mihalyi | e14f2b3 | 2014-10-10 18:24:11 +0200 | [diff] [blame] | 504 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 505 | // This goes before IsProxyMethod since runtime methods have a null declaring class. |
| 506 | if (UNLIKELY(IsRuntimeMethod())) { |
| 507 | return runtime->GetRuntimeMethodFrameInfo(this); |
| 508 | } |
| 509 | |
Daniel Mihalyi | e14f2b3 | 2014-10-10 18:24:11 +0200 | [diff] [blame] | 510 | // For Proxy method we add special handling for the direct method case (there is only one |
| 511 | // direct method - constructor). Direct method is cloned from original |
| 512 | // java.lang.reflect.Proxy class together with code and as a result it is executed as usual |
| 513 | // quick compiled method without any stubs. So the frame info should be returned as it is a |
| 514 | // quick method not a stub. However, if instrumentation stubs are installed, the |
| 515 | // instrumentation->GetQuickCodeFor() returns the artQuickProxyInvokeHandler instead of an |
| 516 | // oat code pointer, thus we have to add a special case here. |
| 517 | if (UNLIKELY(IsProxyMethod())) { |
| 518 | if (IsDirect()) { |
| 519 | CHECK(IsConstructor()); |
| 520 | return GetQuickFrameInfo(EntryPointToCodePointer(GetEntryPointFromQuickCompiledCode())); |
| 521 | } else { |
| 522 | return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs); |
| 523 | } |
| 524 | } |
| 525 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 526 | const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(this, sizeof(void*)); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 527 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 528 | // On failure, instead of null we get the quick-generic-jni-trampoline for native method |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 529 | // indicating the generic JNI, or the quick-to-interpreter-bridge (but not the trampoline) |
| 530 | // for non-native methods. And we really shouldn't see a failure for non-native methods here. |
| 531 | DCHECK(!class_linker->IsQuickToInterpreterBridge(entry_point)); |
| 532 | |
| 533 | if (class_linker->IsQuickGenericJniStub(entry_point)) { |
| 534 | // Generic JNI frame. |
| 535 | DCHECK(IsNative()); |
Ian Rogers | 1a10218 | 2014-12-02 17:49:19 -0800 | [diff] [blame] | 536 | uint32_t handle_refs = GetNumberOfReferenceArgsWithoutReceiver(this) + 1; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 537 | size_t scope_size = HandleScope::SizeOf(handle_refs); |
| 538 | QuickMethodFrameInfo callee_info = runtime->GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs); |
| 539 | |
| 540 | // Callee saves + handle scope + method ref + alignment |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 541 | // Note: -sizeof(void*) since callee-save frame stores a whole method pointer. |
| 542 | size_t frame_size = RoundUp(callee_info.FrameSizeInBytes() - sizeof(void*) + |
| 543 | sizeof(ArtMethod*) + scope_size, kStackAlignment); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 544 | return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask()); |
| 545 | } |
| 546 | |
| 547 | const void* code_pointer = EntryPointToCodePointer(entry_point); |
| 548 | return GetQuickFrameInfo(code_pointer); |
| 549 | } |
| 550 | |
| 551 | void ArtMethod::RegisterNative(const void* native_method, bool is_fast) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 552 | CHECK(IsNative()) << PrettyMethod(this); |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame] | 553 | CHECK(!IsFastNative()) << PrettyMethod(this); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 554 | CHECK(native_method != nullptr) << PrettyMethod(this); |
Ian Rogers | 987560f | 2014-04-22 11:42:59 -0700 | [diff] [blame] | 555 | if (is_fast) { |
| 556 | SetAccessFlags(GetAccessFlags() | kAccFastNative); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 557 | } |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 558 | SetEntryPointFromJni(native_method); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 559 | } |
| 560 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 561 | void ArtMethod::UnregisterNative() { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame] | 562 | CHECK(IsNative() && !IsFastNative()) << PrettyMethod(this); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 563 | // restore stub to lookup native pointer via dlsym |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 564 | RegisterNative(GetJniDlsymLookupStub(), false); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 565 | } |
| 566 | |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 567 | bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { |
| 568 | auto* dex_cache = GetDexCache(); |
| 569 | auto* dex_file = dex_cache->GetDexFile(); |
| 570 | const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); |
| 571 | const auto& proto_id = dex_file->GetMethodPrototype(method_id); |
| 572 | const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id); |
| 573 | auto count = proto_params != nullptr ? proto_params->Size() : 0u; |
| 574 | auto param_len = params.Get() != nullptr ? params->GetLength() : 0u; |
| 575 | if (param_len != count) { |
| 576 | return false; |
| 577 | } |
| 578 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 579 | for (size_t i = 0; i < count; ++i) { |
| 580 | auto type_idx = proto_params->GetTypeItem(i).type_idx_; |
| 581 | auto* type = cl->ResolveType(type_idx, this); |
| 582 | if (type == nullptr) { |
| 583 | Thread::Current()->AssertPendingException(); |
| 584 | return false; |
| 585 | } |
| 586 | if (type != params->GetWithoutChecks(i)) { |
| 587 | return false; |
| 588 | } |
| 589 | } |
| 590 | return true; |
| 591 | } |
| 592 | |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 593 | const uint8_t* ArtMethod::GetQuickenedInfo() { |
| 594 | bool found = false; |
| 595 | OatFile::OatMethod oat_method = |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 596 | Runtime::Current()->GetClassLinker()->FindOatMethodFor(this, &found); |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 597 | if (!found || (oat_method.GetQuickCode() != nullptr)) { |
| 598 | return nullptr; |
| 599 | } |
| 600 | return oat_method.GetVmapTable(); |
| 601 | } |
| 602 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 603 | ProfilingInfo* ArtMethod::CreateProfilingInfo() { |
Mathieu Chartier | 1147b9b | 2015-09-14 18:50:08 -0700 | [diff] [blame] | 604 | DCHECK(!Runtime::Current()->IsAotCompiler()); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 605 | ProfilingInfo* info = ProfilingInfo::Create(this); |
| 606 | MemberOffset offset = ArtMethod::EntryPointFromJniOffset(sizeof(void*)); |
| 607 | uintptr_t pointer = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value(); |
| 608 | if (!reinterpret_cast<Atomic<ProfilingInfo*>*>(pointer)-> |
| 609 | CompareExchangeStrongSequentiallyConsistent(nullptr, info)) { |
Mathieu Chartier | 1147b9b | 2015-09-14 18:50:08 -0700 | [diff] [blame] | 610 | return GetProfilingInfo(sizeof(void*)); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 611 | } else { |
| 612 | return info; |
| 613 | } |
| 614 | } |
| 615 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 616 | } // namespace art |