1//=== DWARFLinkerCompileUnit.cpp ------------------------------------------===//
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#include "DWARFLinkerCompileUnit.h"
10#include "AcceleratorRecordsSaver.h"
11#include "DIEAttributeCloner.h"
12#include "DIEGenerator.h"
13#include "DependencyTracker.h"
14#include "SyntheticTypeNameBuilder.h"
15#include "llvm/DWARFLinker/Utils.h"
16#include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h"
17#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h"
18#include "llvm/Support/FileSystem.h"
19#include "llvm/Support/FormatVariadic.h"
20#include "llvm/Support/Path.h"
21#include <utility>
22
23using namespace llvm;
24using namespace dwarf_linker;
25using namespace dwarf_linker::parallel;
26
27CompileUnit::CompileUnit(LinkingGlobalData &GlobalData, unsigned ID,
28 StringRef ClangModuleName, DWARFFile &File,
29 OffsetToUnitTy UnitFromOffset,
30 dwarf::FormParams Format, llvm::endianness Endianess)
31 : DwarfUnit(GlobalData, ID, ClangModuleName), File(File),
32 getUnitFromOffset(UnitFromOffset), Stage(Stage::CreatedNotLoaded),
33 AcceleratorRecords(&GlobalData.getAllocator()) {
34 UnitName = File.FileName;
35 setOutputFormat(Format, Endianness: Endianess);
36 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
37}
38
39CompileUnit::CompileUnit(LinkingGlobalData &GlobalData, DWARFUnit &OrigUnit,
40 unsigned ID, StringRef ClangModuleName,
41 DWARFFile &File, OffsetToUnitTy UnitFromOffset,
42 dwarf::FormParams Format, llvm::endianness Endianess)
43 : DwarfUnit(GlobalData, ID, ClangModuleName), File(File),
44 OrigUnit(&OrigUnit), getUnitFromOffset(UnitFromOffset),
45 Stage(Stage::CreatedNotLoaded),
46 AcceleratorRecords(&GlobalData.getAllocator()) {
47 setOutputFormat(Format, Endianness: Endianess);
48 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
49
50 DWARFDie CUDie = OrigUnit.getUnitDIE();
51 if (!CUDie)
52 return;
53
54 Language = CUDie.getLanguage();
55
56 if (!GlobalData.getOptions().NoODR && Language.has_value() &&
57 isODRLanguage(Language: *Language))
58 NoODR = false;
59
60 if (const char *CUName = CUDie.getName(Kind: DINameKind::ShortName))
61 UnitName = CUName;
62 else
63 UnitName = File.FileName;
64 SysRoot = dwarf::toStringRef(V: CUDie.find(Attr: dwarf::DW_AT_LLVM_sysroot)).str();
65}
66
67void CompileUnit::loadLineTable() {
68 LineTablePtr = File.Dwarf->getLineTableForUnit(U: &getOrigUnit());
69}
70
71void CompileUnit::maybeResetToLoadedStage() {
72 // Nothing to reset if stage is less than "Loaded".
73 if (getStage() < Stage::Loaded)
74 return;
75
76 // Note: We need to do erasing for "Loaded" stage because
77 // if live analysys failed then we will have "Loaded" stage
78 // with marking from "LivenessAnalysisDone" stage partially
79 // done. That marking should be cleared.
80
81 for (DIEInfo &Info : DieInfoArray)
82 Info.unsetFlagsWhichSetDuringLiveAnalysis();
83
84 LowPc = std::nullopt;
85 HighPc = 0;
86 Labels.clear();
87 Ranges.clear();
88 Dependencies.reset(p: nullptr);
89
90 if (getStage() < Stage::Cloned) {
91 setStage(Stage::Loaded);
92 return;
93 }
94
95 AcceleratorRecords.erase();
96 AbbreviationsSet.clear();
97 Abbreviations.clear();
98 OutUnitDIE = nullptr;
99 DebugAddrIndexMap.clear();
100 StmtSeqListAttributes.clear();
101
102 llvm::fill(Range&: OutDieOffsetArray, Value: 0);
103 llvm::fill(Range&: TypeEntries, Value: nullptr);
104 eraseSections();
105
106 setStage(Stage::CreatedNotLoaded);
107}
108
109bool CompileUnit::loadInputDIEs() {
110 DWARFDie InputUnitDIE = getUnitDIE(ExtractUnitDIEOnly: false);
111 if (!InputUnitDIE)
112 return false;
113
114 // load input dies, resize Info structures array.
115 DieInfoArray.resize(N: getOrigUnit().getNumDIEs());
116 OutDieOffsetArray.resize(N: getOrigUnit().getNumDIEs(), NV: 0);
117 if (!NoODR)
118 TypeEntries.resize(N: getOrigUnit().getNumDIEs());
119 return true;
120}
121
122void CompileUnit::analyzeDWARFStructureRec(const DWARFDebugInfoEntry *DieEntry,
123 bool IsODRUnavailableFunctionScope) {
124 CompileUnit::DIEInfo &DieInfo = getDIEInfo(Entry: DieEntry);
125
126 for (const DWARFDebugInfoEntry *CurChild = getFirstChildEntry(Die: DieEntry);
127 CurChild && CurChild->getAbbreviationDeclarationPtr();
128 CurChild = getSiblingEntry(Die: CurChild)) {
129 CompileUnit::DIEInfo &ChildInfo = getDIEInfo(Entry: CurChild);
130 bool ChildIsODRUnavailableFunctionScope = IsODRUnavailableFunctionScope;
131
132 if (DieInfo.getIsInMouduleScope())
133 ChildInfo.setIsInMouduleScope();
134
135 if (DieInfo.getIsInFunctionScope())
136 ChildInfo.setIsInFunctionScope();
137
138 if (DieInfo.getIsInAnonNamespaceScope())
139 ChildInfo.setIsInAnonNamespaceScope();
140
141 switch (CurChild->getTag()) {
142 case dwarf::DW_TAG_module:
143 ChildInfo.setIsInMouduleScope();
144 if (DieEntry->getTag() == dwarf::DW_TAG_compile_unit &&
145 dwarf::toString(V: find(Die: CurChild, Attrs: dwarf::DW_AT_name), Default: "") !=
146 getClangModuleName())
147 analyzeImportedModule(DieEntry: CurChild);
148 break;
149 case dwarf::DW_TAG_subprogram:
150 ChildInfo.setIsInFunctionScope();
151 if (!ChildIsODRUnavailableFunctionScope &&
152 !ChildInfo.getIsInMouduleScope()) {
153 if (find(Die: CurChild,
154 Attrs: {dwarf::DW_AT_abstract_origin, dwarf::DW_AT_specification}))
155 ChildIsODRUnavailableFunctionScope = true;
156 }
157 break;
158 case dwarf::DW_TAG_namespace: {
159 UnitEntryPairTy NamespaceEntry = {this, CurChild};
160
161 if (find(Die: CurChild, Attrs: dwarf::DW_AT_extension))
162 NamespaceEntry = NamespaceEntry.getNamespaceOrigin();
163
164 if (!NamespaceEntry.CU->find(Die: NamespaceEntry.DieEntry, Attrs: dwarf::DW_AT_name))
165 ChildInfo.setIsInAnonNamespaceScope();
166 } break;
167 default:
168 break;
169 }
170
171 if (!isClangModule() && !getGlobalData().getOptions().UpdateIndexTablesOnly)
172 ChildInfo.setTrackLiveness();
173
174 if ((!ChildInfo.getIsInAnonNamespaceScope() &&
175 !ChildIsODRUnavailableFunctionScope && !NoODR))
176 ChildInfo.setODRAvailable();
177
178 if (CurChild->hasChildren())
179 analyzeDWARFStructureRec(DieEntry: CurChild, IsODRUnavailableFunctionScope: ChildIsODRUnavailableFunctionScope);
180 }
181}
182
183StringEntry *CompileUnit::getFileName(unsigned FileIdx,
184 StringPool &GlobalStrings) {
185 if (LineTablePtr) {
186 if (LineTablePtr->hasFileAtIndex(FileIndex: FileIdx)) {
187 // Cache the resolved paths based on the index in the line table,
188 // because calling realpath is expensive.
189 ResolvedPathsMap::const_iterator It = ResolvedFullPaths.find(Val: FileIdx);
190 if (It == ResolvedFullPaths.end()) {
191 std::string OrigFileName;
192 bool FoundFileName = LineTablePtr->getFileNameByIndex(
193 FileIndex: FileIdx, CompDir: getOrigUnit().getCompilationDir(),
194 Kind: DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
195 Result&: OrigFileName);
196 (void)FoundFileName;
197 assert(FoundFileName && "Must get file name from line table");
198
199 // Second level of caching, this time based on the file's parent
200 // path.
201 StringRef FileName = sys::path::filename(path: OrigFileName);
202 StringRef ParentPath = sys::path::parent_path(path: OrigFileName);
203
204 // If the ParentPath has not yet been resolved, resolve and cache it for
205 // future look-ups.
206 StringMap<StringEntry *>::iterator ParentIt =
207 ResolvedParentPaths.find(Key: ParentPath);
208 if (ParentIt == ResolvedParentPaths.end()) {
209 SmallString<256> RealPath;
210 sys::fs::real_path(path: ParentPath, output&: RealPath);
211 ParentIt =
212 ResolvedParentPaths
213 .insert(KV: {ParentPath, GlobalStrings.insert(NewValue: RealPath).first})
214 .first;
215 }
216
217 // Join the file name again with the resolved path.
218 SmallString<256> ResolvedPath(ParentIt->second->first());
219 sys::path::append(path&: ResolvedPath, a: FileName);
220
221 It = ResolvedFullPaths
222 .insert(KV: std::make_pair(
223 x&: FileIdx, y: GlobalStrings.insert(NewValue: ResolvedPath).first))
224 .first;
225 }
226
227 return It->second;
228 }
229 }
230
231 return nullptr;
232}
233
234llvm::Error CompileUnit::setPriority(uint64_t ObjFileIdx, uint64_t LocalIdx) {
235 if (ObjFileIdx > std::numeric_limits<uint32_t>::max())
236 return llvm::createStringError(Fmt: "cannot compute priority when number of "
237 "object files exceeds UINT32_MAX");
238 if (LocalIdx > std::numeric_limits<uint32_t>::max())
239 return llvm::createStringError(Fmt: "cannot compute priority when number of "
240 "local index exceeds UINT32_MAX");
241
242 Priority = (ObjFileIdx << 32) | LocalIdx;
243 return llvm::Error::success();
244}
245
246void CompileUnit::cleanupDataAfterClonning() {
247 AbbreviationsSet.clear();
248 ResolvedFullPaths.shrink_and_clear();
249 ResolvedParentPaths.clear();
250 FileNames.shrink_and_clear();
251 DieInfoArray = SmallVector<DIEInfo>();
252 OutDieOffsetArray = SmallVector<uint64_t>();
253 TypeEntries = SmallVector<TypeEntry *>();
254 Dependencies.reset(p: nullptr);
255 StmtSeqListAttributes.clear();
256 getOrigUnit().clear();
257}
258
259bool CompileUnit::getModulePath(const DWARFDebugInfoEntry *DieEntry,
260 SmallVectorImpl<char> &Path) {
261 assert(DieEntry->getTag() == dwarf::DW_TAG_module);
262
263 SmallVector<StringRef, 4> Names;
264 for (const DWARFDebugInfoEntry *CurEntry = DieEntry;
265 CurEntry && CurEntry->getTag() == dwarf::DW_TAG_module;
266 CurEntry = getParent(Die: CurEntry).getDebugInfoEntry()) {
267 StringRef Name = dwarf::toStringRef(V: find(Die: CurEntry, Attrs: dwarf::DW_AT_name));
268 if (Name.empty())
269 return false;
270 Names.push_back(Elt: Name);
271 }
272
273 for (StringRef Name : reverse(C&: Names)) {
274 Path.append(in_start: Name.begin(), in_end: Name.end());
275 Path.push_back(Elt: '\0');
276 }
277
278 return true;
279}
280
281void CompileUnit::noteModuleAnchors() {
282 const DWARFDebugInfoEntry *UnitEntry = getUnitDIE().getDebugInfoEntry();
283 assert(UnitEntry && "unit reached cloning without loaded DIEs");
284
285 // Find the root, ignoring the skeletons for the imported module.
286 const DWARFDebugInfoEntry *Root = nullptr;
287 for (const DWARFDebugInfoEntry *CurChild = getFirstChildEntry(Die: UnitEntry);
288 CurChild && CurChild->getAbbreviationDeclarationPtr();
289 CurChild = getSiblingEntry(Die: CurChild)) {
290 if (CurChild->getTag() == dwarf::DW_TAG_module &&
291 dwarf::toStringRef(V: find(Die: CurChild, Attrs: dwarf::DW_AT_name)) ==
292 getClangModuleName()) {
293 Root = CurChild;
294 break;
295 }
296 }
297 if (!Root)
298 return;
299
300 SmallString<128> Path;
301
302 // Submodules nest inside the module which declares them, so following the
303 // DW_TAG_module chain down from the root visits every module this unit
304 // describes, without walking the types they contain.
305 SmallVector<const DWARFDebugInfoEntry *, 4> WorkList = {Root};
306 while (!WorkList.empty()) {
307 const DWARFDebugInfoEntry *DieEntry = WorkList.pop_back_val();
308
309 for (const DWARFDebugInfoEntry *CurChild = getFirstChildEntry(Die: DieEntry);
310 CurChild && CurChild->getAbbreviationDeclarationPtr();
311 CurChild = getSiblingEntry(Die: CurChild))
312 if (CurChild->getTag() == dwarf::DW_TAG_module)
313 WorkList.push_back(Elt: CurChild);
314
315 Path.clear();
316 if (!getModulePath(DieEntry, Path))
317 continue;
318
319 ModuleAnchor Anchor;
320 Anchor.Priority = getPriority();
321 if (getDIEInfo(Entry: DieEntry).needToPlaceInTypeTable())
322 Anchor.TypeName = getDieTypeEntry(InputDieEntry: DieEntry);
323 if (!Anchor.TypeName) {
324 // Don't create a dangling reference to a DIE without a type entry or
325 // output offset.
326 uint64_t OutOffset = getDieOutOffset(InputDieEntry: DieEntry);
327 if (!OutOffset)
328 continue;
329 Anchor.Section = &getSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
330 Anchor.LocalOffset = OutOffset;
331 }
332
333 getGlobalData().getModulePool().set(Path, Location: Anchor);
334 }
335}
336
337/// Collect references to parseable Swift interfaces in imported
338/// DW_TAG_module blocks.
339void CompileUnit::analyzeImportedModule(const DWARFDebugInfoEntry *DieEntry) {
340 if (!Language || Language != dwarf::DW_LANG_Swift)
341 return;
342
343 if (!GlobalData.getOptions().ParseableSwiftInterfaces)
344 return;
345
346 StringRef Path =
347 dwarf::toStringRef(V: find(Die: DieEntry, Attrs: dwarf::DW_AT_LLVM_include_path));
348 if (!Path.ends_with(Suffix: ".swiftinterface"))
349 return;
350 // Don't track interfaces that are part of the SDK.
351 StringRef SysRoot =
352 dwarf::toStringRef(V: find(Die: DieEntry, Attrs: dwarf::DW_AT_LLVM_sysroot));
353 if (SysRoot.empty())
354 SysRoot = getSysRoot();
355 if (!SysRoot.empty() && Path.starts_with(Prefix: SysRoot))
356 return;
357 // Don't track interfaces that are part of the toolchain.
358 // For example: Swift, _Concurrency, ...
359 StringRef DeveloperDir = guessDeveloperDir(SysRoot);
360 if (!DeveloperDir.empty() && Path.starts_with(Prefix: DeveloperDir))
361 return;
362 if (isInToolchainDir(Path))
363 return;
364 if (std::optional<DWARFFormValue> Val = find(Die: DieEntry, Attrs: dwarf::DW_AT_name)) {
365 Expected<const char *> Name = Val->getAsCString();
366 if (!Name) {
367 warn(Warning: Name.takeError());
368 return;
369 }
370
371 // The prepend path is applied later when copying.
372 SmallString<128> ResolvedPath;
373 if (sys::path::is_relative(path: Path))
374 sys::path::append(
375 path&: ResolvedPath,
376 a: dwarf::toString(V: getUnitDIE().find(Attr: dwarf::DW_AT_comp_dir), Default: ""));
377 sys::path::append(path&: ResolvedPath, a: Path);
378
379 // Stage the entry. It will be merged into the shared
380 // ParseableSwiftInterfaces map after the parallel analysis phase so that
381 // the final contents and any conflict warnings are deterministic.
382 PendingSwiftInterfaces.emplace_back(Args&: *Name, Args&: ResolvedPath);
383 }
384}
385
386void CompileUnit::mergeSwiftInterfaces(
387 DWARFLinkerBase::SwiftInterfacesMapTy &Map) {
388 for (auto &Pending : PendingSwiftInterfaces) {
389 auto &Entry = Map[Pending.ModuleName];
390 if (!Entry.empty() && Entry != Pending.ResolvedPath)
391 warn(Warning: Twine("conflicting parseable interfaces for Swift Module ") +
392 Pending.ModuleName + ": " + Entry + " and " + Pending.ResolvedPath +
393 ".");
394 Entry = Pending.ResolvedPath;
395 }
396 PendingSwiftInterfaces.clear();
397}
398
399Error CompileUnit::assignTypeNames(TypePool &TypePoolRef) {
400 if (!getUnitDIE().isValid())
401 return Error::success();
402
403 SyntheticTypeNameBuilder NameBuilder(TypePoolRef);
404 return assignTypeNamesRec(DieEntry: getDebugInfoEntry(Index: 0), NameBuilder);
405}
406
407Error CompileUnit::assignTypeNamesRec(const DWARFDebugInfoEntry *DieEntry,
408 SyntheticTypeNameBuilder &NameBuilder) {
409 OrderedChildrenIndexAssigner ChildrenIndexAssigner(*this, DieEntry);
410 for (const DWARFDebugInfoEntry *CurChild = getFirstChildEntry(Die: DieEntry);
411 CurChild && CurChild->getAbbreviationDeclarationPtr();
412 CurChild = getSiblingEntry(Die: CurChild)) {
413 CompileUnit::DIEInfo &ChildInfo = getDIEInfo(Entry: CurChild);
414 if (!ChildInfo.needToPlaceInTypeTable())
415 continue;
416
417 assert(ChildInfo.getODRAvailable());
418 if (Error Err = NameBuilder.assignName(
419 InputUnitEntryPair: {this, CurChild},
420 ChildIndex: ChildrenIndexAssigner.getChildIndex(CU&: *this, ChildDieEntry: CurChild)))
421 return Err;
422
423 if (Error Err = assignTypeNamesRec(DieEntry: CurChild, NameBuilder))
424 return Err;
425 }
426
427 return Error::success();
428}
429
430void CompileUnit::updateDieRefPatchesWithClonedOffsets() {
431 if (std::optional<SectionDescriptor *> DebugInfoSection =
432 tryGetSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo)) {
433
434 (*DebugInfoSection)
435 ->ListDebugDieRefPatch.forEach(Handler: [&](DebugDieRefPatch &Patch) {
436 /// Replace stored DIE indexes with DIE output offsets.
437 Patch.RefDieIdxOrClonedOffset =
438 Patch.RefCU.getPointer()->getDieOutOffset(
439 Idx: Patch.RefDieIdxOrClonedOffset);
440 });
441
442 (*DebugInfoSection)
443 ->ListDebugULEB128DieRefPatch.forEach(
444 Handler: [&](DebugULEB128DieRefPatch &Patch) {
445 /// Replace stored DIE indexes with DIE output offsets.
446 Patch.RefDieIdxOrClonedOffset =
447 Patch.RefCU.getPointer()->getDieOutOffset(
448 Idx: Patch.RefDieIdxOrClonedOffset);
449 });
450
451 (*DebugInfoSection)
452 ->ListDebugDieModuleRefPatch.forEach(
453 Handler: [&](DebugDieModuleRefPatch &Patch) {
454 /// Replace stored DIE indexes with DIE output offsets.
455 Patch.RefDieIdxOrClonedOffset =
456 Patch.RefCU.getPointer()->getDieOutOffset(
457 Idx: Patch.RefDieIdxOrClonedOffset);
458 });
459 }
460
461 if (std::optional<SectionDescriptor *> DebugLocSection =
462 tryGetSectionDescriptor(SectionKind: DebugSectionKind::DebugLoc)) {
463 (*DebugLocSection)
464 ->ListDebugULEB128DieRefPatch.forEach(
465 Handler: [](DebugULEB128DieRefPatch &Patch) {
466 /// Replace stored DIE indexes with DIE output offsets.
467 Patch.RefDieIdxOrClonedOffset =
468 Patch.RefCU.getPointer()->getDieOutOffset(
469 Idx: Patch.RefDieIdxOrClonedOffset);
470 });
471 }
472
473 if (std::optional<SectionDescriptor *> DebugLocListsSection =
474 tryGetSectionDescriptor(SectionKind: DebugSectionKind::DebugLocLists)) {
475 (*DebugLocListsSection)
476 ->ListDebugULEB128DieRefPatch.forEach(
477 Handler: [](DebugULEB128DieRefPatch &Patch) {
478 /// Replace stored DIE indexes with DIE output offsets.
479 Patch.RefDieIdxOrClonedOffset =
480 Patch.RefCU.getPointer()->getDieOutOffset(
481 Idx: Patch.RefDieIdxOrClonedOffset);
482 });
483 }
484}
485
486std::optional<UnitEntryPairTy> CompileUnit::resolveDIEReference(
487 const DWARFFormValue &RefValue,
488 ResolveInterCUReferencesMode CanResolveInterCUReferences) {
489 CompileUnit *RefCU;
490 uint64_t RefDIEOffset;
491 if (std::optional<uint64_t> Offset = RefValue.getAsRelativeReference()) {
492 RefCU = this;
493 RefDIEOffset = RefValue.getUnit()->getOffset() + *Offset;
494 } else if (Offset = RefValue.getAsDebugInfoReference(); Offset) {
495 RefCU = getUnitFromOffset(*Offset);
496 RefDIEOffset = *Offset;
497 } else {
498 return std::nullopt;
499 }
500
501 if (RefCU == this) {
502 // Referenced DIE is in current compile unit.
503 if (std::optional<uint32_t> RefDieIdx =
504 getDIEIndexForOffset(Offset: RefDIEOffset)) {
505 const DWARFDebugInfoEntry *RefEntry = getDebugInfoEntry(Index: *RefDieIdx);
506 // In a file with broken references, an attribute might point to a
507 // NULL DIE. Treat that as a resolution failure so callers can warn.
508 if (RefEntry && RefEntry->getAbbreviationDeclarationPtr())
509 return UnitEntryPairTy{this, RefEntry};
510 }
511 } else if (RefCU && CanResolveInterCUReferences) {
512 // Referenced DIE is in other compile unit.
513
514 // Check whether DIEs are loaded for that compile unit.
515 enum Stage ReferredCUStage = RefCU->getStage();
516 if (ReferredCUStage < Stage::Loaded || ReferredCUStage > Stage::Cloned)
517 return UnitEntryPairTy{RefCU, nullptr};
518
519 if (std::optional<uint32_t> RefDieIdx =
520 RefCU->getDIEIndexForOffset(Offset: RefDIEOffset)) {
521 const DWARFDebugInfoEntry *RefEntry =
522 RefCU->getDebugInfoEntry(Index: *RefDieIdx);
523 if (RefEntry && RefEntry->getAbbreviationDeclarationPtr())
524 return UnitEntryPairTy{RefCU, RefEntry};
525 }
526 } else {
527 return UnitEntryPairTy{RefCU, nullptr};
528 }
529 return std::nullopt;
530}
531
532std::optional<UnitEntryPairTy> CompileUnit::resolveDIEReference(
533 const DWARFDebugInfoEntry *DieEntry, dwarf::Attribute Attr,
534 ResolveInterCUReferencesMode CanResolveInterCUReferences) {
535 if (std::optional<DWARFFormValue> AttrVal = find(Die: DieEntry, Attrs: Attr))
536 return resolveDIEReference(RefValue: *AttrVal, CanResolveInterCUReferences);
537
538 return std::nullopt;
539}
540
541void CompileUnit::addFunctionRange(uint64_t FuncLowPc, uint64_t FuncHighPc,
542 int64_t PcOffset) {
543 std::lock_guard<std::mutex> Guard(RangesMutex);
544
545 Ranges.insert(Range: {FuncLowPc, FuncHighPc}, Value: PcOffset);
546 if (LowPc)
547 LowPc = std::min(a: *LowPc, b: FuncLowPc + PcOffset);
548 else
549 LowPc = FuncLowPc + PcOffset;
550 this->HighPc = std::max(a: HighPc, b: FuncHighPc + PcOffset);
551}
552
553void CompileUnit::addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset) {
554 std::lock_guard<std::mutex> Guard(LabelsMutex);
555 Labels.insert(KV: {LabelLowPc, PcOffset});
556}
557
558Error CompileUnit::cloneAndEmitDebugLocations() {
559 if (getGlobalData().getOptions().UpdateIndexTablesOnly)
560 return Error::success();
561
562 if (getOrigUnit().getVersion() < 5) {
563 emitLocations(LocationSectionKind: DebugSectionKind::DebugLoc);
564 return Error::success();
565 }
566
567 emitLocations(LocationSectionKind: DebugSectionKind::DebugLocLists);
568 return Error::success();
569}
570
571void CompileUnit::emitLocations(DebugSectionKind LocationSectionKind) {
572 SectionDescriptor &DebugInfoSection =
573 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
574
575 if (!DebugInfoSection.ListDebugLocPatch.empty()) {
576 SectionDescriptor &OutLocationSection =
577 getOrCreateSectionDescriptor(SectionKind: LocationSectionKind);
578 DWARFUnit &OrigUnit = getOrigUnit();
579
580 uint64_t OffsetAfterUnitLength = emitLocListHeader(OutLocationSection);
581
582 DebugInfoSection.ListDebugLocPatch.forEach(Handler: [&](DebugLocPatch &Patch) {
583 // Get location expressions vector corresponding to the current
584 // attribute from the source DWARF.
585 uint64_t InputDebugLocSectionOffset = DebugInfoSection.getIntVal(
586 PatchOffset: Patch.PatchOffset,
587 Size: DebugInfoSection.getFormParams().getDwarfOffsetByteSize());
588 Expected<DWARFLocationExpressionsVector> OriginalLocations =
589 OrigUnit.findLoclistFromOffset(Offset: InputDebugLocSectionOffset);
590
591 if (!OriginalLocations) {
592 warn(Warning: OriginalLocations.takeError());
593 return;
594 }
595
596 LinkedLocationExpressionsVector LinkedLocationExpressions;
597 for (DWARFLocationExpression &CurExpression : *OriginalLocations) {
598 LinkedLocationExpressionsWithOffsetPatches LinkedExpression;
599
600 if (CurExpression.Range) {
601 // Relocate address range.
602 LinkedExpression.Expression.Range = {
603 CurExpression.Range->LowPC + Patch.AddrAdjustmentValue,
604 CurExpression.Range->HighPC + Patch.AddrAdjustmentValue};
605 }
606
607 DataExtractor Data(CurExpression.Expr, OrigUnit.isLittleEndian());
608
609 DWARFExpression InputExpression(Data, OrigUnit.getAddressByteSize(),
610 OrigUnit.getFormParams().Format);
611 cloneDieAttrExpression(InputExpression,
612 OutputExpression&: LinkedExpression.Expression.Expr,
613 Section&: OutLocationSection, VarAddressAdjustment: Patch.AddrAdjustmentValue,
614 PatchesOffsets&: LinkedExpression.Patches);
615
616 LinkedLocationExpressions.push_back(Elt: {LinkedExpression});
617 }
618
619 // Emit locations list table fragment corresponding to the CurLocAttr.
620 DebugInfoSection.apply(PatchOffset: Patch.PatchOffset, AttrForm: dwarf::DW_FORM_sec_offset,
621 Val: OutLocationSection.OS.tell());
622 emitLocListFragment(LinkedLocationExpression: LinkedLocationExpressions, OutLocationSection);
623 });
624
625 if (OffsetAfterUnitLength > 0) {
626 assert(OffsetAfterUnitLength -
627 OutLocationSection.getFormParams().getDwarfOffsetByteSize() <
628 OffsetAfterUnitLength);
629 OutLocationSection.apply(
630 PatchOffset: OffsetAfterUnitLength -
631 OutLocationSection.getFormParams().getDwarfOffsetByteSize(),
632 AttrForm: dwarf::DW_FORM_sec_offset,
633 Val: OutLocationSection.OS.tell() - OffsetAfterUnitLength);
634 }
635 }
636}
637
638/// Emit debug locations(.debug_loc, .debug_loclists) header.
639uint64_t CompileUnit::emitLocListHeader(SectionDescriptor &OutLocationSection) {
640 if (getOrigUnit().getVersion() < 5)
641 return 0;
642
643 // unit_length.
644 OutLocationSection.emitUnitLength(Length: 0xBADDEF);
645 uint64_t OffsetAfterUnitLength = OutLocationSection.OS.tell();
646
647 // Version.
648 OutLocationSection.emitIntVal(Val: 5, Size: 2);
649
650 // Address size.
651 OutLocationSection.emitIntVal(Val: OutLocationSection.getFormParams().AddrSize, Size: 1);
652
653 // Seg_size
654 OutLocationSection.emitIntVal(Val: 0, Size: 1);
655
656 // Offset entry count
657 OutLocationSection.emitIntVal(Val: 0, Size: 4);
658
659 return OffsetAfterUnitLength;
660}
661
662/// Emit debug locations(.debug_loc, .debug_loclists) fragment.
663uint64_t CompileUnit::emitLocListFragment(
664 const LinkedLocationExpressionsVector &LinkedLocationExpression,
665 SectionDescriptor &OutLocationSection) {
666 uint64_t OffsetBeforeLocationExpression = 0;
667
668 if (getOrigUnit().getVersion() < 5) {
669 uint64_t BaseAddress = 0;
670 if (std::optional<uint64_t> LowPC = getLowPc())
671 BaseAddress = *LowPC;
672
673 for (const LinkedLocationExpressionsWithOffsetPatches &LocExpression :
674 LinkedLocationExpression) {
675 if (LocExpression.Expression.Range) {
676 OutLocationSection.emitIntVal(
677 Val: LocExpression.Expression.Range->LowPC - BaseAddress,
678 Size: OutLocationSection.getFormParams().AddrSize);
679 OutLocationSection.emitIntVal(
680 Val: LocExpression.Expression.Range->HighPC - BaseAddress,
681 Size: OutLocationSection.getFormParams().AddrSize);
682 }
683
684 OutLocationSection.emitIntVal(Val: LocExpression.Expression.Expr.size(), Size: 2);
685 OffsetBeforeLocationExpression = OutLocationSection.OS.tell();
686 for (uint64_t *OffsetPtr : LocExpression.Patches)
687 *OffsetPtr += OffsetBeforeLocationExpression;
688
689 OutLocationSection.OS
690 << StringRef((const char *)LocExpression.Expression.Expr.data(),
691 LocExpression.Expression.Expr.size());
692 }
693
694 // Emit the terminator entry.
695 OutLocationSection.emitIntVal(Val: 0,
696 Size: OutLocationSection.getFormParams().AddrSize);
697 OutLocationSection.emitIntVal(Val: 0,
698 Size: OutLocationSection.getFormParams().AddrSize);
699 return OffsetBeforeLocationExpression;
700 }
701
702 std::optional<uint64_t> BaseAddress;
703 for (const LinkedLocationExpressionsWithOffsetPatches &LocExpression :
704 LinkedLocationExpression) {
705 if (LocExpression.Expression.Range) {
706 // Check whether base address is set. If it is not set yet
707 // then set current base address and emit base address selection entry.
708 if (!BaseAddress) {
709 BaseAddress = LocExpression.Expression.Range->LowPC;
710
711 // Emit base address.
712 OutLocationSection.emitIntVal(Val: dwarf::DW_LLE_base_addressx, Size: 1);
713 encodeULEB128(Value: DebugAddrIndexMap.getValueIndex(Value: *BaseAddress),
714 OS&: OutLocationSection.OS);
715 }
716
717 // Emit type of entry.
718 OutLocationSection.emitIntVal(Val: dwarf::DW_LLE_offset_pair, Size: 1);
719
720 // Emit start offset relative to base address.
721 encodeULEB128(Value: LocExpression.Expression.Range->LowPC - *BaseAddress,
722 OS&: OutLocationSection.OS);
723
724 // Emit end offset relative to base address.
725 encodeULEB128(Value: LocExpression.Expression.Range->HighPC - *BaseAddress,
726 OS&: OutLocationSection.OS);
727 } else
728 // Emit type of entry.
729 OutLocationSection.emitIntVal(Val: dwarf::DW_LLE_default_location, Size: 1);
730
731 encodeULEB128(Value: LocExpression.Expression.Expr.size(), OS&: OutLocationSection.OS);
732 OffsetBeforeLocationExpression = OutLocationSection.OS.tell();
733 for (uint64_t *OffsetPtr : LocExpression.Patches)
734 *OffsetPtr += OffsetBeforeLocationExpression;
735
736 OutLocationSection.OS << StringRef(
737 (const char *)LocExpression.Expression.Expr.data(),
738 LocExpression.Expression.Expr.size());
739 }
740
741 // Emit the terminator entry.
742 OutLocationSection.emitIntVal(Val: dwarf::DW_LLE_end_of_list, Size: 1);
743 return OffsetBeforeLocationExpression;
744}
745
746Error CompileUnit::emitDebugAddrSection() {
747 if (GlobalData.getOptions().UpdateIndexTablesOnly)
748 return Error::success();
749
750 if (getVersion() < 5)
751 return Error::success();
752
753 if (DebugAddrIndexMap.empty())
754 return Error::success();
755
756 SectionDescriptor &OutAddrSection =
757 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugAddr);
758
759 // Emit section header.
760
761 // Emit length.
762 OutAddrSection.emitUnitLength(Length: 0xBADDEF);
763 uint64_t OffsetAfterSectionLength = OutAddrSection.OS.tell();
764
765 // Emit version.
766 OutAddrSection.emitIntVal(Val: 5, Size: 2);
767
768 // Emit address size.
769 OutAddrSection.emitIntVal(Val: getFormParams().AddrSize, Size: 1);
770
771 // Emit segment size.
772 OutAddrSection.emitIntVal(Val: 0, Size: 1);
773
774 // Emit addresses.
775 for (uint64_t AddrValue : DebugAddrIndexMap.getValues())
776 OutAddrSection.emitIntVal(Val: AddrValue, Size: getFormParams().AddrSize);
777
778 // Patch section length.
779 OutAddrSection.apply(
780 PatchOffset: OffsetAfterSectionLength -
781 OutAddrSection.getFormParams().getDwarfOffsetByteSize(),
782 AttrForm: dwarf::DW_FORM_sec_offset,
783 Val: OutAddrSection.OS.tell() - OffsetAfterSectionLength);
784
785 return Error::success();
786}
787
788Error CompileUnit::cloneAndEmitRanges() {
789 if (getGlobalData().getOptions().UpdateIndexTablesOnly)
790 return Error::success();
791
792 // Build set of linked address ranges for unit function ranges.
793 AddressRanges LinkedFunctionRanges;
794 for (const AddressRangeValuePair &Range : getFunctionRanges())
795 LinkedFunctionRanges.insert(
796 Range: {Range.Range.start() + Range.Value, Range.Range.end() + Range.Value});
797
798 emitAranges(LinkedFunctionRanges);
799
800 if (getOrigUnit().getVersion() < 5) {
801 cloneAndEmitRangeList(RngSectionKind: DebugSectionKind::DebugRange, LinkedFunctionRanges);
802 return Error::success();
803 }
804
805 cloneAndEmitRangeList(RngSectionKind: DebugSectionKind::DebugRngLists, LinkedFunctionRanges);
806 return Error::success();
807}
808
809void CompileUnit::cloneAndEmitRangeList(DebugSectionKind RngSectionKind,
810 AddressRanges &LinkedFunctionRanges) {
811 SectionDescriptor &DebugInfoSection =
812 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
813 SectionDescriptor &OutRangeSection =
814 getOrCreateSectionDescriptor(SectionKind: RngSectionKind);
815
816 if (!DebugInfoSection.ListDebugRangePatch.empty()) {
817 std::optional<AddressRangeValuePair> CachedRange;
818 uint64_t OffsetAfterUnitLength = emitRangeListHeader(OutRangeSection);
819
820 DebugRangePatch *CompileUnitRangePtr = nullptr;
821 DebugInfoSection.ListDebugRangePatch.forEach(Handler: [&](DebugRangePatch &Patch) {
822 if (Patch.IsCompileUnitRanges) {
823 CompileUnitRangePtr = &Patch;
824 } else {
825 // Get ranges from the source DWARF corresponding to the current
826 // attribute.
827 AddressRanges LinkedRanges;
828 uint64_t InputDebugRangesSectionOffset = DebugInfoSection.getIntVal(
829 PatchOffset: Patch.PatchOffset,
830 Size: DebugInfoSection.getFormParams().getDwarfOffsetByteSize());
831 if (Expected<DWARFAddressRangesVector> InputRanges =
832 getOrigUnit().findRnglistFromOffset(
833 Offset: InputDebugRangesSectionOffset)) {
834 // Apply relocation adjustment.
835 for (const auto &Range : *InputRanges) {
836 if (!CachedRange || !CachedRange->Range.contains(Addr: Range.LowPC))
837 CachedRange =
838 getFunctionRanges().getRangeThatContains(Addr: Range.LowPC);
839
840 // All range entries should lie in the function range.
841 if (!CachedRange) {
842 warn(Warning: "inconsistent range data.");
843 continue;
844 }
845
846 // Store range for emiting.
847 LinkedRanges.insert(Range: {Range.LowPC + CachedRange->Value,
848 Range.HighPC + CachedRange->Value});
849 }
850 } else {
851 llvm::consumeError(Err: InputRanges.takeError());
852 warn(Warning: "invalid range list ignored.");
853 }
854
855 // Emit linked ranges.
856 DebugInfoSection.apply(PatchOffset: Patch.PatchOffset, AttrForm: dwarf::DW_FORM_sec_offset,
857 Val: OutRangeSection.OS.tell());
858 emitRangeListFragment(LinkedRanges, OutRangeSection);
859 }
860 });
861
862 if (CompileUnitRangePtr != nullptr) {
863 // Emit compile unit ranges last to be binary compatible with classic
864 // dsymutil.
865 DebugInfoSection.apply(PatchOffset: CompileUnitRangePtr->PatchOffset,
866 AttrForm: dwarf::DW_FORM_sec_offset,
867 Val: OutRangeSection.OS.tell());
868 emitRangeListFragment(LinkedRanges: LinkedFunctionRanges, OutRangeSection);
869 }
870
871 if (OffsetAfterUnitLength > 0) {
872 assert(OffsetAfterUnitLength -
873 OutRangeSection.getFormParams().getDwarfOffsetByteSize() <
874 OffsetAfterUnitLength);
875 OutRangeSection.apply(
876 PatchOffset: OffsetAfterUnitLength -
877 OutRangeSection.getFormParams().getDwarfOffsetByteSize(),
878 AttrForm: dwarf::DW_FORM_sec_offset,
879 Val: OutRangeSection.OS.tell() - OffsetAfterUnitLength);
880 }
881 }
882}
883
884uint64_t CompileUnit::emitRangeListHeader(SectionDescriptor &OutRangeSection) {
885 if (OutRangeSection.getFormParams().Version < 5)
886 return 0;
887
888 // unit_length.
889 OutRangeSection.emitUnitLength(Length: 0xBADDEF);
890 uint64_t OffsetAfterUnitLength = OutRangeSection.OS.tell();
891
892 // Version.
893 OutRangeSection.emitIntVal(Val: 5, Size: 2);
894
895 // Address size.
896 OutRangeSection.emitIntVal(Val: OutRangeSection.getFormParams().AddrSize, Size: 1);
897
898 // Seg_size
899 OutRangeSection.emitIntVal(Val: 0, Size: 1);
900
901 // Offset entry count
902 OutRangeSection.emitIntVal(Val: 0, Size: 4);
903
904 return OffsetAfterUnitLength;
905}
906
907void CompileUnit::emitRangeListFragment(const AddressRanges &LinkedRanges,
908 SectionDescriptor &OutRangeSection) {
909 if (OutRangeSection.getFormParams().Version < 5) {
910 // Emit ranges.
911 uint64_t BaseAddress = 0;
912 if (std::optional<uint64_t> LowPC = getLowPc())
913 BaseAddress = *LowPC;
914
915 for (const AddressRange &Range : LinkedRanges) {
916 OutRangeSection.emitIntVal(Val: Range.start() - BaseAddress,
917 Size: OutRangeSection.getFormParams().AddrSize);
918 OutRangeSection.emitIntVal(Val: Range.end() - BaseAddress,
919 Size: OutRangeSection.getFormParams().AddrSize);
920 }
921
922 // Add the terminator entry.
923 OutRangeSection.emitIntVal(Val: 0, Size: OutRangeSection.getFormParams().AddrSize);
924 OutRangeSection.emitIntVal(Val: 0, Size: OutRangeSection.getFormParams().AddrSize);
925 return;
926 }
927
928 std::optional<uint64_t> BaseAddress;
929 for (const AddressRange &Range : LinkedRanges) {
930 if (!BaseAddress) {
931 BaseAddress = Range.start();
932
933 // Emit base address.
934 OutRangeSection.emitIntVal(Val: dwarf::DW_RLE_base_addressx, Size: 1);
935 encodeULEB128(Value: getDebugAddrIndex(Addr: *BaseAddress), OS&: OutRangeSection.OS);
936 }
937
938 // Emit type of entry.
939 OutRangeSection.emitIntVal(Val: dwarf::DW_RLE_offset_pair, Size: 1);
940
941 // Emit start offset relative to base address.
942 encodeULEB128(Value: Range.start() - *BaseAddress, OS&: OutRangeSection.OS);
943
944 // Emit end offset relative to base address.
945 encodeULEB128(Value: Range.end() - *BaseAddress, OS&: OutRangeSection.OS);
946 }
947
948 // Emit the terminator entry.
949 OutRangeSection.emitIntVal(Val: dwarf::DW_RLE_end_of_list, Size: 1);
950}
951
952void CompileUnit::emitAranges(AddressRanges &LinkedFunctionRanges) {
953 if (LinkedFunctionRanges.empty())
954 return;
955
956 SectionDescriptor &DebugInfoSection =
957 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
958 SectionDescriptor &OutArangesSection =
959 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugARanges);
960
961 // Emit Header.
962 unsigned HeaderSize =
963 sizeof(int32_t) + // Size of contents (w/o this field
964 sizeof(int16_t) + // DWARF ARange version number
965 sizeof(int32_t) + // Offset of CU in the .debug_info section
966 sizeof(int8_t) + // Pointer Size (in bytes)
967 sizeof(int8_t); // Segment Size (in bytes)
968
969 unsigned TupleSize = OutArangesSection.getFormParams().AddrSize * 2;
970 unsigned Padding = offsetToAlignment(Value: HeaderSize, Alignment: Align(TupleSize));
971
972 OutArangesSection.emitOffset(Val: 0xBADDEF); // Aranges length
973 uint64_t OffsetAfterArangesLengthField = OutArangesSection.OS.tell();
974
975 OutArangesSection.emitIntVal(Val: dwarf::DW_ARANGES_VERSION, Size: 2); // Version number
976 OutArangesSection.notePatch(
977 Patch: DebugOffsetPatch{OutArangesSection.OS.tell(), &DebugInfoSection});
978 OutArangesSection.emitOffset(Val: 0xBADDEF); // Corresponding unit's offset
979 OutArangesSection.emitIntVal(Val: OutArangesSection.getFormParams().AddrSize,
980 Size: 1); // Address size
981 OutArangesSection.emitIntVal(Val: 0, Size: 1); // Segment size
982
983 for (size_t Idx = 0; Idx < Padding; Idx++)
984 OutArangesSection.emitIntVal(Val: 0, Size: 1); // Padding
985
986 // Emit linked ranges.
987 for (const AddressRange &Range : LinkedFunctionRanges) {
988 OutArangesSection.emitIntVal(Val: Range.start(),
989 Size: OutArangesSection.getFormParams().AddrSize);
990 OutArangesSection.emitIntVal(Val: Range.end() - Range.start(),
991 Size: OutArangesSection.getFormParams().AddrSize);
992 }
993
994 // Emit terminator.
995 OutArangesSection.emitIntVal(Val: 0, Size: OutArangesSection.getFormParams().AddrSize);
996 OutArangesSection.emitIntVal(Val: 0, Size: OutArangesSection.getFormParams().AddrSize);
997
998 uint64_t OffsetAfterArangesEnd = OutArangesSection.OS.tell();
999
1000 // Update Aranges lentgh.
1001 OutArangesSection.apply(
1002 PatchOffset: OffsetAfterArangesLengthField -
1003 OutArangesSection.getFormParams().getDwarfOffsetByteSize(),
1004 AttrForm: dwarf::DW_FORM_sec_offset,
1005 Val: OffsetAfterArangesEnd - OffsetAfterArangesLengthField);
1006}
1007
1008Error CompileUnit::cloneAndEmitDebugMacro() {
1009 if (getOutUnitDIE() == nullptr)
1010 return Error::success();
1011
1012 DWARFUnit &OrigUnit = getOrigUnit();
1013 DWARFDie OrigUnitDie = OrigUnit.getUnitDIE();
1014
1015 // Check for .debug_macro table.
1016 if (std::optional<uint64_t> MacroAttr =
1017 dwarf::toSectionOffset(V: OrigUnitDie.find(Attr: dwarf::DW_AT_macros))) {
1018 if (const DWARFDebugMacro *Table =
1019 getContainingFile().Dwarf->getDebugMacro()) {
1020 emitMacroTableImpl(MacroTable: Table, OffsetToMacroTable: *MacroAttr, hasDWARFv5Header: true);
1021 }
1022 }
1023
1024 // Check for .debug_macinfo table.
1025 if (std::optional<uint64_t> MacroAttr =
1026 dwarf::toSectionOffset(V: OrigUnitDie.find(Attr: dwarf::DW_AT_macro_info))) {
1027 if (const DWARFDebugMacro *Table =
1028 getContainingFile().Dwarf->getDebugMacinfo()) {
1029 emitMacroTableImpl(MacroTable: Table, OffsetToMacroTable: *MacroAttr, hasDWARFv5Header: false);
1030 }
1031 }
1032
1033 return Error::success();
1034}
1035
1036void CompileUnit::emitMacroTableImpl(const DWARFDebugMacro *MacroTable,
1037 uint64_t OffsetToMacroTable,
1038 bool hasDWARFv5Header) {
1039 SectionDescriptor &OutSection =
1040 hasDWARFv5Header
1041 ? getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugMacro)
1042 : getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugMacinfo);
1043
1044 bool DefAttributeIsReported = false;
1045 bool UndefAttributeIsReported = false;
1046 bool ImportAttributeIsReported = false;
1047
1048 for (const DWARFDebugMacro::MacroList &List : MacroTable->MacroLists) {
1049 if (OffsetToMacroTable == List.Offset) {
1050 // Write DWARFv5 header.
1051 if (hasDWARFv5Header) {
1052 // Write header version.
1053 OutSection.emitIntVal(Val: List.Header.Version, Size: sizeof(List.Header.Version));
1054
1055 uint8_t Flags = List.Header.Flags;
1056
1057 // Check for OPCODE_OPERANDS_TABLE.
1058 if (Flags &
1059 DWARFDebugMacro::HeaderFlagMask::MACRO_OPCODE_OPERANDS_TABLE) {
1060 Flags &=
1061 ~DWARFDebugMacro::HeaderFlagMask::MACRO_OPCODE_OPERANDS_TABLE;
1062 warn(Warning: "opcode_operands_table is not supported yet.");
1063 }
1064
1065 // Check for DEBUG_LINE_OFFSET.
1066 std::optional<uint64_t> StmtListOffset;
1067 if (Flags & DWARFDebugMacro::HeaderFlagMask::MACRO_DEBUG_LINE_OFFSET) {
1068 // Get offset to the line table from the cloned compile unit.
1069 for (auto &V : getOutUnitDIE()->values()) {
1070 if (V.getAttribute() == dwarf::DW_AT_stmt_list) {
1071 StmtListOffset = V.getDIEInteger().getValue();
1072 break;
1073 }
1074 }
1075
1076 if (!StmtListOffset) {
1077 Flags &= ~DWARFDebugMacro::HeaderFlagMask::MACRO_DEBUG_LINE_OFFSET;
1078 warn(Warning: "couldn`t find line table for macro table.");
1079 }
1080 }
1081
1082 // Write flags.
1083 OutSection.emitIntVal(Val: Flags, Size: sizeof(Flags));
1084
1085 // Write offset to line table.
1086 if (StmtListOffset) {
1087 OutSection.notePatch(Patch: DebugOffsetPatch{
1088 OutSection.OS.tell(),
1089 &getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugLine)});
1090 // TODO: check that List.Header.getOffsetByteSize() and
1091 // DebugOffsetPatch agree on size.
1092 OutSection.emitIntVal(Val: 0xBADDEF, Size: List.Header.getOffsetByteSize());
1093 }
1094 }
1095
1096 // Write macro entries.
1097 for (const DWARFDebugMacro::Entry &MacroEntry : List.Macros) {
1098 if (MacroEntry.Type == 0) {
1099 encodeULEB128(Value: MacroEntry.Type, OS&: OutSection.OS);
1100 continue;
1101 }
1102
1103 uint8_t MacroType = MacroEntry.Type;
1104 switch (MacroType) {
1105 default: {
1106 bool HasVendorSpecificExtension =
1107 (!hasDWARFv5Header &&
1108 MacroType == dwarf::DW_MACINFO_vendor_ext) ||
1109 (hasDWARFv5Header && (MacroType >= dwarf::DW_MACRO_lo_user &&
1110 MacroType <= dwarf::DW_MACRO_hi_user));
1111
1112 if (HasVendorSpecificExtension) {
1113 // Write macinfo type.
1114 OutSection.emitIntVal(Val: MacroType, Size: 1);
1115
1116 // Write vendor extension constant.
1117 encodeULEB128(Value: MacroEntry.ExtConstant, OS&: OutSection.OS);
1118
1119 // Write vendor extension string.
1120 OutSection.emitString(StringForm: dwarf::DW_FORM_string, StringVal: MacroEntry.ExtStr);
1121 } else
1122 warn(Warning: "unknown macro type. skip.");
1123 } break;
1124 // debug_macro and debug_macinfo share some common encodings.
1125 // DW_MACRO_define == DW_MACINFO_define
1126 // DW_MACRO_undef == DW_MACINFO_undef
1127 // DW_MACRO_start_file == DW_MACINFO_start_file
1128 // DW_MACRO_end_file == DW_MACINFO_end_file
1129 // For readibility/uniformity we are using DW_MACRO_*.
1130 case dwarf::DW_MACRO_define:
1131 case dwarf::DW_MACRO_undef: {
1132 // Write macinfo type.
1133 OutSection.emitIntVal(Val: MacroType, Size: 1);
1134
1135 // Write source line.
1136 encodeULEB128(Value: MacroEntry.Line, OS&: OutSection.OS);
1137
1138 // Write macro string.
1139 OutSection.emitString(StringForm: dwarf::DW_FORM_string, StringVal: MacroEntry.MacroStr);
1140 } break;
1141 case dwarf::DW_MACRO_define_strp:
1142 case dwarf::DW_MACRO_undef_strp:
1143 case dwarf::DW_MACRO_define_strx:
1144 case dwarf::DW_MACRO_undef_strx: {
1145 // DW_MACRO_*_strx forms are not supported currently.
1146 // Convert to *_strp.
1147 switch (MacroType) {
1148 case dwarf::DW_MACRO_define_strx: {
1149 MacroType = dwarf::DW_MACRO_define_strp;
1150 if (!DefAttributeIsReported) {
1151 warn(Warning: "DW_MACRO_define_strx unsupported yet. Convert to "
1152 "DW_MACRO_define_strp.");
1153 DefAttributeIsReported = true;
1154 }
1155 } break;
1156 case dwarf::DW_MACRO_undef_strx: {
1157 MacroType = dwarf::DW_MACRO_undef_strp;
1158 if (!UndefAttributeIsReported) {
1159 warn(Warning: "DW_MACRO_undef_strx unsupported yet. Convert to "
1160 "DW_MACRO_undef_strp.");
1161 UndefAttributeIsReported = true;
1162 }
1163 } break;
1164 default:
1165 // Nothing to do.
1166 break;
1167 }
1168
1169 // Write macinfo type.
1170 OutSection.emitIntVal(Val: MacroType, Size: 1);
1171
1172 // Write source line.
1173 encodeULEB128(Value: MacroEntry.Line, OS&: OutSection.OS);
1174
1175 // Write macro string.
1176 OutSection.emitString(StringForm: dwarf::DW_FORM_strp, StringVal: MacroEntry.MacroStr);
1177 break;
1178 }
1179 case dwarf::DW_MACRO_start_file: {
1180 // Write macinfo type.
1181 OutSection.emitIntVal(Val: MacroType, Size: 1);
1182 // Write source line.
1183 encodeULEB128(Value: MacroEntry.Line, OS&: OutSection.OS);
1184 // Write source file id.
1185 encodeULEB128(Value: MacroEntry.File, OS&: OutSection.OS);
1186 } break;
1187 case dwarf::DW_MACRO_end_file: {
1188 // Write macinfo type.
1189 OutSection.emitIntVal(Val: MacroType, Size: 1);
1190 } break;
1191 case dwarf::DW_MACRO_import:
1192 case dwarf::DW_MACRO_import_sup: {
1193 if (!ImportAttributeIsReported) {
1194 warn(Warning: "DW_MACRO_import and DW_MACRO_import_sup are unsupported "
1195 "yet. remove.");
1196 ImportAttributeIsReported = true;
1197 }
1198 } break;
1199 }
1200 }
1201
1202 return;
1203 }
1204 }
1205}
1206
1207void CompileUnit::cloneDieAttrExpression(
1208 const DWARFExpression &InputExpression,
1209 SmallVectorImpl<uint8_t> &OutputExpression, SectionDescriptor &Section,
1210 std::optional<int64_t> VarAddressAdjustment,
1211 OffsetsPtrVector &PatchesOffsets) {
1212 using Encoding = DWARFExpression::Operation::Encoding;
1213
1214 DWARFUnit &OrigUnit = getOrigUnit();
1215 uint8_t OrigAddressByteSize = OrigUnit.getAddressByteSize();
1216
1217 uint64_t OpOffset = 0;
1218 for (auto &Op : InputExpression) {
1219 if (Op.isError()) {
1220 // The operation could not be decoded, so neither it nor anything after
1221 // it can be located. Its end offset is the offset it started at, so the
1222 // slice copied below would be empty and the rest of the expression
1223 // would be silently dropped. Preserve the remaining bytes instead.
1224 warn(Warning: "cannot decode a DW_OP, copying the rest of the expression "
1225 "unmodified.");
1226 StringRef Bytes = InputExpression.getData().substr(Start: OpOffset);
1227 OutputExpression.append(in_start: Bytes.begin(), in_end: Bytes.end());
1228 return;
1229 }
1230 auto Desc = Op.getDescription();
1231 // DW_OP_const_type is variable-length and has 3
1232 // operands. Thus far we only support 2.
1233 if ((Desc.Op.size() == 2 && Desc.Op[0] == Encoding::BaseTypeRef) ||
1234 (Desc.Op.size() == 2 && Desc.Op[1] == Encoding::BaseTypeRef &&
1235 Desc.Op[0] != Encoding::Size1))
1236 warn(Warning: "unsupported DW_OP encoding.");
1237
1238 if ((Desc.Op.size() == 1 && Desc.Op[0] == Encoding::BaseTypeRef) ||
1239 (Desc.Op.size() == 2 && Desc.Op[1] == Encoding::BaseTypeRef &&
1240 Desc.Op[0] == Encoding::Size1)) {
1241 // This code assumes that the other non-typeref operand fits into 1 byte.
1242 assert(OpOffset < Op.getEndOffset());
1243 uint32_t ULEBsize = Op.getEndOffset() - OpOffset - 1;
1244 assert(ULEBsize <= 16);
1245
1246 // Copy over the operation.
1247 assert(!Op.getSubCode() && "SubOps not yet supported");
1248 OutputExpression.push_back(Elt: Op.getCode());
1249 uint64_t RefOffset;
1250 if (Desc.Op.size() == 1) {
1251 RefOffset = Op.getRawOperand(Idx: 0);
1252 } else {
1253 OutputExpression.push_back(Elt: Op.getRawOperand(Idx: 0));
1254 RefOffset = Op.getRawOperand(Idx: 1);
1255 }
1256 uint8_t ULEB[16];
1257 uint32_t Offset = 0;
1258 unsigned RealSize = 0;
1259 // Look up the base type. For DW_OP_convert, the operand may be 0 to
1260 // instead indicate the generic type. The same holds for
1261 // DW_OP_reinterpret, which is currently not supported.
1262 if (RefOffset > 0 || Op.getCode() != dwarf::DW_OP_convert) {
1263 RefOffset += OrigUnit.getOffset();
1264 uint32_t RefDieIdx = 0;
1265 if (std::optional<uint32_t> Idx =
1266 OrigUnit.getDIEIndexForOffset(Offset: RefOffset))
1267 RefDieIdx = *Idx;
1268
1269 // Use fixed size for ULEB128 data, since we need to update that size
1270 // later with the proper offsets. Use 5 for DWARF32, 9 for DWARF64.
1271 ULEBsize = getFormParams().getDwarfOffsetByteSize() + 1;
1272
1273 RealSize = encodeULEB128(Value: 0xBADDEF, p: ULEB, PadTo: ULEBsize);
1274
1275 Section.notePatchWithOffsetUpdate(
1276 Patch: DebugULEB128DieRefPatch(OutputExpression.size(), this, this,
1277 RefDieIdx),
1278 PatchesOffsetsList&: PatchesOffsets);
1279 } else
1280 RealSize = encodeULEB128(Value: Offset, p: ULEB, PadTo: ULEBsize);
1281
1282 if (RealSize > ULEBsize) {
1283 // Emit the generic type as a fallback.
1284 RealSize = encodeULEB128(Value: 0, p: ULEB, PadTo: ULEBsize);
1285 warn(Warning: "base type ref doesn't fit.");
1286 }
1287 assert(RealSize == ULEBsize && "padding failed");
1288 ArrayRef<uint8_t> ULEBbytes(ULEB, ULEBsize);
1289 OutputExpression.append(in_start: ULEBbytes.begin(), in_end: ULEBbytes.end());
1290 } else if (!getGlobalData().getOptions().UpdateIndexTablesOnly &&
1291 Op.getCode() == dwarf::DW_OP_addrx) {
1292 if (std::optional<object::SectionedAddress> SA =
1293 OrigUnit.getAddrOffsetSectionItem(Index: Op.getRawOperand(Idx: 0))) {
1294 // DWARFLinker does not use addrx forms since it generates relocated
1295 // addresses. Replace DW_OP_addrx with DW_OP_addr here.
1296 // Argument of DW_OP_addrx should be relocated here as it is not
1297 // processed by applyValidRelocs.
1298 OutputExpression.push_back(Elt: dwarf::DW_OP_addr);
1299 uint64_t LinkedAddress = SA->Address + VarAddressAdjustment.value_or(u: 0);
1300 if (getEndianness() != llvm::endianness::native)
1301 sys::swapByteOrder(Value&: LinkedAddress);
1302 ArrayRef<uint8_t> AddressBytes(
1303 reinterpret_cast<const uint8_t *>(&LinkedAddress),
1304 OrigAddressByteSize);
1305 OutputExpression.append(in_start: AddressBytes.begin(), in_end: AddressBytes.end());
1306 } else
1307 warn(Warning: "cann't read DW_OP_addrx operand.");
1308 } else if (!getGlobalData().getOptions().UpdateIndexTablesOnly &&
1309 Op.getCode() == dwarf::DW_OP_constx) {
1310 if (std::optional<object::SectionedAddress> SA =
1311 OrigUnit.getAddrOffsetSectionItem(Index: Op.getRawOperand(Idx: 0))) {
1312 // DWARFLinker does not use constx forms since it generates relocated
1313 // addresses. Replace DW_OP_constx with DW_OP_const[*]u here.
1314 // Argument of DW_OP_constx should be relocated here as it is not
1315 // processed by applyValidRelocs.
1316 std::optional<uint8_t> OutOperandKind;
1317 switch (OrigAddressByteSize) {
1318 case 2:
1319 OutOperandKind = dwarf::DW_OP_const2u;
1320 break;
1321 case 4:
1322 OutOperandKind = dwarf::DW_OP_const4u;
1323 break;
1324 case 8:
1325 OutOperandKind = dwarf::DW_OP_const8u;
1326 break;
1327 default:
1328 warn(
1329 Warning: formatv(Fmt: ("unsupported address size: {0}."), Vals&: OrigAddressByteSize));
1330 break;
1331 }
1332
1333 if (OutOperandKind) {
1334 OutputExpression.push_back(Elt: *OutOperandKind);
1335 uint64_t LinkedAddress =
1336 SA->Address + VarAddressAdjustment.value_or(u: 0);
1337 if (getEndianness() != llvm::endianness::native)
1338 sys::swapByteOrder(Value&: LinkedAddress);
1339 ArrayRef<uint8_t> AddressBytes(
1340 reinterpret_cast<const uint8_t *>(&LinkedAddress),
1341 OrigAddressByteSize);
1342 OutputExpression.append(in_start: AddressBytes.begin(), in_end: AddressBytes.end());
1343 }
1344 } else
1345 warn(Warning: "cann't read DW_OP_constx operand.");
1346 } else {
1347 // Copy over everything else unmodified.
1348 StringRef Bytes =
1349 InputExpression.getData().slice(Start: OpOffset, End: Op.getEndOffset());
1350 OutputExpression.append(in_start: Bytes.begin(), in_end: Bytes.end());
1351 }
1352 OpOffset = Op.getEndOffset();
1353 }
1354}
1355
1356Error CompileUnit::cloneAndEmit(
1357 std::optional<std::reference_wrapper<const Triple>> TargetTriple,
1358 TypeUnit *ArtificialTypeUnit) {
1359 BumpPtrAllocator Allocator;
1360
1361 DWARFDie OrigUnitDIE = getOrigUnit().getUnitDIE();
1362 if (!OrigUnitDIE.isValid())
1363 return Error::success();
1364
1365 TypeEntry *RootEntry = nullptr;
1366 if (ArtificialTypeUnit)
1367 RootEntry = ArtificialTypeUnit->getTypePool().getRoot();
1368
1369 // Clone input DIE entry recursively.
1370 std::pair<DIE *, TypeEntry *> OutCUDie = cloneDIE(
1371 InputDieEntry: OrigUnitDIE.getDebugInfoEntry(), ClonedParentTypeDIE: RootEntry, OutOffset: getDebugInfoHeaderSize(),
1372 FuncAddressAdjustment: std::nullopt, VarAddressAdjustment: std::nullopt, Allocator, ArtificialTypeUnit);
1373 setOutUnitDIE(OutCUDie.first);
1374
1375 if (!TargetTriple.has_value() || (OutCUDie.first == nullptr))
1376 return Error::success();
1377
1378 if (Error Err = cloneAndEmitLineTable(TargetTriple: (*TargetTriple).get()))
1379 return Err;
1380
1381 if (Error Err = cloneAndEmitDebugMacro())
1382 return Err;
1383
1384 getOrCreateSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
1385 if (Error Err = emitDebugInfo(TargetTriple: (*TargetTriple).get()))
1386 return Err;
1387
1388 // ASSUMPTION: .debug_info section should already be emitted at this point.
1389 // cloneAndEmitRanges & cloneAndEmitDebugLocations use .debug_info section
1390 // data.
1391
1392 if (Error Err = cloneAndEmitRanges())
1393 return Err;
1394
1395 if (Error Err = cloneAndEmitDebugLocations())
1396 return Err;
1397
1398 if (Error Err = emitDebugAddrSection())
1399 return Err;
1400
1401 // Generate Pub accelerator tables.
1402 if (llvm::is_contained(Range: GlobalData.getOptions().AccelTables,
1403 Element: DWARFLinker::AccelTableKind::Pub))
1404 emitPubAccelerators();
1405
1406 if (Error Err = emitDebugStringOffsetSection())
1407 return Err;
1408
1409 return emitAbbreviations();
1410}
1411
1412std::pair<DIE *, TypeEntry *> CompileUnit::cloneDIE(
1413 const DWARFDebugInfoEntry *InputDieEntry, TypeEntry *ClonedParentTypeDIE,
1414 uint64_t OutOffset, std::optional<int64_t> FuncAddressAdjustment,
1415 std::optional<int64_t> VarAddressAdjustment, BumpPtrAllocator &Allocator,
1416 TypeUnit *ArtificialTypeUnit, uint32_t SiblingOrdinal) {
1417 uint32_t InputDieIdx = getDIEIndex(Die: InputDieEntry);
1418 CompileUnit::DIEInfo &Info = getDIEInfo(Idx: InputDieIdx);
1419
1420 bool NeedToClonePlainDIE = Info.needToKeepInPlainDwarf();
1421 bool NeedToCloneTypeDIE =
1422 (InputDieEntry->getTag() != dwarf::DW_TAG_compile_unit) &&
1423 Info.needToPlaceInTypeTable();
1424 std::pair<DIE *, TypeEntry *> ClonedDIE;
1425
1426 DIEGenerator PlainDIEGenerator(Allocator, *this);
1427
1428 if (NeedToClonePlainDIE)
1429 // Create a cloned DIE which would be placed into the cloned version
1430 // of input compile unit.
1431 ClonedDIE.first = createPlainDIEandCloneAttributes(
1432 InputDieEntry, PlainDIEGenerator, OutOffset, FuncAddressAdjustment,
1433 VarAddressAdjustment);
1434 if (NeedToCloneTypeDIE) {
1435 // Create a cloned DIE which would be placed into the artificial type
1436 // unit.
1437 assert(ArtificialTypeUnit != nullptr);
1438 DIEGenerator TypeDIEGenerator(
1439 ArtificialTypeUnit->getTypePool().getThreadLocalAllocator(), *this);
1440
1441 ClonedDIE.second = createTypeDIEandCloneAttributes(
1442 InputDieEntry, TypeDIEGenerator, ClonedParentTypeDIE,
1443 ArtificialTypeUnit, SiblingOrdinal);
1444 }
1445 TypeEntry *TypeParentForChild =
1446 ClonedDIE.second ? ClonedDIE.second : ClonedParentTypeDIE;
1447
1448 bool HasPlainChildrenToClone =
1449 (ClonedDIE.first && Info.getKeepPlainChildren());
1450
1451 bool HasTypeChildrenToClone =
1452 ((ClonedDIE.second ||
1453 InputDieEntry->getTag() == dwarf::DW_TAG_compile_unit) &&
1454 Info.getKeepTypeChildren());
1455
1456 // Recursively clone children.
1457 if (HasPlainChildrenToClone || HasTypeChildrenToClone) {
1458 uint32_t ChildOrdinal = 0;
1459 for (const DWARFDebugInfoEntry *CurChild =
1460 getFirstChildEntry(Die: InputDieEntry);
1461 CurChild && CurChild->getAbbreviationDeclarationPtr();
1462 CurChild = getSiblingEntry(Die: CurChild), ++ChildOrdinal) {
1463 std::pair<DIE *, TypeEntry *> ClonedChild = cloneDIE(
1464 InputDieEntry: CurChild, ClonedParentTypeDIE: TypeParentForChild, OutOffset, FuncAddressAdjustment,
1465 VarAddressAdjustment, Allocator, ArtificialTypeUnit, SiblingOrdinal: ChildOrdinal);
1466
1467 if (ClonedChild.first) {
1468 OutOffset =
1469 ClonedChild.first->getOffset() + ClonedChild.first->getSize();
1470 PlainDIEGenerator.addChild(Child: ClonedChild.first);
1471 }
1472 }
1473 assert(ClonedDIE.first == nullptr ||
1474 HasPlainChildrenToClone == ClonedDIE.first->hasChildren());
1475
1476 // Account for the end of children marker.
1477 if (HasPlainChildrenToClone)
1478 OutOffset += sizeof(int8_t);
1479 }
1480
1481 // Update our size.
1482 if (ClonedDIE.first != nullptr)
1483 ClonedDIE.first->setSize(OutOffset - ClonedDIE.first->getOffset());
1484
1485 return ClonedDIE;
1486}
1487
1488DIE *CompileUnit::createPlainDIEandCloneAttributes(
1489 const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &PlainDIEGenerator,
1490 uint64_t &OutOffset, std::optional<int64_t> &FuncAddressAdjustment,
1491 std::optional<int64_t> &VarAddressAdjustment) {
1492 uint32_t InputDieIdx = getDIEIndex(Die: InputDieEntry);
1493 CompileUnit::DIEInfo &Info = getDIEInfo(Idx: InputDieIdx);
1494 DIE *ClonedDIE = nullptr;
1495 bool HasLocationExpressionAddress = false;
1496 if (InputDieEntry->getTag() == dwarf::DW_TAG_subprogram) {
1497 // Get relocation adjustment value for the current function.
1498 FuncAddressAdjustment =
1499 getContainingFile().Addresses->getSubprogramRelocAdjustment(
1500 DIE: getDIE(Die: InputDieEntry), Verbose: false);
1501 } else if (InputDieEntry->getTag() == dwarf::DW_TAG_label) {
1502 // Get relocation adjustment value for the current label.
1503 std::optional<uint64_t> lowPC =
1504 dwarf::toAddress(V: find(Die: InputDieEntry, Attrs: dwarf::DW_AT_low_pc));
1505 if (lowPC) {
1506 LabelMapTy::iterator It = Labels.find(Val: *lowPC);
1507 if (It != Labels.end())
1508 FuncAddressAdjustment = It->second;
1509 }
1510 } else if (InputDieEntry->getTag() == dwarf::DW_TAG_variable) {
1511 // Get relocation adjustment value for the current variable.
1512 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment =
1513 getContainingFile().Addresses->getVariableRelocAdjustment(
1514 DIE: getDIE(Die: InputDieEntry), Verbose: false);
1515
1516 HasLocationExpressionAddress = LocExprAddrAndRelocAdjustment.first;
1517 if (LocExprAddrAndRelocAdjustment.first &&
1518 LocExprAddrAndRelocAdjustment.second)
1519 VarAddressAdjustment = *LocExprAddrAndRelocAdjustment.second;
1520 }
1521
1522 ClonedDIE = PlainDIEGenerator.createDIE(DieTag: InputDieEntry->getTag(), OutOffset);
1523
1524 // Offset to the DIE would be used after output DIE tree is deleted.
1525 // Thus we need to remember DIE offset separately.
1526 rememberDieOutOffset(Idx: InputDieIdx, Offset: OutOffset);
1527
1528 // Clone Attributes.
1529 DIEAttributeCloner AttributesCloner(ClonedDIE, *this, this, InputDieEntry,
1530 PlainDIEGenerator, FuncAddressAdjustment,
1531 VarAddressAdjustment,
1532 HasLocationExpressionAddress);
1533 AttributesCloner.clone();
1534
1535 // Remember accelerator info.
1536 AcceleratorRecordsSaver AccelRecordsSaver(getGlobalData(), *this, this);
1537 AccelRecordsSaver.save(InputDieEntry, OutDIE: ClonedDIE, AttrInfo&: AttributesCloner.AttrInfo,
1538 TypeEntry: nullptr);
1539
1540 OutOffset =
1541 AttributesCloner.finalizeAbbreviations(HasChildrenToClone: Info.getKeepPlainChildren());
1542
1543 return ClonedDIE;
1544}
1545
1546/// Allocates output DIE for the specified \p TypeDescriptor.
1547DIE *CompileUnit::allocateTypeDie(TypeEntryBody *TypeDescriptor,
1548 DIEGenerator &TypeDIEGenerator,
1549 dwarf::Tag DieTag, bool IsDeclaration,
1550 bool IsParentDeclaration) {
1551 uint64_t Priority = getPriority();
1552
1553 // Lock-free pre-checks: skip the lock (and downstream cloning) when this CU
1554 // has no chance of winning the type slot.
1555 if (!IsDeclaration && !IsParentDeclaration) {
1556 // DiePriority only ever decreases, so a relaxed read that is <= our
1557 // priority means we definitely cannot win.
1558 if (Priority >= TypeDescriptor->DiePriority.load(m: std::memory_order_relaxed))
1559 return nullptr;
1560 } else {
1561 // Once a definition exists the declaration slot is dead.
1562 if (TypeDescriptor->Die.load(m: std::memory_order_relaxed))
1563 return nullptr;
1564 }
1565
1566 while (TypeDescriptor->Lock.test_and_set(m: std::memory_order_acquire))
1567 ; // spin
1568
1569 DIE *Result = nullptr;
1570
1571 if (!IsDeclaration && !IsParentDeclaration) {
1572 // Definition: lowest priority wins.
1573 if (Priority <
1574 TypeDescriptor->DiePriority.load(m: std::memory_order_relaxed)) {
1575 TypeDescriptor->DiePriority.store(i: Priority, m: std::memory_order_relaxed);
1576 Result = TypeDIEGenerator.createDIE(DieTag, OutOffset: 0);
1577 TypeDescriptor->Die.store(p: Result, m: std::memory_order_relaxed);
1578 }
1579 } else if (!TypeDescriptor->Die.load(m: std::memory_order_relaxed)) {
1580 // Declaration (no definition exists yet).
1581 // Prefer declarations whose parent is a definition (better context);
1582 // break ties by CU priority (lower wins).
1583 bool WorseParent =
1584 IsParentDeclaration && !TypeDescriptor->DeclarationParentIsDeclaration;
1585 bool BetterParent =
1586 !IsParentDeclaration && TypeDescriptor->DeclarationParentIsDeclaration;
1587 if (!WorseParent &&
1588 (BetterParent || Priority < TypeDescriptor->DeclarationDiePriority)) {
1589 TypeDescriptor->DeclarationDiePriority = Priority;
1590 TypeDescriptor->DeclarationParentIsDeclaration = IsParentDeclaration;
1591 Result = TypeDIEGenerator.createDIE(DieTag, OutOffset: 0);
1592 TypeDescriptor->DeclarationDie.store(p: Result, m: std::memory_order_relaxed);
1593 }
1594 }
1595
1596 TypeDescriptor->Lock.clear(m: std::memory_order_release);
1597 return Result;
1598}
1599
1600TypeEntry *CompileUnit::createTypeDIEandCloneAttributes(
1601 const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &TypeDIEGenerator,
1602 TypeEntry *ClonedParentTypeDIE, TypeUnit *ArtificialTypeUnit,
1603 uint32_t SiblingOrdinal) {
1604 assert(ArtificialTypeUnit != nullptr);
1605 uint32_t InputDieIdx = getDIEIndex(Die: InputDieEntry);
1606
1607 TypeEntry *Entry = getDieTypeEntry(Idx: InputDieIdx);
1608 assert(Entry != nullptr);
1609 assert(ClonedParentTypeDIE != nullptr);
1610 TypeEntryBody *EntryBody =
1611 ArtificialTypeUnit->getTypePool().getOrCreateTypeEntryBody(
1612 Entry, ParentEntry: ClonedParentTypeDIE);
1613 assert(EntryBody);
1614
1615 // Min-merge this child's ordinal in its parent's child list so children of
1616 // record-like types (class/struct/union/interface) sort in source order.
1617 // Min across CUs because Clang appends template instantiations lazily, so
1618 // positions vary between CUs.
1619 if (std::optional<uint32_t> ParentIdx = InputDieEntry->getParentIdx()) {
1620 dwarf::Tag ParentTag = getDebugInfoEntry(Index: *ParentIdx)->getTag();
1621 if (ParentTag == dwarf::DW_TAG_structure_type ||
1622 ParentTag == dwarf::DW_TAG_class_type ||
1623 ParentTag == dwarf::DW_TAG_union_type ||
1624 ParentTag == dwarf::DW_TAG_interface_type) {
1625 uint32_t Prev = EntryBody->SortKey.load(m: std::memory_order_relaxed);
1626 while (SiblingOrdinal < Prev &&
1627 !EntryBody->SortKey.compare_exchange_weak(
1628 i1&: Prev, i2: SiblingOrdinal, m1: std::memory_order_relaxed,
1629 m2: std::memory_order_relaxed))
1630 ;
1631 }
1632 }
1633
1634 bool IsDeclaration =
1635 dwarf::toUnsigned(V: find(Die: InputDieEntry, Attrs: dwarf::DW_AT_declaration), Default: 0);
1636
1637 bool ParentIsDeclaration = false;
1638 if (std::optional<uint32_t> ParentIdx = InputDieEntry->getParentIdx())
1639 ParentIsDeclaration =
1640 dwarf::toUnsigned(V: find(DieIdx: *ParentIdx, Attrs: dwarf::DW_AT_declaration), Default: 0);
1641
1642 DIE *OutDIE =
1643 allocateTypeDie(TypeDescriptor: EntryBody, TypeDIEGenerator, DieTag: InputDieEntry->getTag(),
1644 IsDeclaration, IsParentDeclaration: ParentIsDeclaration);
1645
1646 if (OutDIE != nullptr) {
1647 assert(ArtificialTypeUnit != nullptr);
1648 ArtificialTypeUnit->getSectionDescriptor(SectionKind: DebugSectionKind::DebugInfo);
1649
1650 DIEAttributeCloner AttributesCloner(OutDIE, *this, ArtificialTypeUnit,
1651 InputDieEntry, TypeDIEGenerator,
1652 std::nullopt, std::nullopt, false);
1653 AttributesCloner.clone();
1654
1655 // Remember accelerator info.
1656 AcceleratorRecordsSaver AccelRecordsSaver(getGlobalData(), *this,
1657 ArtificialTypeUnit);
1658 AccelRecordsSaver.save(InputDieEntry, OutDIE, AttrInfo&: AttributesCloner.AttrInfo,
1659 TypeEntry: Entry);
1660
1661 // if AttributesCloner.getOutOffset() == 0 then we need to add
1662 // 1 to avoid assertion for zero size. We will subtract it back later.
1663 OutDIE->setSize(AttributesCloner.getOutOffset() + 1);
1664 }
1665
1666 return Entry;
1667}
1668
1669Error CompileUnit::cloneAndEmitLineTable(const Triple &TargetTriple) {
1670 const DWARFDebugLine::LineTable *InputLineTable =
1671 getContainingFile().Dwarf->getLineTableForUnit(U: &getOrigUnit());
1672 if (InputLineTable == nullptr) {
1673 if (getOrigUnit().getUnitDIE().find(Attr: dwarf::DW_AT_stmt_list))
1674 warn(Warning: "cann't load line table.");
1675 return Error::success();
1676 }
1677
1678 DWARFDebugLine::LineTable OutLineTable;
1679
1680 // Set Line Table header.
1681 OutLineTable.Prologue = InputLineTable->Prologue;
1682 OutLineTable.Prologue.FormParams.AddrSize = getFormParams().AddrSize;
1683
1684 // Set Line Table Rows.
1685 if (getGlobalData().getOptions().UpdateIndexTablesOnly) {
1686 OutLineTable.Rows = InputLineTable->Rows;
1687 // If all the line table contains is a DW_LNE_end_sequence, clear the line
1688 // table rows, it will be inserted again in the DWARFStreamer.
1689 if (OutLineTable.Rows.size() == 1 && OutLineTable.Rows[0].EndSequence)
1690 OutLineTable.Rows.clear();
1691
1692 OutLineTable.Sequences = InputLineTable->Sequences;
1693 return emitDebugLine(TargetTriple, OutLineTable);
1694 }
1695
1696 SmallVector<uint64_t> OrigRowIndices;
1697 filterLineTableRows(InputLineTable: *InputLineTable, NewRows&: OutLineTable.Rows, NewRowIndices&: OrigRowIndices);
1698
1699 if (StmtSeqListAttributes.empty())
1700 return emitDebugLine(TargetTriple, OutLineTable);
1701
1702 // When DW_AT_LLVM_stmt_sequence attributes on this CU need their values
1703 // rewritten to point at the correct output sequence, have the emitter
1704 // record, for every row that originated from an input row, the byte
1705 // offset of the DW_LNE_set_address that opens the sequence containing
1706 // that row. Keying the map on the input row index (rather than on an
1707 // output address) avoids collisions when two input sequences would
1708 // relocate to the same output address — e.g. ICF folding two functions
1709 // from the same CU to a single output range.
1710 //
1711 // The patching below MUST run before emitDebugInfo() serializes the
1712 // DIE bytes and before OutputSections::applyPatches() runs for this
1713 // unit's .debug_info — it writes a local offset into the DIEValue that
1714 // the serializer then emits, and a DebugOffsetPatch (registered at DIE
1715 // cloning time) later adds the CU's .debug_line start offset to reach
1716 // the final absolute value.
1717 DenseMap<uint64_t, uint64_t> RowIndexToSeqStartOffset;
1718 if (Error Err = emitDebugLine(TargetTriple, OutLineTable, OrigRowIndices,
1719 RowIndexToSeqStartOffset: &RowIndexToSeqStartOffset))
1720 return Err;
1721
1722 DenseMap<uint64_t, uint64_t> SeqOffsetToFirstRowIndex =
1723 buildStmtSeqOffsetToFirstRowIndex(InputLineTable: *InputLineTable);
1724 patchStmtSeqAttributes(SeqOffsetToFirstRowIndex, RowIndexToSeqStartOffset);
1725 return Error::success();
1726}
1727
1728void CompileUnit::filterLineTableRows(
1729 const DWARFDebugLine::LineTable &InputLineTable,
1730 std::vector<DWARFDebugLine::Row> &NewRows,
1731 SmallVectorImpl<uint64_t> &NewRowIndices) {
1732 NewRows.reserve(n: InputLineTable.Rows.size());
1733 NewRowIndices.reserve(N: InputLineTable.Rows.size());
1734
1735 // Current sequence of rows being extracted, before being inserted
1736 // in NewRows. Kept in lockstep with SeqIndices, which stores the
1737 // originating input row index (or InvalidRowIndex for manufactured
1738 // end-of-range rows).
1739 std::vector<DWARFDebugLine::Row> Seq;
1740 SmallVector<uint64_t> SeqIndices;
1741 constexpr uint64_t InvalidRowIndex = std::numeric_limits<uint64_t>::max();
1742
1743 const auto &FunctionRanges = getFunctionRanges();
1744 std::optional<AddressRangeValuePair> CurrRange;
1745
1746 // FIXME: This logic is meant to generate exactly the same output as
1747 // Darwin's classic dsymutil. There is a nicer way to implement this
1748 // by simply putting all the relocated line info in NewRows and simply
1749 // sorting NewRows before passing it to emitLineTableForUnit. This
1750 // should be correct as sequences for a function should stay
1751 // together in the sorted output. There are a few corner cases that
1752 // look suspicious though, and that required to implement the logic
1753 // this way. Revisit that once initial validation is finished.
1754
1755 // Iterate over the object file line info and extract the sequences
1756 // that correspond to linked functions.
1757 for (auto [InputRowIdx, InputRow] : llvm::enumerate(First: InputLineTable.Rows)) {
1758 DWARFDebugLine::Row Row = InputRow;
1759 // Check whether we stepped out of the range. The range is
1760 // half-open, but consider accept the end address of the range if
1761 // it is marked as end_sequence in the input (because in that
1762 // case, the relocation offset is accurate and that entry won't
1763 // serve as the start of another function).
1764 if (!CurrRange || !CurrRange->Range.contains(Addr: Row.Address.Address)) {
1765 // We just stepped out of a known range. Insert a end_sequence
1766 // corresponding to the end of the range.
1767 uint64_t StopAddress =
1768 CurrRange ? CurrRange->Range.end() + CurrRange->Value : -1ULL;
1769 CurrRange = FunctionRanges.getRangeThatContains(Addr: Row.Address.Address);
1770 if (StopAddress != -1ULL && !Seq.empty()) {
1771 // Insert end sequence row with the computed end address, but
1772 // the same line as the previous one. This row is synthesised
1773 // and has no input counterpart, so tag it with
1774 // InvalidRowIndex.
1775 auto NextLine = Seq.back();
1776 NextLine.Address.Address = StopAddress;
1777 NextLine.EndSequence = 1;
1778 NextLine.PrologueEnd = 0;
1779 NextLine.BasicBlock = 0;
1780 NextLine.EpilogueBegin = 0;
1781 Seq.push_back(x: NextLine);
1782 SeqIndices.push_back(Elt: InvalidRowIndex);
1783 insertLineSequence(Seq, SeqIndices, Rows&: NewRows, RowIndices&: NewRowIndices);
1784 }
1785
1786 if (!CurrRange)
1787 continue;
1788 }
1789
1790 // Ignore empty sequences.
1791 if (Row.EndSequence && Seq.empty())
1792 continue;
1793
1794 // Relocate row address and add it to the current sequence.
1795 Row.Address.Address += CurrRange->Value;
1796 Seq.emplace_back(args&: Row);
1797 SeqIndices.push_back(Elt: InputRowIdx);
1798
1799 if (Row.EndSequence)
1800 insertLineSequence(Seq, SeqIndices, Rows&: NewRows, RowIndices&: NewRowIndices);
1801 }
1802}
1803
1804void CompileUnit::patchStmtSeqAttributes(
1805 const DenseMap<uint64_t, uint64_t> &SeqOffsetToFirstRowIndex,
1806 const DenseMap<uint64_t, uint64_t> &RowIndexToSeqStartOffset) {
1807 const uint64_t InvalidOffset = getFormParams().getDwarfMaxOffset();
1808
1809 for (const CompileUnit::StmtSeqPatch &Patch : StmtSeqListAttributes) {
1810 uint64_t NewStmtSeq = InvalidOffset;
1811 auto RowIt = SeqOffsetToFirstRowIndex.find(Val: Patch.InputStmtSeqOffset);
1812 if (RowIt != SeqOffsetToFirstRowIndex.end()) {
1813 auto OffIt = RowIndexToSeqStartOffset.find(Val: RowIt->second);
1814 if (OffIt != RowIndexToSeqStartOffset.end())
1815 NewStmtSeq = OffIt->second;
1816 }
1817 // When resolution fails, the InvalidOffset sentinel must survive the
1818 // combination-time section-offset fixup. The patch applier preserves
1819 // InvalidOffset as-is so consumers see a clean invalid marker rather
1820 // than StartOffset - 1.
1821 *Patch.Value = DIEValue(Patch.Value->getAttribute(), Patch.Value->getForm(),
1822 DIEInteger(NewStmtSeq));
1823 }
1824}
1825
1826DenseMap<uint64_t, uint64_t> CompileUnit::buildStmtSeqOffsetToFirstRowIndex(
1827 const DWARFDebugLine::LineTable &InputLineTable) const {
1828 // Collect this CU's stmt-sequence attribute values (input offsets),
1829 // sorted ascending and deduplicated.
1830 SmallVector<uint64_t> StmtAttrs;
1831 StmtAttrs.reserve(N: StmtSeqListAttributes.size());
1832 for (const StmtSeqPatch &Patch : StmtSeqListAttributes)
1833 StmtAttrs.push_back(Elt: Patch.InputStmtSeqOffset);
1834 llvm::sort(C&: StmtAttrs);
1835 StmtAttrs.erase(CS: llvm::unique(R&: StmtAttrs), CE: StmtAttrs.end());
1836
1837 DenseMap<uint64_t, uint64_t> Result;
1838 dwarf_linker::buildStmtSeqOffsetToFirstRowIndex(LT: InputLineTable, SortedStmtSeqOffsets: StmtAttrs,
1839 SeqOffToFirstRow&: Result);
1840 return Result;
1841}
1842
1843void CompileUnit::insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
1844 SmallVectorImpl<uint64_t> &SeqIndices,
1845 std::vector<DWARFDebugLine::Row> &Rows,
1846 SmallVectorImpl<uint64_t> &RowIndices) {
1847 assert(Seq.size() == SeqIndices.size() &&
1848 "Seq and SeqIndices must be kept in lockstep");
1849 assert(Rows.size() == RowIndices.size() &&
1850 "Rows and RowIndices must be kept in lockstep");
1851 if (Seq.empty())
1852 return;
1853
1854 auto ClearSeq = [&] {
1855 Seq.clear();
1856 SeqIndices.clear();
1857 };
1858
1859 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1860 llvm::append_range(C&: Rows, R&: Seq);
1861 llvm::append_range(C&: RowIndices, R&: SeqIndices);
1862 ClearSeq();
1863 return;
1864 }
1865
1866 object::SectionedAddress Front = Seq.front().Address;
1867 auto InsertPoint = partition_point(
1868 Range&: Rows, P: [=](const DWARFDebugLine::Row &O) { return O.Address < Front; });
1869 size_t InsertIdx = std::distance(first: Rows.begin(), last: InsertPoint);
1870
1871 // FIXME: this only removes the unneeded end_sequence if the
1872 // sequences have been inserted in order. Using a global sort like
1873 // described in cloneAndEmitLineTable() and delaying the end_sequene
1874 // elimination to DebugLineEmitter::emit() we can get rid of all of them.
1875 if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
1876 InsertPoint->EndSequence) {
1877 *InsertPoint = Seq.front();
1878 RowIndices[InsertIdx] = SeqIndices.front();
1879 Rows.insert(position: InsertPoint + 1, first: Seq.begin() + 1, last: Seq.end());
1880 RowIndices.insert(I: RowIndices.begin() + InsertIdx + 1,
1881 From: SeqIndices.begin() + 1, To: SeqIndices.end());
1882 } else {
1883 Rows.insert(position: InsertPoint, first: Seq.begin(), last: Seq.end());
1884 RowIndices.insert(I: RowIndices.begin() + InsertIdx, From: SeqIndices.begin(),
1885 To: SeqIndices.end());
1886 }
1887
1888 ClearSeq();
1889}
1890
1891#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1892LLVM_DUMP_METHOD void CompileUnit::DIEInfo::dump() {
1893 llvm::errs() << "{";
1894 llvm::errs() << " Placement: ";
1895 switch (getPlacement()) {
1896 case NotSet:
1897 llvm::errs() << "NotSet";
1898 break;
1899 case TypeTable:
1900 llvm::errs() << "TypeTable";
1901 break;
1902 case PlainDwarf:
1903 llvm::errs() << "PlainDwarf";
1904 break;
1905 case Both:
1906 llvm::errs() << "Both";
1907 break;
1908 }
1909
1910 llvm::errs() << " Keep: " << getKeep();
1911 llvm::errs() << " KeepPlainChildren: " << getKeepPlainChildren();
1912 llvm::errs() << " KeepTypeChildren: " << getKeepTypeChildren();
1913 llvm::errs() << " IsInMouduleScope: " << getIsInMouduleScope();
1914 llvm::errs() << " IsInFunctionScope: " << getIsInFunctionScope();
1915 llvm::errs() << " IsInAnonNamespaceScope: " << getIsInAnonNamespaceScope();
1916 llvm::errs() << " ODRAvailable: " << getODRAvailable();
1917 llvm::errs() << " TrackLiveness: " << getTrackLiveness();
1918 llvm::errs() << "}\n";
1919}
1920#endif // if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1921
1922std::optional<std::pair<StringRef, StringRef>>
1923CompileUnit::getDirAndFilenameFromLineTable(
1924 const DWARFFormValue &FileIdxValue) {
1925 uint64_t FileIdx;
1926 if (std::optional<uint64_t> Val = FileIdxValue.getAsUnsignedConstant())
1927 FileIdx = *Val;
1928 else if (std::optional<int64_t> Val = FileIdxValue.getAsSignedConstant())
1929 FileIdx = *Val;
1930 else if (std::optional<uint64_t> Val = FileIdxValue.getAsSectionOffset())
1931 FileIdx = *Val;
1932 else
1933 return std::nullopt;
1934
1935 return getDirAndFilenameFromLineTable(FileIdx);
1936}
1937
1938std::optional<std::pair<StringRef, StringRef>>
1939CompileUnit::getDirAndFilenameFromLineTable(uint64_t FileIdx) {
1940 std::lock_guard<std::mutex> Guard(FileNamesMutex);
1941 FileNamesCache::iterator FileData = FileNames.find(Val: FileIdx);
1942 if (FileData != FileNames.end())
1943 return {{StringRef(FileData->second->first),
1944 StringRef(FileData->second->second)}};
1945
1946 if (const DWARFDebugLine::LineTable *LineTable =
1947 getOrigUnit().getContext().getLineTableForUnit(U: &getOrigUnit())) {
1948 if (LineTable->hasFileAtIndex(FileIndex: FileIdx)) {
1949
1950 const llvm::DWARFDebugLine::FileNameEntry &Entry =
1951 LineTable->Prologue.getFileNameEntry(Index: FileIdx);
1952
1953 Expected<const char *> Name = Entry.Name.getAsCString();
1954 if (!Name) {
1955 warn(Warning: Name.takeError());
1956 return std::nullopt;
1957 }
1958
1959 std::string FileName = *Name;
1960 if (isPathAbsoluteOnWindowsOrPosix(Path: FileName)) {
1961 FileNamesCache::iterator FileData =
1962 FileNames
1963 .insert(KV: {FileIdx,
1964 std::make_unique<std::pair<std::string, std::string>>(
1965 args: std::string(""), args: std::move(FileName))})
1966 .first;
1967 return {{StringRef(FileData->second->first),
1968 StringRef(FileData->second->second)}};
1969 }
1970
1971 SmallString<256> FilePath;
1972 StringRef IncludeDir;
1973 // Be defensive about the contents of Entry.
1974 if (getVersion() >= 5) {
1975 // DirIdx 0 is the compilation directory, so don't include it for
1976 // relative names.
1977 if ((Entry.DirIdx != 0) &&
1978 Entry.DirIdx < LineTable->Prologue.IncludeDirectories.size()) {
1979 Expected<const char *> DirName =
1980 LineTable->Prologue.IncludeDirectories[Entry.DirIdx]
1981 .getAsCString();
1982 if (DirName)
1983 IncludeDir = *DirName;
1984 else {
1985 warn(Warning: DirName.takeError());
1986 return std::nullopt;
1987 }
1988 }
1989 } else {
1990 if (0 < Entry.DirIdx &&
1991 Entry.DirIdx <= LineTable->Prologue.IncludeDirectories.size()) {
1992 Expected<const char *> DirName =
1993 LineTable->Prologue.IncludeDirectories[Entry.DirIdx - 1]
1994 .getAsCString();
1995 if (DirName)
1996 IncludeDir = *DirName;
1997 else {
1998 warn(Warning: DirName.takeError());
1999 return std::nullopt;
2000 }
2001 }
2002 }
2003
2004 StringRef CompDir = getOrigUnit().getCompilationDir();
2005
2006 if (!CompDir.empty() && !isPathAbsoluteOnWindowsOrPosix(Path: IncludeDir)) {
2007 sys::path::append(path&: FilePath, style: sys::path::Style::native, a: CompDir);
2008 }
2009
2010 sys::path::append(path&: FilePath, style: sys::path::Style::native, a: IncludeDir);
2011
2012 FileNamesCache::iterator FileData =
2013 FileNames
2014 .insert(KV: {FileIdx,
2015 std::make_unique<std::pair<std::string, std::string>>(
2016 args: std::string(FilePath), args: std::move(FileName))})
2017 .first;
2018 return {{StringRef(FileData->second->first),
2019 StringRef(FileData->second->second)}};
2020 }
2021 }
2022
2023 return std::nullopt;
2024}
2025
2026#define MAX_REFERENCIES_DEPTH 1000
2027UnitEntryPairTy UnitEntryPairTy::getNamespaceOrigin() {
2028 UnitEntryPairTy CUDiePair(*this);
2029 std::optional<UnitEntryPairTy> RefDiePair;
2030 int refDepth = 0;
2031 do {
2032 RefDiePair = CUDiePair.CU->resolveDIEReference(
2033 DieEntry: CUDiePair.DieEntry, Attr: dwarf::DW_AT_extension,
2034 CanResolveInterCUReferences: ResolveInterCUReferencesMode::Resolve);
2035 if (!RefDiePair || !RefDiePair->DieEntry)
2036 return CUDiePair;
2037
2038 CUDiePair = *RefDiePair;
2039 } while (refDepth++ < MAX_REFERENCIES_DEPTH);
2040
2041 return CUDiePair;
2042}
2043
2044std::optional<UnitEntryPairTy> UnitEntryPairTy::getParent() {
2045 if (std::optional<uint32_t> ParentIdx = DieEntry->getParentIdx())
2046 return UnitEntryPairTy{CU, CU->getDebugInfoEntry(Index: *ParentIdx)};
2047
2048 return std::nullopt;
2049}
2050
2051CompileUnit::OutputUnitVariantPtr::OutputUnitVariantPtr(CompileUnit *U)
2052 : Ptr(U) {
2053 assert(U != nullptr);
2054}
2055
2056CompileUnit::OutputUnitVariantPtr::OutputUnitVariantPtr(TypeUnit *U) : Ptr(U) {
2057 assert(U != nullptr);
2058}
2059
2060DwarfUnit *CompileUnit::OutputUnitVariantPtr::operator->() {
2061 if (isCompileUnit())
2062 return getAsCompileUnit();
2063 else
2064 return getAsTypeUnit();
2065}
2066
2067bool CompileUnit::OutputUnitVariantPtr::isCompileUnit() {
2068 return isa<CompileUnit *>(Val: Ptr);
2069}
2070
2071bool CompileUnit::OutputUnitVariantPtr::isTypeUnit() {
2072 return isa<TypeUnit *>(Val: Ptr);
2073}
2074
2075CompileUnit *CompileUnit::OutputUnitVariantPtr::getAsCompileUnit() {
2076 return cast<CompileUnit *>(Val&: Ptr);
2077}
2078
2079TypeUnit *CompileUnit::OutputUnitVariantPtr::getAsTypeUnit() {
2080 return cast<TypeUnit *>(Val&: Ptr);
2081}
2082
2083bool CompileUnit::resolveDependenciesAndMarkLiveness(
2084 bool InterCUProcessingStarted, std::atomic<bool> &HasNewInterconnectedCUs) {
2085 if (!Dependencies)
2086 Dependencies.reset(p: new DependencyTracker(*this));
2087
2088 return Dependencies->resolveDependenciesAndMarkLiveness(
2089 InterCUProcessingStarted, HasNewInterconnectedCUs);
2090}
2091
2092bool CompileUnit::updateDependenciesCompleteness() {
2093 assert(Dependencies.get());
2094
2095 return Dependencies->updateDependenciesCompleteness();
2096}
2097
2098void CompileUnit::verifyDependencies() {
2099 assert(Dependencies.get());
2100
2101 Dependencies->verifyKeepChain();
2102}
2103
2104ArrayRef<dwarf::Attribute> dwarf_linker::parallel::getODRAttributes() {
2105 static dwarf::Attribute ODRAttributes[] = {
2106 dwarf::DW_AT_type, dwarf::DW_AT_specification,
2107 dwarf::DW_AT_abstract_origin, dwarf::DW_AT_import,
2108 dwarf::DW_AT_LLVM_alloc_type};
2109
2110 return ODRAttributes;
2111}
2112