1 //===----- GDBRegistrationListener.cpp - Registers objects with GDB -------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm-c/ExecutionEngine.h"
10 #include "llvm/ADT/DenseMap.h"
11 #include "llvm/ExecutionEngine/JITEventListener.h"
12 #include "llvm/Object/ObjectFile.h"
13 #include "llvm/Support/Compiler.h"
14 #include "llvm/Support/ErrorHandling.h"
15 #include "llvm/Support/ManagedStatic.h"
16 #include "llvm/Support/Mutex.h"
20 using namespace llvm::object
;
22 // This must be kept in sync with gdb/gdb/jit.h .
31 struct jit_code_entry
{
32 struct jit_code_entry
*next_entry
;
33 struct jit_code_entry
*prev_entry
;
34 const char *symfile_addr
;
35 uint64_t symfile_size
;
38 struct jit_descriptor
{
40 // This should be jit_actions_t, but we want to be specific about the
43 struct jit_code_entry
*relevant_entry
;
44 struct jit_code_entry
*first_entry
;
47 // We put information about the JITed function in this global, which the
48 // debugger reads. Make sure to specify the version statically, because the
49 // debugger checks the version before we can set it during runtime.
50 extern struct jit_descriptor __jit_debug_descriptor
;
52 // Debuggers puts a breakpoint in this function.
53 extern "C" void __jit_debug_register_code();
58 // FIXME: lli aims to provide both, RuntimeDyld and JITLink, as the dynamic
59 // loaders for it's JIT implementations. And they both offer debugging via the
60 // GDB JIT interface, which builds on the two well-known symbol names below.
61 // As these symbols must be unique accross the linked executable, we can only
62 // define them in one of the libraries and make the other depend on it.
63 // OrcTargetProcess is a minimal stub for embedding a JIT client in remote
64 // executors. For the moment it seems reasonable to have the definition there
65 // and let ExecutionEngine depend on it, until we find a better solution.
67 LLVM_ATTRIBUTE_USED
void requiredSymbolDefinitionsFromOrcTargetProcess() {
68 errs() << (void *)&__jit_debug_register_code
69 << (void *)&__jit_debug_descriptor
;
72 struct RegisteredObjectInfo
{
73 RegisteredObjectInfo() {}
75 RegisteredObjectInfo(std::size_t Size
, jit_code_entry
*Entry
,
76 OwningBinary
<ObjectFile
> Obj
)
77 : Size(Size
), Entry(Entry
), Obj(std::move(Obj
)) {}
80 jit_code_entry
*Entry
;
81 OwningBinary
<ObjectFile
> Obj
;
84 // Buffer for an in-memory object file in executable memory
85 typedef llvm::DenseMap
<JITEventListener::ObjectKey
, RegisteredObjectInfo
>
86 RegisteredObjectBufferMap
;
88 /// Global access point for the JIT debugging interface designed for use with a
89 /// singleton toolbox. Handles thread-safe registration and deregistration of
90 /// object files that are in executable memory managed by the client of this
92 class GDBJITRegistrationListener
: public JITEventListener
{
93 /// A map of in-memory object files that have been registered with the
95 RegisteredObjectBufferMap ObjectBufferMap
;
98 /// Instantiates the JIT service.
99 GDBJITRegistrationListener() : ObjectBufferMap() {}
101 /// Unregisters each object that was previously registered and releases all
102 /// internal resources.
103 ~GDBJITRegistrationListener() override
;
105 /// Creates an entry in the JIT registry for the buffer @p Object,
106 /// which must contain an object file in executable memory with any
107 /// debug information for the debugger.
108 void notifyObjectLoaded(ObjectKey K
, const ObjectFile
&Obj
,
109 const RuntimeDyld::LoadedObjectInfo
&L
) override
;
111 /// Removes the internal registration of @p Object, and
112 /// frees associated resources.
113 /// Returns true if @p Object was found in ObjectBufferMap.
114 void notifyFreeingObject(ObjectKey K
) override
;
117 /// Deregister the debug info for the given object file from the debugger
118 /// and delete any temporary copies. This private method does not remove
119 /// the function from Map so that it can be called while iterating over Map.
120 void deregisterObjectInternal(RegisteredObjectBufferMap::iterator I
);
123 /// Lock used to serialize all jit registration events, since they
124 /// modify global variables.
125 ManagedStatic
<sys::Mutex
> JITDebugLock
;
127 /// Do the registration.
128 void NotifyDebugger(jit_code_entry
* JITCodeEntry
) {
129 __jit_debug_descriptor
.action_flag
= JIT_REGISTER_FN
;
131 // Insert this entry at the head of the list.
132 JITCodeEntry
->prev_entry
= nullptr;
133 jit_code_entry
* NextEntry
= __jit_debug_descriptor
.first_entry
;
134 JITCodeEntry
->next_entry
= NextEntry
;
136 NextEntry
->prev_entry
= JITCodeEntry
;
138 __jit_debug_descriptor
.first_entry
= JITCodeEntry
;
139 __jit_debug_descriptor
.relevant_entry
= JITCodeEntry
;
140 __jit_debug_register_code();
143 GDBJITRegistrationListener::~GDBJITRegistrationListener() {
144 // Free all registered object files.
145 std::lock_guard
<llvm::sys::Mutex
> locked(*JITDebugLock
);
146 for (RegisteredObjectBufferMap::iterator I
= ObjectBufferMap
.begin(),
147 E
= ObjectBufferMap
.end();
149 // Call the private method that doesn't update the map so our iterator
151 deregisterObjectInternal(I
);
153 ObjectBufferMap
.clear();
156 void GDBJITRegistrationListener::notifyObjectLoaded(
157 ObjectKey K
, const ObjectFile
&Obj
,
158 const RuntimeDyld::LoadedObjectInfo
&L
) {
160 OwningBinary
<ObjectFile
> DebugObj
= L
.getObjectForDebug(Obj
);
162 // Bail out if debug objects aren't supported.
163 if (!DebugObj
.getBinary())
166 const char *Buffer
= DebugObj
.getBinary()->getMemoryBufferRef().getBufferStart();
167 size_t Size
= DebugObj
.getBinary()->getMemoryBufferRef().getBufferSize();
169 std::lock_guard
<llvm::sys::Mutex
> locked(*JITDebugLock
);
170 assert(ObjectBufferMap
.find(K
) == ObjectBufferMap
.end() &&
171 "Second attempt to perform debug registration.");
172 jit_code_entry
* JITCodeEntry
= new jit_code_entry();
175 llvm::report_fatal_error(
176 "Allocation failed when registering a JIT entry!\n");
178 JITCodeEntry
->symfile_addr
= Buffer
;
179 JITCodeEntry
->symfile_size
= Size
;
182 RegisteredObjectInfo(Size
, JITCodeEntry
, std::move(DebugObj
));
183 NotifyDebugger(JITCodeEntry
);
187 void GDBJITRegistrationListener::notifyFreeingObject(ObjectKey K
) {
188 std::lock_guard
<llvm::sys::Mutex
> locked(*JITDebugLock
);
189 RegisteredObjectBufferMap::iterator I
= ObjectBufferMap
.find(K
);
191 if (I
!= ObjectBufferMap
.end()) {
192 deregisterObjectInternal(I
);
193 ObjectBufferMap
.erase(I
);
197 void GDBJITRegistrationListener::deregisterObjectInternal(
198 RegisteredObjectBufferMap::iterator I
) {
200 jit_code_entry
*& JITCodeEntry
= I
->second
.Entry
;
202 // Do the unregistration.
204 __jit_debug_descriptor
.action_flag
= JIT_UNREGISTER_FN
;
206 // Remove the jit_code_entry from the linked list.
207 jit_code_entry
* PrevEntry
= JITCodeEntry
->prev_entry
;
208 jit_code_entry
* NextEntry
= JITCodeEntry
->next_entry
;
211 NextEntry
->prev_entry
= PrevEntry
;
214 PrevEntry
->next_entry
= NextEntry
;
217 assert(__jit_debug_descriptor
.first_entry
== JITCodeEntry
);
218 __jit_debug_descriptor
.first_entry
= NextEntry
;
221 // Tell the debugger which entry we removed, and unregister the code.
222 __jit_debug_descriptor
.relevant_entry
= JITCodeEntry
;
223 __jit_debug_register_code();
227 JITCodeEntry
= nullptr;
230 llvm::ManagedStatic
<GDBJITRegistrationListener
> GDBRegListener
;
236 JITEventListener
* JITEventListener::createGDBRegistrationListener() {
237 return &*GDBRegListener
;
242 LLVMJITEventListenerRef
LLVMCreateGDBRegistrationListener(void)
244 return wrap(JITEventListener::createGDBRegistrationListener());