blob: 8eef5867e21b88698a0e8731bc9e5cdfa7d5e861 [file] [log] [blame]
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +01001/*
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 Chartier0795f232016-09-27 18:43:30 -070020#include "scoped_thread_state_change-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010021#include "thread.h"
22
23namespace art {
24
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -070025OatQuickMethodHeader::OatQuickMethodHeader(uint32_t vmap_table_offset,
26 uint32_t method_info_offset,
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 Marko9d07e3d2016-03-31 12:02:28 +010031 : vmap_table_offset_(vmap_table_offset),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -070032 method_info_offset_(method_info_offset),
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010033 frame_info_(frame_size_in_bytes, core_spill_mask, fp_spill_mask),
34 code_size_(code_size) {}
35
36OatQuickMethodHeader::~OatQuickMethodHeader() {}
37
38uint32_t OatQuickMethodHeader::ToDexPc(ArtMethod* method,
39 const uintptr_t pc,
40 bool abort_on_failure) const {
41 const void* entry_point = GetEntryPoint();
42 uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(entry_point);
43 if (IsOptimized()) {
44 CodeInfo code_info = GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +000045 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010046 StackMap stack_map = code_info.GetStackMapForNativePcOffset(sought_offset, encoding);
47 if (stack_map.IsValid()) {
Mathieu Chartier575d3e62017-02-06 11:00:40 -080048 return stack_map.GetDexPc(encoding.stack_map.encoding);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010049 }
50 } else {
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010051 DCHECK(method->IsNative());
52 return DexFile::kDexNoIndex;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010053 }
54 if (abort_on_failure) {
55 ScopedObjectAccess soa(Thread::Current());
56 LOG(FATAL) << "Failed to find Dex offset for PC offset "
57 << reinterpret_cast<void*>(sought_offset)
58 << "(PC " << reinterpret_cast<void*>(pc) << ", entry_point=" << entry_point
59 << " current entry_point=" << method->GetEntryPointFromQuickCompiledCode()
David Sehr709b0702016-10-13 09:12:37 -070060 << ") in " << method->PrettyMethod();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010061 }
62 return DexFile::kDexNoIndex;
63}
64
65uintptr_t OatQuickMethodHeader::ToNativeQuickPc(ArtMethod* method,
66 const uint32_t dex_pc,
67 bool is_for_catch_handler,
68 bool abort_on_failure) const {
69 const void* entry_point = GetEntryPoint();
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010070 DCHECK(!method->IsNative());
71 DCHECK(IsOptimized());
72 // Search for the dex-to-pc mapping in stack maps.
73 CodeInfo code_info = GetOptimizedCodeInfo();
74 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010075
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010076 // All stack maps are stored in the same CodeItem section, safepoint stack
77 // maps first, then catch stack maps. We use `is_for_catch_handler` to select
78 // the order of iteration.
79 StackMap stack_map =
80 LIKELY(is_for_catch_handler) ? code_info.GetCatchStackMapForDexPc(dex_pc, encoding)
81 : code_info.GetStackMapForDexPc(dex_pc, encoding);
82 if (stack_map.IsValid()) {
83 return reinterpret_cast<uintptr_t>(entry_point) +
Mathieu Chartier575d3e62017-02-06 11:00:40 -080084 stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010085 }
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010086 if (abort_on_failure) {
87 ScopedObjectAccess soa(Thread::Current());
88 LOG(FATAL) << "Failed to find native offset for dex pc 0x" << std::hex << dex_pc
David Sehr709b0702016-10-13 09:12:37 -070089 << " in " << method->PrettyMethod();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010090 }
91 return UINTPTR_MAX;
92}
93
94} // namespace art