]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
Merge ^/head r320398 through r320572.
[FreeBSD/FreeBSD.git] / contrib / llvm / include / llvm / DebugInfo / DWARF / DWARFUnit.h
1 //===- DWARFUnit.h ----------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_DEBUGINFO_DWARF_DWARFUNIT_H
11 #define LLVM_DEBUGINFO_DWARF_DWARFUNIT_H
12
13 #include "llvm/ADT/Optional.h"
14 #include "llvm/ADT/STLExtras.h"
15 #include "llvm/ADT/SmallVector.h"
16 #include "llvm/ADT/StringRef.h"
17 #include "llvm/ADT/iterator_range.h"
18 #include "llvm/BinaryFormat/Dwarf.h"
19 #include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.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/DWARFRelocMap.h"
24 #include "llvm/DebugInfo/DWARF/DWARFSection.h"
25 #include "llvm/DebugInfo/DWARF/DWARFUnitIndex.h"
26 #include "llvm/Support/DataExtractor.h"
27 #include <algorithm>
28 #include <cassert>
29 #include <cstddef>
30 #include <cstdint>
31 #include <map>
32 #include <memory>
33 #include <utility>
34 #include <vector>
35
36 namespace llvm {
37
38 class DWARFAbbreviationDeclarationSet;
39 class DWARFContext;
40 class DWARFDebugAbbrev;
41 class DWARFUnit;
42
43 /// Base class for all DWARFUnitSection classes. This provides the
44 /// functionality common to all unit types.
45 class DWARFUnitSectionBase {
46 public:
47   /// Returns the Unit that contains the given section offset in the
48   /// same section this Unit originated from.
49   virtual DWARFUnit *getUnitForOffset(uint32_t Offset) const = 0;
50
51   void parse(DWARFContext &C, const DWARFSection &Section);
52   void parseDWO(DWARFContext &C, const DWARFSection &DWOSection,
53                 DWARFUnitIndex *Index = nullptr);
54
55 protected:
56   ~DWARFUnitSectionBase() = default;
57
58   virtual void parseImpl(DWARFContext &Context, const DWARFSection &Section,
59                          const DWARFDebugAbbrev *DA, const DWARFSection *RS,
60                          StringRef SS, const DWARFSection &SOS,
61                          const DWARFSection *AOS, const DWARFSection &LS,
62                          bool isLittleEndian, bool isDWO) = 0;
63 };
64
65 const DWARFUnitIndex &getDWARFUnitIndex(DWARFContext &Context,
66                                         DWARFSectionKind Kind);
67
68 /// Concrete instance of DWARFUnitSection, specialized for one Unit type.
69 template<typename UnitType>
70 class DWARFUnitSection final : public SmallVector<std::unique_ptr<UnitType>, 1>,
71                                public DWARFUnitSectionBase {
72   bool Parsed = false;
73
74 public:
75   using UnitVector = SmallVectorImpl<std::unique_ptr<UnitType>>;
76   using iterator = typename UnitVector::iterator;
77   using iterator_range = llvm::iterator_range<typename UnitVector::iterator>;
78
79   UnitType *getUnitForOffset(uint32_t Offset) const override {
80     auto *CU = std::upper_bound(
81         this->begin(), this->end(), Offset,
82         [](uint32_t LHS, const std::unique_ptr<UnitType> &RHS) {
83           return LHS < RHS->getNextUnitOffset();
84         });
85     if (CU != this->end())
86       return CU->get();
87     return nullptr;
88   }
89
90 private:
91   void parseImpl(DWARFContext &Context, const DWARFSection &Section,
92                  const DWARFDebugAbbrev *DA, const DWARFSection *RS,
93                  StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS,
94                  const DWARFSection &LS, bool LE, bool IsDWO) override {
95     if (Parsed)
96       return;
97     const auto &Index = getDWARFUnitIndex(Context, UnitType::Section);
98     DataExtractor Data(Section.Data, LE, 0);
99     uint32_t Offset = 0;
100     while (Data.isValidOffset(Offset)) {
101       auto U = llvm::make_unique<UnitType>(Context, Section, DA, RS, SS, SOS,
102                                            AOS, LS, LE, IsDWO, *this,
103                                            Index.getFromOffset(Offset));
104       if (!U->extract(Data, &Offset))
105         break;
106       this->push_back(std::move(U));
107       Offset = this->back()->getNextUnitOffset();
108     }
109     Parsed = true;
110   }
111 };
112
113 class DWARFUnit {
114   DWARFContext &Context;
115   /// Section containing this DWARFUnit.
116   const DWARFSection &InfoSection;
117
118   const DWARFDebugAbbrev *Abbrev;
119   const DWARFSection *RangeSection;
120   uint32_t RangeSectionBase;
121   const DWARFSection &LineSection;
122   StringRef StringSection;
123   const DWARFSection &StringOffsetSection;
124   uint64_t StringOffsetSectionBase = 0;
125   const DWARFSection *AddrOffsetSection;
126   uint32_t AddrOffsetSectionBase;
127   bool isLittleEndian;
128   bool isDWO;
129   const DWARFUnitSectionBase &UnitSection;
130
131   // Version, address size, and DWARF format.
132   DWARFFormParams FormParams;
133
134   uint32_t Offset;
135   uint32_t Length;
136   const DWARFAbbreviationDeclarationSet *Abbrevs;
137   uint8_t UnitType;
138   uint64_t BaseAddr;
139   /// The compile unit debug information entry items.
140   std::vector<DWARFDebugInfoEntry> DieArray;
141
142   /// Map from range's start address to end address and corresponding DIE.
143   /// IntervalMap does not support range removal, as a result, we use the
144   /// std::map::upper_bound for address range lookup.
145   std::map<uint64_t, std::pair<uint64_t, DWARFDie>> AddrDieMap;
146
147   using die_iterator_range =
148       iterator_range<std::vector<DWARFDebugInfoEntry>::iterator>;
149
150   std::shared_ptr<DWARFUnit> DWO;
151
152   const DWARFUnitIndex::Entry *IndexEntry;
153
154   uint32_t getDIEIndex(const DWARFDebugInfoEntry *Die) {
155     auto First = DieArray.data();
156     assert(Die >= First && Die < First + DieArray.size());
157     return Die - First;
158   }
159
160 protected:
161   virtual bool extractImpl(DataExtractor debug_info, uint32_t *offset_ptr);
162
163   /// Size in bytes of the unit header.
164   virtual uint32_t getHeaderSize() const { return getVersion() <= 4 ? 11 : 12; }
165
166 public:
167   DWARFUnit(DWARFContext &Context, const DWARFSection &Section,
168             const DWARFDebugAbbrev *DA, const DWARFSection *RS, StringRef SS,
169             const DWARFSection &SOS, const DWARFSection *AOS,
170             const DWARFSection &LS, bool LE, bool IsDWO,
171             const DWARFUnitSectionBase &UnitSection,
172             const DWARFUnitIndex::Entry *IndexEntry = nullptr);
173
174   virtual ~DWARFUnit();
175
176   DWARFContext& getContext() const { return Context; }
177
178   const DWARFSection &getLineSection() const { return LineSection; }
179   StringRef getStringSection() const { return StringSection; }
180   const DWARFSection &getStringOffsetSection() const {
181     return StringOffsetSection;
182   }
183
184   void setAddrOffsetSection(const DWARFSection *AOS, uint32_t Base) {
185     AddrOffsetSection = AOS;
186     AddrOffsetSectionBase = Base;
187   }
188
189   /// Recursively update address to Die map.
190   void updateAddressDieMap(DWARFDie Die);
191
192   void setRangesSection(const DWARFSection *RS, uint32_t Base) {
193     RangeSection = RS;
194     RangeSectionBase = Base;
195   }
196
197   bool getAddrOffsetSectionItem(uint32_t Index, uint64_t &Result) const;
198   bool getStringOffsetSectionItem(uint32_t Index, uint64_t &Result) const;
199
200   DWARFDataExtractor getDebugInfoExtractor() const {
201     return DWARFDataExtractor(InfoSection, isLittleEndian,
202                               getAddressByteSize());
203   }
204
205   DataExtractor getStringExtractor() const {
206     return DataExtractor(StringSection, false, 0);
207   }
208
209   const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }
210   const RelocAddrMap &getStringOffsetsRelocMap() const {
211     return StringOffsetSection.Relocs;
212   }
213
214   bool extract(DataExtractor debug_info, uint32_t* offset_ptr);
215
216   /// extractRangeList - extracts the range list referenced by this compile
217   /// unit from .debug_ranges section. Returns true on success.
218   /// Requires that compile unit is already extracted.
219   bool extractRangeList(uint32_t RangeListOffset,
220                         DWARFDebugRangeList &RangeList) const;
221   void clear();
222   uint32_t getOffset() const { return Offset; }
223   uint32_t getNextUnitOffset() const { return Offset + Length + 4; }
224   uint32_t getLength() const { return Length; }
225
226   const DWARFFormParams &getFormParams() const { return FormParams; }
227   uint16_t getVersion() const { return FormParams.Version; }
228   dwarf::DwarfFormat getFormat() const { return FormParams.Format; }
229   uint8_t getAddressByteSize() const { return FormParams.AddrSize; }
230   uint8_t getRefAddrByteSize() const { return FormParams.getRefAddrByteSize(); }
231   uint8_t getDwarfOffsetByteSize() const {
232     return FormParams.getDwarfOffsetByteSize();
233   }
234
235   const DWARFAbbreviationDeclarationSet *getAbbreviations() const {
236     return Abbrevs;
237   }
238
239   uint8_t getUnitType() const { return UnitType; }
240
241   uint64_t getBaseAddress() const { return BaseAddr; }
242
243   void setBaseAddress(uint64_t base_addr) {
244     BaseAddr = base_addr;
245   }
246
247   DWARFDie getUnitDIE(bool ExtractUnitDIEOnly = true) {
248     extractDIEsIfNeeded(ExtractUnitDIEOnly);
249     if (DieArray.empty())
250       return DWARFDie();
251     return DWARFDie(this, &DieArray[0]);
252   }
253
254   const char *getCompilationDir();
255   Optional<uint64_t> getDWOId();
256
257   void collectAddressRanges(DWARFAddressRangesVector &CURanges);
258
259   /// getInlinedChainForAddress - fetches inlined chain for a given address.
260   /// Returns empty chain if there is no subprogram containing address. The
261   /// chain is valid as long as parsed compile unit DIEs are not cleared.
262   void getInlinedChainForAddress(uint64_t Address,
263                                  SmallVectorImpl<DWARFDie> &InlinedChain);
264
265   /// getUnitSection - Return the DWARFUnitSection containing this unit.
266   const DWARFUnitSectionBase &getUnitSection() const { return UnitSection; }
267
268   /// \brief Returns the number of DIEs in the unit. Parses the unit
269   /// if necessary.
270   unsigned getNumDIEs() {
271     extractDIEsIfNeeded(false);
272     return DieArray.size();
273   }
274
275   /// \brief Return the index of a DIE inside the unit's DIE vector.
276   ///
277   /// It is illegal to call this method with a DIE that hasn't be
278   /// created by this unit. In other word, it's illegal to call this
279   /// method on a DIE that isn't accessible by following
280   /// children/sibling links starting from this unit's getUnitDIE().
281   uint32_t getDIEIndex(const DWARFDie &D) {
282     return getDIEIndex(D.getDebugInfoEntry());
283   }
284
285   /// \brief Return the DIE object at the given index.
286   DWARFDie getDIEAtIndex(unsigned Index) {
287     assert(Index < DieArray.size());
288     return DWARFDie(this, &DieArray[Index]);
289   }
290
291   DWARFDie getParent(const DWARFDebugInfoEntry *Die);
292   DWARFDie getSibling(const DWARFDebugInfoEntry *Die);
293
294   /// \brief Return the DIE object for a given offset inside the
295   /// unit's DIE vector.
296   ///
297   /// The unit needs to have its DIEs extracted for this method to work.
298   DWARFDie getDIEForOffset(uint32_t Offset) {
299     extractDIEsIfNeeded(false);
300     assert(!DieArray.empty());
301     auto it = std::lower_bound(
302         DieArray.begin(), DieArray.end(), Offset,
303         [](const DWARFDebugInfoEntry &LHS, uint32_t Offset) {
304           return LHS.getOffset() < Offset;
305         });
306     if (it != DieArray.end() && it->getOffset() == Offset)
307       return DWARFDie(this, &*it);
308     return DWARFDie();
309   }
310
311   uint32_t getLineTableOffset() const {
312     if (IndexEntry)
313       if (const auto *Contrib = IndexEntry->getOffset(DW_SECT_LINE))
314         return Contrib->Offset;
315     return 0;
316   }
317
318   die_iterator_range dies() {
319     extractDIEsIfNeeded(false);
320     return die_iterator_range(DieArray.begin(), DieArray.end());
321   }
322
323 private:
324   /// Size in bytes of the .debug_info data associated with this compile unit.
325   size_t getDebugInfoSize() const { return Length + 4 - getHeaderSize(); }
326
327   /// extractDIEsIfNeeded - Parses a compile unit and indexes its DIEs if it
328   /// hasn't already been done. Returns the number of DIEs parsed at this call.
329   size_t extractDIEsIfNeeded(bool CUDieOnly);
330
331   /// extractDIEsToVector - Appends all parsed DIEs to a vector.
332   void extractDIEsToVector(bool AppendCUDie, bool AppendNonCUDIEs,
333                            std::vector<DWARFDebugInfoEntry> &DIEs) const;
334
335   /// clearDIEs - Clear parsed DIEs to keep memory usage low.
336   void clearDIEs(bool KeepCUDie);
337
338   /// parseDWO - Parses .dwo file for current compile unit. Returns true if
339   /// it was actually constructed.
340   bool parseDWO();
341
342   /// getSubroutineForAddress - Returns subprogram DIE with address range
343   /// encompassing the provided address. The pointer is alive as long as parsed
344   /// compile unit DIEs are not cleared.
345   DWARFDie getSubroutineForAddress(uint64_t Address);
346 };
347
348 } // end namespace llvm
349
350 #endif // LLVM_DEBUGINFO_DWARF_DWARFUNIT_H