1 //=== DWARFLinker.cpp -----------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/DWARFLinker/DWARFLinker.h"
10 #include "llvm/ADT/ArrayRef.h"
11 #include "llvm/ADT/BitVector.h"
12 #include "llvm/ADT/STLExtras.h"
13 #include "llvm/ADT/Triple.h"
14 #include "llvm/CodeGen/NonRelocatableStringpool.h"
15 #include "llvm/DWARFLinker/DWARFLinkerDeclContext.h"
16 #include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
17 #include "llvm/DebugInfo/DWARF/DWARFContext.h"
18 #include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
19 #include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
20 #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
21 #include "llvm/DebugInfo/DWARF/DWARFDie.h"
22 #include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
23 #include "llvm/DebugInfo/DWARF/DWARFSection.h"
24 #include "llvm/DebugInfo/DWARF/DWARFUnit.h"
25 #include "llvm/Support/DataExtractor.h"
26 #include "llvm/Support/Error.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/ErrorOr.h"
29 #include "llvm/Support/FormatVariadic.h"
30 #include "llvm/Support/LEB128.h"
31 #include "llvm/Support/Path.h"
32 #include "llvm/Support/ThreadPool.h"
33 #include <vector>
34 
35 namespace llvm {
36 
37 /// Hold the input and output of the debug info size in bytes.
38 struct DebugInfoSize {
39   uint64_t Input;
40   uint64_t Output;
41 };
42 
43 /// Compute the total size of the debug info.
44 static uint64_t getDebugInfoSize(DWARFContext &Dwarf) {
45   uint64_t Size = 0;
46   for (auto &Unit : Dwarf.compile_units()) {
47     Size += Unit->getLength();
48   }
49   return Size;
50 }
51 
52 /// Similar to DWARFUnitSection::getUnitForOffset(), but returning our
53 /// CompileUnit object instead.
54 static CompileUnit *getUnitForOffset(const UnitListTy &Units, uint64_t Offset) {
55   auto CU = llvm::upper_bound(
56       Units, Offset, [](uint64_t LHS, const std::unique_ptr<CompileUnit> &RHS) {
57         return LHS < RHS->getOrigUnit().getNextUnitOffset();
58       });
59   return CU != Units.end() ? CU->get() : nullptr;
60 }
61 
62 /// Resolve the DIE attribute reference that has been extracted in \p RefValue.
63 /// The resulting DIE might be in another CompileUnit which is stored into \p
64 /// ReferencedCU. \returns null if resolving fails for any reason.
65 DWARFDie DWARFLinker::resolveDIEReference(const DWARFFile &File,
66                                           const UnitListTy &Units,
67                                           const DWARFFormValue &RefValue,
68                                           const DWARFDie &DIE,
69                                           CompileUnit *&RefCU) {
70   assert(RefValue.isFormClass(DWARFFormValue::FC_Reference));
71   uint64_t RefOffset = *RefValue.getAsReference();
72   if ((RefCU = getUnitForOffset(Units, RefOffset)))
73     if (const auto RefDie = RefCU->getOrigUnit().getDIEForOffset(RefOffset)) {
74       // In a file with broken references, an attribute might point to a NULL
75       // DIE.
76       if (!RefDie.isNULL())
77         return RefDie;
78     }
79 
80   reportWarning("could not find referenced DIE", File, &DIE);
81   return DWARFDie();
82 }
83 
84 /// \returns whether the passed \a Attr type might contain a DIE reference
85 /// suitable for ODR uniquing.
86 static bool isODRAttribute(uint16_t Attr) {
87   switch (Attr) {
88   default:
89     return false;
90   case dwarf::DW_AT_type:
91   case dwarf::DW_AT_containing_type:
92   case dwarf::DW_AT_specification:
93   case dwarf::DW_AT_abstract_origin:
94   case dwarf::DW_AT_import:
95     return true;
96   }
97   llvm_unreachable("Improper attribute.");
98 }
99 
100 static bool isTypeTag(uint16_t Tag) {
101   switch (Tag) {
102   case dwarf::DW_TAG_array_type:
103   case dwarf::DW_TAG_class_type:
104   case dwarf::DW_TAG_enumeration_type:
105   case dwarf::DW_TAG_pointer_type:
106   case dwarf::DW_TAG_reference_type:
107   case dwarf::DW_TAG_string_type:
108   case dwarf::DW_TAG_structure_type:
109   case dwarf::DW_TAG_subroutine_type:
110   case dwarf::DW_TAG_typedef:
111   case dwarf::DW_TAG_union_type:
112   case dwarf::DW_TAG_ptr_to_member_type:
113   case dwarf::DW_TAG_set_type:
114   case dwarf::DW_TAG_subrange_type:
115   case dwarf::DW_TAG_base_type:
116   case dwarf::DW_TAG_const_type:
117   case dwarf::DW_TAG_constant:
118   case dwarf::DW_TAG_file_type:
119   case dwarf::DW_TAG_namelist:
120   case dwarf::DW_TAG_packed_type:
121   case dwarf::DW_TAG_volatile_type:
122   case dwarf::DW_TAG_restrict_type:
123   case dwarf::DW_TAG_atomic_type:
124   case dwarf::DW_TAG_interface_type:
125   case dwarf::DW_TAG_unspecified_type:
126   case dwarf::DW_TAG_shared_type:
127     return true;
128   default:
129     break;
130   }
131   return false;
132 }
133 
134 AddressesMap::~AddressesMap() {}
135 
136 DwarfEmitter::~DwarfEmitter() {}
137 
138 static Optional<StringRef> StripTemplateParameters(StringRef Name) {
139   // We are looking for template parameters to strip from Name. e.g.
140   //
141   //  operator<<B>
142   //
143   // We look for > at the end but if it does not contain any < then we
144   // have something like operator>>. We check for the operator<=> case.
145   if (!Name.endswith(">") || Name.count("<") == 0 || Name.endswith("<=>"))
146     return {};
147 
148   // How many < until we have the start of the template parameters.
149   size_t NumLeftAnglesToSkip = 1;
150 
151   // If we have operator<=> then we need to skip its < as well.
152   NumLeftAnglesToSkip += Name.count("<=>");
153 
154   size_t RightAngleCount = Name.count('>');
155   size_t LeftAngleCount = Name.count('<');
156 
157   // If we have more < than > we have operator< or operator<<
158   // we to account for their < as well.
159   if (LeftAngleCount > RightAngleCount)
160     NumLeftAnglesToSkip += LeftAngleCount - RightAngleCount;
161 
162   size_t StartOfTemplate = 0;
163   while (NumLeftAnglesToSkip--)
164     StartOfTemplate = Name.find('<', StartOfTemplate) + 1;
165 
166   return Name.substr(0, StartOfTemplate - 1);
167 }
168 
169 bool DWARFLinker::DIECloner::getDIENames(const DWARFDie &Die,
170                                          AttributesInfo &Info,
171                                          OffsetsStringPool &StringPool,
172                                          bool StripTemplate) {
173   // This function will be called on DIEs having low_pcs and
174   // ranges. As getting the name might be more expansive, filter out
175   // blocks directly.
176   if (Die.getTag() == dwarf::DW_TAG_lexical_block)
177     return false;
178 
179   if (!Info.MangledName)
180     if (const char *MangledName = Die.getLinkageName())
181       Info.MangledName = StringPool.getEntry(MangledName);
182 
183   if (!Info.Name)
184     if (const char *Name = Die.getShortName())
185       Info.Name = StringPool.getEntry(Name);
186 
187   if (!Info.MangledName)
188     Info.MangledName = Info.Name;
189 
190   if (StripTemplate && Info.Name && Info.MangledName != Info.Name) {
191     StringRef Name = Info.Name.getString();
192     if (Optional<StringRef> StrippedName = StripTemplateParameters(Name))
193       Info.NameWithoutTemplate = StringPool.getEntry(*StrippedName);
194   }
195 
196   return Info.Name || Info.MangledName;
197 }
198 
199 /// Resolve the relative path to a build artifact referenced by DWARF by
200 /// applying DW_AT_comp_dir.
201 static void resolveRelativeObjectPath(SmallVectorImpl<char> &Buf, DWARFDie CU) {
202   sys::path::append(Buf, dwarf::toString(CU.find(dwarf::DW_AT_comp_dir), ""));
203 }
204 
205 /// Collect references to parseable Swift interfaces in imported
206 /// DW_TAG_module blocks.
207 static void analyzeImportedModule(
208     const DWARFDie &DIE, CompileUnit &CU,
209     swiftInterfacesMap *ParseableSwiftInterfaces,
210     std::function<void(const Twine &, const DWARFDie &)> ReportWarning) {
211   if (CU.getLanguage() != dwarf::DW_LANG_Swift)
212     return;
213 
214   if (!ParseableSwiftInterfaces)
215     return;
216 
217   StringRef Path = dwarf::toStringRef(DIE.find(dwarf::DW_AT_LLVM_include_path));
218   if (!Path.endswith(".swiftinterface"))
219     return;
220   // Don't track interfaces that are part of the SDK.
221   StringRef SysRoot = dwarf::toStringRef(DIE.find(dwarf::DW_AT_LLVM_sysroot));
222   if (SysRoot.empty())
223     SysRoot = CU.getSysRoot();
224   if (!SysRoot.empty() && Path.startswith(SysRoot))
225     return;
226   if (Optional<DWARFFormValue> Val = DIE.find(dwarf::DW_AT_name))
227     if (Optional<const char *> Name = Val->getAsCString()) {
228       auto &Entry = (*ParseableSwiftInterfaces)[*Name];
229       // The prepend path is applied later when copying.
230       DWARFDie CUDie = CU.getOrigUnit().getUnitDIE();
231       SmallString<128> ResolvedPath;
232       if (sys::path::is_relative(Path))
233         resolveRelativeObjectPath(ResolvedPath, CUDie);
234       sys::path::append(ResolvedPath, Path);
235       if (!Entry.empty() && Entry != ResolvedPath)
236         ReportWarning(
237             Twine("Conflicting parseable interfaces for Swift Module ") +
238                 *Name + ": " + Entry + " and " + Path,
239             DIE);
240       Entry = std::string(ResolvedPath.str());
241     }
242 }
243 
244 /// The distinct types of work performed by the work loop in
245 /// analyzeContextInfo.
246 enum class ContextWorklistItemType : uint8_t {
247   AnalyzeContextInfo,
248   UpdateChildPruning,
249   UpdatePruning,
250 };
251 
252 /// This class represents an item in the work list. The type defines what kind
253 /// of work needs to be performed when processing the current item. Everything
254 /// but the Type and Die fields are optional based on the type.
255 struct ContextWorklistItem {
256   DWARFDie Die;
257   unsigned ParentIdx;
258   union {
259     CompileUnit::DIEInfo *OtherInfo;
260     DeclContext *Context;
261   };
262   ContextWorklistItemType Type;
263   bool InImportedModule;
264 
265   ContextWorklistItem(DWARFDie Die, ContextWorklistItemType T,
266                       CompileUnit::DIEInfo *OtherInfo = nullptr)
267       : Die(Die), ParentIdx(0), OtherInfo(OtherInfo), Type(T),
268         InImportedModule(false) {}
269 
270   ContextWorklistItem(DWARFDie Die, DeclContext *Context, unsigned ParentIdx,
271                       bool InImportedModule)
272       : Die(Die), ParentIdx(ParentIdx), Context(Context),
273         Type(ContextWorklistItemType::AnalyzeContextInfo),
274         InImportedModule(InImportedModule) {}
275 };
276 
277 static bool updatePruning(const DWARFDie &Die, CompileUnit &CU,
278                           uint64_t ModulesEndOffset) {
279   CompileUnit::DIEInfo &Info = CU.getInfo(Die);
280 
281   // Prune this DIE if it is either a forward declaration inside a
282   // DW_TAG_module or a DW_TAG_module that contains nothing but
283   // forward declarations.
284   Info.Prune &= (Die.getTag() == dwarf::DW_TAG_module) ||
285                 (isTypeTag(Die.getTag()) &&
286                  dwarf::toUnsigned(Die.find(dwarf::DW_AT_declaration), 0));
287 
288   // Only prune forward declarations inside a DW_TAG_module for which a
289   // definition exists elsewhere.
290   if (ModulesEndOffset == 0)
291     Info.Prune &= Info.Ctxt && Info.Ctxt->getCanonicalDIEOffset();
292   else
293     Info.Prune &= Info.Ctxt && Info.Ctxt->getCanonicalDIEOffset() > 0 &&
294                   Info.Ctxt->getCanonicalDIEOffset() <= ModulesEndOffset;
295 
296   return Info.Prune;
297 }
298 
299 static void updateChildPruning(const DWARFDie &Die, CompileUnit &CU,
300                                CompileUnit::DIEInfo &ChildInfo) {
301   CompileUnit::DIEInfo &Info = CU.getInfo(Die);
302   Info.Prune &= ChildInfo.Prune;
303 }
304 
305 /// Recursive helper to build the global DeclContext information and
306 /// gather the child->parent relationships in the original compile unit.
307 ///
308 /// This function uses the same work list approach as lookForDIEsToKeep.
309 ///
310 /// \return true when this DIE and all of its children are only
311 /// forward declarations to types defined in external clang modules
312 /// (i.e., forward declarations that are children of a DW_TAG_module).
313 static bool analyzeContextInfo(
314     const DWARFDie &DIE, unsigned ParentIdx, CompileUnit &CU,
315     DeclContext *CurrentDeclContext, DeclContextTree &Contexts,
316     uint64_t ModulesEndOffset, swiftInterfacesMap *ParseableSwiftInterfaces,
317     std::function<void(const Twine &, const DWARFDie &)> ReportWarning,
318     bool InImportedModule = false) {
319   // LIFO work list.
320   std::vector<ContextWorklistItem> Worklist;
321   Worklist.emplace_back(DIE, CurrentDeclContext, ParentIdx, InImportedModule);
322 
323   while (!Worklist.empty()) {
324     ContextWorklistItem Current = Worklist.back();
325     Worklist.pop_back();
326 
327     switch (Current.Type) {
328     case ContextWorklistItemType::UpdatePruning:
329       updatePruning(Current.Die, CU, ModulesEndOffset);
330       continue;
331     case ContextWorklistItemType::UpdateChildPruning:
332       updateChildPruning(Current.Die, CU, *Current.OtherInfo);
333       continue;
334     case ContextWorklistItemType::AnalyzeContextInfo:
335       break;
336     }
337 
338     unsigned Idx = CU.getOrigUnit().getDIEIndex(Current.Die);
339     CompileUnit::DIEInfo &Info = CU.getInfo(Idx);
340 
341     // Clang imposes an ODR on modules(!) regardless of the language:
342     //  "The module-id should consist of only a single identifier,
343     //   which provides the name of the module being defined. Each
344     //   module shall have a single definition."
345     //
346     // This does not extend to the types inside the modules:
347     //  "[I]n C, this implies that if two structs are defined in
348     //   different submodules with the same name, those two types are
349     //   distinct types (but may be compatible types if their
350     //   definitions match)."
351     //
352     // We treat non-C++ modules like namespaces for this reason.
353     if (Current.Die.getTag() == dwarf::DW_TAG_module &&
354         Current.ParentIdx == 0 &&
355         dwarf::toString(Current.Die.find(dwarf::DW_AT_name), "") !=
356             CU.getClangModuleName()) {
357       Current.InImportedModule = true;
358       analyzeImportedModule(Current.Die, CU, ParseableSwiftInterfaces,
359                             ReportWarning);
360     }
361 
362     Info.ParentIdx = Current.ParentIdx;
363     bool InClangModule = CU.isClangModule() || Current.InImportedModule;
364     if (CU.hasODR() || InClangModule) {
365       if (Current.Context) {
366         auto PtrInvalidPair = Contexts.getChildDeclContext(
367             *Current.Context, Current.Die, CU, InClangModule);
368         Current.Context = PtrInvalidPair.getPointer();
369         Info.Ctxt =
370             PtrInvalidPair.getInt() ? nullptr : PtrInvalidPair.getPointer();
371         if (Info.Ctxt)
372           Info.Ctxt->setDefinedInClangModule(InClangModule);
373       } else
374         Info.Ctxt = Current.Context = nullptr;
375     }
376 
377     Info.Prune = Current.InImportedModule;
378     // Add children in reverse order to the worklist to effectively process
379     // them in order.
380     Worklist.emplace_back(Current.Die, ContextWorklistItemType::UpdatePruning);
381     for (auto Child : reverse(Current.Die.children())) {
382       CompileUnit::DIEInfo &ChildInfo = CU.getInfo(Child);
383       Worklist.emplace_back(
384           Current.Die, ContextWorklistItemType::UpdateChildPruning, &ChildInfo);
385       Worklist.emplace_back(Child, Current.Context, Idx,
386                             Current.InImportedModule);
387     }
388   }
389 
390   return CU.getInfo(DIE).Prune;
391 }
392 
393 static bool dieNeedsChildrenToBeMeaningful(uint32_t Tag) {
394   switch (Tag) {
395   default:
396     return false;
397   case dwarf::DW_TAG_class_type:
398   case dwarf::DW_TAG_common_block:
399   case dwarf::DW_TAG_lexical_block:
400   case dwarf::DW_TAG_structure_type:
401   case dwarf::DW_TAG_subprogram:
402   case dwarf::DW_TAG_subroutine_type:
403   case dwarf::DW_TAG_union_type:
404     return true;
405   }
406   llvm_unreachable("Invalid Tag");
407 }
408 
409 void DWARFLinker::cleanupAuxiliarryData(LinkContext &Context) {
410   Context.clear();
411 
412   for (auto I = DIEBlocks.begin(), E = DIEBlocks.end(); I != E; ++I)
413     (*I)->~DIEBlock();
414   for (auto I = DIELocs.begin(), E = DIELocs.end(); I != E; ++I)
415     (*I)->~DIELoc();
416 
417   DIEBlocks.clear();
418   DIELocs.clear();
419   DIEAlloc.Reset();
420 }
421 
422 /// Check if a variable describing DIE should be kept.
423 /// \returns updated TraversalFlags.
424 unsigned DWARFLinker::shouldKeepVariableDIE(AddressesMap &RelocMgr,
425                                             const DWARFDie &DIE,
426                                             CompileUnit::DIEInfo &MyInfo,
427                                             unsigned Flags) {
428   const auto *Abbrev = DIE.getAbbreviationDeclarationPtr();
429 
430   // Global variables with constant value can always be kept.
431   if (!(Flags & TF_InFunctionScope) &&
432       Abbrev->findAttributeIndex(dwarf::DW_AT_const_value)) {
433     MyInfo.InDebugMap = true;
434     return Flags | TF_Keep;
435   }
436 
437   // See if there is a relocation to a valid debug map entry inside
438   // this variable's location. The order is important here. We want to
439   // always check if the variable has a valid relocation, so that the
440   // DIEInfo is filled. However, we don't want a static variable in a
441   // function to force us to keep the enclosing function.
442   if (!RelocMgr.hasLiveMemoryLocation(DIE, MyInfo) ||
443       (Flags & TF_InFunctionScope))
444     return Flags;
445 
446   if (Options.Verbose) {
447     outs() << "Keeping variable DIE:";
448     DIDumpOptions DumpOpts;
449     DumpOpts.ChildRecurseDepth = 0;
450     DumpOpts.Verbose = Options.Verbose;
451     DIE.dump(outs(), 8 /* Indent */, DumpOpts);
452   }
453 
454   return Flags | TF_Keep;
455 }
456 
457 /// Check if a function describing DIE should be kept.
458 /// \returns updated TraversalFlags.
459 unsigned DWARFLinker::shouldKeepSubprogramDIE(
460     AddressesMap &RelocMgr, RangesTy &Ranges, const DWARFDie &DIE,
461     const DWARFFile &File, CompileUnit &Unit, CompileUnit::DIEInfo &MyInfo,
462     unsigned Flags) {
463   Flags |= TF_InFunctionScope;
464 
465   auto LowPc = dwarf::toAddress(DIE.find(dwarf::DW_AT_low_pc));
466   if (!LowPc)
467     return Flags;
468 
469   assert(LowPc.hasValue() && "low_pc attribute is not an address.");
470   if (!RelocMgr.hasLiveAddressRange(DIE, MyInfo))
471     return Flags;
472 
473   if (Options.Verbose) {
474     outs() << "Keeping subprogram DIE:";
475     DIDumpOptions DumpOpts;
476     DumpOpts.ChildRecurseDepth = 0;
477     DumpOpts.Verbose = Options.Verbose;
478     DIE.dump(outs(), 8 /* Indent */, DumpOpts);
479   }
480 
481   if (DIE.getTag() == dwarf::DW_TAG_label) {
482     if (Unit.hasLabelAt(*LowPc))
483       return Flags;
484 
485     DWARFUnit &OrigUnit = Unit.getOrigUnit();
486     // FIXME: dsymutil-classic compat. dsymutil-classic doesn't consider labels
487     // that don't fall into the CU's aranges. This is wrong IMO. Debug info
488     // generation bugs aside, this is really wrong in the case of labels, where
489     // a label marking the end of a function will have a PC == CU's high_pc.
490     if (dwarf::toAddress(OrigUnit.getUnitDIE().find(dwarf::DW_AT_high_pc))
491             .getValueOr(UINT64_MAX) <= LowPc)
492       return Flags;
493     Unit.addLabelLowPc(*LowPc, MyInfo.AddrAdjust);
494     return Flags | TF_Keep;
495   }
496 
497   Flags |= TF_Keep;
498 
499   Optional<uint64_t> HighPc = DIE.getHighPC(*LowPc);
500   if (!HighPc) {
501     reportWarning("Function without high_pc. Range will be discarded.\n", File,
502                   &DIE);
503     return Flags;
504   }
505 
506   // Replace the debug map range with a more accurate one.
507   Ranges[*LowPc] = ObjFileAddressRange(*HighPc, MyInfo.AddrAdjust);
508   Unit.addFunctionRange(*LowPc, *HighPc, MyInfo.AddrAdjust);
509   return Flags;
510 }
511 
512 /// Check if a DIE should be kept.
513 /// \returns updated TraversalFlags.
514 unsigned DWARFLinker::shouldKeepDIE(AddressesMap &RelocMgr, RangesTy &Ranges,
515                                     const DWARFDie &DIE, const DWARFFile &File,
516                                     CompileUnit &Unit,
517                                     CompileUnit::DIEInfo &MyInfo,
518                                     unsigned Flags) {
519   switch (DIE.getTag()) {
520   case dwarf::DW_TAG_constant:
521   case dwarf::DW_TAG_variable:
522     return shouldKeepVariableDIE(RelocMgr, DIE, MyInfo, Flags);
523   case dwarf::DW_TAG_subprogram:
524   case dwarf::DW_TAG_label:
525     return shouldKeepSubprogramDIE(RelocMgr, Ranges, DIE, File, Unit, MyInfo,
526                                    Flags);
527   case dwarf::DW_TAG_base_type:
528     // DWARF Expressions may reference basic types, but scanning them
529     // is expensive. Basic types are tiny, so just keep all of them.
530   case dwarf::DW_TAG_imported_module:
531   case dwarf::DW_TAG_imported_declaration:
532   case dwarf::DW_TAG_imported_unit:
533     // We always want to keep these.
534     return Flags | TF_Keep;
535   default:
536     break;
537   }
538 
539   return Flags;
540 }
541 
542 /// Helper that updates the completeness of the current DIE based on the
543 /// completeness of one of its children. It depends on the incompleteness of
544 /// the children already being computed.
545 static void updateChildIncompleteness(const DWARFDie &Die, CompileUnit &CU,
546                                       CompileUnit::DIEInfo &ChildInfo) {
547   switch (Die.getTag()) {
548   case dwarf::DW_TAG_structure_type:
549   case dwarf::DW_TAG_class_type:
550     break;
551   default:
552     return;
553   }
554 
555   CompileUnit::DIEInfo &MyInfo = CU.getInfo(Die);
556 
557   if (ChildInfo.Incomplete || ChildInfo.Prune)
558     MyInfo.Incomplete = true;
559 }
560 
561 /// Helper that updates the completeness of the current DIE based on the
562 /// completeness of the DIEs it references. It depends on the incompleteness of
563 /// the referenced DIE already being computed.
564 static void updateRefIncompleteness(const DWARFDie &Die, CompileUnit &CU,
565                                     CompileUnit::DIEInfo &RefInfo) {
566   switch (Die.getTag()) {
567   case dwarf::DW_TAG_typedef:
568   case dwarf::DW_TAG_member:
569   case dwarf::DW_TAG_reference_type:
570   case dwarf::DW_TAG_ptr_to_member_type:
571   case dwarf::DW_TAG_pointer_type:
572     break;
573   default:
574     return;
575   }
576 
577   CompileUnit::DIEInfo &MyInfo = CU.getInfo(Die);
578 
579   if (MyInfo.Incomplete)
580     return;
581 
582   if (RefInfo.Incomplete)
583     MyInfo.Incomplete = true;
584 }
585 
586 /// Look at the children of the given DIE and decide whether they should be
587 /// kept.
588 void DWARFLinker::lookForChildDIEsToKeep(
589     const DWARFDie &Die, CompileUnit &CU, unsigned Flags,
590     SmallVectorImpl<WorklistItem> &Worklist) {
591   // The TF_ParentWalk flag tells us that we are currently walking up the
592   // parent chain of a required DIE, and we don't want to mark all the children
593   // of the parents as kept (consider for example a DW_TAG_namespace node in
594   // the parent chain). There are however a set of DIE types for which we want
595   // to ignore that directive and still walk their children.
596   if (dieNeedsChildrenToBeMeaningful(Die.getTag()))
597     Flags &= ~DWARFLinker::TF_ParentWalk;
598 
599   // We're finished if this DIE has no children or we're walking the parent
600   // chain.
601   if (!Die.hasChildren() || (Flags & DWARFLinker::TF_ParentWalk))
602     return;
603 
604   // Add children in reverse order to the worklist to effectively process them
605   // in order.
606   for (auto Child : reverse(Die.children())) {
607     // Add a worklist item before every child to calculate incompleteness right
608     // after the current child is processed.
609     CompileUnit::DIEInfo &ChildInfo = CU.getInfo(Child);
610     Worklist.emplace_back(Die, CU, WorklistItemType::UpdateChildIncompleteness,
611                           &ChildInfo);
612     Worklist.emplace_back(Child, CU, Flags);
613   }
614 }
615 
616 /// Look at DIEs referenced by the given DIE and decide whether they should be
617 /// kept. All DIEs referenced though attributes should be kept.
618 void DWARFLinker::lookForRefDIEsToKeep(
619     const DWARFDie &Die, CompileUnit &CU, unsigned Flags,
620     const UnitListTy &Units, const DWARFFile &File,
621     SmallVectorImpl<WorklistItem> &Worklist) {
622   bool UseOdr = (Flags & DWARFLinker::TF_DependencyWalk)
623                     ? (Flags & DWARFLinker::TF_ODR)
624                     : CU.hasODR();
625   DWARFUnit &Unit = CU.getOrigUnit();
626   DWARFDataExtractor Data = Unit.getDebugInfoExtractor();
627   const auto *Abbrev = Die.getAbbreviationDeclarationPtr();
628   uint64_t Offset = Die.getOffset() + getULEB128Size(Abbrev->getCode());
629 
630   SmallVector<std::pair<DWARFDie, CompileUnit &>, 4> ReferencedDIEs;
631   for (const auto &AttrSpec : Abbrev->attributes()) {
632     DWARFFormValue Val(AttrSpec.Form);
633     if (!Val.isFormClass(DWARFFormValue::FC_Reference) ||
634         AttrSpec.Attr == dwarf::DW_AT_sibling) {
635       DWARFFormValue::skipValue(AttrSpec.Form, Data, &Offset,
636                                 Unit.getFormParams());
637       continue;
638     }
639 
640     Val.extractValue(Data, &Offset, Unit.getFormParams(), &Unit);
641     CompileUnit *ReferencedCU;
642     if (auto RefDie =
643             resolveDIEReference(File, Units, Val, Die, ReferencedCU)) {
644       CompileUnit::DIEInfo &Info = ReferencedCU->getInfo(RefDie);
645       bool IsModuleRef = Info.Ctxt && Info.Ctxt->getCanonicalDIEOffset() &&
646                          Info.Ctxt->isDefinedInClangModule();
647       // If the referenced DIE has a DeclContext that has already been
648       // emitted, then do not keep the one in this CU. We'll link to
649       // the canonical DIE in cloneDieReferenceAttribute.
650       //
651       // FIXME: compatibility with dsymutil-classic. UseODR shouldn't
652       // be necessary and could be advantageously replaced by
653       // ReferencedCU->hasODR() && CU.hasODR().
654       //
655       // FIXME: compatibility with dsymutil-classic. There is no
656       // reason not to unique ref_addr references.
657       if (AttrSpec.Form != dwarf::DW_FORM_ref_addr && (UseOdr || IsModuleRef) &&
658           Info.Ctxt &&
659           Info.Ctxt != ReferencedCU->getInfo(Info.ParentIdx).Ctxt &&
660           Info.Ctxt->getCanonicalDIEOffset() && isODRAttribute(AttrSpec.Attr))
661         continue;
662 
663       // Keep a module forward declaration if there is no definition.
664       if (!(isODRAttribute(AttrSpec.Attr) && Info.Ctxt &&
665             Info.Ctxt->getCanonicalDIEOffset()))
666         Info.Prune = false;
667       ReferencedDIEs.emplace_back(RefDie, *ReferencedCU);
668     }
669   }
670 
671   unsigned ODRFlag = UseOdr ? DWARFLinker::TF_ODR : 0;
672 
673   // Add referenced DIEs in reverse order to the worklist to effectively
674   // process them in order.
675   for (auto &P : reverse(ReferencedDIEs)) {
676     // Add a worklist item before every child to calculate incompleteness right
677     // after the current child is processed.
678     CompileUnit::DIEInfo &Info = P.second.getInfo(P.first);
679     Worklist.emplace_back(Die, CU, WorklistItemType::UpdateRefIncompleteness,
680                           &Info);
681     Worklist.emplace_back(P.first, P.second,
682                           DWARFLinker::TF_Keep |
683                               DWARFLinker::TF_DependencyWalk | ODRFlag);
684   }
685 }
686 
687 /// Look at the parent of the given DIE and decide whether they should be kept.
688 void DWARFLinker::lookForParentDIEsToKeep(
689     unsigned AncestorIdx, CompileUnit &CU, unsigned Flags,
690     SmallVectorImpl<WorklistItem> &Worklist) {
691   // Stop if we encounter an ancestor that's already marked as kept.
692   if (CU.getInfo(AncestorIdx).Keep)
693     return;
694 
695   DWARFUnit &Unit = CU.getOrigUnit();
696   DWARFDie ParentDIE = Unit.getDIEAtIndex(AncestorIdx);
697   Worklist.emplace_back(CU.getInfo(AncestorIdx).ParentIdx, CU, Flags);
698   Worklist.emplace_back(ParentDIE, CU, Flags);
699 }
700 
701 /// Recursively walk the \p DIE tree and look for DIEs to keep. Store that
702 /// information in \p CU's DIEInfo.
703 ///
704 /// This function is the entry point of the DIE selection algorithm. It is
705 /// expected to walk the DIE tree in file order and (though the mediation of
706 /// its helper) call hasValidRelocation() on each DIE that might be a 'root
707 /// DIE' (See DwarfLinker class comment).
708 ///
709 /// While walking the dependencies of root DIEs, this function is also called,
710 /// but during these dependency walks the file order is not respected. The
711 /// TF_DependencyWalk flag tells us which kind of traversal we are currently
712 /// doing.
713 ///
714 /// The recursive algorithm is implemented iteratively as a work list because
715 /// very deep recursion could exhaust the stack for large projects. The work
716 /// list acts as a scheduler for different types of work that need to be
717 /// performed.
718 ///
719 /// The recursive nature of the algorithm is simulated by running the "main"
720 /// algorithm (LookForDIEsToKeep) followed by either looking at more DIEs
721 /// (LookForChildDIEsToKeep, LookForRefDIEsToKeep, LookForParentDIEsToKeep) or
722 /// fixing up a computed property (UpdateChildIncompleteness,
723 /// UpdateRefIncompleteness).
724 ///
725 /// The return value indicates whether the DIE is incomplete.
726 void DWARFLinker::lookForDIEsToKeep(AddressesMap &AddressesMap,
727                                     RangesTy &Ranges, const UnitListTy &Units,
728                                     const DWARFDie &Die, const DWARFFile &File,
729                                     CompileUnit &Cu, unsigned Flags) {
730   // LIFO work list.
731   SmallVector<WorklistItem, 4> Worklist;
732   Worklist.emplace_back(Die, Cu, Flags);
733 
734   while (!Worklist.empty()) {
735     WorklistItem Current = Worklist.pop_back_val();
736 
737     // Look at the worklist type to decide what kind of work to perform.
738     switch (Current.Type) {
739     case WorklistItemType::UpdateChildIncompleteness:
740       updateChildIncompleteness(Current.Die, Current.CU, *Current.OtherInfo);
741       continue;
742     case WorklistItemType::UpdateRefIncompleteness:
743       updateRefIncompleteness(Current.Die, Current.CU, *Current.OtherInfo);
744       continue;
745     case WorklistItemType::LookForChildDIEsToKeep:
746       lookForChildDIEsToKeep(Current.Die, Current.CU, Current.Flags, Worklist);
747       continue;
748     case WorklistItemType::LookForRefDIEsToKeep:
749       lookForRefDIEsToKeep(Current.Die, Current.CU, Current.Flags, Units, File,
750                            Worklist);
751       continue;
752     case WorklistItemType::LookForParentDIEsToKeep:
753       lookForParentDIEsToKeep(Current.AncestorIdx, Current.CU, Current.Flags,
754                               Worklist);
755       continue;
756     case WorklistItemType::LookForDIEsToKeep:
757       break;
758     }
759 
760     unsigned Idx = Current.CU.getOrigUnit().getDIEIndex(Current.Die);
761     CompileUnit::DIEInfo &MyInfo = Current.CU.getInfo(Idx);
762 
763     if (MyInfo.Prune)
764       continue;
765 
766     // If the Keep flag is set, we are marking a required DIE's dependencies.
767     // If our target is already marked as kept, we're all set.
768     bool AlreadyKept = MyInfo.Keep;
769     if ((Current.Flags & TF_DependencyWalk) && AlreadyKept)
770       continue;
771 
772     // We must not call shouldKeepDIE while called from keepDIEAndDependencies,
773     // because it would screw up the relocation finding logic.
774     if (!(Current.Flags & TF_DependencyWalk))
775       Current.Flags = shouldKeepDIE(AddressesMap, Ranges, Current.Die, File,
776                                     Current.CU, MyInfo, Current.Flags);
777 
778     // Finish by looking for child DIEs. Because of the LIFO worklist we need
779     // to schedule that work before any subsequent items are added to the
780     // worklist.
781     Worklist.emplace_back(Current.Die, Current.CU, Current.Flags,
782                           WorklistItemType::LookForChildDIEsToKeep);
783 
784     if (AlreadyKept || !(Current.Flags & TF_Keep))
785       continue;
786 
787     // If it is a newly kept DIE mark it as well as all its dependencies as
788     // kept.
789     MyInfo.Keep = true;
790 
791     // We're looking for incomplete types.
792     MyInfo.Incomplete =
793         Current.Die.getTag() != dwarf::DW_TAG_subprogram &&
794         Current.Die.getTag() != dwarf::DW_TAG_member &&
795         dwarf::toUnsigned(Current.Die.find(dwarf::DW_AT_declaration), 0);
796 
797     // After looking at the parent chain, look for referenced DIEs. Because of
798     // the LIFO worklist we need to schedule that work before any subsequent
799     // items are added to the worklist.
800     Worklist.emplace_back(Current.Die, Current.CU, Current.Flags,
801                           WorklistItemType::LookForRefDIEsToKeep);
802 
803     bool UseOdr = (Current.Flags & TF_DependencyWalk) ? (Current.Flags & TF_ODR)
804                                                       : Current.CU.hasODR();
805     unsigned ODRFlag = UseOdr ? TF_ODR : 0;
806     unsigned ParFlags = TF_ParentWalk | TF_Keep | TF_DependencyWalk | ODRFlag;
807 
808     // Now schedule the parent walk.
809     Worklist.emplace_back(MyInfo.ParentIdx, Current.CU, ParFlags);
810   }
811 }
812 
813 /// Assign an abbreviation number to \p Abbrev.
814 ///
815 /// Our DIEs get freed after every DebugMapObject has been processed,
816 /// thus the FoldingSet we use to unique DIEAbbrevs cannot refer to
817 /// the instances hold by the DIEs. When we encounter an abbreviation
818 /// that we don't know, we create a permanent copy of it.
819 void DWARFLinker::assignAbbrev(DIEAbbrev &Abbrev) {
820   // Check the set for priors.
821   FoldingSetNodeID ID;
822   Abbrev.Profile(ID);
823   void *InsertToken;
824   DIEAbbrev *InSet = AbbreviationsSet.FindNodeOrInsertPos(ID, InsertToken);
825 
826   // If it's newly added.
827   if (InSet) {
828     // Assign existing abbreviation number.
829     Abbrev.setNumber(InSet->getNumber());
830   } else {
831     // Add to abbreviation list.
832     Abbreviations.push_back(
833         std::make_unique<DIEAbbrev>(Abbrev.getTag(), Abbrev.hasChildren()));
834     for (const auto &Attr : Abbrev.getData())
835       Abbreviations.back()->AddAttribute(Attr.getAttribute(), Attr.getForm());
836     AbbreviationsSet.InsertNode(Abbreviations.back().get(), InsertToken);
837     // Assign the unique abbreviation number.
838     Abbrev.setNumber(Abbreviations.size());
839     Abbreviations.back()->setNumber(Abbreviations.size());
840   }
841 }
842 
843 unsigned DWARFLinker::DIECloner::cloneStringAttribute(
844     DIE &Die, AttributeSpec AttrSpec, const DWARFFormValue &Val,
845     const DWARFUnit &U, OffsetsStringPool &StringPool, AttributesInfo &Info) {
846   Optional<const char *> String = Val.getAsCString();
847   if (!String)
848     return 0;
849 
850   // Switch everything to out of line strings.
851   auto StringEntry = StringPool.getEntry(*String);
852 
853   // Update attributes info.
854   if (AttrSpec.Attr == dwarf::DW_AT_name)
855     Info.Name = StringEntry;
856   else if (AttrSpec.Attr == dwarf::DW_AT_MIPS_linkage_name ||
857            AttrSpec.Attr == dwarf::DW_AT_linkage_name)
858     Info.MangledName = StringEntry;
859 
860   Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr), dwarf::DW_FORM_strp,
861                DIEInteger(StringEntry.getOffset()));
862 
863   return 4;
864 }
865 
866 unsigned DWARFLinker::DIECloner::cloneDieReferenceAttribute(
867     DIE &Die, const DWARFDie &InputDIE, AttributeSpec AttrSpec,
868     unsigned AttrSize, const DWARFFormValue &Val, const DWARFFile &File,
869     CompileUnit &Unit) {
870   const DWARFUnit &U = Unit.getOrigUnit();
871   uint64_t Ref = *Val.getAsReference();
872 
873   DIE *NewRefDie = nullptr;
874   CompileUnit *RefUnit = nullptr;
875   DeclContext *Ctxt = nullptr;
876 
877   DWARFDie RefDie =
878       Linker.resolveDIEReference(File, CompileUnits, Val, InputDIE, RefUnit);
879 
880   // If the referenced DIE is not found,  drop the attribute.
881   if (!RefDie || AttrSpec.Attr == dwarf::DW_AT_sibling)
882     return 0;
883 
884   CompileUnit::DIEInfo &RefInfo = RefUnit->getInfo(RefDie);
885 
886   // If we already have emitted an equivalent DeclContext, just point
887   // at it.
888   if (isODRAttribute(AttrSpec.Attr)) {
889     Ctxt = RefInfo.Ctxt;
890     if (Ctxt && Ctxt->getCanonicalDIEOffset()) {
891       DIEInteger Attr(Ctxt->getCanonicalDIEOffset());
892       Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
893                    dwarf::DW_FORM_ref_addr, Attr);
894       return U.getRefAddrByteSize();
895     }
896   }
897 
898   if (!RefInfo.Clone) {
899     assert(Ref > InputDIE.getOffset());
900     // We haven't cloned this DIE yet. Just create an empty one and
901     // store it. It'll get really cloned when we process it.
902     RefInfo.Clone = DIE::get(DIEAlloc, dwarf::Tag(RefDie.getTag()));
903   }
904   NewRefDie = RefInfo.Clone;
905 
906   if (AttrSpec.Form == dwarf::DW_FORM_ref_addr ||
907       (Unit.hasODR() && isODRAttribute(AttrSpec.Attr))) {
908     // We cannot currently rely on a DIEEntry to emit ref_addr
909     // references, because the implementation calls back to DwarfDebug
910     // to find the unit offset. (We don't have a DwarfDebug)
911     // FIXME: we should be able to design DIEEntry reliance on
912     // DwarfDebug away.
913     uint64_t Attr;
914     if (Ref < InputDIE.getOffset()) {
915       // We must have already cloned that DIE.
916       uint32_t NewRefOffset =
917           RefUnit->getStartOffset() + NewRefDie->getOffset();
918       Attr = NewRefOffset;
919       Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
920                    dwarf::DW_FORM_ref_addr, DIEInteger(Attr));
921     } else {
922       // A forward reference. Note and fixup later.
923       Attr = 0xBADDEF;
924       Unit.noteForwardReference(
925           NewRefDie, RefUnit, Ctxt,
926           Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
927                        dwarf::DW_FORM_ref_addr, DIEInteger(Attr)));
928     }
929     return U.getRefAddrByteSize();
930   }
931 
932   Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
933                dwarf::Form(AttrSpec.Form), DIEEntry(*NewRefDie));
934 
935   return AttrSize;
936 }
937 
938 void DWARFLinker::DIECloner::cloneExpression(
939     DataExtractor &Data, DWARFExpression Expression, const DWARFFile &File,
940     CompileUnit &Unit, SmallVectorImpl<uint8_t> &OutputBuffer) {
941   using Encoding = DWARFExpression::Operation::Encoding;
942 
943   uint64_t OpOffset = 0;
944   for (auto &Op : Expression) {
945     auto Description = Op.getDescription();
946     // DW_OP_const_type is variable-length and has 3
947     // operands. DWARFExpression thus far only supports 2.
948     auto Op0 = Description.Op[0];
949     auto Op1 = Description.Op[1];
950     if ((Op0 == Encoding::BaseTypeRef && Op1 != Encoding::SizeNA) ||
951         (Op1 == Encoding::BaseTypeRef && Op0 != Encoding::Size1))
952       Linker.reportWarning("Unsupported DW_OP encoding.", File);
953 
954     if ((Op0 == Encoding::BaseTypeRef && Op1 == Encoding::SizeNA) ||
955         (Op1 == Encoding::BaseTypeRef && Op0 == Encoding::Size1)) {
956       // This code assumes that the other non-typeref operand fits into 1 byte.
957       assert(OpOffset < Op.getEndOffset());
958       uint32_t ULEBsize = Op.getEndOffset() - OpOffset - 1;
959       assert(ULEBsize <= 16);
960 
961       // Copy over the operation.
962       OutputBuffer.push_back(Op.getCode());
963       uint64_t RefOffset;
964       if (Op1 == Encoding::SizeNA) {
965         RefOffset = Op.getRawOperand(0);
966       } else {
967         OutputBuffer.push_back(Op.getRawOperand(0));
968         RefOffset = Op.getRawOperand(1);
969       }
970       uint32_t Offset = 0;
971       // Look up the base type. For DW_OP_convert, the operand may be 0 to
972       // instead indicate the generic type. The same holds for
973       // DW_OP_reinterpret, which is currently not supported.
974       if (RefOffset > 0 || Op.getCode() != dwarf::DW_OP_convert) {
975         auto RefDie = Unit.getOrigUnit().getDIEForOffset(RefOffset);
976         CompileUnit::DIEInfo &Info = Unit.getInfo(RefDie);
977         if (DIE *Clone = Info.Clone)
978           Offset = Clone->getOffset();
979         else
980           Linker.reportWarning(
981               "base type ref doesn't point to DW_TAG_base_type.", File);
982       }
983       uint8_t ULEB[16];
984       unsigned RealSize = encodeULEB128(Offset, ULEB, ULEBsize);
985       if (RealSize > ULEBsize) {
986         // Emit the generic type as a fallback.
987         RealSize = encodeULEB128(0, ULEB, ULEBsize);
988         Linker.reportWarning("base type ref doesn't fit.", File);
989       }
990       assert(RealSize == ULEBsize && "padding failed");
991       ArrayRef<uint8_t> ULEBbytes(ULEB, ULEBsize);
992       OutputBuffer.append(ULEBbytes.begin(), ULEBbytes.end());
993     } else {
994       // Copy over everything else unmodified.
995       StringRef Bytes = Data.getData().slice(OpOffset, Op.getEndOffset());
996       OutputBuffer.append(Bytes.begin(), Bytes.end());
997     }
998     OpOffset = Op.getEndOffset();
999   }
1000 }
1001 
1002 unsigned DWARFLinker::DIECloner::cloneBlockAttribute(
1003     DIE &Die, const DWARFFile &File, CompileUnit &Unit, AttributeSpec AttrSpec,
1004     const DWARFFormValue &Val, unsigned AttrSize, bool IsLittleEndian) {
1005   DIEValueList *Attr;
1006   DIEValue Value;
1007   DIELoc *Loc = nullptr;
1008   DIEBlock *Block = nullptr;
1009   if (AttrSpec.Form == dwarf::DW_FORM_exprloc) {
1010     Loc = new (DIEAlloc) DIELoc;
1011     Linker.DIELocs.push_back(Loc);
1012   } else {
1013     Block = new (DIEAlloc) DIEBlock;
1014     Linker.DIEBlocks.push_back(Block);
1015   }
1016   Attr = Loc ? static_cast<DIEValueList *>(Loc)
1017              : static_cast<DIEValueList *>(Block);
1018 
1019   if (Loc)
1020     Value = DIEValue(dwarf::Attribute(AttrSpec.Attr),
1021                      dwarf::Form(AttrSpec.Form), Loc);
1022   else
1023     Value = DIEValue(dwarf::Attribute(AttrSpec.Attr),
1024                      dwarf::Form(AttrSpec.Form), Block);
1025 
1026   // If the block is a DWARF Expression, clone it into the temporary
1027   // buffer using cloneExpression(), otherwise copy the data directly.
1028   SmallVector<uint8_t, 32> Buffer;
1029   ArrayRef<uint8_t> Bytes = *Val.getAsBlock();
1030   if (DWARFAttribute::mayHaveLocationDescription(AttrSpec.Attr) &&
1031       (Val.isFormClass(DWARFFormValue::FC_Block) ||
1032        Val.isFormClass(DWARFFormValue::FC_Exprloc))) {
1033     DWARFUnit &OrigUnit = Unit.getOrigUnit();
1034     DataExtractor Data(StringRef((const char *)Bytes.data(), Bytes.size()),
1035                        IsLittleEndian, OrigUnit.getAddressByteSize());
1036     DWARFExpression Expr(Data, OrigUnit.getAddressByteSize(),
1037                          OrigUnit.getFormParams().Format);
1038     cloneExpression(Data, Expr, File, Unit, Buffer);
1039     Bytes = Buffer;
1040   }
1041   for (auto Byte : Bytes)
1042     Attr->addValue(DIEAlloc, static_cast<dwarf::Attribute>(0),
1043                    dwarf::DW_FORM_data1, DIEInteger(Byte));
1044 
1045   // FIXME: If DIEBlock and DIELoc just reuses the Size field of
1046   // the DIE class, this "if" could be replaced by
1047   // Attr->setSize(Bytes.size()).
1048   if (Loc)
1049     Loc->setSize(Bytes.size());
1050   else
1051     Block->setSize(Bytes.size());
1052 
1053   Die.addValue(DIEAlloc, Value);
1054   return AttrSize;
1055 }
1056 
1057 unsigned DWARFLinker::DIECloner::cloneAddressAttribute(
1058     DIE &Die, AttributeSpec AttrSpec, const DWARFFormValue &Val,
1059     const CompileUnit &Unit, AttributesInfo &Info) {
1060   if (LLVM_UNLIKELY(Linker.Options.Update)) {
1061     if (AttrSpec.Attr == dwarf::DW_AT_low_pc)
1062       Info.HasLowPc = true;
1063     Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
1064                  dwarf::Form(AttrSpec.Form), DIEInteger(Val.getRawUValue()));
1065     return Unit.getOrigUnit().getAddressByteSize();
1066   }
1067 
1068   dwarf::Form Form = AttrSpec.Form;
1069   uint64_t Addr = 0;
1070   if (Form == dwarf::DW_FORM_addrx) {
1071     if (Optional<uint64_t> AddrOffsetSectionBase =
1072             Unit.getOrigUnit().getAddrOffsetSectionBase()) {
1073       uint64_t StartOffset = *AddrOffsetSectionBase + Val.getRawUValue();
1074       uint64_t EndOffset =
1075           StartOffset + Unit.getOrigUnit().getAddressByteSize();
1076       if (llvm::Expected<uint64_t> RelocAddr =
1077               ObjFile.Addresses->relocateIndexedAddr(StartOffset, EndOffset))
1078         Addr = *RelocAddr;
1079       else
1080         Linker.reportWarning(toString(RelocAddr.takeError()), ObjFile);
1081     } else
1082       Linker.reportWarning("no base offset for address table", ObjFile);
1083 
1084     // If this is an indexed address emit the debug_info address.
1085     Form = dwarf::DW_FORM_addr;
1086   } else
1087     Addr = *Val.getAsAddress();
1088 
1089   if (AttrSpec.Attr == dwarf::DW_AT_low_pc) {
1090     if (Die.getTag() == dwarf::DW_TAG_inlined_subroutine ||
1091         Die.getTag() == dwarf::DW_TAG_lexical_block ||
1092         Die.getTag() == dwarf::DW_TAG_label) {
1093       // The low_pc of a block or inline subroutine might get
1094       // relocated because it happens to match the low_pc of the
1095       // enclosing subprogram. To prevent issues with that, always use
1096       // the low_pc from the input DIE if relocations have been applied.
1097       Addr = (Info.OrigLowPc != std::numeric_limits<uint64_t>::max()
1098                   ? Info.OrigLowPc
1099                   : Addr) +
1100              Info.PCOffset;
1101     } else if (Die.getTag() == dwarf::DW_TAG_compile_unit) {
1102       Addr = Unit.getLowPc();
1103       if (Addr == std::numeric_limits<uint64_t>::max())
1104         return 0;
1105     }
1106     Info.HasLowPc = true;
1107   } else if (AttrSpec.Attr == dwarf::DW_AT_high_pc) {
1108     if (Die.getTag() == dwarf::DW_TAG_compile_unit) {
1109       if (uint64_t HighPc = Unit.getHighPc())
1110         Addr = HighPc;
1111       else
1112         return 0;
1113     } else
1114       // If we have a high_pc recorded for the input DIE, use
1115       // it. Otherwise (when no relocations where applied) just use the
1116       // one we just decoded.
1117       Addr = (Info.OrigHighPc ? Info.OrigHighPc : Addr) + Info.PCOffset;
1118   } else if (AttrSpec.Attr == dwarf::DW_AT_call_return_pc) {
1119     // Relocate a return PC address within a call site entry.
1120     if (Die.getTag() == dwarf::DW_TAG_call_site)
1121       Addr = (Info.OrigCallReturnPc ? Info.OrigCallReturnPc : Addr) +
1122              Info.PCOffset;
1123   } else if (AttrSpec.Attr == dwarf::DW_AT_call_pc) {
1124     // Relocate the address of a branch instruction within a call site entry.
1125     if (Die.getTag() == dwarf::DW_TAG_call_site)
1126       Addr = (Info.OrigCallPc ? Info.OrigCallPc : Addr) + Info.PCOffset;
1127   }
1128 
1129   Die.addValue(DIEAlloc, static_cast<dwarf::Attribute>(AttrSpec.Attr),
1130                static_cast<dwarf::Form>(Form), DIEInteger(Addr));
1131   return Unit.getOrigUnit().getAddressByteSize();
1132 }
1133 
1134 unsigned DWARFLinker::DIECloner::cloneScalarAttribute(
1135     DIE &Die, const DWARFDie &InputDIE, const DWARFFile &File,
1136     CompileUnit &Unit, AttributeSpec AttrSpec, const DWARFFormValue &Val,
1137     unsigned AttrSize, AttributesInfo &Info) {
1138   uint64_t Value;
1139 
1140   if (LLVM_UNLIKELY(Linker.Options.Update)) {
1141     if (auto OptionalValue = Val.getAsUnsignedConstant())
1142       Value = *OptionalValue;
1143     else if (auto OptionalValue = Val.getAsSignedConstant())
1144       Value = *OptionalValue;
1145     else if (auto OptionalValue = Val.getAsSectionOffset())
1146       Value = *OptionalValue;
1147     else {
1148       Linker.reportWarning(
1149           "Unsupported scalar attribute form. Dropping attribute.", File,
1150           &InputDIE);
1151       return 0;
1152     }
1153     if (AttrSpec.Attr == dwarf::DW_AT_declaration && Value)
1154       Info.IsDeclaration = true;
1155     Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
1156                  dwarf::Form(AttrSpec.Form), DIEInteger(Value));
1157     return AttrSize;
1158   }
1159 
1160   if (AttrSpec.Attr == dwarf::DW_AT_high_pc &&
1161       Die.getTag() == dwarf::DW_TAG_compile_unit) {
1162     if (Unit.getLowPc() == -1ULL)
1163       return 0;
1164     // Dwarf >= 4 high_pc is an size, not an address.
1165     Value = Unit.getHighPc() - Unit.getLowPc();
1166   } else if (AttrSpec.Form == dwarf::DW_FORM_sec_offset)
1167     Value = *Val.getAsSectionOffset();
1168   else if (AttrSpec.Form == dwarf::DW_FORM_sdata)
1169     Value = *Val.getAsSignedConstant();
1170   else if (auto OptionalValue = Val.getAsUnsignedConstant())
1171     Value = *OptionalValue;
1172   else {
1173     Linker.reportWarning(
1174         "Unsupported scalar attribute form. Dropping attribute.", File,
1175         &InputDIE);
1176     return 0;
1177   }
1178   PatchLocation Patch =
1179       Die.addValue(DIEAlloc, dwarf::Attribute(AttrSpec.Attr),
1180                    dwarf::Form(AttrSpec.Form), DIEInteger(Value));
1181   if (AttrSpec.Attr == dwarf::DW_AT_ranges) {
1182     Unit.noteRangeAttribute(Die, Patch);
1183     Info.HasRanges = true;
1184   }
1185 
1186   // A more generic way to check for location attributes would be
1187   // nice, but it's very unlikely that any other attribute needs a
1188   // location list.
1189   // FIXME: use DWARFAttribute::mayHaveLocationDescription().
1190   else if (AttrSpec.Attr == dwarf::DW_AT_location ||
1191            AttrSpec.Attr == dwarf::DW_AT_frame_base) {
1192     Unit.noteLocationAttribute(Patch, Info.PCOffset);
1193   } else if (AttrSpec.Attr == dwarf::DW_AT_declaration && Value)
1194     Info.IsDeclaration = true;
1195 
1196   return AttrSize;
1197 }
1198 
1199 /// Clone \p InputDIE's attribute described by \p AttrSpec with
1200 /// value \p Val, and add it to \p Die.
1201 /// \returns the size of the cloned attribute.
1202 unsigned DWARFLinker::DIECloner::cloneAttribute(
1203     DIE &Die, const DWARFDie &InputDIE, const DWARFFile &File,
1204     CompileUnit &Unit, OffsetsStringPool &StringPool, const DWARFFormValue &Val,
1205     const AttributeSpec AttrSpec, unsigned AttrSize, AttributesInfo &Info,
1206     bool IsLittleEndian) {
1207   const DWARFUnit &U = Unit.getOrigUnit();
1208 
1209   switch (AttrSpec.Form) {
1210   case dwarf::DW_FORM_strp:
1211   case dwarf::DW_FORM_string:
1212   case dwarf::DW_FORM_strx:
1213   case dwarf::DW_FORM_strx1:
1214   case dwarf::DW_FORM_strx2:
1215   case dwarf::DW_FORM_strx3:
1216   case dwarf::DW_FORM_strx4:
1217     return cloneStringAttribute(Die, AttrSpec, Val, U, StringPool, Info);
1218   case dwarf::DW_FORM_ref_addr:
1219   case dwarf::DW_FORM_ref1:
1220   case dwarf::DW_FORM_ref2:
1221   case dwarf::DW_FORM_ref4:
1222   case dwarf::DW_FORM_ref8:
1223     return cloneDieReferenceAttribute(Die, InputDIE, AttrSpec, AttrSize, Val,
1224                                       File, Unit);
1225   case dwarf::DW_FORM_block:
1226   case dwarf::DW_FORM_block1:
1227   case dwarf::DW_FORM_block2:
1228   case dwarf::DW_FORM_block4:
1229   case dwarf::DW_FORM_exprloc:
1230     return cloneBlockAttribute(Die, File, Unit, AttrSpec, Val, AttrSize,
1231                                IsLittleEndian);
1232   case dwarf::DW_FORM_addr:
1233   case dwarf::DW_FORM_addrx:
1234     return cloneAddressAttribute(Die, AttrSpec, Val, Unit, Info);
1235   case dwarf::DW_FORM_data1:
1236   case dwarf::DW_FORM_data2:
1237   case dwarf::DW_FORM_data4:
1238   case dwarf::DW_FORM_data8:
1239   case dwarf::DW_FORM_udata:
1240   case dwarf::DW_FORM_sdata:
1241   case dwarf::DW_FORM_sec_offset:
1242   case dwarf::DW_FORM_flag:
1243   case dwarf::DW_FORM_flag_present:
1244     return cloneScalarAttribute(Die, InputDIE, File, Unit, AttrSpec, Val,
1245                                 AttrSize, Info);
1246   default:
1247     Linker.reportWarning("Unsupported attribute form " +
1248                              dwarf::FormEncodingString(AttrSpec.Form) +
1249                              " in cloneAttribute. Dropping.",
1250                          File, &InputDIE);
1251   }
1252 
1253   return 0;
1254 }
1255 
1256 static bool isObjCSelector(StringRef Name) {
1257   return Name.size() > 2 && (Name[0] == '-' || Name[0] == '+') &&
1258          (Name[1] == '[');
1259 }
1260 
1261 void DWARFLinker::DIECloner::addObjCAccelerator(CompileUnit &Unit,
1262                                                 const DIE *Die,
1263                                                 DwarfStringPoolEntryRef Name,
1264                                                 OffsetsStringPool &StringPool,
1265                                                 bool SkipPubSection) {
1266   assert(isObjCSelector(Name.getString()) && "not an objc selector");
1267   // Objective C method or class function.
1268   // "- [Class(Category) selector :withArg ...]"
1269   StringRef ClassNameStart(Name.getString().drop_front(2));
1270   size_t FirstSpace = ClassNameStart.find(' ');
1271   if (FirstSpace == StringRef::npos)
1272     return;
1273 
1274   StringRef SelectorStart(ClassNameStart.data() + FirstSpace + 1);
1275   if (!SelectorStart.size())
1276     return;
1277 
1278   StringRef Selector(SelectorStart.data(), SelectorStart.size() - 1);
1279   Unit.addNameAccelerator(Die, StringPool.getEntry(Selector), SkipPubSection);
1280 
1281   // Add an entry for the class name that points to this
1282   // method/class function.
1283   StringRef ClassName(ClassNameStart.data(), FirstSpace);
1284   Unit.addObjCAccelerator(Die, StringPool.getEntry(ClassName), SkipPubSection);
1285 
1286   if (ClassName[ClassName.size() - 1] == ')') {
1287     size_t OpenParens = ClassName.find('(');
1288     if (OpenParens != StringRef::npos) {
1289       StringRef ClassNameNoCategory(ClassName.data(), OpenParens);
1290       Unit.addObjCAccelerator(Die, StringPool.getEntry(ClassNameNoCategory),
1291                               SkipPubSection);
1292 
1293       std::string MethodNameNoCategory(Name.getString().data(), OpenParens + 2);
1294       // FIXME: The missing space here may be a bug, but
1295       //        dsymutil-classic also does it this way.
1296       MethodNameNoCategory.append(std::string(SelectorStart));
1297       Unit.addNameAccelerator(Die, StringPool.getEntry(MethodNameNoCategory),
1298                               SkipPubSection);
1299     }
1300   }
1301 }
1302 
1303 static bool
1304 shouldSkipAttribute(DWARFAbbreviationDeclaration::AttributeSpec AttrSpec,
1305                     uint16_t Tag, bool InDebugMap, bool SkipPC,
1306                     bool InFunctionScope) {
1307   switch (AttrSpec.Attr) {
1308   default:
1309     return false;
1310   case dwarf::DW_AT_low_pc:
1311   case dwarf::DW_AT_high_pc:
1312   case dwarf::DW_AT_ranges:
1313     return SkipPC;
1314   case dwarf::DW_AT_str_offsets_base:
1315     // FIXME: Use the string offset table with Dwarf 5.
1316     return true;
1317   case dwarf::DW_AT_location:
1318   case dwarf::DW_AT_frame_base:
1319     // FIXME: for some reason dsymutil-classic keeps the location attributes
1320     // when they are of block type (i.e. not location lists). This is totally
1321     // wrong for globals where we will keep a wrong address. It is mostly
1322     // harmless for locals, but there is no point in keeping these anyway when
1323     // the function wasn't linked.
1324     return (SkipPC || (!InFunctionScope && Tag == dwarf::DW_TAG_variable &&
1325                        !InDebugMap)) &&
1326            !DWARFFormValue(AttrSpec.Form).isFormClass(DWARFFormValue::FC_Block);
1327   }
1328 }
1329 
1330 DIE *DWARFLinker::DIECloner::cloneDIE(const DWARFDie &InputDIE,
1331                                       const DWARFFile &File, CompileUnit &Unit,
1332                                       OffsetsStringPool &StringPool,
1333                                       int64_t PCOffset, uint32_t OutOffset,
1334                                       unsigned Flags, bool IsLittleEndian,
1335                                       DIE *Die) {
1336   DWARFUnit &U = Unit.getOrigUnit();
1337   unsigned Idx = U.getDIEIndex(InputDIE);
1338   CompileUnit::DIEInfo &Info = Unit.getInfo(Idx);
1339 
1340   // Should the DIE appear in the output?
1341   if (!Unit.getInfo(Idx).Keep)
1342     return nullptr;
1343 
1344   uint64_t Offset = InputDIE.getOffset();
1345   assert(!(Die && Info.Clone) && "Can't supply a DIE and a cloned DIE");
1346   if (!Die) {
1347     // The DIE might have been already created by a forward reference
1348     // (see cloneDieReferenceAttribute()).
1349     if (!Info.Clone)
1350       Info.Clone = DIE::get(DIEAlloc, dwarf::Tag(InputDIE.getTag()));
1351     Die = Info.Clone;
1352   }
1353 
1354   assert(Die->getTag() == InputDIE.getTag());
1355   Die->setOffset(OutOffset);
1356   if ((Unit.hasODR() || Unit.isClangModule()) && !Info.Incomplete &&
1357       Die->getTag() != dwarf::DW_TAG_namespace && Info.Ctxt &&
1358       Info.Ctxt != Unit.getInfo(Info.ParentIdx).Ctxt &&
1359       !Info.Ctxt->getCanonicalDIEOffset()) {
1360     // We are about to emit a DIE that is the root of its own valid
1361     // DeclContext tree. Make the current offset the canonical offset
1362     // for this context.
1363     Info.Ctxt->setCanonicalDIEOffset(OutOffset + Unit.getStartOffset());
1364   }
1365 
1366   // Extract and clone every attribute.
1367   DWARFDataExtractor Data = U.getDebugInfoExtractor();
1368   // Point to the next DIE (generally there is always at least a NULL
1369   // entry after the current one). If this is a lone
1370   // DW_TAG_compile_unit without any children, point to the next unit.
1371   uint64_t NextOffset = (Idx + 1 < U.getNumDIEs())
1372                             ? U.getDIEAtIndex(Idx + 1).getOffset()
1373                             : U.getNextUnitOffset();
1374   AttributesInfo AttrInfo;
1375 
1376   // We could copy the data only if we need to apply a relocation to it. After
1377   // testing, it seems there is no performance downside to doing the copy
1378   // unconditionally, and it makes the code simpler.
1379   SmallString<40> DIECopy(Data.getData().substr(Offset, NextOffset - Offset));
1380   Data =
1381       DWARFDataExtractor(DIECopy, Data.isLittleEndian(), Data.getAddressSize());
1382 
1383   // Modify the copy with relocated addresses.
1384   if (ObjFile.Addresses->areRelocationsResolved() &&
1385       ObjFile.Addresses->applyValidRelocs(DIECopy, Offset,
1386                                           Data.isLittleEndian())) {
1387     // If we applied relocations, we store the value of high_pc that was
1388     // potentially stored in the input DIE. If high_pc is an address
1389     // (Dwarf version == 2), then it might have been relocated to a
1390     // totally unrelated value (because the end address in the object
1391     // file might be start address of another function which got moved
1392     // independently by the linker). The computation of the actual
1393     // high_pc value is done in cloneAddressAttribute().
1394     AttrInfo.OrigHighPc =
1395         dwarf::toAddress(InputDIE.find(dwarf::DW_AT_high_pc), 0);
1396     // Also store the low_pc. It might get relocated in an
1397     // inline_subprogram that happens at the beginning of its
1398     // inlining function.
1399     AttrInfo.OrigLowPc = dwarf::toAddress(InputDIE.find(dwarf::DW_AT_low_pc),
1400                                           std::numeric_limits<uint64_t>::max());
1401     AttrInfo.OrigCallReturnPc =
1402         dwarf::toAddress(InputDIE.find(dwarf::DW_AT_call_return_pc), 0);
1403     AttrInfo.OrigCallPc =
1404         dwarf::toAddress(InputDIE.find(dwarf::DW_AT_call_pc), 0);
1405   }
1406 
1407   // Reset the Offset to 0 as we will be working on the local copy of
1408   // the data.
1409   Offset = 0;
1410 
1411   const auto *Abbrev = InputDIE.getAbbreviationDeclarationPtr();
1412   Offset += getULEB128Size(Abbrev->getCode());
1413 
1414   // We are entering a subprogram. Get and propagate the PCOffset.
1415   if (Die->getTag() == dwarf::DW_TAG_subprogram)
1416     PCOffset = Info.AddrAdjust;
1417   AttrInfo.PCOffset = PCOffset;
1418 
1419   if (Abbrev->getTag() == dwarf::DW_TAG_subprogram) {
1420     Flags |= TF_InFunctionScope;
1421     if (!Info.InDebugMap && LLVM_LIKELY(!Update))
1422       Flags |= TF_SkipPC;
1423   }
1424 
1425   for (const auto &AttrSpec : Abbrev->attributes()) {
1426     if (LLVM_LIKELY(!Update) &&
1427         shouldSkipAttribute(AttrSpec, Die->getTag(), Info.InDebugMap,
1428                             Flags & TF_SkipPC, Flags & TF_InFunctionScope)) {
1429       DWARFFormValue::skipValue(AttrSpec.Form, Data, &Offset,
1430                                 U.getFormParams());
1431       continue;
1432     }
1433 
1434     DWARFFormValue Val(AttrSpec.Form);
1435     uint64_t AttrSize = Offset;
1436     Val.extractValue(Data, &Offset, U.getFormParams(), &U);
1437     AttrSize = Offset - AttrSize;
1438 
1439     OutOffset += cloneAttribute(*Die, InputDIE, File, Unit, StringPool, Val,
1440                                 AttrSpec, AttrSize, AttrInfo, IsLittleEndian);
1441   }
1442 
1443   // Look for accelerator entries.
1444   uint16_t Tag = InputDIE.getTag();
1445   // FIXME: This is slightly wrong. An inline_subroutine without a
1446   // low_pc, but with AT_ranges might be interesting to get into the
1447   // accelerator tables too. For now stick with dsymutil's behavior.
1448   if ((Info.InDebugMap || AttrInfo.HasLowPc || AttrInfo.HasRanges) &&
1449       Tag != dwarf::DW_TAG_compile_unit &&
1450       getDIENames(InputDIE, AttrInfo, StringPool,
1451                   Tag != dwarf::DW_TAG_inlined_subroutine)) {
1452     if (AttrInfo.MangledName && AttrInfo.MangledName != AttrInfo.Name)
1453       Unit.addNameAccelerator(Die, AttrInfo.MangledName,
1454                               Tag == dwarf::DW_TAG_inlined_subroutine);
1455     if (AttrInfo.Name) {
1456       if (AttrInfo.NameWithoutTemplate)
1457         Unit.addNameAccelerator(Die, AttrInfo.NameWithoutTemplate,
1458                                 /* SkipPubSection */ true);
1459       Unit.addNameAccelerator(Die, AttrInfo.Name,
1460                               Tag == dwarf::DW_TAG_inlined_subroutine);
1461     }
1462     if (AttrInfo.Name && isObjCSelector(AttrInfo.Name.getString()))
1463       addObjCAccelerator(Unit, Die, AttrInfo.Name, StringPool,
1464                          /* SkipPubSection =*/true);
1465 
1466   } else if (Tag == dwarf::DW_TAG_namespace) {
1467     if (!AttrInfo.Name)
1468       AttrInfo.Name = StringPool.getEntry("(anonymous namespace)");
1469     Unit.addNamespaceAccelerator(Die, AttrInfo.Name);
1470   } else if (isTypeTag(Tag) && !AttrInfo.IsDeclaration &&
1471              getDIENames(InputDIE, AttrInfo, StringPool) && AttrInfo.Name &&
1472              AttrInfo.Name.getString()[0]) {
1473     uint32_t Hash = hashFullyQualifiedName(InputDIE, Unit, File);
1474     uint64_t RuntimeLang =
1475         dwarf::toUnsigned(InputDIE.find(dwarf::DW_AT_APPLE_runtime_class))
1476             .getValueOr(0);
1477     bool ObjCClassIsImplementation =
1478         (RuntimeLang == dwarf::DW_LANG_ObjC ||
1479          RuntimeLang == dwarf::DW_LANG_ObjC_plus_plus) &&
1480         dwarf::toUnsigned(InputDIE.find(dwarf::DW_AT_APPLE_objc_complete_type))
1481             .getValueOr(0);
1482     Unit.addTypeAccelerator(Die, AttrInfo.Name, ObjCClassIsImplementation,
1483                             Hash);
1484   }
1485 
1486   // Determine whether there are any children that we want to keep.
1487   bool HasChildren = false;
1488   for (auto Child : InputDIE.children()) {
1489     unsigned Idx = U.getDIEIndex(Child);
1490     if (Unit.getInfo(Idx).Keep) {
1491       HasChildren = true;
1492       break;
1493     }
1494   }
1495 
1496   DIEAbbrev NewAbbrev = Die->generateAbbrev();
1497   if (HasChildren)
1498     NewAbbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes);
1499   // Assign a permanent abbrev number
1500   Linker.assignAbbrev(NewAbbrev);
1501   Die->setAbbrevNumber(NewAbbrev.getNumber());
1502 
1503   // Add the size of the abbreviation number to the output offset.
1504   OutOffset += getULEB128Size(Die->getAbbrevNumber());
1505 
1506   if (!HasChildren) {
1507     // Update our size.
1508     Die->setSize(OutOffset - Die->getOffset());
1509     return Die;
1510   }
1511 
1512   // Recursively clone children.
1513   for (auto Child : InputDIE.children()) {
1514     if (DIE *Clone = cloneDIE(Child, File, Unit, StringPool, PCOffset,
1515                               OutOffset, Flags, IsLittleEndian)) {
1516       Die->addChild(Clone);
1517       OutOffset = Clone->getOffset() + Clone->getSize();
1518     }
1519   }
1520 
1521   // Account for the end of children marker.
1522   OutOffset += sizeof(int8_t);
1523   // Update our size.
1524   Die->setSize(OutOffset - Die->getOffset());
1525   return Die;
1526 }
1527 
1528 /// Patch the input object file relevant debug_ranges entries
1529 /// and emit them in the output file. Update the relevant attributes
1530 /// to point at the new entries.
1531 void DWARFLinker::patchRangesForUnit(const CompileUnit &Unit,
1532                                      DWARFContext &OrigDwarf,
1533                                      const DWARFFile &File) const {
1534   DWARFDebugRangeList RangeList;
1535   const auto &FunctionRanges = Unit.getFunctionRanges();
1536   unsigned AddressSize = Unit.getOrigUnit().getAddressByteSize();
1537   DWARFDataExtractor RangeExtractor(OrigDwarf.getDWARFObj(),
1538                                     OrigDwarf.getDWARFObj().getRangesSection(),
1539                                     OrigDwarf.isLittleEndian(), AddressSize);
1540   auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange;
1541   DWARFUnit &OrigUnit = Unit.getOrigUnit();
1542   auto OrigUnitDie = OrigUnit.getUnitDIE(false);
1543   uint64_t OrigLowPc =
1544       dwarf::toAddress(OrigUnitDie.find(dwarf::DW_AT_low_pc), -1ULL);
1545   // Ranges addresses are based on the unit's low_pc. Compute the
1546   // offset we need to apply to adapt to the new unit's low_pc.
1547   int64_t UnitPcOffset = 0;
1548   if (OrigLowPc != -1ULL)
1549     UnitPcOffset = int64_t(OrigLowPc) - Unit.getLowPc();
1550 
1551   for (const auto &RangeAttribute : Unit.getRangesAttributes()) {
1552     uint64_t Offset = RangeAttribute.get();
1553     RangeAttribute.set(TheDwarfEmitter->getRangesSectionSize());
1554     if (Error E = RangeList.extract(RangeExtractor, &Offset)) {
1555       llvm::consumeError(std::move(E));
1556       reportWarning("invalid range list ignored.", File);
1557       RangeList.clear();
1558     }
1559     const auto &Entries = RangeList.getEntries();
1560     if (!Entries.empty()) {
1561       const DWARFDebugRangeList::RangeListEntry &First = Entries.front();
1562 
1563       if (CurrRange == InvalidRange ||
1564           First.StartAddress + OrigLowPc < CurrRange.start() ||
1565           First.StartAddress + OrigLowPc >= CurrRange.stop()) {
1566         CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc);
1567         if (CurrRange == InvalidRange ||
1568             CurrRange.start() > First.StartAddress + OrigLowPc) {
1569           reportWarning("no mapping for range.", File);
1570           continue;
1571         }
1572       }
1573     }
1574 
1575     TheDwarfEmitter->emitRangesEntries(UnitPcOffset, OrigLowPc, CurrRange,
1576                                        Entries, AddressSize);
1577   }
1578 }
1579 
1580 /// Generate the debug_aranges entries for \p Unit and if the
1581 /// unit has a DW_AT_ranges attribute, also emit the debug_ranges
1582 /// contribution for this attribute.
1583 /// FIXME: this could actually be done right in patchRangesForUnit,
1584 /// but for the sake of initial bit-for-bit compatibility with legacy
1585 /// dsymutil, we have to do it in a delayed pass.
1586 void DWARFLinker::generateUnitRanges(CompileUnit &Unit) const {
1587   auto Attr = Unit.getUnitRangesAttribute();
1588   if (Attr)
1589     Attr->set(TheDwarfEmitter->getRangesSectionSize());
1590   TheDwarfEmitter->emitUnitRangesEntries(Unit, static_cast<bool>(Attr));
1591 }
1592 
1593 /// Insert the new line info sequence \p Seq into the current
1594 /// set of already linked line info \p Rows.
1595 static void insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq,
1596                                std::vector<DWARFDebugLine::Row> &Rows) {
1597   if (Seq.empty())
1598     return;
1599 
1600   if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1601     llvm::append_range(Rows, Seq);
1602     Seq.clear();
1603     return;
1604   }
1605 
1606   object::SectionedAddress Front = Seq.front().Address;
1607   auto InsertPoint = partition_point(
1608       Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; });
1609 
1610   // FIXME: this only removes the unneeded end_sequence if the
1611   // sequences have been inserted in order. Using a global sort like
1612   // described in patchLineTableForUnit() and delaying the end_sequene
1613   // elimination to emitLineTableForUnit() we can get rid of all of them.
1614   if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
1615       InsertPoint->EndSequence) {
1616     *InsertPoint = Seq.front();
1617     Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
1618   } else {
1619     Rows.insert(InsertPoint, Seq.begin(), Seq.end());
1620   }
1621 
1622   Seq.clear();
1623 }
1624 
1625 static void patchStmtList(DIE &Die, DIEInteger Offset) {
1626   for (auto &V : Die.values())
1627     if (V.getAttribute() == dwarf::DW_AT_stmt_list) {
1628       V = DIEValue(V.getAttribute(), V.getForm(), Offset);
1629       return;
1630     }
1631 
1632   llvm_unreachable("Didn't find DW_AT_stmt_list in cloned DIE!");
1633 }
1634 
1635 /// Extract the line table for \p Unit from \p OrigDwarf, and
1636 /// recreate a relocated version of these for the address ranges that
1637 /// are present in the binary.
1638 void DWARFLinker::patchLineTableForUnit(CompileUnit &Unit,
1639                                         DWARFContext &OrigDwarf,
1640                                         const DWARFFile &File) {
1641   DWARFDie CUDie = Unit.getOrigUnit().getUnitDIE();
1642   auto StmtList = dwarf::toSectionOffset(CUDie.find(dwarf::DW_AT_stmt_list));
1643   if (!StmtList)
1644     return;
1645 
1646   // Update the cloned DW_AT_stmt_list with the correct debug_line offset.
1647   if (auto *OutputDIE = Unit.getOutputUnitDIE())
1648     patchStmtList(*OutputDIE,
1649                   DIEInteger(TheDwarfEmitter->getLineSectionSize()));
1650 
1651   RangesTy &Ranges = File.Addresses->getValidAddressRanges();
1652 
1653   // Parse the original line info for the unit.
1654   DWARFDebugLine::LineTable LineTable;
1655   uint64_t StmtOffset = *StmtList;
1656   DWARFDataExtractor LineExtractor(
1657       OrigDwarf.getDWARFObj(), OrigDwarf.getDWARFObj().getLineSection(),
1658       OrigDwarf.isLittleEndian(), Unit.getOrigUnit().getAddressByteSize());
1659   if (needToTranslateStrings())
1660     return TheDwarfEmitter->translateLineTable(LineExtractor, StmtOffset);
1661 
1662   if (Error Err =
1663           LineTable.parse(LineExtractor, &StmtOffset, OrigDwarf,
1664                           &Unit.getOrigUnit(), OrigDwarf.getWarningHandler()))
1665     OrigDwarf.getWarningHandler()(std::move(Err));
1666 
1667   // This vector is the output line table.
1668   std::vector<DWARFDebugLine::Row> NewRows;
1669   NewRows.reserve(LineTable.Rows.size());
1670 
1671   // Current sequence of rows being extracted, before being inserted
1672   // in NewRows.
1673   std::vector<DWARFDebugLine::Row> Seq;
1674   const auto &FunctionRanges = Unit.getFunctionRanges();
1675   auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange;
1676 
1677   // FIXME: This logic is meant to generate exactly the same output as
1678   // Darwin's classic dsymutil. There is a nicer way to implement this
1679   // by simply putting all the relocated line info in NewRows and simply
1680   // sorting NewRows before passing it to emitLineTableForUnit. This
1681   // should be correct as sequences for a function should stay
1682   // together in the sorted output. There are a few corner cases that
1683   // look suspicious though, and that required to implement the logic
1684   // this way. Revisit that once initial validation is finished.
1685 
1686   // Iterate over the object file line info and extract the sequences
1687   // that correspond to linked functions.
1688   for (auto &Row : LineTable.Rows) {
1689     // Check whether we stepped out of the range. The range is
1690     // half-open, but consider accept the end address of the range if
1691     // it is marked as end_sequence in the input (because in that
1692     // case, the relocation offset is accurate and that entry won't
1693     // serve as the start of another function).
1694     if (CurrRange == InvalidRange || Row.Address.Address < CurrRange.start() ||
1695         Row.Address.Address > CurrRange.stop() ||
1696         (Row.Address.Address == CurrRange.stop() && !Row.EndSequence)) {
1697       // We just stepped out of a known range. Insert a end_sequence
1698       // corresponding to the end of the range.
1699       uint64_t StopAddress = CurrRange != InvalidRange
1700                                  ? CurrRange.stop() + CurrRange.value()
1701                                  : -1ULL;
1702       CurrRange = FunctionRanges.find(Row.Address.Address);
1703       bool CurrRangeValid =
1704           CurrRange != InvalidRange && CurrRange.start() <= Row.Address.Address;
1705       if (!CurrRangeValid) {
1706         CurrRange = InvalidRange;
1707         if (StopAddress != -1ULL) {
1708           // Try harder by looking in the Address ranges map.
1709           // There are corner cases where this finds a
1710           // valid entry. It's unclear if this is right or wrong, but
1711           // for now do as dsymutil.
1712           // FIXME: Understand exactly what cases this addresses and
1713           // potentially remove it along with the Ranges map.
1714           auto Range = Ranges.lower_bound(Row.Address.Address);
1715           if (Range != Ranges.begin() && Range != Ranges.end())
1716             --Range;
1717 
1718           if (Range != Ranges.end() && Range->first <= Row.Address.Address &&
1719               Range->second.HighPC >= Row.Address.Address) {
1720             StopAddress = Row.Address.Address + Range->second.Offset;
1721           }
1722         }
1723       }
1724       if (StopAddress != -1ULL && !Seq.empty()) {
1725         // Insert end sequence row with the computed end address, but
1726         // the same line as the previous one.
1727         auto NextLine = Seq.back();
1728         NextLine.Address.Address = StopAddress;
1729         NextLine.EndSequence = 1;
1730         NextLine.PrologueEnd = 0;
1731         NextLine.BasicBlock = 0;
1732         NextLine.EpilogueBegin = 0;
1733         Seq.push_back(NextLine);
1734         insertLineSequence(Seq, NewRows);
1735       }
1736 
1737       if (!CurrRangeValid)
1738         continue;
1739     }
1740 
1741     // Ignore empty sequences.
1742     if (Row.EndSequence && Seq.empty())
1743       continue;
1744 
1745     // Relocate row address and add it to the current sequence.
1746     Row.Address.Address += CurrRange.value();
1747     Seq.emplace_back(Row);
1748 
1749     if (Row.EndSequence)
1750       insertLineSequence(Seq, NewRows);
1751   }
1752 
1753   // Finished extracting, now emit the line tables.
1754   // FIXME: LLVM hard-codes its prologue values. We just copy the
1755   // prologue over and that works because we act as both producer and
1756   // consumer. It would be nicer to have a real configurable line
1757   // table emitter.
1758   if (LineTable.Prologue.getVersion() < 2 ||
1759       LineTable.Prologue.getVersion() > 5 ||
1760       LineTable.Prologue.DefaultIsStmt != DWARF2_LINE_DEFAULT_IS_STMT ||
1761       LineTable.Prologue.OpcodeBase > 13)
1762     reportWarning("line table parameters mismatch. Cannot emit.", File);
1763   else {
1764     uint32_t PrologueEnd = *StmtList + 10 + LineTable.Prologue.PrologueLength;
1765     // DWARF v5 has an extra 2 bytes of information before the header_length
1766     // field.
1767     if (LineTable.Prologue.getVersion() == 5)
1768       PrologueEnd += 2;
1769     StringRef LineData = OrigDwarf.getDWARFObj().getLineSection().Data;
1770     MCDwarfLineTableParams Params;
1771     Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase;
1772     Params.DWARF2LineBase = LineTable.Prologue.LineBase;
1773     Params.DWARF2LineRange = LineTable.Prologue.LineRange;
1774     TheDwarfEmitter->emitLineTableForUnit(
1775         Params, LineData.slice(*StmtList + 4, PrologueEnd),
1776         LineTable.Prologue.MinInstLength, NewRows,
1777         Unit.getOrigUnit().getAddressByteSize());
1778   }
1779 }
1780 
1781 void DWARFLinker::emitAcceleratorEntriesForUnit(CompileUnit &Unit) {
1782   switch (Options.TheAccelTableKind) {
1783   case AccelTableKind::Apple:
1784     emitAppleAcceleratorEntriesForUnit(Unit);
1785     break;
1786   case AccelTableKind::Dwarf:
1787     emitDwarfAcceleratorEntriesForUnit(Unit);
1788     break;
1789   case AccelTableKind::Pub:
1790     emitPubAcceleratorEntriesForUnit(Unit);
1791     break;
1792   case AccelTableKind::Default:
1793     llvm_unreachable("The default must be updated to a concrete value.");
1794     break;
1795   }
1796 }
1797 
1798 void DWARFLinker::emitAppleAcceleratorEntriesForUnit(CompileUnit &Unit) {
1799   // Add namespaces.
1800   for (const auto &Namespace : Unit.getNamespaces())
1801     AppleNamespaces.addName(Namespace.Name,
1802                             Namespace.Die->getOffset() + Unit.getStartOffset());
1803 
1804   /// Add names.
1805   for (const auto &Pubname : Unit.getPubnames())
1806     AppleNames.addName(Pubname.Name,
1807                        Pubname.Die->getOffset() + Unit.getStartOffset());
1808 
1809   /// Add types.
1810   for (const auto &Pubtype : Unit.getPubtypes())
1811     AppleTypes.addName(
1812         Pubtype.Name, Pubtype.Die->getOffset() + Unit.getStartOffset(),
1813         Pubtype.Die->getTag(),
1814         Pubtype.ObjcClassImplementation ? dwarf::DW_FLAG_type_implementation
1815                                         : 0,
1816         Pubtype.QualifiedNameHash);
1817 
1818   /// Add ObjC names.
1819   for (const auto &ObjC : Unit.getObjC())
1820     AppleObjc.addName(ObjC.Name, ObjC.Die->getOffset() + Unit.getStartOffset());
1821 }
1822 
1823 void DWARFLinker::emitDwarfAcceleratorEntriesForUnit(CompileUnit &Unit) {
1824   for (const auto &Namespace : Unit.getNamespaces())
1825     DebugNames.addName(Namespace.Name, Namespace.Die->getOffset(),
1826                        Namespace.Die->getTag(), Unit.getUniqueID());
1827   for (const auto &Pubname : Unit.getPubnames())
1828     DebugNames.addName(Pubname.Name, Pubname.Die->getOffset(),
1829                        Pubname.Die->getTag(), Unit.getUniqueID());
1830   for (const auto &Pubtype : Unit.getPubtypes())
1831     DebugNames.addName(Pubtype.Name, Pubtype.Die->getOffset(),
1832                        Pubtype.Die->getTag(), Unit.getUniqueID());
1833 }
1834 
1835 void DWARFLinker::emitPubAcceleratorEntriesForUnit(CompileUnit &Unit) {
1836   TheDwarfEmitter->emitPubNamesForUnit(Unit);
1837   TheDwarfEmitter->emitPubTypesForUnit(Unit);
1838 }
1839 
1840 /// Read the frame info stored in the object, and emit the
1841 /// patched frame descriptions for the resulting file.
1842 ///
1843 /// This is actually pretty easy as the data of the CIEs and FDEs can
1844 /// be considered as black boxes and moved as is. The only thing to do
1845 /// is to patch the addresses in the headers.
1846 void DWARFLinker::patchFrameInfoForObject(const DWARFFile &File,
1847                                           RangesTy &Ranges,
1848                                           DWARFContext &OrigDwarf,
1849                                           unsigned AddrSize) {
1850   StringRef FrameData = OrigDwarf.getDWARFObj().getFrameSection().Data;
1851   if (FrameData.empty())
1852     return;
1853 
1854   DataExtractor Data(FrameData, OrigDwarf.isLittleEndian(), 0);
1855   uint64_t InputOffset = 0;
1856 
1857   // Store the data of the CIEs defined in this object, keyed by their
1858   // offsets.
1859   DenseMap<uint64_t, StringRef> LocalCIES;
1860 
1861   while (Data.isValidOffset(InputOffset)) {
1862     uint64_t EntryOffset = InputOffset;
1863     uint32_t InitialLength = Data.getU32(&InputOffset);
1864     if (InitialLength == 0xFFFFFFFF)
1865       return reportWarning("Dwarf64 bits no supported", File);
1866 
1867     uint32_t CIEId = Data.getU32(&InputOffset);
1868     if (CIEId == 0xFFFFFFFF) {
1869       // This is a CIE, store it.
1870       StringRef CIEData = FrameData.substr(EntryOffset, InitialLength + 4);
1871       LocalCIES[EntryOffset] = CIEData;
1872       // The -4 is to account for the CIEId we just read.
1873       InputOffset += InitialLength - 4;
1874       continue;
1875     }
1876 
1877     uint32_t Loc = Data.getUnsigned(&InputOffset, AddrSize);
1878 
1879     // Some compilers seem to emit frame info that doesn't start at
1880     // the function entry point, thus we can't just lookup the address
1881     // in the debug map. Use the AddressInfo's range map to see if the FDE
1882     // describes something that we can relocate.
1883     auto Range = Ranges.upper_bound(Loc);
1884     if (Range != Ranges.begin())
1885       --Range;
1886     if (Range == Ranges.end() || Range->first > Loc ||
1887         Range->second.HighPC <= Loc) {
1888       // The +4 is to account for the size of the InitialLength field itself.
1889       InputOffset = EntryOffset + InitialLength + 4;
1890       continue;
1891     }
1892 
1893     // This is an FDE, and we have a mapping.
1894     // Have we already emitted a corresponding CIE?
1895     StringRef CIEData = LocalCIES[CIEId];
1896     if (CIEData.empty())
1897       return reportWarning("Inconsistent debug_frame content. Dropping.", File);
1898 
1899     // Look if we already emitted a CIE that corresponds to the
1900     // referenced one (the CIE data is the key of that lookup).
1901     auto IteratorInserted = EmittedCIEs.insert(
1902         std::make_pair(CIEData, TheDwarfEmitter->getFrameSectionSize()));
1903     // If there is no CIE yet for this ID, emit it.
1904     if (IteratorInserted.second) {
1905       LastCIEOffset = TheDwarfEmitter->getFrameSectionSize();
1906       IteratorInserted.first->getValue() = LastCIEOffset;
1907       TheDwarfEmitter->emitCIE(CIEData);
1908     }
1909 
1910     // Emit the FDE with updated address and CIE pointer.
1911     // (4 + AddrSize) is the size of the CIEId + initial_location
1912     // fields that will get reconstructed by emitFDE().
1913     unsigned FDERemainingBytes = InitialLength - (4 + AddrSize);
1914     TheDwarfEmitter->emitFDE(IteratorInserted.first->getValue(), AddrSize,
1915                              Loc + Range->second.Offset,
1916                              FrameData.substr(InputOffset, FDERemainingBytes));
1917     InputOffset += FDERemainingBytes;
1918   }
1919 }
1920 
1921 uint32_t DWARFLinker::DIECloner::hashFullyQualifiedName(DWARFDie DIE,
1922                                                         CompileUnit &U,
1923                                                         const DWARFFile &File,
1924                                                         int ChildRecurseDepth) {
1925   const char *Name = nullptr;
1926   DWARFUnit *OrigUnit = &U.getOrigUnit();
1927   CompileUnit *CU = &U;
1928   Optional<DWARFFormValue> Ref;
1929 
1930   while (1) {
1931     if (const char *CurrentName = DIE.getName(DINameKind::ShortName))
1932       Name = CurrentName;
1933 
1934     if (!(Ref = DIE.find(dwarf::DW_AT_specification)) &&
1935         !(Ref = DIE.find(dwarf::DW_AT_abstract_origin)))
1936       break;
1937 
1938     if (!Ref->isFormClass(DWARFFormValue::FC_Reference))
1939       break;
1940 
1941     CompileUnit *RefCU;
1942     if (auto RefDIE =
1943             Linker.resolveDIEReference(File, CompileUnits, *Ref, DIE, RefCU)) {
1944       CU = RefCU;
1945       OrigUnit = &RefCU->getOrigUnit();
1946       DIE = RefDIE;
1947     }
1948   }
1949 
1950   unsigned Idx = OrigUnit->getDIEIndex(DIE);
1951   if (!Name && DIE.getTag() == dwarf::DW_TAG_namespace)
1952     Name = "(anonymous namespace)";
1953 
1954   if (CU->getInfo(Idx).ParentIdx == 0 ||
1955       // FIXME: dsymutil-classic compatibility. Ignore modules.
1956       CU->getOrigUnit().getDIEAtIndex(CU->getInfo(Idx).ParentIdx).getTag() ==
1957           dwarf::DW_TAG_module)
1958     return djbHash(Name ? Name : "", djbHash(ChildRecurseDepth ? "" : "::"));
1959 
1960   DWARFDie Die = OrigUnit->getDIEAtIndex(CU->getInfo(Idx).ParentIdx);
1961   return djbHash(
1962       (Name ? Name : ""),
1963       djbHash((Name ? "::" : ""),
1964               hashFullyQualifiedName(Die, *CU, File, ++ChildRecurseDepth)));
1965 }
1966 
1967 static uint64_t getDwoId(const DWARFDie &CUDie, const DWARFUnit &Unit) {
1968   auto DwoId = dwarf::toUnsigned(
1969       CUDie.find({dwarf::DW_AT_dwo_id, dwarf::DW_AT_GNU_dwo_id}));
1970   if (DwoId)
1971     return *DwoId;
1972   return 0;
1973 }
1974 
1975 static std::string remapPath(StringRef Path,
1976                              const objectPrefixMap &ObjectPrefixMap) {
1977   if (ObjectPrefixMap.empty())
1978     return Path.str();
1979 
1980   SmallString<256> p = Path;
1981   for (const auto &Entry : ObjectPrefixMap)
1982     if (llvm::sys::path::replace_path_prefix(p, Entry.first, Entry.second))
1983       break;
1984   return p.str().str();
1985 }
1986 
1987 bool DWARFLinker::registerModuleReference(DWARFDie CUDie, const DWARFUnit &Unit,
1988                                           const DWARFFile &File,
1989                                           OffsetsStringPool &StringPool,
1990                                           DeclContextTree &ODRContexts,
1991                                           uint64_t ModulesEndOffset,
1992                                           unsigned &UnitID, bool IsLittleEndian,
1993                                           unsigned Indent, bool Quiet) {
1994   std::string PCMfile = dwarf::toString(
1995       CUDie.find({dwarf::DW_AT_dwo_name, dwarf::DW_AT_GNU_dwo_name}), "");
1996   if (PCMfile.empty())
1997     return false;
1998   if (Options.ObjectPrefixMap)
1999     PCMfile = remapPath(PCMfile, *Options.ObjectPrefixMap);
2000 
2001   // Clang module DWARF skeleton CUs abuse this for the path to the module.
2002   uint64_t DwoId = getDwoId(CUDie, Unit);
2003 
2004   std::string Name = dwarf::toString(CUDie.find(dwarf::DW_AT_name), "");
2005   if (Name.empty()) {
2006     if (!Quiet)
2007       reportWarning("Anonymous module skeleton CU for " + PCMfile, File);
2008     return true;
2009   }
2010 
2011   if (!Quiet && Options.Verbose) {
2012     outs().indent(Indent);
2013     outs() << "Found clang module reference " << PCMfile;
2014   }
2015 
2016   auto Cached = ClangModules.find(PCMfile);
2017   if (Cached != ClangModules.end()) {
2018     // FIXME: Until PR27449 (https://llvm.org/bugs/show_bug.cgi?id=27449) is
2019     // fixed in clang, only warn about DWO_id mismatches in verbose mode.
2020     // ASTFileSignatures will change randomly when a module is rebuilt.
2021     if (!Quiet && Options.Verbose && (Cached->second != DwoId))
2022       reportWarning(Twine("hash mismatch: this object file was built against a "
2023                           "different version of the module ") +
2024                         PCMfile,
2025                     File);
2026     if (!Quiet && Options.Verbose)
2027       outs() << " [cached].\n";
2028     return true;
2029   }
2030   if (!Quiet && Options.Verbose)
2031     outs() << " ...\n";
2032 
2033   // Cyclic dependencies are disallowed by Clang, but we still
2034   // shouldn't run into an infinite loop, so mark it as processed now.
2035   ClangModules.insert({PCMfile, DwoId});
2036 
2037   if (Error E = loadClangModule(CUDie, PCMfile, Name, DwoId, File, StringPool,
2038                                 ODRContexts, ModulesEndOffset, UnitID,
2039                                 IsLittleEndian, Indent + 2, Quiet)) {
2040     consumeError(std::move(E));
2041     return false;
2042   }
2043   return true;
2044 }
2045 
2046 Error DWARFLinker::loadClangModule(
2047     DWARFDie CUDie, StringRef Filename, StringRef ModuleName, uint64_t DwoId,
2048     const DWARFFile &File, OffsetsStringPool &StringPool,
2049     DeclContextTree &ODRContexts, uint64_t ModulesEndOffset, unsigned &UnitID,
2050     bool IsLittleEndian, unsigned Indent, bool Quiet) {
2051   /// Using a SmallString<0> because loadClangModule() is recursive.
2052   SmallString<0> Path(Options.PrependPath);
2053   if (sys::path::is_relative(Filename))
2054     resolveRelativeObjectPath(Path, CUDie);
2055   sys::path::append(Path, Filename);
2056   // Don't use the cached binary holder because we have no thread-safety
2057   // guarantee and the lifetime is limited.
2058 
2059   if (Options.ObjFileLoader == nullptr)
2060     return Error::success();
2061 
2062   auto ErrOrObj = Options.ObjFileLoader(File.FileName, Path);
2063   if (!ErrOrObj)
2064     return Error::success();
2065 
2066   std::unique_ptr<CompileUnit> Unit;
2067 
2068   for (const auto &CU : ErrOrObj->Dwarf->compile_units()) {
2069     updateDwarfVersion(CU->getVersion());
2070     // Recursively get all modules imported by this one.
2071     auto CUDie = CU->getUnitDIE(false);
2072     if (!CUDie)
2073       continue;
2074     if (!registerModuleReference(CUDie, *CU, File, StringPool, ODRContexts,
2075                                  ModulesEndOffset, UnitID, IsLittleEndian,
2076                                  Indent, Quiet)) {
2077       if (Unit) {
2078         std::string Err =
2079             (Filename +
2080              ": Clang modules are expected to have exactly 1 compile unit.\n")
2081                 .str();
2082         reportError(Err, File);
2083         return make_error<StringError>(Err, inconvertibleErrorCode());
2084       }
2085       // FIXME: Until PR27449 (https://llvm.org/bugs/show_bug.cgi?id=27449) is
2086       // fixed in clang, only warn about DWO_id mismatches in verbose mode.
2087       // ASTFileSignatures will change randomly when a module is rebuilt.
2088       uint64_t PCMDwoId = getDwoId(CUDie, *CU);
2089       if (PCMDwoId != DwoId) {
2090         if (!Quiet && Options.Verbose)
2091           reportWarning(
2092               Twine("hash mismatch: this object file was built against a "
2093                     "different version of the module ") +
2094                   Filename,
2095               File);
2096         // Update the cache entry with the DwoId of the module loaded from disk.
2097         ClangModules[Filename] = PCMDwoId;
2098       }
2099 
2100       // Add this module.
2101       Unit = std::make_unique<CompileUnit>(*CU, UnitID++, !Options.NoODR,
2102                                            ModuleName);
2103       Unit->setHasInterestingContent();
2104       analyzeContextInfo(CUDie, 0, *Unit, &ODRContexts.getRoot(), ODRContexts,
2105                          ModulesEndOffset, Options.ParseableSwiftInterfaces,
2106                          [&](const Twine &Warning, const DWARFDie &DIE) {
2107                            reportWarning(Warning, File, &DIE);
2108                          });
2109       // Keep everything.
2110       Unit->markEverythingAsKept();
2111     }
2112   }
2113   assert(Unit && "CompileUnit is not set!");
2114   if (!Unit->getOrigUnit().getUnitDIE().hasChildren())
2115     return Error::success();
2116   if (!Quiet && Options.Verbose) {
2117     outs().indent(Indent);
2118     outs() << "cloning .debug_info from " << Filename << "\n";
2119   }
2120 
2121   UnitListTy CompileUnits;
2122   CompileUnits.push_back(std::move(Unit));
2123   assert(TheDwarfEmitter);
2124   DIECloner(*this, TheDwarfEmitter, *ErrOrObj, DIEAlloc, CompileUnits,
2125             Options.Update)
2126       .cloneAllCompileUnits(*(ErrOrObj->Dwarf), File, StringPool,
2127                             IsLittleEndian);
2128   return Error::success();
2129 }
2130 
2131 uint64_t DWARFLinker::DIECloner::cloneAllCompileUnits(
2132     DWARFContext &DwarfContext, const DWARFFile &File,
2133     OffsetsStringPool &StringPool, bool IsLittleEndian) {
2134   uint64_t OutputDebugInfoSize =
2135       Linker.Options.NoOutput ? 0 : Emitter->getDebugInfoSectionSize();
2136   const uint64_t StartOutputDebugInfoSize = OutputDebugInfoSize;
2137 
2138   for (auto &CurrentUnit : CompileUnits) {
2139     const uint16_t DwarfVersion = CurrentUnit->getOrigUnit().getVersion();
2140     const uint32_t UnitHeaderSize = DwarfVersion >= 5 ? 12 : 11;
2141     auto InputDIE = CurrentUnit->getOrigUnit().getUnitDIE();
2142     CurrentUnit->setStartOffset(OutputDebugInfoSize);
2143     if (!InputDIE) {
2144       OutputDebugInfoSize = CurrentUnit->computeNextUnitOffset(DwarfVersion);
2145       continue;
2146     }
2147     if (CurrentUnit->getInfo(0).Keep) {
2148       // Clone the InputDIE into your Unit DIE in our compile unit since it
2149       // already has a DIE inside of it.
2150       CurrentUnit->createOutputDIE();
2151       cloneDIE(InputDIE, File, *CurrentUnit, StringPool, 0 /* PC offset */,
2152                UnitHeaderSize, 0, IsLittleEndian,
2153                CurrentUnit->getOutputUnitDIE());
2154     }
2155 
2156     OutputDebugInfoSize = CurrentUnit->computeNextUnitOffset(DwarfVersion);
2157 
2158     if (!Linker.Options.NoOutput) {
2159       assert(Emitter);
2160 
2161       if (LLVM_LIKELY(!Linker.Options.Update) ||
2162           Linker.needToTranslateStrings())
2163         Linker.patchLineTableForUnit(*CurrentUnit, DwarfContext, File);
2164 
2165       Linker.emitAcceleratorEntriesForUnit(*CurrentUnit);
2166 
2167       if (LLVM_UNLIKELY(Linker.Options.Update))
2168         continue;
2169 
2170       Linker.patchRangesForUnit(*CurrentUnit, DwarfContext, File);
2171       auto ProcessExpr = [&](StringRef Bytes,
2172                              SmallVectorImpl<uint8_t> &Buffer) {
2173         DWARFUnit &OrigUnit = CurrentUnit->getOrigUnit();
2174         DataExtractor Data(Bytes, IsLittleEndian,
2175                            OrigUnit.getAddressByteSize());
2176         cloneExpression(Data,
2177                         DWARFExpression(Data, OrigUnit.getAddressByteSize(),
2178                                         OrigUnit.getFormParams().Format),
2179                         File, *CurrentUnit, Buffer);
2180       };
2181       Emitter->emitLocationsForUnit(*CurrentUnit, DwarfContext, ProcessExpr);
2182     }
2183   }
2184 
2185   if (!Linker.Options.NoOutput) {
2186     assert(Emitter);
2187     // Emit all the compile unit's debug information.
2188     for (auto &CurrentUnit : CompileUnits) {
2189       if (LLVM_LIKELY(!Linker.Options.Update))
2190         Linker.generateUnitRanges(*CurrentUnit);
2191 
2192       CurrentUnit->fixupForwardReferences();
2193 
2194       if (!CurrentUnit->getOutputUnitDIE())
2195         continue;
2196 
2197       unsigned DwarfVersion = CurrentUnit->getOrigUnit().getVersion();
2198 
2199       assert(Emitter->getDebugInfoSectionSize() ==
2200              CurrentUnit->getStartOffset());
2201       Emitter->emitCompileUnitHeader(*CurrentUnit, DwarfVersion);
2202       Emitter->emitDIE(*CurrentUnit->getOutputUnitDIE());
2203       assert(Emitter->getDebugInfoSectionSize() ==
2204              CurrentUnit->computeNextUnitOffset(DwarfVersion));
2205     }
2206   }
2207 
2208   return OutputDebugInfoSize - StartOutputDebugInfoSize;
2209 }
2210 
2211 void DWARFLinker::updateAccelKind(DWARFContext &Dwarf) {
2212   if (Options.TheAccelTableKind != AccelTableKind::Default)
2213     return;
2214 
2215   auto &DwarfObj = Dwarf.getDWARFObj();
2216 
2217   if (!AtLeastOneDwarfAccelTable &&
2218       (!DwarfObj.getAppleNamesSection().Data.empty() ||
2219        !DwarfObj.getAppleTypesSection().Data.empty() ||
2220        !DwarfObj.getAppleNamespacesSection().Data.empty() ||
2221        !DwarfObj.getAppleObjCSection().Data.empty())) {
2222     AtLeastOneAppleAccelTable = true;
2223   }
2224 
2225   if (!AtLeastOneDwarfAccelTable && !DwarfObj.getNamesSection().Data.empty()) {
2226     AtLeastOneDwarfAccelTable = true;
2227   }
2228 }
2229 
2230 bool DWARFLinker::emitPaperTrailWarnings(const DWARFFile &File,
2231                                          OffsetsStringPool &StringPool) {
2232 
2233   if (File.Warnings.empty())
2234     return false;
2235 
2236   DIE *CUDie = DIE::get(DIEAlloc, dwarf::DW_TAG_compile_unit);
2237   CUDie->setOffset(11);
2238   StringRef Producer;
2239   StringRef WarningHeader;
2240 
2241   switch (DwarfLinkerClientID) {
2242   case DwarfLinkerClient::Dsymutil:
2243     Producer = StringPool.internString("dsymutil");
2244     WarningHeader = "dsymutil_warning";
2245     break;
2246 
2247   default:
2248     Producer = StringPool.internString("dwarfopt");
2249     WarningHeader = "dwarfopt_warning";
2250     break;
2251   }
2252 
2253   StringRef FileName = StringPool.internString(File.FileName);
2254   CUDie->addValue(DIEAlloc, dwarf::DW_AT_producer, dwarf::DW_FORM_strp,
2255                   DIEInteger(StringPool.getStringOffset(Producer)));
2256   DIEBlock *String = new (DIEAlloc) DIEBlock();
2257   DIEBlocks.push_back(String);
2258   for (auto &C : FileName)
2259     String->addValue(DIEAlloc, dwarf::Attribute(0), dwarf::DW_FORM_data1,
2260                      DIEInteger(C));
2261   String->addValue(DIEAlloc, dwarf::Attribute(0), dwarf::DW_FORM_data1,
2262                    DIEInteger(0));
2263 
2264   CUDie->addValue(DIEAlloc, dwarf::DW_AT_name, dwarf::DW_FORM_string, String);
2265   for (const auto &Warning : File.Warnings) {
2266     DIE &ConstDie = CUDie->addChild(DIE::get(DIEAlloc, dwarf::DW_TAG_constant));
2267     ConstDie.addValue(DIEAlloc, dwarf::DW_AT_name, dwarf::DW_FORM_strp,
2268                       DIEInteger(StringPool.getStringOffset(WarningHeader)));
2269     ConstDie.addValue(DIEAlloc, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag,
2270                       DIEInteger(1));
2271     ConstDie.addValue(DIEAlloc, dwarf::DW_AT_const_value, dwarf::DW_FORM_strp,
2272                       DIEInteger(StringPool.getStringOffset(Warning)));
2273   }
2274   unsigned Size = 4 /* FORM_strp */ + FileName.size() + 1 +
2275                   File.Warnings.size() * (4 + 1 + 4) + 1 /* End of children */;
2276   DIEAbbrev Abbrev = CUDie->generateAbbrev();
2277   assignAbbrev(Abbrev);
2278   CUDie->setAbbrevNumber(Abbrev.getNumber());
2279   Size += getULEB128Size(Abbrev.getNumber());
2280   // Abbreviation ordering needed for classic compatibility.
2281   for (auto &Child : CUDie->children()) {
2282     Abbrev = Child.generateAbbrev();
2283     assignAbbrev(Abbrev);
2284     Child.setAbbrevNumber(Abbrev.getNumber());
2285     Size += getULEB128Size(Abbrev.getNumber());
2286   }
2287   CUDie->setSize(Size);
2288   TheDwarfEmitter->emitPaperTrailWarningsDie(*CUDie);
2289 
2290   return true;
2291 }
2292 
2293 void DWARFLinker::copyInvariantDebugSection(DWARFContext &Dwarf) {
2294   if (!needToTranslateStrings())
2295     TheDwarfEmitter->emitSectionContents(
2296         Dwarf.getDWARFObj().getLineSection().Data, "debug_line");
2297   TheDwarfEmitter->emitSectionContents(Dwarf.getDWARFObj().getLocSection().Data,
2298                                        "debug_loc");
2299   TheDwarfEmitter->emitSectionContents(
2300       Dwarf.getDWARFObj().getRangesSection().Data, "debug_ranges");
2301   TheDwarfEmitter->emitSectionContents(
2302       Dwarf.getDWARFObj().getFrameSection().Data, "debug_frame");
2303   TheDwarfEmitter->emitSectionContents(Dwarf.getDWARFObj().getArangesSection(),
2304                                        "debug_aranges");
2305 }
2306 
2307 void DWARFLinker::addObjectFile(DWARFFile &File) {
2308   ObjectContexts.emplace_back(LinkContext(File));
2309 
2310   if (ObjectContexts.back().File.Dwarf)
2311     updateAccelKind(*ObjectContexts.back().File.Dwarf);
2312 }
2313 
2314 bool DWARFLinker::link() {
2315   assert(Options.NoOutput || TheDwarfEmitter);
2316 
2317   // A unique ID that identifies each compile unit.
2318   unsigned UnitID = 0;
2319 
2320   // First populate the data structure we need for each iteration of the
2321   // parallel loop.
2322   unsigned NumObjects = ObjectContexts.size();
2323 
2324   // This Dwarf string pool which is used for emission. It must be used
2325   // serially as the order of calling getStringOffset matters for
2326   // reproducibility.
2327   OffsetsStringPool OffsetsStringPool(StringsTranslator, true);
2328 
2329   // ODR Contexts for the optimize.
2330   DeclContextTree ODRContexts;
2331 
2332   // If we haven't decided on an accelerator table kind yet, we base ourselves
2333   // on the DWARF we have seen so far. At this point we haven't pulled in debug
2334   // information from modules yet, so it is technically possible that they
2335   // would affect the decision. However, as they're built with the same
2336   // compiler and flags, it is safe to assume that they will follow the
2337   // decision made here.
2338   if (Options.TheAccelTableKind == AccelTableKind::Default) {
2339     if (AtLeastOneDwarfAccelTable && !AtLeastOneAppleAccelTable)
2340       Options.TheAccelTableKind = AccelTableKind::Dwarf;
2341     else
2342       Options.TheAccelTableKind = AccelTableKind::Apple;
2343   }
2344 
2345   for (LinkContext &OptContext : ObjectContexts) {
2346     if (Options.Verbose) {
2347       if (DwarfLinkerClientID == DwarfLinkerClient::Dsymutil)
2348         outs() << "DEBUG MAP OBJECT: " << OptContext.File.FileName << "\n";
2349       else
2350         outs() << "OBJECT FILE: " << OptContext.File.FileName << "\n";
2351     }
2352 
2353     if (emitPaperTrailWarnings(OptContext.File, OffsetsStringPool))
2354       continue;
2355 
2356     if (!OptContext.File.Dwarf)
2357       continue;
2358     // Look for relocations that correspond to address map entries.
2359 
2360     // there was findvalidrelocations previously ... probably we need to gather
2361     // info here
2362     if (LLVM_LIKELY(!Options.Update) &&
2363         !OptContext.File.Addresses->hasValidRelocs()) {
2364       if (Options.Verbose)
2365         outs() << "No valid relocations found. Skipping.\n";
2366 
2367       // Set "Skip" flag as a signal to other loops that we should not
2368       // process this iteration.
2369       OptContext.Skip = true;
2370       continue;
2371     }
2372 
2373     // Setup access to the debug info.
2374     if (!OptContext.File.Dwarf)
2375       continue;
2376 
2377     // In a first phase, just read in the debug info and load all clang modules.
2378     OptContext.CompileUnits.reserve(
2379         OptContext.File.Dwarf->getNumCompileUnits());
2380 
2381     for (const auto &CU : OptContext.File.Dwarf->compile_units()) {
2382       updateDwarfVersion(CU->getVersion());
2383       auto CUDie = CU->getUnitDIE(false);
2384       if (Options.Verbose) {
2385         outs() << "Input compilation unit:";
2386         DIDumpOptions DumpOpts;
2387         DumpOpts.ChildRecurseDepth = 0;
2388         DumpOpts.Verbose = Options.Verbose;
2389         CUDie.dump(outs(), 0, DumpOpts);
2390       }
2391       if (CUDie && !LLVM_UNLIKELY(Options.Update))
2392         registerModuleReference(CUDie, *CU, OptContext.File, OffsetsStringPool,
2393                                 ODRContexts, 0, UnitID,
2394                                 OptContext.File.Dwarf->isLittleEndian());
2395     }
2396   }
2397 
2398   // If we haven't seen any CUs, pick an arbitrary valid Dwarf version anyway.
2399   if (MaxDwarfVersion == 0)
2400     MaxDwarfVersion = 3;
2401 
2402   // At this point we know how much data we have emitted. We use this value to
2403   // compare canonical DIE offsets in analyzeContextInfo to see if a definition
2404   // is already emitted, without being affected by canonical die offsets set
2405   // later. This prevents undeterminism when analyze and clone execute
2406   // concurrently, as clone set the canonical DIE offset and analyze reads it.
2407   const uint64_t ModulesEndOffset =
2408       Options.NoOutput ? 0 : TheDwarfEmitter->getDebugInfoSectionSize();
2409 
2410   // These variables manage the list of processed object files.
2411   // The mutex and condition variable are to ensure that this is thread safe.
2412   std::mutex ProcessedFilesMutex;
2413   std::condition_variable ProcessedFilesConditionVariable;
2414   BitVector ProcessedFiles(NumObjects, false);
2415 
2416   //  Analyzing the context info is particularly expensive so it is executed in
2417   //  parallel with emitting the previous compile unit.
2418   auto AnalyzeLambda = [&](size_t I) {
2419     auto &Context = ObjectContexts[I];
2420 
2421     if (Context.Skip || !Context.File.Dwarf)
2422       return;
2423 
2424     for (const auto &CU : Context.File.Dwarf->compile_units()) {
2425       updateDwarfVersion(CU->getVersion());
2426       // The !registerModuleReference() condition effectively skips
2427       // over fully resolved skeleton units. This second pass of
2428       // registerModuleReferences doesn't do any new work, but it
2429       // will collect top-level errors, which are suppressed. Module
2430       // warnings were already displayed in the first iteration.
2431       bool Quiet = true;
2432       auto CUDie = CU->getUnitDIE(false);
2433       if (!CUDie || LLVM_UNLIKELY(Options.Update) ||
2434           !registerModuleReference(CUDie, *CU, Context.File, OffsetsStringPool,
2435                                    ODRContexts, ModulesEndOffset, UnitID,
2436                                    Quiet)) {
2437         Context.CompileUnits.push_back(std::make_unique<CompileUnit>(
2438             *CU, UnitID++, !Options.NoODR && !Options.Update, ""));
2439       }
2440     }
2441 
2442     // Now build the DIE parent links that we will use during the next phase.
2443     for (auto &CurrentUnit : Context.CompileUnits) {
2444       auto CUDie = CurrentUnit->getOrigUnit().getUnitDIE();
2445       if (!CUDie)
2446         continue;
2447       analyzeContextInfo(CurrentUnit->getOrigUnit().getUnitDIE(), 0,
2448                          *CurrentUnit, &ODRContexts.getRoot(), ODRContexts,
2449                          ModulesEndOffset, Options.ParseableSwiftInterfaces,
2450                          [&](const Twine &Warning, const DWARFDie &DIE) {
2451                            reportWarning(Warning, Context.File, &DIE);
2452                          });
2453     }
2454   };
2455 
2456   // For each object file map how many bytes were emitted.
2457   StringMap<DebugInfoSize> SizeByObject;
2458 
2459   // And then the remaining work in serial again.
2460   // Note, although this loop runs in serial, it can run in parallel with
2461   // the analyzeContextInfo loop so long as we process files with indices >=
2462   // than those processed by analyzeContextInfo.
2463   auto CloneLambda = [&](size_t I) {
2464     auto &OptContext = ObjectContexts[I];
2465     if (OptContext.Skip || !OptContext.File.Dwarf)
2466       return;
2467 
2468     // Then mark all the DIEs that need to be present in the generated output
2469     // and collect some information about them.
2470     // Note that this loop can not be merged with the previous one because
2471     // cross-cu references require the ParentIdx to be setup for every CU in
2472     // the object file before calling this.
2473     if (LLVM_UNLIKELY(Options.Update)) {
2474       for (auto &CurrentUnit : OptContext.CompileUnits)
2475         CurrentUnit->markEverythingAsKept();
2476       copyInvariantDebugSection(*OptContext.File.Dwarf);
2477     } else {
2478       for (auto &CurrentUnit : OptContext.CompileUnits)
2479         lookForDIEsToKeep(*OptContext.File.Addresses,
2480                           OptContext.File.Addresses->getValidAddressRanges(),
2481                           OptContext.CompileUnits,
2482                           CurrentUnit->getOrigUnit().getUnitDIE(),
2483                           OptContext.File, *CurrentUnit, 0);
2484     }
2485 
2486     // The calls to applyValidRelocs inside cloneDIE will walk the reloc
2487     // array again (in the same way findValidRelocsInDebugInfo() did). We
2488     // need to reset the NextValidReloc index to the beginning.
2489     if (OptContext.File.Addresses->hasValidRelocs() ||
2490         LLVM_UNLIKELY(Options.Update)) {
2491       SizeByObject[OptContext.File.FileName].Input =
2492           getDebugInfoSize(*OptContext.File.Dwarf);
2493       SizeByObject[OptContext.File.FileName].Output =
2494           DIECloner(*this, TheDwarfEmitter, OptContext.File, DIEAlloc,
2495                     OptContext.CompileUnits, Options.Update)
2496               .cloneAllCompileUnits(*OptContext.File.Dwarf, OptContext.File,
2497                                     OffsetsStringPool,
2498                                     OptContext.File.Dwarf->isLittleEndian());
2499     }
2500     if (!Options.NoOutput && !OptContext.CompileUnits.empty() &&
2501         LLVM_LIKELY(!Options.Update))
2502       patchFrameInfoForObject(
2503           OptContext.File, OptContext.File.Addresses->getValidAddressRanges(),
2504           *OptContext.File.Dwarf,
2505           OptContext.CompileUnits[0]->getOrigUnit().getAddressByteSize());
2506 
2507     // Clean-up before starting working on the next object.
2508     cleanupAuxiliarryData(OptContext);
2509   };
2510 
2511   auto EmitLambda = [&]() {
2512     // Emit everything that's global.
2513     if (!Options.NoOutput) {
2514       TheDwarfEmitter->emitAbbrevs(Abbreviations, MaxDwarfVersion);
2515       TheDwarfEmitter->emitStrings(OffsetsStringPool);
2516       switch (Options.TheAccelTableKind) {
2517       case AccelTableKind::Apple:
2518         TheDwarfEmitter->emitAppleNames(AppleNames);
2519         TheDwarfEmitter->emitAppleNamespaces(AppleNamespaces);
2520         TheDwarfEmitter->emitAppleTypes(AppleTypes);
2521         TheDwarfEmitter->emitAppleObjc(AppleObjc);
2522         break;
2523       case AccelTableKind::Dwarf:
2524         TheDwarfEmitter->emitDebugNames(DebugNames);
2525         break;
2526       case AccelTableKind::Pub:
2527         // Already emitted by emitPubAcceleratorEntriesForUnit.
2528         break;
2529       case AccelTableKind::Default:
2530         llvm_unreachable("Default should have already been resolved.");
2531         break;
2532       }
2533     }
2534   };
2535 
2536   auto AnalyzeAll = [&]() {
2537     for (unsigned I = 0, E = NumObjects; I != E; ++I) {
2538       AnalyzeLambda(I);
2539 
2540       std::unique_lock<std::mutex> LockGuard(ProcessedFilesMutex);
2541       ProcessedFiles.set(I);
2542       ProcessedFilesConditionVariable.notify_one();
2543     }
2544   };
2545 
2546   auto CloneAll = [&]() {
2547     for (unsigned I = 0, E = NumObjects; I != E; ++I) {
2548       {
2549         std::unique_lock<std::mutex> LockGuard(ProcessedFilesMutex);
2550         if (!ProcessedFiles[I]) {
2551           ProcessedFilesConditionVariable.wait(
2552               LockGuard, [&]() { return ProcessedFiles[I]; });
2553         }
2554       }
2555 
2556       CloneLambda(I);
2557     }
2558     EmitLambda();
2559   };
2560 
2561   // To limit memory usage in the single threaded case, analyze and clone are
2562   // run sequentially so the OptContext is freed after processing each object
2563   // in endDebugObject.
2564   if (Options.Threads == 1) {
2565     for (unsigned I = 0, E = NumObjects; I != E; ++I) {
2566       AnalyzeLambda(I);
2567       CloneLambda(I);
2568     }
2569     EmitLambda();
2570   } else {
2571     ThreadPool Pool(hardware_concurrency(2));
2572     Pool.async(AnalyzeAll);
2573     Pool.async(CloneAll);
2574     Pool.wait();
2575   }
2576 
2577   if (Options.Statistics) {
2578     // Create a vector sorted in descending order by output size.
2579     std::vector<std::pair<StringRef, DebugInfoSize>> Sorted;
2580     for (auto &E : SizeByObject)
2581       Sorted.emplace_back(E.first(), E.second);
2582     llvm::sort(Sorted, [](auto &LHS, auto &RHS) {
2583       return LHS.second.Output > RHS.second.Output;
2584     });
2585 
2586     auto ComputePercentange = [](int64_t Input, int64_t Output) -> float {
2587       const float Difference = Output - Input;
2588       const float Sum = Input + Output;
2589       if (Sum == 0)
2590         return 0;
2591       return (Difference / (Sum / 2));
2592     };
2593 
2594     int64_t InputTotal = 0;
2595     int64_t OutputTotal = 0;
2596     const char *FormatStr = "{0,-45} {1,10}b  {2,10}b {3,8:P}\n";
2597 
2598     // Print header.
2599     outs() << ".debug_info section size (in bytes)\n";
2600     outs() << "----------------------------------------------------------------"
2601               "---------------\n";
2602     outs() << "Filename                                           Object       "
2603               "  dSYM   Change\n";
2604     outs() << "----------------------------------------------------------------"
2605               "---------------\n";
2606 
2607     // Print body.
2608     for (auto &E : Sorted) {
2609       InputTotal += E.second.Input;
2610       OutputTotal += E.second.Output;
2611       llvm::outs() << formatv(
2612           FormatStr, sys::path::filename(E.first).take_back(45), E.second.Input,
2613           E.second.Output, ComputePercentange(E.second.Input, E.second.Output));
2614     }
2615     // Print total and footer.
2616     outs() << "----------------------------------------------------------------"
2617               "---------------\n";
2618     llvm::outs() << formatv(FormatStr, "Total", InputTotal, OutputTotal,
2619                             ComputePercentange(InputTotal, OutputTotal));
2620     outs() << "----------------------------------------------------------------"
2621               "---------------\n\n";
2622   }
2623 
2624   return true;
2625 }
2626 
2627 } // namespace llvm
2628