blob: 0acd289c0569256eb2d7175c44f34feb4a1cf139 [file] [log] [blame]
Eric Christopherbcbd3a42011-11-07 09:18:42 +00001//==-- llvm/CodeGen/DwarfAccelTable.h - Dwarf Accelerator Tables -*- 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// This file contains support for writing dwarf accelerator tables.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CODEGEN_ASMPRINTER_DWARFACCELTABLE_H__
15#define CODEGEN_ASMPRINTER_DWARFACCELTABLE_H__
16
Chandler Carrutha1514e22012-12-04 07:12:27 +000017#include "DIE.h"
Benjamin Kramer36c38b82012-04-13 20:06:17 +000018#include "llvm/ADT/ArrayRef.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000019#include "llvm/ADT/StringMap.h"
Eric Christopherbcbd3a42011-11-07 09:18:42 +000020#include "llvm/MC/MCSymbol.h"
Eric Christopherbcbd3a42011-11-07 09:18:42 +000021#include "llvm/Support/DataTypes.h"
22#include "llvm/Support/Debug.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000023#include "llvm/Support/Dwarf.h"
Eric Christopherbcbd3a42011-11-07 09:18:42 +000024#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/Format.h"
26#include "llvm/Support/FormattedStream.h"
Eric Christopherbcbd3a42011-11-07 09:18:42 +000027#include <map>
Chandler Carrutha1514e22012-12-04 07:12:27 +000028#include <vector>
Eric Christopherbcbd3a42011-11-07 09:18:42 +000029
Eric Christopher09ac3d82011-11-07 09:24:32 +000030// The dwarf accelerator tables are an indirect hash table optimized
Eric Christopherbcbd3a42011-11-07 09:18:42 +000031// for null lookup rather than access to known data. They are output into
32// an on-disk format that looks like this:
33//
34// .-------------.
35// | HEADER |
36// |-------------|
37// | BUCKETS |
38// |-------------|
39// | HASHES |
40// |-------------|
41// | OFFSETS |
42// |-------------|
43// | DATA |
44// `-------------'
45//
46// where the header contains a magic number, version, type of hash function,
47// the number of buckets, total number of hashes, and room for a special
48// struct of data and the length of that struct.
49//
50// The buckets contain an index (e.g. 6) into the hashes array. The hashes
51// section contains all of the 32-bit hash values in contiguous memory, and
52// the offsets contain the offset into the data area for the particular
53// hash.
Eric Christopher72c16552012-12-20 21:58:40 +000054//
Eric Christopherbcbd3a42011-11-07 09:18:42 +000055// For a lookup example, we could hash a function name and take it modulo the
56// number of buckets giving us our bucket. From there we take the bucket value
57// as an index into the hashes table and look at each successive hash as long
58// as the hash value is still the same modulo result (bucket value) as earlier.
59// If we have a match we look at that same entry in the offsets table and
60// grab the offset in the data for our final match.
61
62namespace llvm {
63
64class AsmPrinter;
65class DIE;
Eric Christopher2e5d8702012-12-20 21:58:36 +000066class DwarfUnits;
Eric Christopher72c16552012-12-20 21:58:40 +000067
Eric Christopherbcbd3a42011-11-07 09:18:42 +000068class DwarfAccelTable {
69
70 enum HashFunctionType {
71 eHashFunctionDJB = 0u
72 };
73
Eric Christopher5b9544b2013-09-05 16:46:43 +000074 static uint32_t HashDJB(StringRef Str) {
Eric Christopherbcbd3a42011-11-07 09:18:42 +000075 uint32_t h = 5381;
Eric Christopher2dd5e1e2011-11-07 21:49:35 +000076 for (unsigned i = 0, e = Str.size(); i != e; ++i)
77 h = ((h << 5) + h) + Str[i];
Eric Christopherbcbd3a42011-11-07 09:18:42 +000078 return h;
79 }
80
81 // Helper function to compute the number of buckets needed based on
82 // the number of unique hashes.
Eric Christopher5b9544b2013-09-05 16:46:43 +000083 void ComputeBucketCount(void);
Eric Christopher72c16552012-12-20 21:58:40 +000084
Eric Christopherbcbd3a42011-11-07 09:18:42 +000085 struct TableHeader {
Eric Christopher5b9544b2013-09-05 16:46:43 +000086 uint32_t magic; // 'HASH' magic value to allow endian detection
87 uint16_t version; // Version number.
88 uint16_t hash_function; // The hash function enumeration that was used.
89 uint32_t bucket_count; // The number of buckets in this hash table.
90 uint32_t hashes_count; // The total number of unique hash values
91 // and hash data offsets in this table.
92 uint32_t header_data_len; // The bytes to skip to get to the hash
93 // indexes (buckets) for correct alignment.
Eric Christopherbcbd3a42011-11-07 09:18:42 +000094 // Also written to disk is the implementation specific header data.
95
96 static const uint32_t MagicHash = 0x48415348;
Eric Christopher72c16552012-12-20 21:58:40 +000097
Eric Christopher5b9544b2013-09-05 16:46:43 +000098 TableHeader(uint32_t data_len)
99 : magic(MagicHash), version(1), hash_function(eHashFunctionDJB),
100 bucket_count(0), hashes_count(0), header_data_len(data_len) {}
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000101
102#ifndef NDEBUG
103 void print(raw_ostream &O) {
104 O << "Magic: " << format("0x%x", magic) << "\n"
105 << "Version: " << version << "\n"
106 << "Hash Function: " << hash_function << "\n"
107 << "Bucket Count: " << bucket_count << "\n"
108 << "Header Data Length: " << header_data_len << "\n";
109 }
110 void dump() { print(dbgs()); }
111#endif
112 };
113
114public:
115 // The HeaderData describes the form of each set of data. In general this
116 // is as a list of atoms (atom_count) where each atom contains a type
117 // (AtomType type) of data, and an encoding form (form). In the case of
118 // data that is referenced via DW_FORM_ref_* the die_offset_base is
119 // used to describe the offset for all forms in the list of atoms.
120 // This also serves as a public interface of sorts.
121 // When written to disk this will have the form:
122 //
123 // uint32_t die_offset_base
124 // uint32_t atom_count
Eric Christopher72c16552012-12-20 21:58:40 +0000125 // atom_count Atoms
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000126 enum AtomType {
Eric Christopher5b9544b2013-09-05 16:46:43 +0000127 eAtomTypeNULL = 0u,
128 eAtomTypeDIEOffset = 1u, // DIE offset, check form for encoding
129 eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that
130 // contains the item in question
131 eAtomTypeTag = 3u, // DW_TAG_xxx value, should be encoded as
132 // DW_FORM_data1 (if no tags exceed 255) or
133 // DW_FORM_data2.
134 eAtomTypeNameFlags = 4u, // Flags from enum NameFlags
135 eAtomTypeTypeFlags = 5u // Flags from enum TypeFlags
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000136 };
137
Eric Christopherc36145f2012-01-06 04:35:23 +0000138 enum TypeFlags {
139 eTypeFlagClassMask = 0x0000000fu,
Eric Christopher72c16552012-12-20 21:58:40 +0000140
Eric Christopherc36145f2012-01-06 04:35:23 +0000141 // Always set for C++, only set for ObjC if this is the
142 // @implementation for a class.
Eric Christopher5b9544b2013-09-05 16:46:43 +0000143 eTypeFlagClassIsImplementation = (1u << 1)
Eric Christopher72c16552012-12-20 21:58:40 +0000144 };
145
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000146 // Make these public so that they can be used as a general interface to
147 // the class.
148 struct Atom {
149 AtomType type; // enum AtomType
150 uint16_t form; // DWARF DW_FORM_ defines
151
Devang Patelc6bcf432011-11-09 06:20:49 +0000152 Atom(AtomType type, uint16_t form) : type(type), form(form) {}
Eric Christopher5b9544b2013-09-05 16:46:43 +0000153 static const char *AtomTypeString(enum AtomType);
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000154#ifndef NDEBUG
155 void print(raw_ostream &O) {
Eric Christopherc36145f2012-01-06 04:35:23 +0000156 O << "Type: " << AtomTypeString(type) << "\n"
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000157 << "Form: " << dwarf::FormEncodingString(form) << "\n";
158 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000159 void dump() { print(dbgs()); }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000160#endif
161 };
162
Eric Christopher5b9544b2013-09-05 16:46:43 +0000163private:
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000164 struct TableHeaderData {
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000165 uint32_t die_offset_base;
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000166 SmallVector<Atom, 1> Atoms;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000167
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000168 TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0)
Eric Christopher5b9544b2013-09-05 16:46:43 +0000169 : die_offset_base(offset), Atoms(AtomList.begin(), AtomList.end()) {}
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000170
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000171#ifndef NDEBUG
Eric Christopher5b9544b2013-09-05 16:46:43 +0000172 void print(raw_ostream &O) {
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000173 O << "die_offset_base: " << die_offset_base << "\n";
174 for (size_t i = 0; i < Atoms.size(); i++)
175 Atoms[i].print(O);
176 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000177 void dump() { print(dbgs()); }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000178#endif
179 };
180
Eric Christopher09ac3d82011-11-07 09:24:32 +0000181 // The data itself consists of a str_offset, a count of the DIEs in the
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000182 // hash and the offsets to the DIEs themselves.
183 // On disk each data section is ended with a 0 KeyType as the end of the
184 // hash chain.
185 // On output this looks like:
186 // uint32_t str_offset
187 // uint32_t hash_data_count
188 // HashData[hash_data_count]
Eric Christopherc36145f2012-01-06 04:35:23 +0000189public:
190 struct HashDataContents {
Eric Christopher5b9544b2013-09-05 16:46:43 +0000191 DIE *Die; // Offsets
Eric Christopherc36145f2012-01-06 04:35:23 +0000192 char Flags; // Specific flags to output
193
Eric Christopher5b9544b2013-09-05 16:46:43 +0000194 HashDataContents(DIE *D, char Flags) : Die(D), Flags(Flags) {}
195#ifndef NDEBUG
Eric Christopherc36145f2012-01-06 04:35:23 +0000196 void print(raw_ostream &O) const {
197 O << " Offset: " << Die->getOffset() << "\n";
198 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n";
199 O << " Flags: " << Flags << "\n";
200 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000201#endif
Eric Christopherc36145f2012-01-06 04:35:23 +0000202 };
Eric Christopher5b9544b2013-09-05 16:46:43 +0000203
Eric Christopherc36145f2012-01-06 04:35:23 +0000204private:
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000205 struct HashData {
206 StringRef Str;
207 uint32_t HashValue;
208 MCSymbol *Sym;
Eric Christopher5b9544b2013-09-05 16:46:43 +0000209 ArrayRef<HashDataContents *> Data; // offsets
210 HashData(StringRef S, ArrayRef<HashDataContents *> Data)
211 : Str(S), Data(Data) {
Eric Christopher2dd5e1e2011-11-07 21:49:35 +0000212 HashValue = DwarfAccelTable::HashDJB(S);
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000213 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000214#ifndef NDEBUG
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000215 void print(raw_ostream &O) {
216 O << "Name: " << Str << "\n";
217 O << " Hash Value: " << format("0x%x", HashValue) << "\n";
Eric Christopher5b9544b2013-09-05 16:46:43 +0000218 O << " Symbol: ";
219 if (Sym)
220 Sym->print(O);
221 else
222 O << "<none>";
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000223 O << "\n";
Eric Christopherc36145f2012-01-06 04:35:23 +0000224 for (size_t i = 0; i < Data.size(); i++) {
225 O << " Offset: " << Data[i]->Die->getOffset() << "\n";
226 O << " Tag: " << dwarf::TagString(Data[i]->Die->getTag()) << "\n";
227 O << " Flags: " << Data[i]->Flags << "\n";
228 }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000229 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000230 void dump() { print(dbgs()); }
231#endif
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000232 };
233
Eric Christopher5b9544b2013-09-05 16:46:43 +0000234 DwarfAccelTable(const DwarfAccelTable &) LLVM_DELETED_FUNCTION;
235 void operator=(const DwarfAccelTable &) LLVM_DELETED_FUNCTION;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000236
237 // Internal Functions
238 void EmitHeader(AsmPrinter *);
239 void EmitBuckets(AsmPrinter *);
240 void EmitHashes(AsmPrinter *);
241 void EmitOffsets(AsmPrinter *, MCSymbol *);
Eric Christopher2e5d8702012-12-20 21:58:36 +0000242 void EmitData(AsmPrinter *, DwarfUnits *D);
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000243
244 // Allocator for HashData and HashDataContents.
245 BumpPtrAllocator Allocator;
246
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000247 // Output Variables
248 TableHeader Header;
249 TableHeaderData HeaderData;
Eric Christopher5b9544b2013-09-05 16:46:43 +0000250 std::vector<HashData *> Data;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000251
252 // String Data
Eric Christopher5b9544b2013-09-05 16:46:43 +0000253 typedef std::vector<HashDataContents *> DataArray;
254 typedef StringMap<DataArray, BumpPtrAllocator &> StringEntries;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000255 StringEntries Entries;
256
257 // Buckets/Hashes/Offsets
Eric Christopher5b9544b2013-09-05 16:46:43 +0000258 typedef std::vector<HashData *> HashList;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000259 typedef std::vector<HashList> BucketList;
260 BucketList Buckets;
261 HashList Hashes;
Eric Christopher72c16552012-12-20 21:58:40 +0000262
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000263 // Public Implementation
Eric Christopher5b9544b2013-09-05 16:46:43 +0000264public:
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000265 DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
Eric Christophere77546c2011-11-07 21:49:28 +0000266 ~DwarfAccelTable();
Eric Christopher5b9544b2013-09-05 16:46:43 +0000267 void AddName(StringRef, DIE *, char = 0);
Benjamin Kramer03406c42013-05-11 18:24:28 +0000268 void FinalizeTable(AsmPrinter *, StringRef);
Eric Christopher2e5d8702012-12-20 21:58:36 +0000269 void Emit(AsmPrinter *, MCSymbol *, DwarfUnits *);
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000270#ifndef NDEBUG
271 void print(raw_ostream &O);
272 void dump() { print(dbgs()); }
273#endif
274};
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000275}
276#endif