Bob Haarman | 653baa2 | 2016-10-21 19:43:19 +0000 | [diff] [blame] | 1 | //===- GSI.h - Common Declarations for GlobalsStream and PublicsStream ----===// |
| 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 | // The data structures defined in this file are based on the reference |
| 11 | // implementation which is available at |
| 12 | // https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/dbi/gsi.h |
| 13 | // |
| 14 | // When you are reading the reference source code, you'd find the |
| 15 | // information below useful. |
| 16 | // |
| 17 | // - ppdb1->m_fMinimalDbgInfo seems to be always true. |
| 18 | // - SMALLBUCKETS macro is defined. |
| 19 | // |
| 20 | // The reference doesn't compile, so I learned just by reading code. |
| 21 | // It's not guaranteed to be correct. |
| 22 | // |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
| 25 | #ifndef LLVM_LIB_DEBUGINFO_PDB_RAW_GSI_H |
| 26 | #define LLVM_LIB_DEBUGINFO_PDB_RAW_GSI_H |
| 27 | |
Adrian McCarthy | 6b6b8c4 | 2017-01-25 22:38:55 +0000 | [diff] [blame] | 28 | #include "llvm/DebugInfo/PDB/Native/RawTypes.h" |
Zachary Turner | d9dc282 | 2017-03-02 20:52:51 +0000 | [diff] [blame] | 29 | #include "llvm/Support/BinaryStreamArray.h" |
Bob Haarman | 653baa2 | 2016-10-21 19:43:19 +0000 | [diff] [blame] | 30 | |
| 31 | #include "llvm/Support/Endian.h" |
| 32 | #include "llvm/Support/Error.h" |
| 33 | |
| 34 | namespace llvm { |
| 35 | |
Zachary Turner | 120faca | 2017-02-27 22:11:43 +0000 | [diff] [blame] | 36 | class BinaryStreamReader; |
Bob Haarman | 653baa2 | 2016-10-21 19:43:19 +0000 | [diff] [blame] | 37 | |
| 38 | namespace pdb { |
| 39 | |
| 40 | /// From https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/dbi/gsi.cpp |
| 41 | static const unsigned IPHR_HASH = 4096; |
| 42 | |
| 43 | /// Header of the hash tables found in the globals and publics sections. |
| 44 | /// Based on GSIHashHeader in |
| 45 | /// https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/dbi/gsi.h |
| 46 | struct GSIHashHeader { |
| 47 | enum : unsigned { |
| 48 | HdrSignature = ~0U, |
| 49 | HdrVersion = 0xeffe0000 + 19990810, |
| 50 | }; |
| 51 | support::ulittle32_t VerSignature; |
| 52 | support::ulittle32_t VerHdr; |
| 53 | support::ulittle32_t HrSize; |
| 54 | support::ulittle32_t NumBuckets; |
| 55 | }; |
| 56 | |
Zachary Turner | 120faca | 2017-02-27 22:11:43 +0000 | [diff] [blame] | 57 | Error readGSIHashBuckets(FixedStreamArray<support::ulittle32_t> &HashBuckets, |
Zachary Turner | af299ea | 2017-02-25 00:44:30 +0000 | [diff] [blame] | 58 | const GSIHashHeader *HashHdr, |
Zachary Turner | 120faca | 2017-02-27 22:11:43 +0000 | [diff] [blame] | 59 | BinaryStreamReader &Reader); |
| 60 | Error readGSIHashHeader(const GSIHashHeader *&HashHdr, |
| 61 | BinaryStreamReader &Reader); |
| 62 | Error readGSIHashRecords(FixedStreamArray<PSHashRecord> &HashRecords, |
| 63 | const GSIHashHeader *HashHdr, |
| 64 | BinaryStreamReader &Reader); |
Bob Haarman | 653baa2 | 2016-10-21 19:43:19 +0000 | [diff] [blame] | 65 | } |
| 66 | } |
| 67 | |
| 68 | #endif |