blob: d1b032b27ac22208dabfddc9987631ac2fa763bd [file] [log] [blame]
Douglas Gregor98339b92011-08-25 20:47:51 +00001//===--- ASTReaderInternals.h - AST Reader Internals ------------*- 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 provides internal definitions used in the AST reader.
11//
12//===----------------------------------------------------------------------===//
Stephen Hines176edba2014-12-01 14:53:08 -080013#ifndef LLVM_CLANG_LIB_SERIALIZATION_ASTREADERINTERNALS_H
14#define LLVM_CLANG_LIB_SERIALIZATION_ASTREADERINTERNALS_H
Douglas Gregor98339b92011-08-25 20:47:51 +000015
Douglas Gregor98339b92011-08-25 20:47:51 +000016#include "clang/AST/DeclarationName.h"
Douglas Gregor479633c2013-01-23 18:53:14 +000017#include "clang/Serialization/ASTBitCodes.h"
Douglas Gregor9b8b20f2012-01-06 16:09:53 +000018#include "llvm/Support/Endian.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070019#include "llvm/Support/OnDiskHashTable.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include <utility>
Douglas Gregor98339b92011-08-25 20:47:51 +000021
22namespace clang {
23
24class ASTReader;
25class HeaderSearch;
26struct HeaderFileInfo;
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +000027class FileEntry;
Douglas Gregor98339b92011-08-25 20:47:51 +000028
29namespace serialization {
30
Douglas Gregor1a4761e2011-11-30 23:21:26 +000031class ModuleFile;
Douglas Gregor98339b92011-08-25 20:47:51 +000032
33namespace reader {
34
35/// \brief Class that performs name lookup into a DeclContext stored
36/// in an AST file.
37class ASTDeclContextNameLookupTrait {
38 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +000039 ModuleFile &F;
Douglas Gregor98339b92011-08-25 20:47:51 +000040
41public:
42 /// \brief Pair of begin/end iterators for DeclIDs.
43 ///
44 /// Note that these declaration IDs are local to the module that contains this
45 /// particular lookup t
Douglas Gregor9b8b20f2012-01-06 16:09:53 +000046 typedef llvm::support::ulittle32_t LE32DeclID;
47 typedef std::pair<LE32DeclID *, LE32DeclID *> data_type;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070048 typedef unsigned hash_value_type;
49 typedef unsigned offset_type;
Douglas Gregor98339b92011-08-25 20:47:51 +000050
51 /// \brief Special internal key for declaration names.
52 /// The hash table creates keys for comparison; we do not create
53 /// a DeclarationName for the internal key to avoid deserializing types.
54 struct DeclNameKey {
55 DeclarationName::NameKind Kind;
56 uint64_t Data;
57 DeclNameKey() : Kind((DeclarationName::NameKind)0), Data(0) { }
58 };
59
60 typedef DeclarationName external_key_type;
61 typedef DeclNameKey internal_key_type;
62
Nick Lewyckyb346d2f2012-04-16 02:51:46 +000063 explicit ASTDeclContextNameLookupTrait(ASTReader &Reader, ModuleFile &F)
Douglas Gregor98339b92011-08-25 20:47:51 +000064 : Reader(Reader), F(F) { }
65
66 static bool EqualKey(const internal_key_type& a,
67 const internal_key_type& b) {
68 return a.Kind == b.Kind && a.Data == b.Data;
69 }
70
Stephen Hines6bcf27b2014-05-29 04:14:42 -070071 hash_value_type ComputeHash(const DeclNameKey &Key) const;
Douglas Gregor98339b92011-08-25 20:47:51 +000072 internal_key_type GetInternalKey(const external_key_type& Name) const;
Douglas Gregor98339b92011-08-25 20:47:51 +000073
Nick Lewyckyb346d2f2012-04-16 02:51:46 +000074 static std::pair<unsigned, unsigned>
Douglas Gregor98339b92011-08-25 20:47:51 +000075 ReadKeyDataLength(const unsigned char*& d);
76
77 internal_key_type ReadKey(const unsigned char* d, unsigned);
78
79 data_type ReadData(internal_key_type, const unsigned char* d,
80 unsigned DataLen);
81};
82
Douglas Gregor479633c2013-01-23 18:53:14 +000083/// \brief Base class for the trait describing the on-disk hash table for the
84/// identifiers in an AST file.
85///
86/// This class is not useful by itself; rather, it provides common
87/// functionality for accessing the on-disk hash table of identifiers
88/// in an AST file. Different subclasses customize that functionality
89/// based on what information they are interested in. Those subclasses
90/// must provide the \c data_type typedef and the ReadData operation,
91/// only.
92class ASTIdentifierLookupTraitBase {
93public:
94 typedef StringRef external_key_type;
95 typedef StringRef internal_key_type;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070096 typedef unsigned hash_value_type;
97 typedef unsigned offset_type;
Douglas Gregor479633c2013-01-23 18:53:14 +000098
99 static bool EqualKey(const internal_key_type& a, const internal_key_type& b) {
100 return a == b;
101 }
102
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700103 static hash_value_type ComputeHash(const internal_key_type& a);
Douglas Gregor479633c2013-01-23 18:53:14 +0000104
105 static std::pair<unsigned, unsigned>
106 ReadKeyDataLength(const unsigned char*& d);
107
108 // This hopefully will just get inlined and removed by the optimizer.
109 static const internal_key_type&
110 GetInternalKey(const external_key_type& x) { return x; }
111
112 // This hopefully will just get inlined and removed by the optimizer.
113 static const external_key_type&
114 GetExternalKey(const internal_key_type& x) { return x; }
115
116 static internal_key_type ReadKey(const unsigned char* d, unsigned n);
117};
118
Douglas Gregor98339b92011-08-25 20:47:51 +0000119/// \brief Class that performs lookup for an identifier stored in an AST file.
Douglas Gregor479633c2013-01-23 18:53:14 +0000120class ASTIdentifierLookupTrait : public ASTIdentifierLookupTraitBase {
Douglas Gregor98339b92011-08-25 20:47:51 +0000121 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000122 ModuleFile &F;
Douglas Gregor98339b92011-08-25 20:47:51 +0000123
124 // If we know the IdentifierInfo in advance, it is here and we will
125 // not build a new one. Used when deserializing information about an
126 // identifier that was constructed before the AST file was read.
127 IdentifierInfo *KnownII;
128
129public:
130 typedef IdentifierInfo * data_type;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700131
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000132 ASTIdentifierLookupTrait(ASTReader &Reader, ModuleFile &F,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700133 IdentifierInfo *II = nullptr)
Douglas Gregor98339b92011-08-25 20:47:51 +0000134 : Reader(Reader), F(F), KnownII(II) { }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700135
Douglas Gregor479633c2013-01-23 18:53:14 +0000136 data_type ReadData(const internal_key_type& k,
137 const unsigned char* d,
138 unsigned DataLen);
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000139
140 ASTReader &getReader() const { return Reader; }
Douglas Gregor98339b92011-08-25 20:47:51 +0000141};
142
143/// \brief The on-disk hash table used to contain information about
144/// all of the identifiers in the program.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700145typedef llvm::OnDiskIterableChainedHashTable<ASTIdentifierLookupTrait>
Douglas Gregor98339b92011-08-25 20:47:51 +0000146 ASTIdentifierLookupTable;
147
148/// \brief Class that performs lookup for a selector's entries in the global
149/// method pool stored in an AST file.
150class ASTSelectorLookupTrait {
151 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000152 ModuleFile &F;
Douglas Gregor98339b92011-08-25 20:47:51 +0000153
154public:
155 struct data_type {
156 SelectorID ID;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +0000157 unsigned InstanceBits;
158 unsigned FactoryBits;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700159 bool InstanceHasMoreThanOneDecl;
160 bool FactoryHasMoreThanOneDecl;
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000161 SmallVector<ObjCMethodDecl *, 2> Instance;
162 SmallVector<ObjCMethodDecl *, 2> Factory;
Douglas Gregor98339b92011-08-25 20:47:51 +0000163 };
164
165 typedef Selector external_key_type;
166 typedef external_key_type internal_key_type;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700167 typedef unsigned hash_value_type;
168 typedef unsigned offset_type;
Douglas Gregor98339b92011-08-25 20:47:51 +0000169
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000170 ASTSelectorLookupTrait(ASTReader &Reader, ModuleFile &F)
Douglas Gregor98339b92011-08-25 20:47:51 +0000171 : Reader(Reader), F(F) { }
172
173 static bool EqualKey(const internal_key_type& a,
174 const internal_key_type& b) {
175 return a == b;
176 }
177
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700178 static hash_value_type ComputeHash(Selector Sel);
Douglas Gregor98339b92011-08-25 20:47:51 +0000179
180 static const internal_key_type&
Chris Lattnera2f4ae82011-09-10 16:13:42 +0000181 GetInternalKey(const external_key_type& x) { return x; }
Douglas Gregor98339b92011-08-25 20:47:51 +0000182
183 static std::pair<unsigned, unsigned>
184 ReadKeyDataLength(const unsigned char*& d);
185
186 internal_key_type ReadKey(const unsigned char* d, unsigned);
187 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen);
188};
189
190/// \brief The on-disk hash table used for the global method pool.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700191typedef llvm::OnDiskChainedHashTable<ASTSelectorLookupTrait>
Douglas Gregor98339b92011-08-25 20:47:51 +0000192 ASTSelectorLookupTable;
193
194/// \brief Trait class used to search the on-disk hash table containing all of
195/// the header search information.
196///
197/// The on-disk hash table contains a mapping from each header path to
198/// information about that header (how many times it has been included, its
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700199/// controlling macro, etc.). Note that we actually hash based on the size
200/// and mtime, and support "deep" comparisons of file names based on current
Douglas Gregor98339b92011-08-25 20:47:51 +0000201/// inode numbers, so that the search can cope with non-normalized path names
202/// and symlinks.
203class HeaderFileInfoTrait {
204 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000205 ModuleFile &M;
Douglas Gregor98339b92011-08-25 20:47:51 +0000206 HeaderSearch *HS;
207 const char *FrameworkStrings;
Ted Kremenek4fd83a32013-02-05 06:21:59 +0000208
Douglas Gregor98339b92011-08-25 20:47:51 +0000209public:
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +0000210 typedef const FileEntry *external_key_type;
211
212 struct internal_key_type {
213 off_t Size;
214 time_t ModTime;
215 const char *Filename;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700216 bool Imported;
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +0000217 };
218 typedef const internal_key_type &internal_key_ref;
Douglas Gregor98339b92011-08-25 20:47:51 +0000219
220 typedef HeaderFileInfo data_type;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700221 typedef unsigned hash_value_type;
222 typedef unsigned offset_type;
Douglas Gregor98339b92011-08-25 20:47:51 +0000223
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000224 HeaderFileInfoTrait(ASTReader &Reader, ModuleFile &M, HeaderSearch *HS,
Argyrios Kyrtzidis8bd50b12013-03-06 18:12:41 +0000225 const char *FrameworkStrings)
226 : Reader(Reader), M(M), HS(HS), FrameworkStrings(FrameworkStrings) { }
Douglas Gregor98339b92011-08-25 20:47:51 +0000227
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700228 static hash_value_type ComputeHash(internal_key_ref ikey);
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +0000229 static internal_key_type GetInternalKey(const FileEntry *FE);
230 bool EqualKey(internal_key_ref a, internal_key_ref b);
Douglas Gregor98339b92011-08-25 20:47:51 +0000231
232 static std::pair<unsigned, unsigned>
233 ReadKeyDataLength(const unsigned char*& d);
234
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +0000235 static internal_key_type ReadKey(const unsigned char *d, unsigned);
Douglas Gregor98339b92011-08-25 20:47:51 +0000236
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +0000237 data_type ReadData(internal_key_ref,const unsigned char *d, unsigned DataLen);
Douglas Gregor98339b92011-08-25 20:47:51 +0000238};
239
240/// \brief The on-disk hash table used for known header files.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700241typedef llvm::OnDiskChainedHashTable<HeaderFileInfoTrait>
Douglas Gregor98339b92011-08-25 20:47:51 +0000242 HeaderFileInfoLookupTable;
243
244} // end namespace clang::serialization::reader
245} // end namespace clang::serialization
246} // end namespace clang
247
248
249#endif