Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "oat_quick_method_header.h" |
| 18 | |
| 19 | #include "art_method.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 20 | #include "scoped_thread_state_change-inl.h" |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 21 | #include "thread.h" |
| 22 | |
| 23 | namespace art { |
| 24 | |
| 25 | OatQuickMethodHeader::OatQuickMethodHeader( |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 26 | uint32_t vmap_table_offset, |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 27 | uint32_t frame_size_in_bytes, |
| 28 | uint32_t core_spill_mask, |
| 29 | uint32_t fp_spill_mask, |
| 30 | uint32_t code_size) |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 31 | : vmap_table_offset_(vmap_table_offset), |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 32 | frame_info_(frame_size_in_bytes, core_spill_mask, fp_spill_mask), |
| 33 | code_size_(code_size) {} |
| 34 | |
| 35 | OatQuickMethodHeader::~OatQuickMethodHeader() {} |
| 36 | |
| 37 | uint32_t OatQuickMethodHeader::ToDexPc(ArtMethod* method, |
| 38 | const uintptr_t pc, |
| 39 | bool abort_on_failure) const { |
| 40 | const void* entry_point = GetEntryPoint(); |
| 41 | uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(entry_point); |
| 42 | if (IsOptimized()) { |
| 43 | CodeInfo code_info = GetOptimizedCodeInfo(); |
David Srbecky | 09ed098 | 2016-02-12 21:58:43 +0000 | [diff] [blame] | 44 | CodeInfoEncoding encoding = code_info.ExtractEncoding(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 45 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(sought_offset, encoding); |
| 46 | if (stack_map.IsValid()) { |
David Srbecky | 09ed098 | 2016-02-12 21:58:43 +0000 | [diff] [blame] | 47 | return stack_map.GetDexPc(encoding.stack_map_encoding); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 48 | } |
| 49 | } else { |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 50 | DCHECK(method->IsNative()); |
| 51 | return DexFile::kDexNoIndex; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 52 | } |
| 53 | if (abort_on_failure) { |
| 54 | ScopedObjectAccess soa(Thread::Current()); |
| 55 | LOG(FATAL) << "Failed to find Dex offset for PC offset " |
| 56 | << reinterpret_cast<void*>(sought_offset) |
| 57 | << "(PC " << reinterpret_cast<void*>(pc) << ", entry_point=" << entry_point |
| 58 | << " current entry_point=" << method->GetEntryPointFromQuickCompiledCode() |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame^] | 59 | << ") in " << method->PrettyMethod(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 60 | } |
| 61 | return DexFile::kDexNoIndex; |
| 62 | } |
| 63 | |
| 64 | uintptr_t OatQuickMethodHeader::ToNativeQuickPc(ArtMethod* method, |
| 65 | const uint32_t dex_pc, |
| 66 | bool is_for_catch_handler, |
| 67 | bool abort_on_failure) const { |
| 68 | const void* entry_point = GetEntryPoint(); |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 69 | DCHECK(!method->IsNative()); |
| 70 | DCHECK(IsOptimized()); |
| 71 | // Search for the dex-to-pc mapping in stack maps. |
| 72 | CodeInfo code_info = GetOptimizedCodeInfo(); |
| 73 | CodeInfoEncoding encoding = code_info.ExtractEncoding(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 74 | |
Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 75 | // All stack maps are stored in the same CodeItem section, safepoint stack |
| 76 | // maps first, then catch stack maps. We use `is_for_catch_handler` to select |
| 77 | // the order of iteration. |
| 78 | StackMap stack_map = |
| 79 | LIKELY(is_for_catch_handler) ? code_info.GetCatchStackMapForDexPc(dex_pc, encoding) |
| 80 | : code_info.GetStackMapForDexPc(dex_pc, encoding); |
| 81 | if (stack_map.IsValid()) { |
| 82 | return reinterpret_cast<uintptr_t>(entry_point) + |
| 83 | stack_map.GetNativePcOffset(encoding.stack_map_encoding); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 84 | } |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 85 | if (abort_on_failure) { |
| 86 | ScopedObjectAccess soa(Thread::Current()); |
| 87 | LOG(FATAL) << "Failed to find native offset for dex pc 0x" << std::hex << dex_pc |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame^] | 88 | << " in " << method->PrettyMethod(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 89 | } |
| 90 | return UINTPTR_MAX; |
| 91 | } |
| 92 | |
| 93 | } // namespace art |