blob: 8c4bb3fdf4428a07f382a546581af551ddc39cbe [file] [log] [blame]
David Srbecky67feb172015-12-17 19:57:44 +00001/*
2 * Copyright (C) 2015 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_RUNTIME_JIT_DEBUGGER_INTERFACE_H_
18#define ART_RUNTIME_JIT_DEBUGGER_INTERFACE_H_
19
20#include <inttypes.h>
David Srbecky5cc349f2015-12-18 15:04:48 +000021#include <memory>
Vladimir Marko93205e32016-04-13 11:59:46 +010022#include <vector>
David Srbecky67feb172015-12-17 19:57:44 +000023
David Srbeckyc684f332018-01-19 17:38:06 +000024#include "base/array_ref.h"
25#include "base/mutex.h"
26
David Srbecky67feb172015-12-17 19:57:44 +000027namespace art {
28
29extern "C" {
30 struct JITCodeEntry;
31}
32
David Srbeckyfb3de3d2018-01-29 16:11:49 +000033// Notify native tools (e.g. libunwind) that DEX file has been opened.
34// The pointer needs to point the start of the dex data (not the DexFile* object).
35void RegisterDexFileForNative(Thread* current_thread, const void* dexfile_header);
36
37// Notify native tools (e.g. libunwind) that DEX file has been closed.
38// The pointer needs to point the start of the dex data (not the DexFile* object).
39void DeregisterDexFileForNative(Thread* current_thread, const void* dexfile_header);
David Srbeckyc684f332018-01-19 17:38:06 +000040
David Srbecky67feb172015-12-17 19:57:44 +000041// Notify native debugger about new JITed code by passing in-memory ELF.
David Srbecky5cc349f2015-12-18 15:04:48 +000042// It takes ownership of the in-memory ELF file.
David Srbeckyc684f332018-01-19 17:38:06 +000043JITCodeEntry* CreateJITCodeEntry(const std::vector<uint8_t>& symfile)
David Srbeckyfb3de3d2018-01-29 16:11:49 +000044 REQUIRES(Locks::native_debug_interface_lock_);
David Srbecky67feb172015-12-17 19:57:44 +000045
46// Notify native debugger that JITed code has been removed.
David Srbecky5cc349f2015-12-18 15:04:48 +000047// It also releases the associated in-memory ELF file.
David Srbeckyc684f332018-01-19 17:38:06 +000048void DeleteJITCodeEntry(JITCodeEntry* entry)
David Srbeckyfb3de3d2018-01-29 16:11:49 +000049 REQUIRES(Locks::native_debug_interface_lock_);
David Srbecky67feb172015-12-17 19:57:44 +000050
David Srbeckyc684f332018-01-19 17:38:06 +000051// Helper method to track life-time of JITCodeEntry.
52// It registers given code address as being described by the given entry.
53void IncrementJITCodeEntryRefcount(JITCodeEntry* entry, uintptr_t code_address)
David Srbeckyfb3de3d2018-01-29 16:11:49 +000054 REQUIRES(Locks::native_debug_interface_lock_);
David Srbecky5cc349f2015-12-18 15:04:48 +000055
David Srbeckyc684f332018-01-19 17:38:06 +000056// Helper method to track life-time of JITCodeEntry.
57// It de-registers given code address as being described by the given entry.
58void DecrementJITCodeEntryRefcount(JITCodeEntry* entry, uintptr_t code_address)
David Srbeckyfb3de3d2018-01-29 16:11:49 +000059 REQUIRES(Locks::native_debug_interface_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +000060
61// Find the registered JITCodeEntry for given code address.
62// There can be only one entry per address at any given time.
63JITCodeEntry* GetJITCodeEntry(uintptr_t code_address)
David Srbeckyfb3de3d2018-01-29 16:11:49 +000064 REQUIRES(Locks::native_debug_interface_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +000065
66// Returns approximate memory used by all JITCodeEntries.
67size_t GetJITCodeEntryMemUsage()
David Srbeckyfb3de3d2018-01-29 16:11:49 +000068 REQUIRES(Locks::native_debug_interface_lock_);
David Srbecky5cc349f2015-12-18 15:04:48 +000069
David Srbecky67feb172015-12-17 19:57:44 +000070} // namespace art
71
72#endif // ART_RUNTIME_JIT_DEBUGGER_INTERFACE_H_