33 AcceleratorRecords(&
GlobalData.getAllocator()) {
44 OrigUnit(&OrigUnit), getUnitFromOffset(UnitFromOffset),
46 AcceleratorRecords(&
GlobalData.getAllocator()) {
50 DWARFDie CUDie = OrigUnit.getUnitDIE();
56 if (!
GlobalData.getOptions().NoODR && Language.has_value() &&
68 LineTablePtr = File.Dwarf->getLineTableForUnit(&
getOrigUnit());
81 for (
DIEInfo &Info : DieInfoArray)
82 Info.unsetFlagsWhichSetDuringLiveAnalysis();
88 Dependencies.reset(
nullptr);
95 AcceleratorRecords.erase();
99 DebugAddrIndexMap.clear();
100 StmtSeqListAttributes.clear();
116 OutDieOffsetArray.resize(
getOrigUnit().getNumDIEs(), 0);
123 bool IsODRUnavailableFunctionScope) {
130 bool ChildIsODRUnavailableFunctionScope = IsODRUnavailableFunctionScope;
132 if (DieInfo.getIsInMouduleScope())
133 ChildInfo.setIsInMouduleScope();
135 if (DieInfo.getIsInFunctionScope())
136 ChildInfo.setIsInFunctionScope();
138 if (DieInfo.getIsInAnonNamespaceScope())
139 ChildInfo.setIsInAnonNamespaceScope();
141 switch (CurChild->getTag()) {
142 case dwarf::DW_TAG_module:
143 ChildInfo.setIsInMouduleScope();
144 if (DieEntry->
getTag() == dwarf::DW_TAG_compile_unit &&
149 case dwarf::DW_TAG_subprogram:
150 ChildInfo.setIsInFunctionScope();
151 if (!ChildIsODRUnavailableFunctionScope &&
152 !ChildInfo.getIsInMouduleScope()) {
154 {dwarf::DW_AT_abstract_origin, dwarf::DW_AT_specification}))
155 ChildIsODRUnavailableFunctionScope =
true;
158 case dwarf::DW_TAG_namespace: {
161 if (
find(CurChild, dwarf::DW_AT_extension))
164 if (!NamespaceEntry.
CU->
find(NamespaceEntry.
DieEntry, dwarf::DW_AT_name))
165 ChildInfo.setIsInAnonNamespaceScope();
172 ChildInfo.setTrackLiveness();
174 if ((!ChildInfo.getIsInAnonNamespaceScope() &&
175 !ChildIsODRUnavailableFunctionScope && !NoODR))
176 ChildInfo.setODRAvailable();
178 if (CurChild->hasChildren())
179 analyzeDWARFStructureRec(CurChild, ChildIsODRUnavailableFunctionScope);
186 if (LineTablePtr->hasFileAtIndex(FileIdx)) {
190 if (It == ResolvedFullPaths.end()) {
191 std::string OrigFileName;
192 bool FoundFileName = LineTablePtr->getFileNameByIndex(
197 assert(FoundFileName &&
"Must get file name from line table");
207 ResolvedParentPaths.find(ParentPath);
208 if (ParentIt == ResolvedParentPaths.end()) {
213 .insert({ParentPath, GlobalStrings.
insert(RealPath).first})
221 It = ResolvedFullPaths
222 .insert(std::make_pair(
223 FileIdx, GlobalStrings.
insert(ResolvedPath).first))
235 if (ObjFileIdx > std::numeric_limits<uint32_t>::max())
237 "object files exceeds UINT32_MAX");
238 if (LocalIdx > std::numeric_limits<uint32_t>::max())
240 "local index exceeds UINT32_MAX");
242 Priority = (ObjFileIdx << 32) | LocalIdx;
248 ResolvedFullPaths.shrink_and_clear();
249 ResolvedParentPaths.clear();
254 Dependencies.reset(
nullptr);
255 StmtSeqListAttributes.clear();
262 if (!Language || Language != dwarf::DW_LANG_Swift)
265 if (!
GlobalData.getOptions().ParseableSwiftInterfaces)
270 if (!Path.ends_with(
".swiftinterface"))
282 if (!DeveloperDir.
empty() && Path.starts_with(DeveloperDir))
286 if (std::optional<DWARFFormValue> Val =
find(DieEntry, dwarf::DW_AT_name)) {
304 PendingSwiftInterfaces.emplace_back(*
Name, ResolvedPath);
310 for (
auto &Pending : PendingSwiftInterfaces) {
311 auto &Entry = Map[Pending.ModuleName];
312 if (!Entry.empty() && Entry != Pending.ResolvedPath)
313 warn(
Twine(
"conflicting parseable interfaces for Swift Module ") +
314 Pending.ModuleName +
": " + Entry +
" and " + Pending.ResolvedPath +
316 Entry = Pending.ResolvedPath;
318 PendingSwiftInterfaces.clear();
339 assert(ChildInfo.getODRAvailable());
342 ChildrenIndexAssigner.getChildIndex(*
this, CurChild)))
345 if (
Error Err = assignTypeNamesRec(CurChild, NameBuilder))
353 if (std::optional<SectionDescriptor *> DebugInfoSection =
360 Patch.
RefCU.getPointer()->getDieOutOffset(
365 ->ListDebugULEB128DieRefPatch.forEach(
369 Patch.
RefCU.getPointer()->getDieOutOffset(
374 if (std::optional<SectionDescriptor *> DebugLocSection =
377 ->ListDebugULEB128DieRefPatch.forEach(
381 Patch.
RefCU.getPointer()->getDieOutOffset(
386 if (std::optional<SectionDescriptor *> DebugLocListsSection =
388 (*DebugLocListsSection)
389 ->ListDebugULEB128DieRefPatch.forEach(
393 Patch.
RefCU.getPointer()->getDieOutOffset(
408 RefCU = getUnitFromOffset(*
Offset);
416 if (std::optional<uint32_t> RefDieIdx =
424 }
else if (RefCU && CanResolveInterCUReferences) {
429 if (ReferredCUStage < Stage::Loaded || ReferredCUStage >
Stage::Cloned)
432 if (std::optional<uint32_t> RefDieIdx =
448 if (std::optional<DWARFFormValue> AttrVal =
find(DieEntry, Attr))
456 std::lock_guard<std::mutex> Guard(RangesMutex);
458 Ranges.
insert({FuncLowPc, FuncHighPc}, PcOffset);
460 LowPc = std::min(*LowPc, FuncLowPc + PcOffset);
462 LowPc = FuncLowPc + PcOffset;
463 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset);
467 std::lock_guard<std::mutex> Guard(LabelsMutex);
468 Labels.
insert({LabelLowPc, PcOffset});
488 if (!DebugInfoSection.ListDebugLocPatch.empty()) {
493 uint64_t OffsetAfterUnitLength = emitLocListHeader(OutLocationSection);
495 DebugInfoSection.ListDebugLocPatch.forEach([&](
DebugLocPatch &Patch) {
504 if (!OriginalLocations) {
509 LinkedLocationExpressionsVector LinkedLocationExpressions;
511 LinkedLocationExpressionsWithOffsetPatches LinkedExpression;
513 if (CurExpression.Range) {
515 LinkedExpression.Expression.Range = {
525 LinkedExpression.Expression.Expr,
527 LinkedExpression.Patches);
529 LinkedLocationExpressions.push_back({LinkedExpression});
534 OutLocationSection.
OS.
tell());
535 emitLocListFragment(LinkedLocationExpressions, OutLocationSection);
538 if (OffsetAfterUnitLength > 0) {
539 assert(OffsetAfterUnitLength -
541 OffsetAfterUnitLength);
542 OutLocationSection.
apply(
543 OffsetAfterUnitLength -
545 dwarf::DW_FORM_sec_offset,
546 OutLocationSection.
OS.
tell() - OffsetAfterUnitLength);
558 uint64_t OffsetAfterUnitLength = OutLocationSection.
OS.
tell();
572 return OffsetAfterUnitLength;
576uint64_t CompileUnit::emitLocListFragment(
577 const LinkedLocationExpressionsVector &LinkedLocationExpression,
579 uint64_t OffsetBeforeLocationExpression = 0;
582 uint64_t BaseAddress = 0;
583 if (std::optional<uint64_t> LowPC =
getLowPc())
584 BaseAddress = *LowPC;
586 for (
const LinkedLocationExpressionsWithOffsetPatches &LocExpression :
587 LinkedLocationExpression) {
588 if (LocExpression.Expression.Range) {
590 LocExpression.Expression.Range->LowPC - BaseAddress,
593 LocExpression.Expression.Range->HighPC - BaseAddress,
597 OutLocationSection.
emitIntVal(LocExpression.Expression.Expr.size(), 2);
598 OffsetBeforeLocationExpression = OutLocationSection.
OS.
tell();
599 for (uint64_t *OffsetPtr : LocExpression.Patches)
600 *OffsetPtr += OffsetBeforeLocationExpression;
602 OutLocationSection.
OS
603 << StringRef((
const char *)LocExpression.Expression.Expr.data(),
604 LocExpression.Expression.Expr.size());
612 return OffsetBeforeLocationExpression;
615 std::optional<uint64_t> BaseAddress;
616 for (
const LinkedLocationExpressionsWithOffsetPatches &LocExpression :
617 LinkedLocationExpression) {
618 if (LocExpression.Expression.Range) {
622 BaseAddress = LocExpression.Expression.Range->LowPC;
625 OutLocationSection.
emitIntVal(dwarf::DW_LLE_base_addressx, 1);
627 OutLocationSection.
OS);
631 OutLocationSection.
emitIntVal(dwarf::DW_LLE_offset_pair, 1);
634 encodeULEB128(LocExpression.Expression.Range->LowPC - *BaseAddress,
635 OutLocationSection.
OS);
638 encodeULEB128(LocExpression.Expression.Range->HighPC - *BaseAddress,
639 OutLocationSection.
OS);
642 OutLocationSection.
emitIntVal(dwarf::DW_LLE_default_location, 1);
644 encodeULEB128(LocExpression.Expression.Expr.size(), OutLocationSection.
OS);
645 OffsetBeforeLocationExpression = OutLocationSection.
OS.
tell();
646 for (uint64_t *OffsetPtr : LocExpression.Patches)
647 *OffsetPtr += OffsetBeforeLocationExpression;
649 OutLocationSection.
OS << StringRef(
650 (
const char *)LocExpression.Expression.Expr.data(),
651 LocExpression.Expression.Expr.size());
655 OutLocationSection.
emitIntVal(dwarf::DW_LLE_end_of_list, 1);
656 return OffsetBeforeLocationExpression;
659Error CompileUnit::emitDebugAddrSection() {
660 if (
GlobalData.getOptions().UpdateIndexTablesOnly)
666 if (DebugAddrIndexMap.empty())
669 SectionDescriptor &OutAddrSection =
676 uint64_t OffsetAfterSectionLength = OutAddrSection.
OS.
tell();
688 for (uint64_t AddrValue : DebugAddrIndexMap.getValues())
692 OutAddrSection.
apply(
693 OffsetAfterSectionLength -
695 dwarf::DW_FORM_sec_offset,
696 OutAddrSection.
OS.
tell() - OffsetAfterSectionLength);
708 LinkedFunctionRanges.
insert(
711 emitAranges(LinkedFunctionRanges);
729 if (!DebugInfoSection.ListDebugRangePatch.empty()) {
730 std::optional<AddressRangeValuePair> CachedRange;
731 uint64_t OffsetAfterUnitLength = emitRangeListHeader(OutRangeSection);
734 DebugInfoSection.ListDebugRangePatch.forEach([&](
DebugRangePatch &Patch) {
736 CompileUnitRangePtr = &Patch;
746 InputDebugRangesSectionOffset)) {
748 for (
const auto &
Range : *InputRanges) {
749 if (!CachedRange || !CachedRange->Range.contains(
Range.LowPC))
755 warn(
"inconsistent range data.");
760 LinkedRanges.
insert({
Range.LowPC + CachedRange->Value,
761 Range.HighPC + CachedRange->Value});
765 warn(
"invalid range list ignored.");
770 OutRangeSection.
OS.
tell());
771 emitRangeListFragment(LinkedRanges, OutRangeSection);
775 if (CompileUnitRangePtr !=
nullptr) {
779 dwarf::DW_FORM_sec_offset,
780 OutRangeSection.
OS.
tell());
781 emitRangeListFragment(LinkedFunctionRanges, OutRangeSection);
784 if (OffsetAfterUnitLength > 0) {
785 assert(OffsetAfterUnitLength -
787 OffsetAfterUnitLength);
788 OutRangeSection.
apply(
789 OffsetAfterUnitLength -
791 dwarf::DW_FORM_sec_offset,
792 OutRangeSection.
OS.
tell() - OffsetAfterUnitLength);
803 uint64_t OffsetAfterUnitLength = OutRangeSection.
OS.
tell();
817 return OffsetAfterUnitLength;
820void CompileUnit::emitRangeListFragment(
const AddressRanges &LinkedRanges,
824 uint64_t BaseAddress = 0;
825 if (std::optional<uint64_t> LowPC =
getLowPc())
826 BaseAddress = *LowPC;
828 for (
const AddressRange &
Range : LinkedRanges) {
841 std::optional<uint64_t> BaseAddress;
842 for (
const AddressRange &
Range : LinkedRanges) {
844 BaseAddress =
Range.start();
847 OutRangeSection.
emitIntVal(dwarf::DW_RLE_base_addressx, 1);
852 OutRangeSection.
emitIntVal(dwarf::DW_RLE_offset_pair, 1);
862 OutRangeSection.
emitIntVal(dwarf::DW_RLE_end_of_list, 1);
865void CompileUnit::emitAranges(AddressRanges &LinkedFunctionRanges) {
866 if (LinkedFunctionRanges.
empty())
869 SectionDescriptor &DebugInfoSection =
871 SectionDescriptor &OutArangesSection =
886 uint64_t OffsetAfterArangesLengthField = OutArangesSection.
OS.
tell();
889 OutArangesSection.notePatch(
890 DebugOffsetPatch{OutArangesSection.
OS.
tell(), &DebugInfoSection});
896 for (
size_t Idx = 0; Idx <
Padding; Idx++)
900 for (
const AddressRange &
Range : LinkedFunctionRanges) {
911 uint64_t OffsetAfterArangesEnd = OutArangesSection.
OS.
tell();
914 OutArangesSection.
apply(
915 OffsetAfterArangesLengthField -
917 dwarf::DW_FORM_sec_offset,
918 OffsetAfterArangesEnd - OffsetAfterArangesLengthField);
926 DWARFDie OrigUnitDie = OrigUnit.getUnitDIE();
929 if (std::optional<uint64_t> MacroAttr =
933 emitMacroTableImpl(Table, *MacroAttr,
true);
938 if (std::optional<uint64_t> MacroAttr =
942 emitMacroTableImpl(Table, *MacroAttr,
false);
951 bool hasDWARFv5Header) {
957 bool DefAttributeIsReported =
false;
958 bool UndefAttributeIsReported =
false;
959 bool ImportAttributeIsReported =
false;
961 for (
const DWARFDebugMacro::MacroList &
List : MacroTable->MacroLists) {
962 if (OffsetToMacroTable == List.Offset) {
964 if (hasDWARFv5Header) {
966 OutSection.emitIntVal(List.Header.Version, sizeof(List.Header.Version));
968 uint8_t Flags = List.Header.Flags;
972 DWARFDebugMacro::HeaderFlagMask::MACRO_OPCODE_OPERANDS_TABLE) {
974 ~DWARFDebugMacro::HeaderFlagMask::MACRO_OPCODE_OPERANDS_TABLE;
975 warn(
"opcode_operands_table is not supported yet.");
979 std::optional<uint64_t> StmtListOffset;
980 if (Flags & DWARFDebugMacro::HeaderFlagMask::MACRO_DEBUG_LINE_OFFSET) {
982 for (auto &V : getOutUnitDIE()->values()) {
983 if (V.getAttribute() == dwarf::DW_AT_stmt_list) {
984 StmtListOffset = V.getDIEInteger().getValue();
989 if (!StmtListOffset) {
990 Flags &= ~DWARFDebugMacro::HeaderFlagMask::MACRO_DEBUG_LINE_OFFSET;
991 warn(
"couldn`t find line table for macro table.");
996 OutSection.emitIntVal(Flags, sizeof(Flags));
999 if (StmtListOffset) {
1000 OutSection.notePatch(DebugOffsetPatch{
1001 OutSection.OS.tell(),
1002 &getOrCreateSectionDescriptor(DebugSectionKind::DebugLine)});
1005 OutSection.emitIntVal(0xBADDEF, List.Header.getOffsetByteSize());
1010 for (const DWARFDebugMacro::Entry &MacroEntry : List.Macros) {
1011 if (MacroEntry.Type == 0) {
1012 encodeULEB128(MacroEntry.Type, OutSection.OS);
1016 uint8_t MacroType = MacroEntry.Type;
1017 switch (MacroType) {
1019 bool HasVendorSpecificExtension =
1020 (!hasDWARFv5Header &&
1021 MacroType == dwarf::DW_MACINFO_vendor_ext) ||
1022 (hasDWARFv5Header && (MacroType >= dwarf::DW_MACRO_lo_user &&
1023 MacroType <= dwarf::DW_MACRO_hi_user));
1025 if (HasVendorSpecificExtension) {
1027 OutSection.emitIntVal(MacroType, 1);
1030 encodeULEB128(MacroEntry.ExtConstant, OutSection.OS);
1033 OutSection.emitString(dwarf::DW_FORM_string, MacroEntry.ExtStr);
1035 warn(
"unknown macro type. skip.");
1043 case dwarf::DW_MACRO_define:
1044 case dwarf::DW_MACRO_undef: {
1046 OutSection.emitIntVal(MacroType, 1);
1049 encodeULEB128(MacroEntry.Line, OutSection.OS);
1052 OutSection.emitString(dwarf::DW_FORM_string, MacroEntry.MacroStr);
1054 case dwarf::DW_MACRO_define_strp:
1055 case dwarf::DW_MACRO_undef_strp:
1056 case dwarf::DW_MACRO_define_strx:
1057 case dwarf::DW_MACRO_undef_strx: {
1060 switch (MacroType) {
1061 case dwarf::DW_MACRO_define_strx: {
1062 MacroType = dwarf::DW_MACRO_define_strp;
1063 if (!DefAttributeIsReported) {
1064 warn(
"DW_MACRO_define_strx unsupported yet. Convert to "
1065 "DW_MACRO_define_strp.");
1066 DefAttributeIsReported = true;
1069 case dwarf::DW_MACRO_undef_strx: {
1070 MacroType = dwarf::DW_MACRO_undef_strp;
1071 if (!UndefAttributeIsReported) {
1072 warn(
"DW_MACRO_undef_strx unsupported yet. Convert to "
1073 "DW_MACRO_undef_strp.");
1074 UndefAttributeIsReported = true;
1083 OutSection.emitIntVal(MacroType, 1);
1086 encodeULEB128(MacroEntry.Line, OutSection.OS);
1089 OutSection.emitString(dwarf::DW_FORM_strp, MacroEntry.MacroStr);
1092 case dwarf::DW_MACRO_start_file: {
1094 OutSection.emitIntVal(MacroType, 1);
1096 encodeULEB128(MacroEntry.Line, OutSection.OS);
1098 encodeULEB128(MacroEntry.File, OutSection.OS);
1100 case dwarf::DW_MACRO_end_file: {
1102 OutSection.emitIntVal(MacroType, 1);
1104 case dwarf::DW_MACRO_import:
1105 case dwarf::DW_MACRO_import_sup: {
1106 if (!ImportAttributeIsReported) {
1107 warn(
"DW_MACRO_import and DW_MACRO_import_sup are unsupported "
1109 ImportAttributeIsReported = true;
1123 std::optional<int64_t> VarAddressAdjustment,
1128 uint8_t OrigAddressByteSize = OrigUnit.getAddressByteSize();
1131 for (
auto &
Op : InputExpression) {
1132 auto Desc =
Op.getDescription();
1135 if ((
Desc.Op.size() == 2 &&
Desc.Op[0] == Encoding::BaseTypeRef) ||
1136 (
Desc.Op.size() == 2 &&
Desc.Op[1] == Encoding::BaseTypeRef &&
1137 Desc.Op[0] != Encoding::Size1))
1138 warn(
"unsupported DW_OP encoding.");
1140 if ((
Desc.Op.size() == 1 &&
Desc.Op[0] == Encoding::BaseTypeRef) ||
1141 (
Desc.Op.size() == 2 &&
Desc.Op[1] == Encoding::BaseTypeRef &&
1142 Desc.Op[0] == Encoding::Size1)) {
1144 assert(OpOffset <
Op.getEndOffset());
1145 uint32_t ULEBsize =
Op.getEndOffset() - OpOffset - 1;
1149 assert(!
Op.getSubCode() &&
"SubOps not yet supported");
1152 if (
Desc.Op.size() == 1) {
1153 RefOffset =
Op.getRawOperand(0);
1156 RefOffset =
Op.getRawOperand(1);
1160 unsigned RealSize = 0;
1164 if (RefOffset > 0 ||
Op.getCode() != dwarf::DW_OP_convert) {
1165 RefOffset += OrigUnit.getOffset();
1167 if (std::optional<uint32_t> Idx =
1168 OrigUnit.getDIEIndexForOffset(RefOffset))
1177 Section.notePatchWithOffsetUpdate(
1184 if (RealSize > ULEBsize) {
1187 warn(
"base type ref doesn't fit.");
1189 assert(RealSize == ULEBsize &&
"padding failed");
1192 }
else if (!
getGlobalData().getOptions().UpdateIndexTablesOnly &&
1193 Op.getCode() == dwarf::DW_OP_addrx) {
1194 if (std::optional<object::SectionedAddress> SA =
1195 OrigUnit.getAddrOffsetSectionItem(
Op.getRawOperand(0))) {
1200 OutputExpression.
push_back(dwarf::DW_OP_addr);
1201 uint64_t LinkedAddress = SA->Address + VarAddressAdjustment.value_or(0);
1205 reinterpret_cast<const uint8_t *
>(&LinkedAddress),
1206 OrigAddressByteSize);
1207 OutputExpression.
append(AddressBytes.
begin(), AddressBytes.
end());
1209 warn(
"cann't read DW_OP_addrx operand.");
1210 }
else if (!
getGlobalData().getOptions().UpdateIndexTablesOnly &&
1211 Op.getCode() == dwarf::DW_OP_constx) {
1212 if (std::optional<object::SectionedAddress> SA =
1213 OrigUnit.getAddrOffsetSectionItem(
Op.getRawOperand(0))) {
1218 std::optional<uint8_t> OutOperandKind;
1219 switch (OrigAddressByteSize) {
1221 OutOperandKind = dwarf::DW_OP_const2u;
1224 OutOperandKind = dwarf::DW_OP_const4u;
1227 OutOperandKind = dwarf::DW_OP_const8u;
1231 formatv((
"unsupported address size: {0}."), OrigAddressByteSize));
1235 if (OutOperandKind) {
1236 OutputExpression.
push_back(*OutOperandKind);
1238 SA->Address + VarAddressAdjustment.value_or(0);
1242 reinterpret_cast<const uint8_t *
>(&LinkedAddress),
1243 OrigAddressByteSize);
1244 OutputExpression.
append(AddressBytes.
begin(), AddressBytes.
end());
1247 warn(
"cann't read DW_OP_constx operand.");
1254 OpOffset =
Op.getEndOffset();
1259 std::optional<std::reference_wrapper<const Triple>> TargetTriple,
1268 if (ArtificialTypeUnit)
1272 std::pair<DIE *, TypeEntry *> OutCUDie =
cloneDIE(
1274 std::nullopt, std::nullopt, Allocator, ArtificialTypeUnit);
1277 if (!TargetTriple.has_value() || (OutCUDie.first ==
nullptr))
1300 if (
Error Err = emitDebugAddrSection())
1316 uint64_t OutOffset, std::optional<int64_t> FuncAddressAdjustment,
1322 bool NeedToClonePlainDIE = Info.needToKeepInPlainDwarf();
1323 bool NeedToCloneTypeDIE =
1324 (InputDieEntry->
getTag() != dwarf::DW_TAG_compile_unit) &&
1325 Info.needToPlaceInTypeTable();
1326 std::pair<DIE *, TypeEntry *> ClonedDIE;
1330 if (NeedToClonePlainDIE)
1333 ClonedDIE.first = createPlainDIEandCloneAttributes(
1334 InputDieEntry, PlainDIEGenerator, OutOffset, FuncAddressAdjustment,
1335 VarAddressAdjustment);
1336 if (NeedToCloneTypeDIE) {
1339 assert(ArtificialTypeUnit !=
nullptr);
1343 ClonedDIE.second = createTypeDIEandCloneAttributes(
1344 InputDieEntry, TypeDIEGenerator, ClonedParentTypeDIE,
1345 ArtificialTypeUnit, SiblingOrdinal);
1348 ClonedDIE.second ? ClonedDIE.second : ClonedParentTypeDIE;
1350 bool HasPlainChildrenToClone =
1351 (ClonedDIE.first && Info.getKeepPlainChildren());
1353 bool HasTypeChildrenToClone =
1354 ((ClonedDIE.second ||
1355 InputDieEntry->
getTag() == dwarf::DW_TAG_compile_unit) &&
1356 Info.getKeepTypeChildren());
1359 if (HasPlainChildrenToClone || HasTypeChildrenToClone) {
1365 std::pair<DIE *, TypeEntry *> ClonedChild =
cloneDIE(
1366 CurChild, TypeParentForChild, OutOffset, FuncAddressAdjustment,
1367 VarAddressAdjustment, Allocator, ArtificialTypeUnit, ChildOrdinal);
1369 if (ClonedChild.first) {
1371 ClonedChild.first->getOffset() + ClonedChild.first->getSize();
1372 PlainDIEGenerator.
addChild(ClonedChild.first);
1375 assert(ClonedDIE.first ==
nullptr ||
1376 HasPlainChildrenToClone == ClonedDIE.first->hasChildren());
1379 if (HasPlainChildrenToClone)
1380 OutOffset +=
sizeof(int8_t);
1384 if (ClonedDIE.first !=
nullptr)
1385 ClonedDIE.first->setSize(OutOffset - ClonedDIE.first->getOffset());
1390DIE *CompileUnit::createPlainDIEandCloneAttributes(
1392 uint64_t &OutOffset, std::optional<int64_t> &FuncAddressAdjustment,
1393 std::optional<int64_t> &VarAddressAdjustment) {
1396 DIE *ClonedDIE =
nullptr;
1397 bool HasLocationExpressionAddress =
false;
1398 if (InputDieEntry->
getTag() == dwarf::DW_TAG_subprogram) {
1400 FuncAddressAdjustment =
1402 getDIE(InputDieEntry),
false);
1403 }
else if (InputDieEntry->
getTag() == dwarf::DW_TAG_label) {
1405 std::optional<uint64_t> lowPC =
1409 if (It != Labels.
end())
1410 FuncAddressAdjustment = It->second;
1412 }
else if (InputDieEntry->
getTag() == dwarf::DW_TAG_variable) {
1414 std::pair<bool, std::optional<int64_t>> LocExprAddrAndRelocAdjustment =
1416 getDIE(InputDieEntry),
false);
1418 HasLocationExpressionAddress = LocExprAddrAndRelocAdjustment.first;
1419 if (LocExprAddrAndRelocAdjustment.first &&
1420 LocExprAddrAndRelocAdjustment.second)
1421 VarAddressAdjustment = *LocExprAddrAndRelocAdjustment.second;
1424 ClonedDIE = PlainDIEGenerator.
createDIE(InputDieEntry->
getTag(), OutOffset);
1431 DIEAttributeCloner AttributesCloner(ClonedDIE, *
this,
this, InputDieEntry,
1432 PlainDIEGenerator, FuncAddressAdjustment,
1433 VarAddressAdjustment,
1434 HasLocationExpressionAddress);
1435 AttributesCloner.clone();
1438 AcceleratorRecordsSaver AccelRecordsSaver(
getGlobalData(), *
this,
this);
1439 AccelRecordsSaver.save(InputDieEntry, ClonedDIE, AttributesCloner.AttrInfo,
1443 AttributesCloner.finalizeAbbreviations(
Info.getKeepPlainChildren());
1449DIE *CompileUnit::allocateTypeDie(
TypeEntryBody *TypeDescriptor,
1452 bool IsParentDeclaration) {
1457 if (!IsDeclaration && !IsParentDeclaration) {
1460 if (Priority >= TypeDescriptor->
DiePriority.load(std::memory_order_relaxed))
1464 if (TypeDescriptor->
Die.load(std::memory_order_relaxed))
1468 while (TypeDescriptor->
Lock.test_and_set(std::memory_order_acquire))
1473 if (!IsDeclaration && !IsParentDeclaration) {
1476 TypeDescriptor->
DiePriority.load(std::memory_order_relaxed)) {
1477 TypeDescriptor->
DiePriority.store(Priority, std::memory_order_relaxed);
1479 TypeDescriptor->
Die.store(Result, std::memory_order_relaxed);
1481 }
else if (!TypeDescriptor->
Die.load(std::memory_order_relaxed)) {
1490 (BetterParent || Priority < TypeDescriptor->DeclarationDiePriority)) {
1494 TypeDescriptor->
DeclarationDie.store(Result, std::memory_order_relaxed);
1498 TypeDescriptor->
Lock.clear(std::memory_order_release);
1502TypeEntry *CompileUnit::createTypeDIEandCloneAttributes(
1503 const DWARFDebugInfoEntry *InputDieEntry,
DIEGenerator &TypeDIEGenerator,
1505 uint32_t SiblingOrdinal) {
1506 assert(ArtificialTypeUnit !=
nullptr);
1507 uint32_t InputDieIdx =
getDIEIndex(InputDieEntry);
1510 assert(Entry !=
nullptr);
1511 assert(ClonedParentTypeDIE !=
nullptr);
1512 TypeEntryBody *EntryBody =
1514 Entry, ClonedParentTypeDIE);
1521 if (std::optional<uint32_t> ParentIdx = InputDieEntry->
getParentIdx()) {
1523 if (ParentTag == dwarf::DW_TAG_structure_type ||
1524 ParentTag == dwarf::DW_TAG_class_type ||
1525 ParentTag == dwarf::DW_TAG_union_type ||
1526 ParentTag == dwarf::DW_TAG_interface_type) {
1527 uint32_t Prev = EntryBody->
SortKey.load(std::memory_order_relaxed);
1528 while (SiblingOrdinal < Prev &&
1529 !EntryBody->
SortKey.compare_exchange_weak(
1530 Prev, SiblingOrdinal, std::memory_order_relaxed,
1531 std::memory_order_relaxed))
1536 bool IsDeclaration =
1539 bool ParentIsDeclaration =
false;
1540 if (std::optional<uint32_t> ParentIdx = InputDieEntry->
getParentIdx())
1541 ParentIsDeclaration =
1545 allocateTypeDie(EntryBody, TypeDIEGenerator, InputDieEntry->
getTag(),
1546 IsDeclaration, ParentIsDeclaration);
1548 if (OutDIE !=
nullptr) {
1549 assert(ArtificialTypeUnit !=
nullptr);
1552 DIEAttributeCloner AttributesCloner(OutDIE, *
this, ArtificialTypeUnit,
1553 InputDieEntry, TypeDIEGenerator,
1554 std::nullopt, std::nullopt,
false);
1555 AttributesCloner.clone();
1558 AcceleratorRecordsSaver AccelRecordsSaver(
getGlobalData(), *
this,
1559 ArtificialTypeUnit);
1560 AccelRecordsSaver.save(InputDieEntry, OutDIE, AttributesCloner.AttrInfo,
1565 OutDIE->
setSize(AttributesCloner.getOutOffset() + 1);
1574 if (InputLineTable ==
nullptr) {
1576 warn(
"cann't load line table.");
1588 OutLineTable.
Rows = InputLineTable->
Rows;
1591 if (OutLineTable.
Rows.size() == 1 && OutLineTable.
Rows[0].EndSequence)
1592 OutLineTable.
Rows.clear();
1599 filterLineTableRows(*InputLineTable, OutLineTable.
Rows, OrigRowIndices);
1601 if (StmtSeqListAttributes.empty())
1621 &RowIndexToSeqStartOffset))
1625 buildStmtSeqOffsetToFirstRowIndex(*InputLineTable);
1626 patchStmtSeqAttributes(SeqOffsetToFirstRowIndex, RowIndexToSeqStartOffset);
1630void CompileUnit::filterLineTableRows(
1632 std::vector<DWARFDebugLine::Row> &NewRows,
1634 NewRows.reserve(InputLineTable.
Rows.size());
1635 NewRowIndices.
reserve(InputLineTable.
Rows.size());
1641 std::vector<DWARFDebugLine::Row> Seq;
1643 constexpr uint64_t InvalidRowIndex = std::numeric_limits<uint64_t>::max();
1646 std::optional<AddressRangeValuePair> CurrRange;
1666 if (!CurrRange || !CurrRange->Range.contains(Row.Address.Address)) {
1670 CurrRange ? CurrRange->Range.end() + CurrRange->Value : -1ULL;
1671 CurrRange = FunctionRanges.getRangeThatContains(Row.Address.Address);
1672 if (StopAddress != -1ULL && !Seq.empty()) {
1677 auto NextLine = Seq.back();
1678 NextLine.Address.Address = StopAddress;
1679 NextLine.EndSequence = 1;
1680 NextLine.PrologueEnd = 0;
1681 NextLine.BasicBlock = 0;
1682 NextLine.EpilogueBegin = 0;
1683 Seq.push_back(NextLine);
1693 if (Row.EndSequence && Seq.empty())
1698 Seq.emplace_back(Row);
1701 if (Row.EndSequence)
1706void CompileUnit::patchStmtSeqAttributes(
1707 const DenseMap<uint64_t, uint64_t> &SeqOffsetToFirstRowIndex,
1708 const DenseMap<uint64_t, uint64_t> &RowIndexToSeqStartOffset) {
1711 for (
const CompileUnit::StmtSeqPatch &Patch : StmtSeqListAttributes) {
1712 uint64_t NewStmtSeq = InvalidOffset;
1713 auto RowIt = SeqOffsetToFirstRowIndex.
find(Patch.InputStmtSeqOffset);
1714 if (RowIt != SeqOffsetToFirstRowIndex.
end()) {
1715 auto OffIt = RowIndexToSeqStartOffset.
find(RowIt->second);
1716 if (OffIt != RowIndexToSeqStartOffset.
end())
1717 NewStmtSeq = OffIt->second;
1723 *Patch.Value = DIEValue(Patch.Value->getAttribute(), Patch.Value->getForm(),
1724 DIEInteger(NewStmtSeq));
1728DenseMap<uint64_t, uint64_t> CompileUnit::buildStmtSeqOffsetToFirstRowIndex(
1729 const DWARFDebugLine::LineTable &InputLineTable)
const {
1732 SmallVector<uint64_t> StmtAttrs;
1733 StmtAttrs.
reserve(StmtSeqListAttributes.size());
1734 for (
const StmtSeqPatch &Patch : StmtSeqListAttributes)
1735 StmtAttrs.
push_back(Patch.InputStmtSeqOffset);
1739 DenseMap<uint64_t, uint64_t>
Result;
1745void CompileUnit::insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
1746 SmallVectorImpl<uint64_t> &SeqIndices,
1747 std::vector<DWARFDebugLine::Row> &Rows,
1748 SmallVectorImpl<uint64_t> &RowIndices) {
1750 "Seq and SeqIndices must be kept in lockstep");
1752 "Rows and RowIndices must be kept in lockstep");
1756 auto ClearSeq = [&] {
1761 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1768 object::SectionedAddress Front = Seq.front().Address;
1770 Rows, [=](
const DWARFDebugLine::Row &O) {
return O.Address < Front; });
1771 size_t InsertIdx = std::distance(Rows.begin(), InsertPoint);
1777 if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
1778 InsertPoint->EndSequence) {
1779 *InsertPoint = Seq.front();
1780 RowIndices[InsertIdx] = SeqIndices.
front();
1781 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
1782 RowIndices.
insert(RowIndices.
begin() + InsertIdx + 1,
1783 SeqIndices.
begin() + 1, SeqIndices.
end());
1785 Rows.insert(InsertPoint, Seq.begin(), Seq.end());
1793#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1813 llvm::errs() <<
" KeepPlainChildren: " << getKeepPlainChildren();
1814 llvm::errs() <<
" KeepTypeChildren: " << getKeepTypeChildren();
1815 llvm::errs() <<
" IsInMouduleScope: " << getIsInMouduleScope();
1816 llvm::errs() <<
" IsInFunctionScope: " << getIsInFunctionScope();
1817 llvm::errs() <<
" IsInAnonNamespaceScope: " << getIsInAnonNamespaceScope();
1818 llvm::errs() <<
" ODRAvailable: " << getODRAvailable();
1819 llvm::errs() <<
" TrackLiveness: " << getTrackLiveness();
1824std::optional<std::pair<StringRef, StringRef>>
1835 return std::nullopt;
1840std::optional<std::pair<StringRef, StringRef>>
1842 FileNamesCache::iterator FileData =
FileNames.find(FileIdx);
1844 return std::make_pair(
StringRef(FileData->second.first),
1849 if (LineTable->hasFileAtIndex(FileIdx)) {
1852 LineTable->Prologue.getFileNameEntry(FileIdx);
1857 return std::nullopt;
1860 std::string FileName = *
Name;
1862 FileNamesCache::iterator FileData =
1864 .insert(std::make_pair(
1866 std::make_pair(std::string(
""), std::move(FileName))))
1868 return std::make_pair(
StringRef(FileData->second.first),
1878 if ((Entry.DirIdx != 0) &&
1879 Entry.DirIdx < LineTable->Prologue.IncludeDirectories.size()) {
1881 LineTable->Prologue.IncludeDirectories[Entry.DirIdx]
1884 IncludeDir = *DirName;
1887 return std::nullopt;
1891 if (0 < Entry.DirIdx &&
1892 Entry.DirIdx <= LineTable->Prologue.IncludeDirectories.size()) {
1894 LineTable->Prologue.IncludeDirectories[Entry.DirIdx - 1]
1897 IncludeDir = *DirName;
1900 return std::nullopt;
1913 FileNamesCache::iterator FileData =
1916 std::make_pair(FileIdx, std::make_pair(std::string(FilePath),
1917 std::move(FileName))))
1919 return std::make_pair(
StringRef(FileData->second.first),
1924 return std::nullopt;
1927#define MAX_REFERENCIES_DEPTH 1000
1930 std::optional<UnitEntryPairTy> RefDiePair;
1934 CUDiePair.
DieEntry, dwarf::DW_AT_extension,
1936 if (!RefDiePair || !RefDiePair->DieEntry)
1939 CUDiePair = *RefDiePair;
1946 if (std::optional<uint32_t> ParentIdx =
DieEntry->getParentIdx())
1949 return std::nullopt;
1985 bool InterCUProcessingStarted, std::atomic<bool> &HasNewInterconnectedCUs) {
1989 return Dependencies->resolveDependenciesAndMarkLiveness(
1990 InterCUProcessingStarted, HasNewInterconnectedCUs);
1994 assert(Dependencies.get());
1996 return Dependencies->updateDependenciesCompleteness();
2000 assert(Dependencies.get());
2002 Dependencies->verifyKeepChain();
2007 dwarf::DW_AT_type, dwarf::DW_AT_specification,
2008 dwarf::DW_AT_abstract_origin, dwarf::DW_AT_import};
2010 return ODRAttributes;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
#define MAX_REFERENCIES_DEPTH
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
std::optional< T > getRangeThatContains(uint64_t Addr) const
void insert(AddressRange Range, int64_t Value)
The AddressRanges class helps normalize address range collections.
Collection::const_iterator insert(AddressRange Range)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
std::pair< KeyDataTy *, bool > insert(const KeyTy &NewValue)
Insert new value NewValue or return already existing entry.
A structured debug information entry.
DWARFDebugInfoEntry - A DIE with only the minimum required data.
dwarf::Tag getTag() const
std::optional< uint32_t > getParentIdx() const
Returns index of the parent die.
const DWARFAbbreviationDeclaration * getAbbreviationDeclarationPtr() const
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
LLVM_ABI std::optional< DWARFFormValue > find(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE.
const DWARFDebugInfoEntry * getDebugInfoEntry() const
LLVM_ABI const char * getName(DINameKind Kind) const
Return the DIE name resolving DW_AT_specification or DW_AT_abstract_origin references if necessary.
LLVM_ABI std::optional< uint64_t > getLanguage() const
Returns the DW_LANG_ code for this DIE's DWARF unit, if it exists.
Encoding
Size and signedness of expression operations' operands.
StringRef getData() const
const dwarf::FormParams & getFormParams() const
DWARFDie getUnitDIE(bool ExtractUnitDIEOnly=true)
uint8_t getAddressByteSize() const
const char * getCompilationDir()
Expected< DWARFLocationExpressionsVector > findLoclistFromOffset(uint64_t Offset)
bool isLittleEndian() const
uint64_t getOffset() const
iterator find(const_arg_type_t< KeyT > Val)
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT > iterator
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT, true > const_iterator
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
iterator erase(const_iterator CI)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringMapIterBase< ValueTy, false > iterator
Represent a constant reference to a string, i.e.
std::string str() const
Get the contents as an std::string.
constexpr bool empty() const
Check if the string is empty.
StringRef slice(size_t Start, size_t End) const
Return a reference to the substring from [Start, End).
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
This class represents DWARF information for source file and it's address map.
std::unique_ptr< AddressesMap > Addresses
Helpful address information(list of valid address ranges, relocations).
std::unique_ptr< DWARFContext > Dwarf
Source DWARF information.
@ Pub
.debug_pubnames, .debug_pubtypes
std::map< std::string, std::string > SwiftInterfacesMapTy
CompileUnit(DWARFUnit &OrigUnit, unsigned ID, bool CanUseODR, StringRef ClangModuleName)
TypeUnit * getAsTypeUnit()
Returns TypeUnit if applicable.
DwarfUnit * operator->()
Accessor for common functionality.
PointerUnion< CompileUnit *, TypeUnit * > Ptr
CompileUnit * getAsCompileUnit()
Returns CompileUnit if applicable.
OutputUnitVariantPtr(CompileUnit *U)
void addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset)
Add the low_pc of a label that is relocated by applying offset PCOffset.
Error cloneAndEmitDebugLocations()
Clone and emit debug locations(.debug_loc/.debug_loclists).
void cloneDieAttrExpression(const DWARFExpression &InputExpression, SmallVectorImpl< uint8_t > &OutputExpression, SectionDescriptor &Section, std::optional< int64_t > VarAddressAdjustment, OffsetsPtrVector &PatchesOffsets)
Clone attribute location axpression.
void maybeResetToLoadedStage()
Reset compile units data(results of liveness analysis, clonning) if current stage greater than Stage:...
void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset)
Add a function range [LowPC, HighPC) that is relocated by applying offset PCOffset.
void analyzeImportedModule(const DWARFDebugInfoEntry *DieEntry)
Collect references to parseable Swift interfaces in imported DW_TAG_module blocks.
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, uint32_t SiblingOrdinal=std::numeric_limits< uint32_t >::max())
void cleanupDataAfterClonning()
Cleanup unneeded resources after compile unit is cloned.
Error assignTypeNames(TypePool &TypePoolRef)
Search for type entries and assign names.
llvm::Error setPriority(uint64_t ObjFileIdx, uint64_t LocalIdx)
Set deterministic priority for type DIE allocation ordering.
@ TypeTable
Corresponding DIE goes to the type table only.
@ PlainDwarf
Corresponding DIE goes to the plain dwarf only.
Error cloneAndEmitLineTable(const Triple &TargetTriple)
Error cloneAndEmitRanges()
Clone and emit ranges.
void mergeSwiftInterfaces(DWARFLinkerBase::SwiftInterfacesMapTy &Map)
Merge the Swift interface entries collected by analyzeImportedModule into Map, emitting a warning for...
void updateDieRefPatchesWithClonedOffsets()
After cloning stage the output DIEs offsets are deallocated.
uint64_t getDebugAddrIndex(uint64_t Addr)
Returns index(inside .debug_addr) of an address.
const DWARFFile & getContaingFile() const
Returns DWARFFile containing this compile unit.
bool resolveDependenciesAndMarkLiveness(bool InterCUProcessingStarted, std::atomic< bool > &HasNewInterconnectedCUs)
Search for subprograms and variables referencing live code and discover dependend DIEs.
bool updateDependenciesCompleteness()
Check dependend DIEs for incompatible placement.
bool loadInputDIEs()
Load DIEs of input compilation unit.
const RangesTy & getFunctionRanges() const
Returns function ranges of this unit.
Error cloneAndEmitDebugMacro()
Clone and emit debug macros(.debug_macinfo/.debug_macro).
Error cloneAndEmit(std::optional< std::reference_wrapper< const Triple > > TargetTriple, TypeUnit *ArtificialTypeUnit)
Clone and emit this compilation unit.
void setStage(Stage Stage)
Set stage of overall processing.
Stage getStage() const
Returns stage of overall processing.
CompileUnit(LinkingGlobalData &GlobalData, unsigned ID, StringRef ClangModuleName, DWARFFile &File, OffsetToUnitTy UnitFromOffset, dwarf::FormParams Format, llvm::endianness Endianess)
void verifyDependencies()
Check DIEs to have a consistent marking(keep marking, placement marking).
Stage
The stages of new compile unit processing.
@ Cloned
Output DWARF is generated.
@ CreatedNotLoaded
Created, linked with input DWARF file.
@ Loaded
Input DWARF is loaded.
std::optional< uint64_t > getLowPc() const
Returns value of DW_AT_low_pc attribute.
std::optional< std::pair< StringRef, StringRef > > getDirAndFilenameFromLineTable(const DWARFFormValue &FileIdxValue)
Returns directory and file from the line table by index.
std::optional< UnitEntryPairTy > resolveDIEReference(const DWARFFormValue &RefValue, ResolveInterCUReferencesMode CanResolveInterCUReferences)
Resolve the DIE attribute reference that has been extracted in RefValue.
void loadLineTable()
Loads unit line table.
uint64_t getPriority() const
StringEntry * getFileName(unsigned FileIdx, StringPool &GlobalStrings)
Returns name of the file for the FileIdx from the unit`s line table.
This class is a helper to create output DIE tree.
void addChild(DIE *Child)
Adds a specified Child to the current DIE.
DIE * createDIE(dwarf::Tag DieTag, uint32_t OutOffset)
Creates a DIE of specified tag DieTag and OutOffset.
This class discovers DIEs dependencies: marks "live" DIEs, marks DIE locations (whether DIE should be...
std::string UnitName
The name of this unit.
LinkingGlobalData & getGlobalData()
Return global data.
std::vector< std::unique_ptr< DIEAbbrev > > Abbreviations
Storage for the unique Abbreviations.
DIE * OutUnitDIE
Output unit DIE.
std::string SysRoot
The DW_AT_LLVM_sysroot of this unit.
bool isClangModule() const
Return true if this compile unit is from Clang module.
unsigned ID
Unique ID for the unit.
const std::string & getClangModuleName() const
Return Clang module name;.
void setOutUnitDIE(DIE *UnitDie)
Set output unit DIE.
DwarfUnit(LinkingGlobalData &GlobalData, unsigned ID, StringRef ClangModuleName)
std::string ClangModuleName
If this is a Clang module, this holds the module's name.
FoldingSet< DIEAbbrev > AbbreviationsSet
FoldingSet that uniques the abbreviations.
StringRef getSysRoot()
Return the DW_AT_LLVM_sysroot of the compile unit or an empty StringRef.
DIE * getOutUnitDIE()
Returns output unit DIE.
This class keeps data and services common for the whole linking process.
This class helps to assign indexes for DIE children.
LinkingGlobalData & GlobalData
dwarf::FormParams Format
Format for sections.
const dwarf::FormParams & getFormParams() const
Return size of address.
void eraseSections()
Erases data of all sections.
std::optional< const SectionDescriptor * > tryGetSectionDescriptor(DebugSectionKind SectionKind) const
Returns descriptor for the specified section of SectionKind.
void setOutputFormat(dwarf::FormParams Format, llvm::endianness Endianness)
Sets output format for all keeping sections.
uint16_t getVersion() const
Return DWARF version.
uint16_t getDebugInfoHeaderSize() const
Return size of header of debug_info table.
llvm::endianness getEndianness() const
Endiannes for the sections.
SectionDescriptor & getOrCreateSectionDescriptor(DebugSectionKind SectionKind)
Returns descriptor for the specified section of SectionKind.
const SectionDescriptor & getSectionDescriptor(DebugSectionKind SectionKind) const
Returns descriptor for the specified section of SectionKind.
The helper class to build type name based on DIE properties.
Error assignName(UnitEntryPairTy InputUnitEntryPair, std::optional< std::pair< size_t, size_t > > ChildIndex)
Create synthetic name for the specified DIE InputUnitEntryPair and assign created name to the DIE typ...
Keeps cloned data for the type DIE.
bool DeclarationParentIsDeclaration
uint64_t DeclarationDiePriority
std::atomic< uint32_t > SortKey
std::atomic< DIE * > DeclarationDie
std::atomic< DIE * > Die
TypeEntryBody keeps partially cloned DIEs corresponding to this type.
std::atomic< uint64_t > DiePriority
TypePool keeps type descriptors which contain partially cloned DIE correspinding to each type.
BumpPtrAllocator & getThreadLocalAllocator()
Return thread local allocator used by pool.
TypeEntryBody * getOrCreateTypeEntryBody(TypeEntry *Entry, TypeEntry *ParentEntry)
Create or return existing type entry body for the specified Entry.
TypeEntry * getRoot() const
Return root for all type entries.
Type Unit is used to represent an artificial compilation unit which keeps all type information.
TypePool & getTypePool()
Returns global type pool.
uint64_t tell() const
tell - Return the current offset with the file.
void rememberDieOutOffset(uint32_t Idx, uint64_t Offset)
Idx index of the DIE.
TypeEntry * getDieTypeEntry(uint32_t Idx)
Idx index of the DIE.
DIEInfo & getDIEInfo(unsigned Idx)
Idx index of the DIE.
const DWARFDebugInfoEntry * getSiblingEntry(const DWARFDebugInfoEntry *Die) const
const DWARFDebugInfoEntry * getFirstChildEntry(const DWARFDebugInfoEntry *Die) const
std::optional< uint32_t > getDIEIndexForOffset(uint64_t Offset)
DWARFDie getDIE(const DWARFDebugInfoEntry *Die)
const DWARFDebugInfoEntry * getDebugInfoEntry(unsigned Index) const
DWARFUnit & getOrigUnit() const
Returns paired compile unit from input DWARF.
DWARFDie getUnitDIE(bool ExtractUnitDIEOnly=true)
uint32_t getDIEIndex(const DWARFDebugInfoEntry *Die) const
std::optional< DWARFFormValue > find(uint32_t DieIdx, ArrayRef< dwarf::Attribute > Attrs) const
Error emitDebugInfo(const Triple &TargetTriple)
Emit .debug_info section for unit DIEs.
Error emitDebugLine(const Triple &TargetTriple, const DWARFDebugLine::LineTable &OutLineTable, ArrayRef< uint64_t > OrigRowIndices={}, DenseMap< uint64_t, uint64_t > *RowIndexToSeqStartOffset=nullptr)
Emit .debug_line section.
Error emitDebugStringOffsetSection()
Emit the .debug_str_offsets section for current unit.
void emitPubAccelerators()
Emit .debug_pubnames and .debug_pubtypes for Unit.
void warn(const Twine &Warning, const DWARFDie *DIE=nullptr)
Error emitAbbreviations()
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
bool isODRLanguage(uint16_t Language)
function_ref< CompileUnit *(uint64_t Offset)> OffsetToUnitTy
SmallVector< uint64_t * > OffsetsPtrVector
Type for list of pointers to patches offsets.
StringMapEntry< std::atomic< TypeEntryBody * > > TypeEntry
ArrayRef< dwarf::Attribute > getODRAttributes()
ResolveInterCUReferencesMode
StringRef guessDeveloperDir(StringRef SysRoot)
Make a best effort to guess the Xcode.app/Contents/Developer path from an SDK path.
DebugSectionKind
List of tracked debug tables.
LLVM_ABI void buildStmtSeqOffsetToFirstRowIndex(const DWARFDebugLine::LineTable <, ArrayRef< uint64_t > SortedStmtSeqOffsets, DenseMap< uint64_t, uint64_t > &SeqOffToFirstRow)
Build a map from an input DW_AT_LLVM_stmt_sequence byte offset to the first-row index (in LT....
StringMapEntry< EmptyStringSetTag > StringEntry
StringEntry keeps data of the string: the length, external offset and a string body which is placed r...
bool isInToolchainDir(StringRef Path)
Make a best effort to determine whether Path is inside a toolchain.
bool isPathAbsoluteOnWindowsOrPosix(const Twine &Path)
std::optional< uint64_t > toAddress(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an address.
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
std::optional< uint64_t > toSectionOffset(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an section offset.
StringRef toStringRef(const std::optional< DWARFFormValue > &V, StringRef Default={})
Take an optional DWARFFormValue and try to extract a string value from it.
std::optional< uint64_t > toUnsigned(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an unsigned constant.
@ DW_ARANGES_VERSION
Section version number for .debug_aranges.
LLVM_ABI std::error_code real_path(const Twine &path, SmallVectorImpl< char > &output, bool expand_tilde=false)
Collapse all .
LLVM_ABI StringRef parent_path(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get parent path.
LLVM_ABI bool is_relative(const Twine &path, Style style=Style::native)
Is path relative?
LLVM_ABI StringRef filename(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get filename.
LLVM_ABI void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
void swapByteOrder(T &Value)
This is an optimization pass for GlobalISel generic memory operations.
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
auto partition_point(R &&Range, Predicate P)
Binary search for the first iterator in a range where a predicate is false.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
auto unique(Range &&R, Predicate P)
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
static void insertLineSequence(std::vector< TrackedRow > &Seq, std::vector< TrackedRow > &Rows)
Insert the new line info sequence Seq into the current set of already linked line info Rows.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
void sort(IteratorTy Start, IteratorTy End)
@ Dwarf
DWARF v5 .debug_names.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
uint64_t offsetToAlignment(uint64_t Value, Align Alignment)
Returns the offset to the next integer (mod 2**64) that is greater than or equal to Value and is a mu...
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
unsigned encodeULEB128(uint64_t Value, raw_ostream &OS, unsigned PadTo=0)
Utility function to encode a ULEB128 value to an output stream.
bool isCompileUnit(const std::unique_ptr< DWARFUnit > &U)
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
void consumeError(Error Err)
Consume a Error without doing anything.
dwarf::FormParams FormParams
Version, address size (starting in v5), and DWARF32/64 format; these parameters affect interpretation...
Standard .debug_line state machine structure.
object::SectionedAddress Address
The program-counter value corresponding to a machine instruction generated by the compiler and sectio...
Represents a single DWARF expression, whose value is location-dependent.
Information gathered about source DIEs.
LLVM_DUMP_METHOD void dump()
bool needToPlaceInTypeTable() const
DieOutputPlacement getPlacement() const
This structure is used to update reference to the DIE.
uint64_t RefDieIdxOrClonedOffset
PointerIntPair< CompileUnit *, 1 > RefCU
This structure is used to update location list offset into .debug_loc/.debug_loclists.
int64_t AddrAdjustmentValue
This structure is used to update range list offset into .debug_ranges/.debug_rnglists.
bool IsCompileUnitRanges
Indicates patch which points to immediate compile unit's attribute.
This structure is used to update reference to the DIE of ULEB128 form.
uint64_t RefDieIdxOrClonedOffset
PointerIntPair< CompileUnit *, 1 > RefCU
dwarf::FormParams getFormParams() const
Returns FormParams used by section.
This structure is used to keep data of the concrete section.
raw_svector_ostream OS
Stream which stores data to the Contents.
void emitUnitLength(uint64_t Length)
Emit unit length into the current section contents.
void emitOffset(uint64_t Val)
Emit specified offset value into the current section contents.
void emitIntVal(uint64_t Val, unsigned Size)
Emit specified integer value into the current section contents.
void apply(uint64_t PatchOffset, dwarf::Form AttrForm, uint64_t Val)
Write specified Value of AttrForm to the PatchOffset.
uint64_t getIntVal(uint64_t PatchOffset, unsigned Size)
Returns integer value of Size located by specified PatchOffset.
This is a helper structure which keeps a debug info entry with it's containing compilation unit.
UnitEntryPairTy()=default
std::optional< UnitEntryPairTy > getParent()
UnitEntryPairTy getNamespaceOrigin()
const DWARFDebugInfoEntry * DieEntry