LLVM 19.0.0git
DebuggerSupportPlugin.cpp
Go to the documentation of this file.
1//===------- DebuggerSupportPlugin.cpp - Utils for debugger support -------===//
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//
10//===----------------------------------------------------------------------===//
11
14
15#include "llvm/ADT/SmallSet.h"
20
21#include <chrono>
22
23#define DEBUG_TYPE "orc"
24
25using namespace llvm;
26using namespace llvm::jitlink;
27using namespace llvm::orc;
28
29static const char *SynthDebugSectionName = "__jitlink_synth_debug_object";
30
31namespace {
32
33class MachODebugObjectSynthesizerBase
35public:
36 static bool isDebugSection(Section &Sec) {
37 return Sec.getName().starts_with("__DWARF,");
38 }
39
40 MachODebugObjectSynthesizerBase(LinkGraph &G, ExecutorAddr RegisterActionAddr)
41 : G(G), RegisterActionAddr(RegisterActionAddr) {}
42 virtual ~MachODebugObjectSynthesizerBase() = default;
43
45 if (G.findSectionByName(SynthDebugSectionName)) {
47 dbgs() << "MachODebugObjectSynthesizer skipping graph " << G.getName()
48 << " which contains an unexpected existing "
49 << SynthDebugSectionName << " section.\n";
50 });
51 return Error::success();
52 }
53
55 dbgs() << "MachODebugObjectSynthesizer visiting graph " << G.getName()
56 << "\n";
57 });
58 for (auto &Sec : G.sections()) {
59 if (!isDebugSection(Sec))
60 continue;
61 // Preserve blocks in this debug section by marking one existing symbol
62 // live for each block, and introducing a new live, anonymous symbol for
63 // each currently unreferenced block.
65 dbgs() << " Preserving debug section " << Sec.getName() << "\n";
66 });
67 SmallSet<Block *, 8> PreservedBlocks;
68 for (auto *Sym : Sec.symbols()) {
69 bool NewPreservedBlock =
70 PreservedBlocks.insert(&Sym->getBlock()).second;
71 if (NewPreservedBlock)
72 Sym->setLive(true);
73 }
74 for (auto *B : Sec.blocks())
75 if (!PreservedBlocks.count(B))
76 G.addAnonymousSymbol(*B, 0, 0, false, true);
77 }
78
79 return Error::success();
80 }
81
82protected:
83 LinkGraph &G;
84 ExecutorAddr RegisterActionAddr;
85};
86
87template <typename MachOTraits>
88class MachODebugObjectSynthesizer : public MachODebugObjectSynthesizerBase {
89public:
90 MachODebugObjectSynthesizer(ExecutionSession &ES, LinkGraph &G,
91 ExecutorAddr RegisterActionAddr)
92 : MachODebugObjectSynthesizerBase(G, RegisterActionAddr),
93 Builder(ES.getPageSize()) {}
94
95 using MachODebugObjectSynthesizerBase::MachODebugObjectSynthesizerBase;
96
97 Error startSynthesis() override {
99 dbgs() << "Creating " << SynthDebugSectionName << " for " << G.getName()
100 << "\n";
101 });
102
103 for (auto &Sec : G.sections()) {
104 if (Sec.blocks().empty())
105 continue;
106
107 // Skip sections whose name's don't fit the MachO standard.
108 if (Sec.getName().empty() || Sec.getName().size() > 33 ||
109 Sec.getName().find(',') > 16)
110 continue;
111
112 if (isDebugSection(Sec))
113 DebugSections.push_back({&Sec, nullptr});
114 else if (Sec.getMemLifetime() != MemLifetime::NoAlloc)
115 NonDebugSections.push_back({&Sec, nullptr});
116 }
117
118 // Bail out early if no debug sections.
119 if (DebugSections.empty())
120 return Error::success();
121
122 // Write MachO header and debug section load commands.
123 Builder.Header.filetype = MachO::MH_OBJECT;
124 switch (G.getTargetTriple().getArch()) {
125 case Triple::x86_64:
126 Builder.Header.cputype = MachO::CPU_TYPE_X86_64;
127 Builder.Header.cpusubtype = MachO::CPU_SUBTYPE_X86_64_ALL;
128 break;
129 case Triple::aarch64:
130 Builder.Header.cputype = MachO::CPU_TYPE_ARM64;
131 Builder.Header.cpusubtype = MachO::CPU_SUBTYPE_ARM64_ALL;
132 break;
133 default:
134 llvm_unreachable("Unsupported architecture");
135 }
136
137 Seg = &Builder.addSegment("");
138
140 StringRef DebugLineSectionData;
141 for (auto &DSec : DebugSections) {
142 auto [SegName, SecName] = DSec.GraphSec->getName().split(',');
143 DSec.BuilderSec = &Seg->addSection(SecName, SegName);
144
145 SectionRange SR(*DSec.GraphSec);
146 DSec.BuilderSec->Content.Size = SR.getSize();
147 if (!SR.empty()) {
148 DSec.BuilderSec->align = Log2_64(SR.getFirstBlock()->getAlignment());
149 StringRef SectionData(SR.getFirstBlock()->getContent().data(),
150 SR.getFirstBlock()->getSize());
151 DebugSectionMap[SecName] =
152 MemoryBuffer::getMemBuffer(SectionData, G.getName(), false);
153 if (SecName == "__debug_line")
154 DebugLineSectionData = SectionData;
155 }
156 }
157
158 std::optional<StringRef> FileName;
159 if (!DebugLineSectionData.empty()) {
160 assert((G.getEndianness() == llvm::endianness::big ||
161 G.getEndianness() == llvm::endianness::little) &&
162 "G.getEndianness() must be either big or little");
163 auto DWARFCtx =
164 DWARFContext::create(DebugSectionMap, G.getPointerSize(),
165 G.getEndianness() == llvm::endianness::little);
166 DWARFDataExtractor DebugLineData(
167 DebugLineSectionData, G.getEndianness() == llvm::endianness::little,
168 G.getPointerSize());
169 uint64_t Offset = 0;
171
172 // Try to parse line data. Consume error on failure.
173 if (auto Err = LineTable.parse(DebugLineData, &Offset, *DWARFCtx, nullptr,
174 consumeError)) {
175 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) {
176 LLVM_DEBUG({
177 dbgs() << "Cannot parse line table for \"" << G.getName() << "\": ";
178 EIB.log(dbgs());
179 dbgs() << "\n";
180 });
181 });
182 } else {
183 if (!LineTable.Prologue.FileNames.empty())
184 FileName = *dwarf::toString(LineTable.Prologue.FileNames[0].Name);
185 }
186 }
187
188 // If no line table (or unable to use) then use graph name.
189 // FIXME: There are probably other debug sections we should look in first.
190 if (!FileName)
191 FileName = StringRef(G.getName());
192
193 Builder.addSymbol("", MachO::N_SO, 0, 0, 0);
194 Builder.addSymbol(*FileName, MachO::N_SO, 0, 0, 0);
195 auto TimeStamp = std::chrono::duration_cast<std::chrono::seconds>(
196 std::chrono::system_clock::now().time_since_epoch())
197 .count();
198 Builder.addSymbol("", MachO::N_OSO, 3, 1, TimeStamp);
199
200 for (auto &NDSP : NonDebugSections) {
201 auto [SegName, SecName] = NDSP.GraphSec->getName().split(',');
202 NDSP.BuilderSec = &Seg->addSection(SecName, SegName);
203 SectionRange SR(*NDSP.GraphSec);
204 if (!SR.empty())
205 NDSP.BuilderSec->align = Log2_64(SR.getFirstBlock()->getAlignment());
206
207 // Add stabs.
208 for (auto *Sym : NDSP.GraphSec->symbols()) {
209 // Skip anonymous symbols.
210 if (!Sym->hasName())
211 continue;
212
213 uint8_t SymType = Sym->isCallable() ? MachO::N_FUN : MachO::N_GSYM;
214
215 Builder.addSymbol("", MachO::N_BNSYM, 1, 0, 0);
216 StabSymbols.push_back(
217 {*Sym, Builder.addSymbol(Sym->getName(), SymType, 1, 0, 0),
218 Builder.addSymbol(Sym->getName(), SymType, 0, 0, 0)});
219 Builder.addSymbol("", MachO::N_ENSYM, 1, 0, 0);
220 }
221 }
222
223 Builder.addSymbol("", MachO::N_SO, 1, 0, 0);
224
225 // Lay out the debug object, create a section and block for it.
226 size_t DebugObjectSize = Builder.layout();
227
228 auto &SDOSec = G.createSection(SynthDebugSectionName, MemProt::Read);
229 MachOContainerBlock = &G.createMutableContentBlock(
230 SDOSec, G.allocateBuffer(DebugObjectSize), orc::ExecutorAddr(), 8, 0);
231
232 return Error::success();
233 }
234
235 Error completeSynthesisAndRegister() override {
236 if (!MachOContainerBlock) {
237 LLVM_DEBUG({
238 dbgs() << "Not writing MachO debug object header for " << G.getName()
239 << " since createDebugSection failed\n";
240 });
241
242 return Error::success();
243 }
244 ExecutorAddr MaxAddr;
245 for (auto &NDSec : NonDebugSections) {
246 SectionRange SR(*NDSec.GraphSec);
247 NDSec.BuilderSec->addr = SR.getStart().getValue();
248 NDSec.BuilderSec->size = SR.getSize();
249 NDSec.BuilderSec->offset = SR.getStart().getValue();
250 if (SR.getEnd() > MaxAddr)
251 MaxAddr = SR.getEnd();
252 }
253
254 for (auto &DSec : DebugSections) {
255 if (DSec.GraphSec->blocks_size() != 1)
256 return make_error<StringError>(
257 "Unexpected number of blocks in debug info section",
259
260 if (ExecutorAddr(DSec.BuilderSec->addr) + DSec.BuilderSec->size > MaxAddr)
261 MaxAddr = ExecutorAddr(DSec.BuilderSec->addr) + DSec.BuilderSec->size;
262
263 auto &B = **DSec.GraphSec->blocks().begin();
264 DSec.BuilderSec->Content.Data = B.getContent().data();
265 DSec.BuilderSec->Content.Size = B.getContent().size();
266 DSec.BuilderSec->flags |= MachO::S_ATTR_DEBUG;
267 }
268
269 LLVM_DEBUG({
270 dbgs() << "Writing MachO debug object header for " << G.getName() << "\n";
271 });
272
273 // Update stab symbol addresses.
274 for (auto &SS : StabSymbols) {
275 SS.StartStab.nlist().n_value = SS.Sym.getAddress().getValue();
276 SS.EndStab.nlist().n_value = SS.Sym.getSize();
277 }
278
279 Builder.write(MachOContainerBlock->getAlreadyMutableContent());
280
281 static constexpr bool AutoRegisterCode = true;
282 SectionRange R(MachOContainerBlock->getSection());
283 G.allocActions().push_back(
286 RegisterActionAddr, R.getRange(), AutoRegisterCode)),
287 {}});
288
289 return Error::success();
290 }
291
292private:
293 struct SectionPair {
294 Section *GraphSec = nullptr;
295 typename MachOBuilder<MachOTraits>::Section *BuilderSec = nullptr;
296 };
297
298 struct StabSymbolsEntry {
299 using RelocTarget = typename MachOBuilder<MachOTraits>::RelocTarget;
300
301 StabSymbolsEntry(Symbol &Sym, RelocTarget StartStab, RelocTarget EndStab)
302 : Sym(Sym), StartStab(StartStab), EndStab(EndStab) {}
303
304 Symbol &Sym;
305 RelocTarget StartStab, EndStab;
306 };
307
308 using BuilderType = MachOBuilder<MachOTraits>;
309
310 Block *MachOContainerBlock = nullptr;
312 typename MachOBuilder<MachOTraits>::Segment *Seg = nullptr;
313 std::vector<StabSymbolsEntry> StabSymbols;
314 SmallVector<SectionPair, 16> DebugSections;
315 SmallVector<SectionPair, 16> NonDebugSections;
316};
317
318} // end anonymous namespace
319
320namespace llvm {
321namespace orc {
322
325 JITDylib &ProcessJD,
326 const Triple &TT) {
327 auto RegisterActionAddr =
328 TT.isOSBinFormatMachO()
329 ? ES.intern("_llvm_orc_registerJITLoaderGDBAllocAction")
330 : ES.intern("llvm_orc_registerJITLoaderGDBAllocAction");
331
332 if (auto RegisterSym = ES.lookup({&ProcessJD}, RegisterActionAddr))
333 return std::make_unique<GDBJITDebugInfoRegistrationPlugin>(
334 RegisterSym->getAddress());
335 else
336 return RegisterSym.takeError();
337}
338
341 return Error::success();
342}
343
345 JITDylib &JD, ResourceKey K) {
346 return Error::success();
347}
348
350 JITDylib &JD, ResourceKey DstKey, ResourceKey SrcKey) {}
351
354 PassConfiguration &PassConfig) {
355
357 modifyPassConfigForMachO(MR, LG, PassConfig);
358 else {
359 LLVM_DEBUG({
360 dbgs() << "GDBJITDebugInfoRegistrationPlugin skipping unspported graph "
361 << LG.getName() << "(triple = " << LG.getTargetTriple().str()
362 << "\n";
363 });
364 }
365}
366
367void GDBJITDebugInfoRegistrationPlugin::modifyPassConfigForMachO(
369 jitlink::PassConfiguration &PassConfig) {
370
371 switch (LG.getTargetTriple().getArch()) {
372 case Triple::x86_64:
373 case Triple::aarch64:
374 // Supported, continue.
375 assert(LG.getPointerSize() == 8 && "Graph has incorrect pointer size");
377 "Graph has incorrect endianness");
378 break;
379 default:
380 // Unsupported.
381 LLVM_DEBUG({
382 dbgs() << "GDBJITDebugInfoRegistrationPlugin skipping unsupported "
383 << "MachO graph " << LG.getName()
384 << "(triple = " << LG.getTargetTriple().str()
385 << ", pointer size = " << LG.getPointerSize() << ", endianness = "
386 << (LG.getEndianness() == llvm::endianness::big ? "big" : "little")
387 << ")\n";
388 });
389 return;
390 }
391
392 // Scan for debug sections. If we find one then install passes.
393 bool HasDebugSections = false;
394 for (auto &Sec : LG.sections())
395 if (MachODebugObjectSynthesizerBase::isDebugSection(Sec)) {
396 HasDebugSections = true;
397 break;
398 }
399
400 if (HasDebugSections) {
401 LLVM_DEBUG({
402 dbgs() << "GDBJITDebugInfoRegistrationPlugin: Graph " << LG.getName()
403 << " contains debug info. Installing debugger support passes.\n";
404 });
405
406 auto MDOS = std::make_shared<MachODebugObjectSynthesizer<MachO64LE>>(
407 MR.getTargetJITDylib().getExecutionSession(), LG, RegisterActionAddr);
408 PassConfig.PrePrunePasses.push_back(
409 [=](LinkGraph &G) { return MDOS->preserveDebugSections(); });
410 PassConfig.PostPrunePasses.push_back(
411 [=](LinkGraph &G) { return MDOS->startSynthesis(); });
412 PassConfig.PostFixupPasses.push_back(
413 [=](LinkGraph &G) { return MDOS->completeSynthesisAndRegister(); });
414 } else {
415 LLVM_DEBUG({
416 dbgs() << "GDBJITDebugInfoRegistrationPlugin: Graph " << LG.getName()
417 << " contains no debug info. Skipping.\n";
418 });
419 }
420}
421
422} // namespace orc
423} // namespace llvm
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_DEBUG(X)
Definition: Debug.h:101
static const char * SynthDebugSectionName
static bool isDebugSection(const SectionBase &Sec)
Definition: ELFObjcopy.cpp:54
Symbol * Sym
Definition: ELF_riscv.cpp:479
#define G(x, y, z)
Definition: MD5.cpp:56
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallSet class.
This file defines the SmallVector class.
const T * data() const
Definition: ArrayRef.h:162
static std::unique_ptr< DWARFContext > create(const object::ObjectFile &Obj, ProcessDebugRelocations RelocAction=ProcessDebugRelocations::Process, const LoadedObjectInfo *L=nullptr, std::string DWPName="", std::function< void(Error)> RecoverableErrorHandler=WithColor::defaultErrorHandler, std::function< void(Error)> WarningHandler=WithColor::defaultWarningHandler, bool ThreadSafe=false)
A DataExtractor (typically for an in-memory copy of an object-file section) plus a relocation map for...
Base class for error info classes.
Definition: Error.h:45
virtual void log(raw_ostream &OS) const =0
Print an error message to an output stream.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
static ErrorSuccess success()
Create a success value.
Definition: Error.h:334
Tagged union holding either a T or a Error.
Definition: Error.h:474
static std::unique_ptr< MemoryBuffer > getMemBuffer(StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
Open the specified memory range as a MemoryBuffer.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition: SmallSet.h:135
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
Definition: SmallSet.h:179
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:127
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition: StringRef.h:696
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
Definition: StringRef.h:257
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
ObjectFormatType getObjectFormat() const
Get the object format for this triple.
Definition: Triple.h:387
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition: Triple.h:361
const std::string & str() const
Definition: Triple.h:424
An ExecutionSession represents a running JIT program.
Definition: Core.h:1431
SymbolStringPtr intern(StringRef SymName)
Add a symbol name to the SymbolStringPool and return a pointer to it.
Definition: Core.h:1488
void lookup(LookupKind K, const JITDylibSearchOrder &SearchOrder, SymbolLookupSet Symbols, SymbolState RequiredState, SymbolsResolvedCallback NotifyComplete, RegisterDependenciesFunction RegisterDependencies)
Search the given JITDylibs for the given symbols.
Definition: Core.cpp:1804
size_t getPageSize() const
Definition: Core.h:1480
Represents an address in the executor process.
void modifyPassConfig(MaterializationResponsibility &MR, jitlink::LinkGraph &LG, jitlink::PassConfiguration &PassConfig) override
static Expected< std::unique_ptr< GDBJITDebugInfoRegistrationPlugin > > Create(ExecutionSession &ES, JITDylib &ProcessJD, const Triple &TT)
void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey, ResourceKey SrcKey) override
Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override
Error notifyFailed(MaterializationResponsibility &MR) override
Represents a JIT'd dynamic library.
Definition: Core.h:989
ExecutionSession & getExecutionSession() const
Get a reference to the ExecutionSession for this JITDylib.
Definition: Core.h:1008
Tracks responsibility for materialization, and mediates interactions between MaterializationUnits and...
Definition: Core.h:555
JITDylib & getTargetJITDylib() const
Returns the target JITDylib that these symbols are being materialized into.
Definition: Core.h:577
A utility class for serializing to a blob from a variadic list.
static Expected< WrapperFunctionCall > Create(ExecutorAddr FnAddr, const ArgTs &...Args)
Create a WrapperFunctionCall using the given SPS serializer to serialize the arguments.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ N_ENSYM
Definition: MachO.h:372
@ N_GSYM
Definition: MachO.h:361
@ N_BNSYM
Definition: MachO.h:366
@ CPU_SUBTYPE_ARM64_ALL
Definition: MachO.h:1641
@ MH_OBJECT
Definition: MachO.h:43
@ S_ATTR_DEBUG
S_ATTR_DEBUG - A debug section.
Definition: MachO.h:207
@ CPU_SUBTYPE_X86_64_ALL
Definition: MachO.h:1611
@ CPU_TYPE_ARM64
Definition: MachO.h:1570
@ CPU_TYPE_X86_64
Definition: MachO.h:1566
@ SS
Definition: X86.h:207
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
Error preserveDebugSections(jitlink::LinkGraph &G)
uintptr_t ResourceKey
Definition: Core.h:53
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
void handleAllErrors(Error E, HandlerTs &&... Handlers)
Behaves the same as handleErrors, except that by contract all errors must be handled by the given han...
Definition: Error.h:970
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition: Error.cpp:90
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition: MathExtras.h:319
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition: Error.h:749
void consumeError(Error Err)
Consume a Error without doing anything.
Definition: Error.h:1041
Error parse(DWARFDataExtractor &DebugLineData, uint64_t *OffsetPtr, const DWARFContext &Ctx, const DWARFUnit *U, function_ref< void(Error)> RecoverableErrorHandler, raw_ostream *OS=nullptr, bool Verbose=false)
Parse prologue and all rows.
std::vector< FileNameEntry > FileNames