blob: d9bf331aabec972279718d0d685dfb7da8c27675 [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
24namespace art {
25
26extern "C" {
27 struct JITCodeEntry;
28}
29
30// Notify native debugger about new JITed code by passing in-memory ELF.
David Srbecky5cc349f2015-12-18 15:04:48 +000031// It takes ownership of the in-memory ELF file.
Vladimir Marko93205e32016-04-13 11:59:46 +010032JITCodeEntry* CreateJITCodeEntry(std::vector<uint8_t> symfile);
David Srbecky67feb172015-12-17 19:57:44 +000033
34// Notify native debugger that JITed code has been removed.
David Srbecky5cc349f2015-12-18 15:04:48 +000035// It also releases the associated in-memory ELF file.
David Srbecky67feb172015-12-17 19:57:44 +000036void DeleteJITCodeEntry(JITCodeEntry* entry);
37
David Srbecky5cc349f2015-12-18 15:04:48 +000038// Notify native debugger about new JITed code by passing in-memory ELF.
39// The address is used only to uniquely identify the entry.
40// It takes ownership of the in-memory ELF file.
Vladimir Marko93205e32016-04-13 11:59:46 +010041void CreateJITCodeEntryForAddress(uintptr_t address, std::vector<uint8_t> symfile);
David Srbecky5cc349f2015-12-18 15:04:48 +000042
43// Notify native debugger that JITed code has been removed.
44// Returns false if entry for the given address was not found.
45bool DeleteJITCodeEntryForAddress(uintptr_t address);
46
David Srbecky67feb172015-12-17 19:57:44 +000047} // namespace art
48
49#endif // ART_RUNTIME_JIT_DEBUGGER_INTERFACE_H_