David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 1 | /* |
| 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 Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 21 | #include <memory> |
Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 22 | #include <vector> |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 23 | |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 24 | #include "base/array_ref.h" |
| 25 | #include "base/mutex.h" |
| 26 | |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 27 | namespace art { |
| 28 | |
| 29 | extern "C" { |
| 30 | struct JITCodeEntry; |
| 31 | } |
| 32 | |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 33 | extern Mutex g_jit_debug_mutex; |
| 34 | |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 35 | // Notify native debugger about new JITed code by passing in-memory ELF. |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 36 | // It takes ownership of the in-memory ELF file. |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 37 | JITCodeEntry* CreateJITCodeEntry(const std::vector<uint8_t>& symfile) |
| 38 | REQUIRES(g_jit_debug_mutex); |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 39 | |
| 40 | // Notify native debugger that JITed code has been removed. |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 41 | // It also releases the associated in-memory ELF file. |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 42 | void DeleteJITCodeEntry(JITCodeEntry* entry) |
| 43 | REQUIRES(g_jit_debug_mutex); |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 44 | |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 45 | // Helper method to track life-time of JITCodeEntry. |
| 46 | // It registers given code address as being described by the given entry. |
| 47 | void IncrementJITCodeEntryRefcount(JITCodeEntry* entry, uintptr_t code_address) |
| 48 | REQUIRES(g_jit_debug_mutex); |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 49 | |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 50 | // Helper method to track life-time of JITCodeEntry. |
| 51 | // It de-registers given code address as being described by the given entry. |
| 52 | void DecrementJITCodeEntryRefcount(JITCodeEntry* entry, uintptr_t code_address) |
| 53 | REQUIRES(g_jit_debug_mutex); |
| 54 | |
| 55 | // Find the registered JITCodeEntry for given code address. |
| 56 | // There can be only one entry per address at any given time. |
| 57 | JITCodeEntry* GetJITCodeEntry(uintptr_t code_address) |
| 58 | REQUIRES(g_jit_debug_mutex); |
| 59 | |
| 60 | // Returns approximate memory used by all JITCodeEntries. |
| 61 | size_t GetJITCodeEntryMemUsage() |
| 62 | REQUIRES(g_jit_debug_mutex); |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 63 | |
David Srbecky | 67feb17 | 2015-12-17 19:57:44 +0000 | [diff] [blame] | 64 | } // namespace art |
| 65 | |
| 66 | #endif // ART_RUNTIME_JIT_DEBUGGER_INTERFACE_H_ |