LLVM 19.0.0git
DebugObjectManagerPlugin.h
Go to the documentation of this file.
1//===---- DebugObjectManagerPlugin.h - JITLink debug objects ---*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// ObjectLinkingLayer plugin for emitting debug objects.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_EXECUTIONENGINE_ORC_DEBUGOBJECTMANAGERPLUGIN_H
14#define LLVM_EXECUTIONENGINE_ORC_DEBUGOBJECTMANAGERPLUGIN_H
15
20#include "llvm/Support/Error.h"
21#include "llvm/Support/Memory.h"
24
25#include <functional>
26#include <map>
27#include <memory>
28#include <mutex>
29
30namespace llvm {
31namespace orc {
32
33class DebugObject;
34
35/// Creates and manages DebugObjects for JITLink artifacts.
36///
37/// DebugObjects are created when linking for a MaterializationResponsibility
38/// starts. They are pending as long as materialization is in progress.
39///
40/// There can only be one pending DebugObject per MaterializationResponsibility.
41/// If materialization fails, pending DebugObjects are discarded.
42///
43/// Once executable code for the MaterializationResponsibility is emitted, the
44/// corresponding DebugObject is finalized to target memory and the provided
45/// DebugObjectRegistrar is notified. Ownership of DebugObjects remains with the
46/// plugin.
47///
49public:
50 // DEPRECATED - Please specify options explicitly
52 std::unique_ptr<DebugObjectRegistrar> Target);
53
54 /// Create the plugin to submit DebugObjects for JITLink artifacts. For all
55 /// options the recommended setting is true.
56 ///
57 /// RequireDebugSections:
58 /// Submit debug objects to the executor only if they contain actual debug
59 /// info. Turning this off may allow minimal debugging based on raw symbol
60 /// names. Note that this may cause significant memory and transport
61 /// overhead for objects built with a release configuration.
62 ///
63 /// AutoRegisterCode:
64 /// Notify the debugger for each new debug object. This is a good default
65 /// mode, but it may cause significant overhead when adding many modules in
66 /// sequence. When turning this off, the user has to issue the call to
67 /// __jit_debug_register_code() on the executor side manually.
68 ///
70 std::unique_ptr<DebugObjectRegistrar> Target,
71 bool RequireDebugSections, bool AutoRegisterCode);
73
76 MemoryBufferRef InputObject) override;
77
81
83 ResourceKey SrcKey) override;
84
87 jitlink::PassConfiguration &PassConfig) override;
88
89private:
91
92 using OwnedDebugObject = std::unique_ptr<DebugObject>;
93 std::map<MaterializationResponsibility *, OwnedDebugObject> PendingObjs;
94 std::map<ResourceKey, std::vector<OwnedDebugObject>> RegisteredObjs;
95
96 std::mutex PendingObjsLock;
97 std::mutex RegisteredObjsLock;
98
99 std::unique_ptr<DebugObjectRegistrar> Target;
100 bool RequireDebugSections;
101 bool AutoRegisterCode;
102};
103
104} // namespace orc
105} // namespace llvm
106
107#endif // LLVM_EXECUTIONENGINE_ORC_DEBUGOBJECTMANAGERPLUGIN_H
#define G(x, y, z)
Definition: MD5.cpp:56
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
Target - Wrapper for Target specific information.
Creates and manages DebugObjects for JITLink artifacts.
Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override
void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey, ResourceKey SrcKey) override
Error notifyFailed(MaterializationResponsibility &MR) override
Error notifyEmitted(MaterializationResponsibility &MR) override
void notifyMaterializing(MaterializationResponsibility &MR, jitlink::LinkGraph &G, jitlink::JITLinkContext &Ctx, MemoryBufferRef InputObject) override
void modifyPassConfig(MaterializationResponsibility &MR, jitlink::LinkGraph &LG, jitlink::PassConfiguration &PassConfig) override
An ExecutionSession represents a running JIT program.
Definition: Core.h:1425
Represents a JIT'd dynamic library.
Definition: Core.h:989
Tracks responsibility for materialization, and mediates interactions between MaterializationUnits and...
Definition: Core.h:555
Plugin instances can be added to the ObjectLinkingLayer to receive callbacks when code is loaded or e...
uintptr_t ResourceKey
Definition: Core.h:53
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18