blob: 7627313d28f1fcaff674d1c2c7f58f89e7bda600 [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
Benjamin Kramer55c06ae2013-09-11 18:05:11 +000068class DwarfAccelTable {
Eric Christopherbcbd3a42011-11-07 09:18:42 +000069
Eric Christopher5b9544b2013-09-05 16:46:43 +000070 static uint32_t HashDJB(StringRef Str) {
Eric Christopherbcbd3a42011-11-07 09:18:42 +000071 uint32_t h = 5381;
Eric Christopher2dd5e1e2011-11-07 21:49:35 +000072 for (unsigned i = 0, e = Str.size(); i != e; ++i)
73 h = ((h << 5) + h) + Str[i];
Eric Christopherbcbd3a42011-11-07 09:18:42 +000074 return h;
75 }
76
77 // Helper function to compute the number of buckets needed based on
78 // the number of unique hashes.
Eric Christopher5b9544b2013-09-05 16:46:43 +000079 void ComputeBucketCount(void);
Eric Christopher72c16552012-12-20 21:58:40 +000080
Eric Christopherbcbd3a42011-11-07 09:18:42 +000081 struct TableHeader {
Eric Christopher5b9544b2013-09-05 16:46:43 +000082 uint32_t magic; // 'HASH' magic value to allow endian detection
83 uint16_t version; // Version number.
84 uint16_t hash_function; // The hash function enumeration that was used.
85 uint32_t bucket_count; // The number of buckets in this hash table.
86 uint32_t hashes_count; // The total number of unique hash values
87 // and hash data offsets in this table.
88 uint32_t header_data_len; // The bytes to skip to get to the hash
89 // indexes (buckets) for correct alignment.
Eric Christopherbcbd3a42011-11-07 09:18:42 +000090 // Also written to disk is the implementation specific header data.
91
92 static const uint32_t MagicHash = 0x48415348;
Eric Christopher72c16552012-12-20 21:58:40 +000093
Eric Christopher5b9544b2013-09-05 16:46:43 +000094 TableHeader(uint32_t data_len)
Eric Christopher577056f2013-09-05 18:20:16 +000095 : magic(MagicHash), version(1),
96 hash_function(dwarf::DW_hash_function_djb), bucket_count(0),
97 hashes_count(0), header_data_len(data_len) {}
Eric Christopherbcbd3a42011-11-07 09:18:42 +000098
99#ifndef NDEBUG
100 void print(raw_ostream &O) {
101 O << "Magic: " << format("0x%x", magic) << "\n"
102 << "Version: " << version << "\n"
103 << "Hash Function: " << hash_function << "\n"
104 << "Bucket Count: " << bucket_count << "\n"
105 << "Header Data Length: " << header_data_len << "\n";
106 }
107 void dump() { print(dbgs()); }
108#endif
109 };
110
111public:
112 // The HeaderData describes the form of each set of data. In general this
113 // is as a list of atoms (atom_count) where each atom contains a type
114 // (AtomType type) of data, and an encoding form (form). In the case of
115 // data that is referenced via DW_FORM_ref_* the die_offset_base is
116 // used to describe the offset for all forms in the list of atoms.
117 // This also serves as a public interface of sorts.
118 // When written to disk this will have the form:
119 //
120 // uint32_t die_offset_base
121 // uint32_t atom_count
Eric Christopher72c16552012-12-20 21:58:40 +0000122 // atom_count Atoms
Eric Christopher72c16552012-12-20 21:58:40 +0000123
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000124 // Make these public so that they can be used as a general interface to
125 // the class.
126 struct Atom {
Eric Christopher577056f2013-09-05 18:20:16 +0000127 uint16_t type; // enum AtomType
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000128 uint16_t form; // DWARF DW_FORM_ defines
129
Eric Christopher577056f2013-09-05 18:20:16 +0000130 Atom(uint16_t type, uint16_t form) : type(type), form(form) {}
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000131#ifndef NDEBUG
132 void print(raw_ostream &O) {
Eric Christopher577056f2013-09-05 18:20:16 +0000133 O << "Type: " << dwarf::AtomTypeString(type) << "\n"
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000134 << "Form: " << dwarf::FormEncodingString(form) << "\n";
135 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000136 void dump() { print(dbgs()); }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000137#endif
138 };
139
Eric Christopher5b9544b2013-09-05 16:46:43 +0000140private:
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000141 struct TableHeaderData {
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000142 uint32_t die_offset_base;
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000143 SmallVector<Atom, 1> Atoms;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000144
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000145 TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0)
Eric Christopher5b9544b2013-09-05 16:46:43 +0000146 : die_offset_base(offset), Atoms(AtomList.begin(), AtomList.end()) {}
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000147
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000148#ifndef NDEBUG
Eric Christopher5b9544b2013-09-05 16:46:43 +0000149 void print(raw_ostream &O) {
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000150 O << "die_offset_base: " << die_offset_base << "\n";
151 for (size_t i = 0; i < Atoms.size(); i++)
152 Atoms[i].print(O);
153 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000154 void dump() { print(dbgs()); }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000155#endif
156 };
157
Eric Christopher09ac3d82011-11-07 09:24:32 +0000158 // The data itself consists of a str_offset, a count of the DIEs in the
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000159 // hash and the offsets to the DIEs themselves.
160 // On disk each data section is ended with a 0 KeyType as the end of the
161 // hash chain.
162 // On output this looks like:
163 // uint32_t str_offset
164 // uint32_t hash_data_count
165 // HashData[hash_data_count]
Eric Christopherc36145f2012-01-06 04:35:23 +0000166public:
167 struct HashDataContents {
Eric Christopher5b9544b2013-09-05 16:46:43 +0000168 DIE *Die; // Offsets
Eric Christopherc36145f2012-01-06 04:35:23 +0000169 char Flags; // Specific flags to output
170
Eric Christopher5b9544b2013-09-05 16:46:43 +0000171 HashDataContents(DIE *D, char Flags) : Die(D), Flags(Flags) {}
172#ifndef NDEBUG
Eric Christopherc36145f2012-01-06 04:35:23 +0000173 void print(raw_ostream &O) const {
174 O << " Offset: " << Die->getOffset() << "\n";
175 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n";
176 O << " Flags: " << Flags << "\n";
177 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000178#endif
Eric Christopherc36145f2012-01-06 04:35:23 +0000179 };
Eric Christopher5b9544b2013-09-05 16:46:43 +0000180
Eric Christopherc36145f2012-01-06 04:35:23 +0000181private:
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000182 struct HashData {
183 StringRef Str;
184 uint32_t HashValue;
185 MCSymbol *Sym;
Eric Christopher5b9544b2013-09-05 16:46:43 +0000186 ArrayRef<HashDataContents *> Data; // offsets
187 HashData(StringRef S, ArrayRef<HashDataContents *> Data)
188 : Str(S), Data(Data) {
Eric Christopher2dd5e1e2011-11-07 21:49:35 +0000189 HashValue = DwarfAccelTable::HashDJB(S);
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000190 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000191#ifndef NDEBUG
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000192 void print(raw_ostream &O) {
193 O << "Name: " << Str << "\n";
194 O << " Hash Value: " << format("0x%x", HashValue) << "\n";
Eric Christopher5b9544b2013-09-05 16:46:43 +0000195 O << " Symbol: ";
196 if (Sym)
197 Sym->print(O);
198 else
199 O << "<none>";
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000200 O << "\n";
Eric Christopherc36145f2012-01-06 04:35:23 +0000201 for (size_t i = 0; i < Data.size(); i++) {
202 O << " Offset: " << Data[i]->Die->getOffset() << "\n";
203 O << " Tag: " << dwarf::TagString(Data[i]->Die->getTag()) << "\n";
204 O << " Flags: " << Data[i]->Flags << "\n";
205 }
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000206 }
Eric Christopher5b9544b2013-09-05 16:46:43 +0000207 void dump() { print(dbgs()); }
208#endif
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000209 };
210
Eric Christopher5b9544b2013-09-05 16:46:43 +0000211 DwarfAccelTable(const DwarfAccelTable &) LLVM_DELETED_FUNCTION;
212 void operator=(const DwarfAccelTable &) LLVM_DELETED_FUNCTION;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000213
214 // Internal Functions
215 void EmitHeader(AsmPrinter *);
216 void EmitBuckets(AsmPrinter *);
217 void EmitHashes(AsmPrinter *);
218 void EmitOffsets(AsmPrinter *, MCSymbol *);
Eric Christopher2e5d8702012-12-20 21:58:36 +0000219 void EmitData(AsmPrinter *, DwarfUnits *D);
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000220
221 // Allocator for HashData and HashDataContents.
222 BumpPtrAllocator Allocator;
223
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000224 // Output Variables
225 TableHeader Header;
226 TableHeaderData HeaderData;
Eric Christopher5b9544b2013-09-05 16:46:43 +0000227 std::vector<HashData *> Data;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000228
229 // String Data
Eric Christopher5b9544b2013-09-05 16:46:43 +0000230 typedef std::vector<HashDataContents *> DataArray;
231 typedef StringMap<DataArray, BumpPtrAllocator &> StringEntries;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000232 StringEntries Entries;
233
234 // Buckets/Hashes/Offsets
Eric Christopher5b9544b2013-09-05 16:46:43 +0000235 typedef std::vector<HashData *> HashList;
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000236 typedef std::vector<HashList> BucketList;
237 BucketList Buckets;
238 HashList Hashes;
Eric Christopher72c16552012-12-20 21:58:40 +0000239
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000240 // Public Implementation
Eric Christopher5b9544b2013-09-05 16:46:43 +0000241public:
Benjamin Kramer36c38b82012-04-13 20:06:17 +0000242 DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
Eric Christophere77546c2011-11-07 21:49:28 +0000243 ~DwarfAccelTable();
Eric Christopher5b9544b2013-09-05 16:46:43 +0000244 void AddName(StringRef, DIE *, char = 0);
Benjamin Kramer03406c42013-05-11 18:24:28 +0000245 void FinalizeTable(AsmPrinter *, StringRef);
Eric Christopher2e5d8702012-12-20 21:58:36 +0000246 void Emit(AsmPrinter *, MCSymbol *, DwarfUnits *);
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000247#ifndef NDEBUG
248 void print(raw_ostream &O);
249 void dump() { print(dbgs()); }
250#endif
251};
Eric Christopherbcbd3a42011-11-07 09:18:42 +0000252}
253#endif