blob: 1880028f9eaaf4a4cf66d9b5cf80c3f3d64b883e [file] [log] [blame]
Frederic Riss231f7142014-12-12 17:31:24 +00001//===- tools/dsymutil/DwarfLinker.cpp - Dwarf debug info linker -----------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include "DebugMap.h"
Frederic Rissd3455182015-01-28 18:27:01 +000010#include "BinaryHolder.h"
11#include "DebugMap.h"
Frederic Riss231f7142014-12-12 17:31:24 +000012#include "dsymutil.h"
Frederic Riss1af75f72015-03-12 18:45:10 +000013#include "llvm/ADT/IntervalMap.h"
Frederic Riss1b9be2c2015-03-11 18:46:01 +000014#include "llvm/ADT/StringMap.h"
15#include "llvm/ADT/STLExtras.h"
Frederic Rissc99ea202015-02-28 00:29:11 +000016#include "llvm/CodeGen/AsmPrinter.h"
Frederic Rissb8b43d52015-03-04 22:07:44 +000017#include "llvm/CodeGen/DIE.h"
Zachary Turner82af9432015-01-30 18:07:45 +000018#include "llvm/DebugInfo/DWARF/DWARFContext.h"
19#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
Frederic Riss1b9da422015-02-13 23:18:29 +000020#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
Frederic Rissc99ea202015-02-28 00:29:11 +000021#include "llvm/MC/MCAsmBackend.h"
22#include "llvm/MC/MCAsmInfo.h"
23#include "llvm/MC/MCContext.h"
24#include "llvm/MC/MCCodeEmitter.h"
25#include "llvm/MC/MCInstrInfo.h"
26#include "llvm/MC/MCObjectFileInfo.h"
27#include "llvm/MC/MCRegisterInfo.h"
28#include "llvm/MC/MCStreamer.h"
Frederic Riss1036e642015-02-13 23:18:22 +000029#include "llvm/Object/MachO.h"
Frederic Riss84c09a52015-02-13 23:18:34 +000030#include "llvm/Support/Dwarf.h"
31#include "llvm/Support/LEB128.h"
Frederic Rissc99ea202015-02-28 00:29:11 +000032#include "llvm/Support/TargetRegistry.h"
33#include "llvm/Target/TargetMachine.h"
34#include "llvm/Target/TargetOptions.h"
Frederic Rissd3455182015-01-28 18:27:01 +000035#include <string>
Frederic Riss6afcfce2015-03-13 18:35:57 +000036#include <tuple>
Frederic Riss231f7142014-12-12 17:31:24 +000037
38namespace llvm {
39namespace dsymutil {
40
Frederic Rissd3455182015-01-28 18:27:01 +000041namespace {
42
Frederic Rissdef4fb72015-02-28 00:29:01 +000043void warn(const Twine &Warning, const Twine &Context) {
44 errs() << Twine("while processing ") + Context + ":\n";
45 errs() << Twine("warning: ") + Warning + "\n";
46}
47
Frederic Rissc99ea202015-02-28 00:29:11 +000048bool error(const Twine &Error, const Twine &Context) {
49 errs() << Twine("while processing ") + Context + ":\n";
50 errs() << Twine("error: ") + Error + "\n";
51 return false;
52}
53
Frederic Riss1af75f72015-03-12 18:45:10 +000054template <typename KeyT, typename ValT>
55using HalfOpenIntervalMap =
56 IntervalMap<KeyT, ValT, IntervalMapImpl::NodeSizer<KeyT, ValT>::LeafSize,
57 IntervalMapHalfOpenInfo<KeyT>>;
58
Frederic Riss563cba62015-01-28 22:15:14 +000059/// \brief Stores all information relating to a compile unit, be it in
60/// its original instance in the object file to its brand new cloned
61/// and linked DIE tree.
62class CompileUnit {
63public:
64 /// \brief Information gathered about a DIE in the object file.
65 struct DIEInfo {
Frederic Riss31da3242015-03-11 18:45:52 +000066 int64_t AddrAdjust; ///< Address offset to apply to the described entity.
Frederic Riss9833de62015-03-06 23:22:53 +000067 DIE *Clone; ///< Cloned version of that DIE.
Frederic Riss84c09a52015-02-13 23:18:34 +000068 uint32_t ParentIdx; ///< The index of this DIE's parent.
69 bool Keep; ///< Is the DIE part of the linked output?
70 bool InDebugMap; ///< Was this DIE's entity found in the map?
Frederic Riss563cba62015-01-28 22:15:14 +000071 };
72
Frederic Riss1af75f72015-03-12 18:45:10 +000073 CompileUnit(DWARFUnit &OrigUnit)
Frederic Riss6afcfce2015-03-13 18:35:57 +000074 : OrigUnit(OrigUnit), LowPc(UINT64_MAX), HighPc(0), RangeAlloc(),
75 Ranges(RangeAlloc) {
Frederic Riss563cba62015-01-28 22:15:14 +000076 Info.resize(OrigUnit.getNumDIEs());
77 }
78
Frederic Riss2838f9e2015-03-05 05:29:05 +000079 CompileUnit(CompileUnit &&RHS)
80 : OrigUnit(RHS.OrigUnit), Info(std::move(RHS.Info)),
81 CUDie(std::move(RHS.CUDie)), StartOffset(RHS.StartOffset),
Frederic Riss1af75f72015-03-12 18:45:10 +000082 NextUnitOffset(RHS.NextUnitOffset), RangeAlloc(), Ranges(RangeAlloc) {
83 // The CompileUnit container has been 'reserve()'d with the right
84 // size. We cannot move the IntervalMap anyway.
85 llvm_unreachable("CompileUnits should not be moved.");
86 }
David Blaikiea8adc132015-03-04 22:20:52 +000087
Frederic Rissc3349d42015-02-13 23:18:27 +000088 DWARFUnit &getOrigUnit() const { return OrigUnit; }
Frederic Riss563cba62015-01-28 22:15:14 +000089
Frederic Rissb8b43d52015-03-04 22:07:44 +000090 DIE *getOutputUnitDIE() const { return CUDie.get(); }
91 void setOutputUnitDIE(DIE *Die) { CUDie.reset(Die); }
92
Frederic Riss563cba62015-01-28 22:15:14 +000093 DIEInfo &getInfo(unsigned Idx) { return Info[Idx]; }
94 const DIEInfo &getInfo(unsigned Idx) const { return Info[Idx]; }
95
Frederic Rissb8b43d52015-03-04 22:07:44 +000096 uint64_t getStartOffset() const { return StartOffset; }
97 uint64_t getNextUnitOffset() const { return NextUnitOffset; }
Frederic Riss95529482015-03-13 23:30:27 +000098 void setStartOffset(uint64_t DebugInfoSize) { StartOffset = DebugInfoSize; }
Frederic Rissb8b43d52015-03-04 22:07:44 +000099
Frederic Riss5a62dc32015-03-13 18:35:54 +0000100 uint64_t getLowPc() const { return LowPc; }
101 uint64_t getHighPc() const { return HighPc; }
102
Frederic Riss9d441b62015-03-06 23:22:50 +0000103
104 /// \brief Compute the end offset for this unit. Must be
105 /// called after the CU's DIEs have been cloned.
Frederic Rissb8b43d52015-03-04 22:07:44 +0000106 /// \returns the next unit offset (which is also the current
107 /// debug_info section size).
Frederic Riss9d441b62015-03-06 23:22:50 +0000108 uint64_t computeNextUnitOffset();
Frederic Rissb8b43d52015-03-04 22:07:44 +0000109
Frederic Riss6afcfce2015-03-13 18:35:57 +0000110 /// \brief Keep track of a forward reference to DIE \p Die in \p
111 /// RefUnit by \p Attr. The attribute should be fixed up later to
112 /// point to the absolute offset of \p Die in the debug_info section.
113 void noteForwardReference(DIE *Die, const CompileUnit *RefUnit,
114 DIEInteger *Attr);
Frederic Riss9833de62015-03-06 23:22:53 +0000115
116 /// \brief Apply all fixups recored by noteForwardReference().
117 void fixupForwardReferences();
118
Frederic Riss1af75f72015-03-12 18:45:10 +0000119 /// \brief Add a function range [\p LowPC, \p HighPC) that is
120 /// relocatad by applying offset \p PCOffset.
121 void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset);
122
Frederic Riss563cba62015-01-28 22:15:14 +0000123private:
124 DWARFUnit &OrigUnit;
Frederic Rissb8b43d52015-03-04 22:07:44 +0000125 std::vector<DIEInfo> Info; ///< DIE info indexed by DIE index.
126 std::unique_ptr<DIE> CUDie; ///< Root of the linked DIE tree.
127
128 uint64_t StartOffset;
129 uint64_t NextUnitOffset;
Frederic Riss9833de62015-03-06 23:22:53 +0000130
Frederic Riss5a62dc32015-03-13 18:35:54 +0000131 uint64_t LowPc;
132 uint64_t HighPc;
133
Frederic Riss9833de62015-03-06 23:22:53 +0000134 /// \brief A list of attributes to fixup with the absolute offset of
135 /// a DIE in the debug_info section.
136 ///
137 /// The offsets for the attributes in this array couldn't be set while
Frederic Riss6afcfce2015-03-13 18:35:57 +0000138 /// cloning because for cross-cu forward refences the target DIE's
139 /// offset isn't known you emit the reference attribute.
140 std::vector<std::tuple<DIE *, const CompileUnit *, DIEInteger *>>
141 ForwardDIEReferences;
Frederic Riss1af75f72015-03-12 18:45:10 +0000142
143 HalfOpenIntervalMap<uint64_t, int64_t>::Allocator RangeAlloc;
144 /// \brief The ranges in that interval map are the PC ranges for
145 /// functions in this unit, associated with the PC offset to apply
146 /// to the addresses to get the linked address.
147 HalfOpenIntervalMap<uint64_t, int64_t> Ranges;
Frederic Riss563cba62015-01-28 22:15:14 +0000148};
149
Frederic Riss9d441b62015-03-06 23:22:50 +0000150uint64_t CompileUnit::computeNextUnitOffset() {
Frederic Rissb8b43d52015-03-04 22:07:44 +0000151 NextUnitOffset = StartOffset + 11 /* Header size */;
152 // The root DIE might be null, meaning that the Unit had nothing to
153 // contribute to the linked output. In that case, we will emit the
154 // unit header without any actual DIE.
155 if (CUDie)
156 NextUnitOffset += CUDie->getSize();
157 return NextUnitOffset;
158}
159
Frederic Riss6afcfce2015-03-13 18:35:57 +0000160/// \brief Keep track of a forward cross-cu reference from this unit
161/// to \p Die that lives in \p RefUnit.
162void CompileUnit::noteForwardReference(DIE *Die, const CompileUnit *RefUnit,
163 DIEInteger *Attr) {
164 ForwardDIEReferences.emplace_back(Die, RefUnit, Attr);
Frederic Riss9833de62015-03-06 23:22:53 +0000165}
166
167/// \brief Apply all fixups recorded by noteForwardReference().
168void CompileUnit::fixupForwardReferences() {
Frederic Riss6afcfce2015-03-13 18:35:57 +0000169 for (const auto &Ref : ForwardDIEReferences) {
170 DIE *RefDie;
171 const CompileUnit *RefUnit;
172 DIEInteger *Attr;
173 std::tie(RefDie, RefUnit, Attr) = Ref;
174 Attr->setValue(RefDie->getOffset() + RefUnit->getStartOffset());
175 }
Frederic Riss9833de62015-03-06 23:22:53 +0000176}
177
Frederic Riss5a62dc32015-03-13 18:35:54 +0000178void CompileUnit::addFunctionRange(uint64_t FuncLowPc, uint64_t FuncHighPc,
179 int64_t PcOffset) {
180 Ranges.insert(FuncLowPc, FuncHighPc, PcOffset);
181 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset);
182 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset);
Frederic Riss1af75f72015-03-12 18:45:10 +0000183}
184
Frederic Rissef648462015-03-06 17:56:30 +0000185/// \brief A string table that doesn't need relocations.
186///
187/// We are doing a final link, no need for a string table that
188/// has relocation entries for every reference to it. This class
189/// provides this ablitity by just associating offsets with
190/// strings.
191class NonRelocatableStringpool {
192public:
193 /// \brief Entries are stored into the StringMap and simply linked
194 /// together through the second element of this pair in order to
195 /// keep track of insertion order.
196 typedef StringMap<std::pair<uint32_t, StringMapEntryBase *>, BumpPtrAllocator>
197 MapTy;
198
199 NonRelocatableStringpool()
200 : CurrentEndOffset(0), Sentinel(0), Last(&Sentinel) {
201 // Legacy dsymutil puts an empty string at the start of the line
202 // table.
203 getStringOffset("");
204 }
205
206 /// \brief Get the offset of string \p S in the string table. This
207 /// can insert a new element or return the offset of a preexisitng
208 /// one.
209 uint32_t getStringOffset(StringRef S);
210
211 /// \brief Get permanent storage for \p S (but do not necessarily
212 /// emit \p S in the output section).
213 /// \returns The StringRef that points to permanent storage to use
214 /// in place of \p S.
215 StringRef internString(StringRef S);
216
217 // \brief Return the first entry of the string table.
218 const MapTy::MapEntryTy *getFirstEntry() const {
219 return getNextEntry(&Sentinel);
220 }
221
222 // \brief Get the entry following \p E in the string table or null
223 // if \p E was the last entry.
224 const MapTy::MapEntryTy *getNextEntry(const MapTy::MapEntryTy *E) const {
225 return static_cast<const MapTy::MapEntryTy *>(E->getValue().second);
226 }
227
228 uint64_t getSize() { return CurrentEndOffset; }
229
230private:
231 MapTy Strings;
232 uint32_t CurrentEndOffset;
233 MapTy::MapEntryTy Sentinel, *Last;
234};
235
236/// \brief Get the offset of string \p S in the string table. This
237/// can insert a new element or return the offset of a preexisitng
238/// one.
239uint32_t NonRelocatableStringpool::getStringOffset(StringRef S) {
240 if (S.empty() && !Strings.empty())
241 return 0;
242
243 std::pair<uint32_t, StringMapEntryBase *> Entry(0, nullptr);
244 MapTy::iterator It;
245 bool Inserted;
246
247 // A non-empty string can't be at offset 0, so if we have an entry
248 // with a 0 offset, it must be a previously interned string.
249 std::tie(It, Inserted) = Strings.insert(std::make_pair(S, Entry));
250 if (Inserted || It->getValue().first == 0) {
251 // Set offset and chain at the end of the entries list.
252 It->getValue().first = CurrentEndOffset;
253 CurrentEndOffset += S.size() + 1; // +1 for the '\0'.
254 Last->getValue().second = &*It;
255 Last = &*It;
256 }
257 return It->getValue().first;
Aaron Ballman5287f0c2015-03-07 15:10:32 +0000258}
Frederic Rissef648462015-03-06 17:56:30 +0000259
260/// \brief Put \p S into the StringMap so that it gets permanent
261/// storage, but do not actually link it in the chain of elements
262/// that go into the output section. A latter call to
263/// getStringOffset() with the same string will chain it though.
264StringRef NonRelocatableStringpool::internString(StringRef S) {
265 std::pair<uint32_t, StringMapEntryBase *> Entry(0, nullptr);
266 auto InsertResult = Strings.insert(std::make_pair(S, Entry));
267 return InsertResult.first->getKey();
Aaron Ballman5287f0c2015-03-07 15:10:32 +0000268}
Frederic Rissef648462015-03-06 17:56:30 +0000269
Frederic Rissc99ea202015-02-28 00:29:11 +0000270/// \brief The Dwarf streaming logic
271///
272/// All interactions with the MC layer that is used to build the debug
273/// information binary representation are handled in this class.
274class DwarfStreamer {
275 /// \defgroup MCObjects MC layer objects constructed by the streamer
276 /// @{
277 std::unique_ptr<MCRegisterInfo> MRI;
278 std::unique_ptr<MCAsmInfo> MAI;
279 std::unique_ptr<MCObjectFileInfo> MOFI;
280 std::unique_ptr<MCContext> MC;
281 MCAsmBackend *MAB; // Owned by MCStreamer
282 std::unique_ptr<MCInstrInfo> MII;
283 std::unique_ptr<MCSubtargetInfo> MSTI;
284 MCCodeEmitter *MCE; // Owned by MCStreamer
285 MCStreamer *MS; // Owned by AsmPrinter
286 std::unique_ptr<TargetMachine> TM;
287 std::unique_ptr<AsmPrinter> Asm;
288 /// @}
289
290 /// \brief the file we stream the linked Dwarf to.
291 std::unique_ptr<raw_fd_ostream> OutFile;
292
293public:
294 /// \brief Actually create the streamer and the ouptut file.
295 ///
296 /// This could be done directly in the constructor, but it feels
297 /// more natural to handle errors through return value.
298 bool init(Triple TheTriple, StringRef OutputFilename);
299
Frederic Rissb8b43d52015-03-04 22:07:44 +0000300 /// \brief Dump the file to the disk.
Frederic Rissc99ea202015-02-28 00:29:11 +0000301 bool finish();
Frederic Rissb8b43d52015-03-04 22:07:44 +0000302
303 AsmPrinter &getAsmPrinter() const { return *Asm; }
304
305 /// \brief Set the current output section to debug_info and change
306 /// the MC Dwarf version to \p DwarfVersion.
307 void switchToDebugInfoSection(unsigned DwarfVersion);
308
309 /// \brief Emit the compilation unit header for \p Unit in the
310 /// debug_info section.
311 ///
312 /// As a side effect, this also switches the current Dwarf version
313 /// of the MC layer to the one of U.getOrigUnit().
314 void emitCompileUnitHeader(CompileUnit &Unit);
315
316 /// \brief Recursively emit the DIE tree rooted at \p Die.
317 void emitDIE(DIE &Die);
318
319 /// \brief Emit the abbreviation table \p Abbrevs to the
320 /// debug_abbrev section.
321 void emitAbbrevs(const std::vector<DIEAbbrev *> &Abbrevs);
Frederic Rissef648462015-03-06 17:56:30 +0000322
323 /// \brief Emit the string table described by \p Pool.
324 void emitStrings(const NonRelocatableStringpool &Pool);
Frederic Rissc99ea202015-02-28 00:29:11 +0000325};
326
327bool DwarfStreamer::init(Triple TheTriple, StringRef OutputFilename) {
328 std::string ErrorStr;
329 std::string TripleName;
330 StringRef Context = "dwarf streamer init";
331
332 // Get the target.
333 const Target *TheTarget =
334 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
335 if (!TheTarget)
336 return error(ErrorStr, Context);
337 TripleName = TheTriple.getTriple();
338
339 // Create all the MC Objects.
340 MRI.reset(TheTarget->createMCRegInfo(TripleName));
341 if (!MRI)
342 return error(Twine("no register info for target ") + TripleName, Context);
343
344 MAI.reset(TheTarget->createMCAsmInfo(*MRI, TripleName));
345 if (!MAI)
346 return error("no asm info for target " + TripleName, Context);
347
348 MOFI.reset(new MCObjectFileInfo);
349 MC.reset(new MCContext(MAI.get(), MRI.get(), MOFI.get()));
350 MOFI->InitMCObjectFileInfo(TripleName, Reloc::Default, CodeModel::Default,
351 *MC);
352
353 MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, "");
354 if (!MAB)
355 return error("no asm backend for target " + TripleName, Context);
356
357 MII.reset(TheTarget->createMCInstrInfo());
358 if (!MII)
359 return error("no instr info info for target " + TripleName, Context);
360
361 MSTI.reset(TheTarget->createMCSubtargetInfo(TripleName, "", ""));
362 if (!MSTI)
363 return error("no subtarget info for target " + TripleName, Context);
364
Eric Christopher0169e422015-03-10 22:03:14 +0000365 MCE = TheTarget->createMCCodeEmitter(*MII, *MRI, *MC);
Frederic Rissc99ea202015-02-28 00:29:11 +0000366 if (!MCE)
367 return error("no code emitter for target " + TripleName, Context);
368
369 // Create the output file.
370 std::error_code EC;
Frederic Rissb8b43d52015-03-04 22:07:44 +0000371 OutFile =
372 llvm::make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::F_None);
Frederic Rissc99ea202015-02-28 00:29:11 +0000373 if (EC)
374 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
375
376 MS = TheTarget->createMCObjectStreamer(TripleName, *MC, *MAB, *OutFile, MCE,
377 *MSTI, false);
378 if (!MS)
379 return error("no object streamer for target " + TripleName, Context);
380
381 // Finally create the AsmPrinter we'll use to emit the DIEs.
382 TM.reset(TheTarget->createTargetMachine(TripleName, "", "", TargetOptions()));
383 if (!TM)
384 return error("no target machine for target " + TripleName, Context);
385
386 Asm.reset(TheTarget->createAsmPrinter(*TM, std::unique_ptr<MCStreamer>(MS)));
387 if (!Asm)
388 return error("no asm printer for target " + TripleName, Context);
389
390 return true;
391}
392
393bool DwarfStreamer::finish() {
394 MS->Finish();
395 return true;
396}
397
Frederic Rissb8b43d52015-03-04 22:07:44 +0000398/// \brief Set the current output section to debug_info and change
399/// the MC Dwarf version to \p DwarfVersion.
400void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) {
401 MS->SwitchSection(MOFI->getDwarfInfoSection());
402 MC->setDwarfVersion(DwarfVersion);
403}
404
405/// \brief Emit the compilation unit header for \p Unit in the
406/// debug_info section.
407///
408/// A Dwarf scetion header is encoded as:
409/// uint32_t Unit length (omiting this field)
410/// uint16_t Version
411/// uint32_t Abbreviation table offset
412/// uint8_t Address size
413///
414/// Leading to a total of 11 bytes.
415void DwarfStreamer::emitCompileUnitHeader(CompileUnit &Unit) {
416 unsigned Version = Unit.getOrigUnit().getVersion();
417 switchToDebugInfoSection(Version);
418
419 // Emit size of content not including length itself. The size has
420 // already been computed in CompileUnit::computeOffsets(). Substract
421 // 4 to that size to account for the length field.
422 Asm->EmitInt32(Unit.getNextUnitOffset() - Unit.getStartOffset() - 4);
423 Asm->EmitInt16(Version);
424 // We share one abbreviations table across all units so it's always at the
425 // start of the section.
426 Asm->EmitInt32(0);
427 Asm->EmitInt8(Unit.getOrigUnit().getAddressByteSize());
428}
429
430/// \brief Emit the \p Abbrevs array as the shared abbreviation table
431/// for the linked Dwarf file.
432void DwarfStreamer::emitAbbrevs(const std::vector<DIEAbbrev *> &Abbrevs) {
433 MS->SwitchSection(MOFI->getDwarfAbbrevSection());
434 Asm->emitDwarfAbbrevs(Abbrevs);
435}
436
437/// \brief Recursively emit the DIE tree rooted at \p Die.
438void DwarfStreamer::emitDIE(DIE &Die) {
439 MS->SwitchSection(MOFI->getDwarfInfoSection());
440 Asm->emitDwarfDIE(Die);
441}
442
Frederic Rissef648462015-03-06 17:56:30 +0000443/// \brief Emit the debug_str section stored in \p Pool.
444void DwarfStreamer::emitStrings(const NonRelocatableStringpool &Pool) {
445 Asm->OutStreamer.SwitchSection(MOFI->getDwarfStrSection());
446 for (auto *Entry = Pool.getFirstEntry(); Entry;
447 Entry = Pool.getNextEntry(Entry))
448 Asm->OutStreamer.EmitBytes(
449 StringRef(Entry->getKey().data(), Entry->getKey().size() + 1));
450}
451
Frederic Rissd3455182015-01-28 18:27:01 +0000452/// \brief The core of the Dwarf linking logic.
Frederic Riss1036e642015-02-13 23:18:22 +0000453///
454/// The link of the dwarf information from the object files will be
455/// driven by the selection of 'root DIEs', which are DIEs that
456/// describe variables or functions that are present in the linked
457/// binary (and thus have entries in the debug map). All the debug
458/// information that will be linked (the DIEs, but also the line
459/// tables, ranges, ...) is derived from that set of root DIEs.
460///
461/// The root DIEs are identified because they contain relocations that
462/// correspond to a debug map entry at specific places (the low_pc for
463/// a function, the location for a variable). These relocations are
464/// called ValidRelocs in the DwarfLinker and are gathered as a very
465/// first step when we start processing a DebugMapObject.
Frederic Rissd3455182015-01-28 18:27:01 +0000466class DwarfLinker {
467public:
Frederic Rissb9818322015-02-28 00:29:07 +0000468 DwarfLinker(StringRef OutputFilename, const LinkOptions &Options)
469 : OutputFilename(OutputFilename), Options(Options),
470 BinHolder(Options.Verbose) {}
Frederic Rissd3455182015-01-28 18:27:01 +0000471
Frederic Rissb8b43d52015-03-04 22:07:44 +0000472 ~DwarfLinker() {
473 for (auto *Abbrev : Abbreviations)
474 delete Abbrev;
475 }
476
Frederic Rissd3455182015-01-28 18:27:01 +0000477 /// \brief Link the contents of the DebugMap.
478 bool link(const DebugMap &);
479
480private:
Frederic Riss563cba62015-01-28 22:15:14 +0000481 /// \brief Called at the start of a debug object link.
482 void startDebugObject(DWARFContext &);
483
484 /// \brief Called at the end of a debug object link.
485 void endDebugObject();
486
Frederic Riss1036e642015-02-13 23:18:22 +0000487 /// \defgroup FindValidRelocations Translate debug map into a list
488 /// of relevant relocations
489 ///
490 /// @{
491 struct ValidReloc {
492 uint32_t Offset;
493 uint32_t Size;
494 uint64_t Addend;
495 const DebugMapObject::DebugMapEntry *Mapping;
496
497 ValidReloc(uint32_t Offset, uint32_t Size, uint64_t Addend,
498 const DebugMapObject::DebugMapEntry *Mapping)
499 : Offset(Offset), Size(Size), Addend(Addend), Mapping(Mapping) {}
500
501 bool operator<(const ValidReloc &RHS) const { return Offset < RHS.Offset; }
502 };
503
504 /// \brief The valid relocations for the current DebugMapObject.
505 /// This vector is sorted by relocation offset.
506 std::vector<ValidReloc> ValidRelocs;
507
508 /// \brief Index into ValidRelocs of the next relocation to
509 /// consider. As we walk the DIEs in acsending file offset and as
510 /// ValidRelocs is sorted by file offset, keeping this index
511 /// uptodate is all we have to do to have a cheap lookup during the
Frederic Riss23e20e92015-03-07 01:25:09 +0000512 /// root DIE selection and during DIE cloning.
Frederic Riss1036e642015-02-13 23:18:22 +0000513 unsigned NextValidReloc;
514
515 bool findValidRelocsInDebugInfo(const object::ObjectFile &Obj,
516 const DebugMapObject &DMO);
517
518 bool findValidRelocs(const object::SectionRef &Section,
519 const object::ObjectFile &Obj,
520 const DebugMapObject &DMO);
521
522 void findValidRelocsMachO(const object::SectionRef &Section,
523 const object::MachOObjectFile &Obj,
524 const DebugMapObject &DMO);
525 /// @}
Frederic Riss1b9da422015-02-13 23:18:29 +0000526
Frederic Riss84c09a52015-02-13 23:18:34 +0000527 /// \defgroup FindRootDIEs Find DIEs corresponding to debug map entries.
528 ///
529 /// @{
530 /// \brief Recursively walk the \p DIE tree and look for DIEs to
531 /// keep. Store that information in \p CU's DIEInfo.
532 void lookForDIEsToKeep(const DWARFDebugInfoEntryMinimal &DIE,
533 const DebugMapObject &DMO, CompileUnit &CU,
534 unsigned Flags);
535
536 /// \brief Flags passed to DwarfLinker::lookForDIEsToKeep
537 enum TravesalFlags {
538 TF_Keep = 1 << 0, ///< Mark the traversed DIEs as kept.
539 TF_InFunctionScope = 1 << 1, ///< Current scope is a fucntion scope.
540 TF_DependencyWalk = 1 << 2, ///< Walking the dependencies of a kept DIE.
541 TF_ParentWalk = 1 << 3, ///< Walking up the parents of a kept DIE.
542 };
543
544 /// \brief Mark the passed DIE as well as all the ones it depends on
545 /// as kept.
546 void keepDIEAndDenpendencies(const DWARFDebugInfoEntryMinimal &DIE,
547 CompileUnit::DIEInfo &MyInfo,
548 const DebugMapObject &DMO, CompileUnit &CU,
549 unsigned Flags);
550
551 unsigned shouldKeepDIE(const DWARFDebugInfoEntryMinimal &DIE,
552 CompileUnit &Unit, CompileUnit::DIEInfo &MyInfo,
553 unsigned Flags);
554
555 unsigned shouldKeepVariableDIE(const DWARFDebugInfoEntryMinimal &DIE,
556 CompileUnit &Unit,
557 CompileUnit::DIEInfo &MyInfo, unsigned Flags);
558
559 unsigned shouldKeepSubprogramDIE(const DWARFDebugInfoEntryMinimal &DIE,
560 CompileUnit &Unit,
561 CompileUnit::DIEInfo &MyInfo,
562 unsigned Flags);
563
564 bool hasValidRelocation(uint32_t StartOffset, uint32_t EndOffset,
565 CompileUnit::DIEInfo &Info);
566 /// @}
567
Frederic Rissb8b43d52015-03-04 22:07:44 +0000568 /// \defgroup Linking Methods used to link the debug information
569 ///
570 /// @{
571 /// \brief Recursively clone \p InputDIE into an tree of DIE objects
572 /// where useless (as decided by lookForDIEsToKeep()) bits have been
573 /// stripped out and addresses have been rewritten according to the
574 /// debug map.
575 ///
576 /// \param OutOffset is the offset the cloned DIE in the output
577 /// compile unit.
Frederic Riss31da3242015-03-11 18:45:52 +0000578 /// \param PCOffset (while cloning a function scope) is the offset
579 /// applied to the entry point of the function to get the linked address.
Frederic Rissb8b43d52015-03-04 22:07:44 +0000580 ///
581 /// \returns the root of the cloned tree.
582 DIE *cloneDIE(const DWARFDebugInfoEntryMinimal &InputDIE, CompileUnit &U,
Frederic Riss31da3242015-03-11 18:45:52 +0000583 int64_t PCOffset, uint32_t OutOffset);
Frederic Rissb8b43d52015-03-04 22:07:44 +0000584
585 typedef DWARFAbbreviationDeclaration::AttributeSpec AttributeSpec;
586
Frederic Riss31da3242015-03-11 18:45:52 +0000587 /// \brief Information gathered and exchanged between the various
588 /// clone*Attributes helpers about the attributes of a particular DIE.
589 struct AttributesInfo {
590 uint64_t OrigHighPc; ///< Value of AT_high_pc in the input DIE
591 int64_t PCOffset; ///< Offset to apply to PC addresses inside a function.
592
593 AttributesInfo() : OrigHighPc(0), PCOffset(0) {}
594 };
595
Frederic Rissb8b43d52015-03-04 22:07:44 +0000596 /// \brief Helper for cloneDIE.
597 unsigned cloneAttribute(DIE &Die, const DWARFDebugInfoEntryMinimal &InputDIE,
598 CompileUnit &U, const DWARFFormValue &Val,
Frederic Riss31da3242015-03-11 18:45:52 +0000599 const AttributeSpec AttrSpec, unsigned AttrSize,
600 AttributesInfo &AttrInfo);
Frederic Rissb8b43d52015-03-04 22:07:44 +0000601
602 /// \brief Helper for cloneDIE.
Frederic Rissef648462015-03-06 17:56:30 +0000603 unsigned cloneStringAttribute(DIE &Die, AttributeSpec AttrSpec,
604 const DWARFFormValue &Val, const DWARFUnit &U);
Frederic Rissb8b43d52015-03-04 22:07:44 +0000605
606 /// \brief Helper for cloneDIE.
Frederic Riss9833de62015-03-06 23:22:53 +0000607 unsigned
608 cloneDieReferenceAttribute(DIE &Die,
609 const DWARFDebugInfoEntryMinimal &InputDIE,
610 AttributeSpec AttrSpec, unsigned AttrSize,
Frederic Riss6afcfce2015-03-13 18:35:57 +0000611 const DWARFFormValue &Val, CompileUnit &Unit);
Frederic Rissb8b43d52015-03-04 22:07:44 +0000612
613 /// \brief Helper for cloneDIE.
614 unsigned cloneBlockAttribute(DIE &Die, AttributeSpec AttrSpec,
615 const DWARFFormValue &Val, unsigned AttrSize);
616
617 /// \brief Helper for cloneDIE.
Frederic Riss31da3242015-03-11 18:45:52 +0000618 unsigned cloneAddressAttribute(DIE &Die, AttributeSpec AttrSpec,
619 const DWARFFormValue &Val,
620 const CompileUnit &Unit, AttributesInfo &Info);
621
622 /// \brief Helper for cloneDIE.
Frederic Rissb8b43d52015-03-04 22:07:44 +0000623 unsigned cloneScalarAttribute(DIE &Die,
624 const DWARFDebugInfoEntryMinimal &InputDIE,
Frederic Riss5a62dc32015-03-13 18:35:54 +0000625 const CompileUnit &U, AttributeSpec AttrSpec,
Frederic Rissb8b43d52015-03-04 22:07:44 +0000626 const DWARFFormValue &Val, unsigned AttrSize);
627
Frederic Riss23e20e92015-03-07 01:25:09 +0000628 /// \brief Helper for cloneDIE.
629 bool applyValidRelocs(MutableArrayRef<char> Data, uint32_t BaseOffset,
630 bool isLittleEndian);
631
Frederic Rissb8b43d52015-03-04 22:07:44 +0000632 /// \brief Assign an abbreviation number to \p Abbrev
633 void AssignAbbrev(DIEAbbrev &Abbrev);
634
635 /// \brief FoldingSet that uniques the abbreviations.
636 FoldingSet<DIEAbbrev> AbbreviationsSet;
637 /// \brief Storage for the unique Abbreviations.
638 /// This is passed to AsmPrinter::emitDwarfAbbrevs(), thus it cannot
639 /// be changed to a vecot of unique_ptrs.
640 std::vector<DIEAbbrev *> Abbreviations;
641
642 /// \brief DIELoc objects that need to be destructed (but not freed!).
643 std::vector<DIELoc *> DIELocs;
644 /// \brief DIEBlock objects that need to be destructed (but not freed!).
645 std::vector<DIEBlock *> DIEBlocks;
646 /// \brief Allocator used for all the DIEValue objects.
647 BumpPtrAllocator DIEAlloc;
648 /// @}
649
Frederic Riss1b9da422015-02-13 23:18:29 +0000650 /// \defgroup Helpers Various helper methods.
651 ///
652 /// @{
653 const DWARFDebugInfoEntryMinimal *
654 resolveDIEReference(DWARFFormValue &RefValue, const DWARFUnit &Unit,
655 const DWARFDebugInfoEntryMinimal &DIE,
656 CompileUnit *&ReferencedCU);
657
658 CompileUnit *getUnitForOffset(unsigned Offset);
659
660 void reportWarning(const Twine &Warning, const DWARFUnit *Unit = nullptr,
661 const DWARFDebugInfoEntryMinimal *DIE = nullptr);
Frederic Rissc99ea202015-02-28 00:29:11 +0000662
663 bool createStreamer(Triple TheTriple, StringRef OutputFilename);
Frederic Riss1b9da422015-02-13 23:18:29 +0000664 /// @}
665
Frederic Riss563cba62015-01-28 22:15:14 +0000666private:
Frederic Rissd3455182015-01-28 18:27:01 +0000667 std::string OutputFilename;
Frederic Rissb9818322015-02-28 00:29:07 +0000668 LinkOptions Options;
Frederic Rissd3455182015-01-28 18:27:01 +0000669 BinaryHolder BinHolder;
Frederic Rissc99ea202015-02-28 00:29:11 +0000670 std::unique_ptr<DwarfStreamer> Streamer;
Frederic Riss563cba62015-01-28 22:15:14 +0000671
672 /// The units of the current debug map object.
673 std::vector<CompileUnit> Units;
Frederic Riss1b9da422015-02-13 23:18:29 +0000674
675 /// The debug map object curently under consideration.
676 DebugMapObject *CurrentDebugObject;
Frederic Rissef648462015-03-06 17:56:30 +0000677
678 /// \brief The Dwarf string pool
679 NonRelocatableStringpool StringPool;
Frederic Rissd3455182015-01-28 18:27:01 +0000680};
681
Frederic Riss1b9da422015-02-13 23:18:29 +0000682/// \brief Similar to DWARFUnitSection::getUnitForOffset(), but
683/// returning our CompileUnit object instead.
684CompileUnit *DwarfLinker::getUnitForOffset(unsigned Offset) {
685 auto CU =
686 std::upper_bound(Units.begin(), Units.end(), Offset,
687 [](uint32_t LHS, const CompileUnit &RHS) {
688 return LHS < RHS.getOrigUnit().getNextUnitOffset();
689 });
690 return CU != Units.end() ? &*CU : nullptr;
691}
692
693/// \brief Resolve the DIE attribute reference that has been
694/// extracted in \p RefValue. The resulting DIE migh be in another
695/// CompileUnit which is stored into \p ReferencedCU.
696/// \returns null if resolving fails for any reason.
697const DWARFDebugInfoEntryMinimal *DwarfLinker::resolveDIEReference(
698 DWARFFormValue &RefValue, const DWARFUnit &Unit,
699 const DWARFDebugInfoEntryMinimal &DIE, CompileUnit *&RefCU) {
700 assert(RefValue.isFormClass(DWARFFormValue::FC_Reference));
701 uint64_t RefOffset = *RefValue.getAsReference(&Unit);
702
703 if ((RefCU = getUnitForOffset(RefOffset)))
704 if (const auto *RefDie = RefCU->getOrigUnit().getDIEForOffset(RefOffset))
705 return RefDie;
706
707 reportWarning("could not find referenced DIE", &Unit, &DIE);
708 return nullptr;
709}
710
711/// \brief Report a warning to the user, optionaly including
712/// information about a specific \p DIE related to the warning.
713void DwarfLinker::reportWarning(const Twine &Warning, const DWARFUnit *Unit,
714 const DWARFDebugInfoEntryMinimal *DIE) {
Frederic Rissdef4fb72015-02-28 00:29:01 +0000715 StringRef Context = "<debug map>";
Frederic Riss1b9da422015-02-13 23:18:29 +0000716 if (CurrentDebugObject)
Frederic Rissdef4fb72015-02-28 00:29:01 +0000717 Context = CurrentDebugObject->getObjectFilename();
718 warn(Warning, Context);
Frederic Riss1b9da422015-02-13 23:18:29 +0000719
Frederic Rissb9818322015-02-28 00:29:07 +0000720 if (!Options.Verbose || !DIE)
Frederic Riss1b9da422015-02-13 23:18:29 +0000721 return;
722
723 errs() << " in DIE:\n";
724 DIE->dump(errs(), const_cast<DWARFUnit *>(Unit), 0 /* RecurseDepth */,
725 6 /* Indent */);
726}
727
Frederic Rissc99ea202015-02-28 00:29:11 +0000728bool DwarfLinker::createStreamer(Triple TheTriple, StringRef OutputFilename) {
729 if (Options.NoOutput)
730 return true;
731
Frederic Rissb52cf522015-02-28 00:42:37 +0000732 Streamer = llvm::make_unique<DwarfStreamer>();
Frederic Rissc99ea202015-02-28 00:29:11 +0000733 return Streamer->init(TheTriple, OutputFilename);
734}
735
Frederic Riss563cba62015-01-28 22:15:14 +0000736/// \brief Recursive helper to gather the child->parent relationships in the
737/// original compile unit.
Frederic Riss9aa725b2015-02-13 23:18:31 +0000738static void gatherDIEParents(const DWARFDebugInfoEntryMinimal *DIE,
739 unsigned ParentIdx, CompileUnit &CU) {
Frederic Riss563cba62015-01-28 22:15:14 +0000740 unsigned MyIdx = CU.getOrigUnit().getDIEIndex(DIE);
741 CU.getInfo(MyIdx).ParentIdx = ParentIdx;
742
743 if (DIE->hasChildren())
744 for (auto *Child = DIE->getFirstChild(); Child && !Child->isNULL();
745 Child = Child->getSibling())
Frederic Riss9aa725b2015-02-13 23:18:31 +0000746 gatherDIEParents(Child, MyIdx, CU);
Frederic Riss563cba62015-01-28 22:15:14 +0000747}
748
Frederic Riss84c09a52015-02-13 23:18:34 +0000749static bool dieNeedsChildrenToBeMeaningful(uint32_t Tag) {
750 switch (Tag) {
751 default:
752 return false;
753 case dwarf::DW_TAG_subprogram:
754 case dwarf::DW_TAG_lexical_block:
755 case dwarf::DW_TAG_subroutine_type:
756 case dwarf::DW_TAG_structure_type:
757 case dwarf::DW_TAG_class_type:
758 case dwarf::DW_TAG_union_type:
759 return true;
760 }
761 llvm_unreachable("Invalid Tag");
762}
763
Frederic Riss563cba62015-01-28 22:15:14 +0000764void DwarfLinker::startDebugObject(DWARFContext &Dwarf) {
765 Units.reserve(Dwarf.getNumCompileUnits());
Frederic Riss1036e642015-02-13 23:18:22 +0000766 NextValidReloc = 0;
Frederic Riss563cba62015-01-28 22:15:14 +0000767}
768
Frederic Riss1036e642015-02-13 23:18:22 +0000769void DwarfLinker::endDebugObject() {
770 Units.clear();
771 ValidRelocs.clear();
Frederic Rissb8b43d52015-03-04 22:07:44 +0000772
773 for (auto *Block : DIEBlocks)
774 Block->~DIEBlock();
775 for (auto *Loc : DIELocs)
776 Loc->~DIELoc();
777
778 DIEBlocks.clear();
779 DIELocs.clear();
780 DIEAlloc.Reset();
Frederic Riss1036e642015-02-13 23:18:22 +0000781}
782
783/// \brief Iterate over the relocations of the given \p Section and
784/// store the ones that correspond to debug map entries into the
785/// ValidRelocs array.
786void DwarfLinker::findValidRelocsMachO(const object::SectionRef &Section,
787 const object::MachOObjectFile &Obj,
788 const DebugMapObject &DMO) {
789 StringRef Contents;
790 Section.getContents(Contents);
791 DataExtractor Data(Contents, Obj.isLittleEndian(), 0);
792
793 for (const object::RelocationRef &Reloc : Section.relocations()) {
794 object::DataRefImpl RelocDataRef = Reloc.getRawDataRefImpl();
795 MachO::any_relocation_info MachOReloc = Obj.getRelocation(RelocDataRef);
796 unsigned RelocSize = 1 << Obj.getAnyRelocationLength(MachOReloc);
797 uint64_t Offset64;
798 if ((RelocSize != 4 && RelocSize != 8) || Reloc.getOffset(Offset64)) {
Frederic Riss1b9da422015-02-13 23:18:29 +0000799 reportWarning(" unsupported relocation in debug_info section.");
Frederic Riss1036e642015-02-13 23:18:22 +0000800 continue;
801 }
802 uint32_t Offset = Offset64;
803 // Mach-o uses REL relocations, the addend is at the relocation offset.
804 uint64_t Addend = Data.getUnsigned(&Offset, RelocSize);
805
806 auto Sym = Reloc.getSymbol();
807 if (Sym != Obj.symbol_end()) {
808 StringRef SymbolName;
809 if (Sym->getName(SymbolName)) {
Frederic Riss1b9da422015-02-13 23:18:29 +0000810 reportWarning("error getting relocation symbol name.");
Frederic Riss1036e642015-02-13 23:18:22 +0000811 continue;
812 }
813 if (const auto *Mapping = DMO.lookupSymbol(SymbolName))
814 ValidRelocs.emplace_back(Offset64, RelocSize, Addend, Mapping);
815 } else if (const auto *Mapping = DMO.lookupObjectAddress(Addend)) {
816 // Do not store the addend. The addend was the address of the
817 // symbol in the object file, the address in the binary that is
818 // stored in the debug map doesn't need to be offseted.
819 ValidRelocs.emplace_back(Offset64, RelocSize, 0, Mapping);
820 }
821 }
822}
823
824/// \brief Dispatch the valid relocation finding logic to the
825/// appropriate handler depending on the object file format.
826bool DwarfLinker::findValidRelocs(const object::SectionRef &Section,
827 const object::ObjectFile &Obj,
828 const DebugMapObject &DMO) {
829 // Dispatch to the right handler depending on the file type.
830 if (auto *MachOObj = dyn_cast<object::MachOObjectFile>(&Obj))
831 findValidRelocsMachO(Section, *MachOObj, DMO);
832 else
Frederic Riss1b9da422015-02-13 23:18:29 +0000833 reportWarning(Twine("unsupported object file type: ") + Obj.getFileName());
Frederic Riss1036e642015-02-13 23:18:22 +0000834
835 if (ValidRelocs.empty())
836 return false;
837
838 // Sort the relocations by offset. We will walk the DIEs linearly in
839 // the file, this allows us to just keep an index in the relocation
840 // array that we advance during our walk, rather than resorting to
841 // some associative container. See DwarfLinker::NextValidReloc.
842 std::sort(ValidRelocs.begin(), ValidRelocs.end());
843 return true;
844}
845
846/// \brief Look for relocations in the debug_info section that match
847/// entries in the debug map. These relocations will drive the Dwarf
848/// link by indicating which DIEs refer to symbols present in the
849/// linked binary.
850/// \returns wether there are any valid relocations in the debug info.
851bool DwarfLinker::findValidRelocsInDebugInfo(const object::ObjectFile &Obj,
852 const DebugMapObject &DMO) {
853 // Find the debug_info section.
854 for (const object::SectionRef &Section : Obj.sections()) {
855 StringRef SectionName;
856 Section.getName(SectionName);
857 SectionName = SectionName.substr(SectionName.find_first_not_of("._"));
858 if (SectionName != "debug_info")
859 continue;
860 return findValidRelocs(Section, Obj, DMO);
861 }
862 return false;
863}
Frederic Riss563cba62015-01-28 22:15:14 +0000864
Frederic Riss84c09a52015-02-13 23:18:34 +0000865/// \brief Checks that there is a relocation against an actual debug
866/// map entry between \p StartOffset and \p NextOffset.
867///
868/// This function must be called with offsets in strictly ascending
869/// order because it never looks back at relocations it already 'went past'.
870/// \returns true and sets Info.InDebugMap if it is the case.
871bool DwarfLinker::hasValidRelocation(uint32_t StartOffset, uint32_t EndOffset,
872 CompileUnit::DIEInfo &Info) {
873 assert(NextValidReloc == 0 ||
874 StartOffset > ValidRelocs[NextValidReloc - 1].Offset);
875 if (NextValidReloc >= ValidRelocs.size())
876 return false;
877
878 uint64_t RelocOffset = ValidRelocs[NextValidReloc].Offset;
879
880 // We might need to skip some relocs that we didn't consider. For
881 // example the high_pc of a discarded DIE might contain a reloc that
882 // is in the list because it actually corresponds to the start of a
883 // function that is in the debug map.
884 while (RelocOffset < StartOffset && NextValidReloc < ValidRelocs.size() - 1)
885 RelocOffset = ValidRelocs[++NextValidReloc].Offset;
886
887 if (RelocOffset < StartOffset || RelocOffset >= EndOffset)
888 return false;
889
890 const auto &ValidReloc = ValidRelocs[NextValidReloc++];
Frederic Rissb9818322015-02-28 00:29:07 +0000891 if (Options.Verbose)
Frederic Riss84c09a52015-02-13 23:18:34 +0000892 outs() << "Found valid debug map entry: " << ValidReloc.Mapping->getKey()
893 << " " << format("\t%016" PRIx64 " => %016" PRIx64,
894 ValidReloc.Mapping->getValue().ObjectAddress,
895 ValidReloc.Mapping->getValue().BinaryAddress);
896
Frederic Riss31da3242015-03-11 18:45:52 +0000897 Info.AddrAdjust = int64_t(ValidReloc.Mapping->getValue().BinaryAddress) +
898 ValidReloc.Addend -
899 ValidReloc.Mapping->getValue().ObjectAddress;
Frederic Riss84c09a52015-02-13 23:18:34 +0000900 Info.InDebugMap = true;
901 return true;
902}
903
904/// \brief Get the starting and ending (exclusive) offset for the
905/// attribute with index \p Idx descibed by \p Abbrev. \p Offset is
906/// supposed to point to the position of the first attribute described
907/// by \p Abbrev.
908/// \return [StartOffset, EndOffset) as a pair.
909static std::pair<uint32_t, uint32_t>
910getAttributeOffsets(const DWARFAbbreviationDeclaration *Abbrev, unsigned Idx,
911 unsigned Offset, const DWARFUnit &Unit) {
912 DataExtractor Data = Unit.getDebugInfoExtractor();
913
914 for (unsigned i = 0; i < Idx; ++i)
915 DWARFFormValue::skipValue(Abbrev->getFormByIndex(i), Data, &Offset, &Unit);
916
917 uint32_t End = Offset;
918 DWARFFormValue::skipValue(Abbrev->getFormByIndex(Idx), Data, &End, &Unit);
919
920 return std::make_pair(Offset, End);
921}
922
923/// \brief Check if a variable describing DIE should be kept.
924/// \returns updated TraversalFlags.
925unsigned DwarfLinker::shouldKeepVariableDIE(
926 const DWARFDebugInfoEntryMinimal &DIE, CompileUnit &Unit,
927 CompileUnit::DIEInfo &MyInfo, unsigned Flags) {
928 const auto *Abbrev = DIE.getAbbreviationDeclarationPtr();
929
930 // Global variables with constant value can always be kept.
931 if (!(Flags & TF_InFunctionScope) &&
932 Abbrev->findAttributeIndex(dwarf::DW_AT_const_value) != -1U) {
933 MyInfo.InDebugMap = true;
934 return Flags | TF_Keep;
935 }
936
937 uint32_t LocationIdx = Abbrev->findAttributeIndex(dwarf::DW_AT_location);
938 if (LocationIdx == -1U)
939 return Flags;
940
941 uint32_t Offset = DIE.getOffset() + getULEB128Size(Abbrev->getCode());
942 const DWARFUnit &OrigUnit = Unit.getOrigUnit();
943 uint32_t LocationOffset, LocationEndOffset;
944 std::tie(LocationOffset, LocationEndOffset) =
945 getAttributeOffsets(Abbrev, LocationIdx, Offset, OrigUnit);
946
947 // See if there is a relocation to a valid debug map entry inside
948 // this variable's location. The order is important here. We want to
949 // always check in the variable has a valid relocation, so that the
950 // DIEInfo is filled. However, we don't want a static variable in a
951 // function to force us to keep the enclosing function.
952 if (!hasValidRelocation(LocationOffset, LocationEndOffset, MyInfo) ||
953 (Flags & TF_InFunctionScope))
954 return Flags;
955
Frederic Rissb9818322015-02-28 00:29:07 +0000956 if (Options.Verbose)
Frederic Riss84c09a52015-02-13 23:18:34 +0000957 DIE.dump(outs(), const_cast<DWARFUnit *>(&OrigUnit), 0, 8 /* Indent */);
958
959 return Flags | TF_Keep;
960}
961
962/// \brief Check if a function describing DIE should be kept.
963/// \returns updated TraversalFlags.
964unsigned DwarfLinker::shouldKeepSubprogramDIE(
965 const DWARFDebugInfoEntryMinimal &DIE, CompileUnit &Unit,
966 CompileUnit::DIEInfo &MyInfo, unsigned Flags) {
967 const auto *Abbrev = DIE.getAbbreviationDeclarationPtr();
968
969 Flags |= TF_InFunctionScope;
970
971 uint32_t LowPcIdx = Abbrev->findAttributeIndex(dwarf::DW_AT_low_pc);
972 if (LowPcIdx == -1U)
973 return Flags;
974
975 uint32_t Offset = DIE.getOffset() + getULEB128Size(Abbrev->getCode());
976 const DWARFUnit &OrigUnit = Unit.getOrigUnit();
977 uint32_t LowPcOffset, LowPcEndOffset;
978 std::tie(LowPcOffset, LowPcEndOffset) =
979 getAttributeOffsets(Abbrev, LowPcIdx, Offset, OrigUnit);
980
981 uint64_t LowPc =
982 DIE.getAttributeValueAsAddress(&OrigUnit, dwarf::DW_AT_low_pc, -1ULL);
983 assert(LowPc != -1ULL && "low_pc attribute is not an address.");
984 if (LowPc == -1ULL ||
985 !hasValidRelocation(LowPcOffset, LowPcEndOffset, MyInfo))
986 return Flags;
987
Frederic Rissb9818322015-02-28 00:29:07 +0000988 if (Options.Verbose)
Frederic Riss84c09a52015-02-13 23:18:34 +0000989 DIE.dump(outs(), const_cast<DWARFUnit *>(&OrigUnit), 0, 8 /* Indent */);
990
Frederic Riss1af75f72015-03-12 18:45:10 +0000991 Flags |= TF_Keep;
992
993 DWARFFormValue HighPcValue;
994 if (!DIE.getAttributeValue(&OrigUnit, dwarf::DW_AT_high_pc, HighPcValue)) {
995 reportWarning("Function without high_pc. Range will be discarded.\n",
996 &OrigUnit, &DIE);
997 return Flags;
998 }
999
1000 uint64_t HighPc;
1001 if (HighPcValue.isFormClass(DWARFFormValue::FC_Address)) {
1002 HighPc = *HighPcValue.getAsAddress(&OrigUnit);
1003 } else {
1004 assert(HighPcValue.isFormClass(DWARFFormValue::FC_Constant));
1005 HighPc = LowPc + *HighPcValue.getAsUnsignedConstant();
1006 }
1007
1008 Unit.addFunctionRange(LowPc, HighPc, MyInfo.AddrAdjust);
1009 return Flags;
Frederic Riss84c09a52015-02-13 23:18:34 +00001010}
1011
1012/// \brief Check if a DIE should be kept.
1013/// \returns updated TraversalFlags.
1014unsigned DwarfLinker::shouldKeepDIE(const DWARFDebugInfoEntryMinimal &DIE,
1015 CompileUnit &Unit,
1016 CompileUnit::DIEInfo &MyInfo,
1017 unsigned Flags) {
1018 switch (DIE.getTag()) {
1019 case dwarf::DW_TAG_constant:
1020 case dwarf::DW_TAG_variable:
1021 return shouldKeepVariableDIE(DIE, Unit, MyInfo, Flags);
1022 case dwarf::DW_TAG_subprogram:
1023 return shouldKeepSubprogramDIE(DIE, Unit, MyInfo, Flags);
1024 case dwarf::DW_TAG_module:
1025 case dwarf::DW_TAG_imported_module:
1026 case dwarf::DW_TAG_imported_declaration:
1027 case dwarf::DW_TAG_imported_unit:
1028 // We always want to keep these.
1029 return Flags | TF_Keep;
1030 }
1031
1032 return Flags;
1033}
1034
Frederic Riss84c09a52015-02-13 23:18:34 +00001035/// \brief Mark the passed DIE as well as all the ones it depends on
1036/// as kept.
1037///
1038/// This function is called by lookForDIEsToKeep on DIEs that are
1039/// newly discovered to be needed in the link. It recursively calls
1040/// back to lookForDIEsToKeep while adding TF_DependencyWalk to the
1041/// TraversalFlags to inform it that it's not doing the primary DIE
1042/// tree walk.
1043void DwarfLinker::keepDIEAndDenpendencies(const DWARFDebugInfoEntryMinimal &DIE,
1044 CompileUnit::DIEInfo &MyInfo,
1045 const DebugMapObject &DMO,
1046 CompileUnit &CU, unsigned Flags) {
1047 const DWARFUnit &Unit = CU.getOrigUnit();
1048 MyInfo.Keep = true;
1049
1050 // First mark all the parent chain as kept.
1051 unsigned AncestorIdx = MyInfo.ParentIdx;
1052 while (!CU.getInfo(AncestorIdx).Keep) {
1053 lookForDIEsToKeep(*Unit.getDIEAtIndex(AncestorIdx), DMO, CU,
1054 TF_ParentWalk | TF_Keep | TF_DependencyWalk);
1055 AncestorIdx = CU.getInfo(AncestorIdx).ParentIdx;
1056 }
1057
1058 // Then we need to mark all the DIEs referenced by this DIE's
1059 // attributes as kept.
1060 DataExtractor Data = Unit.getDebugInfoExtractor();
1061 const auto *Abbrev = DIE.getAbbreviationDeclarationPtr();
1062 uint32_t Offset = DIE.getOffset() + getULEB128Size(Abbrev->getCode());
1063
1064 // Mark all DIEs referenced through atttributes as kept.
1065 for (const auto &AttrSpec : Abbrev->attributes()) {
1066 DWARFFormValue Val(AttrSpec.Form);
1067
1068 if (!Val.isFormClass(DWARFFormValue::FC_Reference)) {
1069 DWARFFormValue::skipValue(AttrSpec.Form, Data, &Offset, &Unit);
1070 continue;
1071 }
1072
1073 Val.extractValue(Data, &Offset, &Unit);
1074 CompileUnit *ReferencedCU;
1075 if (const auto *RefDIE = resolveDIEReference(Val, Unit, DIE, ReferencedCU))
1076 lookForDIEsToKeep(*RefDIE, DMO, *ReferencedCU,
1077 TF_Keep | TF_DependencyWalk);
1078 }
1079}
1080
1081/// \brief Recursively walk the \p DIE tree and look for DIEs to
1082/// keep. Store that information in \p CU's DIEInfo.
1083///
1084/// This function is the entry point of the DIE selection
1085/// algorithm. It is expected to walk the DIE tree in file order and
1086/// (though the mediation of its helper) call hasValidRelocation() on
1087/// each DIE that might be a 'root DIE' (See DwarfLinker class
1088/// comment).
1089/// While walking the dependencies of root DIEs, this function is
1090/// also called, but during these dependency walks the file order is
1091/// not respected. The TF_DependencyWalk flag tells us which kind of
1092/// traversal we are currently doing.
1093void DwarfLinker::lookForDIEsToKeep(const DWARFDebugInfoEntryMinimal &DIE,
1094 const DebugMapObject &DMO, CompileUnit &CU,
1095 unsigned Flags) {
1096 unsigned Idx = CU.getOrigUnit().getDIEIndex(&DIE);
1097 CompileUnit::DIEInfo &MyInfo = CU.getInfo(Idx);
1098 bool AlreadyKept = MyInfo.Keep;
1099
1100 // If the Keep flag is set, we are marking a required DIE's
1101 // dependencies. If our target is already marked as kept, we're all
1102 // set.
1103 if ((Flags & TF_DependencyWalk) && AlreadyKept)
1104 return;
1105
1106 // We must not call shouldKeepDIE while called from keepDIEAndDenpendencies,
1107 // because it would screw up the relocation finding logic.
1108 if (!(Flags & TF_DependencyWalk))
1109 Flags = shouldKeepDIE(DIE, CU, MyInfo, Flags);
1110
1111 // If it is a newly kept DIE mark it as well as all its dependencies as kept.
1112 if (!AlreadyKept && (Flags & TF_Keep))
1113 keepDIEAndDenpendencies(DIE, MyInfo, DMO, CU, Flags);
1114
1115 // The TF_ParentWalk flag tells us that we are currently walking up
1116 // the parent chain of a required DIE, and we don't want to mark all
1117 // the children of the parents as kept (consider for example a
1118 // DW_TAG_namespace node in the parent chain). There are however a
1119 // set of DIE types for which we want to ignore that directive and still
1120 // walk their children.
1121 if (dieNeedsChildrenToBeMeaningful(DIE.getTag()))
1122 Flags &= ~TF_ParentWalk;
1123
1124 if (!DIE.hasChildren() || (Flags & TF_ParentWalk))
1125 return;
1126
1127 for (auto *Child = DIE.getFirstChild(); Child && !Child->isNULL();
1128 Child = Child->getSibling())
1129 lookForDIEsToKeep(*Child, DMO, CU, Flags);
1130}
1131
Frederic Rissb8b43d52015-03-04 22:07:44 +00001132/// \brief Assign an abbreviation numer to \p Abbrev.
1133///
1134/// Our DIEs get freed after every DebugMapObject has been processed,
1135/// thus the FoldingSet we use to unique DIEAbbrevs cannot refer to
1136/// the instances hold by the DIEs. When we encounter an abbreviation
1137/// that we don't know, we create a permanent copy of it.
1138void DwarfLinker::AssignAbbrev(DIEAbbrev &Abbrev) {
1139 // Check the set for priors.
1140 FoldingSetNodeID ID;
1141 Abbrev.Profile(ID);
1142 void *InsertToken;
1143 DIEAbbrev *InSet = AbbreviationsSet.FindNodeOrInsertPos(ID, InsertToken);
1144
1145 // If it's newly added.
1146 if (InSet) {
1147 // Assign existing abbreviation number.
1148 Abbrev.setNumber(InSet->getNumber());
1149 } else {
1150 // Add to abbreviation list.
1151 Abbreviations.push_back(
1152 new DIEAbbrev(Abbrev.getTag(), Abbrev.hasChildren()));
1153 for (const auto &Attr : Abbrev.getData())
1154 Abbreviations.back()->AddAttribute(Attr.getAttribute(), Attr.getForm());
1155 AbbreviationsSet.InsertNode(Abbreviations.back(), InsertToken);
1156 // Assign the unique abbreviation number.
1157 Abbrev.setNumber(Abbreviations.size());
1158 Abbreviations.back()->setNumber(Abbreviations.size());
1159 }
1160}
1161
1162/// \brief Clone a string attribute described by \p AttrSpec and add
1163/// it to \p Die.
1164/// \returns the size of the new attribute.
Frederic Rissef648462015-03-06 17:56:30 +00001165unsigned DwarfLinker::cloneStringAttribute(DIE &Die, AttributeSpec AttrSpec,
1166 const DWARFFormValue &Val,
1167 const DWARFUnit &U) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001168 // Switch everything to out of line strings.
Frederic Rissef648462015-03-06 17:56:30 +00001169 const char *String = *Val.getAsCString(&U);
1170 unsigned Offset = StringPool.getStringOffset(String);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001171 Die.addValue(dwarf::Attribute(AttrSpec.Attr), dwarf::DW_FORM_strp,
Frederic Rissef648462015-03-06 17:56:30 +00001172 new (DIEAlloc) DIEInteger(Offset));
Frederic Rissb8b43d52015-03-04 22:07:44 +00001173 return 4;
1174}
1175
1176/// \brief Clone an attribute referencing another DIE and add
1177/// it to \p Die.
1178/// \returns the size of the new attribute.
Frederic Riss9833de62015-03-06 23:22:53 +00001179unsigned DwarfLinker::cloneDieReferenceAttribute(
1180 DIE &Die, const DWARFDebugInfoEntryMinimal &InputDIE,
1181 AttributeSpec AttrSpec, unsigned AttrSize, const DWARFFormValue &Val,
Frederic Riss6afcfce2015-03-13 18:35:57 +00001182 CompileUnit &Unit) {
1183 uint32_t Ref = *Val.getAsReference(&Unit.getOrigUnit());
Frederic Riss9833de62015-03-06 23:22:53 +00001184 DIE *NewRefDie = nullptr;
1185 CompileUnit *RefUnit = nullptr;
1186 const DWARFDebugInfoEntryMinimal *RefDie = nullptr;
1187
1188 if (!(RefUnit = getUnitForOffset(Ref)) ||
1189 !(RefDie = RefUnit->getOrigUnit().getDIEForOffset(Ref))) {
1190 const char *AttributeString = dwarf::AttributeString(AttrSpec.Attr);
1191 if (!AttributeString)
1192 AttributeString = "DW_AT_???";
1193 reportWarning(Twine("Missing DIE for ref in attribute ") + AttributeString +
1194 ". Dropping.",
Frederic Riss6afcfce2015-03-13 18:35:57 +00001195 &Unit.getOrigUnit(), &InputDIE);
Frederic Riss9833de62015-03-06 23:22:53 +00001196 return 0;
1197 }
1198
1199 unsigned Idx = RefUnit->getOrigUnit().getDIEIndex(RefDie);
1200 CompileUnit::DIEInfo &RefInfo = RefUnit->getInfo(Idx);
1201 if (!RefInfo.Clone) {
1202 assert(Ref > InputDIE.getOffset());
1203 // We haven't cloned this DIE yet. Just create an empty one and
1204 // store it. It'll get really cloned when we process it.
1205 RefInfo.Clone = new DIE(dwarf::Tag(RefDie->getTag()));
1206 }
1207 NewRefDie = RefInfo.Clone;
1208
1209 if (AttrSpec.Form == dwarf::DW_FORM_ref_addr) {
1210 // We cannot currently rely on a DIEEntry to emit ref_addr
1211 // references, because the implementation calls back to DwarfDebug
1212 // to find the unit offset. (We don't have a DwarfDebug)
1213 // FIXME: we should be able to design DIEEntry reliance on
1214 // DwarfDebug away.
1215 DIEInteger *Attr;
1216 if (Ref < InputDIE.getOffset()) {
1217 // We must have already cloned that DIE.
1218 uint32_t NewRefOffset =
1219 RefUnit->getStartOffset() + NewRefDie->getOffset();
1220 Attr = new (DIEAlloc) DIEInteger(NewRefOffset);
1221 } else {
1222 // A forward reference. Note and fixup later.
1223 Attr = new (DIEAlloc) DIEInteger(0xBADDEF);
Frederic Riss6afcfce2015-03-13 18:35:57 +00001224 Unit.noteForwardReference(NewRefDie, RefUnit, Attr);
Frederic Riss9833de62015-03-06 23:22:53 +00001225 }
1226 Die.addValue(dwarf::Attribute(AttrSpec.Attr), dwarf::DW_FORM_ref_addr,
1227 Attr);
1228 return AttrSize;
1229 }
1230
Frederic Rissb8b43d52015-03-04 22:07:44 +00001231 Die.addValue(dwarf::Attribute(AttrSpec.Attr), dwarf::Form(AttrSpec.Form),
Frederic Riss9833de62015-03-06 23:22:53 +00001232 new (DIEAlloc) DIEEntry(*NewRefDie));
Frederic Rissb8b43d52015-03-04 22:07:44 +00001233 return AttrSize;
1234}
1235
1236/// \brief Clone an attribute of block form (locations, constants) and add
1237/// it to \p Die.
1238/// \returns the size of the new attribute.
1239unsigned DwarfLinker::cloneBlockAttribute(DIE &Die, AttributeSpec AttrSpec,
1240 const DWARFFormValue &Val,
1241 unsigned AttrSize) {
1242 DIE *Attr;
1243 DIEValue *Value;
1244 DIELoc *Loc = nullptr;
1245 DIEBlock *Block = nullptr;
1246 // Just copy the block data over.
Frederic Riss111a0a82015-03-13 18:35:39 +00001247 if (AttrSpec.Form == dwarf::DW_FORM_exprloc) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001248 Loc = new (DIEAlloc) DIELoc();
1249 DIELocs.push_back(Loc);
1250 } else {
1251 Block = new (DIEAlloc) DIEBlock();
1252 DIEBlocks.push_back(Block);
1253 }
1254 Attr = Loc ? static_cast<DIE *>(Loc) : static_cast<DIE *>(Block);
1255 Value = Loc ? static_cast<DIEValue *>(Loc) : static_cast<DIEValue *>(Block);
1256 ArrayRef<uint8_t> Bytes = *Val.getAsBlock();
1257 for (auto Byte : Bytes)
1258 Attr->addValue(static_cast<dwarf::Attribute>(0), dwarf::DW_FORM_data1,
1259 new (DIEAlloc) DIEInteger(Byte));
1260 // FIXME: If DIEBlock and DIELoc just reuses the Size field of
1261 // the DIE class, this if could be replaced by
1262 // Attr->setSize(Bytes.size()).
1263 if (Streamer) {
1264 if (Loc)
1265 Loc->ComputeSize(&Streamer->getAsmPrinter());
1266 else
1267 Block->ComputeSize(&Streamer->getAsmPrinter());
1268 }
1269 Die.addValue(dwarf::Attribute(AttrSpec.Attr), dwarf::Form(AttrSpec.Form),
1270 Value);
1271 return AttrSize;
1272}
1273
Frederic Riss31da3242015-03-11 18:45:52 +00001274/// \brief Clone an address attribute and add it to \p Die.
1275/// \returns the size of the new attribute.
1276unsigned DwarfLinker::cloneAddressAttribute(DIE &Die, AttributeSpec AttrSpec,
1277 const DWARFFormValue &Val,
1278 const CompileUnit &Unit,
1279 AttributesInfo &Info) {
Frederic Riss5a62dc32015-03-13 18:35:54 +00001280 uint64_t Addr = *Val.getAsAddress(&Unit.getOrigUnit());
Frederic Riss31da3242015-03-11 18:45:52 +00001281 if (AttrSpec.Attr == dwarf::DW_AT_low_pc) {
1282 if (Die.getTag() == dwarf::DW_TAG_inlined_subroutine ||
1283 Die.getTag() == dwarf::DW_TAG_lexical_block)
1284 Addr += Info.PCOffset;
Frederic Riss5a62dc32015-03-13 18:35:54 +00001285 else if (Die.getTag() == dwarf::DW_TAG_compile_unit) {
1286 Addr = Unit.getLowPc();
1287 if (Addr == UINT64_MAX)
1288 return 0;
1289 }
Frederic Riss31da3242015-03-11 18:45:52 +00001290 } else if (AttrSpec.Attr == dwarf::DW_AT_high_pc) {
Frederic Riss5a62dc32015-03-13 18:35:54 +00001291 if (Die.getTag() == dwarf::DW_TAG_compile_unit) {
1292 if (uint64_t HighPc = Unit.getHighPc())
1293 Addr = HighPc;
1294 else
1295 return 0;
1296 } else
1297 // If we have a high_pc recorded for the input DIE, use
1298 // it. Otherwise (when no relocations where applied) just use the
1299 // one we just decoded.
1300 Addr = (Info.OrigHighPc ? Info.OrigHighPc : Addr) + Info.PCOffset;
Frederic Riss31da3242015-03-11 18:45:52 +00001301 }
1302
1303 Die.addValue(static_cast<dwarf::Attribute>(AttrSpec.Attr),
1304 static_cast<dwarf::Form>(AttrSpec.Form),
1305 new (DIEAlloc) DIEInteger(Addr));
1306 return Unit.getOrigUnit().getAddressByteSize();
1307}
1308
Frederic Rissb8b43d52015-03-04 22:07:44 +00001309/// \brief Clone a scalar attribute and add it to \p Die.
1310/// \returns the size of the new attribute.
1311unsigned DwarfLinker::cloneScalarAttribute(
Frederic Riss5a62dc32015-03-13 18:35:54 +00001312 DIE &Die, const DWARFDebugInfoEntryMinimal &InputDIE,
1313 const CompileUnit &Unit, AttributeSpec AttrSpec, const DWARFFormValue &Val,
1314 unsigned AttrSize) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001315 uint64_t Value;
Frederic Riss5a62dc32015-03-13 18:35:54 +00001316 if (AttrSpec.Attr == dwarf::DW_AT_high_pc &&
1317 Die.getTag() == dwarf::DW_TAG_compile_unit) {
1318 if (Unit.getLowPc() == -1ULL)
1319 return 0;
1320 // Dwarf >= 4 high_pc is an size, not an address.
1321 Value = Unit.getHighPc() - Unit.getLowPc();
1322 } else if (AttrSpec.Form == dwarf::DW_FORM_sec_offset)
Frederic Rissb8b43d52015-03-04 22:07:44 +00001323 Value = *Val.getAsSectionOffset();
1324 else if (AttrSpec.Form == dwarf::DW_FORM_sdata)
1325 Value = *Val.getAsSignedConstant();
Frederic Rissb8b43d52015-03-04 22:07:44 +00001326 else if (auto OptionalValue = Val.getAsUnsignedConstant())
1327 Value = *OptionalValue;
1328 else {
Frederic Riss5a62dc32015-03-13 18:35:54 +00001329 reportWarning("Unsupported scalar attribute form. Dropping attribute.",
1330 &Unit.getOrigUnit(), &InputDIE);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001331 return 0;
1332 }
1333 Die.addValue(dwarf::Attribute(AttrSpec.Attr), dwarf::Form(AttrSpec.Form),
1334 new (DIEAlloc) DIEInteger(Value));
1335 return AttrSize;
1336}
1337
1338/// \brief Clone \p InputDIE's attribute described by \p AttrSpec with
1339/// value \p Val, and add it to \p Die.
1340/// \returns the size of the cloned attribute.
1341unsigned DwarfLinker::cloneAttribute(DIE &Die,
1342 const DWARFDebugInfoEntryMinimal &InputDIE,
1343 CompileUnit &Unit,
1344 const DWARFFormValue &Val,
1345 const AttributeSpec AttrSpec,
Frederic Riss31da3242015-03-11 18:45:52 +00001346 unsigned AttrSize, AttributesInfo &Info) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001347 const DWARFUnit &U = Unit.getOrigUnit();
1348
1349 switch (AttrSpec.Form) {
1350 case dwarf::DW_FORM_strp:
1351 case dwarf::DW_FORM_string:
Frederic Rissef648462015-03-06 17:56:30 +00001352 return cloneStringAttribute(Die, AttrSpec, Val, U);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001353 case dwarf::DW_FORM_ref_addr:
1354 case dwarf::DW_FORM_ref1:
1355 case dwarf::DW_FORM_ref2:
1356 case dwarf::DW_FORM_ref4:
1357 case dwarf::DW_FORM_ref8:
Frederic Riss9833de62015-03-06 23:22:53 +00001358 return cloneDieReferenceAttribute(Die, InputDIE, AttrSpec, AttrSize, Val,
Frederic Riss6afcfce2015-03-13 18:35:57 +00001359 Unit);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001360 case dwarf::DW_FORM_block:
1361 case dwarf::DW_FORM_block1:
1362 case dwarf::DW_FORM_block2:
1363 case dwarf::DW_FORM_block4:
1364 case dwarf::DW_FORM_exprloc:
1365 return cloneBlockAttribute(Die, AttrSpec, Val, AttrSize);
1366 case dwarf::DW_FORM_addr:
Frederic Riss31da3242015-03-11 18:45:52 +00001367 return cloneAddressAttribute(Die, AttrSpec, Val, Unit, Info);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001368 case dwarf::DW_FORM_data1:
1369 case dwarf::DW_FORM_data2:
1370 case dwarf::DW_FORM_data4:
1371 case dwarf::DW_FORM_data8:
1372 case dwarf::DW_FORM_udata:
1373 case dwarf::DW_FORM_sdata:
1374 case dwarf::DW_FORM_sec_offset:
1375 case dwarf::DW_FORM_flag:
1376 case dwarf::DW_FORM_flag_present:
Frederic Riss5a62dc32015-03-13 18:35:54 +00001377 return cloneScalarAttribute(Die, InputDIE, Unit, AttrSpec, Val, AttrSize);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001378 default:
1379 reportWarning("Unsupported attribute form in cloneAttribute. Dropping.", &U,
1380 &InputDIE);
1381 }
1382
1383 return 0;
1384}
1385
Frederic Riss23e20e92015-03-07 01:25:09 +00001386/// \brief Apply the valid relocations found by findValidRelocs() to
1387/// the buffer \p Data, taking into account that Data is at \p BaseOffset
1388/// in the debug_info section.
1389///
1390/// Like for findValidRelocs(), this function must be called with
1391/// monotonic \p BaseOffset values.
1392///
1393/// \returns wether any reloc has been applied.
1394bool DwarfLinker::applyValidRelocs(MutableArrayRef<char> Data,
1395 uint32_t BaseOffset, bool isLittleEndian) {
Aaron Ballman6b329f52015-03-07 15:16:27 +00001396 assert((NextValidReloc == 0 ||
Frederic Rissaa983ce2015-03-11 18:45:57 +00001397 BaseOffset > ValidRelocs[NextValidReloc - 1].Offset) &&
1398 "BaseOffset should only be increasing.");
Frederic Riss23e20e92015-03-07 01:25:09 +00001399 if (NextValidReloc >= ValidRelocs.size())
1400 return false;
1401
1402 // Skip relocs that haven't been applied.
1403 while (NextValidReloc < ValidRelocs.size() &&
1404 ValidRelocs[NextValidReloc].Offset < BaseOffset)
1405 ++NextValidReloc;
1406
1407 bool Applied = false;
1408 uint64_t EndOffset = BaseOffset + Data.size();
1409 while (NextValidReloc < ValidRelocs.size() &&
1410 ValidRelocs[NextValidReloc].Offset >= BaseOffset &&
1411 ValidRelocs[NextValidReloc].Offset < EndOffset) {
1412 const auto &ValidReloc = ValidRelocs[NextValidReloc++];
1413 assert(ValidReloc.Offset - BaseOffset < Data.size());
1414 assert(ValidReloc.Offset - BaseOffset + ValidReloc.Size <= Data.size());
1415 char Buf[8];
1416 uint64_t Value = ValidReloc.Mapping->getValue().BinaryAddress;
1417 Value += ValidReloc.Addend;
1418 for (unsigned i = 0; i != ValidReloc.Size; ++i) {
1419 unsigned Index = isLittleEndian ? i : (ValidReloc.Size - i - 1);
1420 Buf[i] = uint8_t(Value >> (Index * 8));
1421 }
1422 assert(ValidReloc.Size <= sizeof(Buf));
1423 memcpy(&Data[ValidReloc.Offset - BaseOffset], Buf, ValidReloc.Size);
1424 Applied = true;
1425 }
1426
1427 return Applied;
1428}
1429
Frederic Rissb8b43d52015-03-04 22:07:44 +00001430/// \brief Recursively clone \p InputDIE's subtrees that have been
1431/// selected to appear in the linked output.
1432///
1433/// \param OutOffset is the Offset where the newly created DIE will
1434/// lie in the linked compile unit.
1435///
1436/// \returns the cloned DIE object or null if nothing was selected.
1437DIE *DwarfLinker::cloneDIE(const DWARFDebugInfoEntryMinimal &InputDIE,
Frederic Riss31da3242015-03-11 18:45:52 +00001438 CompileUnit &Unit, int64_t PCOffset,
1439 uint32_t OutOffset) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001440 DWARFUnit &U = Unit.getOrigUnit();
1441 unsigned Idx = U.getDIEIndex(&InputDIE);
Frederic Riss9833de62015-03-06 23:22:53 +00001442 CompileUnit::DIEInfo &Info = Unit.getInfo(Idx);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001443
1444 // Should the DIE appear in the output?
1445 if (!Unit.getInfo(Idx).Keep)
1446 return nullptr;
1447
1448 uint32_t Offset = InputDIE.getOffset();
Frederic Riss9833de62015-03-06 23:22:53 +00001449 // The DIE might have been already created by a forward reference
1450 // (see cloneDieReferenceAttribute()).
1451 DIE *Die = Info.Clone;
1452 if (!Die)
1453 Die = Info.Clone = new DIE(dwarf::Tag(InputDIE.getTag()));
1454 assert(Die->getTag() == InputDIE.getTag());
Frederic Rissb8b43d52015-03-04 22:07:44 +00001455 Die->setOffset(OutOffset);
1456
1457 // Extract and clone every attribute.
1458 DataExtractor Data = U.getDebugInfoExtractor();
Frederic Riss23e20e92015-03-07 01:25:09 +00001459 uint32_t NextOffset = U.getDIEAtIndex(Idx + 1)->getOffset();
Frederic Riss31da3242015-03-11 18:45:52 +00001460 AttributesInfo AttrInfo;
Frederic Riss23e20e92015-03-07 01:25:09 +00001461
1462 // We could copy the data only if we need to aply a relocation to
1463 // it. After testing, it seems there is no performance downside to
1464 // doing the copy unconditionally, and it makes the code simpler.
1465 SmallString<40> DIECopy(Data.getData().substr(Offset, NextOffset - Offset));
1466 Data = DataExtractor(DIECopy, Data.isLittleEndian(), Data.getAddressSize());
1467 // Modify the copy with relocated addresses.
Frederic Riss31da3242015-03-11 18:45:52 +00001468 if (applyValidRelocs(DIECopy, Offset, Data.isLittleEndian())) {
1469 // If we applied relocations, we store the value of high_pc that was
1470 // potentially stored in the input DIE. If high_pc is an address
1471 // (Dwarf version == 2), then it might have been relocated to a
1472 // totally unrelated value (because the end address in the object
1473 // file might be start address of another function which got moved
1474 // independantly by the linker). The computation of the actual
1475 // high_pc value is done in cloneAddressAttribute().
1476 AttrInfo.OrigHighPc =
1477 InputDIE.getAttributeValueAsAddress(&U, dwarf::DW_AT_high_pc, 0);
1478 }
Frederic Riss23e20e92015-03-07 01:25:09 +00001479
1480 // Reset the Offset to 0 as we will be working on the local copy of
1481 // the data.
1482 Offset = 0;
1483
Frederic Rissb8b43d52015-03-04 22:07:44 +00001484 const auto *Abbrev = InputDIE.getAbbreviationDeclarationPtr();
1485 Offset += getULEB128Size(Abbrev->getCode());
1486
Frederic Riss31da3242015-03-11 18:45:52 +00001487 // We are entering a subprogram. Get and propagate the PCOffset.
1488 if (Die->getTag() == dwarf::DW_TAG_subprogram)
1489 PCOffset = Info.AddrAdjust;
1490 AttrInfo.PCOffset = PCOffset;
1491
Frederic Rissb8b43d52015-03-04 22:07:44 +00001492 for (const auto &AttrSpec : Abbrev->attributes()) {
1493 DWARFFormValue Val(AttrSpec.Form);
1494 uint32_t AttrSize = Offset;
1495 Val.extractValue(Data, &Offset, &U);
1496 AttrSize = Offset - AttrSize;
1497
Frederic Riss31da3242015-03-11 18:45:52 +00001498 OutOffset +=
1499 cloneAttribute(*Die, InputDIE, Unit, Val, AttrSpec, AttrSize, AttrInfo);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001500 }
1501
1502 DIEAbbrev &NewAbbrev = Die->getAbbrev();
1503 // If a scope DIE is kept, we must have kept at least one child. If
1504 // it's not the case, we'll just be emitting one wasteful end of
1505 // children marker, but things won't break.
1506 if (InputDIE.hasChildren())
1507 NewAbbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes);
1508 // Assign a permanent abbrev number
1509 AssignAbbrev(Die->getAbbrev());
1510
1511 // Add the size of the abbreviation number to the output offset.
1512 OutOffset += getULEB128Size(Die->getAbbrevNumber());
1513
1514 if (!Abbrev->hasChildren()) {
1515 // Update our size.
1516 Die->setSize(OutOffset - Die->getOffset());
1517 return Die;
1518 }
1519
1520 // Recursively clone children.
1521 for (auto *Child = InputDIE.getFirstChild(); Child && !Child->isNULL();
1522 Child = Child->getSibling()) {
Frederic Riss31da3242015-03-11 18:45:52 +00001523 if (DIE *Clone = cloneDIE(*Child, Unit, PCOffset, OutOffset)) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001524 Die->addChild(std::unique_ptr<DIE>(Clone));
1525 OutOffset = Clone->getOffset() + Clone->getSize();
1526 }
1527 }
1528
1529 // Account for the end of children marker.
1530 OutOffset += sizeof(int8_t);
1531 // Update our size.
1532 Die->setSize(OutOffset - Die->getOffset());
1533 return Die;
1534}
1535
Frederic Rissd3455182015-01-28 18:27:01 +00001536bool DwarfLinker::link(const DebugMap &Map) {
1537
1538 if (Map.begin() == Map.end()) {
1539 errs() << "Empty debug map.\n";
1540 return false;
1541 }
1542
Frederic Rissc99ea202015-02-28 00:29:11 +00001543 if (!createStreamer(Map.getTriple(), OutputFilename))
1544 return false;
1545
Frederic Rissb8b43d52015-03-04 22:07:44 +00001546 // Size of the DIEs (and headers) generated for the linked output.
1547 uint64_t OutputDebugInfoSize = 0;
1548
Frederic Rissd3455182015-01-28 18:27:01 +00001549 for (const auto &Obj : Map.objects()) {
Frederic Riss1b9da422015-02-13 23:18:29 +00001550 CurrentDebugObject = Obj.get();
1551
Frederic Rissb9818322015-02-28 00:29:07 +00001552 if (Options.Verbose)
Frederic Rissd3455182015-01-28 18:27:01 +00001553 outs() << "DEBUG MAP OBJECT: " << Obj->getObjectFilename() << "\n";
1554 auto ErrOrObj = BinHolder.GetObjectFile(Obj->getObjectFilename());
1555 if (std::error_code EC = ErrOrObj.getError()) {
Frederic Riss1b9da422015-02-13 23:18:29 +00001556 reportWarning(Twine(Obj->getObjectFilename()) + ": " + EC.message());
Frederic Rissd3455182015-01-28 18:27:01 +00001557 continue;
1558 }
1559
Frederic Riss1036e642015-02-13 23:18:22 +00001560 // Look for relocations that correspond to debug map entries.
1561 if (!findValidRelocsInDebugInfo(*ErrOrObj, *Obj)) {
Frederic Rissb9818322015-02-28 00:29:07 +00001562 if (Options.Verbose)
Frederic Riss1036e642015-02-13 23:18:22 +00001563 outs() << "No valid relocations found. Skipping.\n";
1564 continue;
1565 }
1566
Frederic Riss563cba62015-01-28 22:15:14 +00001567 // Setup access to the debug info.
Frederic Rissd3455182015-01-28 18:27:01 +00001568 DWARFContextInMemory DwarfContext(*ErrOrObj);
Frederic Riss563cba62015-01-28 22:15:14 +00001569 startDebugObject(DwarfContext);
Frederic Rissd3455182015-01-28 18:27:01 +00001570
Frederic Riss563cba62015-01-28 22:15:14 +00001571 // In a first phase, just read in the debug info and store the DIE
1572 // parent links that we will use during the next phase.
Frederic Rissd3455182015-01-28 18:27:01 +00001573 for (const auto &CU : DwarfContext.compile_units()) {
1574 auto *CUDie = CU->getCompileUnitDIE(false);
Frederic Rissb9818322015-02-28 00:29:07 +00001575 if (Options.Verbose) {
Frederic Rissd3455182015-01-28 18:27:01 +00001576 outs() << "Input compilation unit:";
1577 CUDie->dump(outs(), CU.get(), 0);
1578 }
Frederic Riss563cba62015-01-28 22:15:14 +00001579 Units.emplace_back(*CU);
Frederic Riss9aa725b2015-02-13 23:18:31 +00001580 gatherDIEParents(CUDie, 0, Units.back());
Frederic Rissd3455182015-01-28 18:27:01 +00001581 }
Frederic Riss563cba62015-01-28 22:15:14 +00001582
Frederic Riss84c09a52015-02-13 23:18:34 +00001583 // Then mark all the DIEs that need to be present in the linked
1584 // output and collect some information about them. Note that this
1585 // loop can not be merged with the previous one becaue cross-cu
1586 // references require the ParentIdx to be setup for every CU in
1587 // the object file before calling this.
1588 for (auto &CurrentUnit : Units)
1589 lookForDIEsToKeep(*CurrentUnit.getOrigUnit().getCompileUnitDIE(), *Obj,
1590 CurrentUnit, 0);
1591
Frederic Riss23e20e92015-03-07 01:25:09 +00001592 // The calls to applyValidRelocs inside cloneDIE will walk the
1593 // reloc array again (in the same way findValidRelocsInDebugInfo()
1594 // did). We need to reset the NextValidReloc index to the beginning.
1595 NextValidReloc = 0;
1596
Frederic Rissb8b43d52015-03-04 22:07:44 +00001597 // Construct the output DIE tree by cloning the DIEs we chose to
1598 // keep above. If there are no valid relocs, then there's nothing
1599 // to clone/emit.
1600 if (!ValidRelocs.empty())
1601 for (auto &CurrentUnit : Units) {
1602 const auto *InputDIE = CurrentUnit.getOrigUnit().getCompileUnitDIE();
Frederic Riss9d441b62015-03-06 23:22:50 +00001603 CurrentUnit.setStartOffset(OutputDebugInfoSize);
Frederic Riss31da3242015-03-11 18:45:52 +00001604 DIE *OutputDIE = cloneDIE(*InputDIE, CurrentUnit, 0 /* PCOffset */,
1605 11 /* Unit Header size */);
Frederic Rissb8b43d52015-03-04 22:07:44 +00001606 CurrentUnit.setOutputUnitDIE(OutputDIE);
Frederic Riss9d441b62015-03-06 23:22:50 +00001607 OutputDebugInfoSize = CurrentUnit.computeNextUnitOffset();
Frederic Rissb8b43d52015-03-04 22:07:44 +00001608 }
1609
1610 // Emit all the compile unit's debug information.
1611 if (!ValidRelocs.empty() && !Options.NoOutput)
1612 for (auto &CurrentUnit : Units) {
Frederic Riss9833de62015-03-06 23:22:53 +00001613 CurrentUnit.fixupForwardReferences();
Frederic Rissb8b43d52015-03-04 22:07:44 +00001614 Streamer->emitCompileUnitHeader(CurrentUnit);
1615 if (!CurrentUnit.getOutputUnitDIE())
1616 continue;
1617 Streamer->emitDIE(*CurrentUnit.getOutputUnitDIE());
1618 }
1619
Frederic Riss563cba62015-01-28 22:15:14 +00001620 // Clean-up before starting working on the next object.
1621 endDebugObject();
Frederic Rissd3455182015-01-28 18:27:01 +00001622 }
1623
Frederic Rissb8b43d52015-03-04 22:07:44 +00001624 // Emit everything that's global.
Frederic Rissef648462015-03-06 17:56:30 +00001625 if (!Options.NoOutput) {
Frederic Rissb8b43d52015-03-04 22:07:44 +00001626 Streamer->emitAbbrevs(Abbreviations);
Frederic Rissef648462015-03-06 17:56:30 +00001627 Streamer->emitStrings(StringPool);
1628 }
Frederic Rissb8b43d52015-03-04 22:07:44 +00001629
Frederic Rissc99ea202015-02-28 00:29:11 +00001630 return Options.NoOutput ? true : Streamer->finish();
Frederic Riss231f7142014-12-12 17:31:24 +00001631}
1632}
Frederic Rissd3455182015-01-28 18:27:01 +00001633
Frederic Rissb9818322015-02-28 00:29:07 +00001634bool linkDwarf(StringRef OutputFilename, const DebugMap &DM,
1635 const LinkOptions &Options) {
1636 DwarfLinker Linker(OutputFilename, Options);
Frederic Rissd3455182015-01-28 18:27:01 +00001637 return Linker.link(DM);
1638}
1639}
Frederic Riss231f7142014-12-12 17:31:24 +00001640}