1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
|
//===- DWARFLinkerCompileUnit.h ---------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_DWARFLINKER_PARALLEL_DWARFLINKERCOMPILEUNIT_H
#define LLVM_LIB_DWARFLINKER_PARALLEL_DWARFLINKERCOMPILEUNIT_H
#include "DWARFLinkerUnit.h"
#include "llvm/DWARFLinker/DWARFFile.h"
#include <optional>
namespace llvm {
namespace dwarf_linker {
namespace parallel {
using OffsetToUnitTy = function_ref<CompileUnit *(uint64_t Offset)>;
struct AttributesInfo;
class SyntheticTypeNameBuilder;
class DIEGenerator;
class TypeUnit;
class DependencyTracker;
class CompileUnit;
/// This is a helper structure which keeps a debug info entry
/// with it's containing compilation unit.
struct UnitEntryPairTy {
UnitEntryPairTy() = default;
UnitEntryPairTy(CompileUnit *CU, const DWARFDebugInfoEntry *DieEntry)
: CU(CU), DieEntry(DieEntry) {}
CompileUnit *CU = nullptr;
const DWARFDebugInfoEntry *DieEntry = nullptr;
UnitEntryPairTy getNamespaceOrigin();
std::optional<UnitEntryPairTy> getParent();
};
enum ResolveInterCUReferencesMode : bool {
Resolve = true,
AvoidResolving = false,
};
/// Stores all information related to a compile unit, be it in its original
/// instance of the object file or its brand new cloned and generated DIE tree.
/// NOTE: we need alignment of at least 8 bytes as we use
/// PointerIntPair<CompileUnit *, 3> in the DependencyTracker.h
class alignas(8) CompileUnit : public DwarfUnit {
public:
/// The stages of new compile unit processing.
enum class Stage : uint8_t {
/// Created, linked with input DWARF file.
CreatedNotLoaded = 0,
/// Input DWARF is loaded.
Loaded,
/// Input DWARF is analysed(DIEs pointing to the real code section are
/// discovered, type names are assigned if ODR is requested).
LivenessAnalysisDone,
/// Check if dependencies have incompatible placement.
/// If that is the case modify placement to be compatible.
UpdateDependenciesCompleteness,
/// Type names assigned to DIEs.
TypeNamesAssigned,
/// Output DWARF is generated.
Cloned,
/// Offsets inside patch records are updated.
PatchesUpdated,
/// Resources(Input DWARF, Output DWARF tree) are released.
Cleaned,
/// Compile Unit should be skipped
Skipped
};
CompileUnit(LinkingGlobalData &GlobalData, unsigned ID,
StringRef ClangModuleName, DWARFFile &File,
OffsetToUnitTy UnitFromOffset, dwarf::FormParams Format,
llvm::endianness Endianess);
CompileUnit(LinkingGlobalData &GlobalData, DWARFUnit &OrigUnit, unsigned ID,
StringRef ClangModuleName, DWARFFile &File,
OffsetToUnitTy UnitFromOffset, dwarf::FormParams Format,
llvm::endianness Endianess);
/// Returns stage of overall processing.
Stage getStage() const { return Stage; }
/// Set stage of overall processing.
void setStage(Stage Stage) { this->Stage = Stage; }
/// Loads unit line table.
void loadLineTable();
/// Returns name of the file for the \p FileIdx
/// from the unit`s line table.
StringEntry *getFileName(unsigned FileIdx, StringPool &GlobalStrings);
/// Returns DWARFFile containing this compile unit.
const DWARFFile &getContaingFile() const { return File; }
/// Load DIEs of input compilation unit. \returns true if input DIEs
/// successfully loaded.
bool loadInputDIEs();
/// Reset compile units data(results of liveness analysis, clonning)
/// if current stage greater than Stage::Loaded. We need to reset data
/// as we are going to repeat stages.
void maybeResetToLoadedStage();
/// Collect references to parseable Swift interfaces in imported
/// DW_TAG_module blocks.
void analyzeImportedModule(const DWARFDebugInfoEntry *DieEntry);
/// Navigate DWARF tree and set die properties.
void analyzeDWARFStructure() {
analyzeDWARFStructureRec(getUnitDIE().getDebugInfoEntry(), false);
}
/// Cleanup unneeded resources after compile unit is cloned.
void cleanupDataAfterClonning();
/// After cloning stage the output DIEs offsets are deallocated.
/// This method copies output offsets for referenced DIEs into DIEs patches.
void updateDieRefPatchesWithClonedOffsets();
/// Search for subprograms and variables referencing live code and discover
/// dependend DIEs. Mark live DIEs, set placement for DIEs.
bool resolveDependenciesAndMarkLiveness(
bool InterCUProcessingStarted,
std::atomic<bool> &HasNewInterconnectedCUs);
/// Check dependend DIEs for incompatible placement.
/// Make placement to be consistent.
bool updateDependenciesCompleteness();
/// Check DIEs to have a consistent marking(keep marking, placement marking).
void verifyDependencies();
/// Search for type entries and assign names.
Error assignTypeNames(TypePool &TypePoolRef);
/// Kinds of placement for the output die.
enum DieOutputPlacement : uint8_t {
NotSet = 0,
/// Corresponding DIE goes to the type table only.
TypeTable = 1,
/// Corresponding DIE goes to the plain dwarf only.
PlainDwarf = 2,
/// Corresponding DIE goes to type table and to plain dwarf.
Both = 3,
};
/// Information gathered about source DIEs.
struct DIEInfo {
DIEInfo() = default;
DIEInfo(const DIEInfo &Other) { Flags = Other.Flags.load(); }
DIEInfo &operator=(const DIEInfo &Other) {
Flags = Other.Flags.load();
return *this;
}
/// Data member keeping various flags.
std::atomic<uint16_t> Flags = {0};
/// \returns Placement kind for the corresponding die.
DieOutputPlacement getPlacement() const {
return DieOutputPlacement(Flags & 0x7);
}
/// Sets Placement kind for the corresponding die.
void setPlacement(DieOutputPlacement Placement) {
auto InputData = Flags.load();
while (!Flags.compare_exchange_weak(InputData,
((InputData & ~0x7) | Placement))) {
}
}
/// Unsets Placement kind for the corresponding die.
void unsetPlacement() {
auto InputData = Flags.load();
while (!Flags.compare_exchange_weak(InputData, (InputData & ~0x7))) {
}
}
/// Sets Placement kind for the corresponding die.
bool setPlacementIfUnset(DieOutputPlacement Placement) {
auto InputData = Flags.load();
if ((InputData & 0x7) == NotSet)
if (Flags.compare_exchange_weak(InputData, (InputData | Placement)))
return true;
return false;
}
#define SINGLE_FLAG_METHODS_SET(Name, Value) \
bool get##Name() const { return Flags & Value; } \
void set##Name() { \
auto InputData = Flags.load(); \
while (!Flags.compare_exchange_weak(InputData, InputData | Value)) { \
} \
} \
void unset##Name() { \
auto InputData = Flags.load(); \
while (!Flags.compare_exchange_weak(InputData, InputData & ~Value)) { \
} \
}
/// DIE is a part of the linked output.
SINGLE_FLAG_METHODS_SET(Keep, 0x08)
/// DIE has children which are part of the linked output.
SINGLE_FLAG_METHODS_SET(KeepPlainChildren, 0x10)
/// DIE has children which are part of the type table.
SINGLE_FLAG_METHODS_SET(KeepTypeChildren, 0x20)
/// DIE is in module scope.
SINGLE_FLAG_METHODS_SET(IsInMouduleScope, 0x40)
/// DIE is in function scope.
SINGLE_FLAG_METHODS_SET(IsInFunctionScope, 0x80)
/// DIE is in anonymous namespace scope.
SINGLE_FLAG_METHODS_SET(IsInAnonNamespaceScope, 0x100)
/// DIE is available for ODR type deduplication.
SINGLE_FLAG_METHODS_SET(ODRAvailable, 0x200)
/// Track liveness for the DIE.
SINGLE_FLAG_METHODS_SET(TrackLiveness, 0x400)
/// Track liveness for the DIE.
SINGLE_FLAG_METHODS_SET(HasAnAddress, 0x800)
void unsetFlagsWhichSetDuringLiveAnalysis() {
auto InputData = Flags.load();
while (!Flags.compare_exchange_weak(
InputData, InputData & ~(0x7 | 0x8 | 0x10 | 0x20))) {
}
}
/// Erase all flags.
void eraseData() { Flags = 0; }
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void dump();
#endif
bool needToPlaceInTypeTable() const {
return (getKeep() && (getPlacement() == CompileUnit::TypeTable ||
getPlacement() == CompileUnit::Both)) ||
getKeepTypeChildren();
}
bool needToKeepInPlainDwarf() const {
return (getKeep() && (getPlacement() == CompileUnit::PlainDwarf ||
getPlacement() == CompileUnit::Both)) ||
getKeepPlainChildren();
}
};
/// \defgroup Group of functions returning DIE info.
///
/// @{
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
DIEInfo &getDIEInfo(unsigned Idx) { return DieInfoArray[Idx]; }
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
const DIEInfo &getDIEInfo(unsigned Idx) const { return DieInfoArray[Idx]; }
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
DIEInfo &getDIEInfo(const DWARFDebugInfoEntry *Entry) {
return DieInfoArray[getOrigUnit().getDIEIndex(Entry)];
}
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
const DIEInfo &getDIEInfo(const DWARFDebugInfoEntry *Entry) const {
return DieInfoArray[getOrigUnit().getDIEIndex(Entry)];
}
/// \p Die
/// \returns PlainDieInfo descriptor.
DIEInfo &getDIEInfo(const DWARFDie &Die) {
return DieInfoArray[getOrigUnit().getDIEIndex(Die)];
}
/// \p Die
/// \returns PlainDieInfo descriptor.
const DIEInfo &getDIEInfo(const DWARFDie &Die) const {
return DieInfoArray[getOrigUnit().getDIEIndex(Die)];
}
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
uint64_t getDieOutOffset(uint32_t Idx) {
return reinterpret_cast<std::atomic<uint64_t> *>(&OutDieOffsetArray[Idx])
->load();
}
/// \p Idx index of the DIE.
/// \returns type entry.
TypeEntry *getDieTypeEntry(uint32_t Idx) {
return reinterpret_cast<std::atomic<TypeEntry *> *>(&TypeEntries[Idx])
->load();
}
/// \p InputDieEntry debug info entry.
/// \returns DieInfo descriptor.
uint64_t getDieOutOffset(const DWARFDebugInfoEntry *InputDieEntry) {
return reinterpret_cast<std::atomic<uint64_t> *>(
&OutDieOffsetArray[getOrigUnit().getDIEIndex(InputDieEntry)])
->load();
}
/// \p InputDieEntry debug info entry.
/// \returns type entry.
TypeEntry *getDieTypeEntry(const DWARFDebugInfoEntry *InputDieEntry) {
return reinterpret_cast<std::atomic<TypeEntry *> *>(
&TypeEntries[getOrigUnit().getDIEIndex(InputDieEntry)])
->load();
}
/// \p Idx index of the DIE.
/// \returns DieInfo descriptor.
void rememberDieOutOffset(uint32_t Idx, uint64_t Offset) {
reinterpret_cast<std::atomic<uint64_t> *>(&OutDieOffsetArray[Idx])
->store(Offset);
}
/// \p Idx index of the DIE.
/// \p Type entry.
void setDieTypeEntry(uint32_t Idx, TypeEntry *Entry) {
reinterpret_cast<std::atomic<TypeEntry *> *>(&TypeEntries[Idx])
->store(Entry);
}
/// \p InputDieEntry debug info entry.
/// \p Type entry.
void setDieTypeEntry(const DWARFDebugInfoEntry *InputDieEntry,
TypeEntry *Entry) {
reinterpret_cast<std::atomic<TypeEntry *> *>(
&TypeEntries[getOrigUnit().getDIEIndex(InputDieEntry)])
->store(Entry);
}
/// @}
/// Returns value of DW_AT_low_pc attribute.
std::optional<uint64_t> getLowPc() const { return LowPc; }
/// Returns value of DW_AT_high_pc attribute.
uint64_t getHighPc() const { return HighPc; }
/// Returns true if there is a label corresponding to the specified \p Addr.
bool hasLabelAt(uint64_t Addr) const { return Labels.count(Addr); }
/// Add the low_pc of a label that is relocated by applying
/// offset \p PCOffset.
void addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset);
/// Resolve the DIE attribute reference that has been extracted in \p
/// RefValue. The resulting DIE might be in another CompileUnit.
/// \returns referenced die and corresponding compilation unit.
/// compilation unit is null if reference could not be resolved.
std::optional<UnitEntryPairTy>
resolveDIEReference(const DWARFFormValue &RefValue,
ResolveInterCUReferencesMode CanResolveInterCUReferences);
std::optional<UnitEntryPairTy>
resolveDIEReference(const DWARFDebugInfoEntry *DieEntry,
dwarf::Attribute Attr,
ResolveInterCUReferencesMode CanResolveInterCUReferences);
/// @}
/// Add a function range [\p LowPC, \p HighPC) that is relocated by applying
/// offset \p PCOffset.
void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset);
/// Returns function ranges of this unit.
const RangesTy &getFunctionRanges() const { return Ranges; }
/// Clone and emit this compilation unit.
Error
cloneAndEmit(std::optional<std::reference_wrapper<const Triple>> TargetTriple,
TypeUnit *ArtificialTypeUnit);
/// Clone and emit debug locations(.debug_loc/.debug_loclists).
Error cloneAndEmitDebugLocations();
/// Clone and emit ranges.
Error cloneAndEmitRanges();
/// Clone and emit debug macros(.debug_macinfo/.debug_macro).
Error cloneAndEmitDebugMacro();
// Clone input DIE entry.
std::pair<DIE *, TypeEntry *>
cloneDIE(const DWARFDebugInfoEntry *InputDieEntry,
TypeEntry *ClonedParentTypeDIE, uint64_t OutOffset,
std::optional<int64_t> FuncAddressAdjustment,
std::optional<int64_t> VarAddressAdjustment,
BumpPtrAllocator &Allocator, TypeUnit *ArtificialTypeUnit);
// Clone and emit line table.
Error cloneAndEmitLineTable(const Triple &TargetTriple);
/// Clone attribute location axpression.
void cloneDieAttrExpression(const DWARFExpression &InputExpression,
SmallVectorImpl<uint8_t> &OutputExpression,
SectionDescriptor &Section,
std::optional<int64_t> VarAddressAdjustment,
OffsetsPtrVector &PatchesOffsets);
/// Returns index(inside .debug_addr) of an address.
uint64_t getDebugAddrIndex(uint64_t Addr) {
return DebugAddrIndexMap.getValueIndex(Addr);
}
/// Returns directory and file from the line table by index.
std::optional<std::pair<StringRef, StringRef>>
getDirAndFilenameFromLineTable(const DWARFFormValue &FileIdxValue);
/// Returns directory and file from the line table by index.
std::optional<std::pair<StringRef, StringRef>>
getDirAndFilenameFromLineTable(uint64_t FileIdx);
/// \defgroup Helper methods to access OrigUnit.
///
/// @{
/// Returns paired compile unit from input DWARF.
DWARFUnit &getOrigUnit() const {
assert(OrigUnit != nullptr);
return *OrigUnit;
}
const DWARFDebugInfoEntry *
getFirstChildEntry(const DWARFDebugInfoEntry *Die) const {
assert(OrigUnit != nullptr);
return OrigUnit->getFirstChildEntry(Die);
}
const DWARFDebugInfoEntry *
getSiblingEntry(const DWARFDebugInfoEntry *Die) const {
assert(OrigUnit != nullptr);
return OrigUnit->getSiblingEntry(Die);
}
DWARFDie getParent(const DWARFDebugInfoEntry *Die) {
assert(OrigUnit != nullptr);
return OrigUnit->getParent(Die);
}
DWARFDie getDIEAtIndex(unsigned Index) {
assert(OrigUnit != nullptr);
return OrigUnit->getDIEAtIndex(Index);
}
const DWARFDebugInfoEntry *getDebugInfoEntry(unsigned Index) const {
assert(OrigUnit != nullptr);
return OrigUnit->getDebugInfoEntry(Index);
}
DWARFDie getUnitDIE(bool ExtractUnitDIEOnly = true) {
assert(OrigUnit != nullptr);
return OrigUnit->getUnitDIE(ExtractUnitDIEOnly);
}
DWARFDie getDIE(const DWARFDebugInfoEntry *Die) {
assert(OrigUnit != nullptr);
return DWARFDie(OrigUnit, Die);
}
uint32_t getDIEIndex(const DWARFDebugInfoEntry *Die) const {
assert(OrigUnit != nullptr);
return OrigUnit->getDIEIndex(Die);
}
uint32_t getDIEIndex(const DWARFDie &Die) const {
assert(OrigUnit != nullptr);
return OrigUnit->getDIEIndex(Die);
}
std::optional<DWARFFormValue> find(uint32_t DieIdx,
ArrayRef<dwarf::Attribute> Attrs) const {
assert(OrigUnit != nullptr);
return find(OrigUnit->getDebugInfoEntry(DieIdx), Attrs);
}
std::optional<DWARFFormValue> find(const DWARFDebugInfoEntry *Die,
ArrayRef<dwarf::Attribute> Attrs) const {
if (!Die)
return std::nullopt;
auto AbbrevDecl = Die->getAbbreviationDeclarationPtr();
if (AbbrevDecl) {
for (auto Attr : Attrs) {
if (auto Value = AbbrevDecl->getAttributeValue(Die->getOffset(), Attr,
*OrigUnit))
return Value;
}
}
return std::nullopt;
}
std::optional<uint32_t> getDIEIndexForOffset(uint64_t Offset) {
return OrigUnit->getDIEIndexForOffset(Offset);
}
/// @}
/// \defgroup Methods used for reporting warnings and errors:
///
/// @{
void warn(const Twine &Warning, const DWARFDie *DIE = nullptr) {
GlobalData.warn(Warning, getUnitName(), DIE);
}
void warn(Error Warning, const DWARFDie *DIE = nullptr) {
handleAllErrors(std::move(Warning), [&](ErrorInfoBase &Info) {
GlobalData.warn(Info.message(), getUnitName(), DIE);
});
}
void warn(const Twine &Warning, const DWARFDebugInfoEntry *DieEntry) {
if (DieEntry != nullptr) {
DWARFDie DIE(&getOrigUnit(), DieEntry);
GlobalData.warn(Warning, getUnitName(), &DIE);
return;
}
GlobalData.warn(Warning, getUnitName());
}
void error(const Twine &Err, const DWARFDie *DIE = nullptr) {
GlobalData.warn(Err, getUnitName(), DIE);
}
void error(Error Err, const DWARFDie *DIE = nullptr) {
handleAllErrors(std::move(Err), [&](ErrorInfoBase &Info) {
GlobalData.error(Info.message(), getUnitName(), DIE);
});
}
/// @}
/// Save specified accelerator info \p Info.
void saveAcceleratorInfo(const DwarfUnit::AccelInfo &Info) {
AcceleratorRecords.add(Info);
}
/// Enumerates all units accelerator records.
void
forEachAcceleratorRecord(function_ref<void(AccelInfo &)> Handler) override {
AcceleratorRecords.forEach(Handler);
}
/// Output unit selector.
class OutputUnitVariantPtr {
public:
OutputUnitVariantPtr(CompileUnit *U);
OutputUnitVariantPtr(TypeUnit *U);
/// Accessor for common functionality.
DwarfUnit *operator->();
bool isCompileUnit();
bool isTypeUnit();
/// Returns CompileUnit if applicable.
CompileUnit *getAsCompileUnit();
/// Returns TypeUnit if applicable.
TypeUnit *getAsTypeUnit();
protected:
PointerUnion<CompileUnit *, TypeUnit *> Ptr;
};
private:
/// Navigate DWARF tree recursively and set die properties.
void analyzeDWARFStructureRec(const DWARFDebugInfoEntry *DieEntry,
bool IsODRUnavailableFunctionScope);
struct LinkedLocationExpressionsWithOffsetPatches {
DWARFLocationExpression Expression;
OffsetsPtrVector Patches;
};
using LinkedLocationExpressionsVector =
SmallVector<LinkedLocationExpressionsWithOffsetPatches>;
/// Emit debug locations.
void emitLocations(DebugSectionKind LocationSectionKind);
/// Emit location list header.
uint64_t emitLocListHeader(SectionDescriptor &OutLocationSection);
/// Emit location list fragment.
uint64_t emitLocListFragment(
const LinkedLocationExpressionsVector &LinkedLocationExpression,
SectionDescriptor &OutLocationSection);
/// Emit the .debug_addr section fragment for current unit.
Error emitDebugAddrSection();
/// Emit .debug_aranges.
void emitAranges(AddressRanges &LinkedFunctionRanges);
/// Clone and emit .debug_ranges/.debug_rnglists.
void cloneAndEmitRangeList(DebugSectionKind RngSectionKind,
AddressRanges &LinkedFunctionRanges);
/// Emit range list header.
uint64_t emitRangeListHeader(SectionDescriptor &OutRangeSection);
/// Emit range list fragment.
void emitRangeListFragment(const AddressRanges &LinkedRanges,
SectionDescriptor &OutRangeSection);
/// Insert the new line info sequence \p Seq into the current
/// set of already linked line info \p Rows.
void insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
std::vector<DWARFDebugLine::Row> &Rows);
/// Emits body for both macro sections.
void emitMacroTableImpl(const DWARFDebugMacro *MacroTable,
uint64_t OffsetToMacroTable, bool hasDWARFv5Header);
/// Creates DIE which would be placed into the "Plain" compile unit.
DIE *createPlainDIEandCloneAttributes(
const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &PlainDIEGenerator,
uint64_t &OutOffset, std::optional<int64_t> &FuncAddressAdjustment,
std::optional<int64_t> &VarAddressAdjustment);
/// Creates DIE which would be placed into the "Type" compile unit.
TypeEntry *createTypeDIEandCloneAttributes(
const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &TypeDIEGenerator,
TypeEntry *ClonedParentTypeDIE, TypeUnit *ArtificialTypeUnit);
/// Create output DIE inside specified \p TypeDescriptor.
DIE *allocateTypeDie(TypeEntryBody *TypeDescriptor,
DIEGenerator &TypeDIEGenerator, dwarf::Tag DieTag,
bool IsDeclaration, bool IsParentDeclaration);
/// Enumerate \p DieEntry children and assign names for them.
Error assignTypeNamesRec(const DWARFDebugInfoEntry *DieEntry,
SyntheticTypeNameBuilder &NameBuilder);
/// DWARFFile containing this compile unit.
DWARFFile &File;
/// Pointer to the paired compile unit from the input DWARF.
DWARFUnit *OrigUnit = nullptr;
/// The DW_AT_language of this unit.
std::optional<uint16_t> Language;
/// Line table for this unit.
const DWARFDebugLine::LineTable *LineTablePtr = nullptr;
/// Cached resolved paths from the line table.
/// The key is <UniqueUnitID, FileIdx>.
using ResolvedPathsMap = DenseMap<unsigned, StringEntry *>;
ResolvedPathsMap ResolvedFullPaths;
StringMap<StringEntry *> ResolvedParentPaths;
/// Maps an address into the index inside .debug_addr section.
IndexedValuesMap<uint64_t> DebugAddrIndexMap;
std::unique_ptr<DependencyTracker> Dependencies;
/// \defgroup Data Members accessed asinchronously.
///
/// @{
OffsetToUnitTy getUnitFromOffset;
std::optional<uint64_t> LowPc;
uint64_t HighPc = 0;
/// Flag indicating whether type de-duplication is forbidden.
bool NoODR = true;
/// The ranges in that map are the PC ranges for functions in this unit,
/// associated with the PC offset to apply to the addresses to get
/// the linked address.
RangesTy Ranges;
std::mutex RangesMutex;
/// The DW_AT_low_pc of each DW_TAG_label.
using LabelMapTy = SmallDenseMap<uint64_t, uint64_t, 1>;
LabelMapTy Labels;
std::mutex LabelsMutex;
/// This field keeps current stage of overall compile unit processing.
std::atomic<Stage> Stage;
/// DIE info indexed by DIE index.
SmallVector<DIEInfo> DieInfoArray;
SmallVector<uint64_t> OutDieOffsetArray;
SmallVector<TypeEntry *> TypeEntries;
/// The list of accelerator records for this unit.
ArrayList<AccelInfo> AcceleratorRecords;
/// @}
};
/// \returns list of attributes referencing type DIEs which might be
/// deduplicated.
/// Note: it does not include DW_AT_containing_type attribute to avoid
/// infinite recursion.
ArrayRef<dwarf::Attribute> getODRAttributes();
} // end of namespace parallel
} // end of namespace dwarf_linker
} // end of namespace llvm
#endif // LLVM_LIB_DWARFLINKER_PARALLEL_DWARFLINKERCOMPILEUNIT_H
|