30using namespace dwarf_linker;
31using namespace dwarf_linker::classic;
36 std::unique_ptr<DwarfStreamer> Streamer =
37 std::make_unique<DwarfStreamer>(FileType, OutFile,
Warning);
38 if (
Error Err = Streamer->init(TheTriple,
"__DWARF"))
39 return std::move(Err);
41 return std::move(Streamer);
47 std::string TripleName;
61 "no register info for target %s",
70 "no asm info for target %s", TripleName.c_str());
75 "no subtarget info for target %s",
78 MC.reset(
new MCContext(TheTriple, MAI.get(), MRI.get(), MSTI.get(),
nullptr,
79 nullptr,
true, Swift5ReflectionSegmentName));
81 MC->setObjectFileInfo(MOFI.get());
86 "no asm backend for target %s",
92 "no instr info info for target %s",
98 "no code emitter for target %s",
101 switch (OutFileType) {
106 *MC, std::make_unique<formatted_raw_ostream>(OutFile), MIP,
107 std::unique_ptr<MCCodeEmitter>(MCE),
108 std::unique_ptr<MCAsmBackend>(MAB));
113 TheTriple, *MC, std::unique_ptr<MCAsmBackend>(MAB),
122 "no object streamer for target %s",
130 "no target machine for target %s",
133 Asm.reset(TheTarget->
createAsmPrinter(*TM, std::unique_ptr<MCStreamer>(MS)));
136 "no asm printer for target %s",
138 Asm->setDwarfUsesRelocationsAcrossSections(
false);
140 RangesSectionSize = 0;
141 RngListsSectionSize = 0;
143 LocListsSectionSize = 0;
145 FrameSectionSize = 0;
146 DebugInfoSectionSize = 0;
147 MacInfoSectionSize = 0;
148 MacroSectionSize = 0;
157 MC->setDwarfVersion(DwarfVersion);
177 unsigned DwarfVersion) {
181 Unit.setLabelBegin(Asm->createTempSymbol(
"cu_begin"));
182 Asm->OutStreamer->emitLabel(Unit.getLabelBegin());
187 Asm->emitInt32(Unit.getNextUnitOffset() - Unit.getStartOffset() - 4);
188 Asm->emitInt16(DwarfVersion);
190 if (DwarfVersion >= 5) {
191 Asm->emitInt8(dwarf::DW_UT_compile);
192 Asm->emitInt8(Unit.getOrigUnit().getAddressByteSize());
196 DebugInfoSectionSize += 12;
201 Asm->emitInt8(Unit.getOrigUnit().getAddressByteSize());
202 DebugInfoSectionSize += 11;
206 EmittedUnits.push_back({Unit.getUniqueID(), Unit.getLabelBegin()});
212 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
213 unsigned DwarfVersion) {
215 MC->setDwarfVersion(DwarfVersion);
216 Asm->emitDwarfAbbrevs(Abbrevs);
222 Asm->emitDwarfDIE(Die);
223 DebugInfoSectionSize += Die.
getSize();
232 if (
MCSection *Section = getMCSection(SecKind)) {
242 return MC->getObjectFileInfo()->getDwarfInfoSection();
244 return MC->getObjectFileInfo()->getDwarfLineSection();
246 return MC->getObjectFileInfo()->getDwarfFrameSection();
248 return MC->getObjectFileInfo()->getDwarfRangesSection();
250 return MC->getObjectFileInfo()->getDwarfRnglistsSection();
252 return MC->getObjectFileInfo()->getDwarfLocSection();
254 return MC->getObjectFileInfo()->getDwarfLoclistsSection();
256 return MC->getObjectFileInfo()->getDwarfARangesSection();
258 return MC->getObjectFileInfo()->getDwarfAbbrevSection();
260 return MC->getObjectFileInfo()->getDwarfMacinfoSection();
262 return MC->getObjectFileInfo()->getDwarfMacroSection();
264 return MC->getObjectFileInfo()->getDwarfAddrSection();
266 return MC->getObjectFileInfo()->getDwarfStrSection();
268 return MC->getObjectFileInfo()->getDwarfLineStrSection();
270 return MC->getObjectFileInfo()->getDwarfStrOffSection();
272 return MC->getObjectFileInfo()->getDwarfPubNamesSection();
274 return MC->getObjectFileInfo()->getDwarfPubTypesSection();
276 return MC->getObjectFileInfo()->getDwarfDebugNamesSection();
278 return MC->getObjectFileInfo()->getDwarfAccelNamesSection();
280 return MC->getObjectFileInfo()->getDwarfAccelNamespaceSection();
282 return MC->getObjectFileInfo()->getDwarfAccelObjCSection();
284 return MC->getObjectFileInfo()->getDwarfAccelTypesSection();
295 Asm->OutStreamer->switchSection(MOFI->getDwarfStrSection());
297 for (
auto Entry : Entries) {
299 Asm->OutStreamer->emitBytes(Entry.getString());
310 if (TargetDWARFVersion < 5 || StringOffsets.
empty())
313 Asm->OutStreamer->switchSection(MOFI->getDwarfStrOffSection());
315 MCSymbol *BeginLabel = Asm->createTempSymbol(
"Bdebugstroff");
316 MCSymbol *EndLabel = Asm->createTempSymbol(
"Edebugstroff");
319 Asm->emitLabelDifference(EndLabel, BeginLabel,
sizeof(
uint32_t));
320 Asm->OutStreamer->emitLabel(BeginLabel);
321 StrOffsetSectionSize +=
sizeof(
uint32_t);
325 StrOffsetSectionSize +=
sizeof(
uint16_t);
329 StrOffsetSectionSize +=
sizeof(
uint16_t);
331 for (
auto Off : StringOffsets) {
332 Asm->OutStreamer->emitInt32(Off);
333 StrOffsetSectionSize +=
sizeof(
uint32_t);
335 Asm->OutStreamer->emitLabel(EndLabel);
340 Asm->OutStreamer->switchSection(MOFI->getDwarfLineStrSection());
342 for (
auto Entry : Entries) {
344 Asm->OutStreamer->emitBytes(Entry.getString());
351 if (EmittedUnits.empty())
355 std::vector<std::variant<MCSymbol *, uint64_t>> CompUnits;
358 for (
auto &
CU : EmittedUnits) {
359 CompUnits.push_back(
CU.LabelBegin);
361 UniqueIdToCuMap[
CU.ID] = Id++;
364 Asm->OutStreamer->switchSection(MOFI->getDwarfDebugNamesSection());
371 Asm.get(), Table, CompUnits,
373 -> std::optional<DWARF5AccelTable::UnitIndexAndEncoding> {
374 if (UniqueIdToCuMap.size() > 1)
375 return {{UniqueIdToCuMap[Entry.getUnitID()],
376 {dwarf::DW_IDX_compile_unit, Form}}};
383 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelNamespaceSection());
384 auto *SectionBegin = Asm->createTempSymbol(
"namespac_begin");
385 Asm->OutStreamer->emitLabel(SectionBegin);
391 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelNamesSection());
392 auto *SectionBegin = Asm->createTempSymbol(
"names_begin");
393 Asm->OutStreamer->emitLabel(SectionBegin);
399 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelObjCSection());
400 auto *SectionBegin = Asm->createTempSymbol(
"objc_begin");
401 Asm->OutStreamer->emitLabel(SectionBegin);
407 Asm->OutStreamer->switchSection(MOFI->getDwarfAccelTypesSection());
408 auto *SectionBegin = Asm->createTempSymbol(
"types_begin");
409 Asm->OutStreamer->emitLabel(SectionBegin);
415 MCSection *SwiftASTSection = MOFI->getDwarfSwiftASTSection();
425 MOFI->getSwift5ReflectionSection(ReflSectionKind);
426 if (ReflectionSection ==
nullptr)
435 unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
438 MS->
switchSection(MC->getObjectFileInfo()->getDwarfARangesSection());
441 MCSymbol *BeginLabel = Asm->createTempSymbol(
"Barange");
442 MCSymbol *EndLabel = Asm->createTempSymbol(
"Earange");
444 unsigned HeaderSize =
451 unsigned TupleSize = AddressSize * 2;
454 Asm->emitLabelDifference(EndLabel, BeginLabel, 4);
455 Asm->OutStreamer->emitLabel(BeginLabel);
457 Asm->emitInt32(Unit.getStartOffset());
458 Asm->emitInt8(AddressSize);
461 Asm->OutStreamer->emitFill(Padding, 0x0);
470 Asm->OutStreamer->emitIntValue(0, AddressSize);
471 Asm->OutStreamer->emitIntValue(0, AddressSize);
472 Asm->OutStreamer->emitLabel(EndLabel);
475void DwarfStreamer::emitDwarfDebugRangesTableFragment(
478 Patch.
set(RangesSectionSize);
481 MS->
switchSection(MC->getObjectFileInfo()->getDwarfRangesSection());
482 unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
486 if (std::optional<uint64_t> LowPC = Unit.getLowPc())
487 BaseAddress = *LowPC;
493 RangesSectionSize += AddressSize;
494 RangesSectionSize += AddressSize;
501 RangesSectionSize += AddressSize;
502 RangesSectionSize += AddressSize;
507 if (Unit.getOrigUnit().getVersion() < 5)
511 MS->
switchSection(MC->getObjectFileInfo()->getDwarfRnglistsSection());
513 MCSymbol *BeginLabel = Asm->createTempSymbol(
"Brnglists");
514 MCSymbol *EndLabel = Asm->createTempSymbol(
"Ernglists");
515 unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
518 Asm->emitLabelDifference(EndLabel, BeginLabel,
sizeof(
uint32_t));
519 Asm->OutStreamer->emitLabel(BeginLabel);
520 RngListsSectionSize +=
sizeof(
uint32_t);
524 RngListsSectionSize +=
sizeof(
uint16_t);
528 RngListsSectionSize++;
532 RngListsSectionSize++;
536 RngListsSectionSize +=
sizeof(
uint32_t);
544 if (Unit.getOrigUnit().getVersion() < 5) {
545 emitDwarfDebugRangesTableFragment(Unit, LinkedRanges, Patch);
549 emitDwarfDebugRngListsTableFragment(Unit, LinkedRanges, Patch, AddrPool);
554 if (Unit.getOrigUnit().getVersion() < 5)
558 MS->
switchSection(MC->getObjectFileInfo()->getDwarfRnglistsSection());
560 if (EndLabel !=
nullptr)
561 Asm->OutStreamer->emitLabel(EndLabel);
564void DwarfStreamer::emitDwarfDebugRngListsTableFragment(
567 Patch.
set(RngListsSectionSize);
570 MS->
switchSection(MC->getObjectFileInfo()->getDwarfRnglistsSection());
571 std::optional<uint64_t> BaseAddress;
576 BaseAddress =
Range.start();
579 MS->
emitInt8(dwarf::DW_RLE_base_addressx);
580 RngListsSectionSize += 1;
581 RngListsSectionSize +=
586 MS->
emitInt8(dwarf::DW_RLE_offset_pair);
587 RngListsSectionSize += 1;
590 RngListsSectionSize +=
598 MS->
emitInt8(dwarf::DW_RLE_end_of_list);
599 RngListsSectionSize += 1;
604 if (Unit.getOrigUnit().getVersion() < 5)
608 MS->
switchSection(MC->getObjectFileInfo()->getDwarfLoclistsSection());
610 MCSymbol *BeginLabel = Asm->createTempSymbol(
"Bloclists");
611 MCSymbol *EndLabel = Asm->createTempSymbol(
"Eloclists");
612 unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
615 Asm->emitLabelDifference(EndLabel, BeginLabel,
sizeof(
uint32_t));
616 Asm->OutStreamer->emitLabel(BeginLabel);
617 LocListsSectionSize +=
sizeof(
uint32_t);
621 LocListsSectionSize +=
sizeof(
uint16_t);
625 LocListsSectionSize++;
629 LocListsSectionSize++;
633 LocListsSectionSize +=
sizeof(
uint32_t);
643 if (Unit.getOrigUnit().getVersion() < 5) {
644 emitDwarfDebugLocTableFragment(Unit, LinkedLocationExpression, Patch);
648 emitDwarfDebugLocListsTableFragment(Unit, LinkedLocationExpression, Patch,
655 if (Unit.getOrigUnit().getVersion() < 5)
659 MS->
switchSection(MC->getObjectFileInfo()->getDwarfLoclistsSection());
661 if (EndLabel !=
nullptr)
662 Asm->OutStreamer->emitLabel(EndLabel);
666void DwarfStreamer::emitDwarfDebugLocTableFragment(
670 Patch.
set(LocSectionSize);
673 MS->
switchSection(MC->getObjectFileInfo()->getDwarfLocSection());
674 unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
678 if (std::optional<uint64_t> LowPC = Unit.getLowPc())
679 BaseAddress = *LowPC;
682 LinkedLocationExpression) {
683 if (LocExpression.Range) {
684 MS->
emitIntValue(LocExpression.Range->LowPC - BaseAddress, AddressSize);
685 MS->
emitIntValue(LocExpression.Range->HighPC - BaseAddress, AddressSize);
687 LocSectionSize += AddressSize;
688 LocSectionSize += AddressSize;
691 Asm->OutStreamer->emitIntValue(LocExpression.Expr.size(), 2);
693 (
const char *)LocExpression.Expr.data(), LocExpression.Expr.size()));
694 LocSectionSize += LocExpression.Expr.size() + 2;
701 LocSectionSize += AddressSize;
702 LocSectionSize += AddressSize;
709 MS->
switchSection(MC->getObjectFileInfo()->getDwarfAddrSection());
711 MCSymbol *BeginLabel = Asm->createTempSymbol(
"Bdebugaddr");
712 MCSymbol *EndLabel = Asm->createTempSymbol(
"Edebugaddr");
713 unsigned AddrSize = Unit.getOrigUnit().getAddressByteSize();
716 Asm->emitLabelDifference(EndLabel, BeginLabel,
sizeof(
uint32_t));
717 Asm->OutStreamer->emitLabel(BeginLabel);
718 AddrSectionSize +=
sizeof(
uint32_t);
722 AddrSectionSize += 2;
725 Asm->emitInt8(AddrSize);
726 AddrSectionSize += 1;
730 AddrSectionSize += 1;
738 Asm->OutStreamer->switchSection(MOFI->getDwarfAddrSection());
739 for (
auto Addr : Addrs) {
740 Asm->OutStreamer->emitIntValue(
Addr, AddrSize);
741 AddrSectionSize += AddrSize;
750 MS->
switchSection(MC->getObjectFileInfo()->getDwarfAddrSection());
752 if (EndLabel !=
nullptr)
753 Asm->OutStreamer->emitLabel(EndLabel);
757void DwarfStreamer::emitDwarfDebugLocListsTableFragment(
761 Patch.
set(LocListsSectionSize);
764 MS->
switchSection(MC->getObjectFileInfo()->getDwarfLoclistsSection());
765 std::optional<uint64_t> BaseAddress;
768 LinkedLocationExpression) {
769 if (LocExpression.Range) {
773 BaseAddress = LocExpression.Range->LowPC;
776 MS->
emitInt8(dwarf::DW_LLE_base_addressx);
777 LocListsSectionSize += 1;
778 LocListsSectionSize +=
783 MS->
emitInt8(dwarf::DW_LLE_offset_pair);
784 LocListsSectionSize += 1;
787 LocListsSectionSize +=
791 LocListsSectionSize +=
795 MS->
emitInt8(dwarf::DW_LLE_default_location);
796 LocListsSectionSize += 1;
801 (
const char *)LocExpression.Expr.data(), LocExpression.Expr.size()));
802 LocListsSectionSize += LocExpression.Expr.size();
806 MS->
emitInt8(dwarf::DW_LLE_end_of_list);
807 LocListsSectionSize += 1;
814 MS->
switchSection(MC->getObjectFileInfo()->getDwarfLineSection());
816 MCSymbol *LineStartSym = MC->createTempSymbol();
817 MCSymbol *LineEndSym = MC->createTempSymbol();
822 LineSectionSize += 4;
824 emitLabelDifference(LineEndSym, LineStartSym,
826 Asm->OutStreamer->emitLabel(LineStartSym);
829 emitLineTablePrologue(LineTable.
Prologue, DebugStrPool, DebugLineStrPool);
832 emitLineTableRows(LineTable, LineEndSym,
833 Unit.getOrigUnit().getAddressByteSize());
839 MCSymbol *PrologueStartSym = MC->createTempSymbol();
840 MCSymbol *PrologueEndSym = MC->createTempSymbol();
844 LineSectionSize += 2;
845 if (
P.getVersion() == 5) {
848 LineSectionSize += 1;
852 LineSectionSize += 1;
856 emitLabelDifference(PrologueEndSym, PrologueStartSym,
P.FormParams.Format,
859 Asm->OutStreamer->emitLabel(PrologueStartSym);
860 emitLineTableProloguePayload(
P, DebugStrPool, DebugLineStrPool);
861 Asm->OutStreamer->emitLabel(PrologueEndSym);
864void DwarfStreamer::emitLineTablePrologueV2IncludeAndFileTable(
869 emitLineTableString(
P,
Include, DebugStrPool, DebugLineStrPool);
872 LineSectionSize += 1;
878 emitLineTableString(
P, File.Name, DebugStrPool, DebugLineStrPool);
891 LineSectionSize += 1;
894void DwarfStreamer::emitLineTablePrologueV5IncludeAndFileTable(
897 if (
P.IncludeDirectories.empty()) {
900 LineSectionSize += 1;
904 LineSectionSize += 1;
915 for (
auto Include :
P.IncludeDirectories)
916 emitLineTableString(
P,
Include, DebugStrPool, DebugLineStrPool);
918 bool HasChecksums =
P.ContentTypes.HasMD5;
919 bool HasInlineSources =
P.ContentTypes.HasSource;
921 if (
P.FileNames.empty()) {
924 LineSectionSize += 1;
927 MS->
emitInt8(2 + (HasChecksums ? 1 : 0) + (HasInlineSources ? 1 : 0));
928 LineSectionSize += 1;
931 auto StrForm =
P.FileNames[0].Name.getForm();
943 if (HasInlineSources) {
953 for (
auto File :
P.FileNames) {
954 emitLineTableString(
P,
File.Name, DebugStrPool, DebugLineStrPool);
958 StringRef(
reinterpret_cast<const char *
>(
File.Checksum.data()),
959 File.Checksum.size()));
960 LineSectionSize +=
File.Checksum.size();
962 if (HasInlineSources)
963 emitLineTableString(
P,
File.Source, DebugStrPool, DebugLineStrPool);
973 warn(
"Cann't read string from line table.");
977 switch (
String.getForm()) {
978 case dwarf::DW_FORM_string: {
980 Asm->OutStreamer->emitBytes(Str.data());
982 LineSectionSize += Str.size() + 1;
984 case dwarf::DW_FORM_strp:
985 case dwarf::DW_FORM_line_strp: {
987 String.getForm() == dwarf::DW_FORM_strp
988 ? DebugStrPool.getEntry(*StringVal)
989 : DebugLineStrPool.getEntry(*StringVal);
991 emitIntOffset(
StringRef.getOffset(),
P.FormParams.Format, LineSectionSize);
994 warn(
"Unsupported string form inside line table.");
999void DwarfStreamer::emitLineTableProloguePayload(
1004 LineSectionSize += 1;
1005 if (
P.FormParams.Version >= 4) {
1008 LineSectionSize += 1;
1012 LineSectionSize += 1;
1015 LineSectionSize += 1;
1018 LineSectionSize += 1;
1021 LineSectionSize += 1;
1024 for (
auto Length :
P.StandardOpcodeLengths) {
1026 LineSectionSize += 1;
1029 if (
P.FormParams.Version < 5)
1030 emitLineTablePrologueV2IncludeAndFileTable(
P, DebugStrPool,
1033 emitLineTablePrologueV5IncludeAndFileTable(
P, DebugStrPool,
1037void DwarfStreamer::emitLineTableRows(
1039 unsigned AddressByteSize) {
1048 if (LineTable.
Rows.empty()) {
1054 LineSectionSize += EncodingBuffer.
size();
1060 unsigned FileNum = 1;
1061 unsigned LastLine = 1;
1062 unsigned Column = 0;
1064 unsigned IsStatement = 1;
1068 unsigned RowsSinceLastSequence = 0;
1076 MS->
emitIntValue(Row.Address.Address, AddressByteSize);
1090 if (FileNum != Row.File) {
1096 if (Column != Row.Column) {
1097 Column = Row.Column;
1102 if (Discriminator != Row.Discriminator &&
1115 if (Isa != Row.Isa) {
1121 if (IsStatement != Row.IsStmt) {
1122 IsStatement = Row.IsStmt;
1124 LineSectionSize += 1;
1126 if (Row.BasicBlock) {
1128 LineSectionSize += 1;
1131 if (Row.PrologueEnd) {
1133 LineSectionSize += 1;
1136 if (Row.EpilogueBegin) {
1138 LineSectionSize += 1;
1141 int64_t LineDelta = int64_t(Row.Line) - LastLine;
1142 if (!Row.EndSequence) {
1146 LineSectionSize += EncodingBuffer.
size();
1147 EncodingBuffer.
resize(0);
1148 Address = Row.Address.Address;
1149 LastLine = Row.Line;
1150 RowsSinceLastSequence++;
1165 LineSectionSize += EncodingBuffer.
size();
1166 EncodingBuffer.
resize(0);
1168 LastLine = FileNum = IsStatement = 1;
1173 if (RowsSinceLastSequence) {
1177 LineSectionSize += EncodingBuffer.
size();
1178 EncodingBuffer.
resize(0);
1195 Asm->emitLabelDifference(
Hi,
Lo,
Size);
1201void DwarfStreamer::emitPubSectionForUnit(
1203 const std::vector<CompileUnit::AccelInfo> &Names) {
1208 Asm->OutStreamer->switchSection(Sec);
1209 MCSymbol *BeginLabel = Asm->createTempSymbol(
"pub" + SecName +
"_begin");
1210 MCSymbol *EndLabel = Asm->createTempSymbol(
"pub" + SecName +
"_end");
1212 bool HeaderEmitted =
false;
1214 for (
const auto &
Name : Names) {
1215 if (
Name.SkipPubSection)
1218 if (!HeaderEmitted) {
1220 Asm->emitLabelDifference(EndLabel, BeginLabel, 4);
1221 Asm->OutStreamer->emitLabel(BeginLabel);
1223 Asm->emitInt32(Unit.getStartOffset());
1224 Asm->emitInt32(Unit.getNextUnitOffset() - Unit.getStartOffset());
1225 HeaderEmitted =
true;
1227 Asm->emitInt32(
Name.Die->getOffset());
1230 Asm->OutStreamer->emitBytes(
Name.Name.getString());
1238 Asm->OutStreamer->emitLabel(EndLabel);
1243 emitPubSectionForUnit(MC->getObjectFileInfo()->getDwarfPubNamesSection(),
1244 "names", Unit, Unit.getPubnames());
1249 emitPubSectionForUnit(MC->getObjectFileInfo()->getDwarfPubTypesSection(),
1250 "types", Unit, Unit.getPubtypes());
1255 MS->
switchSection(MC->getObjectFileInfo()->getDwarfFrameSection());
1258 FrameSectionSize += CIEBytes.
size();
1266 MS->
switchSection(MC->getObjectFileInfo()->getDwarfFrameSection());
1272 FrameSectionSize += FDEBytes.
size() + 8 + AddrSize;
1278 assert(Context !=
nullptr &&
"Empty DWARF context");
1282 MS->
switchSection(MC->getObjectFileInfo()->getDwarfMacinfoSection());
1283 emitMacroTableImpl(Table, UnitMacroMap,
StringPool, MacInfoSectionSize);
1288 MS->
switchSection(MC->getObjectFileInfo()->getDwarfMacroSection());
1289 emitMacroTableImpl(Table, UnitMacroMap,
StringPool, MacroSectionSize);
1293void DwarfStreamer::emitMacroTableImpl(
const DWARFDebugMacro *MacroTable,
1297 bool DefAttributeIsReported =
false;
1298 bool UndefAttributeIsReported =
false;
1299 bool ImportAttributeIsReported =
false;
1300 for (
const DWARFDebugMacro::MacroList &
List : MacroTable->MacroLists) {
1302 if (UnitIt == UnitMacroMap.
end()) {
1304 "couldn`t find compile unit for the macro table with offset = {0:x}",
1310 DIE *OutputUnitDIE = UnitIt->second->getOutputUnitDIE();
1311 if (OutputUnitDIE ==
nullptr)
1316 bool hasDWARFv5Header =
false;
1317 for (
auto &V : OutputUnitDIE->
values()) {
1318 if (V.getAttribute() == dwarf::DW_AT_macro_info) {
1321 }
else if (V.getAttribute() == dwarf::DW_AT_macros) {
1322 hasDWARFv5Header =
true;
1329 if (hasDWARFv5Header) {
1332 OutOffset +=
sizeof(
List.Header.Version);
1338 DWARFDebugMacro::HeaderFlagMask::MACRO_OPCODE_OPERANDS_TABLE) {
1340 warn(
"opcode_operands_table is not supported yet.");
1344 std::optional<uint64_t> StmtListOffset;
1345 if (Flags & DWARFDebugMacro::HeaderFlagMask::MACRO_DEBUG_LINE_OFFSET) {
1347 for (
auto &V : OutputUnitDIE->
values()) {
1348 if (
V.getAttribute() == dwarf::DW_AT_stmt_list) {
1349 StmtListOffset =
V.getDIEInteger().getValue();
1354 if (!StmtListOffset) {
1356 warn(
"couldn`t find line table for macro table.");
1362 OutOffset +=
sizeof(
Flags);
1365 if (StmtListOffset) {
1367 OutOffset +=
List.Header.getOffsetByteSize();
1372 for (
const DWARFDebugMacro::Entry &MacroEntry :
List.Macros) {
1373 if (MacroEntry.Type == 0) {
1378 uint8_t MacroType = MacroEntry.Type;
1379 switch (MacroType) {
1381 bool HasVendorSpecificExtension =
1386 if (HasVendorSpecificExtension) {
1398 OutOffset +=
String.size() + 1;
1400 warn(
"unknown macro type. skip.");
1408 case dwarf::DW_MACRO_define:
1409 case dwarf::DW_MACRO_undef: {
1421 OutOffset +=
String.size() + 1;
1423 case dwarf::DW_MACRO_define_strp:
1424 case dwarf::DW_MACRO_undef_strp:
1425 case dwarf::DW_MACRO_define_strx:
1426 case dwarf::DW_MACRO_undef_strx: {
1427 assert(UnitIt->second->getOrigUnit().getVersion() >= 5);
1431 switch (MacroType) {
1432 case dwarf::DW_MACRO_define_strx: {
1433 MacroType = dwarf::DW_MACRO_define_strp;
1434 if (!DefAttributeIsReported) {
1435 warn(
"DW_MACRO_define_strx unsupported yet. Convert to "
1436 "DW_MACRO_define_strp.");
1437 DefAttributeIsReported =
true;
1440 case dwarf::DW_MACRO_undef_strx: {
1441 MacroType = dwarf::DW_MACRO_undef_strp;
1442 if (!UndefAttributeIsReported) {
1443 warn(
"DW_MACRO_undef_strx unsupported yet. Convert to "
1444 "DW_MACRO_undef_strp.");
1445 UndefAttributeIsReported =
true;
1464 OutOffset +=
List.Header.getOffsetByteSize();
1467 case dwarf::DW_MACRO_start_file: {
1476 case dwarf::DW_MACRO_end_file: {
1481 case dwarf::DW_MACRO_import:
1482 case dwarf::DW_MACRO_import_sup: {
1483 if (!ImportAttributeIsReported) {
1484 warn(
"DW_MACRO_import and DW_MACRO_import_sup are unsupported yet. "
1486 ImportAttributeIsReported =
true;
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This class holds an abstract representation of an Accelerator Table, consisting of a sequence of buck...
A class that represents an address range.
The AddressRanges class helps normalize address range collections.
static dwarf::Form BestForm(bool IsSigned, uint64_t Int)
Choose the best form for integer.
A structured debug information entry.
The Data class implementation for DWARF v5 accelerator table.
DWARFContext This data structure is the top level entity that deals with dwarf debug information pars...
const DWARFDebugMacro * getDebugMacro()
Get a pointer to the parsed DebugMacro information object.
const DWARFDebugMacro * getDebugMacinfo()
Get a pointer to the parsed DebugMacinfo information object.
iterator find(const_arg_type_t< KeyT > Val)
DwarfStringPoolEntryRef: Dwarf string pool entry reference.
uint64_t getOffset() const
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.
std::unique_ptr< MCObjectWriter > createObjectWriter(raw_pwrite_stream &OS) const
Create a new MCObjectWriter instance for use by the assembler backend to emit the final object file.
Context object for machine code objects.
uint16_t getDwarfVersion() const
static void encode(MCContext &Context, MCDwarfLineTableParams Params, int64_t LineDelta, uint64_t AddrDelta, SmallVectorImpl< char > &OS)
Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
void setAlignment(Align Value)
virtual void emitBinaryData(StringRef Data)
Functionally identical to EmitBytes.
MCContext & getContext() const
virtual void emitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc())
Emit a label for Symbol into the current section.
virtual void emitIntValue(uint64_t Value, unsigned Size)
Special case of EmitValue that avoids the client having to pass in a MCExpr for constant integers.
void emitInt16(uint64_t Value)
unsigned emitULEB128IntValue(uint64_t Value, unsigned PadTo=0)
Special case of EmitULEB128Value that avoids the client having to pass in a MCExpr for constant integ...
virtual void switchSection(MCSection *Section, uint32_t Subsec=0)
Set the current section where code is being emitted to Section.
void emitInt32(uint64_t Value)
unsigned emitSLEB128IntValue(int64_t Value)
Special case of EmitSLEB128Value that avoids the client having to pass in a MCExpr for constant integ...
void emitInt8(uint64_t Value)
virtual void emitBytes(StringRef Data)
Emit the bytes in Data into the output.
void finish(SMLoc EndLoc=SMLoc())
Finish emission of machine code.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
DwarfDirectory MCUseDwarfDirectory
A string table that doesn't need relocations.
std::vector< DwarfStringPoolEntryRef > getEntriesForEmission() const
Return the list of strings to be emitted.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
constexpr size_t size() const
size - Get the string size.
Helper for making strong types.
Target - Wrapper for Target specific information.
MCCodeEmitter * createMCCodeEmitter(const MCInstrInfo &II, MCContext &Ctx) const
createMCCodeEmitter - Create a target specific code emitter.
MCObjectFileInfo * createMCObjectFileInfo(MCContext &Ctx, bool PIC, bool LargeCodeModel=false) const
Create a MCObjectFileInfo implementation for the specified target triple.
MCSubtargetInfo * createMCSubtargetInfo(StringRef TheTriple, StringRef CPU, StringRef Features) const
createMCSubtargetInfo - Create a MCSubtargetInfo implementation.
MCAsmBackend * createMCAsmBackend(const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) const
createMCAsmBackend - Create a target specific assembly parser.
MCRegisterInfo * createMCRegInfo(StringRef TT) const
createMCRegInfo - Create a MCRegisterInfo implementation.
MCStreamer * createMCObjectStreamer(const Triple &T, MCContext &Ctx, std::unique_ptr< MCAsmBackend > TAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter, const MCSubtargetInfo &STI) const
Create a target specific MCStreamer.
TargetMachine * createTargetMachine(StringRef TT, StringRef CPU, StringRef Features, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM=std::nullopt, CodeGenOptLevel OL=CodeGenOptLevel::Default, bool JIT=false) const
createTargetMachine - Create a target specific machine implementation for the specified Triple.
MCAsmInfo * createMCAsmInfo(const MCRegisterInfo &MRI, StringRef TheTriple, const MCTargetOptions &Options) const
createMCAsmInfo - Create a MCAsmInfo implementation for the specified target triple.
MCInstPrinter * createMCInstPrinter(const Triple &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI) const
MCStreamer * createAsmStreamer(MCContext &Ctx, std::unique_ptr< formatted_raw_ostream > OS, MCInstPrinter *IP, std::unique_ptr< MCCodeEmitter > CE, std::unique_ptr< MCAsmBackend > TAB) const
AsmPrinter * createAsmPrinter(TargetMachine &TM, std::unique_ptr< MCStreamer > &&Streamer) const
createAsmPrinter - Create a target specific assembly printer pass.
MCInstrInfo * createMCInstrInfo() const
createMCInstrInfo - Create a MCInstrInfo implementation.
Triple - Helper class for working with autoconf configuration names.
const std::string & getTriple() const
std::function< void(const Twine &Warning, StringRef Context, const DWARFDie *DIE)> MessageHandlerTy
OutputFileType
Type of output file.
uint64_t getValueIndex(T Value)
Stores all information relating to a compile unit, be it in its original instance in the object file ...
void emitDwarfDebugAddrsFooter(const CompileUnit &Unit, MCSymbol *EndLabel) override
Emit .debug_addr footer.
void emitDwarfDebugArangesTable(const CompileUnit &Unit, const AddressRanges &LinkedRanges) override
Emit .debug_aranges entries for Unit.
void emitAppleTypes(AccelTable< AppleAccelTableStaticTypeData > &Table) override
Emit Apple type accelerator table.
void emitDIE(DIE &Die) override
Recursively emit the DIE tree rooted at Die.
void emitDwarfDebugLocListFragment(const CompileUnit &Unit, const DWARFLocationExpressionsVector &LinkedLocationExpression, PatchLocation Patch, DebugDieValuePool &AddrPool) override
Emit debug ranges(.debug_loc, .debug_loclists) fragment.
void emitStrings(const NonRelocatableStringpool &Pool) override
Emit the string table described by Pool into .debug_str table.
static Expected< std::unique_ptr< DwarfStreamer > > createStreamer(const Triple &TheTriple, DWARFLinkerBase::OutputFileType FileType, raw_pwrite_stream &OutFile, DWARFLinkerBase::MessageHandlerTy Warning)
void emitDebugNames(DWARF5AccelTable &Table) override
Emit DWARF debug names.
void emitDwarfDebugLocListFooter(const CompileUnit &Unit, MCSymbol *EndLabel) override
Emit debug ranges(.debug_loc, .debug_loclists) footer.
MCSymbol * emitDwarfDebugAddrsHeader(const CompileUnit &Unit) override
Emit .debug_addr header.
void emitStringOffsets(const SmallVector< uint64_t > &StringOffset, uint16_t TargetDWARFVersion) override
Emit the debug string offset table described by StringOffsets into the .debug_str_offsets table.
void emitLineStrings(const NonRelocatableStringpool &Pool) override
Emit the string table described by Pool into .debug_line_str table.
Error init(Triple TheTriple, StringRef Swift5ReflectionSegmentName)
void emitSwiftReflectionSection(llvm::binaryformat::Swift5ReflectionSectionKind ReflSectionKind, StringRef Buffer, uint32_t Alignment, uint32_t Size)
Emit the swift reflection section stored in Buffer.
MCSymbol * emitDwarfDebugRangeListHeader(const CompileUnit &Unit) override
Emit debug ranges(.debug_ranges, .debug_rnglists) header.
void emitCIE(StringRef CIEBytes) override
Emit a CIE.
void emitSectionContents(StringRef SecData, DebugSectionKind SecKind) override
Emit contents of section SecName From Obj.
void emitAppleNames(AccelTable< AppleAccelTableStaticOffsetData > &Table) override
Emit Apple names accelerator table.
void finish() override
Dump the file to the disk.
void emitAbbrevs(const std::vector< std::unique_ptr< DIEAbbrev > > &Abbrevs, unsigned DwarfVersion) override
Emit the abbreviation table Abbrevs to the debug_abbrev section.
MCSymbol * emitDwarfDebugLocListHeader(const CompileUnit &Unit) override
Emit debug locations(.debug_loc, .debug_loclists) header.
void emitFDE(uint32_t CIEOffset, uint32_t AddreSize, uint64_t Address, StringRef Bytes) override
Emit an FDE with data Bytes.
void emitPubNamesForUnit(const CompileUnit &Unit) override
Emit the .debug_pubnames contribution for Unit.
void emitDwarfDebugRangeListFragment(const CompileUnit &Unit, const AddressRanges &LinkedRanges, PatchLocation Patch, DebugDieValuePool &AddrPool) override
Emit debug ranges(.debug_ranges, .debug_rnglists) fragment.
void emitPubTypesForUnit(const CompileUnit &Unit) override
Emit the .debug_pubtypes contribution for Unit.
void emitLineTableForUnit(const DWARFDebugLine::LineTable &LineTable, const CompileUnit &Unit, OffsetsStringPool &DebugStrPool, OffsetsStringPool &DebugLineStrPool) override
Emit .debug_line table entry for specified LineTable.
void emitDwarfDebugAddrs(const SmallVector< uint64_t > &Addrs, uint8_t AddrSize) override
Emit the addresses described by Addrs into .debug_addr table.
void emitAppleObjc(AccelTable< AppleAccelTableStaticOffsetData > &Table) override
Emit Apple Objective-C accelerator table.
void emitAppleNamespaces(AccelTable< AppleAccelTableStaticOffsetData > &Table) override
Emit Apple namespaces accelerator table.
void emitMacroTables(DWARFContext *Context, const Offset2UnitMap &UnitMacroMap, OffsetsStringPool &StringPool) override
Emit all available macro tables(DWARFv4 and DWARFv5).
void switchToDebugInfoSection(unsigned DwarfVersion)
Set the current output section to debug_info and change the MC Dwarf version to DwarfVersion.
void emitCompileUnitHeader(CompileUnit &Unit, unsigned DwarfVersion) override
Emit the compilation unit header for Unit in the debug_info section.
void emitSwiftAST(StringRef Buffer)
Emit the swift_ast section stored in Buffer.
void emitDwarfDebugRangeListFooter(const CompileUnit &Unit, MCSymbol *EndLabel) override
Emit debug ranges(.debug_ranges, .debug_rnglists) footer.
An abstract base class for streams implementations that also support a pwrite operation.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
DebugSectionKind
List of tracked debug tables.
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
DwarfFormat
Constants that define the DWARF format as 32 or 64 bit.
uint8_t getDwarfOffsetByteSize(DwarfFormat Format)
The size of a reference determined by the DWARF 32/64-bit format.
@ DW_ARANGES_VERSION
Section version number for .debug_aranges.
@ DW_PUBNAMES_VERSION
Section version number for .debug_pubnames.
@ DW_LENGTH_DWARF64
Indicator of 64-bit DWARF format.
MCTargetOptions InitMCTargetOptionsFromFlags()
This is an optimization pass for GlobalISel generic memory operations.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
std::vector< DWARFLocationExpression > DWARFLocationExpressionsVector
Represents a set of absolute location expressions.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
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...
unsigned getULEB128Size(uint64_t Value)
Utility function to get the size of the ULEB128-encoded value.
void emitAppleAccelTable(AsmPrinter *Asm, AccelTable< DataT > &Contents, StringRef Prefix, const MCSymbol *SecBegin)
Emit an Apple Accelerator Table consisting of entries in the specified AccelTable.
void emitDWARF5AccelTable(AsmPrinter *Asm, DWARF5AccelTable &Contents, const DwarfDebug &DD, ArrayRef< std::unique_ptr< DwarfCompileUnit > > CUs)
unsigned getSLEB128Size(int64_t Value)
Utility function to get the size of the SLEB128-encoded value.
This struct is a compact representation of a valid (non-zero power of two) alignment.
uint8_t MinInstLength
The size in bytes of the smallest target machine instruction.
int8_t LineBase
This parameter affects the meaning of the special opcodes. See below.
uint8_t LineRange
This parameter affects the meaning of the special opcodes. See below.
uint8_t OpcodeBase
The number assigned to the first special opcode.
dwarf::FormParams FormParams
Version, address size (starting in v5), and DWARF32/64 format; these parameters affect interpretation...
Standard .debug_line state machine structure.
Represents a single DWARF expression, whose value is location-dependent.
uint8_t DWARF2LineOpcodeBase
First special line opcode - leave room for the standard opcodes.
uint8_t DWARF2LineRange
Range of line offsets in a special line info. opcode.
int8_t DWARF2LineBase
Minimum line offset in a special line info.
static const Target * lookupTarget(StringRef Triple, std::string &Error)
lookupTarget - Lookup a target based on a target triple.
void set(uint64_t New) const