Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 1 | //==-- 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFACCELTABLE_H |
| 15 | #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFACCELTABLE_H |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 16 | |
Benjamin Kramer | 330970d | 2012-04-13 20:06:17 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ArrayRef.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringMap.h" |
Frederic Riss | e541e0b | 2015-01-05 21:29:41 +0000 | [diff] [blame^] | 19 | #include "llvm/CodeGen/DIE.h" |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCSymbol.h" |
David Blaikie | 18d3375 | 2014-04-24 01:23:49 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Compiler.h" |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 22 | #include "llvm/Support/DataTypes.h" |
| 23 | #include "llvm/Support/Debug.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Dwarf.h" |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
| 26 | #include "llvm/Support/Format.h" |
| 27 | #include "llvm/Support/FormattedStream.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 28 | #include <vector> |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 29 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 30 | // The dwarf accelerator tables are an indirect hash table optimized |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 31 | // 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 Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 54 | // |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 55 | // 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 | |
| 62 | namespace llvm { |
| 63 | |
| 64 | class AsmPrinter; |
Frederic Riss | 3a6b354 | 2014-11-12 23:48:14 +0000 | [diff] [blame] | 65 | class DwarfDebug; |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 66 | |
Benjamin Kramer | 079b96e | 2013-09-11 18:05:11 +0000 | [diff] [blame] | 67 | class DwarfAccelTable { |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 68 | |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 69 | static uint32_t HashDJB(StringRef Str) { |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 70 | uint32_t h = 5381; |
Eric Christopher | ff2edf1 | 2011-11-07 21:49:35 +0000 | [diff] [blame] | 71 | for (unsigned i = 0, e = Str.size(); i != e; ++i) |
| 72 | h = ((h << 5) + h) + Str[i]; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 73 | return h; |
| 74 | } |
| 75 | |
| 76 | // Helper function to compute the number of buckets needed based on |
| 77 | // the number of unique hashes. |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 78 | void ComputeBucketCount(void); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 79 | |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 80 | struct TableHeader { |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 81 | uint32_t magic; // 'HASH' magic value to allow endian detection |
| 82 | uint16_t version; // Version number. |
| 83 | uint16_t hash_function; // The hash function enumeration that was used. |
| 84 | uint32_t bucket_count; // The number of buckets in this hash table. |
| 85 | uint32_t hashes_count; // The total number of unique hash values |
| 86 | // and hash data offsets in this table. |
| 87 | uint32_t header_data_len; // The bytes to skip to get to the hash |
| 88 | // indexes (buckets) for correct alignment. |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 89 | // Also written to disk is the implementation specific header data. |
| 90 | |
| 91 | static const uint32_t MagicHash = 0x48415348; |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 92 | |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 93 | TableHeader(uint32_t data_len) |
Eric Christopher | cf7289f | 2013-09-05 18:20:16 +0000 | [diff] [blame] | 94 | : magic(MagicHash), version(1), |
| 95 | hash_function(dwarf::DW_hash_function_djb), bucket_count(0), |
| 96 | hashes_count(0), header_data_len(data_len) {} |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 97 | |
| 98 | #ifndef NDEBUG |
| 99 | void print(raw_ostream &O) { |
| 100 | O << "Magic: " << format("0x%x", magic) << "\n" |
| 101 | << "Version: " << version << "\n" |
| 102 | << "Hash Function: " << hash_function << "\n" |
| 103 | << "Bucket Count: " << bucket_count << "\n" |
| 104 | << "Header Data Length: " << header_data_len << "\n"; |
| 105 | } |
| 106 | void dump() { print(dbgs()); } |
| 107 | #endif |
| 108 | }; |
| 109 | |
| 110 | public: |
| 111 | // The HeaderData describes the form of each set of data. In general this |
| 112 | // is as a list of atoms (atom_count) where each atom contains a type |
| 113 | // (AtomType type) of data, and an encoding form (form). In the case of |
| 114 | // data that is referenced via DW_FORM_ref_* the die_offset_base is |
| 115 | // used to describe the offset for all forms in the list of atoms. |
| 116 | // This also serves as a public interface of sorts. |
| 117 | // When written to disk this will have the form: |
| 118 | // |
| 119 | // uint32_t die_offset_base |
| 120 | // uint32_t atom_count |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 121 | // atom_count Atoms |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 122 | |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 123 | // Make these public so that they can be used as a general interface to |
| 124 | // the class. |
| 125 | struct Atom { |
Eric Christopher | cf7289f | 2013-09-05 18:20:16 +0000 | [diff] [blame] | 126 | uint16_t type; // enum AtomType |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 127 | uint16_t form; // DWARF DW_FORM_ defines |
| 128 | |
David Blaikie | 18d3375 | 2014-04-24 01:23:49 +0000 | [diff] [blame] | 129 | LLVM_CONSTEXPR Atom(uint16_t type, uint16_t form) |
| 130 | : type(type), form(form) {} |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 131 | #ifndef NDEBUG |
| 132 | void print(raw_ostream &O) { |
Eric Christopher | cf7289f | 2013-09-05 18:20:16 +0000 | [diff] [blame] | 133 | O << "Type: " << dwarf::AtomTypeString(type) << "\n" |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 134 | << "Form: " << dwarf::FormEncodingString(form) << "\n"; |
| 135 | } |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 136 | void dump() { print(dbgs()); } |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 137 | #endif |
| 138 | }; |
| 139 | |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 140 | private: |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 141 | struct TableHeaderData { |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 142 | uint32_t die_offset_base; |
Hans Wennborg | b8cff69 | 2014-08-11 02:18:15 +0000 | [diff] [blame] | 143 | SmallVector<Atom, 3> Atoms; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 144 | |
Benjamin Kramer | 330970d | 2012-04-13 20:06:17 +0000 | [diff] [blame] | 145 | TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0) |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 146 | : die_offset_base(offset), Atoms(AtomList.begin(), AtomList.end()) {} |
Benjamin Kramer | 330970d | 2012-04-13 20:06:17 +0000 | [diff] [blame] | 147 | |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 148 | #ifndef NDEBUG |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 149 | void print(raw_ostream &O) { |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 150 | 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 Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 154 | void dump() { print(dbgs()); } |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 155 | #endif |
| 156 | }; |
| 157 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 158 | // The data itself consists of a str_offset, a count of the DIEs in the |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 159 | // 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 Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 166 | public: |
| 167 | struct HashDataContents { |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 168 | const DIE *Die; // Offsets |
Eric Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 169 | char Flags; // Specific flags to output |
| 170 | |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 171 | HashDataContents(const DIE *D, char Flags) : Die(D), Flags(Flags) {} |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 172 | #ifndef NDEBUG |
Eric Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 173 | 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 Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 178 | #endif |
Eric Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 179 | }; |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 180 | |
Eric Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 181 | private: |
David Blaikie | 772ab8a | 2014-04-25 22:21:35 +0000 | [diff] [blame] | 182 | // String Data |
| 183 | struct DataArray { |
| 184 | MCSymbol *StrSym; |
| 185 | std::vector<HashDataContents *> Values; |
David Blaikie | 6afb267 | 2014-04-27 14:47:23 +0000 | [diff] [blame] | 186 | DataArray() : StrSym(nullptr) {} |
David Blaikie | 772ab8a | 2014-04-25 22:21:35 +0000 | [diff] [blame] | 187 | }; |
| 188 | friend struct HashData; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 189 | struct HashData { |
| 190 | StringRef Str; |
| 191 | uint32_t HashValue; |
| 192 | MCSymbol *Sym; |
David Blaikie | 772ab8a | 2014-04-25 22:21:35 +0000 | [diff] [blame] | 193 | DwarfAccelTable::DataArray &Data; // offsets |
| 194 | HashData(StringRef S, DwarfAccelTable::DataArray &Data) |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 195 | : Str(S), Data(Data) { |
Eric Christopher | ff2edf1 | 2011-11-07 21:49:35 +0000 | [diff] [blame] | 196 | HashValue = DwarfAccelTable::HashDJB(S); |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 197 | } |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 198 | #ifndef NDEBUG |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 199 | void print(raw_ostream &O) { |
| 200 | O << "Name: " << Str << "\n"; |
| 201 | O << " Hash Value: " << format("0x%x", HashValue) << "\n"; |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 202 | O << " Symbol: "; |
| 203 | if (Sym) |
| 204 | Sym->print(O); |
| 205 | else |
| 206 | O << "<none>"; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 207 | O << "\n"; |
David Blaikie | 772ab8a | 2014-04-25 22:21:35 +0000 | [diff] [blame] | 208 | for (HashDataContents *C : Data.Values) { |
| 209 | O << " Offset: " << C->Die->getOffset() << "\n"; |
| 210 | O << " Tag: " << dwarf::TagString(C->Die->getTag()) << "\n"; |
| 211 | O << " Flags: " << C->Flags << "\n"; |
Eric Christopher | 21bde87 | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 212 | } |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 213 | } |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 214 | void dump() { print(dbgs()); } |
| 215 | #endif |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 216 | }; |
| 217 | |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 218 | DwarfAccelTable(const DwarfAccelTable &) LLVM_DELETED_FUNCTION; |
| 219 | void operator=(const DwarfAccelTable &) LLVM_DELETED_FUNCTION; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 220 | |
| 221 | // Internal Functions |
| 222 | void EmitHeader(AsmPrinter *); |
| 223 | void EmitBuckets(AsmPrinter *); |
| 224 | void EmitHashes(AsmPrinter *); |
| 225 | void EmitOffsets(AsmPrinter *, MCSymbol *); |
Frederic Riss | 3a6b354 | 2014-11-12 23:48:14 +0000 | [diff] [blame] | 226 | void EmitData(AsmPrinter *, DwarfDebug *D, MCSymbol *StrSym); |
Benjamin Kramer | 330970d | 2012-04-13 20:06:17 +0000 | [diff] [blame] | 227 | |
| 228 | // Allocator for HashData and HashDataContents. |
| 229 | BumpPtrAllocator Allocator; |
| 230 | |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 231 | // Output Variables |
| 232 | TableHeader Header; |
| 233 | TableHeaderData HeaderData; |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 234 | std::vector<HashData *> Data; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 235 | |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 236 | typedef StringMap<DataArray, BumpPtrAllocator &> StringEntries; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 237 | StringEntries Entries; |
| 238 | |
| 239 | // Buckets/Hashes/Offsets |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 240 | typedef std::vector<HashData *> HashList; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 241 | typedef std::vector<HashList> BucketList; |
| 242 | BucketList Buckets; |
| 243 | HashList Hashes; |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 244 | |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 245 | // Public Implementation |
Eric Christopher | b4e2cc4 | 2013-09-05 16:46:43 +0000 | [diff] [blame] | 246 | public: |
Benjamin Kramer | 330970d | 2012-04-13 20:06:17 +0000 | [diff] [blame] | 247 | DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>); |
David Blaikie | 772ab8a | 2014-04-25 22:21:35 +0000 | [diff] [blame] | 248 | void AddName(StringRef Name, MCSymbol *StrSym, const DIE *Die, |
| 249 | char Flags = 0); |
Benjamin Kramer | 63e39eb | 2013-05-11 18:24:28 +0000 | [diff] [blame] | 250 | void FinalizeTable(AsmPrinter *, StringRef); |
Frederic Riss | 3a6b354 | 2014-11-12 23:48:14 +0000 | [diff] [blame] | 251 | void Emit(AsmPrinter *, MCSymbol *, DwarfDebug *, MCSymbol *StrSym); |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 252 | #ifndef NDEBUG |
| 253 | void print(raw_ostream &O); |
| 254 | void dump() { print(dbgs()); } |
| 255 | #endif |
| 256 | }; |
Eric Christopher | 6e47204 | 2011-11-07 09:18:42 +0000 | [diff] [blame] | 257 | } |
| 258 | #endif |